Asio Extensions
Additional functionality built on top of (Boost.)Asio
chrono.hpp
1 /// @copyright Copyright (c) 2017 Tim Niederhausen (tim@rnc-ag.de)
2 /// Distributed under the Boost Software License, Version 1.0.
3 /// (See accompanying file LICENSE_1_0.txt or copy at
4 /// http://www.boost.org/LICENSE_1_0.txt)
5 
6 #ifndef ASIOEXT_CHRONO_HPP
7 #define ASIOEXT_CHRONO_HPP
8 
9 #include "asioext/detail/config.hpp"
10 
11 #if ASIOEXT_HAS_PRAGMA_ONCE
12 # pragma once
13 #endif
14 
15 #if defined(ASIOEXT_USE_BOOST_CHRONO)
16 # include <boost/chrono.hpp>
17 #else
18 # include <chrono>
19 #endif
20 
21 #include <ctime>
22 
23 ASIOEXT_NS_BEGIN
24 
25 #if defined(ASIOEXT_IS_DOCUMENTATION)
26 namespace chrono = user_chosen;
27 #elif defined(ASIOEXT_USE_BOOST_CHRONO)
28 namespace chrono = boost::chrono;
29 #else
30 namespace chrono = std::chrono;
31 #endif
32 
33 /// @ingroup files_time
34 /// @brief Special clock for filesystem time points.
35 ///
36 /// Special clock with the same epoch and accuracy the filesystem
37 /// uses for file times.
38 ///
39 /// Filesystem time points are not necessarily
40 /// represented in system time, hence the need for a separate clock.
41 ///
42 /// @see http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/p0355r3.html
44 {
45 public:
46 #if defined(ASIOEXT_IS_DOCUMENTATION)
47  /// @brief Duration capable of representing file times
48  typedef implementation_defined duration;
49 #elif defined(ASIOEXT_WINDOWS)
50  // File times are in 100ns ticks.
51  // https://msdn.microsoft.com/en-us/library/windows/desktop/ms724290(v=vs.85).aspx
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;
55 
56 # if defined(ASIOEXT_USE_BOOST_CHRONO)
57  typedef chrono::duration<int64_t, boost::ratio<1, 10000000> > duration;
58 # else
59  typedef chrono::duration<int64_t, std::ratio<1, 10000000> > duration;
60 # endif
61 #else
62  typedef chrono::nanoseconds duration;
63 #endif
64  typedef duration::rep rep;
65  typedef duration::period period;
66  typedef chrono::time_point<file_clock> time_point;
67 
68 #if defined(ASIOEXT_IS_DOCUMENTATION)
69  static constexpr bool is_steady = implementation_defined;
70 #else
71  static const bool is_steady = false;
72 #endif
73 
74  ASIOEXT_DECL static time_point now() ASIOEXT_NOEXCEPT;
75 
76 #if defined(ASIOEXT_WINDOWS)
77  static ASIOEXT_CONSTEXPR14 std::time_t to_time_t(
78  const time_point& t) ASIOEXT_NOEXCEPT
79  {
80  return static_cast<std::time_t>(chrono::duration_cast<chrono::seconds>(
81  t.time_since_epoch() - chrono::seconds(epoch_difference_secs)).count());
82  }
83 
84  static ASIOEXT_CONSTEXPR14 time_point from_time_t(
85  std::time_t t) ASIOEXT_NOEXCEPT
86  {
87  return time_point(chrono::duration_cast<duration>(
88  chrono::seconds(t) + chrono::seconds(epoch_difference_secs)));
89  }
90 #else
91  static ASIOEXT_CONSTEXPR14 std::time_t to_time_t(
92  const time_point& t) ASIOEXT_NOEXCEPT
93  {
94  return static_cast<std::time_t>(chrono::duration_cast<chrono::seconds>(
95  t.time_since_epoch()).count());
96  }
97 
98  static ASIOEXT_CONSTEXPR14 time_point from_time_t(
99  std::time_t t) ASIOEXT_NOEXCEPT
100  {
101  return time_point(chrono::duration_cast<duration>(chrono::seconds(t)));
102  }
103 #endif
104 };
105 
106 /// @ingroup files_time
107 /// @brief Representation of a file time (e.g. mtime)
108 typedef chrono::time_point<file_clock> file_time_type;
109 
110 ASIOEXT_NS_END
111 
112 #if defined(ASIOEXT_HEADER_ONLY)
113 # include "asioext/impl/chrono.cpp"
114 #endif
115 
116 #endif
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