#include <compat.h>
#include <util/time.h>
#include <util/check.h>
#include <atomic>
#include <boost/date_time/posix_time/posix_time.hpp>
#include <ctime>
#include <thread>
#include <tinyformat.h>
Go to the source code of this file.
◆ ChronoSanityCheck()
bool ChronoSanityCheck |
( |
| ) |
|
Sanity check epoch match normal Unix epoch.
Definition at line 36 of file time.cpp.
◆ 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 132 of file time.cpp.
◆ GetMockTime()
std::chrono::seconds GetMockTime |
( |
| ) |
|
◆ GetSystemTime()
template<typename T >
static T GetSystemTime |
( |
| ) |
|
|
static |
◆ GetTime()
template std::chrono::microseconds GetTime |
( |
| ) |
|
DEPRECATED Use either GetTimeSeconds (not mockable) or GetTime<T> (mockable)
Return system time (or mocked time, if set)
Definition at line 26 of file time.cpp.
◆ GetTimeMicros()
int64_t GetTimeMicros |
( |
| ) |
|
Returns the system time (not mockable)
Definition at line 122 of file time.cpp.
◆ GetTimeMillis()
int64_t GetTimeMillis |
( |
| ) |
|
Returns the system time (not mockable)
Definition at line 117 of file time.cpp.
◆ GetTimeSeconds()
int64_t GetTimeSeconds |
( |
| ) |
|
Returns the system time (not mockable)
Definition at line 127 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 172 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 180 of file time.cpp.
◆ nMockTime()
static std::atomic<int64_t> nMockTime |
( |
0 |
| ) |
|
|
static |
◆ 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 101 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 107 of file time.cpp.
◆ UninterruptibleSleep()
void UninterruptibleSleep |
( |
const std::chrono::microseconds & |
n | ) |
|