6 #ifndef ASIOEXT_CHRONO_HPP 7 #define ASIOEXT_CHRONO_HPP 9 #include "asioext/detail/config.hpp" 11 #if ASIOEXT_HAS_PRAGMA_ONCE 15 #if defined(ASIOEXT_USE_BOOST_CHRONO) 16 # include <boost/chrono.hpp> 25 #if defined(ASIOEXT_IS_DOCUMENTATION) 26 namespace chrono = user_chosen;
27 #elif defined(ASIOEXT_USE_BOOST_CHRONO) 28 namespace chrono = boost::chrono;
46 #if defined(ASIOEXT_IS_DOCUMENTATION) 49 #elif defined(ASIOEXT_WINDOWS) 52 static const uint64_t ticks_per_second = 10000000;
53 static const uint64_t epoch_difference_secs =
54 ((1970 - 1601) * 365 + 3 * 24 + 17) * 86400ull;
56 # if defined(ASIOEXT_USE_BOOST_CHRONO) 57 typedef chrono::duration<int64_t, boost::ratio<1, 10000000> >
duration;
59 typedef chrono::duration<int64_t, std::ratio<1, 10000000> >
duration;
62 typedef chrono::nanoseconds
duration;
64 typedef duration::rep
rep;
68 #if defined(ASIOEXT_IS_DOCUMENTATION) 69 static constexpr
bool is_steady = implementation_defined;
71 static const bool is_steady =
false;
74 ASIOEXT_DECL
static time_point now() ASIOEXT_NOEXCEPT;
76 #if defined(ASIOEXT_WINDOWS) 80 return static_cast<std::time_t>(chrono::duration_cast<chrono::seconds>(
81 t.time_since_epoch() - chrono::seconds(epoch_difference_secs)).count());
84 static ASIOEXT_CONSTEXPR14 time_point from_time_t(
87 return time_point(chrono::duration_cast<duration>(
88 chrono::seconds(t) + chrono::seconds(epoch_difference_secs)));
94 return static_cast<std::time_t>(chrono::duration_cast<chrono::seconds>(
95 t.time_since_epoch()).count());
101 return time_point(chrono::duration_cast<duration>(chrono::seconds(t)));
112 #if defined(ASIOEXT_HEADER_ONLY) 113 # include "asioext/impl/chrono.cpp"
chrono::time_point< file_clock > file_time_type
Representation of a file time (e.g. mtime)
Definition: chrono.hpp:108
static constexpr time_point from_time_t(std::time_t t) noexcept
Definition: chrono.hpp:98
static constexpr std::time_t to_time_t(const time_point &t) noexcept
Definition: chrono.hpp:91
duration::period period
Definition: chrono.hpp:65
chrono::time_point< file_clock > time_point
Definition: chrono.hpp:66
duration::rep rep
Definition: chrono.hpp:64
implementation_defined duration
Duration capable of representing file times.
Definition: chrono.hpp:48
Special clock for filesystem time points.
Definition: chrono.hpp:43