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

Unified Diff: metrics_daemon.cc

Issue 6541007: Find device-dependent disk stats file, and skip disk stats if not available. (Closed) Base URL: http://git.chromium.org/git/metrics.git@master
Patch Set: Make stat path computation more general Created 9 years, 10 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
Index: metrics_daemon.cc
diff --git a/metrics_daemon.cc b/metrics_daemon.cc
index 1e15e1dde7396490d42a473d4f94074583197350..f1a3d6971931c32490312eabe0dbcef702ee649f 100644
--- a/metrics_daemon.cc
+++ b/metrics_daemon.cc
@@ -147,7 +147,7 @@ MetricsDaemon::MetricsDaemon()
user_active_(false),
usemon_interval_(0),
usemon_source_(NULL),
- diskstats_path_(NULL) {}
+ diskstats_path_() {}
petkov 2011/02/26 00:26:46 just remove this one -- implicit construction is O
MetricsDaemon::~MetricsDaemon() {
DeleteFrequencyCounters();
@@ -215,7 +215,7 @@ void MetricsDaemon::ConfigureCrashFrequencyReporter(
}
void MetricsDaemon::Init(bool testing, MetricsLibraryInterface* metrics_lib,
- const char* diskstats_path) {
+ string diskstats_path) {
testing_ = testing;
DCHECK(metrics_lib != NULL);
metrics_lib_ = metrics_lib;
@@ -243,8 +243,11 @@ void MetricsDaemon::Init(bool testing, MetricsLibraryInterface* metrics_lib,
ConfigureCrashFrequencyReporter(kMetricUserCrashesDailyName);
ConfigureCrashFrequencyReporter(kMetricUserCrashesWeeklyName);
- diskstats_path_ = diskstats_path;
- DiskStatsReporterInit();
+ // Don't attempt to collect disk stats if there is no disk stats file.
+ if (!diskstats_path.empty()) {
+ diskstats_path_ = diskstats_path;
+ DiskStatsReporterInit();
+ }
// Don't setup D-Bus and GLib in test mode.
if (testing)
@@ -541,7 +544,7 @@ void MetricsDaemon::DiskStatsReadStats(long int* read_sectors,
int nchars;
int nitems;
char line[200];
- int file = HANDLE_EINTR(open(diskstats_path_, O_RDONLY));
+ int file = HANDLE_EINTR(open(diskstats_path_.c_str(), O_RDONLY));
if (file < 0) {
PLOG(WARNING) << "cannot open " << diskstats_path_;
return;
« no previous file with comments | « metrics_daemon.h ('k') | metrics_daemon_main.cc » ('j') | metrics_daemon_main.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698