1 // Copyright 2017 The Abseil Authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // https://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 //
15 // -----------------------------------------------------------------------------
16 // File: time.h
17 // -----------------------------------------------------------------------------
18 //
19 // This header file defines abstractions for computing with absolute points
20 // in time, durations of time, and formatting and parsing time within a given
21 // time zone. The following abstractions are defined:
22 //
23 // * `absl::Time` defines an absolute, specific instance in time
24 // * `absl::Duration` defines a signed, fixed-length span of time
25 // * `absl::TimeZone` defines geopolitical time zone regions (as collected
26 // within the IANA Time Zone database (https://www.iana.org/time-zones)).
27 //
28 // Note: Absolute times are distinct from civil times, which refer to the
29 // human-scale time commonly represented by `YYYY-MM-DD hh:mm:ss`. The mapping
30 // between absolute and civil times can be specified by use of time zones
31 // (`absl::TimeZone` within this API). That is:
32 //
33 // Civil Time = F(Absolute Time, Time Zone)
34 // Absolute Time = G(Civil Time, Time Zone)
35 //
36 // See civil_time.h for abstractions related to constructing and manipulating
37 // civil time.
38 //
39 // Example:
40 //
41 // absl::TimeZone nyc;
42 // // LoadTimeZone() may fail so it's always better to check for success.
43 // if (!absl::LoadTimeZone("America/New_York", &nyc)) {
44 // // handle error case
45 // }
46 //
47 // // My flight leaves NYC on Jan 2, 2017 at 03:04:05
48 // absl::CivilSecond cs(2017, 1, 2, 3, 4, 5);
49 // absl::Time takeoff = absl::FromCivil(cs, nyc);
50 //
51 // absl::Duration flight_duration = absl::Hours(21) + absl::Minutes(35);
52 // absl::Time landing = takeoff + flight_duration;
53 //
54 // absl::TimeZone syd;
55 // if (!absl::LoadTimeZone("Australia/Sydney", &syd)) {
56 // // handle error case
57 // }
58 // std::string s = absl::FormatTime(
59 // "My flight will land in Sydney on %Y-%m-%d at %H:%M:%S",
60 // landing, syd);
61
62 #ifndef ABSL_TIME_TIME_H_
63 #define ABSL_TIME_TIME_H_
64
65 #if !defined(_MSC_VER)
66 #include <sys/time.h>
67 #else
68 // We don't include `winsock2.h` because it drags in `windows.h` and friends,
69 // and they define conflicting macros like OPAQUE, ERROR, and more. This has the
70 // potential to break Abseil users.
71 //
72 // Instead we only forward declare `timeval` and require Windows users include
73 // `winsock2.h` themselves. This is both inconsistent and troublesome, but so is
74 // including 'windows.h' so we are picking the lesser of two evils here.
75 struct timeval;
76 #endif
77 #include <chrono> // NOLINT(build/c++11)
78 #include <cmath>
79 #include <cstdint>
80 #include <ctime>
81 #include <ostream>
82 #include <string>
83 #include <type_traits>
84 #include <utility>
85
86 #include "absl/base/macros.h"
87 #include "absl/strings/string_view.h"
88 #include "absl/time/civil_time.h"
89 #include "absl/time/internal/cctz/include/cctz/time_zone.h"
90
91 namespace absl {
92 ABSL_NAMESPACE_BEGIN
93
94 class Duration; // Defined below
95 class Time; // Defined below
96 class TimeZone; // Defined below
97
98 namespace time_internal {
99 int64_t IDivDuration(bool satq, Duration num, Duration den, Duration* rem);
100 constexpr Time FromUnixDuration(Duration d);
101 constexpr Duration ToUnixDuration(Time t);
102 constexpr int64_t GetRepHi(Duration d);
103 constexpr uint32_t GetRepLo(Duration d);
104 constexpr Duration MakeDuration(int64_t hi, uint32_t lo);
105 constexpr Duration MakeDuration(int64_t hi, int64_t lo);
106 inline Duration MakePosDoubleDuration(double n);
107 constexpr int64_t kTicksPerNanosecond = 4;
108 constexpr int64_t kTicksPerSecond = 1000 * 1000 * 1000 * kTicksPerNanosecond;
109 template <std::intmax_t N>
110 constexpr Duration FromInt64(int64_t v, std::ratio<1, N>);
111 constexpr Duration FromInt64(int64_t v, std::ratio<60>);
112 constexpr Duration FromInt64(int64_t v, std::ratio<3600>);
113 template <typename T>
114 using EnableIfIntegral = typename std::enable_if<
115 std::is_integral<T>::value || std::is_enum<T>::value, int>::type;
116 template <typename T>
117 using EnableIfFloat =
118 typename std::enable_if<std::is_floating_point<T>::value, int>::type;
119 } // namespace time_internal
120
121 // Duration
122 //
123 // The `absl::Duration` class represents a signed, fixed-length span of time.
124 // A `Duration` is generated using a unit-specific factory function, or is
125 // the result of subtracting one `absl::Time` from another. Durations behave
126 // like unit-safe integers and they support all the natural integer-like
127 // arithmetic operations. Arithmetic overflows and saturates at +/- infinity.
128 // `Duration` should be passed by value rather than const reference.
129 //
130 // Factory functions `Nanoseconds()`, `Microseconds()`, `Milliseconds()`,
131 // `Seconds()`, `Minutes()`, `Hours()` and `InfiniteDuration()` allow for
132 // creation of constexpr `Duration` values
133 //
134 // Examples:
135 //
136 // constexpr absl::Duration ten_ns = absl::Nanoseconds(10);
137 // constexpr absl::Duration min = absl::Minutes(1);
138 // constexpr absl::Duration hour = absl::Hours(1);
139 // absl::Duration dur = 60 * min; // dur == hour
140 // absl::Duration half_sec = absl::Milliseconds(500);
141 // absl::Duration quarter_sec = 0.25 * absl::Seconds(1);
142 //
143 // `Duration` values can be easily converted to an integral number of units
144 // using the division operator.
145 //
146 // Example:
147 //
148 // constexpr absl::Duration dur = absl::Milliseconds(1500);
149 // int64_t ns = dur / absl::Nanoseconds(1); // ns == 1500000000
150 // int64_t ms = dur / absl::Milliseconds(1); // ms == 1500
151 // int64_t sec = dur / absl::Seconds(1); // sec == 1 (subseconds truncated)
152 // int64_t min = dur / absl::Minutes(1); // min == 0
153 //
154 // See the `IDivDuration()` and `FDivDuration()` functions below for details on
155 // how to access the fractional parts of the quotient.
156 //
157 // Alternatively, conversions can be performed using helpers such as
158 // `ToInt64Microseconds()` and `ToDoubleSeconds()`.
159 class Duration {
160 public:
161 // Value semantics.
Duration()162 constexpr Duration() : rep_hi_(0), rep_lo_(0) {} // zero-length duration
163
164 // Copyable.
165 #if !defined(__clang__) && defined(_MSC_VER) && _MSC_VER < 1910
166 // Explicitly defining the constexpr copy constructor avoids an MSVC bug.
Duration(const Duration & d)167 constexpr Duration(const Duration& d)
168 : rep_hi_(d.rep_hi_), rep_lo_(d.rep_lo_) {}
169 #else
170 constexpr Duration(const Duration& d) = default;
171 #endif
172 Duration& operator=(const Duration& d) = default;
173
174 // Compound assignment operators.
175 Duration& operator+=(Duration d);
176 Duration& operator-=(Duration d);
177 Duration& operator*=(int64_t r);
178 Duration& operator*=(double r);
179 Duration& operator/=(int64_t r);
180 Duration& operator/=(double r);
181 Duration& operator%=(Duration rhs);
182
183 // Overloads that forward to either the int64_t or double overloads above.
184 // Integer operands must be representable as int64_t.
185 template <typename T, time_internal::EnableIfIntegral<T> = 0>
186 Duration& operator*=(T r) {
187 int64_t x = r;
188 return *this *= x;
189 }
190
191 template <typename T, time_internal::EnableIfIntegral<T> = 0>
192 Duration& operator/=(T r) {
193 int64_t x = r;
194 return *this /= x;
195 }
196
197 template <typename T, time_internal::EnableIfFloat<T> = 0>
198 Duration& operator*=(T r) {
199 double x = r;
200 return *this *= x;
201 }
202
203 template <typename T, time_internal::EnableIfFloat<T> = 0>
204 Duration& operator/=(T r) {
205 double x = r;
206 return *this /= x;
207 }
208
209 template <typename H>
AbslHashValue(H h,Duration d)210 friend H AbslHashValue(H h, Duration d) {
211 return H::combine(std::move(h), d.rep_hi_, d.rep_lo_);
212 }
213
214 private:
215 friend constexpr int64_t time_internal::GetRepHi(Duration d);
216 friend constexpr uint32_t time_internal::GetRepLo(Duration d);
217 friend constexpr Duration time_internal::MakeDuration(int64_t hi,
218 uint32_t lo);
Duration(int64_t hi,uint32_t lo)219 constexpr Duration(int64_t hi, uint32_t lo) : rep_hi_(hi), rep_lo_(lo) {}
220 int64_t rep_hi_;
221 uint32_t rep_lo_;
222 };
223
224 // Relational Operators
225 constexpr bool operator<(Duration lhs, Duration rhs);
226 constexpr bool operator>(Duration lhs, Duration rhs) { return rhs < lhs; }
227 constexpr bool operator>=(Duration lhs, Duration rhs) { return !(lhs < rhs); }
228 constexpr bool operator<=(Duration lhs, Duration rhs) { return !(rhs < lhs); }
229 constexpr bool operator==(Duration lhs, Duration rhs);
230 constexpr bool operator!=(Duration lhs, Duration rhs) { return !(lhs == rhs); }
231
232 // Additive Operators
233 constexpr Duration operator-(Duration d);
234 inline Duration operator+(Duration lhs, Duration rhs) { return lhs += rhs; }
235 inline Duration operator-(Duration lhs, Duration rhs) { return lhs -= rhs; }
236
237 // Multiplicative Operators
238 // Integer operands must be representable as int64_t.
239 template <typename T>
240 Duration operator*(Duration lhs, T rhs) {
241 return lhs *= rhs;
242 }
243 template <typename T>
244 Duration operator*(T lhs, Duration rhs) {
245 return rhs *= lhs;
246 }
247 template <typename T>
248 Duration operator/(Duration lhs, T rhs) {
249 return lhs /= rhs;
250 }
251 inline int64_t operator/(Duration lhs, Duration rhs) {
252 return time_internal::IDivDuration(true, lhs, rhs,
253 &lhs); // trunc towards zero
254 }
255 inline Duration operator%(Duration lhs, Duration rhs) { return lhs %= rhs; }
256
257 // IDivDuration()
258 //
259 // Divides a numerator `Duration` by a denominator `Duration`, returning the
260 // quotient and remainder. The remainder always has the same sign as the
261 // numerator. The returned quotient and remainder respect the identity:
262 //
263 // numerator = denominator * quotient + remainder
264 //
265 // Returned quotients are capped to the range of `int64_t`, with the difference
266 // spilling into the remainder to uphold the above identity. This means that the
267 // remainder returned could differ from the remainder returned by
268 // `Duration::operator%` for huge quotients.
269 //
270 // See also the notes on `InfiniteDuration()` below regarding the behavior of
271 // division involving zero and infinite durations.
272 //
273 // Example:
274 //
275 // constexpr absl::Duration a =
276 // absl::Seconds(std::numeric_limits<int64_t>::max()); // big
277 // constexpr absl::Duration b = absl::Nanoseconds(1); // small
278 //
279 // absl::Duration rem = a % b;
280 // // rem == absl::ZeroDuration()
281 //
282 // // Here, q would overflow int64_t, so rem accounts for the difference.
283 // int64_t q = absl::IDivDuration(a, b, &rem);
284 // // q == std::numeric_limits<int64_t>::max(), rem == a - b * q
IDivDuration(Duration num,Duration den,Duration * rem)285 inline int64_t IDivDuration(Duration num, Duration den, Duration* rem) {
286 return time_internal::IDivDuration(true, num, den,
287 rem); // trunc towards zero
288 }
289
290 // FDivDuration()
291 //
292 // Divides a `Duration` numerator into a fractional number of units of a
293 // `Duration` denominator.
294 //
295 // See also the notes on `InfiniteDuration()` below regarding the behavior of
296 // division involving zero and infinite durations.
297 //
298 // Example:
299 //
300 // double d = absl::FDivDuration(absl::Milliseconds(1500), absl::Seconds(1));
301 // // d == 1.5
302 double FDivDuration(Duration num, Duration den);
303
304 // ZeroDuration()
305 //
306 // Returns a zero-length duration. This function behaves just like the default
307 // constructor, but the name helps make the semantics clear at call sites.
ZeroDuration()308 constexpr Duration ZeroDuration() { return Duration(); }
309
310 // AbsDuration()
311 //
312 // Returns the absolute value of a duration.
AbsDuration(Duration d)313 inline Duration AbsDuration(Duration d) {
314 return (d < ZeroDuration()) ? -d : d;
315 }
316
317 // Trunc()
318 //
319 // Truncates a duration (toward zero) to a multiple of a non-zero unit.
320 //
321 // Example:
322 //
323 // absl::Duration d = absl::Nanoseconds(123456789);
324 // absl::Duration a = absl::Trunc(d, absl::Microseconds(1)); // 123456us
325 Duration Trunc(Duration d, Duration unit);
326
327 // Floor()
328 //
329 // Floors a duration using the passed duration unit to its largest value not
330 // greater than the duration.
331 //
332 // Example:
333 //
334 // absl::Duration d = absl::Nanoseconds(123456789);
335 // absl::Duration b = absl::Floor(d, absl::Microseconds(1)); // 123456us
336 Duration Floor(Duration d, Duration unit);
337
338 // Ceil()
339 //
340 // Returns the ceiling of a duration using the passed duration unit to its
341 // smallest value not less than the duration.
342 //
343 // Example:
344 //
345 // absl::Duration d = absl::Nanoseconds(123456789);
346 // absl::Duration c = absl::Ceil(d, absl::Microseconds(1)); // 123457us
347 Duration Ceil(Duration d, Duration unit);
348
349 // InfiniteDuration()
350 //
351 // Returns an infinite `Duration`. To get a `Duration` representing negative
352 // infinity, use `-InfiniteDuration()`.
353 //
354 // Duration arithmetic overflows to +/- infinity and saturates. In general,
355 // arithmetic with `Duration` infinities is similar to IEEE 754 infinities
356 // except where IEEE 754 NaN would be involved, in which case +/-
357 // `InfiniteDuration()` is used in place of a "nan" Duration.
358 //
359 // Examples:
360 //
361 // constexpr absl::Duration inf = absl::InfiniteDuration();
362 // const absl::Duration d = ... any finite duration ...
363 //
364 // inf == inf + inf
365 // inf == inf + d
366 // inf == inf - inf
367 // -inf == d - inf
368 //
369 // inf == d * 1e100
370 // inf == inf / 2
371 // 0 == d / inf
372 // INT64_MAX == inf / d
373 //
374 // d < inf
375 // -inf < d
376 //
377 // // Division by zero returns infinity, or INT64_MIN/MAX where appropriate.
378 // inf == d / 0
379 // INT64_MAX == d / absl::ZeroDuration()
380 //
381 // The examples involving the `/` operator above also apply to `IDivDuration()`
382 // and `FDivDuration()`.
383 constexpr Duration InfiniteDuration();
384
385 // Nanoseconds()
386 // Microseconds()
387 // Milliseconds()
388 // Seconds()
389 // Minutes()
390 // Hours()
391 //
392 // Factory functions for constructing `Duration` values from an integral number
393 // of the unit indicated by the factory function's name. The number must be
394 // representable as int64_t.
395 //
396 // NOTE: no "Days()" factory function exists because "a day" is ambiguous.
397 // Civil days are not always 24 hours long, and a 24-hour duration often does
398 // not correspond with a civil day. If a 24-hour duration is needed, use
399 // `absl::Hours(24)`. If you actually want a civil day, use absl::CivilDay
400 // from civil_time.h.
401 //
402 // Example:
403 //
404 // absl::Duration a = absl::Seconds(60);
405 // absl::Duration b = absl::Minutes(1); // b == a
406 template <typename T, time_internal::EnableIfIntegral<T> = 0>
Nanoseconds(T n)407 constexpr Duration Nanoseconds(T n) {
408 return time_internal::FromInt64(n, std::nano{});
409 }
410 template <typename T, time_internal::EnableIfIntegral<T> = 0>
Microseconds(T n)411 constexpr Duration Microseconds(T n) {
412 return time_internal::FromInt64(n, std::micro{});
413 }
414 template <typename T, time_internal::EnableIfIntegral<T> = 0>
Milliseconds(T n)415 constexpr Duration Milliseconds(T n) {
416 return time_internal::FromInt64(n, std::milli{});
417 }
418 template <typename T, time_internal::EnableIfIntegral<T> = 0>
Seconds(T n)419 constexpr Duration Seconds(T n) {
420 return time_internal::FromInt64(n, std::ratio<1>{});
421 }
422 template <typename T, time_internal::EnableIfIntegral<T> = 0>
Minutes(T n)423 constexpr Duration Minutes(T n) {
424 return time_internal::FromInt64(n, std::ratio<60>{});
425 }
426 template <typename T, time_internal::EnableIfIntegral<T> = 0>
Hours(T n)427 constexpr Duration Hours(T n) {
428 return time_internal::FromInt64(n, std::ratio<3600>{});
429 }
430
431 // Factory overloads for constructing `Duration` values from a floating-point
432 // number of the unit indicated by the factory function's name. These functions
433 // exist for convenience, but they are not as efficient as the integral
434 // factories, which should be preferred.
435 //
436 // Example:
437 //
438 // auto a = absl::Seconds(1.5); // OK
439 // auto b = absl::Milliseconds(1500); // BETTER
440 template <typename T, time_internal::EnableIfFloat<T> = 0>
Nanoseconds(T n)441 Duration Nanoseconds(T n) {
442 return n * Nanoseconds(1);
443 }
444 template <typename T, time_internal::EnableIfFloat<T> = 0>
Microseconds(T n)445 Duration Microseconds(T n) {
446 return n * Microseconds(1);
447 }
448 template <typename T, time_internal::EnableIfFloat<T> = 0>
Milliseconds(T n)449 Duration Milliseconds(T n) {
450 return n * Milliseconds(1);
451 }
452 template <typename T, time_internal::EnableIfFloat<T> = 0>
Seconds(T n)453 Duration Seconds(T n) {
454 if (n >= 0) { // Note: `NaN >= 0` is false.
455 if (n >= static_cast<T>((std::numeric_limits<int64_t>::max)())) {
456 return InfiniteDuration();
457 }
458 return time_internal::MakePosDoubleDuration(n);
459 } else {
460 if (std::isnan(n))
461 return std::signbit(n) ? -InfiniteDuration() : InfiniteDuration();
462 if (n <= (std::numeric_limits<int64_t>::min)()) return -InfiniteDuration();
463 return -time_internal::MakePosDoubleDuration(-n);
464 }
465 }
466 template <typename T, time_internal::EnableIfFloat<T> = 0>
Minutes(T n)467 Duration Minutes(T n) {
468 return n * Minutes(1);
469 }
470 template <typename T, time_internal::EnableIfFloat<T> = 0>
Hours(T n)471 Duration Hours(T n) {
472 return n * Hours(1);
473 }
474
475 // ToInt64Nanoseconds()
476 // ToInt64Microseconds()
477 // ToInt64Milliseconds()
478 // ToInt64Seconds()
479 // ToInt64Minutes()
480 // ToInt64Hours()
481 //
482 // Helper functions that convert a Duration to an integral count of the
483 // indicated unit. These functions are shorthand for the `IDivDuration()`
484 // function above; see its documentation for details about overflow, etc.
485 //
486 // Example:
487 //
488 // absl::Duration d = absl::Milliseconds(1500);
489 // int64_t isec = absl::ToInt64Seconds(d); // isec == 1
490 ABSL_ATTRIBUTE_PURE_FUNCTION int64_t ToInt64Nanoseconds(Duration d);
491 ABSL_ATTRIBUTE_PURE_FUNCTION int64_t ToInt64Microseconds(Duration d);
492 ABSL_ATTRIBUTE_PURE_FUNCTION int64_t ToInt64Milliseconds(Duration d);
493 ABSL_ATTRIBUTE_PURE_FUNCTION int64_t ToInt64Seconds(Duration d);
494 ABSL_ATTRIBUTE_PURE_FUNCTION int64_t ToInt64Minutes(Duration d);
495 ABSL_ATTRIBUTE_PURE_FUNCTION int64_t ToInt64Hours(Duration d);
496
497 // ToDoubleNanoSeconds()
498 // ToDoubleMicroseconds()
499 // ToDoubleMilliseconds()
500 // ToDoubleSeconds()
501 // ToDoubleMinutes()
502 // ToDoubleHours()
503 //
504 // Helper functions that convert a Duration to a floating point count of the
505 // indicated unit. These functions are shorthand for the `FDivDuration()`
506 // function above; see its documentation for details about overflow, etc.
507 //
508 // Example:
509 //
510 // absl::Duration d = absl::Milliseconds(1500);
511 // double dsec = absl::ToDoubleSeconds(d); // dsec == 1.5
512 ABSL_ATTRIBUTE_PURE_FUNCTION double ToDoubleNanoseconds(Duration d);
513 ABSL_ATTRIBUTE_PURE_FUNCTION double ToDoubleMicroseconds(Duration d);
514 ABSL_ATTRIBUTE_PURE_FUNCTION double ToDoubleMilliseconds(Duration d);
515 ABSL_ATTRIBUTE_PURE_FUNCTION double ToDoubleSeconds(Duration d);
516 ABSL_ATTRIBUTE_PURE_FUNCTION double ToDoubleMinutes(Duration d);
517 ABSL_ATTRIBUTE_PURE_FUNCTION double ToDoubleHours(Duration d);
518
519 // FromChrono()
520 //
521 // Converts any of the pre-defined std::chrono durations to an absl::Duration.
522 //
523 // Example:
524 //
525 // std::chrono::milliseconds ms(123);
526 // absl::Duration d = absl::FromChrono(ms);
527 constexpr Duration FromChrono(const std::chrono::nanoseconds& d);
528 constexpr Duration FromChrono(const std::chrono::microseconds& d);
529 constexpr Duration FromChrono(const std::chrono::milliseconds& d);
530 constexpr Duration FromChrono(const std::chrono::seconds& d);
531 constexpr Duration FromChrono(const std::chrono::minutes& d);
532 constexpr Duration FromChrono(const std::chrono::hours& d);
533
534 // ToChronoNanoseconds()
535 // ToChronoMicroseconds()
536 // ToChronoMilliseconds()
537 // ToChronoSeconds()
538 // ToChronoMinutes()
539 // ToChronoHours()
540 //
541 // Converts an absl::Duration to any of the pre-defined std::chrono durations.
542 // If overflow would occur, the returned value will saturate at the min/max
543 // chrono duration value instead.
544 //
545 // Example:
546 //
547 // absl::Duration d = absl::Microseconds(123);
548 // auto x = absl::ToChronoMicroseconds(d);
549 // auto y = absl::ToChronoNanoseconds(d); // x == y
550 // auto z = absl::ToChronoSeconds(absl::InfiniteDuration());
551 // // z == std::chrono::seconds::max()
552 std::chrono::nanoseconds ToChronoNanoseconds(Duration d);
553 std::chrono::microseconds ToChronoMicroseconds(Duration d);
554 std::chrono::milliseconds ToChronoMilliseconds(Duration d);
555 std::chrono::seconds ToChronoSeconds(Duration d);
556 std::chrono::minutes ToChronoMinutes(Duration d);
557 std::chrono::hours ToChronoHours(Duration d);
558
559 // FormatDuration()
560 //
561 // Returns a string representing the duration in the form "72h3m0.5s".
562 // Returns "inf" or "-inf" for +/- `InfiniteDuration()`.
563 std::string FormatDuration(Duration d);
564
565 // Output stream operator.
566 inline std::ostream& operator<<(std::ostream& os, Duration d) {
567 return os << FormatDuration(d);
568 }
569
570 // ParseDuration()
571 //
572 // Parses a duration string consisting of a possibly signed sequence of
573 // decimal numbers, each with an optional fractional part and a unit
574 // suffix. The valid suffixes are "ns", "us" "ms", "s", "m", and "h".
575 // Simple examples include "300ms", "-1.5h", and "2h45m". Parses "0" as
576 // `ZeroDuration()`. Parses "inf" and "-inf" as +/- `InfiniteDuration()`.
577 bool ParseDuration(absl::string_view dur_string, Duration* d);
578
579 // AbslParseFlag()
580 //
581 // Parses a command-line flag string representation `text` into a a Duration
582 // value. Duration flags must be specified in a format that is valid input for
583 // `absl::ParseDuration()`.
584 bool AbslParseFlag(absl::string_view text, Duration* dst, std::string* error);
585
586
587 // AbslUnparseFlag()
588 //
589 // Unparses a Duration value into a command-line string representation using
590 // the format specified by `absl::ParseDuration()`.
591 std::string AbslUnparseFlag(Duration d);
592
593 ABSL_DEPRECATED("Use AbslParseFlag() instead.")
594 bool ParseFlag(const std::string& text, Duration* dst, std::string* error);
595 ABSL_DEPRECATED("Use AbslUnparseFlag() instead.")
596 std::string UnparseFlag(Duration d);
597
598 // Time
599 //
600 // An `absl::Time` represents a specific instant in time. Arithmetic operators
601 // are provided for naturally expressing time calculations. Instances are
602 // created using `absl::Now()` and the `absl::From*()` factory functions that
603 // accept the gamut of other time representations. Formatting and parsing
604 // functions are provided for conversion to and from strings. `absl::Time`
605 // should be passed by value rather than const reference.
606 //
607 // `absl::Time` assumes there are 60 seconds in a minute, which means the
608 // underlying time scales must be "smeared" to eliminate leap seconds.
609 // See https://developers.google.com/time/smear.
610 //
611 // Even though `absl::Time` supports a wide range of timestamps, exercise
612 // caution when using values in the distant past. `absl::Time` uses the
613 // Proleptic Gregorian calendar, which extends the Gregorian calendar backward
614 // to dates before its introduction in 1582.
615 // See https://en.wikipedia.org/wiki/Proleptic_Gregorian_calendar
616 // for more information. Use the ICU calendar classes to convert a date in
617 // some other calendar (http://userguide.icu-project.org/datetime/calendar).
618 //
619 // Similarly, standardized time zones are a reasonably recent innovation, with
620 // the Greenwich prime meridian being established in 1884. The TZ database
621 // itself does not profess accurate offsets for timestamps prior to 1970. The
622 // breakdown of future timestamps is subject to the whim of regional
623 // governments.
624 //
625 // The `absl::Time` class represents an instant in time as a count of clock
626 // ticks of some granularity (resolution) from some starting point (epoch).
627 //
628 // `absl::Time` uses a resolution that is high enough to avoid loss in
629 // precision, and a range that is wide enough to avoid overflow, when
630 // converting between tick counts in most Google time scales (i.e., resolution
631 // of at least one nanosecond, and range +/-100 billion years). Conversions
632 // between the time scales are performed by truncating (towards negative
633 // infinity) to the nearest representable point.
634 //
635 // Examples:
636 //
637 // absl::Time t1 = ...;
638 // absl::Time t2 = t1 + absl::Minutes(2);
639 // absl::Duration d = t2 - t1; // == absl::Minutes(2)
640 //
641 class Time {
642 public:
643 // Value semantics.
644
645 // Returns the Unix epoch. However, those reading your code may not know
646 // or expect the Unix epoch as the default value, so make your code more
647 // readable by explicitly initializing all instances before use.
648 //
649 // Example:
650 // absl::Time t = absl::UnixEpoch();
651 // absl::Time t = absl::Now();
652 // absl::Time t = absl::TimeFromTimeval(tv);
653 // absl::Time t = absl::InfinitePast();
654 constexpr Time() = default;
655
656 // Copyable.
657 constexpr Time(const Time& t) = default;
658 Time& operator=(const Time& t) = default;
659
660 // Assignment operators.
661 Time& operator+=(Duration d) {
662 rep_ += d;
663 return *this;
664 }
665 Time& operator-=(Duration d) {
666 rep_ -= d;
667 return *this;
668 }
669
670 // Time::Breakdown
671 //
672 // The calendar and wall-clock (aka "civil time") components of an
673 // `absl::Time` in a certain `absl::TimeZone`. This struct is not
674 // intended to represent an instant in time. So, rather than passing
675 // a `Time::Breakdown` to a function, pass an `absl::Time` and an
676 // `absl::TimeZone`.
677 //
678 // Deprecated. Use `absl::TimeZone::CivilInfo`.
679 struct
680 Breakdown {
681 int64_t year; // year (e.g., 2013)
682 int month; // month of year [1:12]
683 int day; // day of month [1:31]
684 int hour; // hour of day [0:23]
685 int minute; // minute of hour [0:59]
686 int second; // second of minute [0:59]
687 Duration subsecond; // [Seconds(0):Seconds(1)) if finite
688 int weekday; // 1==Mon, ..., 7=Sun
689 int yearday; // day of year [1:366]
690
691 // Note: The following fields exist for backward compatibility
692 // with older APIs. Accessing these fields directly is a sign of
693 // imprudent logic in the calling code. Modern time-related code
694 // should only access this data indirectly by way of FormatTime().
695 // These fields are undefined for InfiniteFuture() and InfinitePast().
696 int offset; // seconds east of UTC
697 bool is_dst; // is offset non-standard?
698 const char* zone_abbr; // time-zone abbreviation (e.g., "PST")
699 };
700
701 // Time::In()
702 //
703 // Returns the breakdown of this instant in the given TimeZone.
704 //
705 // Deprecated. Use `absl::TimeZone::At(Time)`.
706 Breakdown In(TimeZone tz) const;
707
708 template <typename H>
AbslHashValue(H h,Time t)709 friend H AbslHashValue(H h, Time t) {
710 return H::combine(std::move(h), t.rep_);
711 }
712
713 private:
714 friend constexpr Time time_internal::FromUnixDuration(Duration d);
715 friend constexpr Duration time_internal::ToUnixDuration(Time t);
716 friend constexpr bool operator<(Time lhs, Time rhs);
717 friend constexpr bool operator==(Time lhs, Time rhs);
718 friend Duration operator-(Time lhs, Time rhs);
719 friend constexpr Time UniversalEpoch();
720 friend constexpr Time InfiniteFuture();
721 friend constexpr Time InfinitePast();
Time(Duration rep)722 constexpr explicit Time(Duration rep) : rep_(rep) {}
723 Duration rep_;
724 };
725
726 // Relational Operators
727 constexpr bool operator<(Time lhs, Time rhs) { return lhs.rep_ < rhs.rep_; }
728 constexpr bool operator>(Time lhs, Time rhs) { return rhs < lhs; }
729 constexpr bool operator>=(Time lhs, Time rhs) { return !(lhs < rhs); }
730 constexpr bool operator<=(Time lhs, Time rhs) { return !(rhs < lhs); }
731 constexpr bool operator==(Time lhs, Time rhs) { return lhs.rep_ == rhs.rep_; }
732 constexpr bool operator!=(Time lhs, Time rhs) { return !(lhs == rhs); }
733
734 // Additive Operators
735 inline Time operator+(Time lhs, Duration rhs) { return lhs += rhs; }
736 inline Time operator+(Duration lhs, Time rhs) { return rhs += lhs; }
737 inline Time operator-(Time lhs, Duration rhs) { return lhs -= rhs; }
738 inline Duration operator-(Time lhs, Time rhs) { return lhs.rep_ - rhs.rep_; }
739
740 // UnixEpoch()
741 //
742 // Returns the `absl::Time` representing "1970-01-01 00:00:00.0 +0000".
UnixEpoch()743 constexpr Time UnixEpoch() { return Time(); }
744
745 // UniversalEpoch()
746 //
747 // Returns the `absl::Time` representing "0001-01-01 00:00:00.0 +0000", the
748 // epoch of the ICU Universal Time Scale.
UniversalEpoch()749 constexpr Time UniversalEpoch() {
750 // 719162 is the number of days from 0001-01-01 to 1970-01-01,
751 // assuming the Gregorian calendar.
752 return Time(time_internal::MakeDuration(-24 * 719162 * int64_t{3600}, 0U));
753 }
754
755 // InfiniteFuture()
756 //
757 // Returns an `absl::Time` that is infinitely far in the future.
InfiniteFuture()758 constexpr Time InfiniteFuture() {
759 return Time(
760 time_internal::MakeDuration((std::numeric_limits<int64_t>::max)(), ~0U));
761 }
762
763 // InfinitePast()
764 //
765 // Returns an `absl::Time` that is infinitely far in the past.
InfinitePast()766 constexpr Time InfinitePast() {
767 return Time(
768 time_internal::MakeDuration((std::numeric_limits<int64_t>::min)(), ~0U));
769 }
770
771 // FromUnixNanos()
772 // FromUnixMicros()
773 // FromUnixMillis()
774 // FromUnixSeconds()
775 // FromTimeT()
776 // FromUDate()
777 // FromUniversal()
778 //
779 // Creates an `absl::Time` from a variety of other representations.
780 constexpr Time FromUnixNanos(int64_t ns);
781 constexpr Time FromUnixMicros(int64_t us);
782 constexpr Time FromUnixMillis(int64_t ms);
783 constexpr Time FromUnixSeconds(int64_t s);
784 constexpr Time FromTimeT(time_t t);
785 Time FromUDate(double udate);
786 Time FromUniversal(int64_t universal);
787
788 // ToUnixNanos()
789 // ToUnixMicros()
790 // ToUnixMillis()
791 // ToUnixSeconds()
792 // ToTimeT()
793 // ToUDate()
794 // ToUniversal()
795 //
796 // Converts an `absl::Time` to a variety of other representations. Note that
797 // these operations round down toward negative infinity where necessary to
798 // adjust to the resolution of the result type. Beware of possible time_t
799 // over/underflow in ToTime{T,val,spec}() on 32-bit platforms.
800 int64_t ToUnixNanos(Time t);
801 int64_t ToUnixMicros(Time t);
802 int64_t ToUnixMillis(Time t);
803 int64_t ToUnixSeconds(Time t);
804 time_t ToTimeT(Time t);
805 double ToUDate(Time t);
806 int64_t ToUniversal(Time t);
807
808 // DurationFromTimespec()
809 // DurationFromTimeval()
810 // ToTimespec()
811 // ToTimeval()
812 // TimeFromTimespec()
813 // TimeFromTimeval()
814 // ToTimespec()
815 // ToTimeval()
816 //
817 // Some APIs use a timespec or a timeval as a Duration (e.g., nanosleep(2)
818 // and select(2)), while others use them as a Time (e.g. clock_gettime(2)
819 // and gettimeofday(2)), so conversion functions are provided for both cases.
820 // The "to timespec/val" direction is easily handled via overloading, but
821 // for "from timespec/val" the desired type is part of the function name.
822 Duration DurationFromTimespec(timespec ts);
823 Duration DurationFromTimeval(timeval tv);
824 timespec ToTimespec(Duration d);
825 timeval ToTimeval(Duration d);
826 Time TimeFromTimespec(timespec ts);
827 Time TimeFromTimeval(timeval tv);
828 timespec ToTimespec(Time t);
829 timeval ToTimeval(Time t);
830
831 // FromChrono()
832 //
833 // Converts a std::chrono::system_clock::time_point to an absl::Time.
834 //
835 // Example:
836 //
837 // auto tp = std::chrono::system_clock::from_time_t(123);
838 // absl::Time t = absl::FromChrono(tp);
839 // // t == absl::FromTimeT(123)
840 Time FromChrono(const std::chrono::system_clock::time_point& tp);
841
842 // ToChronoTime()
843 //
844 // Converts an absl::Time to a std::chrono::system_clock::time_point. If
845 // overflow would occur, the returned value will saturate at the min/max time
846 // point value instead.
847 //
848 // Example:
849 //
850 // absl::Time t = absl::FromTimeT(123);
851 // auto tp = absl::ToChronoTime(t);
852 // // tp == std::chrono::system_clock::from_time_t(123);
853 std::chrono::system_clock::time_point ToChronoTime(Time);
854
855 // AbslParseFlag()
856 //
857 // Parses the command-line flag string representation `text` into a Time value.
858 // Time flags must be specified in a format that matches absl::RFC3339_full.
859 //
860 // For example:
861 //
862 // --start_time=2016-01-02T03:04:05.678+08:00
863 //
864 // Note: A UTC offset (or 'Z' indicating a zero-offset from UTC) is required.
865 //
866 // Additionally, if you'd like to specify a time as a count of
867 // seconds/milliseconds/etc from the Unix epoch, use an absl::Duration flag
868 // and add that duration to absl::UnixEpoch() to get an absl::Time.
869 bool AbslParseFlag(absl::string_view text, Time* t, std::string* error);
870
871 // AbslUnparseFlag()
872 //
873 // Unparses a Time value into a command-line string representation using
874 // the format specified by `absl::ParseTime()`.
875 std::string AbslUnparseFlag(Time t);
876
877 ABSL_DEPRECATED("Use AbslParseFlag() instead.")
878 bool ParseFlag(const std::string& text, Time* t, std::string* error);
879 ABSL_DEPRECATED("Use AbslUnparseFlag() instead.")
880 std::string UnparseFlag(Time t);
881
882 // TimeZone
883 //
884 // The `absl::TimeZone` is an opaque, small, value-type class representing a
885 // geo-political region within which particular rules are used for converting
886 // between absolute and civil times (see https://git.io/v59Ly). `absl::TimeZone`
887 // values are named using the TZ identifiers from the IANA Time Zone Database,
888 // such as "America/Los_Angeles" or "Australia/Sydney". `absl::TimeZone` values
889 // are created from factory functions such as `absl::LoadTimeZone()`. Note:
890 // strings like "PST" and "EDT" are not valid TZ identifiers. Prefer to pass by
891 // value rather than const reference.
892 //
893 // For more on the fundamental concepts of time zones, absolute times, and civil
894 // times, see https://github.com/google/cctz#fundamental-concepts
895 //
896 // Examples:
897 //
898 // absl::TimeZone utc = absl::UTCTimeZone();
899 // absl::TimeZone pst = absl::FixedTimeZone(-8 * 60 * 60);
900 // absl::TimeZone loc = absl::LocalTimeZone();
901 // absl::TimeZone lax;
902 // if (!absl::LoadTimeZone("America/Los_Angeles", &lax)) {
903 // // handle error case
904 // }
905 //
906 // See also:
907 // - https://github.com/google/cctz
908 // - https://www.iana.org/time-zones
909 // - https://en.wikipedia.org/wiki/Zoneinfo
910 class TimeZone {
911 public:
TimeZone(time_internal::cctz::time_zone tz)912 explicit TimeZone(time_internal::cctz::time_zone tz) : cz_(tz) {}
913 TimeZone() = default; // UTC, but prefer UTCTimeZone() to be explicit.
914
915 // Copyable.
916 TimeZone(const TimeZone&) = default;
917 TimeZone& operator=(const TimeZone&) = default;
918
time_zone()919 explicit operator time_internal::cctz::time_zone() const { return cz_; }
920
name()921 std::string name() const { return cz_.name(); }
922
923 // TimeZone::CivilInfo
924 //
925 // Information about the civil time corresponding to an absolute time.
926 // This struct is not intended to represent an instant in time. So, rather
927 // than passing a `TimeZone::CivilInfo` to a function, pass an `absl::Time`
928 // and an `absl::TimeZone`.
929 struct CivilInfo {
930 CivilSecond cs;
931 Duration subsecond;
932
933 // Note: The following fields exist for backward compatibility
934 // with older APIs. Accessing these fields directly is a sign of
935 // imprudent logic in the calling code. Modern time-related code
936 // should only access this data indirectly by way of FormatTime().
937 // These fields are undefined for InfiniteFuture() and InfinitePast().
938 int offset; // seconds east of UTC
939 bool is_dst; // is offset non-standard?
940 const char* zone_abbr; // time-zone abbreviation (e.g., "PST")
941 };
942
943 // TimeZone::At(Time)
944 //
945 // Returns the civil time for this TimeZone at a certain `absl::Time`.
946 // If the input time is infinite, the output civil second will be set to
947 // CivilSecond::max() or min(), and the subsecond will be infinite.
948 //
949 // Example:
950 //
951 // const auto epoch = lax.At(absl::UnixEpoch());
952 // // epoch.cs == 1969-12-31 16:00:00
953 // // epoch.subsecond == absl::ZeroDuration()
954 // // epoch.offset == -28800
955 // // epoch.is_dst == false
956 // // epoch.abbr == "PST"
957 CivilInfo At(Time t) const;
958
959 // TimeZone::TimeInfo
960 //
961 // Information about the absolute times corresponding to a civil time.
962 // (Subseconds must be handled separately.)
963 //
964 // It is possible for a caller to pass a civil-time value that does
965 // not represent an actual or unique instant in time (due to a shift
966 // in UTC offset in the TimeZone, which results in a discontinuity in
967 // the civil-time components). For example, a daylight-saving-time
968 // transition skips or repeats civil times---in the United States,
969 // March 13, 2011 02:15 never occurred, while November 6, 2011 01:15
970 // occurred twice---so requests for such times are not well-defined.
971 // To account for these possibilities, `absl::TimeZone::TimeInfo` is
972 // richer than just a single `absl::Time`.
973 struct TimeInfo {
974 enum CivilKind {
975 UNIQUE, // the civil time was singular (pre == trans == post)
976 SKIPPED, // the civil time did not exist (pre >= trans > post)
977 REPEATED, // the civil time was ambiguous (pre < trans <= post)
978 } kind;
979 Time pre; // time calculated using the pre-transition offset
980 Time trans; // when the civil-time discontinuity occurred
981 Time post; // time calculated using the post-transition offset
982 };
983
984 // TimeZone::At(CivilSecond)
985 //
986 // Returns an `absl::TimeInfo` containing the absolute time(s) for this
987 // TimeZone at an `absl::CivilSecond`. When the civil time is skipped or
988 // repeated, returns times calculated using the pre-transition and post-
989 // transition UTC offsets, plus the transition time itself.
990 //
991 // Examples:
992 //
993 // // A unique civil time
994 // const auto jan01 = lax.At(absl::CivilSecond(2011, 1, 1, 0, 0, 0));
995 // // jan01.kind == TimeZone::TimeInfo::UNIQUE
996 // // jan01.pre is 2011-01-01 00:00:00 -0800
997 // // jan01.trans is 2011-01-01 00:00:00 -0800
998 // // jan01.post is 2011-01-01 00:00:00 -0800
999 //
1000 // // A Spring DST transition, when there is a gap in civil time
1001 // const auto mar13 = lax.At(absl::CivilSecond(2011, 3, 13, 2, 15, 0));
1002 // // mar13.kind == TimeZone::TimeInfo::SKIPPED
1003 // // mar13.pre is 2011-03-13 03:15:00 -0700
1004 // // mar13.trans is 2011-03-13 03:00:00 -0700
1005 // // mar13.post is 2011-03-13 01:15:00 -0800
1006 //
1007 // // A Fall DST transition, when civil times are repeated
1008 // const auto nov06 = lax.At(absl::CivilSecond(2011, 11, 6, 1, 15, 0));
1009 // // nov06.kind == TimeZone::TimeInfo::REPEATED
1010 // // nov06.pre is 2011-11-06 01:15:00 -0700
1011 // // nov06.trans is 2011-11-06 01:00:00 -0800
1012 // // nov06.post is 2011-11-06 01:15:00 -0800
1013 TimeInfo At(CivilSecond ct) const;
1014
1015 // TimeZone::NextTransition()
1016 // TimeZone::PrevTransition()
1017 //
1018 // Finds the time of the next/previous offset change in this time zone.
1019 //
1020 // By definition, `NextTransition(t, &trans)` returns false when `t` is
1021 // `InfiniteFuture()`, and `PrevTransition(t, &trans)` returns false
1022 // when `t` is `InfinitePast()`. If the zone has no transitions, the
1023 // result will also be false no matter what the argument.
1024 //
1025 // Otherwise, when `t` is `InfinitePast()`, `NextTransition(t, &trans)`
1026 // returns true and sets `trans` to the first recorded transition. Chains
1027 // of calls to `NextTransition()/PrevTransition()` will eventually return
1028 // false, but it is unspecified exactly when `NextTransition(t, &trans)`
1029 // jumps to false, or what time is set by `PrevTransition(t, &trans)` for
1030 // a very distant `t`.
1031 //
1032 // Note: Enumeration of time-zone transitions is for informational purposes
1033 // only. Modern time-related code should not care about when offset changes
1034 // occur.
1035 //
1036 // Example:
1037 // absl::TimeZone nyc;
1038 // if (!absl::LoadTimeZone("America/New_York", &nyc)) { ... }
1039 // const auto now = absl::Now();
1040 // auto t = absl::InfinitePast();
1041 // absl::TimeZone::CivilTransition trans;
1042 // while (t <= now && nyc.NextTransition(t, &trans)) {
1043 // // transition: trans.from -> trans.to
1044 // t = nyc.At(trans.to).trans;
1045 // }
1046 struct CivilTransition {
1047 CivilSecond from; // the civil time we jump from
1048 CivilSecond to; // the civil time we jump to
1049 };
1050 bool NextTransition(Time t, CivilTransition* trans) const;
1051 bool PrevTransition(Time t, CivilTransition* trans) const;
1052
1053 template <typename H>
AbslHashValue(H h,TimeZone tz)1054 friend H AbslHashValue(H h, TimeZone tz) {
1055 return H::combine(std::move(h), tz.cz_);
1056 }
1057
1058 private:
1059 friend bool operator==(TimeZone a, TimeZone b) { return a.cz_ == b.cz_; }
1060 friend bool operator!=(TimeZone a, TimeZone b) { return a.cz_ != b.cz_; }
1061 friend std::ostream& operator<<(std::ostream& os, TimeZone tz) {
1062 return os << tz.name();
1063 }
1064
1065 time_internal::cctz::time_zone cz_;
1066 };
1067
1068 // LoadTimeZone()
1069 //
1070 // Loads the named zone. May perform I/O on the initial load of the named
1071 // zone. If the name is invalid, or some other kind of error occurs, returns
1072 // `false` and `*tz` is set to the UTC time zone.
LoadTimeZone(absl::string_view name,TimeZone * tz)1073 inline bool LoadTimeZone(absl::string_view name, TimeZone* tz) {
1074 if (name == "localtime") {
1075 *tz = TimeZone(time_internal::cctz::local_time_zone());
1076 return true;
1077 }
1078 time_internal::cctz::time_zone cz;
1079 const bool b = time_internal::cctz::load_time_zone(std::string(name), &cz);
1080 *tz = TimeZone(cz);
1081 return b;
1082 }
1083
1084 // FixedTimeZone()
1085 //
1086 // Returns a TimeZone that is a fixed offset (seconds east) from UTC.
1087 // Note: If the absolute value of the offset is greater than 24 hours
1088 // you'll get UTC (i.e., no offset) instead.
FixedTimeZone(int seconds)1089 inline TimeZone FixedTimeZone(int seconds) {
1090 return TimeZone(
1091 time_internal::cctz::fixed_time_zone(std::chrono::seconds(seconds)));
1092 }
1093
1094 // UTCTimeZone()
1095 //
1096 // Convenience method returning the UTC time zone.
UTCTimeZone()1097 inline TimeZone UTCTimeZone() {
1098 return TimeZone(time_internal::cctz::utc_time_zone());
1099 }
1100
1101 // LocalTimeZone()
1102 //
1103 // Convenience method returning the local time zone, or UTC if there is
1104 // no configured local zone. Warning: Be wary of using LocalTimeZone(),
1105 // and particularly so in a server process, as the zone configured for the
1106 // local machine should be irrelevant. Prefer an explicit zone name.
LocalTimeZone()1107 inline TimeZone LocalTimeZone() {
1108 return TimeZone(time_internal::cctz::local_time_zone());
1109 }
1110
1111 // ToCivilSecond()
1112 // ToCivilMinute()
1113 // ToCivilHour()
1114 // ToCivilDay()
1115 // ToCivilMonth()
1116 // ToCivilYear()
1117 //
1118 // Helpers for TimeZone::At(Time) to return particularly aligned civil times.
1119 //
1120 // Example:
1121 //
1122 // absl::Time t = ...;
1123 // absl::TimeZone tz = ...;
1124 // const auto cd = absl::ToCivilDay(t, tz);
ToCivilSecond(Time t,TimeZone tz)1125 inline CivilSecond ToCivilSecond(Time t, TimeZone tz) {
1126 return tz.At(t).cs; // already a CivilSecond
1127 }
ToCivilMinute(Time t,TimeZone tz)1128 inline CivilMinute ToCivilMinute(Time t, TimeZone tz) {
1129 return CivilMinute(tz.At(t).cs);
1130 }
ToCivilHour(Time t,TimeZone tz)1131 inline CivilHour ToCivilHour(Time t, TimeZone tz) {
1132 return CivilHour(tz.At(t).cs);
1133 }
ToCivilDay(Time t,TimeZone tz)1134 inline CivilDay ToCivilDay(Time t, TimeZone tz) {
1135 return CivilDay(tz.At(t).cs);
1136 }
ToCivilMonth(Time t,TimeZone tz)1137 inline CivilMonth ToCivilMonth(Time t, TimeZone tz) {
1138 return CivilMonth(tz.At(t).cs);
1139 }
ToCivilYear(Time t,TimeZone tz)1140 inline CivilYear ToCivilYear(Time t, TimeZone tz) {
1141 return CivilYear(tz.At(t).cs);
1142 }
1143
1144 // FromCivil()
1145 //
1146 // Helper for TimeZone::At(CivilSecond) that provides "order-preserving
1147 // semantics." If the civil time maps to a unique time, that time is
1148 // returned. If the civil time is repeated in the given time zone, the
1149 // time using the pre-transition offset is returned. Otherwise, the
1150 // civil time is skipped in the given time zone, and the transition time
1151 // is returned. This means that for any two civil times, ct1 and ct2,
1152 // (ct1 < ct2) => (FromCivil(ct1) <= FromCivil(ct2)), the equal case
1153 // being when two non-existent civil times map to the same transition time.
1154 //
1155 // Note: Accepts civil times of any alignment.
FromCivil(CivilSecond ct,TimeZone tz)1156 inline Time FromCivil(CivilSecond ct, TimeZone tz) {
1157 const auto ti = tz.At(ct);
1158 if (ti.kind == TimeZone::TimeInfo::SKIPPED) return ti.trans;
1159 return ti.pre;
1160 }
1161
1162 // TimeConversion
1163 //
1164 // An `absl::TimeConversion` represents the conversion of year, month, day,
1165 // hour, minute, and second values (i.e., a civil time), in a particular
1166 // `absl::TimeZone`, to a time instant (an absolute time), as returned by
1167 // `absl::ConvertDateTime()`. Legacy version of `absl::TimeZone::TimeInfo`.
1168 //
1169 // Deprecated. Use `absl::TimeZone::TimeInfo`.
1170 struct
1171 TimeConversion {
1172 Time pre; // time calculated using the pre-transition offset
1173 Time trans; // when the civil-time discontinuity occurred
1174 Time post; // time calculated using the post-transition offset
1175
1176 enum Kind {
1177 UNIQUE, // the civil time was singular (pre == trans == post)
1178 SKIPPED, // the civil time did not exist
1179 REPEATED, // the civil time was ambiguous
1180 };
1181 Kind kind;
1182
1183 bool normalized; // input values were outside their valid ranges
1184 };
1185
1186 // ConvertDateTime()
1187 //
1188 // Legacy version of `absl::TimeZone::At(absl::CivilSecond)` that takes
1189 // the civil time as six, separate values (YMDHMS).
1190 //
1191 // The input month, day, hour, minute, and second values can be outside
1192 // of their valid ranges, in which case they will be "normalized" during
1193 // the conversion.
1194 //
1195 // Example:
1196 //
1197 // // "October 32" normalizes to "November 1".
1198 // absl::TimeConversion tc =
1199 // absl::ConvertDateTime(2013, 10, 32, 8, 30, 0, lax);
1200 // // tc.kind == TimeConversion::UNIQUE && tc.normalized == true
1201 // // absl::ToCivilDay(tc.pre, tz).month() == 11
1202 // // absl::ToCivilDay(tc.pre, tz).day() == 1
1203 //
1204 // Deprecated. Use `absl::TimeZone::At(CivilSecond)`.
1205 TimeConversion ConvertDateTime(int64_t year, int mon, int day, int hour,
1206 int min, int sec, TimeZone tz);
1207
1208 // FromDateTime()
1209 //
1210 // A convenience wrapper for `absl::ConvertDateTime()` that simply returns
1211 // the "pre" `absl::Time`. That is, the unique result, or the instant that
1212 // is correct using the pre-transition offset (as if the transition never
1213 // happened).
1214 //
1215 // Example:
1216 //
1217 // absl::Time t = absl::FromDateTime(2017, 9, 26, 9, 30, 0, lax);
1218 // // t = 2017-09-26 09:30:00 -0700
1219 //
1220 // Deprecated. Use `absl::FromCivil(CivilSecond, TimeZone)`. Note that the
1221 // behavior of `FromCivil()` differs from `FromDateTime()` for skipped civil
1222 // times. If you care about that see `absl::TimeZone::At(absl::CivilSecond)`.
FromDateTime(int64_t year,int mon,int day,int hour,int min,int sec,TimeZone tz)1223 inline Time FromDateTime(int64_t year, int mon, int day, int hour,
1224 int min, int sec, TimeZone tz) {
1225 return ConvertDateTime(year, mon, day, hour, min, sec, tz).pre;
1226 }
1227
1228 // FromTM()
1229 //
1230 // Converts the `tm_year`, `tm_mon`, `tm_mday`, `tm_hour`, `tm_min`, and
1231 // `tm_sec` fields to an `absl::Time` using the given time zone. See ctime(3)
1232 // for a description of the expected values of the tm fields. If the civil time
1233 // is unique (see `absl::TimeZone::At(absl::CivilSecond)` above), the matching
1234 // time instant is returned. Otherwise, the `tm_isdst` field is consulted to
1235 // choose between the possible results. For a repeated civil time, `tm_isdst !=
1236 // 0` returns the matching DST instant, while `tm_isdst == 0` returns the
1237 // matching non-DST instant. For a skipped civil time there is no matching
1238 // instant, so `tm_isdst != 0` returns the DST instant, and `tm_isdst == 0`
1239 // returns the non-DST instant, that would have matched if the transition never
1240 // happened.
1241 Time FromTM(const struct tm& tm, TimeZone tz);
1242
1243 // ToTM()
1244 //
1245 // Converts the given `absl::Time` to a struct tm using the given time zone.
1246 // See ctime(3) for a description of the values of the tm fields.
1247 struct tm ToTM(Time t, TimeZone tz);
1248
1249 // RFC3339_full
1250 // RFC3339_sec
1251 //
1252 // FormatTime()/ParseTime() format specifiers for RFC3339 date/time strings,
1253 // with trailing zeros trimmed or with fractional seconds omitted altogether.
1254 //
1255 // Note that RFC3339_sec[] matches an ISO 8601 extended format for date and
1256 // time with UTC offset. Also note the use of "%Y": RFC3339 mandates that
1257 // years have exactly four digits, but we allow them to take their natural
1258 // width.
1259 ABSL_DLL extern const char RFC3339_full[]; // %Y-%m-%d%ET%H:%M:%E*S%Ez
1260 ABSL_DLL extern const char RFC3339_sec[]; // %Y-%m-%d%ET%H:%M:%S%Ez
1261
1262 // RFC1123_full
1263 // RFC1123_no_wday
1264 //
1265 // FormatTime()/ParseTime() format specifiers for RFC1123 date/time strings.
1266 ABSL_DLL extern const char RFC1123_full[]; // %a, %d %b %E4Y %H:%M:%S %z
1267 ABSL_DLL extern const char RFC1123_no_wday[]; // %d %b %E4Y %H:%M:%S %z
1268
1269 // FormatTime()
1270 //
1271 // Formats the given `absl::Time` in the `absl::TimeZone` according to the
1272 // provided format string. Uses strftime()-like formatting options, with
1273 // the following extensions:
1274 //
1275 // - %Ez - RFC3339-compatible numeric UTC offset (+hh:mm or -hh:mm)
1276 // - %E*z - Full-resolution numeric UTC offset (+hh:mm:ss or -hh:mm:ss)
1277 // - %E#S - Seconds with # digits of fractional precision
1278 // - %E*S - Seconds with full fractional precision (a literal '*')
1279 // - %E#f - Fractional seconds with # digits of precision
1280 // - %E*f - Fractional seconds with full precision (a literal '*')
1281 // - %E4Y - Four-character years (-999 ... -001, 0000, 0001 ... 9999)
1282 // - %ET - The RFC3339 "date-time" separator "T"
1283 //
1284 // Note that %E0S behaves like %S, and %E0f produces no characters. In
1285 // contrast %E*f always produces at least one digit, which may be '0'.
1286 //
1287 // Note that %Y produces as many characters as it takes to fully render the
1288 // year. A year outside of [-999:9999] when formatted with %E4Y will produce
1289 // more than four characters, just like %Y.
1290 //
1291 // We recommend that format strings include the UTC offset (%z, %Ez, or %E*z)
1292 // so that the result uniquely identifies a time instant.
1293 //
1294 // Example:
1295 //
1296 // absl::CivilSecond cs(2013, 1, 2, 3, 4, 5);
1297 // absl::Time t = absl::FromCivil(cs, lax);
1298 // std::string f = absl::FormatTime("%H:%M:%S", t, lax); // "03:04:05"
1299 // f = absl::FormatTime("%H:%M:%E3S", t, lax); // "03:04:05.000"
1300 //
1301 // Note: If the given `absl::Time` is `absl::InfiniteFuture()`, the returned
1302 // string will be exactly "infinite-future". If the given `absl::Time` is
1303 // `absl::InfinitePast()`, the returned string will be exactly "infinite-past".
1304 // In both cases the given format string and `absl::TimeZone` are ignored.
1305 //
1306 std::string FormatTime(absl::string_view format, Time t, TimeZone tz);
1307
1308 // Convenience functions that format the given time using the RFC3339_full
1309 // format. The first overload uses the provided TimeZone, while the second
1310 // uses LocalTimeZone().
1311 std::string FormatTime(Time t, TimeZone tz);
1312 std::string FormatTime(Time t);
1313
1314 // Output stream operator.
1315 inline std::ostream& operator<<(std::ostream& os, Time t) {
1316 return os << FormatTime(t);
1317 }
1318
1319 // ParseTime()
1320 //
1321 // Parses an input string according to the provided format string and
1322 // returns the corresponding `absl::Time`. Uses strftime()-like formatting
1323 // options, with the same extensions as FormatTime(), but with the
1324 // exceptions that %E#S is interpreted as %E*S, and %E#f as %E*f. %Ez
1325 // and %E*z also accept the same inputs, which (along with %z) includes
1326 // 'z' and 'Z' as synonyms for +00:00. %ET accepts either 'T' or 't'.
1327 //
1328 // %Y consumes as many numeric characters as it can, so the matching data
1329 // should always be terminated with a non-numeric. %E4Y always consumes
1330 // exactly four characters, including any sign.
1331 //
1332 // Unspecified fields are taken from the default date and time of ...
1333 //
1334 // "1970-01-01 00:00:00.0 +0000"
1335 //
1336 // For example, parsing a string of "15:45" (%H:%M) will return an absl::Time
1337 // that represents "1970-01-01 15:45:00.0 +0000".
1338 //
1339 // Note that since ParseTime() returns time instants, it makes the most sense
1340 // to parse fully-specified date/time strings that include a UTC offset (%z,
1341 // %Ez, or %E*z).
1342 //
1343 // Note also that `absl::ParseTime()` only heeds the fields year, month, day,
1344 // hour, minute, (fractional) second, and UTC offset. Other fields, like
1345 // weekday (%a or %A), while parsed for syntactic validity, are ignored
1346 // in the conversion.
1347 //
1348 // Date and time fields that are out-of-range will be treated as errors
1349 // rather than normalizing them like `absl::CivilSecond` does. For example,
1350 // it is an error to parse the date "Oct 32, 2013" because 32 is out of range.
1351 //
1352 // A leap second of ":60" is normalized to ":00" of the following minute
1353 // with fractional seconds discarded. The following table shows how the
1354 // given seconds and subseconds will be parsed:
1355 //
1356 // "59.x" -> 59.x // exact
1357 // "60.x" -> 00.0 // normalized
1358 // "00.x" -> 00.x // exact
1359 //
1360 // Errors are indicated by returning false and assigning an error message
1361 // to the "err" out param if it is non-null.
1362 //
1363 // Note: If the input string is exactly "infinite-future", the returned
1364 // `absl::Time` will be `absl::InfiniteFuture()` and `true` will be returned.
1365 // If the input string is "infinite-past", the returned `absl::Time` will be
1366 // `absl::InfinitePast()` and `true` will be returned.
1367 //
1368 bool ParseTime(absl::string_view format, absl::string_view input, Time* time,
1369 std::string* err);
1370
1371 // Like ParseTime() above, but if the format string does not contain a UTC
1372 // offset specification (%z/%Ez/%E*z) then the input is interpreted in the
1373 // given TimeZone. This means that the input, by itself, does not identify a
1374 // unique instant. Being time-zone dependent, it also admits the possibility
1375 // of ambiguity or non-existence, in which case the "pre" time (as defined
1376 // by TimeZone::TimeInfo) is returned. For these reasons we recommend that
1377 // all date/time strings include a UTC offset so they're context independent.
1378 bool ParseTime(absl::string_view format, absl::string_view input, TimeZone tz,
1379 Time* time, std::string* err);
1380
1381 // ============================================================================
1382 // Implementation Details Follow
1383 // ============================================================================
1384
1385 namespace time_internal {
1386
1387 // Creates a Duration with a given representation.
1388 // REQUIRES: hi,lo is a valid representation of a Duration as specified
1389 // in time/duration.cc.
1390 constexpr Duration MakeDuration(int64_t hi, uint32_t lo = 0) {
1391 return Duration(hi, lo);
1392 }
1393
MakeDuration(int64_t hi,int64_t lo)1394 constexpr Duration MakeDuration(int64_t hi, int64_t lo) {
1395 return MakeDuration(hi, static_cast<uint32_t>(lo));
1396 }
1397
1398 // Make a Duration value from a floating-point number, as long as that number
1399 // is in the range [ 0 .. numeric_limits<int64_t>::max ), that is, as long as
1400 // it's positive and can be converted to int64_t without risk of UB.
MakePosDoubleDuration(double n)1401 inline Duration MakePosDoubleDuration(double n) {
1402 const int64_t int_secs = static_cast<int64_t>(n);
1403 const uint32_t ticks = static_cast<uint32_t>(
1404 std::round((n - static_cast<double>(int_secs)) * kTicksPerSecond));
1405 return ticks < kTicksPerSecond
1406 ? MakeDuration(int_secs, ticks)
1407 : MakeDuration(int_secs + 1, ticks - kTicksPerSecond);
1408 }
1409
1410 // Creates a normalized Duration from an almost-normalized (sec,ticks)
1411 // pair. sec may be positive or negative. ticks must be in the range
1412 // -kTicksPerSecond < *ticks < kTicksPerSecond. If ticks is negative it
1413 // will be normalized to a positive value in the resulting Duration.
MakeNormalizedDuration(int64_t sec,int64_t ticks)1414 constexpr Duration MakeNormalizedDuration(int64_t sec, int64_t ticks) {
1415 return (ticks < 0) ? MakeDuration(sec - 1, ticks + kTicksPerSecond)
1416 : MakeDuration(sec, ticks);
1417 }
1418
1419 // Provide access to the Duration representation.
GetRepHi(Duration d)1420 constexpr int64_t GetRepHi(Duration d) { return d.rep_hi_; }
GetRepLo(Duration d)1421 constexpr uint32_t GetRepLo(Duration d) { return d.rep_lo_; }
1422
1423 // Returns true iff d is positive or negative infinity.
IsInfiniteDuration(Duration d)1424 constexpr bool IsInfiniteDuration(Duration d) { return GetRepLo(d) == ~0U; }
1425
1426 // Returns an infinite Duration with the opposite sign.
1427 // REQUIRES: IsInfiniteDuration(d)
OppositeInfinity(Duration d)1428 constexpr Duration OppositeInfinity(Duration d) {
1429 return GetRepHi(d) < 0
1430 ? MakeDuration((std::numeric_limits<int64_t>::max)(), ~0U)
1431 : MakeDuration((std::numeric_limits<int64_t>::min)(), ~0U);
1432 }
1433
1434 // Returns (-n)-1 (equivalently -(n+1)) without avoidable overflow.
NegateAndSubtractOne(int64_t n)1435 constexpr int64_t NegateAndSubtractOne(int64_t n) {
1436 // Note: Good compilers will optimize this expression to ~n when using
1437 // a two's-complement representation (which is required for int64_t).
1438 return (n < 0) ? -(n + 1) : (-n) - 1;
1439 }
1440
1441 // Map between a Time and a Duration since the Unix epoch. Note that these
1442 // functions depend on the above mentioned choice of the Unix epoch for the
1443 // Time representation (and both need to be Time friends). Without this
1444 // knowledge, we would need to add-in/subtract-out UnixEpoch() respectively.
FromUnixDuration(Duration d)1445 constexpr Time FromUnixDuration(Duration d) { return Time(d); }
ToUnixDuration(Time t)1446 constexpr Duration ToUnixDuration(Time t) { return t.rep_; }
1447
1448 template <std::intmax_t N>
FromInt64(int64_t v,std::ratio<1,N>)1449 constexpr Duration FromInt64(int64_t v, std::ratio<1, N>) {
1450 static_assert(0 < N && N <= 1000 * 1000 * 1000, "Unsupported ratio");
1451 // Subsecond ratios cannot overflow.
1452 return MakeNormalizedDuration(
1453 v / N, v % N * kTicksPerNanosecond * 1000 * 1000 * 1000 / N);
1454 }
FromInt64(int64_t v,std::ratio<60>)1455 constexpr Duration FromInt64(int64_t v, std::ratio<60>) {
1456 return (v <= (std::numeric_limits<int64_t>::max)() / 60 &&
1457 v >= (std::numeric_limits<int64_t>::min)() / 60)
1458 ? MakeDuration(v * 60)
1459 : v > 0 ? InfiniteDuration() : -InfiniteDuration();
1460 }
FromInt64(int64_t v,std::ratio<3600>)1461 constexpr Duration FromInt64(int64_t v, std::ratio<3600>) {
1462 return (v <= (std::numeric_limits<int64_t>::max)() / 3600 &&
1463 v >= (std::numeric_limits<int64_t>::min)() / 3600)
1464 ? MakeDuration(v * 3600)
1465 : v > 0 ? InfiniteDuration() : -InfiniteDuration();
1466 }
1467
1468 // IsValidRep64<T>(0) is true if the expression `int64_t{std::declval<T>()}` is
1469 // valid. That is, if a T can be assigned to an int64_t without narrowing.
1470 template <typename T>
1471 constexpr auto IsValidRep64(int) -> decltype(int64_t{std::declval<T>()} == 0) {
1472 return true;
1473 }
1474 template <typename T>
1475 constexpr auto IsValidRep64(char) -> bool {
1476 return false;
1477 }
1478
1479 // Converts a std::chrono::duration to an absl::Duration.
1480 template <typename Rep, typename Period>
FromChrono(const std::chrono::duration<Rep,Period> & d)1481 constexpr Duration FromChrono(const std::chrono::duration<Rep, Period>& d) {
1482 static_assert(IsValidRep64<Rep>(0), "duration::rep is invalid");
1483 return FromInt64(int64_t{d.count()}, Period{});
1484 }
1485
1486 template <typename Ratio>
ToInt64(Duration d,Ratio)1487 int64_t ToInt64(Duration d, Ratio) {
1488 // Note: This may be used on MSVC, which may have a system_clock period of
1489 // std::ratio<1, 10 * 1000 * 1000>
1490 return ToInt64Seconds(d * Ratio::den / Ratio::num);
1491 }
1492 // Fastpath implementations for the 6 common duration units.
ToInt64(Duration d,std::nano)1493 inline int64_t ToInt64(Duration d, std::nano) {
1494 return ToInt64Nanoseconds(d);
1495 }
ToInt64(Duration d,std::micro)1496 inline int64_t ToInt64(Duration d, std::micro) {
1497 return ToInt64Microseconds(d);
1498 }
ToInt64(Duration d,std::milli)1499 inline int64_t ToInt64(Duration d, std::milli) {
1500 return ToInt64Milliseconds(d);
1501 }
ToInt64(Duration d,std::ratio<1>)1502 inline int64_t ToInt64(Duration d, std::ratio<1>) {
1503 return ToInt64Seconds(d);
1504 }
ToInt64(Duration d,std::ratio<60>)1505 inline int64_t ToInt64(Duration d, std::ratio<60>) {
1506 return ToInt64Minutes(d);
1507 }
ToInt64(Duration d,std::ratio<3600>)1508 inline int64_t ToInt64(Duration d, std::ratio<3600>) {
1509 return ToInt64Hours(d);
1510 }
1511
1512 // Converts an absl::Duration to a chrono duration of type T.
1513 template <typename T>
ToChronoDuration(Duration d)1514 T ToChronoDuration(Duration d) {
1515 using Rep = typename T::rep;
1516 using Period = typename T::period;
1517 static_assert(IsValidRep64<Rep>(0), "duration::rep is invalid");
1518 if (time_internal::IsInfiniteDuration(d))
1519 return d < ZeroDuration() ? (T::min)() : (T::max)();
1520 const auto v = ToInt64(d, Period{});
1521 if (v > (std::numeric_limits<Rep>::max)()) return (T::max)();
1522 if (v < (std::numeric_limits<Rep>::min)()) return (T::min)();
1523 return T{v};
1524 }
1525
1526 } // namespace time_internal
1527
1528 constexpr bool operator<(Duration lhs, Duration rhs) {
1529 return time_internal::GetRepHi(lhs) != time_internal::GetRepHi(rhs)
1530 ? time_internal::GetRepHi(lhs) < time_internal::GetRepHi(rhs)
1531 : time_internal::GetRepHi(lhs) == (std::numeric_limits<int64_t>::min)()
1532 ? time_internal::GetRepLo(lhs) + 1 <
1533 time_internal::GetRepLo(rhs) + 1
1534 : time_internal::GetRepLo(lhs) < time_internal::GetRepLo(rhs);
1535 }
1536
1537 constexpr bool operator==(Duration lhs, Duration rhs) {
1538 return time_internal::GetRepHi(lhs) == time_internal::GetRepHi(rhs) &&
1539 time_internal::GetRepLo(lhs) == time_internal::GetRepLo(rhs);
1540 }
1541
1542 constexpr Duration operator-(Duration d) {
1543 // This is a little interesting because of the special cases.
1544 //
1545 // If rep_lo_ is zero, we have it easy; it's safe to negate rep_hi_, we're
1546 // dealing with an integral number of seconds, and the only special case is
1547 // the maximum negative finite duration, which can't be negated.
1548 //
1549 // Infinities stay infinite, and just change direction.
1550 //
1551 // Finally we're in the case where rep_lo_ is non-zero, and we can borrow
1552 // a second's worth of ticks and avoid overflow (as negating int64_t-min + 1
1553 // is safe).
1554 return time_internal::GetRepLo(d) == 0
1555 ? time_internal::GetRepHi(d) ==
1556 (std::numeric_limits<int64_t>::min)()
1557 ? InfiniteDuration()
1558 : time_internal::MakeDuration(-time_internal::GetRepHi(d))
1559 : time_internal::IsInfiniteDuration(d)
1560 ? time_internal::OppositeInfinity(d)
1561 : time_internal::MakeDuration(
1562 time_internal::NegateAndSubtractOne(
1563 time_internal::GetRepHi(d)),
1564 time_internal::kTicksPerSecond -
1565 time_internal::GetRepLo(d));
1566 }
1567
InfiniteDuration()1568 constexpr Duration InfiniteDuration() {
1569 return time_internal::MakeDuration((std::numeric_limits<int64_t>::max)(),
1570 ~0U);
1571 }
1572
FromChrono(const std::chrono::nanoseconds & d)1573 constexpr Duration FromChrono(const std::chrono::nanoseconds& d) {
1574 return time_internal::FromChrono(d);
1575 }
FromChrono(const std::chrono::microseconds & d)1576 constexpr Duration FromChrono(const std::chrono::microseconds& d) {
1577 return time_internal::FromChrono(d);
1578 }
FromChrono(const std::chrono::milliseconds & d)1579 constexpr Duration FromChrono(const std::chrono::milliseconds& d) {
1580 return time_internal::FromChrono(d);
1581 }
FromChrono(const std::chrono::seconds & d)1582 constexpr Duration FromChrono(const std::chrono::seconds& d) {
1583 return time_internal::FromChrono(d);
1584 }
FromChrono(const std::chrono::minutes & d)1585 constexpr Duration FromChrono(const std::chrono::minutes& d) {
1586 return time_internal::FromChrono(d);
1587 }
FromChrono(const std::chrono::hours & d)1588 constexpr Duration FromChrono(const std::chrono::hours& d) {
1589 return time_internal::FromChrono(d);
1590 }
1591
FromUnixNanos(int64_t ns)1592 constexpr Time FromUnixNanos(int64_t ns) {
1593 return time_internal::FromUnixDuration(Nanoseconds(ns));
1594 }
1595
FromUnixMicros(int64_t us)1596 constexpr Time FromUnixMicros(int64_t us) {
1597 return time_internal::FromUnixDuration(Microseconds(us));
1598 }
1599
FromUnixMillis(int64_t ms)1600 constexpr Time FromUnixMillis(int64_t ms) {
1601 return time_internal::FromUnixDuration(Milliseconds(ms));
1602 }
1603
FromUnixSeconds(int64_t s)1604 constexpr Time FromUnixSeconds(int64_t s) {
1605 return time_internal::FromUnixDuration(Seconds(s));
1606 }
1607
FromTimeT(time_t t)1608 constexpr Time FromTimeT(time_t t) {
1609 return time_internal::FromUnixDuration(Seconds(t));
1610 }
1611
1612 ABSL_NAMESPACE_END
1613 } // namespace absl
1614
1615 #endif // ABSL_TIME_TIME_H_
1616