protocol: store response data when reader is not ready
This commit is contained in:
parent
5deb86d6f9
commit
23fbb57d72
2 changed files with 53 additions and 12 deletions
|
@ -59,7 +59,7 @@ class ResponsePiper : public net::URLFetcherResponseWriter {
|
||||||
job_->HeadersCompleted();
|
job_->HeadersCompleted();
|
||||||
first_write_ = false;
|
first_write_ = false;
|
||||||
}
|
}
|
||||||
return job_->DataAvailable(buffer, num_bytes);
|
return job_->DataAvailable(buffer, num_bytes, callback);
|
||||||
}
|
}
|
||||||
int Finish(const net::CompletionCallback& callback) override {
|
int Finish(const net::CompletionCallback& callback) override {
|
||||||
return net::OK;
|
return net::OK;
|
||||||
|
@ -166,21 +166,23 @@ void URLRequestFetchJob::HeadersCompleted() {
|
||||||
NotifyHeadersComplete();
|
NotifyHeadersComplete();
|
||||||
}
|
}
|
||||||
|
|
||||||
int URLRequestFetchJob::DataAvailable(net::IOBuffer* buffer, int num_bytes) {
|
int URLRequestFetchJob::DataAvailable(net::IOBuffer* buffer,
|
||||||
// Do nothing if pending_buffer_ is empty, i.e. there's no ReadRawData()
|
int num_bytes,
|
||||||
// operation waiting for IO completion.
|
const net::CompletionCallback& callback) {
|
||||||
if (!pending_buffer_.get())
|
// Store the data in a drainable IO buffer if pending_buffer_ is empty, i.e.
|
||||||
|
// there's no ReadRawData() operation waiting for IO completion.
|
||||||
|
if (!pending_buffer_.get()) {
|
||||||
|
response_piper_callback_ = callback;
|
||||||
|
drainable_buffer_ = new net::DrainableIOBuffer(buffer, num_bytes);
|
||||||
return net::ERR_IO_PENDING;
|
return net::ERR_IO_PENDING;
|
||||||
|
}
|
||||||
|
|
||||||
// pending_buffer_ is set to the IOBuffer instance provided to ReadRawData()
|
// pending_buffer_ is set to the IOBuffer instance provided to ReadRawData()
|
||||||
// by URLRequestJob.
|
// by URLRequestJob.
|
||||||
int bytes_read = std::min(num_bytes, pending_buffer_size_);
|
int bytes_read = std::min(num_bytes, pending_buffer_size_);
|
||||||
memcpy(pending_buffer_->data(), buffer->data(), bytes_read);
|
memcpy(pending_buffer_->data(), buffer->data(), bytes_read);
|
||||||
|
|
||||||
// Clear the buffers before notifying the read is complete, so that it is
|
ClearPendingBuffer();
|
||||||
// safe for the observer to read.
|
|
||||||
pending_buffer_ = nullptr;
|
|
||||||
pending_buffer_size_ = 0;
|
|
||||||
|
|
||||||
ReadRawDataComplete(bytes_read);
|
ReadRawDataComplete(bytes_read);
|
||||||
return bytes_read;
|
return bytes_read;
|
||||||
|
@ -191,6 +193,35 @@ void URLRequestFetchJob::Kill() {
|
||||||
fetcher_.reset();
|
fetcher_.reset();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void URLRequestFetchJob::StartReading() {
|
||||||
|
if (drainable_buffer_.get()) {
|
||||||
|
auto num_bytes = drainable_buffer_->BytesRemaining();
|
||||||
|
if (num_bytes <= 0 && !response_piper_callback_.is_null()) {
|
||||||
|
int size = drainable_buffer_->BytesConsumed();
|
||||||
|
drainable_buffer_ = nullptr;
|
||||||
|
response_piper_callback_.Run(size);
|
||||||
|
response_piper_callback_.Reset();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
int bytes_read = std::min(num_bytes, pending_buffer_size_);
|
||||||
|
memcpy(pending_buffer_->data(), drainable_buffer_->data(), bytes_read);
|
||||||
|
|
||||||
|
drainable_buffer_->DidConsume(bytes_read);
|
||||||
|
|
||||||
|
ClearPendingBuffer();
|
||||||
|
|
||||||
|
ReadRawDataComplete(bytes_read);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void URLRequestFetchJob::ClearPendingBuffer() {
|
||||||
|
// Clear the buffers before notifying the read is complete, so that it is
|
||||||
|
// safe for the observer to read.
|
||||||
|
pending_buffer_ = nullptr;
|
||||||
|
pending_buffer_size_ = 0;
|
||||||
|
}
|
||||||
|
|
||||||
int URLRequestFetchJob::ReadRawData(net::IOBuffer* dest, int dest_size) {
|
int URLRequestFetchJob::ReadRawData(net::IOBuffer* dest, int dest_size) {
|
||||||
if (GetResponseCode() == 204) {
|
if (GetResponseCode() == 204) {
|
||||||
request()->set_received_response_content_length(prefilter_bytes_read());
|
request()->set_received_response_content_length(prefilter_bytes_read());
|
||||||
|
@ -198,6 +229,9 @@ int URLRequestFetchJob::ReadRawData(net::IOBuffer* dest, int dest_size) {
|
||||||
}
|
}
|
||||||
pending_buffer_ = dest;
|
pending_buffer_ = dest;
|
||||||
pending_buffer_size_ = dest_size;
|
pending_buffer_size_ = dest_size;
|
||||||
|
// Read from drainable_buffer_ if available, i.e. response data became
|
||||||
|
// available before ReadRawData was called.
|
||||||
|
StartReading();
|
||||||
return net::ERR_IO_PENDING;
|
return net::ERR_IO_PENDING;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -229,8 +263,8 @@ void URLRequestFetchJob::OnURLFetchComplete(const net::URLFetcher* source) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
pending_buffer_ = nullptr;
|
ClearPendingBuffer();
|
||||||
pending_buffer_size_ = 0;
|
|
||||||
if (fetcher_->GetStatus().is_success())
|
if (fetcher_->GetStatus().is_success())
|
||||||
ReadRawDataComplete(0);
|
ReadRawDataComplete(0);
|
||||||
else
|
else
|
||||||
|
|
|
@ -25,9 +25,14 @@ class URLRequestFetchJob : public JsAsker<net::URLRequestJob>,
|
||||||
|
|
||||||
// Called by response writer.
|
// Called by response writer.
|
||||||
void HeadersCompleted();
|
void HeadersCompleted();
|
||||||
int DataAvailable(net::IOBuffer* buffer, int num_bytes);
|
int DataAvailable(net::IOBuffer* buffer,
|
||||||
|
int num_bytes,
|
||||||
|
const net::CompletionCallback& callback);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
void StartReading();
|
||||||
|
void ClearPendingBuffer();
|
||||||
|
|
||||||
// JsAsker:
|
// JsAsker:
|
||||||
void BeforeStartInUI(v8::Isolate*, v8::Local<v8::Value>) override;
|
void BeforeStartInUI(v8::Isolate*, v8::Local<v8::Value>) override;
|
||||||
void StartAsync(std::unique_ptr<base::Value> options) override;
|
void StartAsync(std::unique_ptr<base::Value> options) override;
|
||||||
|
@ -46,8 +51,10 @@ class URLRequestFetchJob : public JsAsker<net::URLRequestJob>,
|
||||||
scoped_refptr<net::URLRequestContextGetter> url_request_context_getter_;
|
scoped_refptr<net::URLRequestContextGetter> url_request_context_getter_;
|
||||||
std::unique_ptr<net::URLFetcher> fetcher_;
|
std::unique_ptr<net::URLFetcher> fetcher_;
|
||||||
scoped_refptr<net::IOBuffer> pending_buffer_;
|
scoped_refptr<net::IOBuffer> pending_buffer_;
|
||||||
|
scoped_refptr<net::DrainableIOBuffer> drainable_buffer_;
|
||||||
int pending_buffer_size_;
|
int pending_buffer_size_;
|
||||||
std::unique_ptr<net::HttpResponseInfo> response_info_;
|
std::unique_ptr<net::HttpResponseInfo> response_info_;
|
||||||
|
net::CompletionCallback response_piper_callback_;
|
||||||
|
|
||||||
DISALLOW_COPY_AND_ASSIGN(URLRequestFetchJob);
|
DISALLOW_COPY_AND_ASSIGN(URLRequestFetchJob);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue