123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- // Copyright (C) 2014 Vicente J. Botet Escriba
- //
- // Distributed under the Boost Software License, Version 1.0. (See accompanying
- // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
- //
- // 2013/11 Vicente J. Botet Escriba
- // first implementation of a simple serial scheduler.
- #ifndef BOOST_THREAD_INLINE_EXECUTOR_HPP
- #define BOOST_THREAD_INLINE_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 <exception> // std::terminate
- #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/mutex.hpp>
- #include <boost/thread/lock_guard.hpp>
- #include <boost/thread/concurrent_queues/queue_op_status.hpp> // sync_queue_is_closed
- #include <boost/config/abi_prefix.hpp>
- namespace boost
- {
- namespace executors
- {
- class inline_executor
- {
- public:
- /// type-erasure to store the works to do
- typedef executors::work work;
- bool closed_;
- mutable mutex mtx_;
- /**
- * Effects: try to execute one task.
- * Returns: whether a task has been executed.
- * Throws: whatever the current task constructor throws or the task() throws.
- */
- bool try_executing_one()
- {
- return false;
- }
- public:
- /// inline_executor is not copyable.
- BOOST_THREAD_NO_COPYABLE(inline_executor)
- /**
- * \b Effects: creates a inline executor that runs closures immediately.
- *
- * \b Throws: Nothing.
- */
- inline_executor()
- : closed_(false)
- {
- }
- /**
- * \b Effects: Destroys the inline executor.
- *
- * \b Synchronization: The completion of all the closures happen before the completion of the \c inline_executor destructor.
- */
- ~inline_executor()
- {
- // signal to all the worker thread that there will be no more submissions.
- close();
- }
- /**
- * \b Effects: close the \c inline_executor for submissions.
- * The loop will work until there is no more closures to run.
- */
- void close()
- {
- lock_guard<mutex> lk(mtx_);
- closed_ = true;
- }
- /**
- * \b Returns: whether the pool is closed for submissions.
- */
- bool closed(lock_guard<mutex>& )
- {
- return closed_;
- }
- bool closed()
- {
- lock_guard<mutex> lk(mtx_);
- return closed(lk);
- }
- /**
- * \b Requires: \c Closure is a model of \c Callable(void()) and a model of \c CopyConstructible/MoveConstructible.
- *
- * \b Effects: The specified \c closure will be scheduled for execution at some point in the future.
- * If invoked closure throws an exception the \c inline_executor will call \c std::terminate, as is the case with threads.
- *
- * \b Synchronization: completion of \c closure on a particular thread happens before destruction of thread's thread local variables.
- *
- * \b Throws: \c sync_queue_is_closed if the thread pool is closed.
- * Whatever exception that can be throw while storing the closure.
- */
- #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() );
- }
- try
- {
- closure();
- }
- catch (...)
- {
- std::terminate();
- return;
- }
- }
- #endif
- void submit(void (*closure)())
- {
- {
- lock_guard<mutex> lk(mtx_);
- if (closed(lk)) BOOST_THROW_EXCEPTION( sync_queue_is_closed() );
- }
- try
- {
- closure();
- }
- catch (...)
- {
- std::terminate();
- return;
- }
- }
- 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() );
- }
- try
- {
- closure();
- }
- catch (...)
- {
- std::terminate();
- return;
- }
- }
- /**
- * \b Requires: This must be called from an scheduled task.
- *
- * \b Effects: reschedule functions until pred()
- */
- template <typename Pred>
- bool reschedule_until(Pred const& )
- {
- return false;
- }
- };
- }
- using executors::inline_executor;
- }
- #include <boost/config/abi_suffix.hpp>
- #endif
- #endif
|