// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights // reserved. Use of this source code is governed by a BSD-style license that // can be found in the LICENSE file. #include "libcef/common/time_util.h" #include "base/ignore_result.h" #if defined(OS_WIN) #include namespace { // From MSDN, FILETIME "Contains a 64-bit value representing the number of // 100-nanosecond intervals since January 1, 1601 (UTC)." This value must // be less than 0x8000000000000000. Otherwise, the function // FileTimeToSystemTime fails. // From base/time/time_win.cc: bool CanConvertToFileTime(int64_t us) { return us >= 0 && us <= (std::numeric_limits::max() / 10); } } // namespace #endif // defined(OS_WIN) void cef_time_to_basetime(const cef_time_t& cef_time, base::Time& time) { base::Time::Exploded exploded; exploded.year = cef_time.year; exploded.month = cef_time.month; exploded.day_of_week = cef_time.day_of_week; exploded.day_of_month = cef_time.day_of_month; exploded.hour = cef_time.hour; exploded.minute = cef_time.minute; exploded.second = cef_time.second; exploded.millisecond = cef_time.millisecond; ignore_result(base::Time::FromUTCExploded(exploded, &time)); } void cef_time_from_basetime(const base::Time& time, cef_time_t& cef_time) { #if defined(OS_WIN) int64_t t = time.ToDeltaSinceWindowsEpoch().InMicroseconds(); if (!CanConvertToFileTime(t)) return; #endif base::Time::Exploded exploded; time.UTCExplode(&exploded); cef_time.year = exploded.year; cef_time.month = exploded.month; cef_time.day_of_week = exploded.day_of_week; cef_time.day_of_month = exploded.day_of_month; cef_time.hour = exploded.hour; cef_time.minute = exploded.minute; cef_time.second = exploded.second; cef_time.millisecond = exploded.millisecond; } CEF_EXPORT int cef_time_to_timet(const cef_time_t* cef_time, time_t* time) { if (!cef_time || !time) return 0; base::Time base_time; cef_time_to_basetime(*cef_time, base_time); *time = base_time.ToTimeT(); return 1; } CEF_EXPORT int cef_time_from_timet(time_t time, cef_time_t* cef_time) { if (!cef_time) return 0; base::Time base_time = base::Time::FromTimeT(time); cef_time_from_basetime(base_time, *cef_time); return 1; } CEF_EXPORT int cef_time_to_doublet(const cef_time_t* cef_time, double* time) { if (!cef_time || !time) return 0; base::Time base_time; cef_time_to_basetime(*cef_time, base_time); *time = base_time.ToDoubleT(); return 1; } CEF_EXPORT int cef_time_from_doublet(double time, cef_time_t* cef_time) { if (!cef_time) return 0; base::Time base_time = base::Time::FromDoubleT(time); cef_time_from_basetime(base_time, *cef_time); return 1; } CEF_EXPORT int cef_time_now(cef_time_t* cef_time) { if (!cef_time) return 0; base::Time base_time = base::Time::Now(); cef_time_from_basetime(base_time, *cef_time); return 1; } CEF_EXPORT int cef_time_delta(const cef_time_t* cef_time1, const cef_time_t* cef_time2, long long* delta) { if (!cef_time1 || !cef_time2 || !delta) return 0; base::Time base_time1, base_time2; cef_time_to_basetime(*cef_time1, base_time1); cef_time_to_basetime(*cef_time2, base_time2); base::TimeDelta time_delta = base_time2 - base_time1; *delta = time_delta.InMilliseconds(); return 1; }