Branch data Line data Source code
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 <compat/compat.h>
9 : : #include <tinyformat.h>
10 : : #include <util/check.h>
11 : : #include <util/strencodings.h>
12 : :
13 : : #include <atomic>
14 : : #include <chrono>
15 : : #include <optional>
16 : : #include <string>
17 : : #include <string_view>
18 : : #include <thread>
19 : :
20 : 1171 : void UninterruptibleSleep(const std::chrono::microseconds& n) { std::this_thread::sleep_for(n); }
21 : :
22 : : static std::atomic<std::chrono::seconds> g_mock_time{}; //!< For testing
23 : : std::atomic<bool> g_used_system_time{false};
24 : :
25 : 3439509 : NodeClock::time_point NodeClock::now() noexcept
26 : : {
27 [ + + ]: 3439509 : const auto mocktime{g_mock_time.load(std::memory_order_relaxed)};
28 [ + + ]: 3439509 : if (!mocktime.count()) {
29 : 2863554 : g_used_system_time = true;
30 : : }
31 [ + + ]: 3439509 : const auto ret{
32 [ + + ]: 3439509 : mocktime.count() ?
33 : : mocktime :
34 : 3439509 : std::chrono::system_clock::now().time_since_epoch()};
35 [ - + ]: 3439509 : assert(ret > 0s);
36 : 3439509 : return time_point{ret};
37 : : };
38 : :
39 : 9174 : void SetMockTime(int64_t nMockTimeIn) { SetMockTime(std::chrono::seconds{nMockTimeIn}); }
40 : 9800 : void SetMockTime(std::chrono::seconds mock_time_in)
41 : : {
42 : 9800 : Assert(mock_time_in >= 0s);
43 : 9800 : g_mock_time.store(mock_time_in, std::memory_order_relaxed);
44 : 9800 : }
45 : :
46 : 5451618 : std::chrono::seconds GetMockTime()
47 : : {
48 : 5451618 : return g_mock_time.load(std::memory_order_relaxed);
49 : : }
50 : :
51 : 331129 : int64_t GetTime() { return GetTime<std::chrono::seconds>().count(); }
52 : :
53 : 6515322 : std::string FormatISO8601DateTime(int64_t nTime)
54 : : {
55 : 6515322 : const std::chrono::sys_seconds secs{std::chrono::seconds{nTime}};
56 : 6515322 : const auto days{std::chrono::floor<std::chrono::days>(secs)};
57 : 6515322 : const std::chrono::year_month_day ymd{days};
58 : 6515322 : const std::chrono::hh_mm_ss hms{secs - days};
59 : 6515322 : 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());
60 : : }
61 : :
62 : 2430 : std::string FormatISO8601Date(int64_t nTime)
63 : : {
64 : 2430 : const std::chrono::sys_seconds secs{std::chrono::seconds{nTime}};
65 : 2430 : const auto days{std::chrono::floor<std::chrono::days>(secs)};
66 : 2430 : const std::chrono::year_month_day ymd{days};
67 : 2430 : return strprintf("%04i-%02u-%02u", signed{ymd.year()}, unsigned{ymd.month()}, unsigned{ymd.day()});
68 : : }
69 : :
70 : 78 : std::optional<int64_t> ParseISO8601DateTime(std::string_view str)
71 : : {
72 : 78 : constexpr auto FMT_SIZE{std::string_view{"2000-01-01T01:01:01Z"}.size()};
73 [ + + + + : 78 : if (str.size() != FMT_SIZE || str[4] != '-' || str[7] != '-' || str[10] != 'T' || str[13] != ':' || str[16] != ':' || str[19] != 'Z') {
+ + + + +
+ + + +
+ ]
74 : 21 : return {};
75 : : }
76 : 57 : const auto year{ToIntegral<uint16_t>(str.substr(0, 4))};
77 : 57 : const auto month{ToIntegral<uint8_t>(str.substr(5, 2))};
78 : 57 : const auto day{ToIntegral<uint8_t>(str.substr(8, 2))};
79 : 57 : const auto hour{ToIntegral<uint8_t>(str.substr(11, 2))};
80 : 57 : const auto min{ToIntegral<uint8_t>(str.substr(14, 2))};
81 : 57 : const auto sec{ToIntegral<uint8_t>(str.substr(17, 2))};
82 [ + + + + : 57 : if (!year || !month || !day || !hour || !min || !sec) {
+ + + + +
+ + + ]
83 : 28 : return {};
84 : : }
85 [ + + ]: 29 : const std::chrono::year_month_day ymd{std::chrono::year{*year}, std::chrono::month{*month}, std::chrono::day{*day}};
86 [ + + ]: 29 : if (!ymd.ok()) {
87 : 4 : return {};
88 : : }
89 : 25 : const auto time{std::chrono::hours{*hour} + std::chrono::minutes{*min} + std::chrono::seconds{*sec}};
90 : 25 : const auto tp{std::chrono::sys_days{ymd} + time};
91 : 25 : return int64_t{TicksSinceEpoch<std::chrono::seconds>(tp)};
92 : : }
93 : :
94 : 1 : struct timeval MillisToTimeval(int64_t nTimeout)
95 : : {
96 : 1 : struct timeval timeout;
97 : 1 : timeout.tv_sec = nTimeout / 1000;
98 : 1 : timeout.tv_usec = (nTimeout % 1000) * 1000;
99 : 1 : return timeout;
100 : : }
101 : :
102 : 0 : struct timeval MillisToTimeval(std::chrono::milliseconds ms)
103 : : {
104 : 0 : return MillisToTimeval(count_milliseconds(ms));
105 : : }
|