user_scheduler.hpp 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. // Copyright (C) 2013 Vicente J. Botet Escriba
  2. //
  3. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. //
  6. // 2013/11 Vicente J. Botet Escriba
  7. // first implementation of a simple serial scheduler.
  8. #ifndef BOOST_THREAD_USER_SCHEDULER_HPP
  9. #define BOOST_THREAD_USER_SCHEDULER_HPP
  10. #include <boost/thread/detail/config.hpp>
  11. #include <boost/thread/detail/delete.hpp>
  12. #include <boost/thread/detail/move.hpp>
  13. #include <boost/thread/concurrent_queues/sync_queue.hpp>
  14. #include <boost/thread/executors/work.hpp>
  15. #include <boost/config/abi_prefix.hpp>
  16. namespace boost
  17. {
  18. class user_scheduler
  19. {
  20. /// type-erasure to store the works to do
  21. typedef thread_detail::work work;
  22. /// the thread safe work queue
  23. sync_queue<work > work_queue;
  24. public:
  25. /**
  26. * Effects: try to execute one task.
  27. * Returns: whether a task has been executed.
  28. * Throws: whatever the current task constructor throws or the task() throws.
  29. */
  30. bool try_executing_one()
  31. {
  32. work task;
  33. try
  34. {
  35. if (work_queue.try_pull(task) == queue_op_status::success)
  36. {
  37. task();
  38. return true;
  39. }
  40. return false;
  41. }
  42. catch (std::exception& )
  43. {
  44. return false;
  45. }
  46. catch (...)
  47. {
  48. return false;
  49. }
  50. }
  51. private:
  52. /**
  53. * Effects: schedule one task or yields
  54. * Throws: whatever the current task constructor throws or the task() throws.
  55. */
  56. void schedule_one_or_yield()
  57. {
  58. if ( ! try_executing_one())
  59. {
  60. this_thread::yield();
  61. }
  62. }
  63. /**
  64. * The main loop of the worker thread
  65. */
  66. void worker_thread()
  67. {
  68. while (!closed())
  69. {
  70. schedule_one_or_yield();
  71. }
  72. while (try_executing_one())
  73. {
  74. }
  75. }
  76. public:
  77. /// user_scheduler is not copyable.
  78. BOOST_THREAD_NO_COPYABLE(user_scheduler)
  79. /**
  80. * \b Effects: creates a thread pool that runs closures using one of its closure-executing methods.
  81. *
  82. * \b Throws: Whatever exception is thrown while initializing the needed resources.
  83. */
  84. user_scheduler()
  85. {
  86. }
  87. /**
  88. * \b Effects: Destroys the thread pool.
  89. *
  90. * \b Synchronization: The completion of all the closures happen before the completion of the \c user_scheduler destructor.
  91. */
  92. ~user_scheduler()
  93. {
  94. // signal to all the worker thread that there will be no more submissions.
  95. close();
  96. }
  97. /**
  98. * loop
  99. */
  100. void loop() { worker_thread(); }
  101. /**
  102. * \b Effects: close the \c user_scheduler for submissions.
  103. * The loop will work until there is no more closures to run.
  104. */
  105. void close()
  106. {
  107. work_queue.close();
  108. }
  109. /**
  110. * \b Returns: whether the pool is closed for submissions.
  111. */
  112. bool closed()
  113. {
  114. return work_queue.closed();
  115. }
  116. /**
  117. * \b Requires: \c Closure is a model of \c Callable(void()) and a model of \c CopyConstructible/MoveConstructible.
  118. *
  119. * \b Effects: The specified \c closure will be scheduled for execution at some point in the future.
  120. * If invoked closure throws an exception the \c user_scheduler will call \c std::terminate, as is the case with threads.
  121. *
  122. * \b Synchronization: completion of \c closure on a particular thread happens before destruction of thread's thread local variables.
  123. *
  124. * \b Throws: \c sync_queue_is_closed if the thread pool is closed.
  125. * Whatever exception that can be throw while storing the closure.
  126. */
  127. #if defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
  128. template <typename Closure>
  129. void submit(Closure & closure)
  130. {
  131. work w ((closure));
  132. work_queue.push(boost::move(w));
  133. //work_queue.push(work(closure)); // todo check why this doesn't work
  134. }
  135. #endif
  136. void submit(void (*closure)())
  137. {
  138. work w ((closure));
  139. work_queue.push(boost::move(w));
  140. //work_queue.push(work(closure)); // todo check why this doesn't work
  141. }
  142. template <typename Closure>
  143. void submit(BOOST_THREAD_RV_REF(Closure) closure)
  144. {
  145. work w =boost::move(closure);
  146. work_queue.push(boost::move(w));
  147. //work_queue.push(work(boost::move(closure))); // todo check why this doesn't work
  148. }
  149. /**
  150. * \b Requires: This must be called from an scheduled task.
  151. *
  152. * \b Effects: reschedule functions until pred()
  153. */
  154. template <typename Pred>
  155. bool reschedule_until(Pred const& pred)
  156. {
  157. do {
  158. if ( ! try_executing_one())
  159. {
  160. return false;
  161. }
  162. } while (! pred());
  163. return true;
  164. }
  165. /**
  166. * run queued closures
  167. */
  168. void run_queued_closures()
  169. {
  170. sync_queue<work>::underlying_queue_type q = work_queue.underlying_queue();
  171. while (q.empty())
  172. {
  173. work task = q.front();
  174. q.pop_front();
  175. task();
  176. }
  177. }
  178. };
  179. }
  180. #include <boost/config/abi_suffix.hpp>
  181. #endif