| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 | //// thread_pool.hpp// ~~~~~~~~~~~~~~~//// Copyright (c) 2003-2020 Christopher M. Kohlhoff (chris at kohlhoff dot com)//// 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)//#ifndef BOOST_ASIO_THREAD_POOL_HPP#define BOOST_ASIO_THREAD_POOL_HPP#if defined(_MSC_VER) && (_MSC_VER >= 1200)# pragma once#endif // defined(_MSC_VER) && (_MSC_VER >= 1200)#include <boost/asio/detail/config.hpp>#include <boost/asio/detail/noncopyable.hpp>#include <boost/asio/detail/scheduler.hpp>#include <boost/asio/detail/thread_group.hpp>#include <boost/asio/execution_context.hpp>#include <boost/asio/detail/push_options.hpp>namespace boost {namespace asio {/// A simple fixed-size thread pool./** * The thread pool class is an execution context where functions are permitted * to run on one of a fixed number of threads. * * @par Submitting tasks to the pool * * To submit functions to the thread_pool, use the @ref boost::asio::dispatch, * @ref boost::asio::post or @ref boost::asio::defer free functions. * * For example: * * @code void my_task() * { *   ... * } * * ... * * // Launch the pool with four threads. * boost::asio::thread_pool pool(4); * * // Submit a function to the pool. * boost::asio::post(pool, my_task); * * // Submit a lambda object to the pool. * boost::asio::post(pool, *     []() *     { *       ... *     }); * * // Wait for all tasks in the pool to complete. * pool.join(); @endcode */class thread_pool  : public execution_context{public:  class executor_type;  /// Constructs a pool with an automatically determined number of threads.  BOOST_ASIO_DECL thread_pool();  /// Constructs a pool with a specified number of threads.  BOOST_ASIO_DECL thread_pool(std::size_t num_threads);  /// Destructor.  /**   * Automatically stops and joins the pool, if not explicitly done beforehand.   */  BOOST_ASIO_DECL ~thread_pool();  /// Obtains the executor associated with the pool.  executor_type get_executor() BOOST_ASIO_NOEXCEPT;  /// Stops the threads.  /**   * This function stops the threads as soon as possible. As a result of calling   * @c stop(), pending function objects may be never be invoked.   */  BOOST_ASIO_DECL void stop();  /// Joins the threads.  /**   * This function blocks until the threads in the pool have completed. If @c   * stop() is not called prior to @c join(), the @c join() call will wait   * until the pool has no more outstanding work.   */  BOOST_ASIO_DECL void join();private:  friend class executor_type;  struct thread_function;  // Helper function to create the underlying scheduler.  BOOST_ASIO_DECL detail::scheduler& add_scheduler(detail::scheduler* s);  // The underlying scheduler.  detail::scheduler& scheduler_;  // The threads in the pool.  detail::thread_group threads_;};/// Executor used to submit functions to a thread pool.class thread_pool::executor_type{public:  /// Obtain the underlying execution context.  thread_pool& context() const BOOST_ASIO_NOEXCEPT;  /// Inform the thread pool that it has some outstanding work to do.  /**   * This function is used to inform the thread pool that some work has begun.   * This ensures that the thread pool's join() function will not return while   * the work is underway.   */  void on_work_started() const BOOST_ASIO_NOEXCEPT;  /// Inform the thread pool that some work is no longer outstanding.  /**   * This function is used to inform the thread pool that some work has   * finished. Once the count of unfinished work reaches zero, the thread   * pool's join() function is permitted to exit.   */  void on_work_finished() const BOOST_ASIO_NOEXCEPT;  /// Request the thread pool to invoke the given function object.  /**   * This function is used to ask the thread pool to execute the given function   * object. If the current thread belongs to the pool, @c dispatch() executes   * the function before returning. Otherwise, the function will be scheduled   * to run on the thread pool.   *   * @param f The function object to be called. The executor will make   * a copy of the handler object as required. The function signature of the   * function object must be: @code void function(); @endcode   *   * @param a An allocator that may be used by the executor to allocate the   * internal storage needed for function invocation.   */  template <typename Function, typename Allocator>  void dispatch(BOOST_ASIO_MOVE_ARG(Function) f, const Allocator& a) const;  /// Request the thread pool to invoke the given function object.  /**   * This function is used to ask the thread pool to execute the given function   * object. The function object will never be executed inside @c post().   * Instead, it will be scheduled to run on the thread pool.   *   * @param f The function object to be called. The executor will make   * a copy of the handler object as required. The function signature of the   * function object must be: @code void function(); @endcode   *   * @param a An allocator that may be used by the executor to allocate the   * internal storage needed for function invocation.   */  template <typename Function, typename Allocator>  void post(BOOST_ASIO_MOVE_ARG(Function) f, const Allocator& a) const;  /// Request the thread pool to invoke the given function object.  /**   * This function is used to ask the thread pool to execute the given function   * object. The function object will never be executed inside @c defer().   * Instead, it will be scheduled to run on the thread pool.   *   * If the current thread belongs to the thread pool, @c defer() will delay   * scheduling the function object until the current thread returns control to   * the pool.   *   * @param f The function object to be called. The executor will make   * a copy of the handler object as required. The function signature of the   * function object must be: @code void function(); @endcode   *   * @param a An allocator that may be used by the executor to allocate the   * internal storage needed for function invocation.   */  template <typename Function, typename Allocator>  void defer(BOOST_ASIO_MOVE_ARG(Function) f, const Allocator& a) const;  /// Determine whether the thread pool is running in the current thread.  /**   * @return @c true if the current thread belongs to the pool. Otherwise   * returns @c false.   */  bool running_in_this_thread() const BOOST_ASIO_NOEXCEPT;  /// Compare two executors for equality.  /**   * Two executors are equal if they refer to the same underlying thread pool.   */  friend bool operator==(const executor_type& a,      const executor_type& b) BOOST_ASIO_NOEXCEPT  {    return &a.pool_ == &b.pool_;  }  /// Compare two executors for inequality.  /**   * Two executors are equal if they refer to the same underlying thread pool.   */  friend bool operator!=(const executor_type& a,      const executor_type& b) BOOST_ASIO_NOEXCEPT  {    return &a.pool_ != &b.pool_;  }private:  friend class thread_pool;  // Constructor.  explicit executor_type(thread_pool& p) : pool_(p) {}  // The underlying thread pool.  thread_pool& pool_;};} // namespace asio} // namespace boost#include <boost/asio/detail/pop_options.hpp>#include <boost/asio/impl/thread_pool.hpp>#if defined(BOOST_ASIO_HEADER_ONLY)# include <boost/asio/impl/thread_pool.ipp>#endif // defined(BOOST_ASIO_HEADER_ONLY)#endif // BOOST_ASIO_THREAD_POOL_HPP
 |