Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Side by Side Diff: net/http/http_stream_factory_impl.h

Issue 14813024: Introduce RequestWebSocketStream into HttpStreamFactory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_ 5 #ifndef NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_
6 #define NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_ 6 #define NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
13 #include "net/base/host_port_pair.h" 13 #include "net/base/host_port_pair.h"
14 #include "net/base/net_log.h" 14 #include "net/base/net_log.h"
15 #include "net/http/http_pipelined_host_pool.h" 15 #include "net/http/http_pipelined_host_pool.h"
16 #include "net/http/http_stream_factory.h" 16 #include "net/http/http_stream_factory.h"
17 #include "net/proxy/proxy_server.h" 17 #include "net/proxy/proxy_server.h"
18 #include "net/socket/client_socket_pool_manager.h"
18 #include "net/socket/ssl_client_socket.h" 19 #include "net/socket/ssl_client_socket.h"
19 #include "net/spdy/spdy_session_key.h" 20 #include "net/spdy/spdy_session_key.h"
20 21
21 namespace net { 22 namespace net {
22 23
23 class HttpNetworkSession; 24 class HttpNetworkSession;
24 class HttpPipelinedHost; 25 class HttpPipelinedHost;
25 class SpdySession; 26 class SpdySession;
26 27
27 class NET_EXPORT_PRIVATE HttpStreamFactoryImpl : 28 class NET_EXPORT_PRIVATE HttpStreamFactoryImpl :
28 public HttpStreamFactory, 29 public HttpStreamFactory,
29 public HttpPipelinedHostPool::Delegate { 30 public HttpPipelinedHostPool::Delegate {
30 public: 31 public:
31 explicit HttpStreamFactoryImpl(HttpNetworkSession* session); 32 // RequestStream may only be called if |for_websockets| is false.
33 // RequestWebSocketStream may only be called if |for_websockets| is true.
34 HttpStreamFactoryImpl(HttpNetworkSession* session, bool for_websockets);
32 virtual ~HttpStreamFactoryImpl(); 35 virtual ~HttpStreamFactoryImpl();
33 36
34 // HttpStreamFactory interface 37 // HttpStreamFactory interface
35 virtual HttpStreamRequest* RequestStream( 38 virtual HttpStreamRequest* RequestStream(
36 const HttpRequestInfo& info, 39 const HttpRequestInfo& info,
37 RequestPriority priority, 40 RequestPriority priority,
38 const SSLConfig& server_ssl_config, 41 const SSLConfig& server_ssl_config,
39 const SSLConfig& proxy_ssl_config, 42 const SSLConfig& proxy_ssl_config,
40 HttpStreamRequest::Delegate* delegate, 43 HttpStreamRequest::Delegate* delegate,
41 const BoundNetLog& net_log) OVERRIDE; 44 const BoundNetLog& net_log) OVERRIDE;
42 45
46 virtual HttpStreamRequest* RequestWebSocketStream(
47 const HttpRequestInfo& info,
48 RequestPriority priority,
49 const SSLConfig& server_ssl_config,
50 const SSLConfig& proxy_ssl_config,
51 HttpStreamRequest::Delegate* delegate,
52 WebSocketStreamBase::Factory* factory,
53 const BoundNetLog& net_log) OVERRIDE;
54
43 virtual void PreconnectStreams(int num_streams, 55 virtual void PreconnectStreams(int num_streams,
44 const HttpRequestInfo& info, 56 const HttpRequestInfo& info,
45 RequestPriority priority, 57 RequestPriority priority,
46 const SSLConfig& server_ssl_config, 58 const SSLConfig& server_ssl_config,
47 const SSLConfig& proxy_ssl_config) OVERRIDE; 59 const SSLConfig& proxy_ssl_config) OVERRIDE;
48 virtual base::Value* PipelineInfoToValue() const OVERRIDE; 60 virtual base::Value* PipelineInfoToValue() const OVERRIDE;
49 virtual const HostMappingRules* GetHostMappingRules() const OVERRIDE; 61 virtual const HostMappingRules* GetHostMappingRules() const OVERRIDE;
50 62
51 // HttpPipelinedHostPool::Delegate interface 63 // HttpPipelinedHostPool::Delegate interface
52 virtual void OnHttpPipelinedHostHasAdditionalCapacity( 64 virtual void OnHttpPipelinedHostHasAdditionalCapacity(
53 HttpPipelinedHost* host) OVERRIDE; 65 HttpPipelinedHost* host) OVERRIDE;
54 66
55 private: 67 private:
56 class Request; 68 class Request;
57 class Job; 69 class Job;
58 70
59 typedef std::set<Request*> RequestSet; 71 typedef std::set<Request*> RequestSet;
60 typedef std::vector<Request*> RequestVector; 72 typedef std::vector<Request*> RequestVector;
61 typedef std::map<SpdySessionKey, RequestSet> SpdySessionRequestMap; 73 typedef std::map<SpdySessionKey, RequestSet> SpdySessionRequestMap;
62 typedef std::map<HttpPipelinedHost::Key, 74 typedef std::map<HttpPipelinedHost::Key,
63 RequestVector> HttpPipeliningRequestMap; 75 RequestVector> HttpPipeliningRequestMap;
64 76
77 HttpStreamRequest* RequestStreamInternal(
78 const HttpRequestInfo& info,
79 RequestPriority priority,
80 const SSLConfig& server_ssl_config,
81 const SSLConfig& proxy_ssl_config,
82 HttpStreamRequest::Delegate* delegate,
83 WebSocketStreamBase::Factory* factory,
84 const BoundNetLog& net_log);
85
65 PortAlternateProtocolPair GetAlternateProtocolRequestFor( 86 PortAlternateProtocolPair GetAlternateProtocolRequestFor(
66 const GURL& original_url, 87 const GURL& original_url,
67 GURL* alternate_url) const; 88 GURL* alternate_url) const;
68 89
69 // Detaches |job| from |request|. 90 // Detaches |job| from |request|.
70 void OrphanJob(Job* job, const Request* request); 91 void OrphanJob(Job* job, const Request* request);
71 92
72 // Called when a SpdySession is ready. It will find appropriate Requests and 93 // Called when a SpdySession is ready. It will find appropriate Requests and
73 // fulfill them. |direct| indicates whether or not |spdy_session| uses a 94 // fulfill them. |direct| indicates whether or not |spdy_session| uses a
74 // proxy. 95 // proxy.
75 void OnSpdySessionReady(scoped_refptr<SpdySession> spdy_session, 96 void OnNewSpdySessionReady(scoped_refptr<SpdySession> spdy_session,
76 bool direct, 97 bool direct,
77 const SSLConfig& used_ssl_config, 98 const SSLConfig& used_ssl_config,
78 const ProxyInfo& used_proxy_info, 99 const ProxyInfo& used_proxy_info,
79 bool was_npn_negotiated, 100 bool was_npn_negotiated,
80 NextProto protocol_negotiated, 101 NextProto protocol_negotiated,
81 bool using_spdy, 102 bool using_spdy,
82 const BoundNetLog& net_log); 103 const BoundNetLog& net_log);
83 104
84 // Called when the Job detects that the endpoint indicated by the 105 // Called when the Job detects that the endpoint indicated by the
85 // Alternate-Protocol does not work. Lets the factory update 106 // Alternate-Protocol does not work. Lets the factory update
86 // HttpAlternateProtocols with the failure and resets the SPDY session key. 107 // HttpAlternateProtocols with the failure and resets the SPDY session key.
87 void OnBrokenAlternateProtocol(const Job*, const HostPortPair& origin); 108 void OnBrokenAlternateProtocol(const Job*, const HostPortPair& origin);
88 109
89 // Invoked when an orphaned Job finishes. 110 // Invoked when an orphaned Job finishes.
90 void OnOrphanedJobComplete(const Job* job); 111 void OnOrphanedJobComplete(const Job* job);
91 112
92 // Invoked when the Job finishes preconnecting sockets. 113 // Invoked when the Job finishes preconnecting sockets.
(...skipping 24 matching lines...) Expand all
117 // not be canceled when Requests are canceled. Therefore, in 138 // not be canceled when Requests are canceled. Therefore, in
118 // ~HttpStreamFactoryImpl, it is possible for some jobs to still exist in this 139 // ~HttpStreamFactoryImpl, it is possible for some jobs to still exist in this
119 // set. Leftover jobs will be deleted when the factory is destroyed. 140 // set. Leftover jobs will be deleted when the factory is destroyed.
120 std::set<const Job*> orphaned_job_set_; 141 std::set<const Job*> orphaned_job_set_;
121 142
122 // These jobs correspond to preconnect requests and have no associated Request 143 // These jobs correspond to preconnect requests and have no associated Request
123 // object. They're owned by HttpStreamFactoryImpl. Leftover jobs will be 144 // object. They're owned by HttpStreamFactoryImpl. Leftover jobs will be
124 // deleted when the factory is destroyed. 145 // deleted when the factory is destroyed.
125 std::set<const Job*> preconnect_job_set_; 146 std::set<const Job*> preconnect_job_set_;
126 147
148 const bool for_websockets_;
mmenke 2013/06/03 21:10:18 I may have been wrong to suggest this - it's fine
127 DISALLOW_COPY_AND_ASSIGN(HttpStreamFactoryImpl); 149 DISALLOW_COPY_AND_ASSIGN(HttpStreamFactoryImpl);
128 }; 150 };
129 151
130 } // namespace net 152 } // namespace net
131 153
132 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_ 154 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698