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

Unified Diff: remoting/protocol/client_video_stats_dispatcher.cc

Issue 2176443002: Add client and host dispatchers for video_stats channel to send video stats from host to client. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@simple_channel
Patch Set: . Created 4 years, 5 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/client_video_stats_dispatcher.h ('k') | remoting/protocol/frame_stats.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/client_video_stats_dispatcher.cc
diff --git a/remoting/protocol/client_video_stats_dispatcher.cc b/remoting/protocol/client_video_stats_dispatcher.cc
new file mode 100644
index 0000000000000000000000000000000000000000..19b49ba85c927dcda0f1a41cc0587d58040773c4
--- /dev/null
+++ b/remoting/protocol/client_video_stats_dispatcher.cc
@@ -0,0 +1,47 @@
+// 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.
+
+#include "remoting/protocol/client_video_stats_dispatcher.h"
+
+#include <utility>
+
+#include "base/bind.h"
+#include "base/callback_helpers.h"
+#include "net/socket/stream_socket.h"
+#include "remoting/base/compound_buffer.h"
+#include "remoting/proto/video_stats.pb.h"
+#include "remoting/protocol/frame_stats.h"
+#include "remoting/protocol/message_pipe.h"
+#include "remoting/protocol/message_serialization.h"
+#include "remoting/protocol/video_stats_stub.h"
+
+namespace remoting {
+namespace protocol {
+
+ClientVideoStatsDispatcher::ClientVideoStatsDispatcher(
+ const std::string& stream_name,
+ VideoStatsStub* video_stats_stub)
+ : ChannelDispatcherBase(kVideoStatsChannelNamePrefix + stream_name),
Jamie 2016/07/22 17:13:52 Did you consider passing the stream name in the pr
Sergey Ulanov 2016/07/22 17:47:47 Yes. I think it would make code more complex in ca
+ video_stats_stub_(video_stats_stub) {}
+
+ClientVideoStatsDispatcher::~ClientVideoStatsDispatcher() {}
+
+void ClientVideoStatsDispatcher::OnIncomingMessage(
+ std::unique_ptr<CompoundBuffer> message) {
+ std::unique_ptr<FrameStatsMessage> stats_proto =
+ ParseMessage<FrameStatsMessage>(message.get());
+ if (!stats_proto)
+ return;
+
+ if (!stats_proto->has_frame_id()) {
+ LOG(ERROR) << "Received invalid FrameStatsMessage.";
+ return;
+ }
+ video_stats_stub_->OnVideoFrameStats(
+ stats_proto->frame_id(),
+ HostFrameStats::FromFrameStatsMessage(*stats_proto));
+}
+
+} // namespace protocol
+} // namespace remoting
« no previous file with comments | « remoting/protocol/client_video_stats_dispatcher.h ('k') | remoting/protocol/frame_stats.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698