stefan@webrtc.org | 20ed36d | 2013-01-17 14:01:20 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2013 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 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 11 | #ifndef SYSTEM_WRAPPERS_INCLUDE_CLOCK_H_ |
| 12 | #define SYSTEM_WRAPPERS_INCLUDE_CLOCK_H_ |
stefan@webrtc.org | 20ed36d | 2013-01-17 14:01:20 +0000 | [diff] [blame] | 13 | |
Yves Gerey | 988cc08 | 2018-10-23 12:03:01 +0200 | [diff] [blame] | 14 | #include <stdint.h> |
kwiberg | bfefb03 | 2016-05-01 14:53:46 -0700 | [diff] [blame] | 15 | #include <memory> |
| 16 | |
Sebastian Jansson | 4de3115 | 2019-06-11 08:52:11 +0200 | [diff] [blame^] | 17 | #include "api/units/timestamp.h" |
Karl Wiberg | 2b85792 | 2018-03-23 14:53:54 +0100 | [diff] [blame] | 18 | #include "rtc_base/synchronization/rw_lock_wrapper.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 19 | #include "system_wrappers/include/ntp_time.h" |
stefan@webrtc.org | 20ed36d | 2013-01-17 14:01:20 +0000 | [diff] [blame] | 20 | |
| 21 | namespace webrtc { |
| 22 | |
| 23 | // January 1970, in NTP seconds. |
| 24 | const uint32_t kNtpJan1970 = 2208988800UL; |
| 25 | |
| 26 | // Magic NTP fractional unit. |
| 27 | const double kMagicNtpFractionalUnit = 4.294967296E+9; |
| 28 | |
| 29 | // A clock interface that allows reading of absolute and relative timestamps. |
| 30 | class Clock { |
| 31 | public: |
| 32 | virtual ~Clock() {} |
Sebastian Jansson | 4de3115 | 2019-06-11 08:52:11 +0200 | [diff] [blame^] | 33 | // Return a timestamp relative to an unspecified epoch. |
| 34 | virtual Timestamp CurrentTime() { |
| 35 | return Timestamp::us(TimeInMicroseconds()); |
| 36 | } |
| 37 | virtual int64_t TimeInMilliseconds() { return CurrentTime().ms(); } |
| 38 | virtual int64_t TimeInMicroseconds() { return CurrentTime().us(); } |
stefan@webrtc.org | 20ed36d | 2013-01-17 14:01:20 +0000 | [diff] [blame] | 39 | |
danilchap | 21dc189 | 2017-03-07 02:51:09 -0800 | [diff] [blame] | 40 | // Retrieve an NTP absolute timestamp. |
Sebastian Jansson | 2a96ab2 | 2019-01-30 20:44:45 +0100 | [diff] [blame] | 41 | virtual NtpTime CurrentNtpTime() = 0; |
stefan@webrtc.org | 20ed36d | 2013-01-17 14:01:20 +0000 | [diff] [blame] | 42 | |
stefan@webrtc.org | b8e7f4c | 2013-04-12 11:56:23 +0000 | [diff] [blame] | 43 | // Retrieve an NTP absolute timestamp in milliseconds. |
Sebastian Jansson | 2a96ab2 | 2019-01-30 20:44:45 +0100 | [diff] [blame] | 44 | virtual int64_t CurrentNtpInMilliseconds() = 0; |
stefan@webrtc.org | b8e7f4c | 2013-04-12 11:56:23 +0000 | [diff] [blame] | 45 | |
| 46 | // Converts an NTP timestamp to a millisecond timestamp. |
danilchap | 3795376 | 2017-02-09 11:15:25 -0800 | [diff] [blame] | 47 | static int64_t NtpToMs(uint32_t seconds, uint32_t fractions) { |
| 48 | return NtpTime(seconds, fractions).ToMs(); |
| 49 | } |
stefan@webrtc.org | b8e7f4c | 2013-04-12 11:56:23 +0000 | [diff] [blame] | 50 | |
stefan@webrtc.org | 20ed36d | 2013-01-17 14:01:20 +0000 | [diff] [blame] | 51 | // Returns an instance of the real-time system clock implementation. |
| 52 | static Clock* GetRealTimeClock(); |
| 53 | }; |
| 54 | |
| 55 | class SimulatedClock : public Clock { |
| 56 | public: |
stefan@webrtc.org | 20ed36d | 2013-01-17 14:01:20 +0000 | [diff] [blame] | 57 | explicit SimulatedClock(int64_t initial_time_us); |
Sebastian Jansson | 4de3115 | 2019-06-11 08:52:11 +0200 | [diff] [blame^] | 58 | explicit SimulatedClock(Timestamp initial_time); |
stefan@webrtc.org | 20ed36d | 2013-01-17 14:01:20 +0000 | [diff] [blame] | 59 | |
kjellander@webrtc.org | 14665ff | 2015-03-04 12:58:35 +0000 | [diff] [blame] | 60 | ~SimulatedClock() override; |
stefan@webrtc.org | 20ed36d | 2013-01-17 14:01:20 +0000 | [diff] [blame] | 61 | |
Sebastian Jansson | 4de3115 | 2019-06-11 08:52:11 +0200 | [diff] [blame^] | 62 | // Return a timestamp relative to some arbitrary source; the source is fixed |
| 63 | // for this clock. |
| 64 | Timestamp CurrentTime() override; |
stefan@webrtc.org | 20ed36d | 2013-01-17 14:01:20 +0000 | [diff] [blame] | 65 | |
danilchap | 21dc189 | 2017-03-07 02:51:09 -0800 | [diff] [blame] | 66 | // Retrieve an NTP absolute timestamp. |
Sebastian Jansson | 2a96ab2 | 2019-01-30 20:44:45 +0100 | [diff] [blame] | 67 | NtpTime CurrentNtpTime() override; |
stefan@webrtc.org | 20ed36d | 2013-01-17 14:01:20 +0000 | [diff] [blame] | 68 | |
stefan@webrtc.org | b8e7f4c | 2013-04-12 11:56:23 +0000 | [diff] [blame] | 69 | // Converts an NTP timestamp to a millisecond timestamp. |
Sebastian Jansson | 2a96ab2 | 2019-01-30 20:44:45 +0100 | [diff] [blame] | 70 | int64_t CurrentNtpInMilliseconds() override; |
stefan@webrtc.org | b8e7f4c | 2013-04-12 11:56:23 +0000 | [diff] [blame] | 71 | |
stefan@webrtc.org | 20ed36d | 2013-01-17 14:01:20 +0000 | [diff] [blame] | 72 | // Advance the simulated clock with a given number of milliseconds or |
| 73 | // microseconds. |
stefan@webrtc.org | a678a3b | 2013-01-21 07:42:11 +0000 | [diff] [blame] | 74 | void AdvanceTimeMilliseconds(int64_t milliseconds); |
| 75 | void AdvanceTimeMicroseconds(int64_t microseconds); |
Sebastian Jansson | 4de3115 | 2019-06-11 08:52:11 +0200 | [diff] [blame^] | 76 | void AdvanceTime(TimeDelta delta); |
stefan@webrtc.org | 20ed36d | 2013-01-17 14:01:20 +0000 | [diff] [blame] | 77 | |
| 78 | private: |
Sebastian Jansson | 4de3115 | 2019-06-11 08:52:11 +0200 | [diff] [blame^] | 79 | Timestamp time_; |
kwiberg | bfefb03 | 2016-05-01 14:53:46 -0700 | [diff] [blame] | 80 | std::unique_ptr<RWLockWrapper> lock_; |
stefan@webrtc.org | 20ed36d | 2013-01-17 14:01:20 +0000 | [diff] [blame] | 81 | }; |
| 82 | |
Nico Weber | 22f9925 | 2019-02-20 10:13:16 -0500 | [diff] [blame] | 83 | } // namespace webrtc |
stefan@webrtc.org | 20ed36d | 2013-01-17 14:01:20 +0000 | [diff] [blame] | 84 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 85 | #endif // SYSTEM_WRAPPERS_INCLUDE_CLOCK_H_ |