123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- #ifndef BOOST_THREAD_THREAD_EXECUTOR_HPP
- #define BOOST_THREAD_THREAD_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/throw_exception.hpp>
- #include <boost/thread/detail/delete.hpp>
- #include <boost/thread/detail/move.hpp>
- #include <boost/thread/executors/work.hpp>
- #include <boost/thread/executors/executor.hpp>
- #include <boost/thread/mutex.hpp>
- #include <boost/thread/lock_guard.hpp>
- #include <boost/thread/thread_only.hpp>
- #include <boost/thread/scoped_thread.hpp>
- #include <boost/thread/csbl/vector.hpp>
- #include <boost/thread/concurrent_queues/queue_op_status.hpp>
- #include <boost/config/abi_prefix.hpp>
- namespace boost
- {
- namespace executors
- {
- class thread_executor
- {
- public:
-
- typedef executors::work work;
- bool closed_;
- typedef scoped_thread<> thread_t;
- typedef csbl::vector<thread_t> threads_type;
- threads_type threads_;
- mutable mutex mtx_;
-
- bool try_executing_one()
- {
- return false;
- }
- public:
-
- BOOST_THREAD_NO_COPYABLE(thread_executor)
-
- thread_executor()
- : closed_(false)
- {
- }
-
- ~thread_executor()
- {
-
- close();
-
- }
-
- void close()
- {
- lock_guard<mutex> lk(mtx_);
- closed_ = true;
- }
-
- bool closed(lock_guard<mutex>& )
- {
- return closed_;
- }
- bool closed()
- {
- lock_guard<mutex> lk(mtx_);
- return closed(lk);
- }
-
- #if defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
- template <typename Closure>
- void submit(Closure & closure)
- {
- lock_guard<mutex> lk(mtx_);
- if (closed(lk)) BOOST_THROW_EXCEPTION( sync_queue_is_closed() );
- threads_.reserve(threads_.size() + 1);
- thread th(closure);
- threads_.push_back(thread_t(boost::move(th)));
- }
- #endif
- void submit(void (*closure)())
- {
- lock_guard<mutex> lk(mtx_);
- if (closed(lk)) BOOST_THROW_EXCEPTION( sync_queue_is_closed() );
- threads_.reserve(threads_.size() + 1);
- thread th(closure);
- threads_.push_back(thread_t(boost::move(th)));
- }
- template <typename Closure>
- void submit(BOOST_THREAD_FWD_REF(Closure) closure)
- {
- lock_guard<mutex> lk(mtx_);
- if (closed(lk)) BOOST_THROW_EXCEPTION( sync_queue_is_closed() );
- threads_.reserve(threads_.size() + 1);
- thread th(boost::forward<Closure>(closure));
- threads_.push_back(thread_t(boost::move(th)));
- }
-
- template <typename Pred>
- bool reschedule_until(Pred const&)
- {
- return false;
- }
- };
- }
- using executors::thread_executor;
- }
- #include <boost/config/abi_suffix.hpp>
- #endif
- #endif
|