Revert 264226 "Reduce dependency of TiclInvalidationService on P..."
[chromium-blink-merge.git] / device / bluetooth / bluetooth_socket.h
blob8aaa08651b09011c500f75964b4ce12004250679
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_SOCKET_H_
6 #define DEVICE_BLUETOOTH_BLUETOOTH_SOCKET_H_
8 #include <string>
10 #include "base/callback.h"
11 #include "base/memory/ref_counted.h"
13 namespace net {
14 class IOBuffer;
15 } // namespace net
17 namespace device {
19 // BluetoothSocket represents a socket to a specific service on a
20 // BluetoothDevice. BluetoothSocket objects are ref counted and may outlive
21 // both the BluetoothDevice and BluetoothAdapter that were involved in their
22 // creation. In terms of threading, platform specific implementations may
23 // differ slightly, but platform independent consumers must guarantee calling
24 // various instances methods on the same thread as the thread used at
25 // construction time -- platform specific implementation are resonsible for
26 // marshalling calls to a different thread if required.
27 class BluetoothSocket : public base::RefCountedThreadSafe<BluetoothSocket> {
28 public:
29 enum ErrorReason { kSystemError, kIOPending, kDisconnected };
31 typedef base::Callback<void(int)> SendCompletionCallback;
32 typedef base::Callback<void(int, scoped_refptr<net::IOBuffer> io_buffer)>
33 ReceiveCompletionCallback;
34 typedef base::Callback<void(const std::string& error_message)>
35 ErrorCompletionCallback;
36 typedef base::Callback<void(ErrorReason, const std::string& error_message)>
37 ReceiveErrorCompletionCallback;
39 // Destroys resources associated with the socket. After calling this method,
40 // it is illegal to call any method on this socket instance (except for the
41 // desctrutor via Release).
42 virtual void Close() = 0;
44 // Gracefully disconnects the socket and calls |callback| upon completion.
45 // There is no failure case, as this is a best effort operation.
46 virtual void Disconnect(const base::Closure& callback) = 0;
48 // Receives data from the socket and calls |success_callback| when data is
49 // available. |count| is maximum amount of bytes received. If an error occurs,
50 // calls |error_callback| with a reason and an error message.
51 virtual void Receive(
52 int count,
53 const ReceiveCompletionCallback& success_callback,
54 const ReceiveErrorCompletionCallback& error_callback) = 0;
56 // Sends |buffer| to the socket and calls |success_callback| when data has
57 // been successfully sent. |buffer_size| is the number of bytes contained in
58 // |buffer|. If an error occurs, calls |error_callback| with an error message.
59 virtual void Send(scoped_refptr<net::IOBuffer> buffer,
60 int buffer_size,
61 const SendCompletionCallback& success_callback,
62 const ErrorCompletionCallback& error_callback) = 0;
64 protected:
65 friend class base::RefCountedThreadSafe<BluetoothSocket>;
66 virtual ~BluetoothSocket();
69 } // namespace device
71 #endif // DEVICE_BLUETOOTH_BLUETOOTH_SOCKET_H_