/tmp/bitcoin/src/util/time.cpp
Line | Count | Source |
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 | | #include <util/time.h> |
7 | | |
8 | | #include <tinyformat.h> |
9 | | #include <util/check.h> |
10 | | #include <util/strencodings.h> |
11 | | |
12 | | #include <array> |
13 | | #include <atomic> |
14 | | #include <chrono> |
15 | | #include <compare> |
16 | | #include <optional> |
17 | | #include <string> |
18 | | #include <string_view> |
19 | | #include <thread> |
20 | | |
21 | | #ifdef WIN32 |
22 | | #include <winsock2.h> |
23 | | #else |
24 | | #include <sys/time.h> |
25 | | #endif |
26 | | |
27 | | static constexpr std::array<std::string_view, 7> weekdays{"Thu", "Fri", "Sat", "Sun", "Mon", "Tue", "Wed"}; // 1970-01-01 was a Thursday. |
28 | | static constexpr std::array<std::string_view, 12> months{"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"}; |
29 | | |
30 | 1.07k | void UninterruptibleSleep(const std::chrono::microseconds& n) { std::this_thread::sleep_for(n); } |
31 | | |
32 | | static std::atomic<std::chrono::seconds> g_mock_time{}; //!< For testing |
33 | | std::atomic<bool> g_used_system_time{false}; |
34 | | static std::atomic<MockableSteadyClock::mock_time_point::duration> g_mock_steady_time{}; //!< For testing |
35 | | |
36 | | static_assert(NodeClock::epoch.time_since_epoch().count() == 0); |
37 | | |
38 | | NodeClock::time_point NodeClock::now() noexcept |
39 | 3.86M | { |
40 | 3.86M | const auto mocktime{g_mock_time.load(std::memory_order_relaxed)}; |
41 | 3.86M | if (!mocktime.count()) { |
42 | 3.05M | g_used_system_time = true; |
43 | 3.05M | } |
44 | 3.86M | const auto ret{ |
45 | 3.86M | mocktime.count() ? |
46 | 806k | mocktime : |
47 | 3.86M | std::chrono::system_clock::now().time_since_epoch()}; |
48 | 3.86M | assert(ret > 0s); |
49 | 3.86M | return time_point{ret}; |
50 | 3.86M | }; |
51 | | |
52 | 8.50k | void SetMockTime(std::chrono::time_point<NodeClock, std::chrono::seconds> mock) { SetMockTime(mock.time_since_epoch()); } |
53 | | void SetMockTime(std::chrono::seconds mock_time_in) |
54 | 10.8k | { |
55 | 10.8k | Assert(mock_time_in >= 0s); |
56 | 10.8k | g_mock_time.store(mock_time_in, std::memory_order_relaxed); |
57 | 10.8k | } |
58 | | |
59 | | std::chrono::seconds GetMockTime() |
60 | 5.76M | { |
61 | 5.76M | return g_mock_time.load(std::memory_order_relaxed); |
62 | 5.76M | } |
63 | | |
64 | | MockableSteadyClock::time_point MockableSteadyClock::now() noexcept |
65 | 38 | { |
66 | 38 | const auto mocktime{g_mock_steady_time.load(std::memory_order_relaxed)}; |
67 | 38 | if (!mocktime.count()) { |
68 | 6 | g_used_system_time = true; |
69 | 6 | } |
70 | 38 | const auto ret{ |
71 | 38 | mocktime.count() ? |
72 | 32 | mocktime : |
73 | 38 | std::chrono::steady_clock::now().time_since_epoch()}; |
74 | 38 | return time_point{ret}; |
75 | 38 | }; |
76 | | |
77 | | void MockableSteadyClock::SetMockTime(mock_time_point::duration mock_time_in) |
78 | 27 | { |
79 | 27 | Assert(mock_time_in >= 0s); |
80 | 27 | g_mock_steady_time.store(mock_time_in, std::memory_order_relaxed); |
81 | 27 | } |
82 | | |
83 | | void MockableSteadyClock::ClearMockTime() |
84 | 21 | { |
85 | 21 | g_mock_steady_time.store(0ms, std::memory_order_relaxed); |
86 | 21 | } |
87 | | |
88 | 315k | int64_t GetTime() { return GetTime<std::chrono::seconds>().count(); } |
89 | | |
90 | | std::string FormatISO8601DateTime(int64_t nTime) |
91 | 6.96M | { |
92 | 6.96M | const std::chrono::sys_seconds secs{std::chrono::seconds{nTime}}; |
93 | 6.96M | const auto days{std::chrono::floor<std::chrono::days>(secs)}; |
94 | 6.96M | const std::chrono::year_month_day ymd{days}; |
95 | 6.96M | const std::chrono::hh_mm_ss hms{secs - days}; |
96 | 6.96M | return strprintf("%04i-%02u-%02uT%02i:%02i:%02iZ", signed{ymd.year()}, unsigned{ymd.month()}, unsigned{ymd.day()}, hms.hours().count(), hms.minutes().count(), hms.seconds().count()); |
97 | 6.96M | } |
98 | | |
99 | | std::string FormatISO8601Date(int64_t nTime) |
100 | 2.60k | { |
101 | 2.60k | const std::chrono::sys_seconds secs{std::chrono::seconds{nTime}}; |
102 | 2.60k | const auto days{std::chrono::floor<std::chrono::days>(secs)}; |
103 | 2.60k | const std::chrono::year_month_day ymd{days}; |
104 | 2.60k | return strprintf("%04i-%02u-%02u", signed{ymd.year()}, unsigned{ymd.month()}, unsigned{ymd.day()}); |
105 | 2.60k | } |
106 | | |
107 | | std::optional<int64_t> ParseISO8601DateTime(std::string_view str) |
108 | 76 | { |
109 | 76 | constexpr auto FMT_SIZE{std::string_view{"2000-01-01T01:01:01Z"}.size()}; |
110 | 76 | if (str.size() != FMT_SIZE || str[4] != '-' || str[7] != '-' || str[10] != 'T' || str[13] != ':' || str[16] != ':' || str[19] != 'Z') { |
111 | 20 | return {}; |
112 | 20 | } |
113 | 56 | const auto year{ToIntegral<uint16_t>(str.substr(0, 4))}; |
114 | 56 | const auto month{ToIntegral<uint8_t>(str.substr(5, 2))}; |
115 | 56 | const auto day{ToIntegral<uint8_t>(str.substr(8, 2))}; |
116 | 56 | const auto hour{ToIntegral<uint8_t>(str.substr(11, 2))}; |
117 | 56 | const auto min{ToIntegral<uint8_t>(str.substr(14, 2))}; |
118 | 56 | const auto sec{ToIntegral<uint8_t>(str.substr(17, 2))}; |
119 | 56 | if (!year || !month || !day || !hour || !min || !sec) { |
120 | 28 | return {}; |
121 | 28 | } |
122 | 28 | const std::chrono::year_month_day ymd{std::chrono::year{*year}, std::chrono::month{*month}, std::chrono::day{*day}}; |
123 | 28 | if (!ymd.ok()) { |
124 | 4 | return {}; |
125 | 4 | } |
126 | 24 | const auto time{std::chrono::hours{*hour} + std::chrono::minutes{*min} + std::chrono::seconds{*sec}}; |
127 | 24 | const auto tp{std::chrono::sys_days{ymd} + time}; |
128 | 24 | return int64_t{TicksSinceEpoch<std::chrono::seconds>(tp)}; |
129 | 28 | } |
130 | | |
131 | | std::string FormatRFC1123DateTime(int64_t time) |
132 | 186k | { |
133 | 186k | if (time < -62167219200 || 253402300799 < time) { |
134 | | // 4-digit year, so only support years 0 to 9999 |
135 | 6 | return ""; |
136 | 6 | } |
137 | 186k | const std::chrono::sys_seconds secs{std::chrono::seconds{time}}; |
138 | 186k | const auto days{std::chrono::floor<std::chrono::days>(secs)}; |
139 | 186k | const auto w{days.time_since_epoch().count() % 7}; // will be in the range [-6, 6] |
140 | 186k | std::string_view weekday{weekdays.at(w >= 0 ? w : w + 7)}; |
141 | 186k | const std::chrono::year_month_day ymd{days}; |
142 | 186k | std::string_view month{months.at(unsigned{ymd.month()} - 1)}; |
143 | 186k | const std::chrono::hh_mm_ss hms{secs - days}; |
144 | | // examples: Mon, 27 Jul 2009 12:28:53 GMT |
145 | | // Fri, 31 May 2024 19:18:04 GMT |
146 | 186k | return strprintf("%03s, %02u %03s %04i %02i:%02i:%02i GMT", weekday, unsigned{ymd.day()}, month, signed{ymd.year()}, hms.hours().count(), hms.minutes().count(), hms.seconds().count()); |
147 | 186k | } |
148 | | |
149 | | struct timeval MillisToTimeval(int64_t nTimeout) |
150 | 0 | { |
151 | 0 | struct timeval timeout; |
152 | 0 | timeout.tv_sec = nTimeout / 1000; |
153 | 0 | timeout.tv_usec = (nTimeout % 1000) * 1000; |
154 | 0 | return timeout; |
155 | 0 | } |
156 | | |
157 | | struct timeval MillisToTimeval(std::chrono::milliseconds ms) |
158 | 0 | { |
159 | 0 | return MillisToTimeval(count_milliseconds(ms)); |
160 | 0 | } |