From 26f40c04c3ad80e2bc449990010d39d1c1b9a5f0 Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Mon, 6 Feb 2017 10:46:54 -0800 Subject: bootstat: Remove custom uptime parser in favor of elapsedRealtime. Refactored init/utils/boot_clock into base/chrono_utils. Bug: 34352037 Test: none Change-Id: Ied0c00867336b85922369d7ff37520e3d28fc61e --- bootstat/bootstat.cpp | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'bootstat/bootstat.cpp') diff --git a/bootstat/bootstat.cpp b/bootstat/bootstat.cpp index c85667e86..322add327 100644 --- a/bootstat/bootstat.cpp +++ b/bootstat/bootstat.cpp @@ -21,6 +21,7 @@ #include #include +#include #include #include #include @@ -31,6 +32,7 @@ #include #include +#include #include #include #include @@ -38,7 +40,6 @@ #include "boot_event_record_store.h" #include "histogram_logger.h" -#include "uptime_parser.h" namespace { @@ -247,7 +248,8 @@ void RecordBootComplete() { BootEventRecordStore boot_event_store; BootEventRecordStore::BootEventRecord record; - time_t uptime = bootstat::ParseUptime(); + auto uptime = std::chrono::duration_cast( + android::base::boot_clock::now().time_since_epoch()); time_t current_time_utc = time(nullptr); if (boot_event_store.GetBootEvent("last_boot_time_utc", &record)) { @@ -274,22 +276,22 @@ void RecordBootComplete() { // Log the amount of time elapsed until the device is decrypted, which // includes the variable amount of time the user takes to enter the // decryption password. - boot_event_store.AddBootEventWithValue("boot_decryption_complete", uptime); + boot_event_store.AddBootEventWithValue("boot_decryption_complete", uptime.count()); // Subtract the decryption time to normalize the boot cycle timing. - time_t boot_complete = uptime - record.second; + std::chrono::seconds boot_complete = std::chrono::seconds(uptime.count() - record.second); boot_event_store.AddBootEventWithValue(boot_complete_prefix + "_post_decrypt", - boot_complete); + boot_complete.count()); } else { boot_event_store.AddBootEventWithValue(boot_complete_prefix + "_no_encryption", - uptime); + uptime.count()); } // Record the total time from device startup to boot complete, regardless of // encryption state. - boot_event_store.AddBootEventWithValue(boot_complete_prefix, uptime); + boot_event_store.AddBootEventWithValue(boot_complete_prefix, uptime.count()); RecordInitBootTimeProp(&boot_event_store, "ro.boottime.init"); RecordInitBootTimeProp(&boot_event_store, "ro.boottime.init.selinux"); -- cgit v1.2.3