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

Unified Diff: remoting/host/process_stats_sender.h

Issue 2775983003: [Chromoting] Retrieve process resource usage (ProcessStats) and its tests (Closed)
Patch Set: thread_checker_ should be correctly constructed Created 3 years, 8 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/host/process_stats_agent.h ('k') | remoting/host/process_stats_sender.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/process_stats_sender.h
diff --git a/remoting/host/process_stats_sender.h b/remoting/host/process_stats_sender.h
new file mode 100644
index 0000000000000000000000000000000000000000..c33af89c6fdbdf24f6a4f18fb6690d4a70750f88
--- /dev/null
+++ b/remoting/host/process_stats_sender.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_HOST_PROCESS_STATS_SENDER_H_
+#define REMOTING_HOST_PROCESS_STATS_SENDER_H_
+
+#include <initializer_list>
+#include <vector>
+
+#include "base/threading/thread_checker.h"
+#include "base/time/time.h"
+#include "base/timer/timer.h"
+#include "remoting/proto/process_stats.pb.h"
+#include "remoting/protocol/process_stats_stub.h"
+
+namespace remoting {
+
+class ProcessStatsAgent;
+
+// A component to report process statistic data regularly, it starts immediately
+// after construction, and stops after destruction.
+// All public functions, including constructor and destructor of the object of
+// ProcessStatsSender need to be executed in a same thread.
+class ProcessStatsSender final {
+ public:
+ // ProcessStatsSender reports statistic data to |host_stats_stub| once per
+ // |interval|.
+ // ProcessStatsSender does not take the ownership of both |host_stats_stub|
+ // and |agents|. They must outlive the ProcessStatsSender object.
+ ProcessStatsSender(protocol::ProcessStatsStub* host_stats_stub,
+ base::TimeDelta interval,
+ std::initializer_list<ProcessStatsAgent*> agents);
+
+ ~ProcessStatsSender();
+ private:
+ void ReportUsage();
+
+ protocol::ProcessStatsStub* const host_stats_stub_;
+ std::vector<ProcessStatsAgent*> agents_;
+ base::RepeatingTimer timer_;
+ const base::ThreadChecker thread_checker_;
+};
+
+} // namespace remoting
+
+#endif // REMOTING_HOST_PROCESS_STATS_SENDER_H_
« no previous file with comments | « remoting/host/process_stats_agent.h ('k') | remoting/host/process_stats_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698