thread.hpp 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. // Distributed under the Boost Software License, Version 1.0. (See
  2. // accompanying file LICENSE_1_0.txt or copy at
  3. // http://www.boost.org/LICENSE_1_0.txt)
  4. // (C) Copyright 2011 Vicente J. Botet Escriba
  5. #ifndef BOOST_THREAD_V2_THREAD_HPP
  6. #define BOOST_THREAD_V2_THREAD_HPP
  7. #include <boost/thread/detail/config.hpp>
  8. #ifdef BOOST_THREAD_USES_CHRONO
  9. #include <boost/chrono/system_clocks.hpp>
  10. #include <boost/chrono/ceil.hpp>
  11. #endif
  12. #include <boost/thread/condition_variable.hpp>
  13. #include <boost/thread/lock_types.hpp>
  14. namespace boost
  15. {
  16. namespace this_thread
  17. {
  18. namespace no_interruption_point
  19. {
  20. #ifdef BOOST_THREAD_USES_CHRONO
  21. template <class Clock, class Duration>
  22. void sleep_until(const chrono::time_point<Clock, Duration>& t)
  23. {
  24. using namespace chrono;
  25. mutex mut;
  26. condition_variable cv;
  27. unique_lock<mutex> lk(mut);
  28. while (Clock::now() < t)
  29. cv.wait_until(lk, t);
  30. }
  31. #ifdef BOOST_THREAD_SLEEP_FOR_IS_STEADY
  32. template <class Rep, class Period>
  33. void sleep_for(const chrono::duration<Rep, Period>& d)
  34. {
  35. using namespace chrono;
  36. if (d > duration<Rep, Period>::zero())
  37. {
  38. duration<long double> Max = nanoseconds::max BOOST_PREVENT_MACRO_SUBSTITUTION ();
  39. nanoseconds ns;
  40. if (d < Max)
  41. {
  42. ns = duration_cast<nanoseconds>(d);
  43. if (ns < d)
  44. ++ns;
  45. }
  46. else
  47. ns = nanoseconds:: max BOOST_PREVENT_MACRO_SUBSTITUTION ();
  48. sleep_for(ns);
  49. }
  50. }
  51. template <class Duration>
  52. inline BOOST_SYMBOL_VISIBLE
  53. void sleep_until(const chrono::time_point<chrono::steady_clock, Duration>& t)
  54. {
  55. using namespace chrono;
  56. sleep_for(t - steady_clock::now());
  57. }
  58. #else
  59. template <class Rep, class Period>
  60. void sleep_for(const chrono::duration<Rep, Period>& d)
  61. {
  62. using namespace chrono;
  63. if (d > duration<Rep, Period>::zero())
  64. {
  65. steady_clock::time_point c_timeout = steady_clock::now() + ceil<nanoseconds>(d);
  66. sleep_until(c_timeout);
  67. }
  68. }
  69. #endif
  70. #endif
  71. }
  72. #ifdef BOOST_THREAD_USES_CHRONO
  73. template <class Clock, class Duration>
  74. void sleep_until(const chrono::time_point<Clock, Duration>& t)
  75. {
  76. using namespace chrono;
  77. mutex mut;
  78. condition_variable cv;
  79. unique_lock<mutex> lk(mut);
  80. while (Clock::now() < t)
  81. cv.wait_until(lk, t);
  82. }
  83. #if defined BOOST_THREAD_HAS_CONDATTR_SET_CLOCK_MONOTONIC && defined BOOST_CHRONO_HAS_CLOCK_STEADY
  84. template <class Rep, class Period>
  85. void sleep_for(const chrono::duration<Rep, Period>& d)
  86. {
  87. using namespace chrono;
  88. if (d > duration<Rep, Period>::zero())
  89. {
  90. steady_clock::time_point c_timeout = steady_clock::now() + ceil<nanoseconds>(d);
  91. sleep_until(c_timeout);
  92. }
  93. }
  94. #elif defined BOOST_THREAD_SLEEP_FOR_IS_STEADY
  95. template <class Rep, class Period>
  96. void sleep_for(const chrono::duration<Rep, Period>& d)
  97. {
  98. using namespace chrono;
  99. if (d > duration<Rep, Period>::zero())
  100. {
  101. duration<long double> Max = nanoseconds::max BOOST_PREVENT_MACRO_SUBSTITUTION ();
  102. nanoseconds ns;
  103. if (d < Max)
  104. {
  105. ns = duration_cast<nanoseconds>(d);
  106. if (ns < d)
  107. ++ns;
  108. }
  109. else
  110. ns = nanoseconds:: max BOOST_PREVENT_MACRO_SUBSTITUTION ();
  111. sleep_for(ns);
  112. }
  113. }
  114. template <class Duration>
  115. inline BOOST_SYMBOL_VISIBLE
  116. void sleep_until(const chrono::time_point<chrono::steady_clock, Duration>& t)
  117. {
  118. using namespace chrono;
  119. sleep_for(t - steady_clock::now());
  120. }
  121. #else
  122. template <class Rep, class Period>
  123. void sleep_for(const chrono::duration<Rep, Period>& d)
  124. {
  125. using namespace chrono;
  126. if (d > duration<Rep, Period>::zero())
  127. {
  128. //system_clock::time_point c_timeout = time_point_cast<system_clock::duration>(system_clock::now() + ceil<nanoseconds>(d));
  129. system_clock::time_point c_timeout = system_clock::now() + ceil<system_clock::duration>(d);
  130. sleep_until(c_timeout);
  131. }
  132. }
  133. #endif
  134. #endif
  135. }
  136. }
  137. #endif