blob: ce3269137a90f09508d085277fa84c73fe76bff3 [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
11#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CLOCK_H_
12#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CLOCK_H_
13
14#include "webrtc/typedefs.h"
15
16namespace webrtc {
17
18// January 1970, in NTP seconds.
19const uint32_t kNtpJan1970 = 2208988800UL;
20
21// Magic NTP fractional unit.
22const double kMagicNtpFractionalUnit = 4.294967296E+9;
23
24// A clock interface that allows reading of absolute and relative timestamps.
25class Clock {
26 public:
27 virtual ~Clock() {}
28
29 // Return a timestamp in milliseconds relative to some arbitrary source; the
30 // source is fixed for this clock.
31 virtual int64_t TimeInMilliseconds() = 0;
32
33 // Return a timestamp in microseconds relative to some arbitrary source; the
34 // source is fixed for this clock.
35 virtual int64_t TimeInMicroseconds() = 0;
36
stefan@webrtc.orgb8e7f4c2013-04-12 11:56:23 +000037 // Retrieve an NTP absolute timestamp in seconds and fractions of a second.
stefan@webrtc.org20ed36d2013-01-17 14:01:20 +000038 virtual void CurrentNtp(uint32_t& seconds, uint32_t& fractions) = 0;
39
stefan@webrtc.orgb8e7f4c2013-04-12 11:56:23 +000040 // Retrieve an NTP absolute timestamp in milliseconds.
41 virtual int64_t CurrentNtpInMilliseconds() = 0;
42
43 // Converts an NTP timestamp to a millisecond timestamp.
44 static int64_t NtpToMs(uint32_t seconds, uint32_t fractions);
45
stefan@webrtc.org20ed36d2013-01-17 14:01:20 +000046 // Returns an instance of the real-time system clock implementation.
47 static Clock* GetRealTimeClock();
48};
49
50class SimulatedClock : public Clock {
51 public:
stefan@webrtc.org20ed36d2013-01-17 14:01:20 +000052 explicit SimulatedClock(int64_t initial_time_us);
53
54 virtual ~SimulatedClock() {}
55
56 // Return a timestamp in milliseconds relative to some arbitrary source; the
57 // source is fixed for this clock.
pbos@webrtc.orga2a27182013-08-01 17:26:15 +000058 virtual int64_t TimeInMilliseconds() OVERRIDE;
stefan@webrtc.org20ed36d2013-01-17 14:01:20 +000059
60 // Return a timestamp in microseconds relative to some arbitrary source; the
61 // source is fixed for this clock.
pbos@webrtc.orga2a27182013-08-01 17:26:15 +000062 virtual int64_t TimeInMicroseconds() OVERRIDE;
stefan@webrtc.org20ed36d2013-01-17 14:01:20 +000063
stefan@webrtc.orgb8e7f4c2013-04-12 11:56:23 +000064 // Retrieve an NTP absolute timestamp in milliseconds.
pbos@webrtc.orga2a27182013-08-01 17:26:15 +000065 virtual void CurrentNtp(uint32_t& seconds, uint32_t& fractions) OVERRIDE;
stefan@webrtc.org20ed36d2013-01-17 14:01:20 +000066
stefan@webrtc.orgb8e7f4c2013-04-12 11:56:23 +000067 // Converts an NTP timestamp to a millisecond timestamp.
pbos@webrtc.orga2a27182013-08-01 17:26:15 +000068 virtual int64_t CurrentNtpInMilliseconds() OVERRIDE;
stefan@webrtc.orgb8e7f4c2013-04-12 11:56:23 +000069
stefan@webrtc.org20ed36d2013-01-17 14:01:20 +000070 // Advance the simulated clock with a given number of milliseconds or
71 // microseconds.
stefan@webrtc.orga678a3b2013-01-21 07:42:11 +000072 void AdvanceTimeMilliseconds(int64_t milliseconds);
73 void AdvanceTimeMicroseconds(int64_t microseconds);
stefan@webrtc.org20ed36d2013-01-17 14:01:20 +000074
75 private:
76 int64_t time_us_;
77};
78
79}; // namespace webrtc
80
81#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CLOCK_H_