Branch data Line data Source code
1 : : // Copyright (c) 2009-2010 Satoshi Nakamoto
2 : : // Copyright (c) 2009-2022 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 : :
12 : : #include <atomic>
13 : : #include <chrono>
14 : : #include <string>
15 : : #include <thread>
16 : :
17 : 1144 : void UninterruptibleSleep(const std::chrono::microseconds& n) { std::this_thread::sleep_for(n); }
18 : :
19 : : static std::atomic<std::chrono::seconds> g_mock_time{}; //!< For testing
20 : :
21 : 3648814 : NodeClock::time_point NodeClock::now() noexcept
22 : : {
23 [ + + ]: 3648814 : const auto mocktime{g_mock_time.load(std::memory_order_relaxed)};
24 [ + + ]: 3648814 : const auto ret{
25 [ + + ]: 3648814 : mocktime.count() ?
26 : : mocktime :
27 : 3648814 : std::chrono::system_clock::now().time_since_epoch()};
28 [ - + ]: 3648814 : assert(ret > 0s);
29 : 3648814 : return time_point{ret};
30 : : };
31 : :
32 : 8996 : void SetMockTime(int64_t nMockTimeIn) { SetMockTime(std::chrono::seconds{nMockTimeIn}); }
33 : 9602 : void SetMockTime(std::chrono::seconds mock_time_in)
34 : : {
35 : 9602 : Assert(mock_time_in >= 0s);
36 : 9602 : g_mock_time.store(mock_time_in, std::memory_order_relaxed);
37 : 9602 : }
38 : :
39 : 5389805 : std::chrono::seconds GetMockTime()
40 : : {
41 : 5389805 : return g_mock_time.load(std::memory_order_relaxed);
42 : : }
43 : :
44 : 321945 : int64_t GetTime() { return GetTime<std::chrono::seconds>().count(); }
45 : :
46 : 6422248 : std::string FormatISO8601DateTime(int64_t nTime)
47 : : {
48 : 6422248 : const std::chrono::sys_seconds secs{std::chrono::seconds{nTime}};
49 : 6422248 : const auto days{std::chrono::floor<std::chrono::days>(secs)};
50 : 6422248 : const std::chrono::year_month_day ymd{days};
51 : 6422248 : const std::chrono::hh_mm_ss hms{secs - days};
52 : 6422248 : 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());
53 : : }
54 : :
55 : 2366 : std::string FormatISO8601Date(int64_t nTime)
56 : : {
57 : 2366 : const std::chrono::sys_seconds secs{std::chrono::seconds{nTime}};
58 : 2366 : const auto days{std::chrono::floor<std::chrono::days>(secs)};
59 : 2366 : const std::chrono::year_month_day ymd{days};
60 : 2366 : return strprintf("%04i-%02u-%02u", signed{ymd.year()}, unsigned{ymd.month()}, unsigned{ymd.day()});
61 : : }
62 : :
63 : 1 : struct timeval MillisToTimeval(int64_t nTimeout)
64 : : {
65 : 1 : struct timeval timeout;
66 : 1 : timeout.tv_sec = nTimeout / 1000;
67 : 1 : timeout.tv_usec = (nTimeout % 1000) * 1000;
68 : 1 : return timeout;
69 : : }
70 : :
71 : 0 : struct timeval MillisToTimeval(std::chrono::milliseconds ms)
72 : : {
73 : 0 : return MillisToTimeval(count_milliseconds(ms));
74 : : }
|