#include <compat.h>
#include <chrono>
#include <cstdint>
#include <string>
Go to the source code of this file.
|
using | SecondsDouble = std::chrono::duration< double, std::chrono::seconds::period > |
|
◆ SecondsDouble
using SecondsDouble = std::chrono::duration<double, std::chrono::seconds::period> |
◆ ChronoSanityCheck()
bool ChronoSanityCheck |
( |
| ) |
|
Sanity check epoch match normal Unix epoch.
Definition at line 30 of file time.cpp.
◆ count_microseconds()
constexpr int64_t count_microseconds |
( |
std::chrono::microseconds |
t | ) |
|
|
constexpr |
◆ count_milliseconds()
constexpr int64_t count_milliseconds |
( |
std::chrono::milliseconds |
t | ) |
|
|
constexpr |
◆ count_seconds()
constexpr int64_t count_seconds |
( |
std::chrono::seconds |
t | ) |
|
|
constexpr |
Helper to count the seconds of a duration.
All durations should be using std::chrono and calling this should generally be avoided in code. Though, it is still preferred to an inline t.count() to protect against a reliance on the exact type of t.
This helper is used to convert durations before passing them over an interface that doesn't support std::chrono (e.g. RPC, debug log, or the GUI)
Definition at line 29 of file time.h.
◆ CountSecondsDouble()
Helper to count the seconds in any std::chrono::duration type.
Definition at line 45 of file time.h.
◆ FormatISO8601Date()
std::string FormatISO8601Date |
( |
int64_t |
nTime | ) |
|
◆ FormatISO8601DateTime()
std::string FormatISO8601DateTime |
( |
int64_t |
nTime | ) |
|
ISO 8601 formatting is preferred.
Use the FormatISO8601{DateTime,Date} helper functions if possible.
Definition at line 122 of file time.cpp.
◆ GetMockTime()
std::chrono::seconds GetMockTime |
( |
| ) |
|
◆ GetTime()
DEPRECATED Use either GetTimeSeconds (not mockable) or GetTime<T> (mockable)
Return system time (or mocked time, if set)
DEPRECATED Use either GetTimeSeconds (not mockable) or GetTime<T> (mockable)
Definition at line 71 of file time.cpp.
◆ GetTimeMicros()
int64_t GetTimeMicros |
( |
| ) |
|
Returns the system time (not mockable)
Definition at line 110 of file time.cpp.
◆ GetTimeMillis()
int64_t GetTimeMillis |
( |
| ) |
|
Returns the system time (not mockable)
Definition at line 106 of file time.cpp.
◆ GetTimeSeconds()
int64_t GetTimeSeconds |
( |
| ) |
|
Returns the system time (not mockable)
Definition at line 114 of file time.cpp.
◆ MillisToTimeval() [1/2]
struct timeval MillisToTimeval |
( |
int64_t |
nTimeout | ) |
|
Convert milliseconds to a struct timeval for e.g.
select.
Definition at line 151 of file time.cpp.
◆ MillisToTimeval() [2/2]
struct timeval MillisToTimeval |
( |
std::chrono::milliseconds |
ms | ) |
|
Convert milliseconds to a struct timeval for e.g.
select.
Definition at line 151 of file time.cpp.
◆ ParseISO8601DateTime()
int64_t ParseISO8601DateTime |
( |
const std::string & |
str | ) |
|
◆ SetMockTime() [1/2]
void SetMockTime |
( |
int64_t |
nMockTimeIn | ) |
|
DEPRECATED Use SetMockTime with chrono type.
- Parameters
-
[in] | nMockTimeIn | Time in seconds. |
Definition at line 94 of file time.cpp.
◆ SetMockTime() [2/2]
void SetMockTime |
( |
std::chrono::seconds |
mock_time_in | ) |
|
For testing.
Set e.g. with the setmocktime rpc, or -mocktime argument
Definition at line 99 of file time.cpp.
◆ UninterruptibleSleep()
void UninterruptibleSleep |
( |
const std::chrono::microseconds & |
n | ) |
|