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

Unified Diff: net/url_request/url_request_job.h

Issue 1662763002: [ON HOLD] Implement pull-based design for content decoding (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/url_request/url_request_http_job_unittest.cc ('k') | net/url_request/url_request_job.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_job.h
diff --git a/net/url_request/url_request_job.h b/net/url_request/url_request_job.h
index beae02111bde59587c9705d5f6799a821372c390..bad5c2ed267f58bd7695df431391d4adcf81e117 100644
--- a/net/url_request/url_request_job.h
+++ b/net/url_request/url_request_job.h
@@ -22,6 +22,7 @@
#include "net/base/request_priority.h"
#include "net/base/upload_progress.h"
#include "net/cookies/canonical_cookie.h"
+#include "net/filter/source_stream.h"
#include "net/socket/connection_attempts.h"
#include "net/url_request/redirect_info.h"
#include "net/url_request/url_request.h"
@@ -143,14 +144,6 @@ class NET_EXPORT URLRequestJob : public base::PowerObserver {
// network stack makes the request to.
virtual void PopulateNetErrorDetails(NetErrorDetails* details) const;
- // Called to setup a stream filter for this request. An example of filter is
- // content encoding/decoding.
- // Subclasses should return the appropriate Filter, or NULL for no Filter.
- // This class takes ownership of the returned Filter.
- //
- // The default implementation returns NULL.
- virtual std::unique_ptr<Filter> SetupFilter() const;
-
// Called to determine if this response is a redirect. Only makes sense
// for some types of requests. This method returns true if the response
// is a redirect, and fills in the location param with the URL of the
@@ -307,24 +300,10 @@ class NET_EXPORT URLRequestJob : public base::PowerObserver {
// bodies are never read.
virtual void DoneReadingRedirectResponse();
- // Reads filtered data from the request. Returns OK if immediately successful,
- // ERR_IO_PENDING if the request couldn't complete synchronously, and some
- // other error code if the request failed synchronously. Note that this
- // function can issue new asynchronous requests if needed, in which case it
- // returns ERR_IO_PENDING. If this method completes synchronously,
- // |*bytes_read| is the number of bytes output by the filter chain if this
- // method returns OK, or zero if this method returns an error.
- Error ReadFilteredData(int* bytes_read);
-
- // Whether the response is being filtered in this job.
- // Only valid after NotifyHeadersComplete() has been called.
- bool HasFilter() { return filter_ != NULL; }
-
- // At or near destruction time, a derived class may request that the filters
- // be destroyed so that statistics can be gathered while the derived class is
- // still present to assist in calculations. This is used by URLRequestHttpJob
- // to get SDCH to emit stats.
- void DestroyFilters();
+ // Called to set up a SourceStream chain for this request.
+ // Subclasses should return the appropriate last SourceStream of the chain,
+ // or nullptr on error.
+ virtual std::unique_ptr<SourceStream> SetUpSourceStream();
// Provides derived classes with access to the request's network delegate.
NetworkDelegate* network_delegate() { return network_delegate_; }
@@ -354,21 +333,22 @@ class NET_EXPORT URLRequestJob : public base::PowerObserver {
URLRequest* request_;
private:
+ class URLRequestJobSourceStream;
+
// Set the status of the associated URLRequest.
// TODO(mmenke): Make the URLRequest manage its own status.
void SetStatus(const URLRequestStatus& status);
- // When data filtering is enabled, this function is used to read data
- // for the filter. Returns a net error code to indicate if raw data was
- // successfully read, an error happened, or the IO is pending.
- Error ReadRawDataForFilter(int* bytes_read);
-
- // Informs the filter chain that data has been read into its buffer.
- void PushInputToFilter(int bytes_read);
+ // Helper method used to perform tasks after reading from |source_stream_| is
+ // completed. |synchronous| true if the read completed synchronously.
+ // See the documentation for |Read| above for the contract of this method.
+ void SourceStreamReadComplete(bool synchronous, int result);
// Invokes ReadRawData and records bytes read if the read completes
// synchronously.
- Error ReadRawDataHelper(IOBuffer* buf, int buf_size, int* bytes_read);
+ int ReadRawDataHelper(IOBuffer* buf,
+ int buf_size,
+ const CompletionCallback& callback);
// Called in response to a redirect that was not canceled to follow the
// redirect. The current job will be replaced with a new job loading the
@@ -377,18 +357,14 @@ class NET_EXPORT URLRequestJob : public base::PowerObserver {
// Called after every raw read. If |bytes_read| is > 0, this indicates
// a successful read of |bytes_read| unfiltered bytes. If |bytes_read|
- // is 0, this indicates that there is no additional data to read. |error|
- // specifies whether an error occurred and no bytes were read.
- void GatherRawReadStats(Error error, int bytes_read);
+ // is 0, this indicates that there is no additional data to read.
+ // If |bytes_read| is negative, no bytes were read.
+ void GatherRawReadStats(int bytes_read);
// Updates the profiling info and notifies observers that an additional
// |bytes_read| unfiltered bytes have been read for this job.
void RecordBytesRead(int bytes_read);
- // Called to query whether there is data available in the filter to be read
- // out.
- bool FilterHasData();
-
// NotifyDone marks that request is done. It is really a glorified
// set_status, but also does internal state checking and job tracking. It
// should be called once per request, when the job is finished doing all IO.
@@ -418,22 +394,18 @@ class NET_EXPORT URLRequestJob : public base::PowerObserver {
// NotifyDone so that it is kept in sync with the request.
bool done_;
+ // Number of raw network bytes read from job subclass.
int64_t prefilter_bytes_read_;
- int64_t postfilter_bytes_read_;
- // The data stream filter which is enabled on demand.
- std::unique_ptr<Filter> filter_;
+ // Number of bytes after applying |source_stream_| filters.
+ int64_t postfilter_bytes_read_;
- // If the filter filled its output buffer, then there is a change that it
- // still has internal data to emit, and this flag is set.
- bool filter_needs_more_output_space_;
+ // The first SourceStream of the SourceStream chain used.
+ std::unique_ptr<SourceStream> source_stream_;
- // When we filter data, we receive data into the filter buffers. After
- // processing the filtered data, we return the data in the caller's buffer.
- // While the async IO is in progress, we save the user buffer here, and
- // when the IO completes, we fill this in.
- scoped_refptr<IOBuffer> filtered_read_buffer_;
- int filtered_read_buffer_len_;
+ // Keep a reference to the buffer passed in via URLRequestJob::Read() so it
+ // doesn't get destroyed when the read has not completed.
+ scoped_refptr<IOBuffer> pending_read_buffer_;
// We keep a pointer to the read buffer while asynchronous reads are
// in progress, so we are able to pass those bytes to job observers.
@@ -462,6 +434,10 @@ class NET_EXPORT URLRequestJob : public base::PowerObserver {
// notification.
int64_t last_notified_total_sent_bytes_;
+ // Non-null if ReadRawData() returned ERR_IO_PENDING, and the read has not
+ // completed.
+ CompletionCallback read_raw_callback_;
+
base::WeakPtrFactory<URLRequestJob> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(URLRequestJob);
« no previous file with comments | « net/url_request/url_request_http_job_unittest.cc ('k') | net/url_request/url_request_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698