Evict resources from resource pool after timeout
[chromium-blink-merge.git] / net / url_request / url_request_job.h
blob7b905abaabe4cbafb7febc159eded8005e3ad85a
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_URL_REQUEST_URL_REQUEST_JOB_H_
6 #define NET_URL_REQUEST_URL_REQUEST_JOB_H_
8 #include <stdint.h>
10 #include <string>
11 #include <vector>
13 #include "base/memory/ref_counted.h"
14 #include "base/memory/scoped_ptr.h"
15 #include "base/memory/weak_ptr.h"
16 #include "base/message_loop/message_loop.h"
17 #include "base/power_monitor/power_observer.h"
18 #include "net/base/host_port_pair.h"
19 #include "net/base/load_states.h"
20 #include "net/base/net_export.h"
21 #include "net/base/request_priority.h"
22 #include "net/base/upload_progress.h"
23 #include "net/cookies/canonical_cookie.h"
24 #include "net/socket/connection_attempts.h"
25 #include "net/url_request/redirect_info.h"
26 #include "net/url_request/url_request.h"
27 #include "url/gurl.h"
29 namespace net {
31 class AuthChallengeInfo;
32 class AuthCredentials;
33 class CookieOptions;
34 class Filter;
35 class HttpRequestHeaders;
36 class HttpResponseInfo;
37 class IOBuffer;
38 struct LoadTimingInfo;
39 class NetworkDelegate;
40 class SSLCertRequestInfo;
41 class SSLInfo;
42 class UploadDataStream;
43 class URLRequestStatus;
44 class X509Certificate;
46 class NET_EXPORT URLRequestJob
47 : public base::RefCounted<URLRequestJob>,
48 public base::PowerObserver {
49 public:
50 explicit URLRequestJob(URLRequest* request,
51 NetworkDelegate* network_delegate);
53 // Returns the request that owns this job. THIS POINTER MAY BE NULL if the
54 // request was destroyed.
55 URLRequest* request() const {
56 return request_;
59 // Sets the upload data, most requests have no upload data, so this is a NOP.
60 // Job types supporting upload data will override this.
61 virtual void SetUpload(UploadDataStream* upload_data_stream);
63 // Sets extra request headers for Job types that support request
64 // headers. Called once before Start() is called.
65 virtual void SetExtraRequestHeaders(const HttpRequestHeaders& headers);
67 // Sets the priority of the job. Called once before Start() is
68 // called, but also when the priority of the parent request changes.
69 virtual void SetPriority(RequestPriority priority);
71 // If any error occurs while starting the Job, NotifyStartError should be
72 // called.
73 // This helps ensure that all errors follow more similar notification code
74 // paths, which should simplify testing.
75 virtual void Start() = 0;
77 // This function MUST somehow call NotifyDone/NotifyCanceled or some requests
78 // will get leaked. Certain callers use that message to know when they can
79 // delete their URLRequest object, even when doing a cancel. The default
80 // Kill implementation calls NotifyCanceled, so it is recommended that
81 // subclasses call URLRequestJob::Kill() after doing any additional work.
83 // The job should endeavor to stop working as soon as is convenient, but must
84 // not send and complete notifications from inside this function. Instead,
85 // complete notifications (including "canceled") should be sent from a
86 // callback run from the message loop.
88 // The job is not obliged to immediately stop sending data in response to
89 // this call, nor is it obliged to fail with "canceled" unless not all data
90 // was sent as a result. A typical case would be where the job is almost
91 // complete and can succeed before the canceled notification can be
92 // dispatched (from the message loop).
94 // The job should be prepared to receive multiple calls to kill it, but only
95 // one notification must be issued.
96 virtual void Kill();
98 // Called to detach the request from this Job. Results in the Job being
99 // killed off eventually. The job must not use the request pointer any more.
100 void DetachRequest();
102 // Called to read post-filtered data from this Job, returning the number of
103 // bytes read, 0 when there is no more data, or -1 if there was an error.
104 // This is just the backend for URLRequest::Read, see that function for
105 // more info.
106 bool Read(IOBuffer* buf, int buf_size, int* bytes_read);
108 // Stops further caching of this request, if any. For more info, see
109 // URLRequest::StopCaching().
110 virtual void StopCaching();
112 virtual bool GetFullRequestHeaders(HttpRequestHeaders* headers) const;
114 // Get the number of bytes received from network. The values returned by this
115 // will never decrease over the lifetime of the URLRequestJob.
116 virtual int64 GetTotalReceivedBytes() const;
118 // Called to fetch the current load state for the job.
119 virtual LoadState GetLoadState() const;
121 // Called to get the upload progress in bytes.
122 virtual UploadProgress GetUploadProgress() const;
124 // Called to fetch the charset for this request. Only makes sense for some
125 // types of requests. Returns true on success. Calling this on a type that
126 // doesn't have a charset will return false.
127 virtual bool GetCharset(std::string* charset);
129 // Called to get response info.
130 virtual void GetResponseInfo(HttpResponseInfo* info);
132 // This returns the times when events actually occurred, rather than the time
133 // each event blocked the request. See FixupLoadTimingInfo in url_request.h
134 // for more information on the difference.
135 virtual void GetLoadTimingInfo(LoadTimingInfo* load_timing_info) const;
137 // Returns the cookie values included in the response, if applicable.
138 // Returns true if applicable.
139 // NOTE: This removes the cookies from the job, so it will only return
140 // useful results once per job.
141 virtual bool GetResponseCookies(std::vector<std::string>* cookies);
143 // Called to setup a stream filter for this request. An example of filter is
144 // content encoding/decoding.
145 // Subclasses should return the appropriate Filter, or NULL for no Filter.
146 // This class takes ownership of the returned Filter.
148 // The default implementation returns NULL.
149 virtual Filter* SetupFilter() const;
151 // Called to determine if this response is a redirect. Only makes sense
152 // for some types of requests. This method returns true if the response
153 // is a redirect, and fills in the location param with the URL of the
154 // redirect. The HTTP status code (e.g., 302) is filled into
155 // |*http_status_code| to signify the type of redirect.
157 // The caller is responsible for following the redirect by setting up an
158 // appropriate replacement Job. Note that the redirected location may be
159 // invalid, the caller should be sure it can handle this.
161 // The default implementation inspects the response_info_.
162 virtual bool IsRedirectResponse(GURL* location, int* http_status_code);
164 // Called to determine if it is okay to copy the reference fragment from the
165 // original URL (if existent) to the redirection target when the redirection
166 // target has no reference fragment.
168 // The default implementation returns true.
169 virtual bool CopyFragmentOnRedirect(const GURL& location) const;
171 // Called to determine if it is okay to redirect this job to the specified
172 // location. This may be used to implement protocol-specific restrictions.
173 // If this function returns false, then the URLRequest will fail
174 // reporting ERR_UNSAFE_REDIRECT.
175 virtual bool IsSafeRedirect(const GURL& location);
177 // Called to determine if this response is asking for authentication. Only
178 // makes sense for some types of requests. The caller is responsible for
179 // obtaining the credentials passing them to SetAuth.
180 virtual bool NeedsAuth();
182 // Fills the authentication info with the server's response.
183 virtual void GetAuthChallengeInfo(
184 scoped_refptr<AuthChallengeInfo>* auth_info);
186 // Resend the request with authentication credentials.
187 virtual void SetAuth(const AuthCredentials& credentials);
189 // Display the error page without asking for credentials again.
190 virtual void CancelAuth();
192 virtual void ContinueWithCertificate(X509Certificate* client_cert);
194 // Continue processing the request ignoring the last error.
195 virtual void ContinueDespiteLastError();
197 // Continue with the network request.
198 virtual void ResumeNetworkStart();
200 void FollowDeferredRedirect();
202 // Returns true if the Job is done producing response data and has called
203 // NotifyDone on the request.
204 bool is_done() const { return done_; }
206 // Get/Set expected content size
207 int64 expected_content_size() const { return expected_content_size_; }
208 void set_expected_content_size(const int64& size) {
209 expected_content_size_ = size;
212 // Whether we have processed the response for that request yet.
213 bool has_response_started() const { return has_handled_response_; }
215 // These methods are not applicable to all connections.
216 virtual bool GetMimeType(std::string* mime_type) const;
217 virtual int GetResponseCode() const;
219 // Returns the socket address for the connection.
220 // See url_request.h for details.
221 virtual HostPortPair GetSocketAddress() const;
223 // base::PowerObserver methods:
224 // We invoke URLRequestJob::Kill on suspend (crbug.com/4606).
225 void OnSuspend() override;
227 // Called after a NetworkDelegate has been informed that the URLRequest
228 // will be destroyed. This is used to track that no pending callbacks
229 // exist at destruction time of the URLRequestJob, unless they have been
230 // canceled by an explicit NetworkDelegate::NotifyURLRequestDestroyed() call.
231 virtual void NotifyURLRequestDestroyed();
233 // Populates |out| with the connection attempts made at the socket layer in
234 // the course of executing the URLRequestJob. Should be called after the job
235 // has failed or the response headers have been received.
236 virtual void GetConnectionAttempts(ConnectionAttempts* out) const;
238 // Given |policy|, |referrer|, and |redirect_destination|, returns the
239 // referrer URL mandated by |request|'s referrer policy.
240 static GURL ComputeReferrerForRedirect(URLRequest::ReferrerPolicy policy,
241 const std::string& referrer,
242 const GURL& redirect_destination);
244 protected:
245 friend class base::RefCounted<URLRequestJob>;
246 ~URLRequestJob() override;
248 // Notifies the job that a certificate is requested.
249 void NotifyCertificateRequested(SSLCertRequestInfo* cert_request_info);
251 // Notifies the job about an SSL certificate error.
252 void NotifySSLCertificateError(const SSLInfo& ssl_info, bool fatal);
254 // Delegates to URLRequest::Delegate.
255 bool CanGetCookies(const CookieList& cookie_list) const;
257 // Delegates to URLRequest::Delegate.
258 bool CanSetCookie(const std::string& cookie_line,
259 CookieOptions* options) const;
261 // Delegates to URLRequest::Delegate.
262 bool CanEnablePrivacyMode() const;
264 // Notifies the job that the network is about to be used.
265 void NotifyBeforeNetworkStart(bool* defer);
267 // Notifies the job that headers have been received.
268 void NotifyHeadersComplete();
270 // Notifies the request that the job has completed a Read operation.
271 void NotifyReadComplete(int bytes_read);
273 // Notifies the request that a start error has occurred.
274 void NotifyStartError(const URLRequestStatus& status);
276 // NotifyDone marks when we are done with a request. It is really
277 // a glorified set_status, but also does internal state checking and
278 // job tracking. It should be called once per request, when the job is
279 // finished doing all IO.
280 void NotifyDone(const URLRequestStatus& status);
282 // Some work performed by NotifyDone must be completed on a separate task
283 // so as to avoid re-entering the delegate. This method exists to perform
284 // that work.
285 void CompleteNotifyDone();
287 // Used as an asynchronous callback for Kill to notify the URLRequest
288 // that we were canceled.
289 void NotifyCanceled();
291 // Notifies the job the request should be restarted.
292 // Should only be called if the job has not started a response.
293 void NotifyRestartRequired();
295 // See corresponding functions in url_request.h.
296 void OnCallToDelegate();
297 void OnCallToDelegateComplete();
299 // Called to read raw (pre-filtered) data from this Job.
300 // If returning true, data was read from the job. buf will contain
301 // the data, and bytes_read will receive the number of bytes read.
302 // If returning true, and bytes_read is returned as 0, there is no
303 // additional data to be read.
304 // If returning false, an error occurred or an async IO is now pending.
305 // If async IO is pending, the status of the request will be
306 // URLRequestStatus::IO_PENDING, and buf must remain available until the
307 // operation is completed. See comments on URLRequest::Read for more
308 // info.
309 virtual bool ReadRawData(IOBuffer* buf, int buf_size, int *bytes_read);
311 // Called to tell the job that a filter has successfully reached the end of
312 // the stream.
313 virtual void DoneReading();
315 // Called to tell the job that the body won't be read because it's a redirect.
316 // This is needed so that redirect headers can be cached even though their
317 // bodies are never read.
318 virtual void DoneReadingRedirectResponse();
320 // Informs the filter that data has been read into its buffer
321 void FilteredDataRead(int bytes_read);
323 // Reads filtered data from the request. Returns true if successful,
324 // false otherwise. Note, if there is not enough data received to
325 // return data, this call can issue a new async IO request under
326 // the hood.
327 bool ReadFilteredData(int *bytes_read);
329 // Whether the response is being filtered in this job.
330 // Only valid after NotifyHeadersComplete() has been called.
331 bool HasFilter() { return filter_ != NULL; }
333 // At or near destruction time, a derived class may request that the filters
334 // be destroyed so that statistics can be gathered while the derived class is
335 // still present to assist in calculations. This is used by URLRequestHttpJob
336 // to get SDCH to emit stats.
337 void DestroyFilters();
339 // Provides derived classes with access to the request's network delegate.
340 NetworkDelegate* network_delegate() { return network_delegate_; }
342 // The status of the job.
343 const URLRequestStatus GetStatus();
345 // Set the status of the job.
346 void SetStatus(const URLRequestStatus& status);
348 // Set the proxy server that was used, if any.
349 void SetProxyServer(const HostPortPair& proxy_server);
351 // The number of bytes read before passing to the filter. This value reflects
352 // bytes read even when there is no filter.
353 int64 prefilter_bytes_read() const { return prefilter_bytes_read_; }
355 // The number of bytes read after passing through the filter. This value
356 // reflects bytes read even when there is no filter.
357 int64 postfilter_bytes_read() const { return postfilter_bytes_read_; }
359 // The request that initiated this job. This value MAY BE NULL if the
360 // request was released by DetachRequest().
361 URLRequest* request_;
363 private:
364 // When data filtering is enabled, this function is used to read data
365 // for the filter. Returns true if raw data was read. Returns false if
366 // an error occurred (or we are waiting for IO to complete).
367 bool ReadRawDataForFilter(int *bytes_read);
369 // Invokes ReadRawData and records bytes read if the read completes
370 // synchronously.
371 bool ReadRawDataHelper(IOBuffer* buf, int buf_size, int* bytes_read);
373 // Called in response to a redirect that was not canceled to follow the
374 // redirect. The current job will be replaced with a new job loading the
375 // given redirect destination.
376 void FollowRedirect(const RedirectInfo& redirect_info);
378 // Called after every raw read. If |bytes_read| is > 0, this indicates
379 // a successful read of |bytes_read| unfiltered bytes. If |bytes_read|
380 // is 0, this indicates that there is no additional data to read. If
381 // |bytes_read| is < 0, an error occurred and no bytes were read.
382 void OnRawReadComplete(int bytes_read);
384 // Updates the profiling info and notifies observers that an additional
385 // |bytes_read| unfiltered bytes have been read for this job.
386 void RecordBytesRead(int bytes_read);
388 // Called to query whether there is data available in the filter to be read
389 // out.
390 bool FilterHasData();
392 // Subclasses may implement this method to record packet arrival times.
393 // The default implementation does nothing. Only invoked when bytes have been
394 // read since the last invocation.
395 virtual void UpdatePacketReadTimes();
397 // Computes a new RedirectInfo based on receiving a redirect response of
398 // |location| and |http_status_code|.
399 RedirectInfo ComputeRedirectInfo(const GURL& location, int http_status_code);
401 // Notify the network delegate that more bytes have been received over the
402 // network, if bytes have been received since the previous notification.
403 // TODO(sclittle): Have this method also notify about sent bytes once
404 // URLRequestJob::GetTotalSentBytes has been implemented (crbug.com/518897).
405 void MaybeNotifyNetworkBytes();
407 // Indicates that the job is done producing data, either it has completed
408 // all the data or an error has been encountered. Set exclusively by
409 // NotifyDone so that it is kept in sync with the request.
410 bool done_;
412 int64 prefilter_bytes_read_;
413 int64 postfilter_bytes_read_;
415 // The data stream filter which is enabled on demand.
416 scoped_ptr<Filter> filter_;
418 // If the filter filled its output buffer, then there is a change that it
419 // still has internal data to emit, and this flag is set.
420 bool filter_needs_more_output_space_;
422 // When we filter data, we receive data into the filter buffers. After
423 // processing the filtered data, we return the data in the caller's buffer.
424 // While the async IO is in progress, we save the user buffer here, and
425 // when the IO completes, we fill this in.
426 scoped_refptr<IOBuffer> filtered_read_buffer_;
427 int filtered_read_buffer_len_;
429 // We keep a pointer to the read buffer while asynchronous reads are
430 // in progress, so we are able to pass those bytes to job observers.
431 scoped_refptr<IOBuffer> raw_read_buffer_;
433 // Used by HandleResponseIfNecessary to track whether we've sent the
434 // OnResponseStarted callback and potentially redirect callbacks as well.
435 bool has_handled_response_;
437 // Expected content size
438 int64 expected_content_size_;
440 // Set when a redirect is deferred.
441 RedirectInfo deferred_redirect_info_;
443 // The network delegate to use with this request, if any.
444 NetworkDelegate* network_delegate_;
446 // The value from GetTotalReceivedBytes() the last time
447 // MaybeNotifyNetworkBytes() was called. Used to calculate how bytes have been
448 // newly received since the last notification.
449 int64_t last_notified_total_received_bytes_;
451 base::WeakPtrFactory<URLRequestJob> weak_factory_;
453 DISALLOW_COPY_AND_ASSIGN(URLRequestJob);
456 } // namespace net
458 #endif // NET_URL_REQUEST_URL_REQUEST_JOB_H_