LCOV - code coverage report
Current view: top level - src/util - time.cpp (source / functions) Coverage Total Hit
Test: fuzz_coverage.info Lines: 90.7 % 54 49
Test Date: 2025-01-22 04:09:46 Functions: 81.8 % 11 9
Branches: 67.5 % 40 27

             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                 :           0 : 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                 :    21397037 : NodeClock::time_point NodeClock::now() noexcept
      26                 :             : {
      27         [ +  + ]:    21397037 :     const auto mocktime{g_mock_time.load(std::memory_order_relaxed)};
      28         [ +  + ]:    21397037 :     if (!mocktime.count()) {
      29                 :       16786 :         g_used_system_time = true;
      30                 :             :     }
      31         [ +  + ]:    21397037 :     const auto ret{
      32         [ +  + ]:    21397037 :         mocktime.count() ?
      33                 :             :             mocktime :
      34                 :    21397037 :             std::chrono::system_clock::now().time_since_epoch()};
      35         [ -  + ]:    21397037 :     assert(ret > 0s);
      36                 :    21397037 :     return time_point{ret};
      37                 :             : };
      38                 :             : 
      39                 :      645826 : void SetMockTime(int64_t nMockTimeIn) { SetMockTime(std::chrono::seconds{nMockTimeIn}); }
      40                 :      824630 : void SetMockTime(std::chrono::seconds mock_time_in)
      41                 :             : {
      42                 :      824630 :     Assert(mock_time_in >= 0s);
      43                 :      824630 :     g_mock_time.store(mock_time_in, std::memory_order_relaxed);
      44                 :      824630 : }
      45                 :             : 
      46                 :     5068766 : std::chrono::seconds GetMockTime()
      47                 :             : {
      48                 :     5068766 :     return g_mock_time.load(std::memory_order_relaxed);
      49                 :             : }
      50                 :             : 
      51                 :     1843056 : int64_t GetTime() { return GetTime<std::chrono::seconds>().count(); }
      52                 :             : 
      53                 :    10260973 : std::string FormatISO8601DateTime(int64_t nTime)
      54                 :             : {
      55                 :    10260973 :     const std::chrono::sys_seconds secs{std::chrono::seconds{nTime}};
      56                 :    10260973 :     const auto days{std::chrono::floor<std::chrono::days>(secs)};
      57                 :    10260973 :     const std::chrono::year_month_day ymd{days};
      58                 :    10260973 :     const std::chrono::hh_mm_ss hms{secs - days};
      59                 :    10260973 :     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                 :        4197 : std::string FormatISO8601Date(int64_t nTime)
      63                 :             : {
      64                 :        4197 :     const std::chrono::sys_seconds secs{std::chrono::seconds{nTime}};
      65                 :        4197 :     const auto days{std::chrono::floor<std::chrono::days>(secs)};
      66                 :        4197 :     const std::chrono::year_month_day ymd{days};
      67                 :        4197 :     return strprintf("%04i-%02u-%02u", signed{ymd.year()}, unsigned{ymd.month()}, unsigned{ymd.day()});
      68                 :             : }
      69                 :             : 
      70                 :         296 : std::optional<int64_t> ParseISO8601DateTime(std::string_view str)
      71                 :             : {
      72                 :         296 :     constexpr auto FMT_SIZE{std::string_view{"2000-01-01T01:01:01Z"}.size()};
      73   [ +  +  +  +  :         296 :     if (str.size() != FMT_SIZE || str[4] != '-' || str[7] != '-' || str[10] != 'T' || str[13] != ':' || str[16] != ':' || str[19] != 'Z') {
          +  +  +  -  +  
             -  +  -  -  
                      + ]
      74                 :         115 :         return {};
      75                 :             :     }
      76                 :         181 :     const auto year{ToIntegral<uint16_t>(str.substr(0, 4))};
      77                 :         181 :     const auto month{ToIntegral<uint8_t>(str.substr(5, 2))};
      78                 :         181 :     const auto day{ToIntegral<uint8_t>(str.substr(8, 2))};
      79                 :         181 :     const auto hour{ToIntegral<uint8_t>(str.substr(11, 2))};
      80                 :         181 :     const auto min{ToIntegral<uint8_t>(str.substr(14, 2))};
      81                 :         181 :     const auto sec{ToIntegral<uint8_t>(str.substr(17, 2))};
      82   [ +  -  +  -  :         181 :     if (!year || !month || !day || !hour || !min || !sec) {
          +  -  +  -  +  
                -  +  - ]
      83                 :           0 :         return {};
      84                 :             :     }
      85         [ -  + ]:         181 :     const std::chrono::year_month_day ymd{std::chrono::year{*year}, std::chrono::month{*month}, std::chrono::day{*day}};
      86         [ -  + ]:         181 :     if (!ymd.ok()) {
      87                 :           0 :         return {};
      88                 :             :     }
      89                 :         181 :     const auto time{std::chrono::hours{*hour} + std::chrono::minutes{*min} + std::chrono::seconds{*sec}};
      90                 :         181 :     const auto tp{std::chrono::sys_days{ymd} + time};
      91                 :         181 :     return int64_t{TicksSinceEpoch<std::chrono::seconds>(tp)};
      92                 :             : }
      93                 :             : 
      94                 :         448 : struct timeval MillisToTimeval(int64_t nTimeout)
      95                 :             : {
      96                 :         448 :     struct timeval timeout;
      97                 :         448 :     timeout.tv_sec  = nTimeout / 1000;
      98                 :         448 :     timeout.tv_usec = (nTimeout % 1000) * 1000;
      99                 :         448 :     return timeout;
     100                 :             : }
     101                 :             : 
     102                 :           0 : struct timeval MillisToTimeval(std::chrono::milliseconds ms)
     103                 :             : {
     104                 :           0 :     return MillisToTimeval(count_milliseconds(ms));
     105                 :             : }
        

Generated by: LCOV version 2.0-1