Returning scoped_ptr instead of raw pointer in QuicInfoToValue in net/
[chromium-blink-merge.git] / net / http / http_stream_factory_impl.h
blobb7059fce3caa06c80dbdb79499e6c4519d14c221
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_
8 #include <map>
9 #include <set>
10 #include <vector>
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/http/http_stream_factory.h"
16 #include "net/log/net_log.h"
17 #include "net/proxy/proxy_server.h"
18 #include "net/socket/ssl_client_socket.h"
19 #include "net/spdy/spdy_session_key.h"
21 namespace net {
23 class HttpNetworkSession;
24 class SpdySession;
26 class NET_EXPORT_PRIVATE HttpStreamFactoryImpl : public HttpStreamFactory {
27 public:
28 // RequestStream may only be called if |for_websockets| is false.
29 // RequestWebSocketHandshakeStream may only be called if |for_websockets|
30 // is true.
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(); }
60 private:
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 GetAlternativeServiceFor(const GURL& original_url);
80 // Detaches |job| from |request|.
81 void OrphanJob(Job* job, const Request* request);
83 // Called when a SpdySession is ready. It will find appropriate Requests and
84 // fulfill them. |direct| indicates whether or not |spdy_session| uses a
85 // proxy.
86 void OnNewSpdySessionReady(const base::WeakPtr<SpdySession>& spdy_session,
87 bool direct,
88 const SSLConfig& used_ssl_config,
89 const ProxyInfo& used_proxy_info,
90 bool was_npn_negotiated,
91 NextProto protocol_negotiated,
92 bool using_spdy,
93 const BoundNetLog& net_log);
95 // Called when the Job detects that the endpoint indicated by the
96 // Alternate-Protocol does not work. Lets the factory update
97 // HttpAlternateProtocols with the failure and resets the SPDY session key.
98 void OnBrokenAlternateProtocol(const Job*, const HostPortPair& origin);
100 // Invoked when an orphaned Job finishes.
101 void OnOrphanedJobComplete(const Job* job);
103 // Invoked when the Job finishes preconnecting sockets.
104 void OnPreconnectsComplete(const Job* job);
106 // Called when the Preconnect completes. Used for testing.
107 virtual void OnPreconnectsCompleteInternal() {}
109 HttpNetworkSession* const session_;
111 // All Requests are handed out to clients. By the time HttpStreamFactoryImpl
112 // is destroyed, all Requests should be deleted (which should remove them from
113 // |request_map_|. The Requests will delete the corresponding job.
114 std::map<const Job*, Request*> request_map_;
116 SpdySessionRequestMap spdy_session_request_map_;
118 // These jobs correspond to jobs orphaned by Requests and now owned by
119 // HttpStreamFactoryImpl. Since they are no longer tied to Requests, they will
120 // not be canceled when Requests are canceled. Therefore, in
121 // ~HttpStreamFactoryImpl, it is possible for some jobs to still exist in this
122 // set. Leftover jobs will be deleted when the factory is destroyed.
123 std::set<const Job*> orphaned_job_set_;
125 // These jobs correspond to preconnect requests and have no associated Request
126 // object. They're owned by HttpStreamFactoryImpl. Leftover jobs will be
127 // deleted when the factory is destroyed.
128 std::set<const Job*> preconnect_job_set_;
130 const bool for_websockets_;
131 DISALLOW_COPY_AND_ASSIGN(HttpStreamFactoryImpl);
134 } // namespace net
136 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_