ozone: evdev: Sync caps lock LED state to evdev
[chromium-blink-merge.git] / net / socket / client_socket_pool_base.cc
blob4bc44f5999eae784f7a7f4804d73928daa79e486
1 // Copyright (c) 2012 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 #include "net/socket/client_socket_pool_base.h"
7 #include "base/compiler_specific.h"
8 #include "base/format_macros.h"
9 #include "base/logging.h"
10 #include "base/message_loop/message_loop.h"
11 #include "base/profiler/scoped_tracker.h"
12 #include "base/stl_util.h"
13 #include "base/strings/string_util.h"
14 #include "base/time/time.h"
15 #include "base/values.h"
16 #include "net/base/net_errors.h"
17 #include "net/base/net_log.h"
19 using base::TimeDelta;
21 namespace net {
23 namespace {
25 // Indicate whether we should enable idle socket cleanup timer. When timer is
26 // disabled, sockets are closed next time a socket request is made.
27 bool g_cleanup_timer_enabled = true;
29 // The timeout value, in seconds, used to clean up idle sockets that can't be
30 // reused.
32 // Note: It's important to close idle sockets that have received data as soon
33 // as possible because the received data may cause BSOD on Windows XP under
34 // some conditions. See http://crbug.com/4606.
35 const int kCleanupInterval = 10; // DO NOT INCREASE THIS TIMEOUT.
37 // Indicate whether or not we should establish a new transport layer connection
38 // after a certain timeout has passed without receiving an ACK.
39 bool g_connect_backup_jobs_enabled = true;
41 } // namespace
43 ConnectJob::ConnectJob(const std::string& group_name,
44 base::TimeDelta timeout_duration,
45 RequestPriority priority,
46 Delegate* delegate,
47 const BoundNetLog& net_log)
48 : group_name_(group_name),
49 timeout_duration_(timeout_duration),
50 priority_(priority),
51 delegate_(delegate),
52 net_log_(net_log),
53 idle_(true) {
54 DCHECK(!group_name.empty());
55 DCHECK(delegate);
56 net_log.BeginEvent(NetLog::TYPE_SOCKET_POOL_CONNECT_JOB,
57 NetLog::StringCallback("group_name", &group_name_));
60 ConnectJob::~ConnectJob() {
61 net_log().EndEvent(NetLog::TYPE_SOCKET_POOL_CONNECT_JOB);
64 scoped_ptr<StreamSocket> ConnectJob::PassSocket() {
65 return socket_.Pass();
68 int ConnectJob::Connect() {
69 if (timeout_duration_ != base::TimeDelta())
70 timer_.Start(FROM_HERE, timeout_duration_, this, &ConnectJob::OnTimeout);
72 idle_ = false;
74 LogConnectStart();
76 int rv = ConnectInternal();
78 if (rv != ERR_IO_PENDING) {
79 LogConnectCompletion(rv);
80 delegate_ = NULL;
83 return rv;
86 void ConnectJob::SetSocket(scoped_ptr<StreamSocket> socket) {
87 if (socket) {
88 net_log().AddEvent(NetLog::TYPE_CONNECT_JOB_SET_SOCKET,
89 socket->NetLog().source().ToEventParametersCallback());
91 socket_ = socket.Pass();
94 void ConnectJob::NotifyDelegateOfCompletion(int rv) {
95 // The delegate will own |this|.
96 Delegate* delegate = delegate_;
97 delegate_ = NULL;
99 LogConnectCompletion(rv);
100 delegate->OnConnectJobComplete(rv, this);
103 void ConnectJob::ResetTimer(base::TimeDelta remaining_time) {
104 timer_.Stop();
105 timer_.Start(FROM_HERE, remaining_time, this, &ConnectJob::OnTimeout);
108 void ConnectJob::LogConnectStart() {
109 connect_timing_.connect_start = base::TimeTicks::Now();
110 net_log().BeginEvent(NetLog::TYPE_SOCKET_POOL_CONNECT_JOB_CONNECT);
113 void ConnectJob::LogConnectCompletion(int net_error) {
114 connect_timing_.connect_end = base::TimeTicks::Now();
115 net_log().EndEventWithNetErrorCode(
116 NetLog::TYPE_SOCKET_POOL_CONNECT_JOB_CONNECT, net_error);
119 void ConnectJob::OnTimeout() {
120 // Make sure the socket is NULL before calling into |delegate|.
121 SetSocket(scoped_ptr<StreamSocket>());
123 net_log_.AddEvent(NetLog::TYPE_SOCKET_POOL_CONNECT_JOB_TIMED_OUT);
125 NotifyDelegateOfCompletion(ERR_TIMED_OUT);
128 namespace internal {
130 ClientSocketPoolBaseHelper::Request::Request(
131 ClientSocketHandle* handle,
132 const CompletionCallback& callback,
133 RequestPriority priority,
134 bool ignore_limits,
135 Flags flags,
136 const BoundNetLog& net_log)
137 : handle_(handle),
138 callback_(callback),
139 priority_(priority),
140 ignore_limits_(ignore_limits),
141 flags_(flags),
142 net_log_(net_log) {
143 if (ignore_limits_)
144 DCHECK_EQ(priority_, MAXIMUM_PRIORITY);
147 ClientSocketPoolBaseHelper::Request::~Request() {}
149 ClientSocketPoolBaseHelper::ClientSocketPoolBaseHelper(
150 HigherLayeredPool* pool,
151 int max_sockets,
152 int max_sockets_per_group,
153 base::TimeDelta unused_idle_socket_timeout,
154 base::TimeDelta used_idle_socket_timeout,
155 ConnectJobFactory* connect_job_factory)
156 : idle_socket_count_(0),
157 connecting_socket_count_(0),
158 handed_out_socket_count_(0),
159 max_sockets_(max_sockets),
160 max_sockets_per_group_(max_sockets_per_group),
161 use_cleanup_timer_(g_cleanup_timer_enabled),
162 unused_idle_socket_timeout_(unused_idle_socket_timeout),
163 used_idle_socket_timeout_(used_idle_socket_timeout),
164 connect_job_factory_(connect_job_factory),
165 connect_backup_jobs_enabled_(false),
166 pool_generation_number_(0),
167 pool_(pool),
168 weak_factory_(this) {
169 DCHECK_LE(0, max_sockets_per_group);
170 DCHECK_LE(max_sockets_per_group, max_sockets);
172 NetworkChangeNotifier::AddIPAddressObserver(this);
175 ClientSocketPoolBaseHelper::~ClientSocketPoolBaseHelper() {
176 // Clean up any idle sockets and pending connect jobs. Assert that we have no
177 // remaining active sockets or pending requests. They should have all been
178 // cleaned up prior to |this| being destroyed.
179 FlushWithError(ERR_ABORTED);
180 DCHECK(group_map_.empty());
181 DCHECK(pending_callback_map_.empty());
182 DCHECK_EQ(0, connecting_socket_count_);
183 CHECK(higher_pools_.empty());
185 NetworkChangeNotifier::RemoveIPAddressObserver(this);
187 // Remove from lower layer pools.
188 for (std::set<LowerLayeredPool*>::iterator it = lower_pools_.begin();
189 it != lower_pools_.end();
190 ++it) {
191 (*it)->RemoveHigherLayeredPool(pool_);
195 ClientSocketPoolBaseHelper::CallbackResultPair::CallbackResultPair()
196 : result(OK) {
199 ClientSocketPoolBaseHelper::CallbackResultPair::CallbackResultPair(
200 const CompletionCallback& callback_in, int result_in)
201 : callback(callback_in),
202 result(result_in) {
205 ClientSocketPoolBaseHelper::CallbackResultPair::~CallbackResultPair() {}
207 bool ClientSocketPoolBaseHelper::IsStalled() const {
208 // If a lower layer pool is stalled, consider |this| stalled as well.
209 for (std::set<LowerLayeredPool*>::const_iterator it = lower_pools_.begin();
210 it != lower_pools_.end();
211 ++it) {
212 if ((*it)->IsStalled())
213 return true;
216 // If fewer than |max_sockets_| are in use, then clearly |this| is not
217 // stalled.
218 if ((handed_out_socket_count_ + connecting_socket_count_) < max_sockets_)
219 return false;
220 // So in order to be stalled, |this| must be using at least |max_sockets_| AND
221 // |this| must have a request that is actually stalled on the global socket
222 // limit. To find such a request, look for a group that has more requests
223 // than jobs AND where the number of sockets is less than
224 // |max_sockets_per_group_|. (If the number of sockets is equal to
225 // |max_sockets_per_group_|, then the request is stalled on the group limit,
226 // which does not count.)
227 for (GroupMap::const_iterator it = group_map_.begin();
228 it != group_map_.end(); ++it) {
229 if (it->second->IsStalledOnPoolMaxSockets(max_sockets_per_group_))
230 return true;
232 return false;
235 void ClientSocketPoolBaseHelper::AddLowerLayeredPool(
236 LowerLayeredPool* lower_pool) {
237 DCHECK(pool_);
238 CHECK(!ContainsKey(lower_pools_, lower_pool));
239 lower_pools_.insert(lower_pool);
240 lower_pool->AddHigherLayeredPool(pool_);
243 void ClientSocketPoolBaseHelper::AddHigherLayeredPool(
244 HigherLayeredPool* higher_pool) {
245 CHECK(higher_pool);
246 CHECK(!ContainsKey(higher_pools_, higher_pool));
247 higher_pools_.insert(higher_pool);
250 void ClientSocketPoolBaseHelper::RemoveHigherLayeredPool(
251 HigherLayeredPool* higher_pool) {
252 CHECK(higher_pool);
253 CHECK(ContainsKey(higher_pools_, higher_pool));
254 higher_pools_.erase(higher_pool);
257 int ClientSocketPoolBaseHelper::RequestSocket(
258 const std::string& group_name,
259 scoped_ptr<const Request> request) {
260 CHECK(!request->callback().is_null());
261 CHECK(request->handle());
263 // Cleanup any timed-out idle sockets if no timer is used.
264 if (!use_cleanup_timer_)
265 CleanupIdleSockets(false);
267 request->net_log().BeginEvent(NetLog::TYPE_SOCKET_POOL);
268 Group* group = GetOrCreateGroup(group_name);
270 int rv = RequestSocketInternal(group_name, *request);
271 if (rv != ERR_IO_PENDING) {
272 request->net_log().EndEventWithNetErrorCode(NetLog::TYPE_SOCKET_POOL, rv);
273 CHECK(!request->handle()->is_initialized());
274 request.reset();
275 } else {
276 group->InsertPendingRequest(request.Pass());
277 // Have to do this asynchronously, as closing sockets in higher level pools
278 // call back in to |this|, which will cause all sorts of fun and exciting
279 // re-entrancy issues if the socket pool is doing something else at the
280 // time.
281 if (group->IsStalledOnPoolMaxSockets(max_sockets_per_group_)) {
282 base::MessageLoop::current()->PostTask(
283 FROM_HERE,
284 base::Bind(
285 &ClientSocketPoolBaseHelper::TryToCloseSocketsInLayeredPools,
286 weak_factory_.GetWeakPtr()));
289 return rv;
292 void ClientSocketPoolBaseHelper::RequestSockets(
293 const std::string& group_name,
294 const Request& request,
295 int num_sockets) {
296 DCHECK(request.callback().is_null());
297 DCHECK(!request.handle());
299 // Cleanup any timed out idle sockets if no timer is used.
300 if (!use_cleanup_timer_)
301 CleanupIdleSockets(false);
303 if (num_sockets > max_sockets_per_group_) {
304 num_sockets = max_sockets_per_group_;
307 request.net_log().BeginEvent(
308 NetLog::TYPE_SOCKET_POOL_CONNECTING_N_SOCKETS,
309 NetLog::IntegerCallback("num_sockets", num_sockets));
311 Group* group = GetOrCreateGroup(group_name);
313 // RequestSocketsInternal() may delete the group.
314 bool deleted_group = false;
316 int rv = OK;
317 for (int num_iterations_left = num_sockets;
318 group->NumActiveSocketSlots() < num_sockets &&
319 num_iterations_left > 0 ; num_iterations_left--) {
320 rv = RequestSocketInternal(group_name, request);
321 if (rv < 0 && rv != ERR_IO_PENDING) {
322 // We're encountering a synchronous error. Give up.
323 if (!ContainsKey(group_map_, group_name))
324 deleted_group = true;
325 break;
327 if (!ContainsKey(group_map_, group_name)) {
328 // Unexpected. The group should only be getting deleted on synchronous
329 // error.
330 NOTREACHED();
331 deleted_group = true;
332 break;
336 if (!deleted_group && group->IsEmpty())
337 RemoveGroup(group_name);
339 if (rv == ERR_IO_PENDING)
340 rv = OK;
341 request.net_log().EndEventWithNetErrorCode(
342 NetLog::TYPE_SOCKET_POOL_CONNECTING_N_SOCKETS, rv);
345 int ClientSocketPoolBaseHelper::RequestSocketInternal(
346 const std::string& group_name,
347 const Request& request) {
348 ClientSocketHandle* const handle = request.handle();
349 const bool preconnecting = !handle;
350 Group* group = GetOrCreateGroup(group_name);
352 if (!(request.flags() & NO_IDLE_SOCKETS)) {
353 // Try to reuse a socket.
354 if (AssignIdleSocketToRequest(request, group))
355 return OK;
358 // If there are more ConnectJobs than pending requests, don't need to do
359 // anything. Can just wait for the extra job to connect, and then assign it
360 // to the request.
361 if (!preconnecting && group->TryToUseUnassignedConnectJob())
362 return ERR_IO_PENDING;
364 // Can we make another active socket now?
365 if (!group->HasAvailableSocketSlot(max_sockets_per_group_) &&
366 !request.ignore_limits()) {
367 // TODO(willchan): Consider whether or not we need to close a socket in a
368 // higher layered group. I don't think this makes sense since we would just
369 // reuse that socket then if we needed one and wouldn't make it down to this
370 // layer.
371 request.net_log().AddEvent(
372 NetLog::TYPE_SOCKET_POOL_STALLED_MAX_SOCKETS_PER_GROUP);
373 return ERR_IO_PENDING;
376 if (ReachedMaxSocketsLimit() && !request.ignore_limits()) {
377 // NOTE(mmenke): Wonder if we really need different code for each case
378 // here. Only reason for them now seems to be preconnects.
379 if (idle_socket_count() > 0) {
380 // There's an idle socket in this pool. Either that's because there's
381 // still one in this group, but we got here due to preconnecting bypassing
382 // idle sockets, or because there's an idle socket in another group.
383 bool closed = CloseOneIdleSocketExceptInGroup(group);
384 if (preconnecting && !closed)
385 return ERR_PRECONNECT_MAX_SOCKET_LIMIT;
386 } else {
387 // We could check if we really have a stalled group here, but it requires
388 // a scan of all groups, so just flip a flag here, and do the check later.
389 request.net_log().AddEvent(NetLog::TYPE_SOCKET_POOL_STALLED_MAX_SOCKETS);
390 return ERR_IO_PENDING;
394 // We couldn't find a socket to reuse, and there's space to allocate one,
395 // so allocate and connect a new one.
396 scoped_ptr<ConnectJob> connect_job(
397 connect_job_factory_->NewConnectJob(group_name, request, this));
399 int rv = connect_job->Connect();
400 if (rv == OK) {
401 LogBoundConnectJobToRequest(connect_job->net_log().source(), request);
402 if (!preconnecting) {
403 HandOutSocket(connect_job->PassSocket(), ClientSocketHandle::UNUSED,
404 connect_job->connect_timing(), handle, base::TimeDelta(),
405 group, request.net_log());
406 } else {
407 AddIdleSocket(connect_job->PassSocket(), group);
409 } else if (rv == ERR_IO_PENDING) {
410 // If we don't have any sockets in this group, set a timer for potentially
411 // creating a new one. If the SYN is lost, this backup socket may complete
412 // before the slow socket, improving end user latency.
413 if (connect_backup_jobs_enabled_ && group->IsEmpty()) {
414 group->StartBackupJobTimer(group_name, this);
417 connecting_socket_count_++;
419 group->AddJob(connect_job.Pass(), preconnecting);
420 } else {
421 LogBoundConnectJobToRequest(connect_job->net_log().source(), request);
422 scoped_ptr<StreamSocket> error_socket;
423 if (!preconnecting) {
424 DCHECK(handle);
425 connect_job->GetAdditionalErrorState(handle);
426 error_socket = connect_job->PassSocket();
428 if (error_socket) {
429 HandOutSocket(error_socket.Pass(), ClientSocketHandle::UNUSED,
430 connect_job->connect_timing(), handle, base::TimeDelta(),
431 group, request.net_log());
432 } else if (group->IsEmpty()) {
433 RemoveGroup(group_name);
437 return rv;
440 bool ClientSocketPoolBaseHelper::AssignIdleSocketToRequest(
441 const Request& request, Group* group) {
442 std::list<IdleSocket>* idle_sockets = group->mutable_idle_sockets();
443 std::list<IdleSocket>::iterator idle_socket_it = idle_sockets->end();
445 // Iterate through the idle sockets forwards (oldest to newest)
446 // * Delete any disconnected ones.
447 // * If we find a used idle socket, assign to |idle_socket|. At the end,
448 // the |idle_socket_it| will be set to the newest used idle socket.
449 for (std::list<IdleSocket>::iterator it = idle_sockets->begin();
450 it != idle_sockets->end();) {
451 if (!it->IsUsable()) {
452 DecrementIdleCount();
453 delete it->socket;
454 it = idle_sockets->erase(it);
455 continue;
458 if (it->socket->WasEverUsed()) {
459 // We found one we can reuse!
460 idle_socket_it = it;
463 ++it;
466 // If we haven't found an idle socket, that means there are no used idle
467 // sockets. Pick the oldest (first) idle socket (FIFO).
469 if (idle_socket_it == idle_sockets->end() && !idle_sockets->empty())
470 idle_socket_it = idle_sockets->begin();
472 if (idle_socket_it != idle_sockets->end()) {
473 DecrementIdleCount();
474 base::TimeDelta idle_time =
475 base::TimeTicks::Now() - idle_socket_it->start_time;
476 IdleSocket idle_socket = *idle_socket_it;
477 idle_sockets->erase(idle_socket_it);
478 // TODO(davidben): If |idle_time| is under some low watermark, consider
479 // treating as UNUSED rather than UNUSED_IDLE. This will avoid
480 // HttpNetworkTransaction retrying on some errors.
481 ClientSocketHandle::SocketReuseType reuse_type =
482 idle_socket.socket->WasEverUsed() ?
483 ClientSocketHandle::REUSED_IDLE :
484 ClientSocketHandle::UNUSED_IDLE;
485 HandOutSocket(
486 scoped_ptr<StreamSocket>(idle_socket.socket),
487 reuse_type,
488 LoadTimingInfo::ConnectTiming(),
489 request.handle(),
490 idle_time,
491 group,
492 request.net_log());
493 return true;
496 return false;
499 // static
500 void ClientSocketPoolBaseHelper::LogBoundConnectJobToRequest(
501 const NetLog::Source& connect_job_source, const Request& request) {
502 request.net_log().AddEvent(NetLog::TYPE_SOCKET_POOL_BOUND_TO_CONNECT_JOB,
503 connect_job_source.ToEventParametersCallback());
506 void ClientSocketPoolBaseHelper::CancelRequest(
507 const std::string& group_name, ClientSocketHandle* handle) {
508 PendingCallbackMap::iterator callback_it = pending_callback_map_.find(handle);
509 if (callback_it != pending_callback_map_.end()) {
510 int result = callback_it->second.result;
511 pending_callback_map_.erase(callback_it);
512 scoped_ptr<StreamSocket> socket = handle->PassSocket();
513 if (socket) {
514 if (result != OK)
515 socket->Disconnect();
516 ReleaseSocket(handle->group_name(), socket.Pass(), handle->id());
518 return;
521 CHECK(ContainsKey(group_map_, group_name));
523 Group* group = GetOrCreateGroup(group_name);
525 // Search pending_requests for matching handle.
526 scoped_ptr<const Request> request =
527 group->FindAndRemovePendingRequest(handle);
528 if (request) {
529 request->net_log().AddEvent(NetLog::TYPE_CANCELLED);
530 request->net_log().EndEvent(NetLog::TYPE_SOCKET_POOL);
532 // We let the job run, unless we're at the socket limit and there is
533 // not another request waiting on the job.
534 if (group->jobs().size() > group->pending_request_count() &&
535 ReachedMaxSocketsLimit()) {
536 RemoveConnectJob(*group->jobs().begin(), group);
537 CheckForStalledSocketGroups();
542 bool ClientSocketPoolBaseHelper::HasGroup(const std::string& group_name) const {
543 return ContainsKey(group_map_, group_name);
546 void ClientSocketPoolBaseHelper::CloseIdleSockets() {
547 CleanupIdleSockets(true);
548 DCHECK_EQ(0, idle_socket_count_);
551 int ClientSocketPoolBaseHelper::IdleSocketCountInGroup(
552 const std::string& group_name) const {
553 GroupMap::const_iterator i = group_map_.find(group_name);
554 CHECK(i != group_map_.end());
556 return i->second->idle_sockets().size();
559 LoadState ClientSocketPoolBaseHelper::GetLoadState(
560 const std::string& group_name,
561 const ClientSocketHandle* handle) const {
562 if (ContainsKey(pending_callback_map_, handle))
563 return LOAD_STATE_CONNECTING;
565 GroupMap::const_iterator group_it = group_map_.find(group_name);
566 // TODO(mmenke): Switch to DCHECK once sure this doesn't break anything.
567 // Added in M43.
568 CHECK(group_it != group_map_.end());
569 const Group& group = *group_it->second;
571 if (group.HasConnectJobForHandle(handle)) {
572 // Just return the state of the farthest along ConnectJob for the first
573 // group.jobs().size() pending requests.
574 LoadState max_state = LOAD_STATE_IDLE;
575 for (const auto& job : group.jobs()) {
576 max_state = std::max(max_state, job->GetLoadState());
578 return max_state;
581 if (group.IsStalledOnPoolMaxSockets(max_sockets_per_group_))
582 return LOAD_STATE_WAITING_FOR_STALLED_SOCKET_POOL;
583 return LOAD_STATE_WAITING_FOR_AVAILABLE_SOCKET;
586 base::DictionaryValue* ClientSocketPoolBaseHelper::GetInfoAsValue(
587 const std::string& name, const std::string& type) const {
588 base::DictionaryValue* dict = new base::DictionaryValue();
589 dict->SetString("name", name);
590 dict->SetString("type", type);
591 dict->SetInteger("handed_out_socket_count", handed_out_socket_count_);
592 dict->SetInteger("connecting_socket_count", connecting_socket_count_);
593 dict->SetInteger("idle_socket_count", idle_socket_count_);
594 dict->SetInteger("max_socket_count", max_sockets_);
595 dict->SetInteger("max_sockets_per_group", max_sockets_per_group_);
596 dict->SetInteger("pool_generation_number", pool_generation_number_);
598 if (group_map_.empty())
599 return dict;
601 base::DictionaryValue* all_groups_dict = new base::DictionaryValue();
602 for (GroupMap::const_iterator it = group_map_.begin();
603 it != group_map_.end(); it++) {
604 const Group* group = it->second;
605 base::DictionaryValue* group_dict = new base::DictionaryValue();
607 group_dict->SetInteger("pending_request_count",
608 group->pending_request_count());
609 if (group->has_pending_requests()) {
610 group_dict->SetString(
611 "top_pending_priority",
612 RequestPriorityToString(group->TopPendingPriority()));
615 group_dict->SetInteger("active_socket_count", group->active_socket_count());
617 base::ListValue* idle_socket_list = new base::ListValue();
618 std::list<IdleSocket>::const_iterator idle_socket;
619 for (idle_socket = group->idle_sockets().begin();
620 idle_socket != group->idle_sockets().end();
621 idle_socket++) {
622 int source_id = idle_socket->socket->NetLog().source().id;
623 idle_socket_list->Append(new base::FundamentalValue(source_id));
625 group_dict->Set("idle_sockets", idle_socket_list);
627 base::ListValue* connect_jobs_list = new base::ListValue();
628 std::set<ConnectJob*>::const_iterator job = group->jobs().begin();
629 for (job = group->jobs().begin(); job != group->jobs().end(); job++) {
630 int source_id = (*job)->net_log().source().id;
631 connect_jobs_list->Append(new base::FundamentalValue(source_id));
633 group_dict->Set("connect_jobs", connect_jobs_list);
635 group_dict->SetBoolean("is_stalled",
636 group->IsStalledOnPoolMaxSockets(
637 max_sockets_per_group_));
638 group_dict->SetBoolean("backup_job_timer_is_running",
639 group->BackupJobTimerIsRunning());
641 all_groups_dict->SetWithoutPathExpansion(it->first, group_dict);
643 dict->Set("groups", all_groups_dict);
644 return dict;
647 bool ClientSocketPoolBaseHelper::IdleSocket::IsUsable() const {
648 if (socket->WasEverUsed())
649 return socket->IsConnectedAndIdle();
650 return socket->IsConnected();
653 bool ClientSocketPoolBaseHelper::IdleSocket::ShouldCleanup(
654 base::TimeTicks now,
655 base::TimeDelta timeout) const {
656 bool timed_out = (now - start_time) >= timeout;
657 if (timed_out)
658 return true;
659 return !IsUsable();
662 void ClientSocketPoolBaseHelper::CleanupIdleSockets(bool force) {
663 if (idle_socket_count_ == 0)
664 return;
666 // Current time value. Retrieving it once at the function start rather than
667 // inside the inner loop, since it shouldn't change by any meaningful amount.
668 base::TimeTicks now = base::TimeTicks::Now();
670 GroupMap::iterator i = group_map_.begin();
671 while (i != group_map_.end()) {
672 Group* group = i->second;
674 std::list<IdleSocket>::iterator j = group->mutable_idle_sockets()->begin();
675 while (j != group->idle_sockets().end()) {
676 base::TimeDelta timeout =
677 j->socket->WasEverUsed() ?
678 used_idle_socket_timeout_ : unused_idle_socket_timeout_;
679 if (force || j->ShouldCleanup(now, timeout)) {
680 delete j->socket;
681 j = group->mutable_idle_sockets()->erase(j);
682 DecrementIdleCount();
683 } else {
684 ++j;
688 // Delete group if no longer needed.
689 if (group->IsEmpty()) {
690 RemoveGroup(i++);
691 } else {
692 ++i;
697 ClientSocketPoolBaseHelper::Group* ClientSocketPoolBaseHelper::GetOrCreateGroup(
698 const std::string& group_name) {
699 GroupMap::iterator it = group_map_.find(group_name);
700 if (it != group_map_.end())
701 return it->second;
702 Group* group = new Group;
703 group_map_[group_name] = group;
704 return group;
707 void ClientSocketPoolBaseHelper::RemoveGroup(const std::string& group_name) {
708 GroupMap::iterator it = group_map_.find(group_name);
709 CHECK(it != group_map_.end());
711 RemoveGroup(it);
714 void ClientSocketPoolBaseHelper::RemoveGroup(GroupMap::iterator it) {
715 delete it->second;
716 group_map_.erase(it);
719 // static
720 bool ClientSocketPoolBaseHelper::connect_backup_jobs_enabled() {
721 return g_connect_backup_jobs_enabled;
724 // static
725 bool ClientSocketPoolBaseHelper::set_connect_backup_jobs_enabled(bool enabled) {
726 bool old_value = g_connect_backup_jobs_enabled;
727 g_connect_backup_jobs_enabled = enabled;
728 return old_value;
731 void ClientSocketPoolBaseHelper::EnableConnectBackupJobs() {
732 connect_backup_jobs_enabled_ = g_connect_backup_jobs_enabled;
735 void ClientSocketPoolBaseHelper::IncrementIdleCount() {
736 if (++idle_socket_count_ == 1 && use_cleanup_timer_)
737 StartIdleSocketTimer();
740 void ClientSocketPoolBaseHelper::DecrementIdleCount() {
741 if (--idle_socket_count_ == 0)
742 timer_.Stop();
745 // static
746 bool ClientSocketPoolBaseHelper::cleanup_timer_enabled() {
747 return g_cleanup_timer_enabled;
750 // static
751 bool ClientSocketPoolBaseHelper::set_cleanup_timer_enabled(bool enabled) {
752 bool old_value = g_cleanup_timer_enabled;
753 g_cleanup_timer_enabled = enabled;
754 return old_value;
757 void ClientSocketPoolBaseHelper::StartIdleSocketTimer() {
758 timer_.Start(FROM_HERE, TimeDelta::FromSeconds(kCleanupInterval), this,
759 &ClientSocketPoolBaseHelper::OnCleanupTimerFired);
762 void ClientSocketPoolBaseHelper::ReleaseSocket(const std::string& group_name,
763 scoped_ptr<StreamSocket> socket,
764 int id) {
765 GroupMap::iterator i = group_map_.find(group_name);
766 CHECK(i != group_map_.end());
768 Group* group = i->second;
770 CHECK_GT(handed_out_socket_count_, 0);
771 handed_out_socket_count_--;
773 CHECK_GT(group->active_socket_count(), 0);
774 group->DecrementActiveSocketCount();
776 const bool can_reuse = socket->IsConnectedAndIdle() &&
777 id == pool_generation_number_;
778 if (can_reuse) {
779 // Add it to the idle list.
780 AddIdleSocket(socket.Pass(), group);
781 OnAvailableSocketSlot(group_name, group);
782 } else {
783 socket.reset();
786 CheckForStalledSocketGroups();
789 void ClientSocketPoolBaseHelper::CheckForStalledSocketGroups() {
790 // If we have idle sockets, see if we can give one to the top-stalled group.
791 std::string top_group_name;
792 Group* top_group = NULL;
793 if (!FindTopStalledGroup(&top_group, &top_group_name)) {
794 // There may still be a stalled group in a lower level pool.
795 for (std::set<LowerLayeredPool*>::iterator it = lower_pools_.begin();
796 it != lower_pools_.end();
797 ++it) {
798 if ((*it)->IsStalled()) {
799 CloseOneIdleSocket();
800 break;
803 return;
806 if (ReachedMaxSocketsLimit()) {
807 if (idle_socket_count() > 0) {
808 CloseOneIdleSocket();
809 } else {
810 // We can't activate more sockets since we're already at our global
811 // limit.
812 return;
816 // Note: we don't loop on waking stalled groups. If the stalled group is at
817 // its limit, may be left with other stalled groups that could be
818 // woken. This isn't optimal, but there is no starvation, so to avoid
819 // the looping we leave it at this.
820 OnAvailableSocketSlot(top_group_name, top_group);
823 // Search for the highest priority pending request, amongst the groups that
824 // are not at the |max_sockets_per_group_| limit. Note: for requests with
825 // the same priority, the winner is based on group hash ordering (and not
826 // insertion order).
827 bool ClientSocketPoolBaseHelper::FindTopStalledGroup(
828 Group** group,
829 std::string* group_name) const {
830 CHECK((group && group_name) || (!group && !group_name));
831 Group* top_group = NULL;
832 const std::string* top_group_name = NULL;
833 bool has_stalled_group = false;
834 for (GroupMap::const_iterator i = group_map_.begin();
835 i != group_map_.end(); ++i) {
836 Group* curr_group = i->second;
837 if (!curr_group->has_pending_requests())
838 continue;
839 if (curr_group->IsStalledOnPoolMaxSockets(max_sockets_per_group_)) {
840 if (!group)
841 return true;
842 has_stalled_group = true;
843 bool has_higher_priority = !top_group ||
844 curr_group->TopPendingPriority() > top_group->TopPendingPriority();
845 if (has_higher_priority) {
846 top_group = curr_group;
847 top_group_name = &i->first;
852 if (top_group) {
853 CHECK(group);
854 *group = top_group;
855 *group_name = *top_group_name;
856 } else {
857 CHECK(!has_stalled_group);
859 return has_stalled_group;
862 void ClientSocketPoolBaseHelper::OnConnectJobComplete(
863 int result, ConnectJob* job) {
864 // TODO(vadimt): Remove ScopedTracker below once crbug.com/436634 is fixed.
865 tracked_objects::ScopedTracker tracking_profile(
866 FROM_HERE_WITH_EXPLICIT_FUNCTION(
867 "436634 ClientSocketPoolBaseHelper::OnConnectJobComplete"));
869 DCHECK_NE(ERR_IO_PENDING, result);
870 const std::string group_name = job->group_name();
871 GroupMap::iterator group_it = group_map_.find(group_name);
872 CHECK(group_it != group_map_.end());
873 Group* group = group_it->second;
875 scoped_ptr<StreamSocket> socket = job->PassSocket();
877 // Copies of these are needed because |job| may be deleted before they are
878 // accessed.
879 BoundNetLog job_log = job->net_log();
880 LoadTimingInfo::ConnectTiming connect_timing = job->connect_timing();
882 // RemoveConnectJob(job, _) must be called by all branches below;
883 // otherwise, |job| will be leaked.
885 if (result == OK) {
886 DCHECK(socket.get());
887 RemoveConnectJob(job, group);
888 scoped_ptr<const Request> request = group->PopNextPendingRequest();
889 if (request) {
890 LogBoundConnectJobToRequest(job_log.source(), *request);
891 HandOutSocket(
892 socket.Pass(), ClientSocketHandle::UNUSED, connect_timing,
893 request->handle(), base::TimeDelta(), group, request->net_log());
894 request->net_log().EndEvent(NetLog::TYPE_SOCKET_POOL);
895 InvokeUserCallbackLater(request->handle(), request->callback(), result);
896 } else {
897 AddIdleSocket(socket.Pass(), group);
898 OnAvailableSocketSlot(group_name, group);
899 CheckForStalledSocketGroups();
901 } else {
902 // If we got a socket, it must contain error information so pass that
903 // up so that the caller can retrieve it.
904 bool handed_out_socket = false;
905 scoped_ptr<const Request> request = group->PopNextPendingRequest();
906 if (request) {
907 LogBoundConnectJobToRequest(job_log.source(), *request);
908 job->GetAdditionalErrorState(request->handle());
909 RemoveConnectJob(job, group);
910 if (socket.get()) {
911 handed_out_socket = true;
912 HandOutSocket(socket.Pass(), ClientSocketHandle::UNUSED,
913 connect_timing, request->handle(), base::TimeDelta(),
914 group, request->net_log());
916 request->net_log().EndEventWithNetErrorCode(
917 NetLog::TYPE_SOCKET_POOL, result);
918 InvokeUserCallbackLater(request->handle(), request->callback(), result);
919 } else {
920 RemoveConnectJob(job, group);
922 if (!handed_out_socket) {
923 OnAvailableSocketSlot(group_name, group);
924 CheckForStalledSocketGroups();
929 void ClientSocketPoolBaseHelper::OnIPAddressChanged() {
930 FlushWithError(ERR_NETWORK_CHANGED);
933 void ClientSocketPoolBaseHelper::FlushWithError(int error) {
934 pool_generation_number_++;
935 CancelAllConnectJobs();
936 CloseIdleSockets();
937 CancelAllRequestsWithError(error);
940 void ClientSocketPoolBaseHelper::RemoveConnectJob(ConnectJob* job,
941 Group* group) {
942 CHECK_GT(connecting_socket_count_, 0);
943 connecting_socket_count_--;
945 DCHECK(group);
946 group->RemoveJob(job);
949 void ClientSocketPoolBaseHelper::OnAvailableSocketSlot(
950 const std::string& group_name, Group* group) {
951 DCHECK(ContainsKey(group_map_, group_name));
952 if (group->IsEmpty()) {
953 RemoveGroup(group_name);
954 } else if (group->has_pending_requests()) {
955 ProcessPendingRequest(group_name, group);
959 void ClientSocketPoolBaseHelper::ProcessPendingRequest(
960 const std::string& group_name, Group* group) {
961 const Request* next_request = group->GetNextPendingRequest();
962 DCHECK(next_request);
963 int rv = RequestSocketInternal(group_name, *next_request);
964 if (rv != ERR_IO_PENDING) {
965 scoped_ptr<const Request> request = group->PopNextPendingRequest();
966 DCHECK(request);
967 if (group->IsEmpty())
968 RemoveGroup(group_name);
970 request->net_log().EndEventWithNetErrorCode(NetLog::TYPE_SOCKET_POOL, rv);
971 InvokeUserCallbackLater(request->handle(), request->callback(), rv);
975 void ClientSocketPoolBaseHelper::HandOutSocket(
976 scoped_ptr<StreamSocket> socket,
977 ClientSocketHandle::SocketReuseType reuse_type,
978 const LoadTimingInfo::ConnectTiming& connect_timing,
979 ClientSocketHandle* handle,
980 base::TimeDelta idle_time,
981 Group* group,
982 const BoundNetLog& net_log) {
983 DCHECK(socket);
984 handle->SetSocket(socket.Pass());
985 handle->set_reuse_type(reuse_type);
986 handle->set_idle_time(idle_time);
987 handle->set_pool_id(pool_generation_number_);
988 handle->set_connect_timing(connect_timing);
990 if (handle->is_reused()) {
991 net_log.AddEvent(
992 NetLog::TYPE_SOCKET_POOL_REUSED_AN_EXISTING_SOCKET,
993 NetLog::IntegerCallback(
994 "idle_ms", static_cast<int>(idle_time.InMilliseconds())));
997 net_log.AddEvent(
998 NetLog::TYPE_SOCKET_POOL_BOUND_TO_SOCKET,
999 handle->socket()->NetLog().source().ToEventParametersCallback());
1001 handed_out_socket_count_++;
1002 group->IncrementActiveSocketCount();
1005 void ClientSocketPoolBaseHelper::AddIdleSocket(
1006 scoped_ptr<StreamSocket> socket,
1007 Group* group) {
1008 DCHECK(socket);
1009 IdleSocket idle_socket;
1010 idle_socket.socket = socket.release();
1011 idle_socket.start_time = base::TimeTicks::Now();
1013 group->mutable_idle_sockets()->push_back(idle_socket);
1014 IncrementIdleCount();
1017 void ClientSocketPoolBaseHelper::CancelAllConnectJobs() {
1018 for (GroupMap::iterator i = group_map_.begin(); i != group_map_.end();) {
1019 Group* group = i->second;
1020 connecting_socket_count_ -= group->jobs().size();
1021 group->RemoveAllJobs();
1023 // Delete group if no longer needed.
1024 if (group->IsEmpty()) {
1025 // RemoveGroup() will call .erase() which will invalidate the iterator,
1026 // but i will already have been incremented to a valid iterator before
1027 // RemoveGroup() is called.
1028 RemoveGroup(i++);
1029 } else {
1030 ++i;
1033 DCHECK_EQ(0, connecting_socket_count_);
1036 void ClientSocketPoolBaseHelper::CancelAllRequestsWithError(int error) {
1037 for (GroupMap::iterator i = group_map_.begin(); i != group_map_.end();) {
1038 Group* group = i->second;
1040 while (true) {
1041 scoped_ptr<const Request> request = group->PopNextPendingRequest();
1042 if (!request)
1043 break;
1044 InvokeUserCallbackLater(request->handle(), request->callback(), error);
1047 // Delete group if no longer needed.
1048 if (group->IsEmpty()) {
1049 // RemoveGroup() will call .erase() which will invalidate the iterator,
1050 // but i will already have been incremented to a valid iterator before
1051 // RemoveGroup() is called.
1052 RemoveGroup(i++);
1053 } else {
1054 ++i;
1059 bool ClientSocketPoolBaseHelper::ReachedMaxSocketsLimit() const {
1060 // Each connecting socket will eventually connect and be handed out.
1061 int total = handed_out_socket_count_ + connecting_socket_count_ +
1062 idle_socket_count();
1063 // There can be more sockets than the limit since some requests can ignore
1064 // the limit
1065 if (total < max_sockets_)
1066 return false;
1067 return true;
1070 bool ClientSocketPoolBaseHelper::CloseOneIdleSocket() {
1071 if (idle_socket_count() == 0)
1072 return false;
1073 return CloseOneIdleSocketExceptInGroup(NULL);
1076 bool ClientSocketPoolBaseHelper::CloseOneIdleSocketExceptInGroup(
1077 const Group* exception_group) {
1078 CHECK_GT(idle_socket_count(), 0);
1080 for (GroupMap::iterator i = group_map_.begin(); i != group_map_.end(); ++i) {
1081 Group* group = i->second;
1082 if (exception_group == group)
1083 continue;
1084 std::list<IdleSocket>* idle_sockets = group->mutable_idle_sockets();
1086 if (!idle_sockets->empty()) {
1087 delete idle_sockets->front().socket;
1088 idle_sockets->pop_front();
1089 DecrementIdleCount();
1090 if (group->IsEmpty())
1091 RemoveGroup(i);
1093 return true;
1097 return false;
1100 bool ClientSocketPoolBaseHelper::CloseOneIdleConnectionInHigherLayeredPool() {
1101 // This pool doesn't have any idle sockets. It's possible that a pool at a
1102 // higher layer is holding one of this sockets active, but it's actually idle.
1103 // Query the higher layers.
1104 for (std::set<HigherLayeredPool*>::const_iterator it = higher_pools_.begin();
1105 it != higher_pools_.end(); ++it) {
1106 if ((*it)->CloseOneIdleConnection())
1107 return true;
1109 return false;
1112 void ClientSocketPoolBaseHelper::InvokeUserCallbackLater(
1113 ClientSocketHandle* handle, const CompletionCallback& callback, int rv) {
1114 CHECK(!ContainsKey(pending_callback_map_, handle));
1115 pending_callback_map_[handle] = CallbackResultPair(callback, rv);
1116 base::MessageLoop::current()->PostTask(
1117 FROM_HERE,
1118 base::Bind(&ClientSocketPoolBaseHelper::InvokeUserCallback,
1119 weak_factory_.GetWeakPtr(), handle));
1122 void ClientSocketPoolBaseHelper::InvokeUserCallback(
1123 ClientSocketHandle* handle) {
1124 PendingCallbackMap::iterator it = pending_callback_map_.find(handle);
1126 // Exit if the request has already been cancelled.
1127 if (it == pending_callback_map_.end())
1128 return;
1130 CHECK(!handle->is_initialized());
1131 CompletionCallback callback = it->second.callback;
1132 int result = it->second.result;
1133 pending_callback_map_.erase(it);
1134 callback.Run(result);
1137 void ClientSocketPoolBaseHelper::TryToCloseSocketsInLayeredPools() {
1138 while (IsStalled()) {
1139 // Closing a socket will result in calling back into |this| to use the freed
1140 // socket slot, so nothing else is needed.
1141 if (!CloseOneIdleConnectionInHigherLayeredPool())
1142 return;
1146 ClientSocketPoolBaseHelper::Group::Group()
1147 : unassigned_job_count_(0),
1148 pending_requests_(NUM_PRIORITIES),
1149 active_socket_count_(0) {}
1151 ClientSocketPoolBaseHelper::Group::~Group() {
1152 DCHECK_EQ(0u, unassigned_job_count_);
1155 void ClientSocketPoolBaseHelper::Group::StartBackupJobTimer(
1156 const std::string& group_name,
1157 ClientSocketPoolBaseHelper* pool) {
1158 // Only allow one timer to run at a time.
1159 if (BackupJobTimerIsRunning())
1160 return;
1162 // Unretained here is okay because |backup_job_timer_| is
1163 // automatically cancelled when it's destroyed.
1164 backup_job_timer_.Start(
1165 FROM_HERE, pool->ConnectRetryInterval(),
1166 base::Bind(&Group::OnBackupJobTimerFired, base::Unretained(this),
1167 group_name, pool));
1170 bool ClientSocketPoolBaseHelper::Group::BackupJobTimerIsRunning() const {
1171 return backup_job_timer_.IsRunning();
1174 bool ClientSocketPoolBaseHelper::Group::TryToUseUnassignedConnectJob() {
1175 SanityCheck();
1177 if (unassigned_job_count_ == 0)
1178 return false;
1179 --unassigned_job_count_;
1180 return true;
1183 void ClientSocketPoolBaseHelper::Group::AddJob(scoped_ptr<ConnectJob> job,
1184 bool is_preconnect) {
1185 SanityCheck();
1187 if (is_preconnect)
1188 ++unassigned_job_count_;
1189 jobs_.insert(job.release());
1192 void ClientSocketPoolBaseHelper::Group::RemoveJob(ConnectJob* job) {
1193 scoped_ptr<ConnectJob> owned_job(job);
1194 SanityCheck();
1196 std::set<ConnectJob*>::iterator it = jobs_.find(job);
1197 if (it != jobs_.end()) {
1198 jobs_.erase(it);
1199 } else {
1200 NOTREACHED();
1202 size_t job_count = jobs_.size();
1203 if (job_count < unassigned_job_count_)
1204 unassigned_job_count_ = job_count;
1206 // If we've got no more jobs for this group, then we no longer need a
1207 // backup job either.
1208 if (jobs_.empty())
1209 backup_job_timer_.Stop();
1212 void ClientSocketPoolBaseHelper::Group::OnBackupJobTimerFired(
1213 std::string group_name,
1214 ClientSocketPoolBaseHelper* pool) {
1215 // If there are no more jobs pending, there is no work to do.
1216 // If we've done our cleanups correctly, this should not happen.
1217 if (jobs_.empty()) {
1218 NOTREACHED();
1219 return;
1222 // If our old job is waiting on DNS, or if we can't create any sockets
1223 // right now due to limits, just reset the timer.
1224 if (pool->ReachedMaxSocketsLimit() ||
1225 !HasAvailableSocketSlot(pool->max_sockets_per_group_) ||
1226 (*jobs_.begin())->GetLoadState() == LOAD_STATE_RESOLVING_HOST) {
1227 StartBackupJobTimer(group_name, pool);
1228 return;
1231 if (pending_requests_.empty())
1232 return;
1234 scoped_ptr<ConnectJob> backup_job =
1235 pool->connect_job_factory_->NewConnectJob(
1236 group_name, *pending_requests_.FirstMax().value(), pool);
1237 backup_job->net_log().AddEvent(NetLog::TYPE_BACKUP_CONNECT_JOB_CREATED);
1238 int rv = backup_job->Connect();
1239 pool->connecting_socket_count_++;
1240 ConnectJob* raw_backup_job = backup_job.get();
1241 AddJob(backup_job.Pass(), false);
1242 if (rv != ERR_IO_PENDING)
1243 pool->OnConnectJobComplete(rv, raw_backup_job);
1246 void ClientSocketPoolBaseHelper::Group::SanityCheck() {
1247 DCHECK_LE(unassigned_job_count_, jobs_.size());
1250 void ClientSocketPoolBaseHelper::Group::RemoveAllJobs() {
1251 SanityCheck();
1253 // Delete active jobs.
1254 STLDeleteElements(&jobs_);
1255 unassigned_job_count_ = 0;
1257 // Stop backup job timer.
1258 backup_job_timer_.Stop();
1261 const ClientSocketPoolBaseHelper::Request*
1262 ClientSocketPoolBaseHelper::Group::GetNextPendingRequest() const {
1263 return
1264 pending_requests_.empty() ? NULL : pending_requests_.FirstMax().value();
1267 bool ClientSocketPoolBaseHelper::Group::HasConnectJobForHandle(
1268 const ClientSocketHandle* handle) const {
1269 // Search the first |jobs_.size()| pending requests for |handle|.
1270 // If it's farther back in the deque than that, it doesn't have a
1271 // corresponding ConnectJob.
1272 size_t i = 0;
1273 for (RequestQueue::Pointer pointer = pending_requests_.FirstMax();
1274 !pointer.is_null() && i < jobs_.size();
1275 pointer = pending_requests_.GetNextTowardsLastMin(pointer), ++i) {
1276 if (pointer.value()->handle() == handle)
1277 return true;
1279 return false;
1282 void ClientSocketPoolBaseHelper::Group::InsertPendingRequest(
1283 scoped_ptr<const Request> request) {
1284 // This value must be cached before we release |request|.
1285 RequestPriority priority = request->priority();
1286 if (request->ignore_limits()) {
1287 // Put requests with ignore_limits == true (which should have
1288 // priority == MAXIMUM_PRIORITY) ahead of other requests with
1289 // MAXIMUM_PRIORITY.
1290 DCHECK_EQ(priority, MAXIMUM_PRIORITY);
1291 pending_requests_.InsertAtFront(request.release(), priority);
1292 } else {
1293 pending_requests_.Insert(request.release(), priority);
1297 scoped_ptr<const ClientSocketPoolBaseHelper::Request>
1298 ClientSocketPoolBaseHelper::Group::PopNextPendingRequest() {
1299 if (pending_requests_.empty())
1300 return scoped_ptr<const ClientSocketPoolBaseHelper::Request>();
1301 return RemovePendingRequest(pending_requests_.FirstMax());
1304 scoped_ptr<const ClientSocketPoolBaseHelper::Request>
1305 ClientSocketPoolBaseHelper::Group::FindAndRemovePendingRequest(
1306 ClientSocketHandle* handle) {
1307 for (RequestQueue::Pointer pointer = pending_requests_.FirstMax();
1308 !pointer.is_null();
1309 pointer = pending_requests_.GetNextTowardsLastMin(pointer)) {
1310 if (pointer.value()->handle() == handle) {
1311 scoped_ptr<const Request> request = RemovePendingRequest(pointer);
1312 return request.Pass();
1315 return scoped_ptr<const ClientSocketPoolBaseHelper::Request>();
1318 scoped_ptr<const ClientSocketPoolBaseHelper::Request>
1319 ClientSocketPoolBaseHelper::Group::RemovePendingRequest(
1320 const RequestQueue::Pointer& pointer) {
1321 scoped_ptr<const Request> request(pointer.value());
1322 pending_requests_.Erase(pointer);
1323 // If there are no more requests, kill the backup timer.
1324 if (pending_requests_.empty())
1325 backup_job_timer_.Stop();
1326 return request.Pass();
1329 } // namespace internal
1331 } // namespace net