Revert of Componentize TemplateURLService (https://codereview.chromium.org/367023002/)
[chromium-blink-merge.git] / device / bluetooth / bluetooth_socket_net.h
blobb16e2359cf1a934cfc799df497f1995abe97d113
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_
8 #include <queue>
9 #include <string>
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"
21 namespace net {
22 class IOBuffer;
23 class IOBufferWithSize;
24 } // namespace net
26 namespace device {
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 {
33 public:
34 // 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)
40 OVERRIDE;
41 virtual void Send(scoped_refptr<net::IOBuffer> buffer,
42 int buffer_size,
43 const SendCompletionCallback& success_callback,
44 const ErrorCompletionCallback& error_callback) OVERRIDE;
46 protected:
47 BluetoothSocketNet(scoped_refptr<base::SequencedTaskRunner> ui_task_runner,
48 scoped_refptr<BluetoothSocketThread> socket_thread,
49 net::NetLog* net_log,
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);
78 private:
79 struct WriteRequest {
80 WriteRequest();
81 ~WriteRequest();
83 scoped_refptr<net::IOBuffer> buffer;
84 int buffer_size;
85 SendCompletionCallback success_callback;
86 ErrorCompletionCallback error_callback;
89 void DoClose();
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,
97 int read_result);
98 void DoSend(scoped_refptr<net::IOBuffer> buffer,
99 int buffer_size,
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,
105 int send_result);
107 void PostReceiveCompletion(const ReceiveCompletionCallback& callback,
108 int io_buffer_size,
109 scoped_refptr<net::IOBuffer> io_buffer);
110 void PostReceiveErrorCompletion(
111 const ReceiveErrorCompletionCallback& callback,
112 ErrorReason reason,
113 const std::string& error_message);
114 void PostSendCompletion(const SendCompletionCallback& callback,
115 int bytes_written);
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_