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

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

Issue 236203018: win: Implement Bluetooth server. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: for #4 comments Created 6 years, 7 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 | Annotate | Revision Log
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_WIN_H_ 5 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_SOCKET_WIN_H_
6 #define DEVICE_BLUETOOTH_BLUETOOTH_SOCKET_WIN_H_ 6 #define DEVICE_BLUETOOTH_BLUETOOTH_SOCKET_WIN_H_
7 7
8 #include <WinSock2.h> 8 #include <WinSock2.h>
9 9
10 #include <queue> 10 #include <queue>
11 #include <string> 11 #include <string>
12 12
13 #include "base/memory/linked_ptr.h" 13 #include "base/memory/linked_ptr.h"
14 #include "base/memory/ref_counted.h" 14 #include "base/memory/ref_counted.h"
15 #include "base/threading/thread_checker.h" 15 #include "base/threading/thread_checker.h"
16 #include "device/bluetooth/bluetooth_service_record_win.h" 16 #include "device/bluetooth/bluetooth_service_record_win.h"
17 #include "device/bluetooth/bluetooth_socket.h" 17 #include "device/bluetooth/bluetooth_socket.h"
18 #include "net/base/ip_endpoint.h"
18 #include "net/base/net_log.h" 19 #include "net/base/net_log.h"
19 #include "net/socket/tcp_socket.h" 20 #include "net/socket/tcp_socket.h"
20 21
21 namespace net { 22 namespace net {
22 class IOBuffer; 23 class IOBuffer;
23 class IOBufferWithSize; 24 class IOBufferWithSize;
24 } // namespace net 25 } // namespace net
25 26
26 namespace device { 27 namespace device {
27 28
28 class BluetoothServiceRecord; 29 class BluetoothServiceRecord;
29 class BluetoothSocketThreadWin; 30 class BluetoothSocketThreadWin;
30 31
31 // This class is an implementation of BluetoothSocket class for the Windows 32 // This class is an implementation of BluetoothSocket class for the Windows
32 // platform. All public methods (including the factory method) must be called 33 // platform. All public methods (including the factory method) must be called
33 // on the UI thread, while underlying socket operations are performed on a 34 // on the UI thread, while underlying socket operations are performed on a
34 // separated thread. 35 // separated thread.
35 class BluetoothSocketWin : public BluetoothSocket { 36 class BluetoothSocketWin : public BluetoothSocket {
36 public: 37 public:
38 typedef base::Callback<void(scoped_refptr<BluetoothSocketWin>,
39 const net::IPEndPoint&)> OnNewConnectionCallback;
40
37 static scoped_refptr<BluetoothSocketWin> CreateBluetoothSocket( 41 static scoped_refptr<BluetoothSocketWin> CreateBluetoothSocket(
38 const BluetoothServiceRecord& service_record,
39 scoped_refptr<base::SequencedTaskRunner> ui_task_runner, 42 scoped_refptr<base::SequencedTaskRunner> ui_task_runner,
40 scoped_refptr<BluetoothSocketThreadWin> socket_thread, 43 scoped_refptr<BluetoothSocketThreadWin> socket_thread,
41 net::NetLog* net_log, 44 net::NetLog* net_log,
42 const net::NetLog::Source& source); 45 const net::NetLog::Source& source);
43 46
44 // Connect to the peer device and calls |success_callback| when the 47 // Starts a service with the given uuid, name and rfcomm_channel.
48 // |success_callback| is invoked when the underlying socket is created
49 // and the service is published successfully. Otherwise, |error_callback| is
50 // called with an error message. |new_connection_callback| is invoked when
51 // an incoming connection is accepted by the underlying socket.
52 void StartService(
53 const BluetoothUUID& uuid,
54 const std::string& name,
55 int rfcomm_channel,
56 const base::Closure& success_callback,
57 const ErrorCompletionCallback& error_callback,
58 const OnNewConnectionCallback& new_connection_callback);
59
45 // connection has been established successfully. If an error occurs, calls 60 // connection has been established successfully. If an error occurs, calls
46 // |error_callback| with a system error message. 61 // |error_callback| with a system error message.
47 void Connect(const base::Closure& success_callback, 62 void Connect(const BluetoothServiceRecord& service_record,
63 const base::Closure& success_callback,
48 const ErrorCompletionCallback& error_callback); 64 const ErrorCompletionCallback& error_callback);
49 65
50 // Overriden from BluetoothSocket: 66 // Overriden from BluetoothSocket:
51 virtual void Close() OVERRIDE; 67 virtual void Close() OVERRIDE;
52 68
53 virtual void Disconnect(const base::Closure& callback) OVERRIDE; 69 virtual void Disconnect(const base::Closure& callback) OVERRIDE;
54 70
55 virtual void Receive(int count, 71 virtual void Receive(int count,
56 const ReceiveCompletionCallback& success_callback, 72 const ReceiveCompletionCallback& success_callback,
57 const ReceiveErrorCompletionCallback& error_callback) 73 const ReceiveErrorCompletionCallback& error_callback)
58 OVERRIDE; 74 OVERRIDE;
59 virtual void Send(scoped_refptr<net::IOBuffer> buffer, 75 virtual void Send(scoped_refptr<net::IOBuffer> buffer,
60 int buffer_size, 76 int buffer_size,
61 const SendCompletionCallback& success_callback, 77 const SendCompletionCallback& success_callback,
62 const ErrorCompletionCallback& error_callback) OVERRIDE; 78 const ErrorCompletionCallback& error_callback) OVERRIDE;
63 79
64 protected: 80 protected:
65 virtual ~BluetoothSocketWin(); 81 virtual ~BluetoothSocketWin();
66 82
67 private: 83 private:
84 struct ServiceRegData;
85
68 struct WriteRequest { 86 struct WriteRequest {
69 scoped_refptr<net::IOBuffer> buffer; 87 scoped_refptr<net::IOBuffer> buffer;
70 int buffer_size; 88 int buffer_size;
71 SendCompletionCallback success_callback; 89 SendCompletionCallback success_callback;
72 ErrorCompletionCallback error_callback; 90 ErrorCompletionCallback error_callback;
73 }; 91 };
74 92
75 BluetoothSocketWin(scoped_refptr<base::SequencedTaskRunner> ui_task_runner, 93 BluetoothSocketWin(scoped_refptr<base::SequencedTaskRunner> ui_task_runner,
76 scoped_refptr<BluetoothSocketThreadWin> socket_thread, 94 scoped_refptr<BluetoothSocketThreadWin> socket_thread,
77 net::NetLog* net_log, 95 net::NetLog* net_log,
(...skipping 26 matching lines...) Expand all
104 122
105 void SendFrontWriteRequest(); 123 void SendFrontWriteRequest();
106 void OnSocketWriteComplete(const SendCompletionCallback& success_callback, 124 void OnSocketWriteComplete(const SendCompletionCallback& success_callback,
107 const ErrorCompletionCallback& error_callback, 125 const ErrorCompletionCallback& error_callback,
108 int net_status); 126 int net_status);
109 void OnSocketReadComplete( 127 void OnSocketReadComplete(
110 const ReceiveCompletionCallback& success_callback, 128 const ReceiveCompletionCallback& success_callback,
111 const ReceiveErrorCompletionCallback& error_callback, 129 const ReceiveErrorCompletionCallback& error_callback,
112 int send_result); 130 int send_result);
113 131
132 void DoStartService(const BluetoothUUID& uuid,
133 const std::string& name,
134 int rfcomm_channel,
135 const base::Closure& success_callback,
136 const ErrorCompletionCallback& error_callback,
137 const OnNewConnectionCallback& new_connection_callback);
138 void DoAccept();
139 void OnAcceptOnSocketThread(int accept_result);
140 void OnAcceptOnUI(scoped_ptr<net::TCPSocket> accept_socket,
141 const net::IPEndPoint& peer_address);
142
114 scoped_refptr<base::SequencedTaskRunner> ui_task_runner_; 143 scoped_refptr<base::SequencedTaskRunner> ui_task_runner_;
115 scoped_refptr<BluetoothSocketThreadWin> socket_thread_; 144 scoped_refptr<BluetoothSocketThreadWin> socket_thread_;
116 net::NetLog* net_log_; 145 net::NetLog* net_log_;
117 const net::NetLog::Source source_; 146 const net::NetLog::Source source_;
118 std::string device_address_; 147 std::string device_address_;
119 bool supports_rfcomm_; 148 bool supports_rfcomm_;
120 uint8 rfcomm_channel_; 149 uint8 rfcomm_channel_;
121 BTH_ADDR bth_addr_; 150 BTH_ADDR bth_addr_;
122 scoped_ptr<net::TCPSocket> tcp_socket_; 151 scoped_ptr<net::TCPSocket> tcp_socket_;
123 // Queue of pending writes. The buffer at the front of the queue is the one 152 // Queue of pending writes. The buffer at the front of the queue is the one
124 // being written. 153 // being written.
125 std::queue<linked_ptr<WriteRequest> > write_queue_; 154 std::queue<linked_ptr<WriteRequest> > write_queue_;
126 scoped_refptr<net::IOBufferWithSize> read_buffer_; 155 scoped_refptr<net::IOBufferWithSize> read_buffer_;
127 156
157 scoped_ptr<ServiceRegData> service_reg_data_;
158 scoped_ptr<net::TCPSocket> accept_socket_;
159 net::IPEndPoint accept_address_;
160 OnNewConnectionCallback on_new_connection_callback_;
161
128 DISALLOW_COPY_AND_ASSIGN(BluetoothSocketWin); 162 DISALLOW_COPY_AND_ASSIGN(BluetoothSocketWin);
129 }; 163 };
130 164
131 } // namespace device 165 } // namespace device
132 166
133 #endif // DEVICE_BLUETOOTH_BLUETOOTH_SOCKET_WIN_H_ 167 #endif // DEVICE_BLUETOOTH_BLUETOOTH_SOCKET_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698