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

Unified Diff: net/spdy/bidirectional_spdy_stream.cc

Issue 1326503003: Added a net::BidirectionalStream to expose a bidirectional streaming interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Comments Created 5 years, 2 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
Index: net/spdy/bidirectional_spdy_stream.cc
diff --git a/net/spdy/bidirectional_spdy_stream.cc b/net/spdy/bidirectional_spdy_stream.cc
new file mode 100644
index 0000000000000000000000000000000000000000..a940584cf53ebaf77d5398c318dafc830607be1e
--- /dev/null
+++ b/net/spdy/bidirectional_spdy_stream.cc
@@ -0,0 +1,209 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "net/spdy/bidirectional_spdy_stream.h"
+
+#include "base/bind.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/time/time.h"
+#include "net/base/request_priority.h"
+#include "net/spdy/spdy_buffer.h"
+#include "net/spdy/spdy_header_block.h"
+#include "net/spdy/spdy_http_utils.h"
+#include "net/spdy/spdy_stream.h"
+
+namespace net {
+
+const base::TimeDelta kBufferTime = base::TimeDelta::FromMilliseconds(1);
+
+BidirectionalSpdyStream::BidirectionalSpdyStream(
+ const base::WeakPtr<SpdySession>& spdy_session)
+ : spdy_session_(spdy_session),
+ stream_closed_(false),
+ closed_stream_status_(ERR_FAILED),
+ buffered_read_callback_pending_(false),
+ more_read_data_pending_(false),
+ weak_factory_(this) {}
+
+BidirectionalSpdyStream::~BidirectionalSpdyStream() {
+ if (stream_.get()) {
+ stream_->DetachDelegate();
+ DCHECK(!stream_.get());
+ }
+}
+
+void BidirectionalSpdyStream::Start(const HttpRequestInfo* request_info,
+ RequestPriority priority,
+ const BoundNetLog& net_log,
+ BidirectionalStream::Delegate* delegate) {
+ delegate_ = delegate;
+ DCHECK(!stream_);
+ if (!spdy_session_)
+ delegate_->OnFailed(ERR_CONNECTION_CLOSED);
+
+ request_info_ = request_info;
+
+ int rv = stream_request_.StartRequest(
+ SPDY_REQUEST_RESPONSE_STREAM, spdy_session_, request_info_->url, priority,
+ net_log, base::Bind(&BidirectionalSpdyStream::OnStreamInitialized,
+ weak_factory_.GetWeakPtr()));
+ if (rv != ERR_IO_PENDING)
+ OnStreamInitialized(rv);
+}
+
+int BidirectionalSpdyStream::ReadData(IOBuffer* buf, int buf_len) {
+ if (stream_.get())
+ CHECK(!stream_->IsIdle());
+
+ CHECK(buf);
+ CHECK(buf_len);
+ if (!stream_closed_)
+ CHECK(stream_);
+
+ // If there is data buffered, complete the IO immediately.
+ if (!data_queue_.IsEmpty()) {
+ return data_queue_.Dequeue(buf->data(), buf_len);
+ } else if (stream_closed_) {
+ return closed_stream_status_;
+ }
+ user_buffer_ = buf;
+ user_buffer_len_ = buf_len;
+ return ERR_IO_PENDING;
+}
+
+void BidirectionalSpdyStream::SendData(IOBuffer* data,
+ int length,
+ bool end_stream) {
+ stream_->SendData(data, length,
+ end_stream ? NO_MORE_DATA_TO_SEND : MORE_DATA_TO_SEND);
+}
+
+void BidirectionalSpdyStream::Cancel() {
+ if (!stream_)
+ return;
+ stream_->Cancel();
+ DCHECK(!stream_);
+}
+
+void BidirectionalSpdyStream::OnRequestHeadersSent() {
+ delegate_->OnRequestHeadersSent();
+}
+
+SpdyResponseHeadersStatus BidirectionalSpdyStream::OnResponseHeadersUpdated(
+ const SpdyHeaderBlock& response_headers) {
+ delegate_->OnHeaders(response_headers);
+ return RESPONSE_HEADERS_ARE_COMPLETE;
+}
+
+void BidirectionalSpdyStream::OnDataReceived(scoped_ptr<SpdyBuffer> buffer) {
+ DCHECK(stream_);
+ data_queue_.Enqueue(buffer.Pass());
+ if (user_buffer_) {
+ // Handing small chunks of data to the caller creates measurable overhead.
+ // So buffer data in short time-spans and send a single read notification.
+ ScheduleBufferedRead();
+ }
+}
+
+void BidirectionalSpdyStream::OnDataSent() {
+ delegate_->OnDataSent();
+}
+
+void BidirectionalSpdyStream::OnTrailers(const SpdyHeaderBlock& trailers) {
+ delegate_->OnTrailers(trailers);
+}
+
+void BidirectionalSpdyStream::OnClose(int status) {
+ DCHECK(stream_);
+
+ stream_closed_ = true;
+ closed_stream_status_ = status;
+ stream_.reset();
+
+ // Complete remaining buffered read.
+ if (status == OK && user_buffer_) {
+ DoBufferedRead();
+ return;
+ }
+
+ delegate_->OnClose(status);
+}
+
+void BidirectionalSpdyStream::SendRequestHeaders() {
+ stream_->SetDelegate(this);
+ scoped_ptr<SpdyHeaderBlock> headers(new SpdyHeaderBlock);
+ CreateSpdyHeadersFromHttpRequest(*request_info_, request_info_->extra_headers,
+ stream_->GetProtocolVersion(), true,
+ headers.get());
+ bool end_stream = (request_info_->method == "GET");
+ stream_->SendRequestHeaders(
+ headers.Pass(), end_stream ? NO_MORE_DATA_TO_SEND : MORE_DATA_TO_SEND);
+}
+
+void BidirectionalSpdyStream::OnStreamInitialized(int rv) {
+ DCHECK_NE(ERR_IO_PENDING, rv);
+ if (rv == OK) {
+ stream_ = stream_request_.ReleaseStream();
+ SendRequestHeaders();
+ return;
+ }
+ delegate_->OnFailed(rv);
+}
+
+void BidirectionalSpdyStream::ScheduleBufferedRead() {
+ // If there is already a scheduled DoBufferedRead, don't issue
+ // another one. Mark that we have received more data and return.
+ if (buffered_read_callback_pending_) {
+ more_read_data_pending_ = true;
+ return;
+ }
+
+ more_read_data_pending_ = false;
+ buffered_read_callback_pending_ = true;
+ base::ThreadTaskRunnerHandle::Get()->PostDelayedTask(
+ FROM_HERE, base::Bind(&BidirectionalSpdyStream::DoBufferedRead,
+ weak_factory_.GetWeakPtr()),
+ kBufferTime);
+}
+
+void BidirectionalSpdyStream::DoBufferedRead() {
+ buffered_read_callback_pending_ = false;
+ // If the stream errored out, do not complete the read.
+ if (!stream_ && !stream_closed_)
+ return;
+ if (stream_closed_ && closed_stream_status_ != OK)
+ return;
+
+ // When |more_read_data_pending_| is true, it means that more data has arrived
+ // since started waiting. Wait a little longer and continue to buffer.
+ if (more_read_data_pending_ && ShouldWaitForMoreBufferedData()) {
+ ScheduleBufferedRead();
+ return;
+ }
+
+ int rv = 0;
+ if (user_buffer_.get()) {
+ rv = ReadData(user_buffer_.get(), user_buffer_len_);
+ DCHECK_NE(ERR_IO_PENDING, rv);
+ user_buffer_ = nullptr;
+ user_buffer_len_ = 0;
+ delegate_->OnReadCompleted(rv);
+
+ // If all data is read, and BidirectionalSpdyStream::onClose is invoked
+ // previously, let the delegate know about the onClose event.
+ if (data_queue_.IsEmpty() && stream_closed_) {
+ DCHECK_EQ(OK, closed_stream_status_);
+ delegate_->OnClose(OK);
mef 2015/10/20 21:56:35 should we change this to 'noMoreData' flag?
xunjieli 2015/10/21 19:35:36 Talked on the Misha's CL. I misunderstood the comm
+ }
+ }
+}
+
+bool BidirectionalSpdyStream::ShouldWaitForMoreBufferedData() const {
+ if (stream_closed_)
+ return false;
+ DCHECK_GT(user_buffer_len_, 0);
+ return data_queue_.GetTotalSize() < static_cast<size_t>(user_buffer_len_);
+}
+
+} // namespace net

Powered by Google App Engine
This is Rietveld 408576698