time_posix.cc revision 58d02015f8788a79b322c58d4bdbc914e4c333dc
1// Copyright (c) 2010 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "base/time.h"
6
7#include <sys/time.h>
8#include <time.h>
9
10#include <limits>
11
12#include "base/basictypes.h"
13#include "base/logging.h"
14
15namespace base {
16
17#if !defined(OS_MACOSX)
18// The Time routines in this file use standard POSIX routines, or almost-
19// standard routines in the case of timegm.  We need to use a Mach-specific
20// function for TimeTicks::Now() on Mac OS X.
21
22// Time -----------------------------------------------------------------------
23
24// Windows uses a Gregorian epoch of 1601.  We need to match this internally
25// so that our time representations match across all platforms.  See bug 14734.
26//   irb(main):010:0> Time.at(0).getutc()
27//   => Thu Jan 01 00:00:00 UTC 1970
28//   irb(main):011:0> Time.at(-11644473600).getutc()
29//   => Mon Jan 01 00:00:00 UTC 1601
30static const int64 kWindowsEpochDeltaSeconds = GG_INT64_C(11644473600);
31static const int64 kWindowsEpochDeltaMilliseconds =
32    kWindowsEpochDeltaSeconds * Time::kMillisecondsPerSecond;
33
34// static
35const int64 Time::kWindowsEpochDeltaMicroseconds =
36    kWindowsEpochDeltaSeconds * Time::kMicrosecondsPerSecond;
37
38// Some functions in time.cc use time_t directly, so we provide an offset
39// to convert from time_t (Unix epoch) and internal (Windows epoch).
40// static
41const int64 Time::kTimeTToMicrosecondsOffset = kWindowsEpochDeltaMicroseconds;
42
43// static
44Time Time::Now() {
45  struct timeval tv;
46  struct timezone tz = { 0, 0 };  // UTC
47  if (gettimeofday(&tv, &tz) != 0) {
48    DCHECK(0) << "Could not determine time of day";
49  }
50  // Combine seconds and microseconds in a 64-bit field containing microseconds
51  // since the epoch.  That's enough for nearly 600 centuries.  Adjust from
52  // Unix (1970) to Windows (1601) epoch.
53  return Time((tv.tv_sec * kMicrosecondsPerSecond + tv.tv_usec) +
54      kWindowsEpochDeltaMicroseconds);
55}
56
57// static
58Time Time::NowFromSystemTime() {
59  // Just use Now() because Now() returns the system time.
60  return Now();
61}
62
63// static
64Time Time::FromExploded(bool is_local, const Exploded& exploded) {
65  struct tm timestruct;
66  timestruct.tm_sec    = exploded.second;
67  timestruct.tm_min    = exploded.minute;
68  timestruct.tm_hour   = exploded.hour;
69  timestruct.tm_mday   = exploded.day_of_month;
70  timestruct.tm_mon    = exploded.month - 1;
71  timestruct.tm_year   = exploded.year - 1900;
72  timestruct.tm_wday   = exploded.day_of_week;  // mktime/timegm ignore this
73  timestruct.tm_yday   = 0;     // mktime/timegm ignore this
74  timestruct.tm_isdst  = -1;    // attempt to figure it out
75  timestruct.tm_gmtoff = 0;     // not a POSIX field, so mktime/timegm ignore
76  timestruct.tm_zone   = NULL;  // not a POSIX field, so mktime/timegm ignore
77
78  time_t seconds;
79  if (is_local)
80    seconds = mktime(&timestruct);
81  else
82#ifdef ANDROID
83    // TODO: Fix in bionic
84    seconds = mktime(&timestruct);
85#else
86    seconds = timegm(&timestruct);
87#endif
88
89  int64 milliseconds;
90  // Handle overflow.  Clamping the range to what mktime and timegm might
91  // return is the best that can be done here.  It's not ideal, but it's better
92  // than failing here or ignoring the overflow case and treating each time
93  // overflow as one second prior to the epoch.
94  if (seconds == -1 &&
95      (exploded.year < 1969 || exploded.year > 1970)) {
96    // If exploded.year is 1969 or 1970, take -1 as correct, with the
97    // time indicating 1 second prior to the epoch.  (1970 is allowed to handle
98    // time zone and DST offsets.)  Otherwise, return the most future or past
99    // time representable.  Assumes the time_t epoch is 1970-01-01 00:00:00 UTC.
100    //
101    // The minimum and maximum representible times that mktime and timegm could
102    // return are used here instead of values outside that range to allow for
103    // proper round-tripping between exploded and counter-type time
104    // representations in the presence of possible truncation to time_t by
105    // division and use with other functions that accept time_t.
106    //
107    // When representing the most distant time in the future, add in an extra
108    // 999ms to avoid the time being less than any other possible value that
109    // this function can return.
110    if (exploded.year < 1969) {
111      milliseconds = std::numeric_limits<time_t>::min() *
112                     kMillisecondsPerSecond;
113    } else {
114      milliseconds = (std::numeric_limits<time_t>::max() *
115                      kMillisecondsPerSecond) +
116                     kMillisecondsPerSecond - 1;
117    }
118  } else {
119    milliseconds = seconds * kMillisecondsPerSecond + exploded.millisecond;
120  }
121
122  // Adjust from Unix (1970) to Windows (1601) epoch.
123  return Time((milliseconds * kMicrosecondsPerMillisecond) +
124      kWindowsEpochDeltaMicroseconds);
125}
126
127void Time::Explode(bool is_local, Exploded* exploded) const {
128  // Time stores times with microsecond resolution, but Exploded only carries
129  // millisecond resolution, so begin by being lossy.  Adjust from Windows
130  // epoch (1601) to Unix epoch (1970);
131  int64 milliseconds = (us_ - kWindowsEpochDeltaMicroseconds) /
132      kMicrosecondsPerMillisecond;
133  time_t seconds = milliseconds / kMillisecondsPerSecond;
134
135  struct tm timestruct;
136  if (is_local)
137    localtime_r(&seconds, &timestruct);
138  else
139    gmtime_r(&seconds, &timestruct);
140
141  exploded->year         = timestruct.tm_year + 1900;
142  exploded->month        = timestruct.tm_mon + 1;
143  exploded->day_of_week  = timestruct.tm_wday;
144  exploded->day_of_month = timestruct.tm_mday;
145  exploded->hour         = timestruct.tm_hour;
146  exploded->minute       = timestruct.tm_min;
147  exploded->second       = timestruct.tm_sec;
148  exploded->millisecond  = milliseconds % kMillisecondsPerSecond;
149}
150
151// TimeTicks ------------------------------------------------------------------
152// FreeBSD 6 has CLOCK_MONOLITHIC but defines _POSIX_MONOTONIC_CLOCK to -1.
153#if (defined(OS_POSIX) &&                                               \
154     defined(_POSIX_MONOTONIC_CLOCK) && _POSIX_MONOTONIC_CLOCK >= 0) || \
155     defined(OS_FREEBSD) || defined(OS_OPENBSD) || defined(ANDROID)
156
157// static
158TimeTicks TimeTicks::Now() {
159  uint64_t absolute_micro;
160
161  struct timespec ts;
162  if (clock_gettime(CLOCK_MONOTONIC, &ts) != 0) {
163    NOTREACHED() << "clock_gettime(CLOCK_MONOTONIC) failed.";
164    return TimeTicks();
165  }
166
167  absolute_micro =
168      (static_cast<int64>(ts.tv_sec) * Time::kMicrosecondsPerSecond) +
169      (static_cast<int64>(ts.tv_nsec) / Time::kNanosecondsPerMicrosecond);
170
171  return TimeTicks(absolute_micro);
172}
173
174#else  // _POSIX_MONOTONIC_CLOCK
175#error No usable tick clock function on this platform.
176#endif  // _POSIX_MONOTONIC_CLOCK
177
178// static
179TimeTicks TimeTicks::HighResNow() {
180  return Now();
181}
182
183#endif  // !OS_MACOSX
184
185struct timespec TimeDelta::ToTimeSpec() const {
186  int64 microseconds = InMicroseconds();
187  time_t seconds = 0;
188  if (microseconds >= Time::kMicrosecondsPerSecond) {
189    seconds = InSeconds();
190    microseconds -= seconds * Time::kMicrosecondsPerSecond;
191  }
192  struct timespec result =
193      {seconds,
194       microseconds * Time::kNanosecondsPerMicrosecond};
195  return result;
196}
197
198struct timeval Time::ToTimeVal() const {
199  struct timeval result;
200  int64 us = us_ - kTimeTToMicrosecondsOffset;
201  result.tv_sec = us / Time::kMicrosecondsPerSecond;
202  result.tv_usec = us % Time::kMicrosecondsPerSecond;
203  return result;
204}
205
206}  // namespace base
207