1 // Copyright 2014 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_NET_H_
6 #define DEVICE_BLUETOOTH_BLUETOOTH_SOCKET_NET_H_
11 #include "base/basictypes.h"
12 #include "base/memory/linked_ptr.h"
13 #include "base/memory/ref_counted.h"
14 #include "base/memory/scoped_ptr.h"
15 #include "base/sequenced_task_runner.h"
16 #include "device/bluetooth/bluetooth_socket.h"
17 #include "device/bluetooth/bluetooth_socket_thread.h"
18 #include "net/base/net_log.h"
19 #include "net/socket/tcp_socket.h"
23 class IOBufferWithSize
;
28 // This class is a base-class for implementations of BluetoothSocket that can
29 // use net::TCPSocket. All public methods (including the factory method) must
30 // be called on the UI thread, while underlying socket operations are
31 // performed on a separate thread.
32 class BluetoothSocketNet
: public BluetoothSocket
{
35 virtual void Close() OVERRIDE
;
36 virtual void Disconnect(const base::Closure
& callback
) OVERRIDE
;
37 virtual void Receive(int buffer_size
,
38 const ReceiveCompletionCallback
& success_callback
,
39 const ReceiveErrorCompletionCallback
& error_callback
)
41 virtual void Send(scoped_refptr
<net::IOBuffer
> buffer
,
43 const SendCompletionCallback
& success_callback
,
44 const ErrorCompletionCallback
& error_callback
) OVERRIDE
;
47 BluetoothSocketNet(scoped_refptr
<base::SequencedTaskRunner
> ui_task_runner
,
48 scoped_refptr
<BluetoothSocketThread
> socket_thread
,
50 const net::NetLog::Source
& source
);
51 virtual ~BluetoothSocketNet();
53 // Resets locally held data after a socket is closed. Default implementation
54 // does nothing, subclasses may override.
55 virtual void ResetData();
57 // Methods for subclasses to obtain the members.
58 scoped_refptr
<base::SequencedTaskRunner
> ui_task_runner() const {
59 return ui_task_runner_
;
62 scoped_refptr
<BluetoothSocketThread
> socket_thread() const {
63 return socket_thread_
;
66 net::NetLog
* net_log() const { return net_log_
; }
67 const net::NetLog::Source
& source() const { return source_
; }
69 net::TCPSocket
* tcp_socket() { return tcp_socket_
.get(); }
71 void ResetTCPSocket();
72 void SetTCPSocket(scoped_ptr
<net::TCPSocket
> tcp_socket
);
74 void PostSuccess(const base::Closure
& callback
);
75 void PostErrorCompletion(const ErrorCompletionCallback
& callback
,
76 const std::string
& error
);
83 scoped_refptr
<net::IOBuffer
> buffer
;
85 SendCompletionCallback success_callback
;
86 ErrorCompletionCallback error_callback
;
90 void DoDisconnect(const base::Closure
& callback
);
91 void DoReceive(int buffer_size
,
92 const ReceiveCompletionCallback
& success_callback
,
93 const ReceiveErrorCompletionCallback
& error_callback
);
94 void OnSocketReadComplete(
95 const ReceiveCompletionCallback
& success_callback
,
96 const ReceiveErrorCompletionCallback
& error_callback
,
98 void DoSend(scoped_refptr
<net::IOBuffer
> buffer
,
100 const SendCompletionCallback
& success_callback
,
101 const ErrorCompletionCallback
& error_callback
);
102 void SendFrontWriteRequest();
103 void OnSocketWriteComplete(const SendCompletionCallback
& success_callback
,
104 const ErrorCompletionCallback
& error_callback
,
107 void PostReceiveCompletion(const ReceiveCompletionCallback
& callback
,
109 scoped_refptr
<net::IOBuffer
> io_buffer
);
110 void PostReceiveErrorCompletion(
111 const ReceiveErrorCompletionCallback
& callback
,
113 const std::string
& error_message
);
114 void PostSendCompletion(const SendCompletionCallback
& callback
,
117 scoped_refptr
<base::SequencedTaskRunner
> ui_task_runner_
;
118 scoped_refptr
<BluetoothSocketThread
> socket_thread_
;
119 net::NetLog
* net_log_
;
120 const net::NetLog::Source source_
;
122 scoped_ptr
<net::TCPSocket
> tcp_socket_
;
123 scoped_refptr
<net::IOBufferWithSize
> read_buffer_
;
124 std::queue
<linked_ptr
<WriteRequest
> > write_queue_
;
126 DISALLOW_COPY_AND_ASSIGN(BluetoothSocketNet
);
129 } // namespace device
131 #endif // DEVICE_BLUETOOTH_BLUETOOTH_SOCKET_NET_H_