OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // A ClientSocketPoolBase is used to restrict the number of sockets open at | 5 // A ClientSocketPoolBase is used to restrict the number of sockets open at |
6 // a time. It also maintains a list of idle persistent sockets for reuse. | 6 // a time. It also maintains a list of idle persistent sockets for reuse. |
7 // Subclasses of ClientSocketPool should compose ClientSocketPoolBase to handle | 7 // Subclasses of ClientSocketPool should compose ClientSocketPoolBase to handle |
8 // the core logic of (1) restricting the number of active (connected or | 8 // the core logic of (1) restricting the number of active (connected or |
9 // connecting) sockets per "group" (generally speaking, the hostname), (2) | 9 // connecting) sockets per "group" (generally speaking, the hostname), (2) |
10 // maintaining a per-group list of idle, persistent sockets for reuse, and (3) | 10 // maintaining a per-group list of idle, persistent sockets for reuse, and (3) |
(...skipping 21 matching lines...) Expand all Loading... |
32 #include "base/ref_counted.h" | 32 #include "base/ref_counted.h" |
33 #include "base/scoped_ptr.h" | 33 #include "base/scoped_ptr.h" |
34 #include "base/task.h" | 34 #include "base/task.h" |
35 #include "base/time.h" | 35 #include "base/time.h" |
36 #include "base/timer.h" | 36 #include "base/timer.h" |
37 #include "net/base/address_list.h" | 37 #include "net/base/address_list.h" |
38 #include "net/base/completion_callback.h" | 38 #include "net/base/completion_callback.h" |
39 #include "net/base/load_states.h" | 39 #include "net/base/load_states.h" |
40 #include "net/base/net_errors.h" | 40 #include "net/base/net_errors.h" |
41 #include "net/base/net_log.h" | 41 #include "net/base/net_log.h" |
| 42 #include "net/base/network_change_notifier.h" |
42 #include "net/base/request_priority.h" | 43 #include "net/base/request_priority.h" |
43 #include "net/socket/client_socket.h" | 44 #include "net/socket/client_socket.h" |
44 #include "net/socket/client_socket_pool.h" | 45 #include "net/socket/client_socket_pool.h" |
45 | 46 |
46 namespace net { | 47 namespace net { |
47 | 48 |
48 class ClientSocketHandle; | 49 class ClientSocketHandle; |
49 | 50 |
50 // ConnectJob provides an abstract interface for "connecting" a socket. | 51 // ConnectJob provides an abstract interface for "connecting" a socket. |
51 // The connection may involve host resolution, tcp connection, ssl connection, | 52 // The connection may involve host resolution, tcp connection, ssl connection, |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 | 117 |
117 namespace internal { | 118 namespace internal { |
118 | 119 |
119 // ClientSocketPoolBaseHelper is an internal class that implements almost all | 120 // ClientSocketPoolBaseHelper is an internal class that implements almost all |
120 // the functionality from ClientSocketPoolBase without using templates. | 121 // the functionality from ClientSocketPoolBase without using templates. |
121 // ClientSocketPoolBase adds templated definitions built on top of | 122 // ClientSocketPoolBase adds templated definitions built on top of |
122 // ClientSocketPoolBaseHelper. This class is not for external use, please use | 123 // ClientSocketPoolBaseHelper. This class is not for external use, please use |
123 // ClientSocketPoolBase instead. | 124 // ClientSocketPoolBase instead. |
124 class ClientSocketPoolBaseHelper | 125 class ClientSocketPoolBaseHelper |
125 : public base::RefCounted<ClientSocketPoolBaseHelper>, | 126 : public base::RefCounted<ClientSocketPoolBaseHelper>, |
126 public ConnectJob::Delegate { | 127 public ConnectJob::Delegate, |
| 128 public NetworkChangeNotifier::Observer { |
127 public: | 129 public: |
128 class Request { | 130 class Request { |
129 public: | 131 public: |
130 Request(ClientSocketHandle* handle, | 132 Request(ClientSocketHandle* handle, |
131 CompletionCallback* callback, | 133 CompletionCallback* callback, |
132 RequestPriority priority, | 134 RequestPriority priority, |
133 const BoundNetLog& net_log); | 135 const BoundNetLog& net_log); |
134 | 136 |
135 virtual ~Request(); | 137 virtual ~Request(); |
136 | 138 |
(...skipping 26 matching lines...) Expand all Loading... |
163 | 165 |
164 private: | 166 private: |
165 DISALLOW_COPY_AND_ASSIGN(ConnectJobFactory); | 167 DISALLOW_COPY_AND_ASSIGN(ConnectJobFactory); |
166 }; | 168 }; |
167 | 169 |
168 ClientSocketPoolBaseHelper( | 170 ClientSocketPoolBaseHelper( |
169 int max_sockets, | 171 int max_sockets, |
170 int max_sockets_per_group, | 172 int max_sockets_per_group, |
171 base::TimeDelta unused_idle_socket_timeout, | 173 base::TimeDelta unused_idle_socket_timeout, |
172 base::TimeDelta used_idle_socket_timeout, | 174 base::TimeDelta used_idle_socket_timeout, |
173 ConnectJobFactory* connect_job_factory); | 175 ConnectJobFactory* connect_job_factory, |
| 176 NetworkChangeNotifier* network_change_notifier); |
174 | 177 |
175 // See ClientSocketPool::RequestSocket for documentation on this function. | 178 // See ClientSocketPool::RequestSocket for documentation on this function. |
176 // ClientSocketPoolBaseHelper takes ownership of |request|, which must be | 179 // ClientSocketPoolBaseHelper takes ownership of |request|, which must be |
177 // heap allocated. | 180 // heap allocated. |
178 int RequestSocket(const std::string& group_name, const Request* request); | 181 int RequestSocket(const std::string& group_name, const Request* request); |
179 | 182 |
180 // See ClientSocketPool::CancelRequest for documentation on this function. | 183 // See ClientSocketPool::CancelRequest for documentation on this function. |
181 void CancelRequest(const std::string& group_name, | 184 void CancelRequest(const std::string& group_name, |
182 const ClientSocketHandle* handle); | 185 const ClientSocketHandle* handle); |
183 | 186 |
(...skipping 19 matching lines...) Expand all Loading... |
203 | 206 |
204 int ConnectRetryIntervalMs() const { | 207 int ConnectRetryIntervalMs() const { |
205 // TODO(mbelshe): Make this tuned dynamically based on measured RTT. | 208 // TODO(mbelshe): Make this tuned dynamically based on measured RTT. |
206 // For now, just use the max retry interval. | 209 // For now, just use the max retry interval. |
207 return ClientSocketPool::kMaxConnectRetryIntervalMs; | 210 return ClientSocketPool::kMaxConnectRetryIntervalMs; |
208 } | 211 } |
209 | 212 |
210 // ConnectJob::Delegate methods: | 213 // ConnectJob::Delegate methods: |
211 virtual void OnConnectJobComplete(int result, ConnectJob* job); | 214 virtual void OnConnectJobComplete(int result, ConnectJob* job); |
212 | 215 |
| 216 // NetworkChangeNotifier::Observer methods: |
| 217 virtual void OnIPAddressChanged(); |
| 218 |
213 // For testing. | 219 // For testing. |
214 bool may_have_stalled_group() const { return may_have_stalled_group_; } | 220 bool may_have_stalled_group() const { return may_have_stalled_group_; } |
215 | 221 |
216 int NumConnectJobsInGroup(const std::string& group_name) const { | 222 int NumConnectJobsInGroup(const std::string& group_name) const { |
217 return group_map_.find(group_name)->second.jobs.size(); | 223 return group_map_.find(group_name)->second.jobs.size(); |
218 } | 224 } |
219 | 225 |
220 // Closes all idle sockets if |force| is true. Else, only closes idle | 226 // Closes all idle sockets if |force| is true. Else, only closes idle |
221 // sockets that timed out or can't be reused. Made public for testing. | 227 // sockets that timed out or can't be reused. Made public for testing. |
222 void CleanupIdleSockets(bool force); | 228 void CleanupIdleSockets(bool force); |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
426 // |max_sockets_per_group_| limit. So choosing the next request involves | 432 // |max_sockets_per_group_| limit. So choosing the next request involves |
427 // selecting the highest priority request across *all* groups. | 433 // selecting the highest priority request across *all* groups. |
428 // | 434 // |
429 // Since reaching the maximum number of sockets is an edge case, we make note | 435 // Since reaching the maximum number of sockets is an edge case, we make note |
430 // of when it happens, and thus avoid doing the slower "scan all groups" | 436 // of when it happens, and thus avoid doing the slower "scan all groups" |
431 // in the common case. | 437 // in the common case. |
432 bool may_have_stalled_group_; | 438 bool may_have_stalled_group_; |
433 | 439 |
434 const scoped_ptr<ConnectJobFactory> connect_job_factory_; | 440 const scoped_ptr<ConnectJobFactory> connect_job_factory_; |
435 | 441 |
| 442 NetworkChangeNotifier* const network_change_notifier_; |
| 443 |
436 // TODO(vandebo) Remove when backup jobs move to TCPClientSocketPool | 444 // TODO(vandebo) Remove when backup jobs move to TCPClientSocketPool |
437 bool backup_jobs_enabled_; | 445 bool backup_jobs_enabled_; |
438 | 446 |
439 // A factory to pin the backup_job tasks. | 447 // A factory to pin the backup_job tasks. |
440 ScopedRunnableMethodFactory<ClientSocketPoolBaseHelper> method_factory_; | 448 ScopedRunnableMethodFactory<ClientSocketPoolBaseHelper> method_factory_; |
441 }; | 449 }; |
442 | 450 |
443 } // namespace internal | 451 } // namespace internal |
444 | 452 |
445 // The maximum duration, in seconds, to keep unused idle persistent sockets | 453 // The maximum duration, in seconds, to keep unused idle persistent sockets |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
492 // sockets a "group" can have. |unused_idle_socket_timeout| specifies how | 500 // sockets a "group" can have. |unused_idle_socket_timeout| specifies how |
493 // long to leave an unused idle socket open before closing it. | 501 // long to leave an unused idle socket open before closing it. |
494 // |used_idle_socket_timeout| specifies how long to leave a previously used | 502 // |used_idle_socket_timeout| specifies how long to leave a previously used |
495 // idle socket open before closing it. | 503 // idle socket open before closing it. |
496 ClientSocketPoolBase( | 504 ClientSocketPoolBase( |
497 int max_sockets, | 505 int max_sockets, |
498 int max_sockets_per_group, | 506 int max_sockets_per_group, |
499 const std::string& name, | 507 const std::string& name, |
500 base::TimeDelta unused_idle_socket_timeout, | 508 base::TimeDelta unused_idle_socket_timeout, |
501 base::TimeDelta used_idle_socket_timeout, | 509 base::TimeDelta used_idle_socket_timeout, |
502 ConnectJobFactory* connect_job_factory) | 510 ConnectJobFactory* connect_job_factory, |
| 511 NetworkChangeNotifier* network_change_notifier) |
503 : name_(name), | 512 : name_(name), |
504 helper_(new internal::ClientSocketPoolBaseHelper( | 513 helper_(new internal::ClientSocketPoolBaseHelper( |
505 max_sockets, max_sockets_per_group, | 514 max_sockets, max_sockets_per_group, |
506 unused_idle_socket_timeout, used_idle_socket_timeout, | 515 unused_idle_socket_timeout, used_idle_socket_timeout, |
507 new ConnectJobFactoryAdaptor(connect_job_factory))) {} | 516 new ConnectJobFactoryAdaptor(connect_job_factory), |
| 517 network_change_notifier)) {} |
508 | 518 |
509 virtual ~ClientSocketPoolBase() {} | 519 virtual ~ClientSocketPoolBase() {} |
510 | 520 |
511 // These member functions simply forward to ClientSocketPoolBaseHelper. | 521 // These member functions simply forward to ClientSocketPoolBaseHelper. |
512 | 522 |
513 // RequestSocket bundles up the parameters into a Request and then forwards to | 523 // RequestSocket bundles up the parameters into a Request and then forwards to |
514 // ClientSocketPoolBaseHelper::RequestSocket(). Note that the memory | 524 // ClientSocketPoolBaseHelper::RequestSocket(). Note that the memory |
515 // ownership is transferred in the asynchronous (ERR_IO_PENDING) case. | 525 // ownership is transferred in the asynchronous (ERR_IO_PENDING) case. |
516 int RequestSocket(const std::string& group_name, | 526 int RequestSocket(const std::string& group_name, |
517 const SocketParams& params, | 527 const SocketParams& params, |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
613 // the posting of the task and the execution, then we'll hit the DCHECK that | 623 // the posting of the task and the execution, then we'll hit the DCHECK that |
614 // |ClientSocketPoolBaseHelper::group_map_| is empty. | 624 // |ClientSocketPoolBaseHelper::group_map_| is empty. |
615 scoped_refptr<internal::ClientSocketPoolBaseHelper> helper_; | 625 scoped_refptr<internal::ClientSocketPoolBaseHelper> helper_; |
616 | 626 |
617 DISALLOW_COPY_AND_ASSIGN(ClientSocketPoolBase); | 627 DISALLOW_COPY_AND_ASSIGN(ClientSocketPoolBase); |
618 }; | 628 }; |
619 | 629 |
620 } // namespace net | 630 } // namespace net |
621 | 631 |
622 #endif // NET_SOCKET_CLIENT_SOCKET_POOL_BASE_H_ | 632 #endif // NET_SOCKET_CLIENT_SOCKET_POOL_BASE_H_ |
OLD | NEW |