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 #ifndef NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_
6 #define NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_
12 #include "base/gtest_prod_util.h"
13 #include "base/memory/ref_counted.h"
14 #include "net/base/host_port_pair.h"
15 #include "net/base/net_log.h"
16 #include "net/http/http_stream_factory.h"
17 #include "net/proxy/proxy_server.h"
18 #include "net/socket/ssl_client_socket.h"
19 #include "net/spdy/spdy_session_key.h"
23 class HttpNetworkSession
;
26 class NET_EXPORT_PRIVATE HttpStreamFactoryImpl
: public HttpStreamFactory
{
28 // RequestStream may only be called if |for_websockets| is false.
29 // RequestWebSocketHandshakeStream may only be called if |for_websockets|
31 HttpStreamFactoryImpl(HttpNetworkSession
* session
, bool for_websockets
);
32 ~HttpStreamFactoryImpl() override
;
34 // HttpStreamFactory interface
35 HttpStreamRequest
* RequestStream(const HttpRequestInfo
& info
,
36 RequestPriority priority
,
37 const SSLConfig
& server_ssl_config
,
38 const SSLConfig
& proxy_ssl_config
,
39 HttpStreamRequest::Delegate
* delegate
,
40 const BoundNetLog
& net_log
) override
;
42 HttpStreamRequest
* RequestWebSocketHandshakeStream(
43 const HttpRequestInfo
& info
,
44 RequestPriority priority
,
45 const SSLConfig
& server_ssl_config
,
46 const SSLConfig
& proxy_ssl_config
,
47 HttpStreamRequest::Delegate
* delegate
,
48 WebSocketHandshakeStreamBase::CreateHelper
* create_helper
,
49 const BoundNetLog
& net_log
) override
;
51 void PreconnectStreams(int num_streams
,
52 const HttpRequestInfo
& info
,
53 RequestPriority priority
,
54 const SSLConfig
& server_ssl_config
,
55 const SSLConfig
& proxy_ssl_config
) override
;
56 const HostMappingRules
* GetHostMappingRules() const override
;
58 size_t num_orphaned_jobs() const { return orphaned_job_set_
.size(); }
61 FRIEND_TEST_ALL_PREFIXES(HttpStreamFactoryImplRequestTest
, SetPriority
);
63 class NET_EXPORT_PRIVATE Request
;
64 class NET_EXPORT_PRIVATE Job
;
66 typedef std::set
<Request
*> RequestSet
;
67 typedef std::map
<SpdySessionKey
, RequestSet
> SpdySessionRequestMap
;
69 HttpStreamRequest
* RequestStreamInternal(
70 const HttpRequestInfo
& info
,
71 RequestPriority priority
,
72 const SSLConfig
& server_ssl_config
,
73 const SSLConfig
& proxy_ssl_config
,
74 HttpStreamRequest::Delegate
* delegate
,
75 WebSocketHandshakeStreamBase::CreateHelper
* create_helper
,
76 const BoundNetLog
& net_log
);
78 AlternativeService
GetAlternativeServiceRequestFor(const GURL
& original_url
,
81 // Detaches |job| from |request|.
82 void OrphanJob(Job
* job
, const Request
* request
);
84 // Called when a SpdySession is ready. It will find appropriate Requests and
85 // fulfill them. |direct| indicates whether or not |spdy_session| uses a
87 void OnNewSpdySessionReady(const base::WeakPtr
<SpdySession
>& spdy_session
,
89 const SSLConfig
& used_ssl_config
,
90 const ProxyInfo
& used_proxy_info
,
91 bool was_npn_negotiated
,
92 NextProto protocol_negotiated
,
94 const BoundNetLog
& net_log
);
96 // Called when the Job detects that the endpoint indicated by the
97 // Alternate-Protocol does not work. Lets the factory update
98 // HttpAlternateProtocols with the failure and resets the SPDY session key.
99 void OnBrokenAlternateProtocol(const Job
*, const HostPortPair
& origin
);
101 // Invoked when an orphaned Job finishes.
102 void OnOrphanedJobComplete(const Job
* job
);
104 // Invoked when the Job finishes preconnecting sockets.
105 void OnPreconnectsComplete(const Job
* job
);
107 // Called when the Preconnect completes. Used for testing.
108 virtual void OnPreconnectsCompleteInternal() {}
110 HttpNetworkSession
* const session_
;
112 // All Requests are handed out to clients. By the time HttpStreamFactoryImpl
113 // is destroyed, all Requests should be deleted (which should remove them from
114 // |request_map_|. The Requests will delete the corresponding job.
115 std::map
<const Job
*, Request
*> request_map_
;
117 SpdySessionRequestMap spdy_session_request_map_
;
119 // These jobs correspond to jobs orphaned by Requests and now owned by
120 // HttpStreamFactoryImpl. Since they are no longer tied to Requests, they will
121 // not be canceled when Requests are canceled. Therefore, in
122 // ~HttpStreamFactoryImpl, it is possible for some jobs to still exist in this
123 // set. Leftover jobs will be deleted when the factory is destroyed.
124 std::set
<const Job
*> orphaned_job_set_
;
126 // These jobs correspond to preconnect requests and have no associated Request
127 // object. They're owned by HttpStreamFactoryImpl. Leftover jobs will be
128 // deleted when the factory is destroyed.
129 std::set
<const Job
*> preconnect_job_set_
;
131 const bool for_websockets_
;
132 DISALLOW_COPY_AND_ASSIGN(HttpStreamFactoryImpl
);
137 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_