1*5a923131SAndroid Build Coastguard Worker // 2*5a923131SAndroid Build Coastguard Worker // Copyright (C) 2013 The Android Open Source Project 3*5a923131SAndroid Build Coastguard Worker // 4*5a923131SAndroid Build Coastguard Worker // Licensed under the Apache License, Version 2.0 (the "License"); 5*5a923131SAndroid Build Coastguard Worker // you may not use this file except in compliance with the License. 6*5a923131SAndroid Build Coastguard Worker // You may obtain a copy of the License at 7*5a923131SAndroid Build Coastguard Worker // 8*5a923131SAndroid Build Coastguard Worker // http://www.apache.org/licenses/LICENSE-2.0 9*5a923131SAndroid Build Coastguard Worker // 10*5a923131SAndroid Build Coastguard Worker // Unless required by applicable law or agreed to in writing, software 11*5a923131SAndroid Build Coastguard Worker // distributed under the License is distributed on an "AS IS" BASIS, 12*5a923131SAndroid Build Coastguard Worker // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13*5a923131SAndroid Build Coastguard Worker // See the License for the specific language governing permissions and 14*5a923131SAndroid Build Coastguard Worker // limitations under the License. 15*5a923131SAndroid Build Coastguard Worker // 16*5a923131SAndroid Build Coastguard Worker 17*5a923131SAndroid Build Coastguard Worker #include "update_engine/common/clock.h" 18*5a923131SAndroid Build Coastguard Worker 19*5a923131SAndroid Build Coastguard Worker #include <time.h> 20*5a923131SAndroid Build Coastguard Worker 21*5a923131SAndroid Build Coastguard Worker namespace chromeos_update_engine { 22*5a923131SAndroid Build Coastguard Worker GetWallclockTime() const23*5a923131SAndroid Build Coastguard Workerbase::Time Clock::GetWallclockTime() const { 24*5a923131SAndroid Build Coastguard Worker return base::Time::Now(); 25*5a923131SAndroid Build Coastguard Worker } 26*5a923131SAndroid Build Coastguard Worker GetMonotonicTime() const27*5a923131SAndroid Build Coastguard Workerbase::Time Clock::GetMonotonicTime() const { 28*5a923131SAndroid Build Coastguard Worker struct timespec now_ts; 29*5a923131SAndroid Build Coastguard Worker if (clock_gettime(CLOCK_MONOTONIC_RAW, &now_ts) != 0) { 30*5a923131SAndroid Build Coastguard Worker // Avoid logging this as an error as call-sites may call this very 31*5a923131SAndroid Build Coastguard Worker // often and we don't want to fill up the disk. Note that this 32*5a923131SAndroid Build Coastguard Worker // only fails if running on ancient kernels (CLOCK_MONOTONIC_RAW 33*5a923131SAndroid Build Coastguard Worker // was added in Linux 2.6.28) so it never fails on a ChromeOS 34*5a923131SAndroid Build Coastguard Worker // device. 35*5a923131SAndroid Build Coastguard Worker return base::Time(); 36*5a923131SAndroid Build Coastguard Worker } 37*5a923131SAndroid Build Coastguard Worker struct timeval now_tv; 38*5a923131SAndroid Build Coastguard Worker now_tv.tv_sec = now_ts.tv_sec; 39*5a923131SAndroid Build Coastguard Worker now_tv.tv_usec = now_ts.tv_nsec / base::Time::kNanosecondsPerMicrosecond; 40*5a923131SAndroid Build Coastguard Worker return base::Time::FromTimeVal(now_tv); 41*5a923131SAndroid Build Coastguard Worker } 42*5a923131SAndroid Build Coastguard Worker GetBootTime() const43*5a923131SAndroid Build Coastguard Workerbase::Time Clock::GetBootTime() const { 44*5a923131SAndroid Build Coastguard Worker struct timespec now_ts; 45*5a923131SAndroid Build Coastguard Worker if (clock_gettime(CLOCK_BOOTTIME, &now_ts) != 0) { 46*5a923131SAndroid Build Coastguard Worker // Avoid logging this as an error as call-sites may call this very 47*5a923131SAndroid Build Coastguard Worker // often and we don't want to fill up the disk. Note that this 48*5a923131SAndroid Build Coastguard Worker // only fails if running on ancient kernels (CLOCK_BOOTTIME was 49*5a923131SAndroid Build Coastguard Worker // added in Linux 2.6.39) so it never fails on a ChromeOS device. 50*5a923131SAndroid Build Coastguard Worker return base::Time(); 51*5a923131SAndroid Build Coastguard Worker } 52*5a923131SAndroid Build Coastguard Worker struct timeval now_tv; 53*5a923131SAndroid Build Coastguard Worker now_tv.tv_sec = now_ts.tv_sec; 54*5a923131SAndroid Build Coastguard Worker now_tv.tv_usec = now_ts.tv_nsec / base::Time::kNanosecondsPerMicrosecond; 55*5a923131SAndroid Build Coastguard Worker return base::Time::FromTimeVal(now_tv); 56*5a923131SAndroid Build Coastguard Worker } 57*5a923131SAndroid Build Coastguard Worker 58*5a923131SAndroid Build Coastguard Worker } // namespace chromeos_update_engine 59