blob: 09d2785179fe48559eff7c83de1ee96bf5882633 [file] [log] [blame]
stefan@webrtc.org20ed36d2013-01-17 14:01:20 +00001/*
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 Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef SYSTEM_WRAPPERS_INCLUDE_CLOCK_H_
12#define SYSTEM_WRAPPERS_INCLUDE_CLOCK_H_
stefan@webrtc.org20ed36d2013-01-17 14:01:20 +000013
Yves Gerey988cc082018-10-23 12:03:01 +020014#include <stdint.h>
kwibergbfefb032016-05-01 14:53:46 -070015#include <memory>
16
Sebastian Jansson4de31152019-06-11 08:52:11 +020017#include "api/units/timestamp.h"
Karl Wiberg2b857922018-03-23 14:53:54 +010018#include "rtc_base/synchronization/rw_lock_wrapper.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020019#include "system_wrappers/include/ntp_time.h"
stefan@webrtc.org20ed36d2013-01-17 14:01:20 +000020
21namespace webrtc {
22
23// January 1970, in NTP seconds.
24const uint32_t kNtpJan1970 = 2208988800UL;
25
26// Magic NTP fractional unit.
27const double kMagicNtpFractionalUnit = 4.294967296E+9;
28
29// A clock interface that allows reading of absolute and relative timestamps.
30class Clock {
31 public:
32 virtual ~Clock() {}
Sebastian Jansson4de31152019-06-11 08:52:11 +020033 // 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.org20ed36d2013-01-17 14:01:20 +000039
danilchap21dc1892017-03-07 02:51:09 -080040 // Retrieve an NTP absolute timestamp.
Sebastian Jansson2a96ab22019-01-30 20:44:45 +010041 virtual NtpTime CurrentNtpTime() = 0;
stefan@webrtc.org20ed36d2013-01-17 14:01:20 +000042
stefan@webrtc.orgb8e7f4c2013-04-12 11:56:23 +000043 // Retrieve an NTP absolute timestamp in milliseconds.
Sebastian Jansson2a96ab22019-01-30 20:44:45 +010044 virtual int64_t CurrentNtpInMilliseconds() = 0;
stefan@webrtc.orgb8e7f4c2013-04-12 11:56:23 +000045
46 // Converts an NTP timestamp to a millisecond timestamp.
danilchap37953762017-02-09 11:15:25 -080047 static int64_t NtpToMs(uint32_t seconds, uint32_t fractions) {
48 return NtpTime(seconds, fractions).ToMs();
49 }
stefan@webrtc.orgb8e7f4c2013-04-12 11:56:23 +000050
stefan@webrtc.org20ed36d2013-01-17 14:01:20 +000051 // Returns an instance of the real-time system clock implementation.
52 static Clock* GetRealTimeClock();
53};
54
55class SimulatedClock : public Clock {
56 public:
stefan@webrtc.org20ed36d2013-01-17 14:01:20 +000057 explicit SimulatedClock(int64_t initial_time_us);
Sebastian Jansson4de31152019-06-11 08:52:11 +020058 explicit SimulatedClock(Timestamp initial_time);
stefan@webrtc.org20ed36d2013-01-17 14:01:20 +000059
kjellander@webrtc.org14665ff2015-03-04 12:58:35 +000060 ~SimulatedClock() override;
stefan@webrtc.org20ed36d2013-01-17 14:01:20 +000061
Sebastian Jansson4de31152019-06-11 08:52:11 +020062 // Return a timestamp relative to some arbitrary source; the source is fixed
63 // for this clock.
64 Timestamp CurrentTime() override;
stefan@webrtc.org20ed36d2013-01-17 14:01:20 +000065
danilchap21dc1892017-03-07 02:51:09 -080066 // Retrieve an NTP absolute timestamp.
Sebastian Jansson2a96ab22019-01-30 20:44:45 +010067 NtpTime CurrentNtpTime() override;
stefan@webrtc.org20ed36d2013-01-17 14:01:20 +000068
stefan@webrtc.orgb8e7f4c2013-04-12 11:56:23 +000069 // Converts an NTP timestamp to a millisecond timestamp.
Sebastian Jansson2a96ab22019-01-30 20:44:45 +010070 int64_t CurrentNtpInMilliseconds() override;
stefan@webrtc.orgb8e7f4c2013-04-12 11:56:23 +000071
stefan@webrtc.org20ed36d2013-01-17 14:01:20 +000072 // Advance the simulated clock with a given number of milliseconds or
73 // microseconds.
stefan@webrtc.orga678a3b2013-01-21 07:42:11 +000074 void AdvanceTimeMilliseconds(int64_t milliseconds);
75 void AdvanceTimeMicroseconds(int64_t microseconds);
Sebastian Jansson4de31152019-06-11 08:52:11 +020076 void AdvanceTime(TimeDelta delta);
stefan@webrtc.org20ed36d2013-01-17 14:01:20 +000077
78 private:
Sebastian Jansson4de31152019-06-11 08:52:11 +020079 Timestamp time_;
kwibergbfefb032016-05-01 14:53:46 -070080 std::unique_ptr<RWLockWrapper> lock_;
stefan@webrtc.org20ed36d2013-01-17 14:01:20 +000081};
82
Nico Weber22f99252019-02-20 10:13:16 -050083} // namespace webrtc
stefan@webrtc.org20ed36d2013-01-17 14:01:20 +000084
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020085#endif // SYSTEM_WRAPPERS_INCLUDE_CLOCK_H_