Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(478)

Side by Side Diff: device/bluetooth/bluetooth_socket.h

Issue 180163009: chrome.bluetooth API improvements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address code review feedback. Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_SOCKET_H_ 5 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_SOCKET_H_
6 #define DEVICE_BLUETOOTH_BLUETOOTH_SOCKET_H_ 6 #define DEVICE_BLUETOOTH_BLUETOOTH_SOCKET_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/callback.h"
10 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
11 12
12 namespace net { 13 namespace net {
13 14 class IOBuffer;
14 class DrainableIOBuffer;
15 class GrowableIOBuffer;
16
17 } // namespace net 15 } // namespace net
18 16
19 namespace device { 17 namespace device {
20 18
21 // BluetoothSocket represents a socket to a specific service on a 19 // BluetoothSocket represents a socket to a specific service on a
22 // BluetoothDevice. BluetoothSocket objects are ref counted and may outlive 20 // BluetoothDevice. BluetoothSocket objects are ref counted and may outlive
23 // both the BluetoothDevice and BluetoothAdapter that were involved in their 21 // both the BluetoothDevice and BluetoothAdapter that were involved in their
24 // creation. 22 // creation. In terms of threading, platform specific implementation may differ
25 class BluetoothSocket : public base::RefCounted<BluetoothSocket> { 23 // slightly, but platform independent callers must guarantee calling various
24 // methods on the same thread for a given instance, and in a context that allows
25 // IO.
26 class BluetoothSocket : public base::RefCountedThreadSafe<BluetoothSocket> {
26 public: 27 public:
27 // Receives data from the socket and stores it in |buffer|. It returns whether 28 enum ErrorReason { kSystemError, kIOPending, kDisconnected };
28 // the reception has been successful. If it fails, the caller can get the
29 // error message through |GetLastErrorMessage()|.
30 virtual bool Receive(net::GrowableIOBuffer* buffer) = 0;
31 29
32 // Sends |buffer| to the socket. It returns whether the sending has been 30 typedef base::Callback<void(int)> SendCompletionCallback;
33 // successful. If it fails, the caller can get the error message through 31 typedef base::Callback<void(int, scoped_refptr<net::IOBuffer> io_buffer)>
34 // |GetLastErrorMessage()|. 32 ReceiveCompletionCallback;
35 virtual bool Send(net::DrainableIOBuffer* buffer) = 0; 33 typedef base::Callback<void(const std::string& error_message)>
34 ErrorCompletionCallback;
35 typedef base::Callback<void(ErrorReason, const std::string& error_message)>
36 ReceiveErrorCompletionCallback;
36 37
37 virtual std::string GetLastErrorMessage() const = 0; 38 // Connected to the peer device and calls |success_callback| when the
39 // connection has been established successfully. If an error occurs, calls
40 // |error_callback| with a system error message.
41 virtual void Connect(const base::Closure& success_callback,
42 const ErrorCompletionCallback& error_callback) = 0;
keybuk 2014/03/20 16:34:49 Does this need to be part of the public cross-plat
rpaquay 2014/03/20 18:21:11 Done.
43
44 // Disconnects a connected socket and calls |callback| upon completion. There
45 // is no failure case, as this is a best effort operation.
46 virtual void Disconnect(const base::Closure& callback) = 0;
47
48 // Receives data from the socket and calls |success_callback| when data is
49 // available. If an error occurs, calls |error_callback| with a reason and a
50 // message.
keybuk 2014/03/20 01:21:56 need to document parameters
rpaquay 2014/03/20 18:21:11 Done.
51 virtual void Receive(
52 int count,
53 const ReceiveCompletionCallback& success_callback,
54 const ReceiveErrorCompletionCallback& error_callback) = 0;
55
56 // Sends |buffer| to the socket and calls |success_callback| when data has
57 // been successfully sent. If an error occurs, calls |error_callback| with a
58 // reason and a message.
keybuk 2014/03/20 01:21:56 buffer_size not documented
rpaquay 2014/03/20 18:21:11 Done.
59 virtual void Send(scoped_refptr<net::IOBuffer> buffer,
60 int buffer_size,
61 const SendCompletionCallback& success_callback,
62 const ErrorCompletionCallback& error_callback) = 0;
38 63
39 protected: 64 protected:
40 friend class base::RefCounted<BluetoothSocket>; 65 friend class base::RefCountedThreadSafe<BluetoothSocket>;
41 virtual ~BluetoothSocket() {} 66 virtual ~BluetoothSocket();
42 }; 67 };
43 68
44 } // namespace device 69 } // namespace device
45 70
46 #endif // DEVICE_BLUETOOTH_BLUETOOTH_SOCKET_H_ 71 #endif // DEVICE_BLUETOOTH_BLUETOOTH_SOCKET_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698