blob: d1d8b050645e1895b6d3f59603c641d879c3e9f0 [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>
Steve Anton300bf8e2017-07-14 10:13:10 -070016#include <string>
17
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020018#include "rtc_base/checks.h"
Jonas Olsson366a50c2018-09-06 13:41:30 +020019#include "rtc_base/strings/string_builder.h"
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020020
21namespace rtc {
22
23static const int64_t kNumMillisecsPerSec = INT64_C(1000);
24static const int64_t kNumMicrosecsPerSec = INT64_C(1000000);
25static const int64_t kNumNanosecsPerSec = INT64_C(1000000000);
26
27static const int64_t kNumMicrosecsPerMillisec =
28 kNumMicrosecsPerSec / kNumMillisecsPerSec;
29static const int64_t kNumNanosecsPerMillisec =
30 kNumNanosecsPerSec / kNumMillisecsPerSec;
31static const int64_t kNumNanosecsPerMicrosec =
32 kNumNanosecsPerSec / kNumMicrosecsPerSec;
33
34// TODO(honghaiz): Define a type for the time value specifically.
35
36class ClockInterface {
37 public:
38 virtual ~ClockInterface() {}
39 virtual int64_t TimeNanos() const = 0;
40};
41
42// Sets the global source of time. This is useful mainly for unit tests.
43//
44// Returns the previously set ClockInterface, or nullptr if none is set.
45//
46// Does not transfer ownership of the clock. SetClockForTesting(nullptr)
47// should be called before the ClockInterface is deleted.
48//
49// This method is not thread-safe; it should only be used when no other thread
50// is running (for example, at the start/end of a unit test, or start/end of
51// main()).
52//
53// TODO(deadbeef): Instead of having functions that access this global
54// ClockInterface, we may want to pass the ClockInterface into everything
55// that uses it, eliminating the need for a global variable and this function.
56ClockInterface* SetClockForTesting(ClockInterface* clock);
57
58// Returns previously set clock, or nullptr if no custom clock is being used.
59ClockInterface* GetClockForTesting();
60
Robin Raymondce1b1402018-11-22 20:10:11 -050061#if defined(WINUWP)
62// Synchronizes the current clock based upon an NTP server's epoch in
63// milliseconds.
64void SyncWithNtp(int64_t time_from_ntp_server_ms);
65#endif // defined(WINUWP)
66
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020067// Returns the actual system time, even if a clock is set for testing.
68// Useful for timeouts while using a test clock, or for logging.
69int64_t SystemTimeNanos();
70int64_t SystemTimeMillis();
71
72// Returns the current time in milliseconds in 32 bits.
73uint32_t Time32();
74
75// Returns the current time in milliseconds in 64 bits.
76int64_t TimeMillis();
77// Deprecated. Do not use this in any new code.
78inline int64_t Time() {
79 return TimeMillis();
80}
81
82// Returns the current time in microseconds.
83int64_t TimeMicros();
84
85// Returns the current time in nanoseconds.
86int64_t TimeNanos();
87
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020088// Returns a future timestamp, 'elapsed' milliseconds from now.
89int64_t TimeAfter(int64_t elapsed);
90
91// Number of milliseconds that would elapse between 'earlier' and 'later'
92// timestamps. The value is negative if 'later' occurs before 'earlier'.
93int64_t TimeDiff(int64_t later, int64_t earlier);
94int32_t TimeDiff32(uint32_t later, uint32_t earlier);
95
96// The number of milliseconds that have elapsed since 'earlier'.
97inline int64_t TimeSince(int64_t earlier) {
98 return TimeMillis() - earlier;
99}
100
101// The number of milliseconds that will elapse between now and 'later'.
102inline int64_t TimeUntil(int64_t later) {
103 return later - TimeMillis();
104}
105
106class TimestampWrapAroundHandler {
107 public:
108 TimestampWrapAroundHandler();
109
110 int64_t Unwrap(uint32_t ts);
111
112 private:
113 uint32_t last_ts_;
114 int64_t num_wrap_;
115};
116
Yves Gerey988cc082018-10-23 12:03:01 +0200117// Convert from tm, which is relative to 1900-01-01 00:00 to number of
118// seconds from 1970-01-01 00:00 ("epoch"). Don't return time_t since that
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +0200119// is still 32 bits on many systems.
Yves Gerey988cc082018-10-23 12:03:01 +0200120int64_t TmToSeconds(const tm& tm);
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +0200121
122// Return the number of microseconds since January 1, 1970, UTC.
123// Useful mainly when producing logs to be correlated with other
124// devices, and when the devices in question all have properly
125// synchronized clocks.
126//
127// Note that this function obeys the system's idea about what the time
128// is. It is not guaranteed to be monotonic; it will jump in case the
129// system time is changed, e.g., by some other process calling
130// settimeofday. Always use rtc::TimeMicros(), not this function, for
131// measuring time intervals and timeouts.
132int64_t TimeUTCMicros();
133
Minyue Li656d6092018-08-10 15:38:52 +0200134// Return the number of milliseconds since January 1, 1970, UTC.
135// See above.
136int64_t TimeUTCMillis();
137
Steve Anton300bf8e2017-07-14 10:13:10 -0700138// Interval of time from the range [min, max] inclusive.
139class IntervalRange {
140 public:
141 IntervalRange() : min_(0), max_(0) {}
142 IntervalRange(int min, int max) : min_(min), max_(max) {
143 RTC_DCHECK_LE(min, max);
144 }
145
146 int min() const { return min_; }
147 int max() const { return max_; }
148
149 std::string ToString() const {
Jonas Olsson366a50c2018-09-06 13:41:30 +0200150 rtc::StringBuilder ss;
Steve Anton300bf8e2017-07-14 10:13:10 -0700151 ss << "[" << min_ << "," << max_ << "]";
Jonas Olsson84df1c72018-09-14 16:59:32 +0200152 return ss.Release();
Steve Anton300bf8e2017-07-14 10:13:10 -0700153 }
154
155 bool operator==(const IntervalRange& o) const {
156 return min_ == o.min_ && max_ == o.max_;
157 }
158
Qingsi Wang866e08d2018-03-22 17:54:23 -0700159 bool operator!=(const IntervalRange& o) const { return !operator==(o); }
160
Steve Anton300bf8e2017-07-14 10:13:10 -0700161 private:
162 int min_;
163 int max_;
164};
165
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +0200166} // namespace rtc
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000167
Steve Anton10542f22019-01-11 09:11:00 -0800168#endif // RTC_BASE_TIME_UTILS_H_