blob: 9dc272765ac9a5fecb17d211b845bfbf354472d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
// Copyright (c) 2012 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_FORCED_H_
#define NET_HTTP_HTTP_PIPELINED_HOST_FORCED_H_
#pragma once
#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"
#include "net/http/http_pipelined_host_capability.h"
namespace base {
class Value;
}
namespace net {
class BoundNetLog;
class ClientSocketHandle;
class HttpPipelinedStream;
class ProxyInfo;
struct SSLConfig;
// Manages a single pipelined connection for requests to a host that are forced
// to use pipelining. Note that this is normally not used. It is intended to
// test the user's connection for pipelining compatibility.
class NET_EXPORT_PRIVATE HttpPipelinedHostForced
: public HttpPipelinedHost,
public HttpPipelinedConnection::Delegate {
public:
HttpPipelinedHostForced(HttpPipelinedHost::Delegate* delegate,
const Key& key,
HttpPipelinedConnection::Factory* factory);
virtual ~HttpPipelinedHostForced();
// 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,
NextProto protocol_negotiated) OVERRIDE;
virtual HttpPipelinedStream* CreateStreamOnExistingPipeline() OVERRIDE;
virtual bool IsExistingPipelineAvailable() const OVERRIDE;
virtual const Key& GetKey() const OVERRIDE;
virtual base::Value* PipelineInfoToValue() const OVERRIDE;
// HttpPipelinedConnection::Delegate interface
virtual void OnPipelineHasCapacity(
HttpPipelinedConnection* pipeline) OVERRIDE;
virtual void OnPipelineFeedback(
HttpPipelinedConnection* pipeline,
HttpPipelinedConnection::Feedback feedback) OVERRIDE;
private:
// Called when a pipeline is empty and there are no pending requests. Closes
// the connection.
void OnPipelineEmpty(HttpPipelinedConnection* pipeline);
HttpPipelinedHost::Delegate* delegate_;
const Key key_;
scoped_ptr<HttpPipelinedConnection> pipeline_;
scoped_ptr<HttpPipelinedConnection::Factory> factory_;
DISALLOW_COPY_AND_ASSIGN(HttpPipelinedHostForced);
};
} // namespace net
#endif // NET_HTTP_HTTP_PIPELINED_HOST_FORCED_H_
|