timespec.hpp 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. #ifndef BOOST_THREAD_PTHREAD_TIMESPEC_HPP
  2. #define BOOST_THREAD_PTHREAD_TIMESPEC_HPP
  3. // (C) Copyright 2007-8 Anthony Williams
  4. // (C) Copyright 2012 Vicente J. Botet Escriba
  5. //
  6. // Distributed under the Boost Software License, Version 1.0. (See
  7. // accompanying file LICENSE_1_0.txt or copy at
  8. // http://www.boost.org/LICENSE_1_0.txt)
  9. #include <boost/thread/detail/config.hpp>
  10. #include <boost/thread/thread_time.hpp>
  11. #if defined BOOST_THREAD_USES_DATETIME
  12. #include <boost/date_time/posix_time/conversion.hpp>
  13. #endif
  14. #include <pthread.h>
  15. #ifndef _WIN32
  16. #include <unistd.h>
  17. #endif
  18. #ifdef BOOST_THREAD_USES_CHRONO
  19. #include <boost/chrono/duration.hpp>
  20. #endif
  21. #if defined(macintosh) || defined(__APPLE__) || defined(__APPLE_CC__)
  22. # define BOOST_THREAD_TIMESPEC_MAC_API
  23. #include <sys/time.h> //for gettimeofday and timeval
  24. #else
  25. #include <time.h> // for clock_gettime
  26. #endif
  27. #include <boost/config/abi_prefix.hpp>
  28. namespace boost
  29. {
  30. namespace detail
  31. {
  32. #if defined BOOST_THREAD_USES_DATETIME
  33. inline struct timespec to_timespec(boost::system_time const& abs_time)
  34. {
  35. struct timespec timeout = { 0,0};
  36. boost::posix_time::time_duration const time_since_epoch=abs_time-boost::posix_time::from_time_t(0);
  37. timeout.tv_sec=time_since_epoch.total_seconds();
  38. timeout.tv_nsec=(long)(time_since_epoch.fractional_seconds()*(1000000000l/time_since_epoch.ticks_per_second()));
  39. return timeout;
  40. }
  41. #endif
  42. #if defined BOOST_THREAD_USES_CHRONO
  43. inline timespec to_timespec(chrono::nanoseconds const& ns)
  44. {
  45. struct timespec ts;
  46. ts.tv_sec = static_cast<long>(chrono::duration_cast<chrono::seconds>(ns).count());
  47. ts.tv_nsec = static_cast<long>((ns - chrono::duration_cast<chrono::seconds>(ns)).count());
  48. return ts;
  49. }
  50. #endif
  51. inline timespec to_timespec(boost::intmax_t const& ns)
  52. {
  53. boost::intmax_t s = ns / 1000000000l;
  54. struct timespec ts;
  55. ts.tv_sec = static_cast<long> (s);
  56. ts.tv_nsec = static_cast<long> (ns - s * 1000000000l);
  57. return ts;
  58. }
  59. inline boost::intmax_t to_nanoseconds_int_max(timespec const& ts)
  60. {
  61. return static_cast<boost::intmax_t>(ts.tv_sec) * 1000000000l + ts.tv_nsec;
  62. }
  63. inline bool timespec_ge_zero(timespec const& ts)
  64. {
  65. return (ts.tv_sec >= 0) || (ts.tv_nsec >= 0);
  66. }
  67. inline timespec timespec_now()
  68. {
  69. timespec ts;
  70. #if defined(BOOST_THREAD_TIMESPEC_MAC_API)
  71. timeval tv;
  72. ::gettimeofday(&tv, 0);
  73. ts.tv_sec = tv.tv_sec;
  74. ts.tv_nsec = tv.tv_usec * 1000;
  75. #else
  76. if ( ::clock_gettime( CLOCK_REALTIME, &ts ) )
  77. {
  78. BOOST_ASSERT(0 && "Boost::Thread - Internal Error");
  79. }
  80. #endif
  81. return ts;
  82. }
  83. inline timespec timespec_zero()
  84. {
  85. timespec ts;
  86. ts.tv_sec = 0;
  87. ts.tv_nsec = 0;
  88. return ts;
  89. }
  90. inline timespec timespec_plus(timespec const& lhs, timespec const& rhs)
  91. {
  92. return to_timespec(to_nanoseconds_int_max(lhs) + to_nanoseconds_int_max(rhs));
  93. }
  94. inline timespec timespec_minus(timespec const& lhs, timespec const& rhs)
  95. {
  96. return to_timespec(to_nanoseconds_int_max(lhs) - to_nanoseconds_int_max(rhs));
  97. }
  98. inline bool timespec_gt(timespec const& lhs, timespec const& rhs)
  99. {
  100. return to_nanoseconds_int_max(lhs) > to_nanoseconds_int_max(rhs);
  101. }
  102. inline bool timespec_ge(timespec const& lhs, timespec const& rhs)
  103. {
  104. return to_nanoseconds_int_max(lhs) >= to_nanoseconds_int_max(rhs);
  105. }
  106. }
  107. }
  108. #include <boost/config/abi_suffix.hpp>
  109. #endif