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

Unified Diff: remoting/protocol/data_channel_manager.h

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/BUILD.gn ('k') | remoting/protocol/data_channel_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/data_channel_manager.h
diff --git a/remoting/protocol/data_channel_manager.h b/remoting/protocol/data_channel_manager.h
new file mode 100644
index 0000000000000000000000000000000000000000..32b0198b936347d9014800024b132bc59cce7a89
--- /dev/null
+++ b/remoting/protocol/data_channel_manager.h
@@ -0,0 +1,47 @@
+// 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.
+
+#ifndef REMOTING_PROTOCOL_DATA_CHANNEL_MANAGER_H_
+#define REMOTING_PROTOCOL_DATA_CHANNEL_MANAGER_H_
+
+#include <memory>
+#include <string>
+#include <vector>
+
+#include "base/callback.h"
+
+namespace remoting {
+namespace protocol {
+
+class MessagePipe;
+
+// DataChannelManager helps to manage optional data channels. Consumers can
+// register a function to handle data from a named data channel.
+class DataChannelManager final {
+ public:
+ using CreateHandlerCallback = base::Callback<void(
+ const std::string& name,
+ std::unique_ptr<MessagePipe> pipe)>;
+
+ DataChannelManager();
+ ~DataChannelManager();
+
+ // Registers a factory function to handle a new incoming data channel with a
+ // name matching |prefix|. Both |constructor| and |prefix| cannot be empty.
+ void RegisterCreateHandlerCallback(const std::string& prefix,
+ CreateHandlerCallback constructor);
+
+ // Executes the registered callback to handle the new incoming data channel.
+ // Returns true if a handler of the new data channel has been executed.
+ bool OnIncomingDataChannel(const std::string& name,
+ std::unique_ptr<MessagePipe> pipe);
+
+ private:
+ std::vector<std::pair<std::string, CreateHandlerCallback>> constructors_;
+};
+
+} // namespace protocol
+} // namespace remoting
+
+#endif // REMOTING_PROTOCOL_DATA_CHANNEL_MANAGER_H_
« no previous file with comments | « remoting/protocol/BUILD.gn ('k') | remoting/protocol/data_channel_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698