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

Unified Diff: remoting/protocol/named_message_pipe_handler.cc

Issue 2907073003: [Chromoting] Add DataChannelManager to manage optional incoming data channels (Closed)
Patch Set: Fix test failure without DCHECK Created 3 years, 6 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/named_message_pipe_handler.h ('k') | remoting/protocol/webrtc_data_stream_adapter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/named_message_pipe_handler.cc
diff --git a/remoting/protocol/named_message_pipe_handler.cc b/remoting/protocol/named_message_pipe_handler.cc
new file mode 100644
index 0000000000000000000000000000000000000000..4741d57a02244ae5ff56db52e532010102b32cb1
--- /dev/null
+++ b/remoting/protocol/named_message_pipe_handler.cc
@@ -0,0 +1,69 @@
+// Copyright 2017 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 "remoting/protocol/named_message_pipe_handler.h"
+
+#include <utility>
+
+#include "base/location.h"
+#include "base/logging.h"
+#include "base/threading/thread_task_runner_handle.h"
+#include "remoting/base/compound_buffer.h"
+
+namespace remoting {
+namespace protocol {
+
+NamedMessagePipeHandler::NamedMessagePipeHandler(
+ const std::string& name,
+ std::unique_ptr<MessagePipe> pipe)
+ : name_(name),
+ pipe_(std::move(pipe)) {
+ DCHECK(pipe_);
+ pipe_->Start(this);
+}
+
+NamedMessagePipeHandler::~NamedMessagePipeHandler() = default;
+
+void NamedMessagePipeHandler::Close() {
+ DCHECK(thread_checker_.CalledOnValidThread());
+ if (connected()) {
+ OnDisconnecting();
+ is_connected_ = false;
+ }
+ delete this;
+}
+
+void NamedMessagePipeHandler::Send(google::protobuf::MessageLite* message,
+ const base::Closure& done) {
+ DCHECK(thread_checker_.CalledOnValidThread());
+ DCHECK(connected());
+ pipe_->Send(message, done);
+}
+
+void NamedMessagePipeHandler::OnIncomingMessage(
+ std::unique_ptr<CompoundBuffer> message) {}
+
+void NamedMessagePipeHandler::OnConnected() {}
+
+void NamedMessagePipeHandler::OnDisconnecting() {}
+
+void NamedMessagePipeHandler::OnMessagePipeOpen() {
+ DCHECK(thread_checker_.CalledOnValidThread());
+ DCHECK(!is_connected_);
+ is_connected_ = true;
+ OnConnected();
+}
+
+void NamedMessagePipeHandler::OnMessageReceived(
+ std::unique_ptr<CompoundBuffer> message) {
+ DCHECK(thread_checker_.CalledOnValidThread());
+ OnIncomingMessage(std::move(message));
+}
+
+void NamedMessagePipeHandler::OnMessagePipeClosed() {
+ Close();
+}
+
+} // namespace protocol
+} // namespace remoting
« no previous file with comments | « remoting/protocol/named_message_pipe_handler.h ('k') | remoting/protocol/webrtc_data_stream_adapter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698