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_BASE_NETWORK_DELEGATE_H_
6 #define NET_BASE_NETWORK_DELEGATE_H_
10 #include "base/callback.h"
11 #include "base/strings/string16.h"
12 #include "base/threading/non_thread_safe.h"
13 #include "net/base/auth.h"
14 #include "net/base/completion_callback.h"
15 #include "net/cookies/canonical_cookie.h"
25 // NOTE: Layering violations!
26 // We decided to accept these violations (depending
27 // on other net/ submodules from net/base/), because otherwise NetworkDelegate
28 // would have to be broken up into too many smaller interfaces targeted to each
29 // submodule. Also, since the lower levels in net/ may callback into higher
30 // levels, we may encounter dangerous casting issues.
32 // NOTE: It is not okay to add any compile-time dependencies on symbols outside
33 // of net/base here, because we have a net_base library. Forward declarations
36 class HttpRequestHeaders
;
37 class HttpResponseHeaders
;
41 class NET_EXPORT NetworkDelegate
: public base::NonThreadSafe
{
43 // AuthRequiredResponse indicates how a NetworkDelegate handles an
44 // OnAuthRequired call. It's placed in this file to prevent url_request.h
45 // from having to include network_delegate.h.
46 enum AuthRequiredResponse
{
47 AUTH_REQUIRED_RESPONSE_NO_ACTION
,
48 AUTH_REQUIRED_RESPONSE_SET_AUTH
,
49 AUTH_REQUIRED_RESPONSE_CANCEL_AUTH
,
50 AUTH_REQUIRED_RESPONSE_IO_PENDING
,
52 typedef base::Callback
<void(AuthRequiredResponse
)> AuthCallback
;
54 virtual ~NetworkDelegate() {}
56 // Notification interface called by the network stack. Note that these
57 // functions mostly forward to the private virtuals. They also add some sanity
58 // checking on parameters. See the corresponding virtuals for explanations of
59 // the methods and their arguments.
60 int NotifyBeforeURLRequest(URLRequest
* request
,
61 const CompletionCallback
& callback
,
63 int NotifyBeforeSendHeaders(URLRequest
* request
,
64 const CompletionCallback
& callback
,
65 HttpRequestHeaders
* headers
);
66 void NotifySendHeaders(URLRequest
* request
,
67 const HttpRequestHeaders
& headers
);
68 int NotifyHeadersReceived(
70 const CompletionCallback
& callback
,
71 const HttpResponseHeaders
* original_response_headers
,
72 scoped_refptr
<HttpResponseHeaders
>* override_response_headers
,
73 GURL
* allowed_unsafe_redirect_url
);
74 void NotifyBeforeRedirect(URLRequest
* request
,
75 const GURL
& new_location
);
76 void NotifyResponseStarted(URLRequest
* request
);
77 void NotifyRawBytesRead(const URLRequest
& request
, int bytes_read
);
78 void NotifyCompleted(URLRequest
* request
, bool started
);
79 void NotifyURLRequestDestroyed(URLRequest
* request
);
80 void NotifyPACScriptError(int line_number
, const base::string16
& error
);
81 AuthRequiredResponse
NotifyAuthRequired(URLRequest
* request
,
82 const AuthChallengeInfo
& auth_info
,
83 const AuthCallback
& callback
,
84 AuthCredentials
* credentials
);
85 bool CanGetCookies(const URLRequest
& request
,
86 const CookieList
& cookie_list
);
87 bool CanSetCookie(const URLRequest
& request
,
88 const std::string
& cookie_line
,
89 CookieOptions
* options
);
90 bool CanAccessFile(const URLRequest
& request
,
91 const base::FilePath
& path
) const;
92 bool CanThrottleRequest(const URLRequest
& request
) const;
93 bool CanEnablePrivacyMode(const GURL
& url
,
94 const GURL
& first_party_for_cookies
) const;
96 int NotifyBeforeSocketStreamConnect(SocketStream
* socket
,
97 const CompletionCallback
& callback
);
100 // This is the interface for subclasses of NetworkDelegate to implement. These
101 // member functions will be called by the respective public notification
102 // member function, which will perform basic sanity checking.
104 // Called before a request is sent. Allows the delegate to rewrite the URL
105 // being fetched by modifying |new_url|. |callback| and |new_url| are valid
106 // only until OnURLRequestDestroyed is called for this request. Returns a net
107 // status code, generally either OK to continue with the request or
108 // ERR_IO_PENDING if the result is not ready yet. A status code other than OK
109 // and ERR_IO_PENDING will cancel the request and report the status code as
112 // The default implementation returns OK (continue with request).
113 virtual int OnBeforeURLRequest(URLRequest
* request
,
114 const CompletionCallback
& callback
,
117 // Called right before the HTTP headers are sent. Allows the delegate to
118 // read/write |headers| before they get sent out. |callback| and |headers| are
119 // valid only until OnCompleted or OnURLRequestDestroyed is called for this
121 // See OnBeforeURLRequest for return value description. Returns OK by default.
122 virtual int OnBeforeSendHeaders(URLRequest
* request
,
123 const CompletionCallback
& callback
,
124 HttpRequestHeaders
* headers
);
126 // Called right before the HTTP request(s) are being sent to the network.
127 // |headers| is only valid until OnCompleted or OnURLRequestDestroyed is
128 // called for this request.
129 virtual void OnSendHeaders(URLRequest
* request
,
130 const HttpRequestHeaders
& headers
);
132 // Called for HTTP requests when the headers have been received.
133 // |original_response_headers| contains the headers as received over the
134 // network, these must not be modified. |override_response_headers| can be set
135 // to new values, that should be considered as overriding
136 // |original_response_headers|.
137 // |callback|, |original_response_headers|, and |override_response_headers|
138 // are only valid until OnURLRequestDestroyed is called for this request.
139 // See OnBeforeURLRequest for return value description. Returns OK by default.
140 virtual int OnHeadersReceived(
142 const CompletionCallback
& callback
,
143 const HttpResponseHeaders
* original_response_headers
,
144 scoped_refptr
<HttpResponseHeaders
>* override_response_headers
,
145 GURL
* allowed_unsafe_redirect_url
);
147 // Called right after a redirect response code was received.
148 // |new_location| is only valid until OnURLRequestDestroyed is called for this
150 virtual void OnBeforeRedirect(URLRequest
* request
,
151 const GURL
& new_location
);
153 // This corresponds to URLRequestDelegate::OnResponseStarted.
154 virtual void OnResponseStarted(URLRequest
* request
);
156 // Called every time we read raw bytes.
157 virtual void OnRawBytesRead(const URLRequest
& request
, int bytes_read
);
159 // Indicates that the URL request has been completed or failed.
160 // |started| indicates whether the request has been started. If false,
161 // some information like the socket address is not available.
162 virtual void OnCompleted(URLRequest
* request
, bool started
);
164 // Called when an URLRequest is being destroyed. Note that the request is
165 // being deleted, so it's not safe to call any methods that may result in
166 // a virtual method call.
167 virtual void OnURLRequestDestroyed(URLRequest
* request
);
169 // Corresponds to ProxyResolverJSBindings::OnError.
170 virtual void OnPACScriptError(int line_number
,
171 const base::string16
& error
);
173 // Called when a request receives an authentication challenge
174 // specified by |auth_info|, and is unable to respond using cached
175 // credentials. |callback| and |credentials| must be non-NULL, and must
176 // be valid until OnURLRequestDestroyed is called for |request|.
178 // The following return values are allowed:
179 // - AUTH_REQUIRED_RESPONSE_NO_ACTION: |auth_info| is observed, but
180 // no action is being taken on it.
181 // - AUTH_REQUIRED_RESPONSE_SET_AUTH: |credentials| is filled in with
182 // a username and password, which should be used in a response to
184 // - AUTH_REQUIRED_RESPONSE_CANCEL_AUTH: The authentication challenge
185 // should not be attempted.
186 // - AUTH_REQUIRED_RESPONSE_IO_PENDING: The action will be decided
187 // asynchronously. |callback| will be invoked when the decision is made,
188 // and one of the other AuthRequiredResponse values will be passed in with
189 // the same semantics as described above.
190 virtual AuthRequiredResponse
OnAuthRequired(
192 const AuthChallengeInfo
& auth_info
,
193 const AuthCallback
& callback
,
194 AuthCredentials
* credentials
);
196 // Called when reading cookies to allow the network delegate to block access
197 // to the cookie. This method will never be invoked when
198 // LOAD_DO_NOT_SEND_COOKIES is specified.
199 virtual bool OnCanGetCookies(const URLRequest
& request
,
200 const CookieList
& cookie_list
);
202 // Called when a cookie is set to allow the network delegate to block access
203 // to the cookie. This method will never be invoked when
204 // LOAD_DO_NOT_SAVE_COOKIES is specified.
205 virtual bool OnCanSetCookie(const URLRequest
& request
,
206 const std::string
& cookie_line
,
207 CookieOptions
* options
);
209 // Called when a file access is attempted to allow the network delegate to
210 // allow or block access to the given file path. Returns true if access is
212 virtual bool OnCanAccessFile(const URLRequest
& request
,
213 const base::FilePath
& path
) const;
215 // Returns true if the given request may be rejected when the
216 // URLRequestThrottlerManager believes the server servicing the
217 // request is overloaded or down.
218 virtual bool OnCanThrottleRequest(const URLRequest
& request
) const;
220 // Returns true if the given |url| has to be requested over connection that
221 // is not tracked by the server. Usually is false, unless user privacy
222 // settings block cookies from being get or set.
223 virtual bool OnCanEnablePrivacyMode(
225 const GURL
& first_party_for_cookies
) const;
227 // Called before a SocketStream tries to connect.
228 // See OnBeforeURLRequest for return value description. Returns OK by default.
229 virtual int OnBeforeSocketStreamConnect(
230 SocketStream
* socket
, const CompletionCallback
& callback
);
235 #endif // NET_BASE_NETWORK_DELEGATE_H_