123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- #ifndef BOOST_THREAD_EXECUTORS_GENERIC_EXECUTOR_REF_HPP
- #define BOOST_THREAD_EXECUTORS_GENERIC_EXECUTOR_REF_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/executors/executor.hpp>
- #include <boost/shared_ptr.hpp>
- #include <boost/config/abi_prefix.hpp>
- namespace boost
- {
- namespace executors
- {
- template <class Executor>
- class executor_ref : public executor
- {
- Executor& ex;
- public:
-
- typedef executors::work work;
-
- BOOST_THREAD_NO_COPYABLE(executor_ref)
- executor_ref(Executor& ex_) : ex(ex_) {}
-
- ~executor_ref() {}
-
- void close() { ex.close(); }
-
- bool closed() { return ex.closed(); }
-
- void submit(BOOST_THREAD_RV_REF(work) closure) {
- ex.submit(boost::move(closure));
- }
-
- bool try_executing_one() { return ex.try_executing_one(); }
- };
- class generic_executor_ref
- {
- shared_ptr<executor> ex;
- public:
-
- typedef executors::work work;
- template<typename Executor>
- generic_executor_ref(Executor& ex_)
-
- : ex( new executor_ref<Executor>(ex_) )
- {
- }
-
-
-
- void close() { ex->close(); }
-
- bool closed() { return ex->closed(); }
-
- void submit(BOOST_THREAD_RV_REF(work) closure)
- {
- ex->submit(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)())
- {
- work w ((closure));
- submit(boost::move(w));
-
- }
- template <typename Closure>
- void submit(BOOST_THREAD_FWD_REF(Closure) closure)
- {
- work w((boost::forward<Closure>(closure)));
- submit(boost::move(w));
- }
-
- bool try_executing_one() { return ex->try_executing_one(); }
-
- template <typename Pred>
- bool reschedule_until(Pred const& pred)
- {
- do {
-
- if ( ! try_executing_one())
- {
- return false;
- }
- } while (! pred());
- return true;
- }
- };
- }
- using executors::executor_ref;
- using executors::generic_executor_ref;
- }
- #include <boost/config/abi_suffix.hpp>
- #endif
- #endif
|