blob: 2dcd67af878b0f814cc234bad787abb48a1b14cc [file] [log] [blame]
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001// 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.
4
5#ifndef NET_URL_REQUEST_URL_REQUEST_JOB_H_
6#define NET_URL_REQUEST_URL_REQUEST_JOB_H_
7
8#include <string>
9#include <vector>
10
11#include "base/memory/ref_counted.h"
12#include "base/memory/scoped_ptr.h"
13#include "base/memory/weak_ptr.h"
Ben Murdoch9ab55632013-07-18 11:57:30 +010014#include "base/message_loop/message_loop.h"
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010015#include "base/power_monitor/power_observer.h"
Torne (Richard Coles)58218062012-11-14 11:43:16 +000016#include "net/base/host_port_pair.h"
17#include "net/base/load_states.h"
18#include "net/base/net_export.h"
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000019#include "net/base/request_priority.h"
Torne (Richard Coles)58218062012-11-14 11:43:16 +000020#include "net/base/upload_progress.h"
21#include "net/cookies/canonical_cookie.h"
Torne (Richard Coles)6e8cce62014-08-19 13:00:08 +010022#include "net/url_request/redirect_info.h"
Ben Murdoch7dbb3d52013-07-17 14:55:54 +010023#include "url/gurl.h"
Torne (Richard Coles)58218062012-11-14 11:43:16 +000024
25namespace net {
26
27class AuthChallengeInfo;
28class AuthCredentials;
29class CookieOptions;
Torne (Richard Coles)a1401312014-03-18 10:20:56 +000030class CookieStore;
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +000031class Filter;
Torne (Richard Coles)58218062012-11-14 11:43:16 +000032class HttpRequestHeaders;
33class HttpResponseInfo;
34class IOBuffer;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000035struct LoadTimingInfo;
Torne (Richard Coles)58218062012-11-14 11:43:16 +000036class NetworkDelegate;
37class SSLCertRequestInfo;
38class SSLInfo;
39class URLRequest;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000040class UploadDataStream;
Torne (Richard Coles)58218062012-11-14 11:43:16 +000041class URLRequestStatus;
42class X509Certificate;
43
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010044class NET_EXPORT URLRequestJob
45 : public base::RefCounted<URLRequestJob>,
46 public base::PowerObserver {
Torne (Richard Coles)58218062012-11-14 11:43:16 +000047 public:
48 explicit URLRequestJob(URLRequest* request,
49 NetworkDelegate* network_delegate);
50
51 // Returns the request that owns this job. THIS POINTER MAY BE NULL if the
52 // request was destroyed.
53 URLRequest* request() const {
54 return request_;
55 }
56
57 // Sets the upload data, most requests have no upload data, so this is a NOP.
58 // Job types supporting upload data will override this.
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000059 virtual void SetUpload(UploadDataStream* upload_data_stream);
Torne (Richard Coles)58218062012-11-14 11:43:16 +000060
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000061 // Sets extra request headers for Job types that support request
62 // headers. Called once before Start() is called.
Torne (Richard Coles)58218062012-11-14 11:43:16 +000063 virtual void SetExtraRequestHeaders(const HttpRequestHeaders& headers);
64
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000065 // Sets the priority of the job. Called once before Start() is
66 // called, but also when the priority of the parent request changes.
67 virtual void SetPriority(RequestPriority priority);
68
Torne (Richard Coles)58218062012-11-14 11:43:16 +000069 // If any error occurs while starting the Job, NotifyStartError should be
70 // called.
71 // This helps ensure that all errors follow more similar notification code
72 // paths, which should simplify testing.
73 virtual void Start() = 0;
74
75 // This function MUST somehow call NotifyDone/NotifyCanceled or some requests
76 // will get leaked. Certain callers use that message to know when they can
77 // delete their URLRequest object, even when doing a cancel. The default
78 // Kill implementation calls NotifyCanceled, so it is recommended that
79 // subclasses call URLRequestJob::Kill() after doing any additional work.
80 //
81 // The job should endeavor to stop working as soon as is convenient, but must
82 // not send and complete notifications from inside this function. Instead,
83 // complete notifications (including "canceled") should be sent from a
84 // callback run from the message loop.
85 //
86 // The job is not obliged to immediately stop sending data in response to
87 // this call, nor is it obliged to fail with "canceled" unless not all data
88 // was sent as a result. A typical case would be where the job is almost
89 // complete and can succeed before the canceled notification can be
90 // dispatched (from the message loop).
91 //
92 // The job should be prepared to receive multiple calls to kill it, but only
93 // one notification must be issued.
94 virtual void Kill();
95
96 // Called to detach the request from this Job. Results in the Job being
97 // killed off eventually. The job must not use the request pointer any more.
98 void DetachRequest();
99
100 // Called to read post-filtered data from this Job, returning the number of
101 // bytes read, 0 when there is no more data, or -1 if there was an error.
102 // This is just the backend for URLRequest::Read, see that function for
103 // more info.
104 bool Read(IOBuffer* buf, int buf_size, int* bytes_read);
105
106 // Stops further caching of this request, if any. For more info, see
107 // URLRequest::StopCaching().
108 virtual void StopCaching();
109
Ben Murdocheb525c52013-07-10 11:40:50 +0100110 virtual bool GetFullRequestHeaders(HttpRequestHeaders* headers) const;
111
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000112 // Get the number of bytes received from network.
113 virtual int64 GetTotalReceivedBytes() const;
114
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000115 // Called to fetch the current load state for the job.
116 virtual LoadState GetLoadState() const;
117
118 // Called to get the upload progress in bytes.
119 virtual UploadProgress GetUploadProgress() const;
120
121 // Called to fetch the charset for this request. Only makes sense for some
122 // types of requests. Returns true on success. Calling this on a type that
123 // doesn't have a charset will return false.
124 virtual bool GetCharset(std::string* charset);
125
126 // Called to get response info.
127 virtual void GetResponseInfo(HttpResponseInfo* info);
128
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100129 // This returns the times when events actually occurred, rather than the time
130 // each event blocked the request. See FixupLoadTimingInfo in url_request.h
131 // for more information on the difference.
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000132 virtual void GetLoadTimingInfo(LoadTimingInfo* load_timing_info) const;
133
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000134 // Returns the cookie values included in the response, if applicable.
135 // Returns true if applicable.
136 // NOTE: This removes the cookies from the job, so it will only return
137 // useful results once per job.
138 virtual bool GetResponseCookies(std::vector<std::string>* cookies);
139
140 // Called to setup a stream filter for this request. An example of filter is
141 // content encoding/decoding.
142 // Subclasses should return the appropriate Filter, or NULL for no Filter.
143 // This class takes ownership of the returned Filter.
144 //
145 // The default implementation returns NULL.
146 virtual Filter* SetupFilter() const;
147
148 // Called to determine if this response is a redirect. Only makes sense
149 // for some types of requests. This method returns true if the response
150 // is a redirect, and fills in the location param with the URL of the
151 // redirect. The HTTP status code (e.g., 302) is filled into
152 // |*http_status_code| to signify the type of redirect.
153 //
154 // The caller is responsible for following the redirect by setting up an
155 // appropriate replacement Job. Note that the redirected location may be
156 // invalid, the caller should be sure it can handle this.
157 //
158 // The default implementation inspects the response_info_.
159 virtual bool IsRedirectResponse(GURL* location, int* http_status_code);
160
Ben Murdochc5cede92014-04-10 11:22:14 +0100161 // Called to determine if it is okay to copy the reference fragment from the
162 // original URL (if existent) to the redirection target when the redirection
163 // target has no reference fragment.
164 //
165 // The default implementation returns true.
166 virtual bool CopyFragmentOnRedirect(const GURL& location) const;
167
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000168 // Called to determine if it is okay to redirect this job to the specified
169 // location. This may be used to implement protocol-specific restrictions.
170 // If this function returns false, then the URLRequest will fail
171 // reporting ERR_UNSAFE_REDIRECT.
172 virtual bool IsSafeRedirect(const GURL& location);
173
174 // Called to determine if this response is asking for authentication. Only
175 // makes sense for some types of requests. The caller is responsible for
176 // obtaining the credentials passing them to SetAuth.
177 virtual bool NeedsAuth();
178
179 // Fills the authentication info with the server's response.
180 virtual void GetAuthChallengeInfo(
181 scoped_refptr<AuthChallengeInfo>* auth_info);
182
183 // Resend the request with authentication credentials.
184 virtual void SetAuth(const AuthCredentials& credentials);
185
186 // Display the error page without asking for credentials again.
187 virtual void CancelAuth();
188
189 virtual void ContinueWithCertificate(X509Certificate* client_cert);
190
191 // Continue processing the request ignoring the last error.
192 virtual void ContinueDespiteLastError();
193
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000194 // Continue with the network request.
195 virtual void ResumeNetworkStart();
196
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000197 void FollowDeferredRedirect();
198
199 // Returns true if the Job is done producing response data and has called
200 // NotifyDone on the request.
201 bool is_done() const { return done_; }
202
203 // Get/Set expected content size
204 int64 expected_content_size() const { return expected_content_size_; }
205 void set_expected_content_size(const int64& size) {
206 expected_content_size_ = size;
207 }
208
209 // Whether we have processed the response for that request yet.
210 bool has_response_started() const { return has_handled_response_; }
211
212 // These methods are not applicable to all connections.
213 virtual bool GetMimeType(std::string* mime_type) const;
214 virtual int GetResponseCode() const;
215
216 // Returns the socket address for the connection.
217 // See url_request.h for details.
218 virtual HostPortPair GetSocketAddress() const;
219
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100220 // base::PowerObserver methods:
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000221 // We invoke URLRequestJob::Kill on suspend (crbug.com/4606).
222 virtual void OnSuspend() OVERRIDE;
223
224 // Called after a NetworkDelegate has been informed that the URLRequest
225 // will be destroyed. This is used to track that no pending callbacks
226 // exist at destruction time of the URLRequestJob, unless they have been
227 // canceled by an explicit NetworkDelegate::NotifyURLRequestDestroyed() call.
228 virtual void NotifyURLRequestDestroyed();
229
230 protected:
231 friend class base::RefCounted<URLRequestJob>;
232 virtual ~URLRequestJob();
233
234 // Notifies the job that a certificate is requested.
235 void NotifyCertificateRequested(SSLCertRequestInfo* cert_request_info);
236
237 // Notifies the job about an SSL certificate error.
238 void NotifySSLCertificateError(const SSLInfo& ssl_info, bool fatal);
239
240 // Delegates to URLRequest::Delegate.
241 bool CanGetCookies(const CookieList& cookie_list) const;
242
243 // Delegates to URLRequest::Delegate.
244 bool CanSetCookie(const std::string& cookie_line,
245 CookieOptions* options) const;
246
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +0100247 // Delegates to URLRequest::Delegate.
248 bool CanEnablePrivacyMode() const;
249
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000250 // Returns the cookie store to be used for the request.
251 CookieStore* GetCookieStore() const;
252
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000253 // Notifies the job that the network is about to be used.
254 void NotifyBeforeNetworkStart(bool* defer);
255
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000256 // Notifies the job that headers have been received.
257 void NotifyHeadersComplete();
258
259 // Notifies the request that the job has completed a Read operation.
260 void NotifyReadComplete(int bytes_read);
261
262 // Notifies the request that a start error has occurred.
263 void NotifyStartError(const URLRequestStatus& status);
264
265 // NotifyDone marks when we are done with a request. It is really
266 // a glorified set_status, but also does internal state checking and
267 // job tracking. It should be called once per request, when the job is
268 // finished doing all IO.
269 void NotifyDone(const URLRequestStatus& status);
270
271 // Some work performed by NotifyDone must be completed on a separate task
272 // so as to avoid re-entering the delegate. This method exists to perform
273 // that work.
274 void CompleteNotifyDone();
275
276 // Used as an asynchronous callback for Kill to notify the URLRequest
277 // that we were canceled.
278 void NotifyCanceled();
279
280 // Notifies the job the request should be restarted.
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000281 // Should only be called if the job has not started a response.
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000282 void NotifyRestartRequired();
283
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000284 // See corresponding functions in url_request.h.
285 void OnCallToDelegate();
286 void OnCallToDelegateComplete();
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000287
288 // Called to read raw (pre-filtered) data from this Job.
289 // If returning true, data was read from the job. buf will contain
290 // the data, and bytes_read will receive the number of bytes read.
291 // If returning true, and bytes_read is returned as 0, there is no
292 // additional data to be read.
293 // If returning false, an error occurred or an async IO is now pending.
294 // If async IO is pending, the status of the request will be
295 // URLRequestStatus::IO_PENDING, and buf must remain available until the
296 // operation is completed. See comments on URLRequest::Read for more
297 // info.
298 virtual bool ReadRawData(IOBuffer* buf, int buf_size, int *bytes_read);
299
300 // Called to tell the job that a filter has successfully reached the end of
301 // the stream.
302 virtual void DoneReading();
303
Ben Murdocheffb81e2014-03-31 11:51:25 +0100304 // Called to tell the job that the body won't be read because it's a redirect.
305 // This is needed so that redirect headers can be cached even though their
306 // bodies are never read.
307 virtual void DoneReadingRedirectResponse();
308
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000309 // Informs the filter that data has been read into its buffer
310 void FilteredDataRead(int bytes_read);
311
312 // Reads filtered data from the request. Returns true if successful,
313 // false otherwise. Note, if there is not enough data received to
314 // return data, this call can issue a new async IO request under
315 // the hood.
316 bool ReadFilteredData(int *bytes_read);
317
318 // Whether the response is being filtered in this job.
319 // Only valid after NotifyHeadersComplete() has been called.
320 bool HasFilter() { return filter_ != NULL; }
321
322 // At or near destruction time, a derived class may request that the filters
323 // be destroyed so that statistics can be gathered while the derived class is
324 // still present to assist in calculations. This is used by URLRequestHttpJob
325 // to get SDCH to emit stats.
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000326 void DestroyFilters();
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000327
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000328 // Provides derived classes with access to the request's network delegate.
329 NetworkDelegate* network_delegate() { return network_delegate_; }
330
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000331 // The status of the job.
332 const URLRequestStatus GetStatus();
333
334 // Set the status of the job.
335 void SetStatus(const URLRequestStatus& status);
336
Torne (Richard Coles)f8ee7882014-06-20 14:52:04 +0100337 // Set the proxy server that was used, if any.
338 void SetProxyServer(const HostPortPair& proxy_server);
339
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000340 // The number of bytes read before passing to the filter.
341 int prefilter_bytes_read() const { return prefilter_bytes_read_; }
342
343 // The number of bytes read after passing through the filter.
344 int postfilter_bytes_read() const { return postfilter_bytes_read_; }
345
346 // Total number of bytes read from network (or cache) and typically handed
347 // to filter to process. Used to histogram compression ratios, and error
348 // recovery scenarios in filters.
349 int64 filter_input_byte_count() const { return filter_input_byte_count_; }
350
351 // The request that initiated this job. This value MAY BE NULL if the
352 // request was released by DetachRequest().
353 URLRequest* request_;
354
355 private:
356 // When data filtering is enabled, this function is used to read data
357 // for the filter. Returns true if raw data was read. Returns false if
358 // an error occurred (or we are waiting for IO to complete).
359 bool ReadRawDataForFilter(int *bytes_read);
360
361 // Invokes ReadRawData and records bytes read if the read completes
362 // synchronously.
363 bool ReadRawDataHelper(IOBuffer* buf, int buf_size, int* bytes_read);
364
365 // Called in response to a redirect that was not canceled to follow the
366 // redirect. The current job will be replaced with a new job loading the
367 // given redirect destination.
Torne (Richard Coles)6e8cce62014-08-19 13:00:08 +0100368 void FollowRedirect(const RedirectInfo& redirect_info);
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000369
370 // Called after every raw read. If |bytes_read| is > 0, this indicates
371 // a successful read of |bytes_read| unfiltered bytes. If |bytes_read|
372 // is 0, this indicates that there is no additional data to read. If
373 // |bytes_read| is < 0, an error occurred and no bytes were read.
374 void OnRawReadComplete(int bytes_read);
375
376 // Updates the profiling info and notifies observers that an additional
377 // |bytes_read| unfiltered bytes have been read for this job.
378 void RecordBytesRead(int bytes_read);
379
380 // Called to query whether there is data available in the filter to be read
381 // out.
382 bool FilterHasData();
383
384 // Subclasses may implement this method to record packet arrival times.
385 // The default implementation does nothing.
386 virtual void UpdatePacketReadTimes();
387
Torne (Richard Coles)6e8cce62014-08-19 13:00:08 +0100388 // Computes a new RedirectInfo based on receiving a redirect response of
389 // |location| and |http_status_code|.
390 RedirectInfo ComputeRedirectInfo(const GURL& location, int http_status_code);
391
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000392 // Indicates that the job is done producing data, either it has completed
393 // all the data or an error has been encountered. Set exclusively by
394 // NotifyDone so that it is kept in sync with the request.
395 bool done_;
396
397 int prefilter_bytes_read_;
398 int postfilter_bytes_read_;
399 int64 filter_input_byte_count_;
400
401 // The data stream filter which is enabled on demand.
402 scoped_ptr<Filter> filter_;
403
404 // If the filter filled its output buffer, then there is a change that it
405 // still has internal data to emit, and this flag is set.
406 bool filter_needs_more_output_space_;
407
408 // When we filter data, we receive data into the filter buffers. After
409 // processing the filtered data, we return the data in the caller's buffer.
410 // While the async IO is in progress, we save the user buffer here, and
411 // when the IO completes, we fill this in.
412 scoped_refptr<IOBuffer> filtered_read_buffer_;
413 int filtered_read_buffer_len_;
414
415 // We keep a pointer to the read buffer while asynchronous reads are
416 // in progress, so we are able to pass those bytes to job observers.
417 scoped_refptr<IOBuffer> raw_read_buffer_;
418
419 // Used by HandleResponseIfNecessary to track whether we've sent the
420 // OnResponseStarted callback and potentially redirect callbacks as well.
421 bool has_handled_response_;
422
423 // Expected content size
424 int64 expected_content_size_;
425
426 // Set when a redirect is deferred.
Torne (Richard Coles)6e8cce62014-08-19 13:00:08 +0100427 RedirectInfo deferred_redirect_info_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000428
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000429 // The network delegate to use with this request, if any.
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000430 NetworkDelegate* network_delegate_;
431
432 base::WeakPtrFactory<URLRequestJob> weak_factory_;
433
434 DISALLOW_COPY_AND_ASSIGN(URLRequestJob);
435};
436
437} // namespace net
438
439#endif // NET_URL_REQUEST_URL_REQUEST_JOB_H_