OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 NET_WEBSOCKETS_WEBSOCKET_THROTTLE_H_ | 5 #ifndef NET_WEBSOCKETS_WEBSOCKET_THROTTLE_H_ |
6 #define NET_WEBSOCKETS_WEBSOCKET_THROTTLE_H_ | 6 #define NET_WEBSOCKETS_WEBSOCKET_THROTTLE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <deque> | 9 #include <deque> |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/hash_tables.h" | 12 #include "base/hash_tables.h" |
13 #include "base/singleton.h" | 13 |
| 14 template <typename T> struct DefaultSingletonTraits; |
14 | 15 |
15 namespace net { | 16 namespace net { |
16 | 17 |
17 class SocketStream; | 18 class SocketStream; |
18 class WebSocketJob; | 19 class WebSocketJob; |
19 | 20 |
20 // SocketStreamThrottle for WebSocket protocol. | 21 // SocketStreamThrottle for WebSocket protocol. |
21 // Implements the client-side requirements in the spec. | 22 // Implements the client-side requirements in the spec. |
22 // http://tools.ietf.org/html/draft-hixie-thewebsocketprotocol | 23 // http://tools.ietf.org/html/draft-hixie-thewebsocketprotocol |
23 // 4.1 Handshake | 24 // 4.1 Handshake |
24 // 1. If the user agent already has a Web Socket connection to the | 25 // 1. If the user agent already has a Web Socket connection to the |
25 // remote host (IP address) identified by /host/, even if known by | 26 // remote host (IP address) identified by /host/, even if known by |
26 // another name, wait until that connection has been established or | 27 // another name, wait until that connection has been established or |
27 // for that connection to have failed. | 28 // for that connection to have failed. |
28 class WebSocketThrottle { | 29 class WebSocketThrottle { |
29 public: | 30 public: |
| 31 // Returns the singleton instance. |
| 32 static WebSocketThrottle* GetInstance(); |
| 33 |
30 // Puts |job| in |queue_| and queues for the destination addresses | 34 // Puts |job| in |queue_| and queues for the destination addresses |
31 // of |job|. | 35 // of |job|. |
32 // If other job is using the same destination address, set |job| waiting. | 36 // If other job is using the same destination address, set |job| waiting. |
33 void PutInQueue(WebSocketJob* job); | 37 void PutInQueue(WebSocketJob* job); |
34 | 38 |
35 // Removes |job| from |queue_| and queues for the destination addresses | 39 // Removes |job| from |queue_| and queues for the destination addresses |
36 // of |job|. | 40 // of |job|. |
37 void RemoveFromQueue(WebSocketJob* job); | 41 void RemoveFromQueue(WebSocketJob* job); |
38 | 42 |
39 // Checks sockets waiting in |queue_| and check the socket is the front of | 43 // Checks sockets waiting in |queue_| and check the socket is the front of |
(...skipping 13 matching lines...) Expand all Loading... |
53 // Key: string of host's address. Value: queue of sockets for the address. | 57 // Key: string of host's address. Value: queue of sockets for the address. |
54 ConnectingAddressMap addr_map_; | 58 ConnectingAddressMap addr_map_; |
55 | 59 |
56 // Queue of sockets for websockets in opening state. | 60 // Queue of sockets for websockets in opening state. |
57 ConnectingQueue queue_; | 61 ConnectingQueue queue_; |
58 }; | 62 }; |
59 | 63 |
60 } // namespace net | 64 } // namespace net |
61 | 65 |
62 #endif // NET_WEBSOCKETS_WEBSOCKET_THROTTLE_H_ | 66 #endif // NET_WEBSOCKETS_WEBSOCKET_THROTTLE_H_ |
OLD | NEW |