123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- #ifndef BOOST_THREAD_USER_SCHEDULER_HPP
- #define BOOST_THREAD_USER_SCHEDULER_HPP
- #include <boost/thread/detail/config.hpp>
- #if defined BOOST_THREAD_PROVIDES_FUTURE_CONTINUATION && defined BOOST_THREAD_PROVIDES_EXECUTORS && defined BOOST_THREAD_USES_MOVE
- #include <boost/thread/detail/delete.hpp>
- #include <boost/thread/detail/move.hpp>
- #include <boost/thread/concurrent_queues/sync_queue.hpp>
- #include <boost/thread/executors/work.hpp>
- #include <boost/config/abi_prefix.hpp>
- namespace boost
- {
- class user_scheduler
- {
-
- typedef executors::work work;
-
- sync_queue<work > work_queue;
- public:
-
- bool try_executing_one()
- {
- work task;
- try
- {
- if (work_queue.try_pull(task) == queue_op_status::success)
- {
- task();
- return true;
- }
- return false;
- }
- catch (std::exception& )
- {
- return false;
- }
- catch (...)
- {
- return false;
- }
- }
- private:
-
- void schedule_one_or_yield()
- {
- if ( ! try_executing_one())
- {
- this_thread::yield();
- }
- }
-
- void worker_thread()
- {
- while (!closed())
- {
- schedule_one_or_yield();
- }
- while (try_executing_one())
- {
- }
- }
- public:
-
- BOOST_THREAD_NO_COPYABLE(user_scheduler)
-
- user_scheduler()
- {
- }
-
- ~user_scheduler()
- {
-
- close();
- }
-
- void loop() { worker_thread(); }
-
- void close()
- {
- work_queue.close();
- }
-
- bool closed()
- {
- return work_queue.closed();
- }
-
- #if defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
- template <typename Closure>
- void submit(Closure & closure)
- {
- work w ((closure));
- work_queue.push(boost::move(w));
-
- }
- #endif
- void submit(void (*closure)())
- {
- work w ((closure));
- work_queue.push(boost::move(w));
-
- }
- template <typename Closure>
- void submit(BOOST_THREAD_RV_REF(Closure) closure)
- {
- work w =boost::move(closure);
- work_queue.push(boost::move(w));
-
- }
-
- template <typename Pred>
- bool reschedule_until(Pred const& pred)
- {
- do {
- if ( ! try_executing_one())
- {
- return false;
- }
- } while (! pred());
- return true;
- }
-
- void run_queued_closures()
- {
- sync_queue<work>::underlying_queue_type q = work_queue.underlying_queue();
- while (q.empty())
- {
- work task = q.front();
- q.pop_front();
- task();
- }
- }
- };
- }
- #include <boost/config/abi_suffix.hpp>
- #endif
- #endif
|