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

Side by Side Diff: chrome/browser/chromeos/power/cpu_data_collector.h

Issue 149973002: [chromeos/about:power] Collect cpuidle and cpufreq stats (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 6 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_CHROMEOS_POWER_CPU_DATA_COLLECTOR_H_
6 #define CHROME_BROWSER_CHROMEOS_POWER_CPU_DATA_COLLECTOR_H_
7
8 #include <deque>
9 #include <map>
10 #include <string>
11 #include <vector>
12
13 #include "base/basictypes.h"
14 #include "base/memory/weak_ptr.h"
15 #include "base/time/time.h"
16 #include "base/timer/timer.h"
17
18 namespace chromeos {
19
20 // A class to sample CPU idle state occupancy and freq state occupancy.
21 // Collects raw data from sysfs and does not convert it to percentage
22 // occupancy. As CPUs can be offline at times, or the system can be suspended at
23 // other times, it is best for the consumer of this data to calculate percentage
24 // occupancy information using suspend time data got from
Daniel Erat 2014/03/06 00:46:40 nit: delete 'got'
Siva Chandra 2014/03/06 17:56:33 Done.
25 // PowerDataCollector::system_resumed_data.
26 class CpuDataCollector {
27 public:
28 struct StateOccupancySample {
29 StateOccupancySample();
30
31 // The time when the data was sampled.
32 base::Time time;
33
34 // Indicates whether the CPU is online.
35 bool cpu_online;
36
37 // A mapping from a CPU state to time spent in that state in milliseconds.
38 // For idle state samples, the name of the state at index i in this map
39 // is the name at index i in the vector returned by cpu_idle_state_names().
40 // Similarly, for freq state occupancy, similar information is in the vector
41 // returned by cpu_freq_state_names().
42 std::map<int, int64> time_in_state;
Daniel Erat 2014/03/06 00:46:40 assuming that there aren't a bunch of states and t
Siva Chandra 2014/03/06 17:56:33 Done.
43 };
44
45 typedef std::deque<StateOccupancySample> StateOccupancySampleDeque;
46
47 const std::vector<std::string>& cpu_idle_state_names() const {
48 return cpu_idle_state_names_;
49 }
50
51 const std::vector<StateOccupancySampleDeque>& cpu_idle_state_data() const {
52 return cpu_idle_state_data_;
53 }
54
55 const std::vector<std::string>& cpu_freq_state_names() const {
56 return cpu_freq_state_names_;
57 }
58
59 const std::vector<StateOccupancySampleDeque>& cpu_freq_state_data() const {
60 return cpu_freq_state_data_;
61 }
62
63 CpuDataCollector();
64
65 void Start();
66
67 private:
68 void PostSampleCpuState();
69
70 // Samples CPU idle and CPU freq data from sysfs. This function should run on
Daniel Erat 2014/03/06 00:46:40 nit: delete extra space before 'run'
Siva Chandra 2014/03/06 17:56:33 Done.
71 // the blocking pool as reading from sysfs is a blocking task. Elements at
72 // index i in |idle_samples| and |freq_samples| correspond to the idle and
73 // freq samples of CPU i.
74 void SampleCpuStateOnBlockingPool(
75 std::vector<StateOccupancySample>* idle_samples,
76 std::vector<StateOccupancySample>* freq_samples);
77
78 // This function commits the samples read by SampleCpuStateOnBlockingPool to
79 // |cpu_idle_state_data_| and |cpu_freq_state_data_|. Since UI is the consumer
80 // of CPU idle and freq data, this function should run on the UI thread.
81 void SaveCpuStateSamplesOnUIThread(
82 const std::vector<StateOccupancySample>* idle_samples,
83 const std::vector<StateOccupancySample>* freq_samples);
84
85 base::RepeatingTimer<CpuDataCollector> timer_;
86
87 // Names of the idle states.
88 std::vector<std::string> cpu_idle_state_names_;
89
90 // The deque at index <i> in the vector corresponds to the idle state
91 // occupancy data of CPU<i>.
92 std::vector<StateOccupancySampleDeque> cpu_idle_state_data_;
93
94 // Names of the freq states.
95 std::vector<std::string> cpu_freq_state_names_;
96
97 // The deque at index <i> in the vector corresponds to the frequency state
98 // occupancy data of CPU<i>.
99 std::vector<StateOccupancySampleDeque> cpu_freq_state_data_;
100
101 // The number of CPUs on the system.
102 int cpu_count_;
103
104 base::WeakPtrFactory<CpuDataCollector> weak_ptr_factory_;
105 DISALLOW_COPY_AND_ASSIGN(CpuDataCollector);
106 };
107
108 } // namespace chromeos
109
110 #endif // CHROME_BROWSER_CHROMEOS_POWER_CPU_DATA_COLLECTOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698