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

Unified Diff: google_apis/gcm/base/socket_stream.cc

Issue 23684017: [GCM] Initial work to set up directory structure and introduce socket integration (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Self review Created 7 years, 3 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: google_apis/gcm/base/socket_stream.cc
diff --git a/google_apis/gcm/base/socket_stream.cc b/google_apis/gcm/base/socket_stream.cc
new file mode 100644
index 0000000000000000000000000000000000000000..e87ce62a4306b7864454ed2abe6fa8112c559710
--- /dev/null
+++ b/google_apis/gcm/base/socket_stream.cc
@@ -0,0 +1,402 @@
+// Copyright (c) 2013 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 "google_apis/gcm/base/socket_stream.h"
+
+#include "base/callback.h"
+#include "base/message_loop/message_loop.h"
+#include "base/run_loop.h"
+#include "net/base/io_buffer.h"
+#include "net/base/net_errors.h"
+#include "net/socket/stream_socket.h"
+
+namespace gcm {
+
+// TODO(zea): consider having dynamically sized buffers if this becomes too
+// expensive.
+const uint32 kDefaultBufferSize = 8*1024;
+
+SocketInputStream::SocketInputStream(base::TimeDelta read_timeout,
+ net::StreamSocket* socket)
+ : socket_(socket),
+ io_buffer_(new net::IOBufferWithSize(kDefaultBufferSize)),
+ drainable_io_buffer_(new net::DrainableIOBuffer(io_buffer_.get(),
+ io_buffer_->size())),
+ buffer_pos_(0),
+ buffer_size_(0),
+ limit_(0),
+ backup_bytes_(0),
+ skipped_bytes_(0),
+ last_error_(net::OK),
+ state_(EMPTY),
+ read_timeout_(read_timeout),
+ weak_ptr_factory_(this) {
+ DCHECK(socket->IsConnected());
+}
+
+SocketInputStream::~SocketInputStream() {
+}
+
+bool SocketInputStream::Next(const void** data, int* size) {
+ if (state_ == CLOSED)
+ return false;
+
+ if (backup_bytes_ > 0) {
+ *size = backup_bytes_;
+ *data = io_buffer_->data() + buffer_pos_ - backup_bytes_;
+ backup_bytes_ = 0;
+ return true;
+ }
+
+ if (limit_ != 0 && buffer_pos_ >= limit_) {
+ DVLOG(1) << "Reached buffer limit, ending read.";
+ return false;
+ }
+
+ if (buffer_size_ == buffer_pos_) {
+ if (!run_loop_.get()) {
+ Refresh(base::Closure());
+
+ // Check if refresh is still pending.
+ if (state_ == READING) {
+ // It's valid for the caller to spin if size is set to 0 (i.e. no new
+ // data when data is expected) and true is returned. Make sure the
+ // RefreshCompletionCallback has a chance to execute by running pending
+ // messages on this message loop.
+ run_loop_.reset(new base::RunLoop());
+ // Post a timeout task. If it runs, it means the read is still
+ // outstanding, but took too long. This is necessary to handle "brutal"
+ // disconnects, that do not properly close the TCP connection.
+ base::MessageLoop::current()->PostDelayedTask(
+ FROM_HERE,
+ run_loop_->QuitClosure(),
+ read_timeout_);
+ run_loop_->Run();
+ run_loop_.reset();
+ }
+ }
+
+ if (buffer_size_ == buffer_pos_) {
+ *size = 0;
+ if (state_ == READING) {
+ // The timeout was hit; the stream must be recreated with a socket
+ // with a new connection.
+ DVLOG(1) << "Socket read timed out, closing input stream.";
+ CloseStream(net::ERR_TIMED_OUT, base::Closure());
+ return false;
+ } else if (state_ == CLOSED) {
+ // An error was encountered and the stream has already been closed.
+ return false;
+ }
+
+ // The refresh was successful, but did not return any data.
+ // TODO(zea): is this a valid situation?
+ NOTREACHED() << "Refresh did not return data.";
+ return false;
+ }
+ }
+
+ *data = io_buffer_->data() + buffer_pos_;
+ *size = buffer_size_ - buffer_pos_;
+ buffer_pos_ = buffer_size_;
+ state_ = EMPTY;
+ DVLOG(1) << "Consuming " << *size << " bytes in input buffer.";
+ return true;
+}
+
+void SocketInputStream::BackUp(int count) {
+ DCHECK(state_ == READY || state_ == EMPTY);
+ DCHECK_GE(backup_bytes_, 0);
+ DCHECK_LE(backup_bytes_, buffer_pos_);
+ DCHECK_EQ(skipped_bytes_, 0);
+
+ backup_bytes_ += count;
+ state_ = READY;
+ DVLOG(1) << "Backing up " << count << " bytes in input buffer. "
+ << "Current position now at " << buffer_pos_ - backup_bytes_
+ << " of " << buffer_size_;
+}
+
+bool SocketInputStream::Skip(int count) {
+ DCHECK_EQ(state_, READY);
+ DCHECK_GT(count, 0);
+ DVLOG(1) << "Skipping " << count << " bytes in stream.";
+
+ if (backup_bytes_ >= count) {
+ // We have more data left over than we're trying to skip. Just chop it.
+ backup_bytes_ -= count;
+ return true;
+ }
+
+ count -= backup_bytes_;
+ backup_bytes_ = 0;
+ skipped_bytes_ += count;
+ state_ = EMPTY;
+
+ return true;
+}
+
+int64 SocketInputStream::ByteCount() const {
+ DCHECK_NE(state_, CLOSED);
+ DCHECK_NE(state_, READING);
+ return buffer_size_;
+}
+
+void SocketInputStream::Refresh(const base::Closure& callback) {
+ DCHECK_NE(state_, CLOSED);
+ DCHECK_NE(state_, READING);
+ DCHECK_EQ(backup_bytes_, 0);
+
+ if (buffer_pos_ == io_buffer_->size()) {
+ LOG(ERROR) << "Out of buffer space, closing input stream.";
+ CloseStream(net::ERR_UNEXPECTED, callback);
+ return;
+ }
+
+ if (!socket_->IsConnected()) {
+ LOG(ERROR) << "Socket was disconnected, closing input stream";
+ CloseStream(net::ERR_CONNECTION_CLOSED, callback);
+ return;
+ }
+
+ state_ = READING;
+ int read_limit =
+ limit_ == 0 ?
+ drainable_io_buffer_->BytesRemaining() :
+ limit_ - buffer_pos_;
+ read_limit = std::min(read_limit, drainable_io_buffer_->BytesRemaining());
+ DVLOG(1) << "Refreshing input stream, limit of " << read_limit << " bytes.";
+ DCHECK_GT(read_limit, 0);
+ int result = socket_->Read(
+ drainable_io_buffer_,
+ read_limit,
+ base::Bind(&SocketInputStream::RefreshCompletionCallback,
+ weak_ptr_factory_.GetWeakPtr(),
+ callback));
+ if (result != net::ERR_IO_PENDING)
+ RefreshCompletionCallback(callback, result);
+}
+
+void SocketInputStream::Reset() {
+ DCHECK_EQ(skipped_bytes_, 0);
+ DVLOG(1) << "Resetting input stream, consumed "
+ << buffer_pos_ - backup_bytes_ << " bytes.";
+ DCHECK_NE(state_, READING);
+ DCHECK_NE(state_, CLOSED);
+
+ char* remaining_data_ptr = &(io_buffer_->data()[buffer_pos_ - backup_bytes_]);
+ int remaining_buffer_size = buffer_size_ - buffer_pos_ + backup_bytes_;
+ ResetInternal();
+
+ if (remaining_buffer_size > 0) {
+ buffer_size_ = remaining_buffer_size;
+ DVLOG(1) << "Have " << buffer_size_ << " bytes remaining, shifting.";
+ // Move any remaining unread data to the start of the buffer;
+ std::memmove(io_buffer_->data(), remaining_data_ptr, buffer_size_);
+ state_ = READY;
+ drainable_io_buffer_->SetOffset(buffer_size_);
+ }
+}
+
+void SocketInputStream::SetLimit(int limit) {
+ DCHECK_GE(limit, 0);
+ DCHECK_LT(limit, io_buffer_->size());
+ DVLOG(1) << "Setting read limit to " << limit;
+ DVLOG(1) << " Current pos: " << buffer_pos_;
+ DVLOG(1) << " Current backup: " << backup_bytes_;
+ DVLOG(1) << " Current size: " << buffer_size_;
+ limit_ = limit;
+}
+
+int SocketInputStream::GetCurrentPosition() const {
+ DCHECK_EQ(skipped_bytes_, 0);
+ return buffer_pos_ - backup_bytes_;
+}
+
+int SocketInputStream::last_error() const {
+ return last_error_;
+}
+
+SocketInputStream::State SocketInputStream::state() const {
+ return state_;
+}
+
+void SocketInputStream::RefreshCompletionCallback(
+ const base::Closure& callback, int result) {
+ DCHECK_EQ(state_, READING);
+
+ if (run_loop_.get())
+ run_loop_->Quit();
+
+ if (state_ == CLOSED) {
+ // An error occured before the completion callback could complete. Ignore
+ // the result.
+ return;
+ }
+
+ if (result < net::OK) {
+ DVLOG(1) << "Failed to refresh socket: " << result;
+ CloseStream(result, callback);
+ return;
+ }
+
+ if (result == 0) {
+ // No data found, just return.
+ state_ = (buffer_pos_ == buffer_size_ ? EMPTY : READY);
+ return;
+ }
+
+ state_ = READY;
+ buffer_size_ += result;
+ int bytes_to_skip = std::min(skipped_bytes_, result);
+ buffer_pos_ += bytes_to_skip;
+ if (buffer_pos_== buffer_size_)
+ state_ = EMPTY;
+ skipped_bytes_ = std::max(skipped_bytes_ - result, 0);
+ drainable_io_buffer_->SetOffset(buffer_size_);
+ if (!callback.is_null())
+ base::MessageLoop::current()->PostTask(FROM_HERE, callback);
+
+ DVLOG(1) << "Refresh complete with " << result << " new bytes. "
+ << "Current position " << buffer_pos_ - backup_bytes_
+ << " of " << buffer_size_;
+}
+
+void SocketInputStream::ResetInternal() {
+ if (run_loop_.get()) {
+ run_loop_->Quit();
+ run_loop_.reset();
+ }
+ weak_ptr_factory_.InvalidateWeakPtrs(); // Invalidate any callbacks.
+ buffer_size_ = 0;
+ buffer_pos_ = 0;
+ backup_bytes_ = 0;
+ skipped_bytes_ = 0;
+ state_ = EMPTY;
+ limit_ = 0;
+
+ last_error_ = net::OK;
+
+ // Reset the offset by creating a new one. Note that DrainableIOBuffers don't
+ // actually allocate their own buffer memory like normal IOBuffers. This will
+ // just reset the pointers to point to the beginning of io_buffer_'s data.
+ drainable_io_buffer_ = new net::DrainableIOBuffer(io_buffer_.get(),
+ io_buffer_->size());
+}
+
+void SocketInputStream::CloseStream(int result, const base::Closure& callback) {
+ ResetInternal();
+ state_ = CLOSED;
+ last_error_ = result;
+
+ if (!callback.is_null())
+ base::MessageLoop::current()->PostTask(FROM_HERE, callback);
+}
+
+SocketOutputStream::SocketOutputStream(net::StreamSocket* socket)
+ : socket_(socket),
+ io_buffer_(new net::IOBufferWithSize(kDefaultBufferSize)),
+ drainable_io_buffer_(new net::DrainableIOBuffer(io_buffer_.get(),
+ io_buffer_->size())),
+ buffer_used_(0),
+ state_(EMPTY),
+ weak_ptr_factory_(this) {
+ DCHECK(socket->IsConnected());
+}
+
+SocketOutputStream::~SocketOutputStream() {
+}
+
+bool SocketOutputStream::Next(void** data, int* size) {
+ DCHECK_NE(state_, CLOSED);
+ DCHECK_NE(state_, FLUSHING);
+ if (buffer_used_ == io_buffer_->size())
+ return false;
+
+ *data = io_buffer_->data() + buffer_used_;
+ *size = io_buffer_->size() - buffer_used_;
+ buffer_used_ = io_buffer_->size();
+ state_ = READY;
+ return true;
+}
+
+void SocketOutputStream::BackUp(int count) {
+ DCHECK_GE(count, 0);
+ if (count > buffer_used_)
+ buffer_used_ = 0;
+ buffer_used_ -= count;
+ DVLOG(1) << "Backing up " << count << " bytes in output buffer. "
+ << buffer_used_ << " bytes used.";
+}
+
+int64 SocketOutputStream::ByteCount() const {
+ DCHECK_NE(state_, CLOSED);
+ DCHECK_NE(state_, FLUSHING);
+ return buffer_used_;
+}
+
+void SocketOutputStream::Flush(const base::Closure& callback) {
+ DCHECK_EQ(state_, READY);
+ state_ = FLUSHING;
+
+ if (!socket_->IsConnected()) {
+ LOG(ERROR) << "Socket was disconnected, closing output stream";
+ last_error_ = net::ERR_CONNECTION_CLOSED;
+ state_ = CLOSED;
+ if (!callback.is_null())
+ base::MessageLoop::current()->PostTask(FROM_HERE, callback);
+ return;
+ }
+
+ DVLOG(1) << "Flushing " << buffer_used_ << " bytes into socket.";
+ int result = socket_->Write(
+ drainable_io_buffer_,
+ buffer_used_,
+ base::Bind(&SocketOutputStream::FlushCompletionCallback,
+ weak_ptr_factory_.GetWeakPtr(),
+ callback));
+ if (result != net::ERR_IO_PENDING)
+ FlushCompletionCallback(callback, result);
+}
+
+SocketOutputStream::State SocketOutputStream::state() const{
+ return state_;
+}
+
+int SocketOutputStream::last_error() const {
+ return last_error_;
+}
+
+void SocketOutputStream::FlushCompletionCallback(
+ const base::Closure& callback, int result) {
+ DCHECK_EQ(state_, FLUSHING);
+ if (result < net::OK) {
+ LOG(ERROR) << "Failed to flush socket.";
+ last_error_ = result;
+ state_ = CLOSED;
+ if (!callback.is_null())
+ base::MessageLoop::current()->PostTask(FROM_HERE, callback);
+ return;
+ }
+
+ state_ = READY;
+ if (drainable_io_buffer_->BytesConsumed() + result < buffer_used_) {
+ DVLOG(1) << "Partial flush complete. Retrying.";
+ // Only a partial write was completed. Flush again to finish the write.
+ drainable_io_buffer_->SetOffset(
+ drainable_io_buffer_->BytesConsumed() + result);
+ Flush(callback);
+ return;
+ }
+
+ DVLOG(1) << "Socket flush complete.";
+ drainable_io_buffer_ = new net::DrainableIOBuffer(io_buffer_.get(),
+ io_buffer_->size());
+ state_ = EMPTY;
+ buffer_used_ = 0;
+ if (!callback.is_null())
+ base::MessageLoop::current()->PostTask(FROM_HERE, callback);
+}
+
+} // namespace gcm

Powered by Google App Engine
This is Rietveld 408576698