Classes | |
class | CustomClock |
Class implementing custom system or steady clock behavior. More... | |
class | steady_clock |
Steady clock. More... | |
class | system_clock |
System clock. More... | |
class | UnitTestClock |
Clock that can be used in unit tests for time-dependent tests independent of wall clock. More... | |
class | UnitTestClockTraits |
Traits for UnitTestClock, defining default behavior for different clocks. More... | |
class | UnitTestClockTraits< system_clock > |
Specialization of UnitTestClockTraits for system_clock. More... | |
Typedefs | |
typedef boost::chrono::steady_clock | base_steady_clock |
using | CustomSteadyClock = CustomClock< steady_clock > |
using | CustomSystemClock = CustomClock< system_clock > |
using | days = duration< int_fast32_t, boost::ratio< 86400 > > |
template<typename Rep , typename Period > | |
using | duration = boost::chrono::duration< Rep, Period > |
using | hours = boost::chrono::hours |
using | microseconds = boost::chrono::microseconds |
using | milliseconds = boost::chrono::milliseconds |
using | minutes = boost::chrono::minutes |
using | months = duration< int_fast32_t, boost::ratio< 2629746 > > |
using | nanoseconds = boost::chrono::nanoseconds |
using | seconds = boost::chrono::seconds |
using | UnitTestSteadyClock = UnitTestClock< steady_clock > |
using | UnitTestSystemClock = UnitTestClock< system_clock > |
using | weeks = duration< int_fast32_t, boost::ratio< 604800 > > |
using | years = duration< int_fast32_t, boost::ratio< 31556952 > > |
Functions | |
template<typename Rep , typename Period , typename = std::enable_if_t<std::numeric_limits<Rep>::is_signed>> | |
constexpr duration< Rep, Period > | abs (duration< Rep, Period > d) |
system_clock::time_point | fromIsoExtendedString (const std::string &isoString) |
Convert from the ISO 8601 extended string format (YYYY-MM-DDTHH:MM:SS,fffffffff ) to the internal time format. More... | |
system_clock::time_point | fromIsoString (const std::string &isoString) |
Convert from the ISO 8601 basic string format (YYYYMMDDTHHMMSS,fffffffff ) to the internal time format. More... | |
system_clock::time_point | fromString (const std::string &timePointStr, const std::string &format="%Y-%m-%d %H:%M:%S", const std::locale &locale=std::locale("C")) |
Convert from string of specified format into time point. More... | |
system_clock::time_point | fromUnixTimestamp (milliseconds duration) |
Convert UNIX timestamp to system_clock::time_point. More... | |
const system_clock::time_point & | getUnixEpoch () |
Return a system_clock::time_point representing the UNIX time epoch, i.e., 00:00:00 UTC on 1 January 1970. More... | |
void | setCustomClocks (shared_ptr< CustomSteadyClock > steadyClock=nullptr, shared_ptr< CustomSystemClock > systemClock=nullptr) |
Set custom system and steady clocks. More... | |
std::string | toIsoExtendedString (const system_clock::time_point &timePoint) |
Convert to the ISO 8601 string representation, extended format (YYYY-MM-DDTHH:MM:SS,fffffffff ). More... | |
std::string | toIsoString (const system_clock::time_point &timePoint) |
Convert to the ISO 8601 string representation, basic format (YYYYMMDDTHHMMSS,fffffffff ). More... | |
std::string | toString (const system_clock::time_point &timePoint, const std::string &format="%Y-%m-%d %H:%M:%S", const std::locale &locale=std::locale("C")) |
Convert time point to string with specified format. More... | |
milliseconds | toUnixTimestamp (const system_clock::time_point &point) |
Convert system_clock::time_point to UNIX timestamp. More... | |
typedef boost::chrono::steady_clock ndn::time::base_steady_clock |
using ndn::time::CustomSteadyClock = typedef CustomClock<steady_clock> |
Definition at line 54 of file time-custom-clock.hpp.
using ndn::time::CustomSystemClock = typedef CustomClock<system_clock> |
Definition at line 53 of file time-custom-clock.hpp.
using ndn::time::days = typedef duration<int_fast32_t, boost::ratio<86400> > |
using ndn::time::duration = typedef boost::chrono::duration<Rep, Period> |
using ndn::time::hours = typedef boost::chrono::hours |
using ndn::time::microseconds = typedef boost::chrono::microseconds |
using ndn::time::milliseconds = typedef boost::chrono::milliseconds |
using ndn::time::minutes = typedef boost::chrono::minutes |
using ndn::time::months = typedef duration<int_fast32_t, boost::ratio<2629746> > |
using ndn::time::nanoseconds = typedef boost::chrono::nanoseconds |
using ndn::time::seconds = typedef boost::chrono::seconds |
using ndn::time::UnitTestSteadyClock = typedef UnitTestClock<steady_clock> |
Definition at line 109 of file time-unit-test-clock.hpp.
using ndn::time::UnitTestSystemClock = typedef UnitTestClock<system_clock> |
Definition at line 108 of file time-unit-test-clock.hpp.
using ndn::time::weeks = typedef duration<int_fast32_t, boost::ratio<604800> > |
using ndn::time::years = typedef duration<int_fast32_t, boost::ratio<31556952> > |
system_clock::time_point ndn::time::fromIsoExtendedString | ( | const std::string & | isoString | ) |
system_clock::time_point ndn::time::fromIsoString | ( | const std::string & | isoString | ) |
Convert from the ISO 8601 basic string format (YYYYMMDDTHHMMSS,fffffffff
) to the internal time format.
Examples of accepted strings:
system_clock::time_point ndn::time::fromString | ( | const std::string & | timePointStr, |
const std::string & | format = "%Y-%m-%d %H:%M:%S" , |
||
const std::locale & | locale = std::locale("C") |
||
) |
Convert from string of specified format into time point.
By default, Y-m-d H:M:S
is used, accepting dates like 2014-04-10 22:51:00
timePointStr | string representing time point |
format | input output format (default: Y-m-d H:M:S ) |
locale | input locale (default: "C" locale) |
system_clock::time_point ndn::time::fromUnixTimestamp | ( | milliseconds | duration | ) |
Convert UNIX timestamp to system_clock::time_point.
const system_clock::time_point & ndn::time::getUnixEpoch | ( | ) |
Return a system_clock::time_point representing the UNIX time epoch, i.e., 00:00:00 UTC on 1 January 1970.
void ndn::time::setCustomClocks | ( | shared_ptr< CustomSteadyClock > | steadyClock = nullptr , |
shared_ptr< CustomSystemClock > | systemClock = nullptr |
||
) |
std::string ndn::time::toIsoExtendedString | ( | const system_clock::time_point & | timePoint | ) |
std::string ndn::time::toIsoString | ( | const system_clock::time_point & | timePoint | ) |
Convert to the ISO 8601 string representation, basic format (YYYYMMDDTHHMMSS,fffffffff
).
If timePoint
does not contain any fractional seconds, the output format is YYYYMMDDTHHMMSS
.
Examples:
std::string ndn::time::toString | ( | const system_clock::time_point & | timePoint, |
const std::string & | format = "%Y-%m-%d %H:%M:%S" , |
||
const std::locale & | locale = std::locale("C") |
||
) |
Convert time point to string with specified format.
By default, Y-m-d H:M:S
is used, producing dates like 2014-04-10 22:51:00
timePoint | time point of system_clock |
format | desired output format (default: Y-m-d H:M:S ) |
locale | desired locale (default: "C" locale) |
milliseconds ndn::time::toUnixTimestamp | ( | const system_clock::time_point & | point | ) |
Convert system_clock::time_point to UNIX timestamp.