Bitcoin Core 31.99.0
P2P Digital Currency
time.h
Go to the documentation of this file.
1// Copyright (c) 2009-2010 Satoshi Nakamoto
2// Copyright (c) 2009-present The Bitcoin Core developers
3// Distributed under the MIT software license, see the accompanying
4// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6#ifndef BITCOIN_UTIL_TIME_H
7#define BITCOIN_UTIL_TIME_H
8
9// The `util/time.h` header is designed to be a drop-in replacement for `chrono`.
10#include <chrono> // IWYU pragma: export
11#include <cstdint>
12#include <optional>
13#include <string>
14#include <string_view>
15
16using namespace std::chrono_literals;
17
20struct NodeClock : public std::chrono::system_clock {
21 using time_point = std::chrono::time_point<NodeClock>;
23 static time_point now() noexcept;
24 static std::time_t to_time_t(const time_point&) = delete; // unused
25 static time_point from_time_t(std::time_t) = delete; // unused
26};
27using NodeSeconds = std::chrono::time_point<NodeClock, std::chrono::seconds>;
28
29using SteadyClock = std::chrono::steady_clock;
30using SteadySeconds = std::chrono::time_point<std::chrono::steady_clock, std::chrono::seconds>;
31using SteadyMilliseconds = std::chrono::time_point<std::chrono::steady_clock, std::chrono::milliseconds>;
32using SteadyMicroseconds = std::chrono::time_point<std::chrono::steady_clock, std::chrono::microseconds>;
33
34using SystemClock = std::chrono::system_clock;
35
39struct MockableSteadyClock : public std::chrono::steady_clock {
40 using time_point = std::chrono::time_point<MockableSteadyClock>;
41
42 using mock_time_point = std::chrono::time_point<MockableSteadyClock, std::chrono::milliseconds>;
43 static constexpr mock_time_point::duration INITIAL_MOCK_TIME{1};
44
46 static time_point now() noexcept;
47 static std::time_t to_time_t(const time_point&) = delete; // unused
48 static time_point from_time_t(std::time_t) = delete; // unused
49
55 static void SetMockTime(mock_time_point::duration mock_time_in);
56
58 static void ClearMockTime();
59};
60
61void UninterruptibleSleep(const std::chrono::microseconds& n);
62
73template <typename Dur1, typename Dur2>
74constexpr auto Ticks(Dur2 d)
75{
76 return std::chrono::duration_cast<Dur1>(d).count();
77}
78
79template <typename Duration>
80constexpr int64_t TicksSeconds(Duration d)
81{
82 return int64_t{Ticks<std::chrono::seconds>(d)};
83}
84template <typename Duration, typename Timepoint>
85constexpr auto TicksSinceEpoch(Timepoint t)
86{
87 return Ticks<Duration>(t.time_since_epoch());
88}
89constexpr int64_t count_seconds(std::chrono::seconds t) { return t.count(); }
90constexpr int64_t count_milliseconds(std::chrono::milliseconds t) { return t.count(); }
91constexpr int64_t count_microseconds(std::chrono::microseconds t) { return t.count(); }
92
93using HoursDouble = std::chrono::duration<double, std::chrono::hours::period>;
94using SecondsDouble = std::chrono::duration<double, std::chrono::seconds::period>;
95using MillisecondsDouble = std::chrono::duration<double, std::chrono::milliseconds::period>;
96
105int64_t GetTime();
106
113void SetMockTime(int64_t nMockTimeIn);
114
116void SetMockTime(std::chrono::seconds mock_time_in);
117void SetMockTime(std::chrono::time_point<NodeClock, std::chrono::seconds> mock);
118
120std::chrono::seconds GetMockTime();
121
126template <typename T>
128{
129 return std::chrono::time_point_cast<typename T::duration>(T::clock::now());
130}
132template <typename T>
134{
135 return Now<std::chrono::time_point<NodeClock, T>>().time_since_epoch();
136}
137
142std::string FormatISO8601DateTime(int64_t nTime);
143std::string FormatISO8601Date(int64_t nTime);
144std::optional<int64_t> ParseISO8601DateTime(std::string_view str);
145
150std::string FormatRFC1123DateTime(int64_t nTime);
151
155struct timeval MillisToTimeval(int64_t nTimeout);
156
160struct timeval MillisToTimeval(std::chrono::milliseconds ms);
161
162#endif // BITCOIN_UTIL_TIME_H
Definition: common.h:29
Version of SteadyClock that is mockable in the context of tests (via SteadyClockContext,...
Definition: time.h:39
std::chrono::time_point< MockableSteadyClock, std::chrono::milliseconds > mock_time_point
Definition: time.h:42
std::chrono::time_point< MockableSteadyClock > time_point
Definition: time.h:40
Version of the system clock that is mockable in the context of tests (via NodeClockContext or SetMock...
Definition: time.h:20
static time_point now() noexcept
Return current system time or mocked time, if set.
Definition: time.cpp:30
std::chrono::time_point< NodeClock > time_point
Definition: time.h:21
static std::time_t to_time_t(const time_point &)=delete
static time_point from_time_t(std::time_t)=delete
constexpr int64_t count_milliseconds(std::chrono::milliseconds t)
Definition: time.h:90
struct timeval MillisToTimeval(int64_t nTimeout)
Convert milliseconds to a struct timeval for e.g.
Definition: time.cpp:142
std::chrono::duration< double, std::chrono::seconds::period > SecondsDouble
Definition: time.h:94
std::chrono::duration< double, std::chrono::hours::period > HoursDouble
Definition: time.h:93
std::chrono::steady_clock SteadyClock
Definition: time.h:29
std::chrono::duration< double, std::chrono::milliseconds::period > MillisecondsDouble
Definition: time.h:95
void UninterruptibleSleep(const std::chrono::microseconds &n)
Definition: time.cpp:24
constexpr int64_t TicksSeconds(Duration d)
Definition: time.h:80
std::chrono::seconds GetMockTime()
For testing.
Definition: time.cpp:52
int64_t GetTime()
DEPRECATED Use either ClockType::now() or Now<TimePointType>() if a cast is needed.
Definition: time.cpp:81
constexpr auto TicksSinceEpoch(Timepoint t)
Definition: time.h:85
std::string FormatISO8601Date(int64_t nTime)
Definition: time.cpp:92
void SetMockTime(int64_t nMockTimeIn)
DEPRECATED Use SetMockTime with chrono type.
Definition: time.cpp:44
T Now()
Return the current time point cast to the given precision.
Definition: time.h:127
std::chrono::system_clock SystemClock
Definition: time.h:34
constexpr int64_t count_microseconds(std::chrono::microseconds t)
Definition: time.h:91
constexpr int64_t count_seconds(std::chrono::seconds t)
Definition: time.h:89
std::chrono::time_point< std::chrono::steady_clock, std::chrono::microseconds > SteadyMicroseconds
Definition: time.h:32
std::chrono::time_point< NodeClock, std::chrono::seconds > NodeSeconds
Definition: time.h:27
std::optional< int64_t > ParseISO8601DateTime(std::string_view str)
Definition: time.cpp:100
std::chrono::time_point< std::chrono::steady_clock, std::chrono::seconds > SteadySeconds
Definition: time.h:30
constexpr auto Ticks(Dur2 d)
Helper to count the seconds of a duration/time_point.
Definition: time.h:74
std::string FormatISO8601DateTime(int64_t nTime)
ISO 8601 formatting is preferred.
Definition: time.cpp:83
std::string FormatRFC1123DateTime(int64_t nTime)
RFC1123 formatting https://www.rfc-editor.org/rfc/rfc1123#section-5.2.14 Used in HTTP/1....
Definition: time.cpp:124
std::chrono::time_point< std::chrono::steady_clock, std::chrono::milliseconds > SteadyMilliseconds
Definition: time.h:31