blob: 7862959507510f6c4c05c999c9a375459e9ac519 [file] [log] [blame]
henrike@webrtc.orgf0488722014-05-13 18:00:26 +00001/*
2 * Copyright 2005 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Steve Anton10542f22019-01-11 09:11:00 -080011#ifndef RTC_BASE_TIME_UTILS_H_
12#define RTC_BASE_TIME_UTILS_H_
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000013
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020014#include <stdint.h>
15#include <time.h>
Jonas Olssona4d87372019-07-05 19:08:33 +020016
Steve Anton300bf8e2017-07-14 10:13:10 -070017#include <string>
18
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020019#include "rtc_base/checks.h"
Jonas Olsson366a50c2018-09-06 13:41:30 +020020#include "rtc_base/strings/string_builder.h"
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020021
22namespace rtc {
23
24static const int64_t kNumMillisecsPerSec = INT64_C(1000);
25static const int64_t kNumMicrosecsPerSec = INT64_C(1000000);
26static const int64_t kNumNanosecsPerSec = INT64_C(1000000000);
27
28static const int64_t kNumMicrosecsPerMillisec =
29 kNumMicrosecsPerSec / kNumMillisecsPerSec;
30static const int64_t kNumNanosecsPerMillisec =
31 kNumNanosecsPerSec / kNumMillisecsPerSec;
32static const int64_t kNumNanosecsPerMicrosec =
33 kNumNanosecsPerSec / kNumMicrosecsPerSec;
34
35// TODO(honghaiz): Define a type for the time value specifically.
36
37class ClockInterface {
38 public:
39 virtual ~ClockInterface() {}
40 virtual int64_t TimeNanos() const = 0;
41};
42
43// Sets the global source of time. This is useful mainly for unit tests.
44//
45// Returns the previously set ClockInterface, or nullptr if none is set.
46//
47// Does not transfer ownership of the clock. SetClockForTesting(nullptr)
48// should be called before the ClockInterface is deleted.
49//
50// This method is not thread-safe; it should only be used when no other thread
51// is running (for example, at the start/end of a unit test, or start/end of
52// main()).
53//
54// TODO(deadbeef): Instead of having functions that access this global
55// ClockInterface, we may want to pass the ClockInterface into everything
56// that uses it, eliminating the need for a global variable and this function.
57ClockInterface* SetClockForTesting(ClockInterface* clock);
58
59// Returns previously set clock, or nullptr if no custom clock is being used.
60ClockInterface* GetClockForTesting();
61
Robin Raymondce1b1402018-11-22 20:10:11 -050062#if defined(WINUWP)
63// Synchronizes the current clock based upon an NTP server's epoch in
64// milliseconds.
65void SyncWithNtp(int64_t time_from_ntp_server_ms);
66#endif // defined(WINUWP)
67
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020068// Returns the actual system time, even if a clock is set for testing.
69// Useful for timeouts while using a test clock, or for logging.
70int64_t SystemTimeNanos();
71int64_t SystemTimeMillis();
72
73// Returns the current time in milliseconds in 32 bits.
74uint32_t Time32();
75
76// Returns the current time in milliseconds in 64 bits.
77int64_t TimeMillis();
78// Deprecated. Do not use this in any new code.
79inline int64_t Time() {
80 return TimeMillis();
81}
82
83// Returns the current time in microseconds.
84int64_t TimeMicros();
85
86// Returns the current time in nanoseconds.
87int64_t TimeNanos();
88
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020089// Returns a future timestamp, 'elapsed' milliseconds from now.
90int64_t TimeAfter(int64_t elapsed);
91
92// Number of milliseconds that would elapse between 'earlier' and 'later'
93// timestamps. The value is negative if 'later' occurs before 'earlier'.
94int64_t TimeDiff(int64_t later, int64_t earlier);
95int32_t TimeDiff32(uint32_t later, uint32_t earlier);
96
97// The number of milliseconds that have elapsed since 'earlier'.
98inline int64_t TimeSince(int64_t earlier) {
99 return TimeMillis() - earlier;
100}
101
102// The number of milliseconds that will elapse between now and 'later'.
103inline int64_t TimeUntil(int64_t later) {
104 return later - TimeMillis();
105}
106
107class TimestampWrapAroundHandler {
108 public:
109 TimestampWrapAroundHandler();
110
111 int64_t Unwrap(uint32_t ts);
112
113 private:
114 uint32_t last_ts_;
115 int64_t num_wrap_;
116};
117
Yves Gerey988cc082018-10-23 12:03:01 +0200118// Convert from tm, which is relative to 1900-01-01 00:00 to number of
119// seconds from 1970-01-01 00:00 ("epoch"). Don't return time_t since that
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +0200120// is still 32 bits on many systems.
Yves Gerey988cc082018-10-23 12:03:01 +0200121int64_t TmToSeconds(const tm& tm);
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +0200122
123// Return the number of microseconds since January 1, 1970, UTC.
124// Useful mainly when producing logs to be correlated with other
125// devices, and when the devices in question all have properly
126// synchronized clocks.
127//
128// Note that this function obeys the system's idea about what the time
129// is. It is not guaranteed to be monotonic; it will jump in case the
130// system time is changed, e.g., by some other process calling
131// settimeofday. Always use rtc::TimeMicros(), not this function, for
132// measuring time intervals and timeouts.
133int64_t TimeUTCMicros();
134
Minyue Li656d6092018-08-10 15:38:52 +0200135// Return the number of milliseconds since January 1, 1970, UTC.
136// See above.
137int64_t TimeUTCMillis();
138
Steve Anton300bf8e2017-07-14 10:13:10 -0700139// Interval of time from the range [min, max] inclusive.
140class IntervalRange {
141 public:
142 IntervalRange() : min_(0), max_(0) {}
143 IntervalRange(int min, int max) : min_(min), max_(max) {
144 RTC_DCHECK_LE(min, max);
145 }
146
147 int min() const { return min_; }
148 int max() const { return max_; }
149
150 std::string ToString() const {
Jonas Olsson366a50c2018-09-06 13:41:30 +0200151 rtc::StringBuilder ss;
Steve Anton300bf8e2017-07-14 10:13:10 -0700152 ss << "[" << min_ << "," << max_ << "]";
Jonas Olsson84df1c72018-09-14 16:59:32 +0200153 return ss.Release();
Steve Anton300bf8e2017-07-14 10:13:10 -0700154 }
155
156 bool operator==(const IntervalRange& o) const {
157 return min_ == o.min_ && max_ == o.max_;
158 }
159
Qingsi Wang866e08d2018-03-22 17:54:23 -0700160 bool operator!=(const IntervalRange& o) const { return !operator==(o); }
161
Steve Anton300bf8e2017-07-14 10:13:10 -0700162 private:
163 int min_;
164 int max_;
165};
166
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +0200167} // namespace rtc
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000168
Steve Anton10542f22019-01-11 09:11:00 -0800169#endif // RTC_BASE_TIME_UTILS_H_