Bitcoin Core 30.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#include <chrono> // IWYU pragma: export
10#include <cstdint>
11#include <optional>
12#include <string>
13#include <string_view>
14
15using namespace std::chrono_literals;
16
18struct NodeClock : public std::chrono::system_clock {
19 using time_point = std::chrono::time_point<NodeClock>;
21 static time_point now() noexcept;
22 static std::time_t to_time_t(const time_point&) = delete; // unused
23 static time_point from_time_t(std::time_t) = delete; // unused
24};
25using NodeSeconds = std::chrono::time_point<NodeClock, std::chrono::seconds>;
26
27using SteadyClock = std::chrono::steady_clock;
28using SteadySeconds = std::chrono::time_point<std::chrono::steady_clock, std::chrono::seconds>;
29using SteadyMilliseconds = std::chrono::time_point<std::chrono::steady_clock, std::chrono::milliseconds>;
30using SteadyMicroseconds = std::chrono::time_point<std::chrono::steady_clock, std::chrono::microseconds>;
31
32using SystemClock = std::chrono::system_clock;
33
38struct MockableSteadyClock : public std::chrono::steady_clock {
39 using time_point = std::chrono::time_point<MockableSteadyClock>;
40
41 using mock_time_point = std::chrono::time_point<MockableSteadyClock, std::chrono::milliseconds>;
42 static constexpr mock_time_point::duration INITIAL_MOCK_TIME{1};
43
45 static time_point now() noexcept;
46 static std::time_t to_time_t(const time_point&) = delete; // unused
47 static time_point from_time_t(std::time_t) = delete; // unused
48
54 static void SetMockTime(mock_time_point::duration mock_time_in);
55
57 static void ClearMockTime();
58};
59
60void UninterruptibleSleep(const std::chrono::microseconds& n);
61
72template <typename Dur1, typename Dur2>
73constexpr auto Ticks(Dur2 d)
74{
75 return std::chrono::duration_cast<Dur1>(d).count();
76}
77
78template <typename Duration>
79constexpr int64_t TicksSeconds(Duration d)
80{
81 return int64_t{Ticks<std::chrono::seconds>(d)};
82}
83template <typename Duration, typename Timepoint>
84constexpr auto TicksSinceEpoch(Timepoint t)
85{
86 return Ticks<Duration>(t.time_since_epoch());
87}
88constexpr int64_t count_seconds(std::chrono::seconds t) { return t.count(); }
89constexpr int64_t count_milliseconds(std::chrono::milliseconds t) { return t.count(); }
90constexpr int64_t count_microseconds(std::chrono::microseconds t) { return t.count(); }
91
92using HoursDouble = std::chrono::duration<double, std::chrono::hours::period>;
93using SecondsDouble = std::chrono::duration<double, std::chrono::seconds::period>;
94using MillisecondsDouble = std::chrono::duration<double, std::chrono::milliseconds::period>;
95
104int64_t GetTime();
105
112void SetMockTime(int64_t nMockTimeIn);
113
115void SetMockTime(std::chrono::seconds mock_time_in);
116void SetMockTime(std::chrono::time_point<NodeClock, std::chrono::seconds> mock);
117
119std::chrono::seconds GetMockTime();
120
125template <typename T>
127{
128 return std::chrono::time_point_cast<typename T::duration>(T::clock::now());
129}
131template <typename T>
133{
134 return Now<std::chrono::time_point<NodeClock, T>>().time_since_epoch();
135}
136
141std::string FormatISO8601DateTime(int64_t nTime);
142std::string FormatISO8601Date(int64_t nTime);
143std::optional<int64_t> ParseISO8601DateTime(std::string_view str);
144
149std::string FormatRFC1123DateTime(int64_t nTime);
150
154struct timeval MillisToTimeval(int64_t nTimeout);
155
159struct timeval MillisToTimeval(std::chrono::milliseconds ms);
160
161#endif // BITCOIN_UTIL_TIME_H
Version of SteadyClock that is mockable in the context of tests (set the current value with SetMockTi...
Definition: time.h:38
std::chrono::time_point< MockableSteadyClock, std::chrono::milliseconds > mock_time_point
Definition: time.h:41
std::chrono::time_point< MockableSteadyClock > time_point
Definition: time.h:39
Mockable clock in the context of tests, otherwise the system clock.
Definition: time.h:18
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:19
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:89
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:93
std::chrono::duration< double, std::chrono::hours::period > HoursDouble
Definition: time.h:92
std::chrono::steady_clock SteadyClock
Definition: time.h:27
std::chrono::duration< double, std::chrono::milliseconds::period > MillisecondsDouble
Definition: time.h:94
void UninterruptibleSleep(const std::chrono::microseconds &n)
Definition: time.cpp:24
constexpr int64_t TicksSeconds(Duration d)
Definition: time.h:79
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:84
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:126
std::chrono::system_clock SystemClock
Definition: time.h:32
constexpr int64_t count_microseconds(std::chrono::microseconds t)
Definition: time.h:90
constexpr int64_t count_seconds(std::chrono::seconds t)
Definition: time.h:88
std::chrono::time_point< std::chrono::steady_clock, std::chrono::microseconds > SteadyMicroseconds
Definition: time.h:30
std::chrono::time_point< NodeClock, std::chrono::seconds > NodeSeconds
Definition: time.h:25
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:28
constexpr auto Ticks(Dur2 d)
Helper to count the seconds of a duration/time_point.
Definition: time.h:73
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:29