diff options
author | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-10 00:22:35 +0000 |
---|---|---|
committer | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-10 00:22:35 +0000 |
commit | cc6fe33b63fcd89a1ece028f2ab6cc5e1d8b8022 (patch) | |
tree | 34a71c51cfa353206ae6396d0595832c3889bc8b /base/time_mac.cc | |
parent | 21109574d203fea7e3f4490beadcb76eb62645b6 (diff) | |
download | chromium_src-cc6fe33b63fcd89a1ece028f2ab6cc5e1d8b8022.zip chromium_src-cc6fe33b63fcd89a1ece028f2ab6cc5e1d8b8022.tar.gz chromium_src-cc6fe33b63fcd89a1ece028f2ab6cc5e1d8b8022.tar.bz2 |
Fix POSIX and Mac Time::Explode().
Also add a test for the case that failed.
BUG=109437,109465
Review URL: http://codereview.chromium.org/9124016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116969 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/time_mac.cc')
-rw-r--r-- | base/time_mac.cc | 28 |
1 files changed, 20 insertions, 8 deletions
diff --git a/base/time_mac.cc b/base/time_mac.cc index 25cf037..da17e28 100644 --- a/base/time_mac.cc +++ b/base/time_mac.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -79,23 +79,35 @@ Time Time::FromExploded(bool is_local, const Exploded& exploded) { } void Time::Explode(bool is_local, Exploded* exploded) const { - CFAbsoluteTime seconds = - ((static_cast<double>(us_) - kWindowsEpochDeltaMicroseconds) / - kMicrosecondsPerSecond) - kCFAbsoluteTimeIntervalSince1970; + // Avoid rounding issues, by only putting the integral number of seconds + // (rounded towards -infinity) into a |CFAbsoluteTime| (which is a |double|). + int64 microsecond = us_ % kMicrosecondsPerSecond; + if (microsecond < 0) + microsecond += kMicrosecondsPerSecond; + CFAbsoluteTime seconds = ((us_ - microsecond) / kMicrosecondsPerSecond) - + kWindowsEpochDeltaSeconds - + kCFAbsoluteTimeIntervalSince1970; base::mac::ScopedCFTypeRef<CFTimeZoneRef> time_zone(is_local ? CFTimeZoneCopySystem() : NULL); CFGregorianDate date = CFAbsoluteTimeGetGregorianDate(seconds, time_zone); + // 1 = Monday, ..., 7 = Sunday. + int cf_day_of_week = CFAbsoluteTimeGetDayOfWeek(seconds, time_zone); exploded->year = date.year; exploded->month = date.month; + exploded->day_of_week = (cf_day_of_week == 7) ? 0 : cf_day_of_week - 1; exploded->day_of_month = date.day; exploded->hour = date.hour; exploded->minute = date.minute; - exploded->second = date.second; - exploded->millisecond = - static_cast<int>(date.second * kMillisecondsPerSecond) % - kMillisecondsPerSecond; + // Make sure seconds are rounded down towards -infinity. + exploded->second = floor(date.second); + // Calculate milliseconds ourselves, since we rounded the |seconds|, making + // sure to round towards -infinity. + exploded->millisecond = + (microsecond >= 0) ? microsecond / kMicrosecondsPerMillisecond : + (microsecond - kMicrosecondsPerMillisecond + 1) / + kMicrosecondsPerMillisecond; } // TimeTicks ------------------------------------------------------------------ |