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 // This class is useful for building a simple URLRequestContext. Most creators
6 // of new URLRequestContexts should use this helper class to construct it. Call
7 // any configuration params, and when done, invoke Build() to construct the
8 // URLRequestContext. This URLRequestContext will own all its own storage.
10 // URLRequestContextBuilder and its associated params classes are initially
11 // populated with "sane" default values. Read through the comments to figure out
14 #ifndef NET_URL_REQUEST_URL_REQUEST_CONTEXT_BUILDER_H_
15 #define NET_URL_REQUEST_URL_REQUEST_CONTEXT_BUILDER_H_
20 #include "base/basictypes.h"
21 #include "base/files/file_path.h"
22 #include "base/memory/ref_counted.h"
23 #include "base/memory/scoped_ptr.h"
24 #include "build/build_config.h"
25 #include "net/base/net_export.h"
26 #include "net/base/network_delegate.h"
27 #include "net/dns/host_resolver.h"
28 #include "net/proxy/proxy_config_service.h"
29 #include "net/proxy/proxy_service.h"
30 #include "net/quic/quic_protocol.h"
31 #include "net/socket/next_proto.h"
34 class SingleThreadTaskRunner
;
39 class ChannelIDService
;
41 class FtpTransactionFactory
;
42 class HostMappingRules
;
43 class HttpAuthHandlerFactory
;
44 class ProxyConfigService
;
45 class URLRequestContext
;
47 class NET_EXPORT URLRequestContextBuilder
{
49 struct NET_EXPORT HttpCacheParams
{
58 // The type of HTTP cache. Default is IN_MEMORY.
61 // The max size of the cache in bytes. Default is algorithmically determined
62 // based off available disk space.
65 // The cache path (when type is DISK).
69 struct NET_EXPORT HttpNetworkSessionParams
{
70 HttpNetworkSessionParams();
71 ~HttpNetworkSessionParams();
73 // These fields mirror those in HttpNetworkSession::Params;
74 bool ignore_certificate_errors
;
75 HostMappingRules
* host_mapping_rules
;
76 uint16 testing_fixed_http_port
;
77 uint16 testing_fixed_https_port
;
78 NextProtoVector next_protos
;
79 std::string trusted_spdy_proxy
;
80 bool use_alternate_protocols
;
82 QuicTagVector quic_connection_options
;
85 URLRequestContextBuilder();
86 ~URLRequestContextBuilder();
88 // These functions are mutually exclusive. The ProxyConfigService, if
89 // set, will be used to construct a ProxyService.
90 void set_proxy_config_service(ProxyConfigService
* proxy_config_service
) {
91 proxy_config_service_
.reset(proxy_config_service
);
93 void set_proxy_service(ProxyService
* proxy_service
) {
94 proxy_service_
.reset(proxy_service
);
97 // Call these functions to specify hard-coded Accept-Language
98 // or User-Agent header values for all requests that don't
99 // have the headers already set.
100 void set_accept_language(const std::string
& accept_language
) {
101 accept_language_
= accept_language
;
103 void set_user_agent(const std::string
& user_agent
) {
104 user_agent_
= user_agent
;
107 // Control support for data:// requests. By default it's disabled.
108 void set_data_enabled(bool enable
) {
109 data_enabled_
= enable
;
112 #if !defined(DISABLE_FILE_SUPPORT)
113 // Control support for file:// requests. By default it's disabled.
114 void set_file_enabled(bool enable
) {
115 file_enabled_
= enable
;
119 #if !defined(DISABLE_FTP_SUPPORT)
120 // Control support for ftp:// requests. By default it's disabled.
121 void set_ftp_enabled(bool enable
) {
122 ftp_enabled_
= enable
;
126 // TODO(mmenke): Probably makes sense to get rid of this, and have consumers
127 // set their own NetLog::Observers instead.
128 void set_net_log(NetLog
* net_log
) {
129 net_log_
.reset(net_log
);
132 // By default host_resolver is constructed with CreateDefaultResolver.
133 void set_host_resolver(HostResolver
* host_resolver
) {
134 host_resolver_
.reset(host_resolver
);
137 // Uses BasicNetworkDelegate by default. Note that calling Build will unset
138 // any custom delegate in builder, so this must be called each time before
140 void set_network_delegate(NetworkDelegate
* delegate
) {
141 network_delegate_
.reset(delegate
);
144 // Adds additional auth handler factories to be used in addition to what is
145 // provided in the default |HttpAuthHandlerRegistryFactory|. The auth |scheme|
146 // and |factory| are provided. The builder takes ownership of the factory and
147 // Build() must be called after this method.
148 void add_http_auth_handler_factory(const std::string
& scheme
,
149 HttpAuthHandlerFactory
* factory
) {
150 extra_http_auth_handlers_
.push_back(SchemeFactory(scheme
, factory
));
153 // By default HttpCache is enabled with a default constructed HttpCacheParams.
154 void EnableHttpCache(const HttpCacheParams
& params
);
155 void DisableHttpCache();
157 // Override default HttpNetworkSession::Params settings.
158 void set_http_network_session_params(
159 const HttpNetworkSessionParams
& http_network_session_params
) {
160 http_network_session_params_
= http_network_session_params
;
163 void set_transport_security_persister_path(
164 const base::FilePath
& transport_security_persister_path
) {
165 transport_security_persister_path_
= transport_security_persister_path
;
168 // Adjust |http_network_session_params_.next_protos| to enable SPDY and QUIC.
169 void SetSpdyAndQuicEnabled(bool spdy_enabled
,
172 void set_quic_connection_options(
173 const QuicTagVector
& quic_connection_options
) {
174 http_network_session_params_
.quic_connection_options
=
175 quic_connection_options
;
178 void set_throttling_enabled(bool throttling_enabled
) {
179 throttling_enabled_
= throttling_enabled
;
182 // Override the default in-memory cookie store and channel id service.
183 // |cookie_store| must not be NULL. |channel_id_service| may be NULL to
184 // disable channel id for this context.
185 // Note that a persistent cookie store should not be used with an in-memory
186 // channel id service, and one cookie store should not be shared between
187 // multiple channel-id stores (or used both with and without a channel id
189 void SetCookieAndChannelIdStores(
190 const scoped_refptr
<CookieStore
>& cookie_store
,
191 scoped_ptr
<ChannelIDService
> channel_id_service
);
193 // Sets the task runner used to perform file operations. If not set, one will
195 void SetFileTaskRunner(
196 const scoped_refptr
<base::SingleThreadTaskRunner
>& task_runner
);
198 // Note that if SDCH is enabled without a policy object observing
199 // the SDCH manager and handling at least Get-Dictionary events, the
200 // result will be "Content-Encoding: sdch" advertisements, but no
201 // dictionaries fetches and no specific dictionaries advertised.
202 // SdchOwner in net/sdch/sdch_owner.h is a simple policy object.
203 void set_sdch_enabled(bool enable
) { sdch_enabled_
= enable
; }
205 URLRequestContext
* Build();
208 struct NET_EXPORT SchemeFactory
{
209 SchemeFactory(const std::string
& scheme
, HttpAuthHandlerFactory
* factory
);
213 HttpAuthHandlerFactory
* factory
;
216 std::string accept_language_
;
217 std::string user_agent_
;
218 // Include support for data:// requests.
220 #if !defined(DISABLE_FILE_SUPPORT)
221 // Include support for file:// requests.
224 #if !defined(DISABLE_FTP_SUPPORT)
225 // Include support for ftp:// requests.
228 bool http_cache_enabled_
;
229 bool throttling_enabled_
;
232 scoped_refptr
<base::SingleThreadTaskRunner
> file_task_runner_
;
233 HttpCacheParams http_cache_params_
;
234 HttpNetworkSessionParams http_network_session_params_
;
235 base::FilePath transport_security_persister_path_
;
236 scoped_ptr
<NetLog
> net_log_
;
237 scoped_ptr
<HostResolver
> host_resolver_
;
238 scoped_ptr
<ChannelIDService
> channel_id_service_
;
239 scoped_ptr
<ProxyConfigService
> proxy_config_service_
;
240 scoped_ptr
<ProxyService
> proxy_service_
;
241 scoped_ptr
<NetworkDelegate
> network_delegate_
;
242 scoped_refptr
<CookieStore
> cookie_store_
;
243 scoped_ptr
<FtpTransactionFactory
> ftp_transaction_factory_
;
244 std::vector
<SchemeFactory
> extra_http_auth_handlers_
;
246 DISALLOW_COPY_AND_ASSIGN(URLRequestContextBuilder
);
251 #endif // NET_URL_REQUEST_URL_REQUEST_CONTEXT_BUILDER_H_