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

Unified Diff: metrics_daemon_main.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: Use a (probably) better stat file 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
« metrics_daemon.cc ('K') | « metrics_daemon.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: metrics_daemon_main.cc
diff --git a/metrics_daemon_main.cc b/metrics_daemon_main.cc
index 899256cffccbd6948d2699b4b12ebbfbff5951fc..2d3628a3cce4070075d9abdb1fe6f2138e7211ff 100644
--- a/metrics_daemon_main.cc
+++ b/metrics_daemon_main.cc
@@ -3,20 +3,38 @@
// found in the LICENSE file.
+#include <base/logging.h>
#include <gflags/gflags.h>
+#include <rootdev/rootdev.h>
#include "metrics_daemon.h"
DEFINE_bool(daemon, true, "run as daemon (use -nodaemon for debugging)");
-// Path to disk stats. This may be system dependent.
-const char kMetricsMainDiskStatsPath[] = "/sys/class/block/sda/stat";
+// Return the path to the disk stats in the sysfs.
+static
+const std::string MetricsMainDiskStatsPath() {
+ char dev_path[PATH_MAX];
+ int ret = rootdev(dev_path, sizeof(dev_path), true, true);
+ if (ret != 0) {
+ LOG(WARNING) << "error " << ret << " determining root device";
+ return "";
+ }
+ if (strcmp(dev_path, "/dev/sda") == 0) {
petkov 2011/02/18 04:52:00 this is probably ok as is... just a suggestion tho
+ return "/sys/class/block/sda/stat";
+ } else if (strcmp(dev_path, "/dev/mmcblk0") == 0) {
+ return "/sys/class/block/mmcblk0/stat";
+ } else {
+ LOG(WARNING) << "unknown root device " << dev_path;
+ return "";
+ }
+}
int main(int argc, char** argv) {
google::ParseCommandLineFlags(&argc, &argv, true);
MetricsLibrary metrics_lib;
metrics_lib.Init();
MetricsDaemon daemon;
- daemon.Init(false, &metrics_lib, kMetricsMainDiskStatsPath);
+ daemon.Init(false, &metrics_lib, MetricsMainDiskStatsPath());
daemon.Run(FLAGS_daemon);
}
« metrics_daemon.cc ('K') | « metrics_daemon.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698