2010-05-12 03:42:16 +08:00
|
|
|
//===------------------------- chrono.cpp ---------------------------------===//
|
|
|
|
//
|
2010-05-12 05:36:01 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
2010-05-12 03:42:16 +08:00
|
|
|
//
|
2010-11-17 06:09:02 +08:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2010-05-12 03:42:16 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2016-07-02 07:31:55 +08:00
|
|
|
|
2010-05-12 03:42:16 +08:00
|
|
|
#include "chrono"
|
2015-06-23 22:45:02 +08:00
|
|
|
#include "cerrno" // errno
|
|
|
|
#include "system_error" // __throw_system_error
|
|
|
|
#include <time.h> // clock_gettime, CLOCK_MONOTONIC and CLOCK_REALTIME
|
2015-05-15 04:54:18 +08:00
|
|
|
|
|
|
|
#if !defined(CLOCK_REALTIME)
|
|
|
|
#include <sys/time.h> // for gettimeofday and timeval
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(_LIBCPP_HAS_NO_MONOTONIC_CLOCK) && !defined(CLOCK_MONOTONIC)
|
|
|
|
#if __APPLE__
|
|
|
|
#include <mach/mach_time.h> // mach_absolute_time, mach_timebase_info_data_t
|
|
|
|
#else
|
|
|
|
#error "Monotonic clock not implemented"
|
|
|
|
#endif
|
|
|
|
#endif
|
2010-05-12 03:42:16 +08:00
|
|
|
|
|
|
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
|
|
|
|
|
|
|
namespace chrono
|
|
|
|
{
|
|
|
|
|
|
|
|
// system_clock
|
|
|
|
|
2012-12-13 05:14:28 +08:00
|
|
|
const bool system_clock::is_steady;
|
|
|
|
|
2010-05-12 03:42:16 +08:00
|
|
|
system_clock::time_point
|
2011-05-29 02:34:36 +08:00
|
|
|
system_clock::now() _NOEXCEPT
|
2010-05-12 03:42:16 +08:00
|
|
|
{
|
2015-05-15 04:54:18 +08:00
|
|
|
#ifdef CLOCK_REALTIME
|
|
|
|
struct timespec tp;
|
|
|
|
if (0 != clock_gettime(CLOCK_REALTIME, &tp))
|
|
|
|
__throw_system_error(errno, "clock_gettime(CLOCK_REALTIME) failed");
|
|
|
|
return time_point(seconds(tp.tv_sec) + microseconds(tp.tv_nsec / 1000));
|
|
|
|
#else // !CLOCK_REALTIME
|
2010-05-12 03:42:16 +08:00
|
|
|
timeval tv;
|
|
|
|
gettimeofday(&tv, 0);
|
|
|
|
return time_point(seconds(tv.tv_sec) + microseconds(tv.tv_usec));
|
2015-05-15 04:54:18 +08:00
|
|
|
#endif // CLOCK_REALTIME
|
2010-05-12 03:42:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
time_t
|
2011-05-29 02:34:36 +08:00
|
|
|
system_clock::to_time_t(const time_point& t) _NOEXCEPT
|
2010-05-12 03:42:16 +08:00
|
|
|
{
|
|
|
|
return time_t(duration_cast<seconds>(t.time_since_epoch()).count());
|
|
|
|
}
|
|
|
|
|
|
|
|
system_clock::time_point
|
2011-05-29 02:34:36 +08:00
|
|
|
system_clock::from_time_t(time_t t) _NOEXCEPT
|
2010-05-12 03:42:16 +08:00
|
|
|
{
|
|
|
|
return system_clock::time_point(seconds(t));
|
|
|
|
}
|
|
|
|
|
2014-09-03 05:14:38 +08:00
|
|
|
#ifndef _LIBCPP_HAS_NO_MONOTONIC_CLOCK
|
2010-11-21 03:16:30 +08:00
|
|
|
// steady_clock
|
2015-05-15 04:54:18 +08:00
|
|
|
//
|
|
|
|
// Warning: If this is not truly steady, then it is non-conforming. It is
|
|
|
|
// better for it to not exist and have the rest of libc++ use system_clock
|
|
|
|
// instead.
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2012-12-13 05:14:28 +08:00
|
|
|
const bool steady_clock::is_steady;
|
|
|
|
|
2015-05-15 04:54:18 +08:00
|
|
|
#ifdef CLOCK_MONOTONIC
|
|
|
|
|
|
|
|
steady_clock::time_point
|
|
|
|
steady_clock::now() _NOEXCEPT
|
|
|
|
{
|
|
|
|
struct timespec tp;
|
|
|
|
if (0 != clock_gettime(CLOCK_MONOTONIC, &tp))
|
|
|
|
__throw_system_error(errno, "clock_gettime(CLOCK_MONOTONIC) failed");
|
|
|
|
return time_point(seconds(tp.tv_sec) + nanoseconds(tp.tv_nsec));
|
|
|
|
}
|
|
|
|
|
|
|
|
#elif defined(__APPLE__)
|
|
|
|
|
2010-05-12 03:42:16 +08:00
|
|
|
// mach_absolute_time() * MachInfo.numer / MachInfo.denom is the number of
|
|
|
|
// nanoseconds since the computer booted up. MachInfo.numer and MachInfo.denom
|
|
|
|
// are run time constants supplied by the OS. This clock has no relationship
|
|
|
|
// to the Gregorian calendar. It's main use is as a high resolution timer.
|
|
|
|
|
|
|
|
// MachInfo.numer / MachInfo.denom is often 1 on the latest equipment. Specialize
|
|
|
|
// for that case as an optimization.
|
|
|
|
|
|
|
|
static
|
2010-11-21 03:16:30 +08:00
|
|
|
steady_clock::rep
|
|
|
|
steady_simplified()
|
2010-05-12 03:42:16 +08:00
|
|
|
{
|
2011-12-02 04:21:04 +08:00
|
|
|
return static_cast<steady_clock::rep>(mach_absolute_time());
|
2010-05-12 03:42:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
double
|
2010-11-21 03:16:30 +08:00
|
|
|
compute_steady_factor()
|
2010-05-12 03:42:16 +08:00
|
|
|
{
|
|
|
|
mach_timebase_info_data_t MachInfo;
|
|
|
|
mach_timebase_info(&MachInfo);
|
|
|
|
return static_cast<double>(MachInfo.numer) / MachInfo.denom;
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
2010-11-21 03:16:30 +08:00
|
|
|
steady_clock::rep
|
|
|
|
steady_full()
|
2010-05-12 03:42:16 +08:00
|
|
|
{
|
2010-11-21 03:16:30 +08:00
|
|
|
static const double factor = compute_steady_factor();
|
|
|
|
return static_cast<steady_clock::rep>(mach_absolute_time() * factor);
|
2010-05-12 03:42:16 +08:00
|
|
|
}
|
|
|
|
|
2010-11-21 03:16:30 +08:00
|
|
|
typedef steady_clock::rep (*FP)();
|
2010-05-12 03:42:16 +08:00
|
|
|
|
|
|
|
static
|
|
|
|
FP
|
2010-11-21 03:16:30 +08:00
|
|
|
init_steady_clock()
|
2010-05-12 03:42:16 +08:00
|
|
|
{
|
|
|
|
mach_timebase_info_data_t MachInfo;
|
|
|
|
mach_timebase_info(&MachInfo);
|
|
|
|
if (MachInfo.numer == MachInfo.denom)
|
2010-11-21 03:16:30 +08:00
|
|
|
return &steady_simplified;
|
|
|
|
return &steady_full;
|
2010-05-12 03:42:16 +08:00
|
|
|
}
|
|
|
|
|
2010-11-21 03:16:30 +08:00
|
|
|
steady_clock::time_point
|
2011-05-29 02:34:36 +08:00
|
|
|
steady_clock::now() _NOEXCEPT
|
2010-05-12 03:42:16 +08:00
|
|
|
{
|
2010-11-21 03:16:30 +08:00
|
|
|
static FP fp = init_steady_clock();
|
2010-05-12 03:42:16 +08:00
|
|
|
return time_point(duration(fp()));
|
|
|
|
}
|
|
|
|
|
2015-05-15 04:54:18 +08:00
|
|
|
#else
|
|
|
|
#error "Monotonic clock not implemented"
|
|
|
|
#endif
|
2010-05-25 01:49:41 +08:00
|
|
|
|
2014-09-03 05:14:38 +08:00
|
|
|
#endif // !_LIBCPP_HAS_NO_MONOTONIC_CLOCK
|
|
|
|
|
2010-05-12 03:42:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
_LIBCPP_END_NAMESPACE_STD
|