Revert 264226 "Reduce dependency of TiclInvalidationService on P..."
[chromium-blink-merge.git] / device / bluetooth / bluetooth_socket_win.h
blob94f3df213edca7a4adfe30cfa2e782ccd94b3136
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_WIN_H_
6 #define DEVICE_BLUETOOTH_BLUETOOTH_SOCKET_WIN_H_
8 #include <WinSock2.h>
10 #include <queue>
11 #include <string>
13 #include "base/memory/linked_ptr.h"
14 #include "base/memory/ref_counted.h"
15 #include "base/threading/thread_checker.h"
16 #include "device/bluetooth/bluetooth_service_record_win.h"
17 #include "device/bluetooth/bluetooth_socket.h"
18 #include "net/base/net_log.h"
19 #include "net/socket/tcp_socket.h"
21 namespace net {
22 class IOBuffer;
23 class IOBufferWithSize;
24 } // namespace net
26 namespace device {
28 class BluetoothServiceRecord;
29 class BluetoothSocketThreadWin;
31 // This class is an implementation of BluetoothSocket class for the Windows
32 // 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 // separated thread.
35 class BluetoothSocketWin : public BluetoothSocket {
36 public:
37 static scoped_refptr<BluetoothSocketWin> CreateBluetoothSocket(
38 const BluetoothServiceRecord& service_record,
39 scoped_refptr<base::SequencedTaskRunner> ui_task_runner,
40 scoped_refptr<BluetoothSocketThreadWin> socket_thread,
41 net::NetLog* net_log,
42 const net::NetLog::Source& source);
44 // Connect to the peer device and calls |success_callback| when the
45 // connection has been established successfully. If an error occurs, calls
46 // |error_callback| with a system error message.
47 void Connect(const base::Closure& success_callback,
48 const ErrorCompletionCallback& error_callback);
50 // Overriden from BluetoothSocket:
51 virtual void Close() OVERRIDE;
53 virtual void Disconnect(const base::Closure& callback) OVERRIDE;
55 virtual void Receive(int count,
56 const ReceiveCompletionCallback& success_callback,
57 const ReceiveErrorCompletionCallback& error_callback)
58 OVERRIDE;
59 virtual void Send(scoped_refptr<net::IOBuffer> buffer,
60 int buffer_size,
61 const SendCompletionCallback& success_callback,
62 const ErrorCompletionCallback& error_callback) OVERRIDE;
64 protected:
65 virtual ~BluetoothSocketWin();
67 private:
68 struct WriteRequest {
69 scoped_refptr<net::IOBuffer> buffer;
70 int buffer_size;
71 SendCompletionCallback success_callback;
72 ErrorCompletionCallback error_callback;
75 BluetoothSocketWin(scoped_refptr<base::SequencedTaskRunner> ui_task_runner,
76 scoped_refptr<BluetoothSocketThreadWin> socket_thread,
77 net::NetLog* net_log,
78 const net::NetLog::Source& source);
80 void DoClose();
81 void DoConnect(const base::Closure& success_callback,
82 const ErrorCompletionCallback& error_callback);
83 void DoDisconnect(const base::Closure& callback);
84 void DoReceive(int count,
85 const ReceiveCompletionCallback& success_callback,
86 const ReceiveErrorCompletionCallback& error_callback);
87 void DoSend(scoped_refptr<net::IOBuffer> buffer,
88 int buffer_size,
89 const SendCompletionCallback& success_callback,
90 const ErrorCompletionCallback& error_callback);
92 void PostSuccess(const base::Closure& callback);
93 void PostErrorCompletion(const ErrorCompletionCallback& callback,
94 const std::string& error);
95 void PostReceiveCompletion(const ReceiveCompletionCallback& callback,
96 int io_buffer_size,
97 scoped_refptr<net::IOBuffer> io_buffer);
98 void PostReceiveErrorCompletion(
99 const ReceiveErrorCompletionCallback& callback,
100 ErrorReason reason,
101 const std::string& error_message);
102 void PostSendCompletion(const SendCompletionCallback& callback,
103 int bytes_written);
105 void SendFrontWriteRequest();
106 void OnSocketWriteComplete(const SendCompletionCallback& success_callback,
107 const ErrorCompletionCallback& error_callback,
108 int net_status);
109 void OnSocketReadComplete(
110 const ReceiveCompletionCallback& success_callback,
111 const ReceiveErrorCompletionCallback& error_callback,
112 int send_result);
114 scoped_refptr<base::SequencedTaskRunner> ui_task_runner_;
115 scoped_refptr<BluetoothSocketThreadWin> socket_thread_;
116 net::NetLog* net_log_;
117 const net::NetLog::Source source_;
118 std::string device_address_;
119 bool supports_rfcomm_;
120 uint8 rfcomm_channel_;
121 BTH_ADDR bth_addr_;
122 scoped_ptr<net::TCPSocket> tcp_socket_;
123 // Queue of pending writes. The buffer at the front of the queue is the one
124 // being written.
125 std::queue<linked_ptr<WriteRequest> > write_queue_;
126 scoped_refptr<net::IOBufferWithSize> read_buffer_;
128 DISALLOW_COPY_AND_ASSIGN(BluetoothSocketWin);
131 } // namespace device
133 #endif // DEVICE_BLUETOOTH_BLUETOOTH_SOCKET_WIN_H_