Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
| 2 | //===---------------------------- chrono ----------------------------------===// |
| 3 | // |
Howard Hinnant | c566dc3 | 2010-05-11 21:36:01 +0000 | [diff] [blame] | 4 | // The LLVM Compiler Infrastructure |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5 | // |
Howard Hinnant | ee11c31 | 2010-11-16 22:09:02 +0000 | [diff] [blame] | 6 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 7 | // Source Licenses. See LICENSE.TXT for details. |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 8 | // |
| 9 | //===----------------------------------------------------------------------===// |
| 10 | |
| 11 | #ifndef _LIBCPP_CHRONO |
| 12 | #define _LIBCPP_CHRONO |
| 13 | |
| 14 | /* |
| 15 | chrono synopsis |
| 16 | |
| 17 | namespace std |
| 18 | { |
| 19 | namespace chrono |
| 20 | { |
| 21 | |
| 22 | template <class ToDuration, class Rep, class Period> |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 23 | constexpr |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 24 | ToDuration |
| 25 | duration_cast(const duration<Rep, Period>& fd); |
| 26 | |
| 27 | template <class Rep> struct treat_as_floating_point : is_floating_point<Rep> {}; |
| 28 | |
| 29 | template <class Rep> |
| 30 | struct duration_values |
| 31 | { |
| 32 | public: |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 33 | static constexpr Rep zero(); |
| 34 | static constexpr Rep max(); |
| 35 | static constexpr Rep min(); |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 36 | }; |
| 37 | |
| 38 | // duration |
| 39 | |
| 40 | template <class Rep, class Period = ratio<1>> |
| 41 | class duration |
| 42 | { |
| 43 | static_assert(!__is_duration<Rep>::value, "A duration representation can not be a duration"); |
| 44 | static_assert(__is_ratio<Period>::value, "Second template parameter of duration must be a std::ratio"); |
| 45 | static_assert(Period::num > 0, "duration period must be positive"); |
| 46 | public: |
| 47 | typedef Rep rep; |
| 48 | typedef Period period; |
| 49 | |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 50 | constexpr duration() = default; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 51 | template <class Rep2> |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 52 | constexpr explicit duration(const Rep2& r, |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 53 | typename enable_if |
| 54 | < |
| 55 | is_convertible<Rep2, rep>::value && |
| 56 | (treat_as_floating_point<rep>::value || |
| 57 | !treat_as_floating_point<rep>::value && !treat_as_floating_point<Rep2>::value) |
| 58 | >::type* = 0); |
| 59 | |
| 60 | // conversions |
| 61 | template <class Rep2, class Period2> |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 62 | constexpr duration(const duration<Rep2, Period2>& d, |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 63 | typename enable_if |
| 64 | < |
| 65 | treat_as_floating_point<rep>::value || |
| 66 | ratio_divide<Period2, period>::type::den == 1 |
| 67 | >::type* = 0); |
| 68 | |
| 69 | // observer |
| 70 | |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 71 | constexpr rep count() const; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 72 | |
| 73 | // arithmetic |
| 74 | |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 75 | constexpr duration operator+() const; |
| 76 | constexpr duration operator-() const; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 77 | duration& operator++(); |
| 78 | duration operator++(int); |
| 79 | duration& operator--(); |
| 80 | duration operator--(int); |
| 81 | |
| 82 | duration& operator+=(const duration& d); |
| 83 | duration& operator-=(const duration& d); |
| 84 | |
| 85 | duration& operator*=(const rep& rhs); |
| 86 | duration& operator/=(const rep& rhs); |
| 87 | |
| 88 | // special values |
| 89 | |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 90 | static constexpr duration zero(); |
| 91 | static constexpr duration min(); |
| 92 | static constexpr duration max(); |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 93 | }; |
| 94 | |
| 95 | typedef duration<long long, nano> nanoseconds; |
| 96 | typedef duration<long long, micro> microseconds; |
| 97 | typedef duration<long long, milli> milliseconds; |
| 98 | typedef duration<long long > seconds; |
| 99 | typedef duration< long, ratio< 60> > minutes; |
| 100 | typedef duration< long, ratio<3600> > hours; |
| 101 | |
| 102 | template <class Clock, class Duration = typename Clock::duration> |
| 103 | class time_point |
| 104 | { |
| 105 | public: |
| 106 | typedef Clock clock; |
| 107 | typedef Duration duration; |
| 108 | typedef typename duration::rep rep; |
| 109 | typedef typename duration::period period; |
| 110 | private: |
| 111 | duration d_; // exposition only |
| 112 | |
| 113 | public: |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 114 | time_point(); // has value "epoch" // constexpr in C++14 |
| 115 | explicit time_point(const duration& d); // same as time_point() + d // constexpr in C++14 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 116 | |
| 117 | // conversions |
| 118 | template <class Duration2> |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 119 | time_point(const time_point<clock, Duration2>& t); // constexpr in C++14 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 120 | |
| 121 | // observer |
| 122 | |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 123 | duration time_since_epoch() const; // constexpr in C++14 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 124 | |
| 125 | // arithmetic |
| 126 | |
| 127 | time_point& operator+=(const duration& d); |
| 128 | time_point& operator-=(const duration& d); |
| 129 | |
| 130 | // special values |
| 131 | |
| 132 | static constexpr time_point min(); |
| 133 | static constexpr time_point max(); |
| 134 | }; |
| 135 | |
| 136 | } // chrono |
| 137 | |
| 138 | // common_type traits |
| 139 | template <class Rep1, class Period1, class Rep2, class Period2> |
| 140 | struct common_type<chrono::duration<Rep1, Period1>, chrono::duration<Rep2, Period2>>; |
| 141 | |
| 142 | template <class Clock, class Duration1, class Duration2> |
| 143 | struct common_type<chrono::time_point<Clock, Duration1>, chrono::time_point<Clock, Duration2>>; |
| 144 | |
| 145 | namespace chrono { |
| 146 | |
| 147 | // duration arithmetic |
| 148 | template <class Rep1, class Period1, class Rep2, class Period2> |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 149 | constexpr |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 150 | typename common_type<duration<Rep1, Period1>, duration<Rep2, Period2>>::type |
| 151 | operator+(const duration<Rep1, Period1>& lhs, const duration<Rep2, Period2>& rhs); |
| 152 | template <class Rep1, class Period1, class Rep2, class Period2> |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 153 | constexpr |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 154 | typename common_type<duration<Rep1, Period1>, duration<Rep2, Period2>>::type |
| 155 | operator-(const duration<Rep1, Period1>& lhs, const duration<Rep2, Period2>& rhs); |
| 156 | template <class Rep1, class Period, class Rep2> |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 157 | constexpr |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 158 | duration<typename common_type<Rep1, Rep2>::type, Period> |
| 159 | operator*(const duration<Rep1, Period>& d, const Rep2& s); |
| 160 | template <class Rep1, class Period, class Rep2> |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 161 | constexpr |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 162 | duration<typename common_type<Rep1, Rep2>::type, Period> |
| 163 | operator*(const Rep1& s, const duration<Rep2, Period>& d); |
| 164 | template <class Rep1, class Period, class Rep2> |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 165 | constexpr |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 166 | duration<typename common_type<Rep1, Rep2>::type, Period> |
| 167 | operator/(const duration<Rep1, Period>& d, const Rep2& s); |
| 168 | template <class Rep1, class Period1, class Rep2, class Period2> |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 169 | constexpr |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 170 | typename common_type<Rep1, Rep2>::type |
| 171 | operator/(const duration<Rep1, Period1>& lhs, const duration<Rep2, Period2>& rhs); |
| 172 | |
| 173 | // duration comparisons |
| 174 | template <class Rep1, class Period1, class Rep2, class Period2> |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 175 | constexpr |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 176 | bool operator==(const duration<Rep1, Period1>& lhs, const duration<Rep2, Period2>& rhs); |
| 177 | template <class Rep1, class Period1, class Rep2, class Period2> |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 178 | constexpr |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 179 | bool operator!=(const duration<Rep1, Period1>& lhs, const duration<Rep2, Period2>& rhs); |
| 180 | template <class Rep1, class Period1, class Rep2, class Period2> |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 181 | constexpr |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 182 | bool operator< (const duration<Rep1, Period1>& lhs, const duration<Rep2, Period2>& rhs); |
| 183 | template <class Rep1, class Period1, class Rep2, class Period2> |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 184 | constexpr |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 185 | bool operator<=(const duration<Rep1, Period1>& lhs, const duration<Rep2, Period2>& rhs); |
| 186 | template <class Rep1, class Period1, class Rep2, class Period2> |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 187 | constexpr |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 188 | bool operator> (const duration<Rep1, Period1>& lhs, const duration<Rep2, Period2>& rhs); |
| 189 | template <class Rep1, class Period1, class Rep2, class Period2> |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 190 | constexpr |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 191 | bool operator>=(const duration<Rep1, Period1>& lhs, const duration<Rep2, Period2>& rhs); |
| 192 | |
| 193 | // duration_cast |
| 194 | template <class ToDuration, class Rep, class Period> |
| 195 | ToDuration duration_cast(const duration<Rep, Period>& d); |
| 196 | |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 197 | // time_point arithmetic (all constexpr in C++14) |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 198 | template <class Clock, class Duration1, class Rep2, class Period2> |
| 199 | time_point<Clock, typename common_type<Duration1, duration<Rep2, Period2>>::type> |
| 200 | operator+(const time_point<Clock, Duration1>& lhs, const duration<Rep2, Period2>& rhs); |
| 201 | template <class Rep1, class Period1, class Clock, class Duration2> |
| 202 | time_point<Clock, typename common_type<duration<Rep1, Period1>, Duration2>::type> |
| 203 | operator+(const duration<Rep1, Period1>& lhs, const time_point<Clock, Duration2>& rhs); |
| 204 | template <class Clock, class Duration1, class Rep2, class Period2> |
| 205 | time_point<Clock, typename common_type<Duration1, duration<Rep2, Period2>>::type> |
| 206 | operator-(const time_point<Clock, Duration1>& lhs, const duration<Rep2, Period2>& rhs); |
| 207 | template <class Clock, class Duration1, class Duration2> |
| 208 | typename common_type<Duration1, Duration2>::type |
| 209 | operator-(const time_point<Clock, Duration1>& lhs, const time_point<Clock, Duration2>& rhs); |
| 210 | |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 211 | // time_point comparisons (all constexpr in C++14) |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 212 | template <class Clock, class Duration1, class Duration2> |
| 213 | bool operator==(const time_point<Clock, Duration1>& lhs, const time_point<Clock, Duration2>& rhs); |
| 214 | template <class Clock, class Duration1, class Duration2> |
| 215 | bool operator!=(const time_point<Clock, Duration1>& lhs, const time_point<Clock, Duration2>& rhs); |
| 216 | template <class Clock, class Duration1, class Duration2> |
| 217 | bool operator< (const time_point<Clock, Duration1>& lhs, const time_point<Clock, Duration2>& rhs); |
| 218 | template <class Clock, class Duration1, class Duration2> |
| 219 | bool operator<=(const time_point<Clock, Duration1>& lhs, const time_point<Clock, Duration2>& rhs); |
| 220 | template <class Clock, class Duration1, class Duration2> |
| 221 | bool operator> (const time_point<Clock, Duration1>& lhs, const time_point<Clock, Duration2>& rhs); |
| 222 | template <class Clock, class Duration1, class Duration2> |
| 223 | bool operator>=(const time_point<Clock, Duration1>& lhs, const time_point<Clock, Duration2>& rhs); |
| 224 | |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 225 | // time_point_cast (constexpr in C++14) |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 226 | |
| 227 | template <class ToDuration, class Clock, class Duration> |
| 228 | time_point<Clock, ToDuration> time_point_cast(const time_point<Clock, Duration>& t); |
| 229 | |
| 230 | // Clocks |
| 231 | |
| 232 | class system_clock |
| 233 | { |
| 234 | public: |
| 235 | typedef microseconds duration; |
| 236 | typedef duration::rep rep; |
| 237 | typedef duration::period period; |
| 238 | typedef chrono::time_point<system_clock> time_point; |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 239 | static const bool is_steady = false; // constexpr in C++14 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 240 | |
Howard Hinnant | aa54ac4 | 2011-05-28 18:34:36 +0000 | [diff] [blame] | 241 | static time_point now() noexcept; |
| 242 | static time_t to_time_t (const time_point& __t) noexcept; |
| 243 | static time_point from_time_t(time_t __t) noexcept; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 244 | }; |
| 245 | |
Howard Hinnant | c8dbd22 | 2010-11-20 19:16:30 +0000 | [diff] [blame] | 246 | class steady_clock |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 247 | { |
| 248 | public: |
| 249 | typedef nanoseconds duration; |
| 250 | typedef duration::rep rep; |
| 251 | typedef duration::period period; |
Howard Hinnant | c8dbd22 | 2010-11-20 19:16:30 +0000 | [diff] [blame] | 252 | typedef chrono::time_point<steady_clock, duration> time_point; |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 253 | static const bool is_steady = true; // constexpr in C++14 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 254 | |
Howard Hinnant | aa54ac4 | 2011-05-28 18:34:36 +0000 | [diff] [blame] | 255 | static time_point now() noexcept; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 256 | }; |
| 257 | |
Howard Hinnant | c8dbd22 | 2010-11-20 19:16:30 +0000 | [diff] [blame] | 258 | typedef steady_clock high_resolution_clock; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 259 | |
| 260 | } // chrono |
| 261 | |
Marshall Clow | eb41e5c | 2013-07-24 21:18:14 +0000 | [diff] [blame] | 262 | constexpr chrono::hours operator "" h(unsigned long long); // C++14 |
| 263 | constexpr chrono::duration<unspecified , ratio<3600,1>> operator "" h(long double); // C++14 |
| 264 | constexpr chrono::minutes operator "" min(unsigned long long); // C++14 |
| 265 | constexpr chrono::duration<unspecified , ratio<60,1>> operator "" min(long double); // C++14 |
| 266 | constexpr chrono::seconds operator "" s(unsigned long long); // C++14 |
| 267 | constexpr chrono::duration<unspecified > operator "" s(long double); // C++14 |
| 268 | constexpr chrono::milliseconds operator "" ms(unsigned long long); // C++14 |
| 269 | constexpr chrono::duration<unspecified , milli> operator "" ms(long double); // C++14 |
| 270 | constexpr chrono::microseconds operator "" us(unsigned long long); // C++14 |
| 271 | constexpr chrono::duration<unspecified , micro> operator "" us(long double); // C++14 |
| 272 | constexpr chrono::nanoseconds operator "" ns(unsigned long long); // C++14 |
| 273 | constexpr chrono::duration<unspecified , nano> operator "" ns(long double); // C++14 |
| 274 | |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 275 | } // std |
| 276 | */ |
| 277 | |
| 278 | #include <__config> |
| 279 | #include <ctime> |
| 280 | #include <type_traits> |
| 281 | #include <ratio> |
| 282 | #include <limits> |
| 283 | |
Howard Hinnant | c5a5fbd | 2011-11-29 16:45:27 +0000 | [diff] [blame] | 284 | #include <__undef_min_max> |
| 285 | |
Howard Hinnant | aaaa52b | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 286 | #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 287 | #pragma GCC system_header |
Howard Hinnant | aaaa52b | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 288 | #endif |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 289 | |
| 290 | _LIBCPP_BEGIN_NAMESPACE_STD |
| 291 | |
| 292 | namespace chrono |
| 293 | { |
| 294 | |
Howard Hinnant | a37d3cf | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 295 | template <class _Rep, class _Period = ratio<1> > class _LIBCPP_TYPE_VIS_ONLY duration; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 296 | |
Howard Hinnant | f39463b | 2010-05-18 17:32:30 +0000 | [diff] [blame] | 297 | template <class _Tp> |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 298 | struct __is_duration : false_type {}; |
| 299 | |
| 300 | template <class _Rep, class _Period> |
| 301 | struct __is_duration<duration<_Rep, _Period> > : true_type {}; |
| 302 | |
| 303 | template <class _Rep, class _Period> |
| 304 | struct __is_duration<const duration<_Rep, _Period> > : true_type {}; |
| 305 | |
| 306 | template <class _Rep, class _Period> |
| 307 | struct __is_duration<volatile duration<_Rep, _Period> > : true_type {}; |
| 308 | |
| 309 | template <class _Rep, class _Period> |
| 310 | struct __is_duration<const volatile duration<_Rep, _Period> > : true_type {}; |
| 311 | |
| 312 | } // chrono |
| 313 | |
| 314 | template <class _Rep1, class _Period1, class _Rep2, class _Period2> |
Howard Hinnant | a37d3cf | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 315 | struct _LIBCPP_TYPE_VIS_ONLY common_type<chrono::duration<_Rep1, _Period1>, |
| 316 | chrono::duration<_Rep2, _Period2> > |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 317 | { |
| 318 | typedef chrono::duration<typename common_type<_Rep1, _Rep2>::type, |
| 319 | typename __ratio_gcd<_Period1, _Period2>::type> type; |
| 320 | }; |
| 321 | |
| 322 | namespace chrono { |
| 323 | |
| 324 | // duration_cast |
| 325 | |
| 326 | template <class _FromDuration, class _ToDuration, |
| 327 | class _Period = typename ratio_divide<typename _FromDuration::period, typename _ToDuration::period>::type, |
| 328 | bool = _Period::num == 1, |
| 329 | bool = _Period::den == 1> |
| 330 | struct __duration_cast; |
| 331 | |
| 332 | template <class _FromDuration, class _ToDuration, class _Period> |
| 333 | struct __duration_cast<_FromDuration, _ToDuration, _Period, true, true> |
| 334 | { |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 335 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 336 | _ToDuration operator()(const _FromDuration& __fd) const |
| 337 | { |
| 338 | return _ToDuration(static_cast<typename _ToDuration::rep>(__fd.count())); |
| 339 | } |
| 340 | }; |
| 341 | |
| 342 | template <class _FromDuration, class _ToDuration, class _Period> |
| 343 | struct __duration_cast<_FromDuration, _ToDuration, _Period, true, false> |
| 344 | { |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 345 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 346 | _ToDuration operator()(const _FromDuration& __fd) const |
| 347 | { |
| 348 | typedef typename common_type<typename _ToDuration::rep, typename _FromDuration::rep, intmax_t>::type _Ct; |
| 349 | return _ToDuration(static_cast<typename _ToDuration::rep>( |
| 350 | static_cast<_Ct>(__fd.count()) / static_cast<_Ct>(_Period::den))); |
| 351 | } |
| 352 | }; |
| 353 | |
| 354 | template <class _FromDuration, class _ToDuration, class _Period> |
| 355 | struct __duration_cast<_FromDuration, _ToDuration, _Period, false, true> |
| 356 | { |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 357 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 358 | _ToDuration operator()(const _FromDuration& __fd) const |
| 359 | { |
| 360 | typedef typename common_type<typename _ToDuration::rep, typename _FromDuration::rep, intmax_t>::type _Ct; |
| 361 | return _ToDuration(static_cast<typename _ToDuration::rep>( |
| 362 | static_cast<_Ct>(__fd.count()) * static_cast<_Ct>(_Period::num))); |
| 363 | } |
| 364 | }; |
| 365 | |
| 366 | template <class _FromDuration, class _ToDuration, class _Period> |
| 367 | struct __duration_cast<_FromDuration, _ToDuration, _Period, false, false> |
| 368 | { |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 369 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 370 | _ToDuration operator()(const _FromDuration& __fd) const |
| 371 | { |
| 372 | typedef typename common_type<typename _ToDuration::rep, typename _FromDuration::rep, intmax_t>::type _Ct; |
| 373 | return _ToDuration(static_cast<typename _ToDuration::rep>( |
| 374 | static_cast<_Ct>(__fd.count()) * static_cast<_Ct>(_Period::num) |
| 375 | / static_cast<_Ct>(_Period::den))); |
| 376 | } |
| 377 | }; |
| 378 | |
| 379 | template <class _ToDuration, class _Rep, class _Period> |
| 380 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 381 | _LIBCPP_CONSTEXPR |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 382 | typename enable_if |
| 383 | < |
| 384 | __is_duration<_ToDuration>::value, |
| 385 | _ToDuration |
| 386 | >::type |
| 387 | duration_cast(const duration<_Rep, _Period>& __fd) |
| 388 | { |
| 389 | return __duration_cast<duration<_Rep, _Period>, _ToDuration>()(__fd); |
| 390 | } |
| 391 | |
Howard Hinnant | 874ad9a | 2010-09-21 21:28:23 +0000 | [diff] [blame] | 392 | template <class _Rep> |
Howard Hinnant | a37d3cf | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 393 | struct _LIBCPP_TYPE_VIS_ONLY treat_as_floating_point : is_floating_point<_Rep> {}; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 394 | |
| 395 | template <class _Rep> |
Howard Hinnant | a37d3cf | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 396 | struct _LIBCPP_TYPE_VIS_ONLY duration_values |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 397 | { |
| 398 | public: |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 399 | _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR _Rep zero() {return _Rep(0);} |
| 400 | _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR _Rep max() {return numeric_limits<_Rep>::max();} |
| 401 | _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR _Rep min() {return numeric_limits<_Rep>::lowest();} |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 402 | }; |
| 403 | |
| 404 | // duration |
| 405 | |
| 406 | template <class _Rep, class _Period> |
Howard Hinnant | a37d3cf | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 407 | class _LIBCPP_TYPE_VIS_ONLY duration |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 408 | { |
| 409 | static_assert(!__is_duration<_Rep>::value, "A duration representation can not be a duration"); |
| 410 | static_assert(__is_ratio<_Period>::value, "Second template parameter of duration must be a std::ratio"); |
| 411 | static_assert(_Period::num > 0, "duration period must be positive"); |
| 412 | public: |
| 413 | typedef _Rep rep; |
| 414 | typedef _Period period; |
| 415 | private: |
| 416 | rep __rep_; |
| 417 | public: |
| 418 | |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 419 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR |
| 420 | #ifndef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 421 | duration() = default; |
Marshall Clow | 3dbcf13 | 2013-07-31 19:39:37 +0000 | [diff] [blame] | 422 | #else |
| 423 | duration() {} |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 424 | #endif |
| 425 | |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 426 | template <class _Rep2> |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 427 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 428 | explicit duration(const _Rep2& __r, |
| 429 | typename enable_if |
| 430 | < |
| 431 | is_convertible<_Rep2, rep>::value && |
| 432 | (treat_as_floating_point<rep>::value || |
| 433 | !treat_as_floating_point<_Rep2>::value) |
| 434 | >::type* = 0) |
| 435 | : __rep_(__r) {} |
| 436 | |
| 437 | // conversions |
| 438 | template <class _Rep2, class _Period2> |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 439 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 440 | duration(const duration<_Rep2, _Period2>& __d, |
| 441 | typename enable_if |
| 442 | < |
| 443 | treat_as_floating_point<rep>::value || |
| 444 | (ratio_divide<_Period2, period>::type::den == 1 && |
| 445 | !treat_as_floating_point<_Rep2>::value) |
| 446 | >::type* = 0) |
Howard Hinnant | b1ad5a8 | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 447 | : __rep_(_VSTD::chrono::duration_cast<duration>(__d).count()) {} |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 448 | |
| 449 | // observer |
| 450 | |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 451 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR rep count() const {return __rep_;} |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 452 | |
| 453 | // arithmetic |
| 454 | |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 455 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR duration operator+() const {return *this;} |
| 456 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR duration operator-() const {return duration(-__rep_);} |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 457 | _LIBCPP_INLINE_VISIBILITY duration& operator++() {++__rep_; return *this;} |
| 458 | _LIBCPP_INLINE_VISIBILITY duration operator++(int) {return duration(__rep_++);} |
| 459 | _LIBCPP_INLINE_VISIBILITY duration& operator--() {--__rep_; return *this;} |
| 460 | _LIBCPP_INLINE_VISIBILITY duration operator--(int) {return duration(__rep_--);} |
| 461 | |
| 462 | _LIBCPP_INLINE_VISIBILITY duration& operator+=(const duration& __d) {__rep_ += __d.count(); return *this;} |
| 463 | _LIBCPP_INLINE_VISIBILITY duration& operator-=(const duration& __d) {__rep_ -= __d.count(); return *this;} |
| 464 | |
| 465 | _LIBCPP_INLINE_VISIBILITY duration& operator*=(const rep& rhs) {__rep_ *= rhs; return *this;} |
| 466 | _LIBCPP_INLINE_VISIBILITY duration& operator/=(const rep& rhs) {__rep_ /= rhs; return *this;} |
| 467 | _LIBCPP_INLINE_VISIBILITY duration& operator%=(const rep& rhs) {__rep_ %= rhs; return *this;} |
| 468 | _LIBCPP_INLINE_VISIBILITY duration& operator%=(const duration& rhs) {__rep_ %= rhs.count(); return *this;} |
| 469 | |
| 470 | // special values |
| 471 | |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 472 | _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR duration zero() {return duration(duration_values<rep>::zero());} |
| 473 | _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR duration min() {return duration(duration_values<rep>::min());} |
| 474 | _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR duration max() {return duration(duration_values<rep>::max());} |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 475 | }; |
| 476 | |
| 477 | typedef duration<long long, nano> nanoseconds; |
| 478 | typedef duration<long long, micro> microseconds; |
| 479 | typedef duration<long long, milli> milliseconds; |
| 480 | typedef duration<long long > seconds; |
| 481 | typedef duration< long, ratio< 60> > minutes; |
| 482 | typedef duration< long, ratio<3600> > hours; |
| 483 | |
| 484 | // Duration == |
| 485 | |
| 486 | template <class _LhsDuration, class _RhsDuration> |
| 487 | struct __duration_eq |
| 488 | { |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 489 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR |
Howard Hinnant | 12967fb | 2013-06-28 18:09:35 +0000 | [diff] [blame] | 490 | bool operator()(const _LhsDuration& __lhs, const _RhsDuration& __rhs) const |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 491 | { |
| 492 | typedef typename common_type<_LhsDuration, _RhsDuration>::type _Ct; |
| 493 | return _Ct(__lhs).count() == _Ct(__rhs).count(); |
| 494 | } |
| 495 | }; |
| 496 | |
| 497 | template <class _LhsDuration> |
| 498 | struct __duration_eq<_LhsDuration, _LhsDuration> |
| 499 | { |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 500 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR |
Howard Hinnant | 12967fb | 2013-06-28 18:09:35 +0000 | [diff] [blame] | 501 | bool operator()(const _LhsDuration& __lhs, const _LhsDuration& __rhs) const |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 502 | {return __lhs.count() == __rhs.count();} |
| 503 | }; |
| 504 | |
| 505 | template <class _Rep1, class _Period1, class _Rep2, class _Period2> |
| 506 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 507 | _LIBCPP_CONSTEXPR |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 508 | bool |
| 509 | operator==(const duration<_Rep1, _Period1>& __lhs, const duration<_Rep2, _Period2>& __rhs) |
| 510 | { |
| 511 | return __duration_eq<duration<_Rep1, _Period1>, duration<_Rep2, _Period2> >()(__lhs, __rhs); |
| 512 | } |
| 513 | |
| 514 | // Duration != |
| 515 | |
| 516 | template <class _Rep1, class _Period1, class _Rep2, class _Period2> |
| 517 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 518 | _LIBCPP_CONSTEXPR |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 519 | bool |
| 520 | operator!=(const duration<_Rep1, _Period1>& __lhs, const duration<_Rep2, _Period2>& __rhs) |
| 521 | { |
| 522 | return !(__lhs == __rhs); |
| 523 | } |
| 524 | |
| 525 | // Duration < |
| 526 | |
| 527 | template <class _LhsDuration, class _RhsDuration> |
| 528 | struct __duration_lt |
| 529 | { |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 530 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR |
Howard Hinnant | 12967fb | 2013-06-28 18:09:35 +0000 | [diff] [blame] | 531 | bool operator()(const _LhsDuration& __lhs, const _RhsDuration& __rhs) const |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 532 | { |
| 533 | typedef typename common_type<_LhsDuration, _RhsDuration>::type _Ct; |
| 534 | return _Ct(__lhs).count() < _Ct(__rhs).count(); |
| 535 | } |
| 536 | }; |
| 537 | |
| 538 | template <class _LhsDuration> |
| 539 | struct __duration_lt<_LhsDuration, _LhsDuration> |
| 540 | { |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 541 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR |
Howard Hinnant | 12967fb | 2013-06-28 18:09:35 +0000 | [diff] [blame] | 542 | bool operator()(const _LhsDuration& __lhs, const _LhsDuration& __rhs) const |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 543 | {return __lhs.count() < __rhs.count();} |
| 544 | }; |
| 545 | |
| 546 | template <class _Rep1, class _Period1, class _Rep2, class _Period2> |
| 547 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 548 | _LIBCPP_CONSTEXPR |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 549 | bool |
| 550 | operator< (const duration<_Rep1, _Period1>& __lhs, const duration<_Rep2, _Period2>& __rhs) |
| 551 | { |
| 552 | return __duration_lt<duration<_Rep1, _Period1>, duration<_Rep2, _Period2> >()(__lhs, __rhs); |
| 553 | } |
| 554 | |
| 555 | // Duration > |
| 556 | |
| 557 | template <class _Rep1, class _Period1, class _Rep2, class _Period2> |
| 558 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 559 | _LIBCPP_CONSTEXPR |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 560 | bool |
| 561 | operator> (const duration<_Rep1, _Period1>& __lhs, const duration<_Rep2, _Period2>& __rhs) |
| 562 | { |
| 563 | return __rhs < __lhs; |
| 564 | } |
| 565 | |
| 566 | // Duration <= |
| 567 | |
| 568 | template <class _Rep1, class _Period1, class _Rep2, class _Period2> |
| 569 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 570 | _LIBCPP_CONSTEXPR |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 571 | bool |
| 572 | operator<=(const duration<_Rep1, _Period1>& __lhs, const duration<_Rep2, _Period2>& __rhs) |
| 573 | { |
| 574 | return !(__rhs < __lhs); |
| 575 | } |
| 576 | |
| 577 | // Duration >= |
| 578 | |
| 579 | template <class _Rep1, class _Period1, class _Rep2, class _Period2> |
| 580 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 581 | _LIBCPP_CONSTEXPR |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 582 | bool |
| 583 | operator>=(const duration<_Rep1, _Period1>& __lhs, const duration<_Rep2, _Period2>& __rhs) |
| 584 | { |
| 585 | return !(__lhs < __rhs); |
| 586 | } |
| 587 | |
| 588 | // Duration + |
| 589 | |
| 590 | template <class _Rep1, class _Period1, class _Rep2, class _Period2> |
| 591 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 592 | _LIBCPP_CONSTEXPR |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 593 | typename common_type<duration<_Rep1, _Period1>, duration<_Rep2, _Period2> >::type |
| 594 | operator+(const duration<_Rep1, _Period1>& __lhs, const duration<_Rep2, _Period2>& __rhs) |
| 595 | { |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 596 | typedef typename common_type<duration<_Rep1, _Period1>, duration<_Rep2, _Period2> >::type _Cd; |
| 597 | return _Cd(_Cd(__lhs).count() + _Cd(__rhs).count()); |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 598 | } |
| 599 | |
| 600 | // Duration - |
| 601 | |
| 602 | template <class _Rep1, class _Period1, class _Rep2, class _Period2> |
| 603 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 604 | _LIBCPP_CONSTEXPR |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 605 | typename common_type<duration<_Rep1, _Period1>, duration<_Rep2, _Period2> >::type |
| 606 | operator-(const duration<_Rep1, _Period1>& __lhs, const duration<_Rep2, _Period2>& __rhs) |
| 607 | { |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 608 | typedef typename common_type<duration<_Rep1, _Period1>, duration<_Rep2, _Period2> >::type _Cd; |
| 609 | return _Cd(_Cd(__lhs).count() - _Cd(__rhs).count()); |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 610 | } |
| 611 | |
| 612 | // Duration * |
| 613 | |
| 614 | template <class _Rep1, class _Period, class _Rep2> |
| 615 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 616 | _LIBCPP_CONSTEXPR |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 617 | typename enable_if |
| 618 | < |
| 619 | is_convertible<_Rep2, typename common_type<_Rep1, _Rep2>::type>::value, |
| 620 | duration<typename common_type<_Rep1, _Rep2>::type, _Period> |
| 621 | >::type |
| 622 | operator*(const duration<_Rep1, _Period>& __d, const _Rep2& __s) |
| 623 | { |
| 624 | typedef typename common_type<_Rep1, _Rep2>::type _Cr; |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 625 | typedef duration<_Cr, _Period> _Cd; |
| 626 | return _Cd(_Cd(__d).count() * static_cast<_Cr>(__s)); |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 627 | } |
| 628 | |
| 629 | template <class _Rep1, class _Period, class _Rep2> |
| 630 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 631 | _LIBCPP_CONSTEXPR |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 632 | typename enable_if |
| 633 | < |
| 634 | is_convertible<_Rep1, typename common_type<_Rep1, _Rep2>::type>::value, |
| 635 | duration<typename common_type<_Rep1, _Rep2>::type, _Period> |
| 636 | >::type |
| 637 | operator*(const _Rep1& __s, const duration<_Rep2, _Period>& __d) |
| 638 | { |
| 639 | return __d * __s; |
| 640 | } |
| 641 | |
| 642 | // Duration / |
| 643 | |
| 644 | template <class _Duration, class _Rep, bool = __is_duration<_Rep>::value> |
| 645 | struct __duration_divide_result |
| 646 | { |
| 647 | }; |
| 648 | |
| 649 | template <class _Duration, class _Rep2, |
| 650 | bool = is_convertible<_Rep2, |
| 651 | typename common_type<typename _Duration::rep, _Rep2>::type>::value> |
| 652 | struct __duration_divide_imp |
| 653 | { |
| 654 | }; |
| 655 | |
| 656 | template <class _Rep1, class _Period, class _Rep2> |
| 657 | struct __duration_divide_imp<duration<_Rep1, _Period>, _Rep2, true> |
| 658 | { |
| 659 | typedef duration<typename common_type<_Rep1, _Rep2>::type, _Period> type; |
| 660 | }; |
| 661 | |
| 662 | template <class _Rep1, class _Period, class _Rep2> |
| 663 | struct __duration_divide_result<duration<_Rep1, _Period>, _Rep2, false> |
| 664 | : __duration_divide_imp<duration<_Rep1, _Period>, _Rep2> |
| 665 | { |
| 666 | }; |
| 667 | |
| 668 | template <class _Rep1, class _Period, class _Rep2> |
| 669 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 670 | _LIBCPP_CONSTEXPR |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 671 | typename __duration_divide_result<duration<_Rep1, _Period>, _Rep2>::type |
| 672 | operator/(const duration<_Rep1, _Period>& __d, const _Rep2& __s) |
| 673 | { |
| 674 | typedef typename common_type<_Rep1, _Rep2>::type _Cr; |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 675 | typedef duration<_Cr, _Period> _Cd; |
| 676 | return _Cd(_Cd(__d).count() / static_cast<_Cr>(__s)); |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 677 | } |
| 678 | |
| 679 | template <class _Rep1, class _Period1, class _Rep2, class _Period2> |
| 680 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 681 | _LIBCPP_CONSTEXPR |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 682 | typename common_type<_Rep1, _Rep2>::type |
| 683 | operator/(const duration<_Rep1, _Period1>& __lhs, const duration<_Rep2, _Period2>& __rhs) |
| 684 | { |
| 685 | typedef typename common_type<duration<_Rep1, _Period1>, duration<_Rep2, _Period2> >::type _Ct; |
| 686 | return _Ct(__lhs).count() / _Ct(__rhs).count(); |
| 687 | } |
| 688 | |
| 689 | // Duration % |
| 690 | |
| 691 | template <class _Rep1, class _Period, class _Rep2> |
| 692 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 693 | _LIBCPP_CONSTEXPR |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 694 | typename __duration_divide_result<duration<_Rep1, _Period>, _Rep2>::type |
| 695 | operator%(const duration<_Rep1, _Period>& __d, const _Rep2& __s) |
| 696 | { |
| 697 | typedef typename common_type<_Rep1, _Rep2>::type _Cr; |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 698 | typedef duration<_Cr, _Period> _Cd; |
| 699 | return _Cd(_Cd(__d).count() % static_cast<_Cr>(__s)); |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 700 | } |
| 701 | |
| 702 | template <class _Rep1, class _Period1, class _Rep2, class _Period2> |
| 703 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 704 | _LIBCPP_CONSTEXPR |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 705 | typename common_type<duration<_Rep1, _Period1>, duration<_Rep2, _Period2> >::type |
| 706 | operator%(const duration<_Rep1, _Period1>& __lhs, const duration<_Rep2, _Period2>& __rhs) |
| 707 | { |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 708 | typedef typename common_type<_Rep1, _Rep2>::type _Cr; |
| 709 | typedef typename common_type<duration<_Rep1, _Period1>, duration<_Rep2, _Period2> >::type _Cd; |
| 710 | return _Cd(static_cast<_Cr>(_Cd(__lhs).count()) % static_cast<_Cr>(_Cd(__rhs).count())); |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 711 | } |
| 712 | |
| 713 | ////////////////////////////////////////////////////////// |
| 714 | ///////////////////// time_point ///////////////////////// |
| 715 | ////////////////////////////////////////////////////////// |
| 716 | |
| 717 | template <class _Clock, class _Duration = typename _Clock::duration> |
Howard Hinnant | a37d3cf | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 718 | class _LIBCPP_TYPE_VIS_ONLY time_point |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 719 | { |
| 720 | static_assert(__is_duration<_Duration>::value, |
| 721 | "Second template parameter of time_point must be a std::chrono::duration"); |
| 722 | public: |
| 723 | typedef _Clock clock; |
| 724 | typedef _Duration duration; |
| 725 | typedef typename duration::rep rep; |
| 726 | typedef typename duration::period period; |
| 727 | private: |
| 728 | duration __d_; |
| 729 | |
| 730 | public: |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 731 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 time_point() : __d_(duration::zero()) {} |
| 732 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 explicit time_point(const duration& __d) : __d_(__d) {} |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 733 | |
| 734 | // conversions |
| 735 | template <class _Duration2> |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 736 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 737 | time_point(const time_point<clock, _Duration2>& t, |
| 738 | typename enable_if |
| 739 | < |
| 740 | is_convertible<_Duration2, duration>::value |
| 741 | >::type* = 0) |
| 742 | : __d_(t.time_since_epoch()) {} |
| 743 | |
| 744 | // observer |
| 745 | |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 746 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 duration time_since_epoch() const {return __d_;} |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 747 | |
| 748 | // arithmetic |
| 749 | |
Howard Hinnant | ecc7ba9 | 2013-07-08 21:06:38 +0000 | [diff] [blame] | 750 | _LIBCPP_INLINE_VISIBILITY time_point& operator+=(const duration& __d) {__d_ += __d; return *this;} |
| 751 | _LIBCPP_INLINE_VISIBILITY time_point& operator-=(const duration& __d) {__d_ -= __d; return *this;} |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 752 | |
| 753 | // special values |
| 754 | |
Howard Hinnant | cf3143c | 2012-07-13 19:17:27 +0000 | [diff] [blame] | 755 | _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR time_point min() {return time_point(duration::min());} |
| 756 | _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR time_point max() {return time_point(duration::max());} |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 757 | }; |
| 758 | |
| 759 | } // chrono |
| 760 | |
| 761 | template <class _Clock, class _Duration1, class _Duration2> |
Howard Hinnant | a37d3cf | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 762 | struct _LIBCPP_TYPE_VIS_ONLY common_type<chrono::time_point<_Clock, _Duration1>, |
| 763 | chrono::time_point<_Clock, _Duration2> > |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 764 | { |
| 765 | typedef chrono::time_point<_Clock, typename common_type<_Duration1, _Duration2>::type> type; |
| 766 | }; |
| 767 | |
| 768 | namespace chrono { |
| 769 | |
| 770 | template <class _ToDuration, class _Clock, class _Duration> |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 771 | inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 772 | time_point<_Clock, _ToDuration> |
| 773 | time_point_cast(const time_point<_Clock, _Duration>& __t) |
| 774 | { |
Howard Hinnant | b1ad5a8 | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 775 | return time_point<_Clock, _ToDuration>(_VSTD::chrono::duration_cast<_ToDuration>(__t.time_since_epoch())); |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 776 | } |
| 777 | |
| 778 | // time_point == |
| 779 | |
| 780 | template <class _Clock, class _Duration1, class _Duration2> |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 781 | inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 782 | bool |
| 783 | operator==(const time_point<_Clock, _Duration1>& __lhs, const time_point<_Clock, _Duration2>& __rhs) |
| 784 | { |
| 785 | return __lhs.time_since_epoch() == __rhs.time_since_epoch(); |
| 786 | } |
| 787 | |
| 788 | // time_point != |
| 789 | |
| 790 | template <class _Clock, class _Duration1, class _Duration2> |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 791 | inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 792 | bool |
| 793 | operator!=(const time_point<_Clock, _Duration1>& __lhs, const time_point<_Clock, _Duration2>& __rhs) |
| 794 | { |
| 795 | return !(__lhs == __rhs); |
| 796 | } |
| 797 | |
| 798 | // time_point < |
| 799 | |
| 800 | template <class _Clock, class _Duration1, class _Duration2> |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 801 | inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 802 | bool |
| 803 | operator<(const time_point<_Clock, _Duration1>& __lhs, const time_point<_Clock, _Duration2>& __rhs) |
| 804 | { |
| 805 | return __lhs.time_since_epoch() < __rhs.time_since_epoch(); |
| 806 | } |
| 807 | |
| 808 | // time_point > |
| 809 | |
| 810 | template <class _Clock, class _Duration1, class _Duration2> |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 811 | inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 812 | bool |
| 813 | operator>(const time_point<_Clock, _Duration1>& __lhs, const time_point<_Clock, _Duration2>& __rhs) |
| 814 | { |
| 815 | return __rhs < __lhs; |
| 816 | } |
| 817 | |
| 818 | // time_point <= |
| 819 | |
| 820 | template <class _Clock, class _Duration1, class _Duration2> |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 821 | inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 822 | bool |
| 823 | operator<=(const time_point<_Clock, _Duration1>& __lhs, const time_point<_Clock, _Duration2>& __rhs) |
| 824 | { |
| 825 | return !(__rhs < __lhs); |
| 826 | } |
| 827 | |
| 828 | // time_point >= |
| 829 | |
| 830 | template <class _Clock, class _Duration1, class _Duration2> |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 831 | inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 832 | bool |
| 833 | operator>=(const time_point<_Clock, _Duration1>& __lhs, const time_point<_Clock, _Duration2>& __rhs) |
| 834 | { |
| 835 | return !(__lhs < __rhs); |
| 836 | } |
| 837 | |
| 838 | // time_point operator+(time_point x, duration y); |
| 839 | |
| 840 | template <class _Clock, class _Duration1, class _Rep2, class _Period2> |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 841 | inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 842 | time_point<_Clock, typename common_type<_Duration1, duration<_Rep2, _Period2> >::type> |
| 843 | operator+(const time_point<_Clock, _Duration1>& __lhs, const duration<_Rep2, _Period2>& __rhs) |
| 844 | { |
| 845 | typedef time_point<_Clock, typename common_type<_Duration1, duration<_Rep2, _Period2> >::type> _Tr; |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 846 | return _Tr (__lhs.time_since_epoch() + __rhs); |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 847 | } |
| 848 | |
| 849 | // time_point operator+(duration x, time_point y); |
| 850 | |
| 851 | template <class _Rep1, class _Period1, class _Clock, class _Duration2> |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 852 | inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 853 | time_point<_Clock, typename common_type<duration<_Rep1, _Period1>, _Duration2>::type> |
| 854 | operator+(const duration<_Rep1, _Period1>& __lhs, const time_point<_Clock, _Duration2>& __rhs) |
| 855 | { |
| 856 | return __rhs + __lhs; |
| 857 | } |
| 858 | |
| 859 | // time_point operator-(time_point x, duration y); |
| 860 | |
| 861 | template <class _Clock, class _Duration1, class _Rep2, class _Period2> |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 862 | inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 863 | time_point<_Clock, typename common_type<_Duration1, duration<_Rep2, _Period2> >::type> |
| 864 | operator-(const time_point<_Clock, _Duration1>& __lhs, const duration<_Rep2, _Period2>& __rhs) |
| 865 | { |
| 866 | return __lhs + (-__rhs); |
| 867 | } |
| 868 | |
| 869 | // duration operator-(time_point x, time_point y); |
| 870 | |
| 871 | template <class _Clock, class _Duration1, class _Duration2> |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 872 | inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 873 | typename common_type<_Duration1, _Duration2>::type |
| 874 | operator-(const time_point<_Clock, _Duration1>& __lhs, const time_point<_Clock, _Duration2>& __rhs) |
| 875 | { |
| 876 | return __lhs.time_since_epoch() - __rhs.time_since_epoch(); |
| 877 | } |
| 878 | |
| 879 | ////////////////////////////////////////////////////////// |
| 880 | /////////////////////// clocks /////////////////////////// |
| 881 | ////////////////////////////////////////////////////////// |
| 882 | |
Howard Hinnant | 8331b76 | 2013-03-06 23:30:19 +0000 | [diff] [blame] | 883 | class _LIBCPP_TYPE_VIS system_clock |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 884 | { |
| 885 | public: |
| 886 | typedef microseconds duration; |
| 887 | typedef duration::rep rep; |
| 888 | typedef duration::period period; |
| 889 | typedef chrono::time_point<system_clock> time_point; |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 890 | static _LIBCPP_CONSTEXPR_AFTER_CXX11 const bool is_steady = false; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 891 | |
Howard Hinnant | aa54ac4 | 2011-05-28 18:34:36 +0000 | [diff] [blame] | 892 | static time_point now() _NOEXCEPT; |
| 893 | static time_t to_time_t (const time_point& __t) _NOEXCEPT; |
| 894 | static time_point from_time_t(time_t __t) _NOEXCEPT; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 895 | }; |
| 896 | |
Howard Hinnant | 8331b76 | 2013-03-06 23:30:19 +0000 | [diff] [blame] | 897 | class _LIBCPP_TYPE_VIS steady_clock |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 898 | { |
| 899 | public: |
| 900 | typedef nanoseconds duration; |
| 901 | typedef duration::rep rep; |
| 902 | typedef duration::period period; |
Howard Hinnant | c8dbd22 | 2010-11-20 19:16:30 +0000 | [diff] [blame] | 903 | typedef chrono::time_point<steady_clock, duration> time_point; |
Marshall Clow | 5c459c9 | 2013-07-31 19:32:19 +0000 | [diff] [blame] | 904 | static _LIBCPP_CONSTEXPR_AFTER_CXX11 const bool is_steady = true; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 905 | |
Howard Hinnant | aa54ac4 | 2011-05-28 18:34:36 +0000 | [diff] [blame] | 906 | static time_point now() _NOEXCEPT; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 907 | }; |
| 908 | |
Howard Hinnant | c8dbd22 | 2010-11-20 19:16:30 +0000 | [diff] [blame] | 909 | typedef steady_clock high_resolution_clock; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 910 | |
| 911 | } // chrono |
| 912 | |
Marshall Clow | eb41e5c | 2013-07-24 21:18:14 +0000 | [diff] [blame] | 913 | #if _LIBCPP_STD_VER > 11 |
| 914 | // Literal suffixes for chrono types |
| 915 | // inline // Deviation from N3690. |
| 916 | // We believe the inline to be a defect and have submitted an LWG issue. |
| 917 | // An LWG issue number has not yet been assigned. |
| 918 | namespace literals |
| 919 | { |
| 920 | inline namespace chrono_literals |
| 921 | { |
| 922 | |
Howard Hinnant | 5c16756 | 2013-08-07 19:39:48 +0000 | [diff] [blame] | 923 | constexpr chrono::hours operator"" h(unsigned long long __h) |
| 924 | { |
| 925 | return chrono::hours(static_cast<chrono::hours::rep>(__h)); |
| 926 | } |
Marshall Clow | eb41e5c | 2013-07-24 21:18:14 +0000 | [diff] [blame] | 927 | |
Howard Hinnant | 5c16756 | 2013-08-07 19:39:48 +0000 | [diff] [blame] | 928 | constexpr chrono::duration<long double, ratio<3600,1>> operator"" h(long double __h) |
| 929 | { |
| 930 | return chrono::duration<long double, ratio<3600,1>>(__h); |
| 931 | } |
Marshall Clow | eb41e5c | 2013-07-24 21:18:14 +0000 | [diff] [blame] | 932 | |
| 933 | |
Howard Hinnant | 5c16756 | 2013-08-07 19:39:48 +0000 | [diff] [blame] | 934 | constexpr chrono::minutes operator"" min(unsigned long long __m) |
| 935 | { |
| 936 | return chrono::minutes(static_cast<chrono::minutes::rep>(__m)); |
| 937 | } |
Marshall Clow | eb41e5c | 2013-07-24 21:18:14 +0000 | [diff] [blame] | 938 | |
Howard Hinnant | 5c16756 | 2013-08-07 19:39:48 +0000 | [diff] [blame] | 939 | constexpr chrono::duration<long double, ratio<60,1>> operator"" min(long double __m) |
| 940 | { |
| 941 | return chrono::duration<long double, ratio<60,1>> (__m); |
| 942 | } |
Marshall Clow | eb41e5c | 2013-07-24 21:18:14 +0000 | [diff] [blame] | 943 | |
| 944 | |
Howard Hinnant | 5c16756 | 2013-08-07 19:39:48 +0000 | [diff] [blame] | 945 | constexpr chrono::seconds operator"" s(unsigned long long __s) |
| 946 | { |
| 947 | return chrono::seconds(static_cast<chrono::seconds::rep>(__s)); |
| 948 | } |
Marshall Clow | eb41e5c | 2013-07-24 21:18:14 +0000 | [diff] [blame] | 949 | |
Howard Hinnant | 5c16756 | 2013-08-07 19:39:48 +0000 | [diff] [blame] | 950 | constexpr chrono::duration<long double> operator"" s(long double __s) |
| 951 | { |
| 952 | return chrono::duration<long double> (__s); |
| 953 | } |
Marshall Clow | eb41e5c | 2013-07-24 21:18:14 +0000 | [diff] [blame] | 954 | |
| 955 | |
Howard Hinnant | 5c16756 | 2013-08-07 19:39:48 +0000 | [diff] [blame] | 956 | constexpr chrono::milliseconds operator"" ms(unsigned long long __ms) |
| 957 | { |
| 958 | return chrono::milliseconds(static_cast<chrono::milliseconds::rep>(__ms)); |
| 959 | } |
Marshall Clow | eb41e5c | 2013-07-24 21:18:14 +0000 | [diff] [blame] | 960 | |
Howard Hinnant | 5c16756 | 2013-08-07 19:39:48 +0000 | [diff] [blame] | 961 | constexpr chrono::duration<long double, milli> operator"" ms(long double __ms) |
| 962 | { |
| 963 | return chrono::duration<long double, milli>(__ms); |
| 964 | } |
Marshall Clow | eb41e5c | 2013-07-24 21:18:14 +0000 | [diff] [blame] | 965 | |
| 966 | |
Howard Hinnant | 5c16756 | 2013-08-07 19:39:48 +0000 | [diff] [blame] | 967 | constexpr chrono::microseconds operator"" us(unsigned long long __us) |
| 968 | { |
| 969 | return chrono::microseconds(static_cast<chrono::microseconds::rep>(__us)); |
| 970 | } |
Marshall Clow | eb41e5c | 2013-07-24 21:18:14 +0000 | [diff] [blame] | 971 | |
Howard Hinnant | 5c16756 | 2013-08-07 19:39:48 +0000 | [diff] [blame] | 972 | constexpr chrono::duration<long double, micro> operator"" us(long double __us) |
| 973 | { |
| 974 | return chrono::duration<long double, micro> (__us); |
| 975 | } |
| 976 | |
Marshall Clow | eb41e5c | 2013-07-24 21:18:14 +0000 | [diff] [blame] | 977 | |
Howard Hinnant | 5c16756 | 2013-08-07 19:39:48 +0000 | [diff] [blame] | 978 | constexpr chrono::nanoseconds operator"" ns(unsigned long long __ns) |
| 979 | { |
| 980 | return chrono::nanoseconds(static_cast<chrono::nanoseconds::rep>(__ns)); |
| 981 | } |
Marshall Clow | eb41e5c | 2013-07-24 21:18:14 +0000 | [diff] [blame] | 982 | |
Howard Hinnant | 5c16756 | 2013-08-07 19:39:48 +0000 | [diff] [blame] | 983 | constexpr chrono::duration<long double, nano> operator"" ns(long double __ns) |
| 984 | { |
| 985 | return chrono::duration<long double, nano> (__ns); |
| 986 | } |
Marshall Clow | eb41e5c | 2013-07-24 21:18:14 +0000 | [diff] [blame] | 987 | |
| 988 | }} |
| 989 | #endif |
| 990 | |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 991 | _LIBCPP_END_NAMESPACE_STD |
| 992 | |
| 993 | #endif // _LIBCPP_CHRONO |