stdex
Additional custom or not Standard C++ covered algorithms
|
AOsn timestamp. More...
#include <stdex/chrono.hpp>
Public Types | |
using | rep = int64_t |
using | period = std::milli |
using | duration = std::chrono::duration<rep, period> |
using | time_point = std::chrono::time_point<aosn_timestamp> |
Static Public Member Functions | |
static time_point | now () noexcept |
Gets current timestamp. | |
static std::time_t | to_time_t (const time_point tp) noexcept |
Returns time_t from time point. | |
static time_point | from_time_t (std::time_t t) noexcept |
Returns time point from time_t. | |
static time_point | from_system (const struct timespec &t) noexcept |
Returns time point from struct timespec. | |
static void | to_system (time_point tp, struct tm &date) noexcept |
static aosn_date::time_point | to_date (time_point tp) noexcept |
Returns aosn_date::time_point from time point. | |
static time_point | from_date (aosn_date::time_point date) noexcept |
Returns time point from aosn_date::time_point. | |
static time_point | from_dmy (uint8_t day, uint8_t month, int32_t year, uint8_t hour, uint8_t minute, uint8_t second, uint16_t millisecond) noexcept |
Returns time point from calendar day, month, year and time. | |
static void | to_dmy (const time_point tp, uint8_t *day, uint8_t *month, int32_t *year, uint8_t *hour, uint8_t *minute, uint8_t *second, uint16_t *millisecond) noexcept |
Returns calendar day, month, year and time from time point. | |
template<class TR = std::char_traits<char>, class AX = std::allocator<char>> | |
static std::basic_string< char, TR, AX > | to_str (const time_point tp, const char *format, locale_t locale) |
template<class TR = std::char_traits<wchar_t>, class AX = std::allocator<wchar_t>> | |
static std::basic_string< wchar_t, TR, AX > | to_str (const time_point tp, const wchar_t *format, locale_t locale) |
template<class TR = std::char_traits<char>, class AX = std::allocator<char>> | |
static std::basic_string< char, TR, AX > | to_rfc822 (const time_point tp) |
AOsn timestamp.