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

Unified Diff: remoting/protocol/stream_message_pipe_adapter.h

Issue 1649063003: Add MessagePipe interface. Use it in ChannelDispatcherBase. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@simple_parser
Patch Set: Created 4 years, 11 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 | « remoting/protocol/message_pipe.h ('k') | remoting/protocol/stream_message_pipe_adapter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/stream_message_pipe_adapter.h
diff --git a/remoting/protocol/stream_message_pipe_adapter.h b/remoting/protocol/stream_message_pipe_adapter.h
new file mode 100644
index 0000000000000000000000000000000000000000..15f7e1ded5c6e999651dcce2877143fad9d9dc07
--- /dev/null
+++ b/remoting/protocol/stream_message_pipe_adapter.h
@@ -0,0 +1,49 @@
+// Copyright 2016 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.
+
+#ifndef REMOTING_PROTOCOL_STREAM_MESSAGE_PIPE_ADAPTER_H_
+#define REMOTING_PROTOCOL_STREAM_MESSAGE_PIPE_ADAPTER_H_
+
+#include "base/callback.h"
+#include "remoting/protocol/message_pipe.h"
+#include "remoting/protocol/message_reader.h"
+
+namespace remoting {
+class BufferedSocketWriter;
+
+namespace protocol {
+
+class P2PStreamSocket;
+
+// MessagePipe implementation that sends and receives messages over a
+// P2PStreamChannel.
+class StreamMessagePipeAdapter : public MessagePipe {
+ public:
+ typedef base::Callback<void(int)> ErrorCallback;
+
+ StreamMessagePipeAdapter(scoped_ptr<P2PStreamSocket> socket,
+ const ErrorCallback& error_callback);
+ ~StreamMessagePipeAdapter() override;
+
+ // MessagePipe interface.
+ void StartReceiving(const MessageReceivedCallback& callback) override;
+ void Send(google::protobuf::MessageLite* message,
+ const base::Closure& done) override;
+
+ private:
+ void CloseOnError(int error);
+
+ scoped_ptr<P2PStreamSocket> socket_;
+ ErrorCallback error_callback_;
+
+ MessageReader reader_;
+ scoped_ptr<BufferedSocketWriter> writer_;
+
+ DISALLOW_COPY_AND_ASSIGN(StreamMessagePipeAdapter);
+};
+
+} // namespace protocol
+} // namespace remoting
+
+#endif // REMOTING_PROTOCOL_STREAM_MESSAGE_PIPE_ADAPTER_H_
« no previous file with comments | « remoting/protocol/message_pipe.h ('k') | remoting/protocol/stream_message_pipe_adapter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698