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 #include "net/socket/client_socket_pool_base.h" | 5 #include "net/socket/client_socket_pool_base.h" |
6 | 6 |
7 #include "base/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
8 #include "base/format_macros.h" | 8 #include "base/format_macros.h" |
9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
10 #include "base/stats_counters.h" | 10 #include "base/stats_counters.h" |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 : handle_(handle), callback_(callback), priority_(priority), | 105 : handle_(handle), callback_(callback), priority_(priority), |
106 net_log_(net_log) {} | 106 net_log_(net_log) {} |
107 | 107 |
108 ClientSocketPoolBaseHelper::Request::~Request() {} | 108 ClientSocketPoolBaseHelper::Request::~Request() {} |
109 | 109 |
110 ClientSocketPoolBaseHelper::ClientSocketPoolBaseHelper( | 110 ClientSocketPoolBaseHelper::ClientSocketPoolBaseHelper( |
111 int max_sockets, | 111 int max_sockets, |
112 int max_sockets_per_group, | 112 int max_sockets_per_group, |
113 base::TimeDelta unused_idle_socket_timeout, | 113 base::TimeDelta unused_idle_socket_timeout, |
114 base::TimeDelta used_idle_socket_timeout, | 114 base::TimeDelta used_idle_socket_timeout, |
115 ConnectJobFactory* connect_job_factory) | 115 ConnectJobFactory* connect_job_factory, |
| 116 NetworkChangeNotifier* network_change_notifier) |
116 : idle_socket_count_(0), | 117 : idle_socket_count_(0), |
117 connecting_socket_count_(0), | 118 connecting_socket_count_(0), |
118 handed_out_socket_count_(0), | 119 handed_out_socket_count_(0), |
119 num_releasing_sockets_(0), | 120 num_releasing_sockets_(0), |
120 max_sockets_(max_sockets), | 121 max_sockets_(max_sockets), |
121 max_sockets_per_group_(max_sockets_per_group), | 122 max_sockets_per_group_(max_sockets_per_group), |
122 unused_idle_socket_timeout_(unused_idle_socket_timeout), | 123 unused_idle_socket_timeout_(unused_idle_socket_timeout), |
123 used_idle_socket_timeout_(used_idle_socket_timeout), | 124 used_idle_socket_timeout_(used_idle_socket_timeout), |
124 may_have_stalled_group_(false), | 125 may_have_stalled_group_(false), |
125 connect_job_factory_(connect_job_factory), | 126 connect_job_factory_(connect_job_factory), |
| 127 network_change_notifier_(network_change_notifier), |
126 backup_jobs_enabled_(false), | 128 backup_jobs_enabled_(false), |
127 ALLOW_THIS_IN_INITIALIZER_LIST(method_factory_(this)) { | 129 ALLOW_THIS_IN_INITIALIZER_LIST(method_factory_(this)) { |
128 DCHECK_LE(0, max_sockets_per_group); | 130 DCHECK_LE(0, max_sockets_per_group); |
129 DCHECK_LE(max_sockets_per_group, max_sockets); | 131 DCHECK_LE(max_sockets_per_group, max_sockets); |
| 132 |
| 133 if (network_change_notifier_) |
| 134 network_change_notifier_->AddObserver(this); |
130 } | 135 } |
131 | 136 |
132 ClientSocketPoolBaseHelper::~ClientSocketPoolBaseHelper() { | 137 ClientSocketPoolBaseHelper::~ClientSocketPoolBaseHelper() { |
133 CancelAllConnectJobs(); | 138 CancelAllConnectJobs(); |
134 | 139 |
135 // Clean up any idle sockets. Assert that we have no remaining active | 140 // Clean up any idle sockets. Assert that we have no remaining active |
136 // sockets or pending requests. They should have all been cleaned up prior | 141 // sockets or pending requests. They should have all been cleaned up prior |
137 // to the manager being destroyed. | 142 // to the manager being destroyed. |
138 CloseIdleSockets(); | 143 CloseIdleSockets(); |
139 CHECK(group_map_.empty()); | 144 CHECK(group_map_.empty()); |
140 DCHECK_EQ(0, connecting_socket_count_); | 145 DCHECK_EQ(0, connecting_socket_count_); |
| 146 |
| 147 if (network_change_notifier_) |
| 148 network_change_notifier_->RemoveObserver(this); |
141 } | 149 } |
142 | 150 |
143 // InsertRequestIntoQueue inserts the request into the queue based on | 151 // InsertRequestIntoQueue inserts the request into the queue based on |
144 // priority. Highest priorities are closest to the front. Older requests are | 152 // priority. Highest priorities are closest to the front. Older requests are |
145 // prioritized over requests of equal priority. | 153 // prioritized over requests of equal priority. |
146 // | 154 // |
147 // static | 155 // static |
148 void ClientSocketPoolBaseHelper::InsertRequestIntoQueue( | 156 void ClientSocketPoolBaseHelper::InsertRequestIntoQueue( |
149 const Request* r, RequestQueue* pending_requests) { | 157 const Request* r, RequestQueue* pending_requests) { |
150 RequestQueue::iterator it = pending_requests->begin(); | 158 RequestQueue::iterator it = pending_requests->begin(); |
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
595 r->net_log().EndEvent( | 603 r->net_log().EndEvent( |
596 NetLog::TYPE_SOCKET_POOL_CONNECT_JOB_ID, | 604 NetLog::TYPE_SOCKET_POOL_CONNECT_JOB_ID, |
597 new NetLogIntegerParameter("source_id", job_log.source().id)); | 605 new NetLogIntegerParameter("source_id", job_log.source().id)); |
598 r->net_log().EndEvent(NetLog::TYPE_SOCKET_POOL, NULL); | 606 r->net_log().EndEvent(NetLog::TYPE_SOCKET_POOL, NULL); |
599 r->callback()->Run(result); | 607 r->callback()->Run(result); |
600 } | 608 } |
601 MaybeOnAvailableSocketSlot(group_name); | 609 MaybeOnAvailableSocketSlot(group_name); |
602 } | 610 } |
603 } | 611 } |
604 | 612 |
| 613 void ClientSocketPoolBaseHelper::OnIPAddressChanged() { |
| 614 CloseIdleSockets(); |
| 615 } |
| 616 |
605 void ClientSocketPoolBaseHelper::RemoveConnectJob(const ConnectJob *job, | 617 void ClientSocketPoolBaseHelper::RemoveConnectJob(const ConnectJob *job, |
606 Group* group) { | 618 Group* group) { |
607 CHECK_GT(connecting_socket_count_, 0); | 619 CHECK_GT(connecting_socket_count_, 0); |
608 connecting_socket_count_--; | 620 connecting_socket_count_--; |
609 | 621 |
610 DCHECK(job); | 622 DCHECK(job); |
611 delete job; | 623 delete job; |
612 | 624 |
613 if (group) { | 625 if (group) { |
614 DCHECK(ContainsKey(group->jobs, job)); | 626 DCHECK(ContainsKey(group->jobs, job)); |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
730 DCHECK_LE(total, max_sockets_); | 742 DCHECK_LE(total, max_sockets_); |
731 if (total < max_sockets_) | 743 if (total < max_sockets_) |
732 return false; | 744 return false; |
733 LOG(WARNING) << "ReachedMaxSocketsLimit: " << total << "/" << max_sockets_; | 745 LOG(WARNING) << "ReachedMaxSocketsLimit: " << total << "/" << max_sockets_; |
734 return true; | 746 return true; |
735 } | 747 } |
736 | 748 |
737 } // namespace internal | 749 } // namespace internal |
738 | 750 |
739 } // namespace net | 751 } // namespace net |
OLD | NEW |