OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 MOJO_SERVICES_NETWORK_WEB_SOCKET_IMPL_H_ | 5 #ifndef MOJO_SERVICES_NETWORK_WEB_SOCKET_IMPL_H_ |
6 #define MOJO_SERVICES_NETWORK_WEB_SOCKET_IMPL_H_ | 6 #define MOJO_SERVICES_NETWORK_WEB_SOCKET_IMPL_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "mojo/public/cpp/bindings/interface_impl.h" | 10 #include "mojo/public/cpp/bindings/interface_impl.h" |
11 #include "mojo/services/public/interfaces/network/web_socket.mojom.h" | 11 #include "mojo/services/public/interfaces/network/web_socket.mojom.h" |
12 | 12 |
13 namespace net { | 13 namespace net { |
14 class WebSocketChannel; | 14 class WebSocketChannel; |
15 } // namespace net | 15 } // namespace net |
16 | 16 |
17 namespace mojo { | 17 namespace mojo { |
18 class NetworkContext; | 18 class NetworkContext; |
| 19 class WebSocketReadQueue; |
19 | 20 |
20 // Forms a bridge between the WebSocket mojo interface and the net::WebSocket | 21 // Forms a bridge between the WebSocket mojo interface and the net::WebSocket |
21 // implementation. | 22 // implementation. |
22 class WebSocketImpl : public InterfaceImpl<WebSocket> { | 23 class WebSocketImpl : public InterfaceImpl<WebSocket> { |
23 public: | 24 public: |
24 explicit WebSocketImpl(NetworkContext* context); | 25 explicit WebSocketImpl(NetworkContext* context); |
25 virtual ~WebSocketImpl(); | 26 virtual ~WebSocketImpl(); |
26 | 27 |
27 private: | 28 private: |
28 class PendingWriteToDataPipe; | |
29 class DependentIOBuffer; | |
30 | |
31 // WebSocket methods: | 29 // WebSocket methods: |
32 virtual void Connect(const String& url, | 30 virtual void Connect(const String& url, |
33 Array<String> protocols, | 31 Array<String> protocols, |
34 const String& origin, | 32 const String& origin, |
| 33 ScopedDataPipeConsumerHandle send_stream, |
35 WebSocketClientPtr client) OVERRIDE; | 34 WebSocketClientPtr client) OVERRIDE; |
36 virtual void Send(bool fin, | 35 virtual void Send(bool fin, |
37 WebSocket::MessageType type, | 36 WebSocket::MessageType type, |
38 ScopedDataPipeConsumerHandle data) OVERRIDE; | 37 uint32_t num_bytes) OVERRIDE; |
39 virtual void FlowControl(int64_t quota) OVERRIDE; | 38 virtual void FlowControl(int64_t quota) OVERRIDE; |
40 virtual void Close(uint16_t code, const String& reason) OVERRIDE; | 39 virtual void Close(uint16_t code, const String& reason) OVERRIDE; |
41 | 40 |
| 41 // Called with the data to send once it has been read from |send_stream_|. |
| 42 void DidReadFromSendStream(bool fin, |
| 43 WebSocket::MessageType type, |
| 44 uint32_t num_bytes, |
| 45 const char* data); |
| 46 |
42 // The channel we use to send events to the network. | 47 // The channel we use to send events to the network. |
43 scoped_ptr<net::WebSocketChannel> channel_; | 48 scoped_ptr<net::WebSocketChannel> channel_; |
| 49 ScopedDataPipeConsumerHandle send_stream_; |
| 50 scoped_ptr<WebSocketReadQueue> read_queue_; |
44 NetworkContext* context_; | 51 NetworkContext* context_; |
45 }; | 52 }; |
46 | 53 |
47 } // namespace mojo | 54 } // namespace mojo |
48 | 55 |
49 #endif // MOJO_SERVICES_NETWORK_WEB_SOCKET_IMPL_H_ | 56 #endif // MOJO_SERVICES_NETWORK_WEB_SOCKET_IMPL_H_ |
OLD | NEW |