123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- #ifndef BOOST_THREAD_EXECUTORS_LOOP_EXECUTOR_HPP
- #define BOOST_THREAD_EXECUTORS_LOOP_EXECUTOR_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/assert.hpp>
- #include <boost/config/abi_prefix.hpp>
- namespace boost
- {
- namespace executors
- {
- class loop_executor
- {
- public:
-
- typedef executors::work work;
- private:
-
- concurrent::sync_queue<work > work_queue;
- public:
-
- bool try_executing_one()
- {
- return execute_one(false);
- }
- private:
-
- bool execute_one(bool wait)
- {
- work task;
- try
- {
- queue_op_status status = wait ?
- work_queue.wait_pull(task) :
- work_queue.try_pull(task);
- if (status == queue_op_status::success)
- {
- task();
- return true;
- }
- BOOST_ASSERT(!wait || status == queue_op_status::closed);
- return false;
- }
- catch (...)
- {
- std::terminate();
-
- }
- }
- public:
-
- BOOST_THREAD_NO_COPYABLE(loop_executor)
-
- loop_executor()
- {
- }
-
- ~loop_executor()
- {
-
- close();
- }
-
- void loop()
- {
- while (execute_one(true))
- {
- }
- BOOST_ASSERT(closed());
- while (try_executing_one())
- {
- }
- }
-
- void close()
- {
- work_queue.close();
- }
-
- bool closed()
- {
- return work_queue.closed();
- }
-
- void submit(BOOST_THREAD_RV_REF(work) closure) {
- work_queue.push(boost::move(closure));
- }
- #if defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
- template <typename Closure>
- void submit(Closure & closure)
- {
- submit(work(closure));
- }
- #endif
- void submit(void (*closure)())
- {
- submit(work(closure));
- }
- template <typename Closure>
- void submit(BOOST_THREAD_FWD_REF(Closure) closure)
- {
-
- work w((boost::forward<Closure>(closure)));
- submit(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();
- task();
- q.pop_front();
- }
- }
- };
- }
- using executors::loop_executor;
- }
- #include <boost/config/abi_suffix.hpp>
- #endif
- #endif
|