diff options
author | simonjam@chromium.org <simonjam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-01 22:20:06 +0000 |
---|---|---|
committer | simonjam@chromium.org <simonjam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-01 22:20:06 +0000 |
commit | 4b9f729a0b70ef2d916e718e48e9552dcc3d3e7d (patch) | |
tree | b413ca358feda9c6a7799634163a61e9ac65ee56 /net/http/http_pipelined_host_impl.h | |
parent | 9d977272049fc90034052f0e0a930584a0a42e84 (diff) | |
download | chromium_src-4b9f729a0b70ef2d916e718e48e9552dcc3d3e7d.zip chromium_src-4b9f729a0b70ef2d916e718e48e9552dcc3d3e7d.tar.gz chromium_src-4b9f729a0b70ef2d916e718e48e9552dcc3d3e7d.tar.bz2 |
Slow start pipelining.
We need to wait for an HTTP/1.1 keep-alive response before we try to pipeline. Notably, this fixes wordpress.com and techcrunch.com.
Remember which hosts clearly support, or don't support pipelining. If pipelining is supported, skip the slow start. If it's not, fall back to HttpBasicStreams.
A site is judged not to support pipelining if we see an old HTTP version or encounter a socket error. A site does support pipelining if it successfully handles 3 requests. There's obviously room for improvement here, but this is a
start.
Related changes:
- In the spirit of CHECK() failing. Use CHECK(false) instead of NOTREACHED().
- HttpPipelinedHost is now an interface with a corresponding Impl. This is to help unit test HttpPipelinedHostPool.
BUG=None
TEST=net_unittests
Review URL: http://codereview.chromium.org/8586015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112557 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_pipelined_host_impl.h')
-rw-r--r-- | net/http/http_pipelined_host_impl.h | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/net/http/http_pipelined_host_impl.h b/net/http/http_pipelined_host_impl.h new file mode 100644 index 0000000..af78005 --- /dev/null +++ b/net/http/http_pipelined_host_impl.h @@ -0,0 +1,99 @@ +// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef NET_HTTP_HTTP_PIPELINED_HOST_IMPL_H_ +#define NET_HTTP_HTTP_PIPELINED_HOST_IMPL_H_ +#pragma once + +#include <map> +#include <string> + +#include "base/basictypes.h" +#include "base/memory/scoped_ptr.h" +#include "net/base/host_port_pair.h" +#include "net/base/net_export.h" +#include "net/http/http_pipelined_connection.h" +#include "net/http/http_pipelined_host.h" + +namespace net { + +class BoundNetLog; +class ClientSocketHandle; +class HttpPipelinedStream; +class ProxyInfo; +struct SSLConfig; + +// Manages all of the pipelining state for specific host with active pipelined +// HTTP requests. Manages connection jobs, constructs pipelined streams, and +// assigns requests to the least loaded pipelined connection. +class NET_EXPORT_PRIVATE HttpPipelinedHostImpl + : public HttpPipelinedHost, + public HttpPipelinedConnection::Delegate { + public: + HttpPipelinedHostImpl(HttpPipelinedHost::Delegate* delegate, + const HostPortPair& origin, + HttpPipelinedConnection::Factory* factory, + Capability capability); + virtual ~HttpPipelinedHostImpl(); + + // HttpPipelinedHost interface + virtual HttpPipelinedStream* CreateStreamOnNewPipeline( + ClientSocketHandle* connection, + const SSLConfig& used_ssl_config, + const ProxyInfo& used_proxy_info, + const BoundNetLog& net_log, + bool was_npn_negotiated) OVERRIDE; + + virtual HttpPipelinedStream* CreateStreamOnExistingPipeline() OVERRIDE; + + virtual bool IsExistingPipelineAvailable() const OVERRIDE; + + // HttpPipelinedConnection::Delegate interface + + // Called when a pipelined connection completes a request. Adds a pending + // request to the pipeline if the pipeline is still usable. + virtual void OnPipelineHasCapacity( + HttpPipelinedConnection* pipeline) OVERRIDE; + + virtual void OnPipelineFeedback( + HttpPipelinedConnection* pipeline, + HttpPipelinedConnection::Feedback feedback) OVERRIDE; + + virtual const HostPortPair& origin() const OVERRIDE; + + // Returns the maximum number of in-flight pipelined requests we'll allow on a + // single connection. + NET_EXPORT_PRIVATE static int max_pipeline_depth() { return 3; } + + private: + struct PipelineInfo { + PipelineInfo(); + + int num_successes; + }; + typedef std::map<HttpPipelinedConnection*, PipelineInfo> PipelineInfoMap; + + // Called when a pipeline is empty and there are no pending requests. Closes + // the connection. + void OnPipelineEmpty(HttpPipelinedConnection* pipeline); + + // Adds the next pending request to the pipeline if it's still usuable. + void AddRequestToPipeline(HttpPipelinedConnection* connection); + + // Returns the current pipeline capacity based on |capability_|. This should + // not be called if |capability_| is INCAPABLE. + int GetPipelineCapacity() const; + + HttpPipelinedHost::Delegate* delegate_; + const HostPortPair origin_; + PipelineInfoMap pipelines_; + scoped_ptr<HttpPipelinedConnection::Factory> factory_; + Capability capability_; + + DISALLOW_COPY_AND_ASSIGN(HttpPipelinedHostImpl); +}; + +} // namespace net + +#endif // NET_HTTP_HTTP_PIPELINED_HOST_IMPL_H_ |