io_service.hpp 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772
  1. //
  2. // io_service.hpp
  3. // ~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef BOOST_ASIO_IO_SERVICE_HPP
  11. #define BOOST_ASIO_IO_SERVICE_HPP
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  13. # pragma once
  14. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  15. #include <boost/asio/detail/config.hpp>
  16. #include <cstddef>
  17. #include <stdexcept>
  18. #include <typeinfo>
  19. #include <boost/asio/async_result.hpp>
  20. #include <boost/asio/detail/noncopyable.hpp>
  21. #include <boost/asio/detail/wrapped_handler.hpp>
  22. #include <boost/system/error_code.hpp>
  23. #if defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
  24. # include <boost/asio/detail/winsock_init.hpp>
  25. #elif defined(__sun) || defined(__QNX__) || defined(__hpux) || defined(_AIX) \
  26. || defined(__osf__)
  27. # include <boost/asio/detail/signal_init.hpp>
  28. #endif
  29. #include <boost/asio/detail/push_options.hpp>
  30. namespace boost {
  31. namespace asio {
  32. class io_service;
  33. template <typename Service> Service& use_service(io_service& ios);
  34. template <typename Service> void add_service(io_service& ios, Service* svc);
  35. template <typename Service> bool has_service(io_service& ios);
  36. namespace detail {
  37. #if defined(BOOST_ASIO_HAS_IOCP)
  38. typedef class win_iocp_io_service io_service_impl;
  39. class win_iocp_overlapped_ptr;
  40. #else
  41. typedef class task_io_service io_service_impl;
  42. #endif
  43. class service_registry;
  44. } // namespace detail
  45. /// Provides core I/O functionality.
  46. /**
  47. * The io_service class provides the core I/O functionality for users of the
  48. * asynchronous I/O objects, including:
  49. *
  50. * @li boost::asio::ip::tcp::socket
  51. * @li boost::asio::ip::tcp::acceptor
  52. * @li boost::asio::ip::udp::socket
  53. * @li boost::asio::deadline_timer.
  54. *
  55. * The io_service class also includes facilities intended for developers of
  56. * custom asynchronous services.
  57. *
  58. * @par Thread Safety
  59. * @e Distinct @e objects: Safe.@n
  60. * @e Shared @e objects: Safe, with the specific exceptions of the reset() and
  61. * notify_fork() functions. Calling reset() while there are unfinished run(),
  62. * run_one(), poll() or poll_one() calls results in undefined behaviour. The
  63. * notify_fork() function should not be called while any io_service function,
  64. * or any function on an I/O object that is associated with the io_service, is
  65. * being called in another thread.
  66. *
  67. * @par Concepts:
  68. * Dispatcher.
  69. *
  70. * @par Synchronous and asynchronous operations
  71. *
  72. * Synchronous operations on I/O objects implicitly run the io_service object
  73. * for an individual operation. The io_service functions run(), run_one(),
  74. * poll() or poll_one() must be called for the io_service to perform
  75. * asynchronous operations on behalf of a C++ program. Notification that an
  76. * asynchronous operation has completed is delivered by invocation of the
  77. * associated handler. Handlers are invoked only by a thread that is currently
  78. * calling any overload of run(), run_one(), poll() or poll_one() for the
  79. * io_service.
  80. *
  81. * @par Effect of exceptions thrown from handlers
  82. *
  83. * If an exception is thrown from a handler, the exception is allowed to
  84. * propagate through the throwing thread's invocation of run(), run_one(),
  85. * poll() or poll_one(). No other threads that are calling any of these
  86. * functions are affected. It is then the responsibility of the application to
  87. * catch the exception.
  88. *
  89. * After the exception has been caught, the run(), run_one(), poll() or
  90. * poll_one() call may be restarted @em without the need for an intervening
  91. * call to reset(). This allows the thread to rejoin the io_service object's
  92. * thread pool without impacting any other threads in the pool.
  93. *
  94. * For example:
  95. *
  96. * @code
  97. * boost::asio::io_service io_service;
  98. * ...
  99. * for (;;)
  100. * {
  101. * try
  102. * {
  103. * io_service.run();
  104. * break; // run() exited normally
  105. * }
  106. * catch (my_exception& e)
  107. * {
  108. * // Deal with exception as appropriate.
  109. * }
  110. * }
  111. * @endcode
  112. *
  113. * @par Stopping the io_service from running out of work
  114. *
  115. * Some applications may need to prevent an io_service object's run() call from
  116. * returning when there is no more work to do. For example, the io_service may
  117. * be being run in a background thread that is launched prior to the
  118. * application's asynchronous operations. The run() call may be kept running by
  119. * creating an object of type boost::asio::io_service::work:
  120. *
  121. * @code boost::asio::io_service io_service;
  122. * boost::asio::io_service::work work(io_service);
  123. * ... @endcode
  124. *
  125. * To effect a shutdown, the application will then need to call the io_service
  126. * object's stop() member function. This will cause the io_service run() call
  127. * to return as soon as possible, abandoning unfinished operations and without
  128. * permitting ready handlers to be dispatched.
  129. *
  130. * Alternatively, if the application requires that all operations and handlers
  131. * be allowed to finish normally, the work object may be explicitly destroyed.
  132. *
  133. * @code boost::asio::io_service io_service;
  134. * auto_ptr<boost::asio::io_service::work> work(
  135. * new boost::asio::io_service::work(io_service));
  136. * ...
  137. * work.reset(); // Allow run() to exit. @endcode
  138. *
  139. * @par The io_service class and I/O services
  140. *
  141. * Class io_service implements an extensible, type-safe, polymorphic set of I/O
  142. * services, indexed by service type. An object of class io_service must be
  143. * initialised before I/O objects such as sockets, resolvers and timers can be
  144. * used. These I/O objects are distinguished by having constructors that accept
  145. * an @c io_service& parameter.
  146. *
  147. * I/O services exist to manage the logical interface to the operating system on
  148. * behalf of the I/O objects. In particular, there are resources that are shared
  149. * across a class of I/O objects. For example, timers may be implemented in
  150. * terms of a single timer queue. The I/O services manage these shared
  151. * resources.
  152. *
  153. * Access to the services of an io_service is via three function templates,
  154. * use_service(), add_service() and has_service().
  155. *
  156. * In a call to @c use_service<Service>(), the type argument chooses a service,
  157. * making available all members of the named type. If @c Service is not present
  158. * in an io_service, an object of type @c Service is created and added to the
  159. * io_service. A C++ program can check if an io_service implements a
  160. * particular service with the function template @c has_service<Service>().
  161. *
  162. * Service objects may be explicitly added to an io_service using the function
  163. * template @c add_service<Service>(). If the @c Service is already present, the
  164. * service_already_exists exception is thrown. If the owner of the service is
  165. * not the same object as the io_service parameter, the invalid_service_owner
  166. * exception is thrown.
  167. *
  168. * Once a service reference is obtained from an io_service object by calling
  169. * use_service(), that reference remains usable as long as the owning io_service
  170. * object exists.
  171. *
  172. * All I/O service implementations have io_service::service as a public base
  173. * class. Custom I/O services may be implemented by deriving from this class and
  174. * then added to an io_service using the facilities described above.
  175. */
  176. class io_service
  177. : private noncopyable
  178. {
  179. private:
  180. typedef detail::io_service_impl impl_type;
  181. #if defined(BOOST_ASIO_HAS_IOCP)
  182. friend class detail::win_iocp_overlapped_ptr;
  183. #endif
  184. public:
  185. class work;
  186. friend class work;
  187. class id;
  188. class service;
  189. class strand;
  190. /// Constructor.
  191. BOOST_ASIO_DECL io_service();
  192. /// Constructor.
  193. /**
  194. * Construct with a hint about the required level of concurrency.
  195. *
  196. * @param concurrency_hint A suggestion to the implementation on how many
  197. * threads it should allow to run simultaneously.
  198. */
  199. BOOST_ASIO_DECL explicit io_service(std::size_t concurrency_hint);
  200. /// Destructor.
  201. /**
  202. * On destruction, the io_service performs the following sequence of
  203. * operations:
  204. *
  205. * @li For each service object @c svc in the io_service set, in reverse order
  206. * of the beginning of service object lifetime, performs
  207. * @c svc->shutdown_service().
  208. *
  209. * @li Uninvoked handler objects that were scheduled for deferred invocation
  210. * on the io_service, or any associated strand, are destroyed.
  211. *
  212. * @li For each service object @c svc in the io_service set, in reverse order
  213. * of the beginning of service object lifetime, performs
  214. * <tt>delete static_cast<io_service::service*>(svc)</tt>.
  215. *
  216. * @note The destruction sequence described above permits programs to
  217. * simplify their resource management by using @c shared_ptr<>. Where an
  218. * object's lifetime is tied to the lifetime of a connection (or some other
  219. * sequence of asynchronous operations), a @c shared_ptr to the object would
  220. * be bound into the handlers for all asynchronous operations associated with
  221. * it. This works as follows:
  222. *
  223. * @li When a single connection ends, all associated asynchronous operations
  224. * complete. The corresponding handler objects are destroyed, and all
  225. * @c shared_ptr references to the objects are destroyed.
  226. *
  227. * @li To shut down the whole program, the io_service function stop() is
  228. * called to terminate any run() calls as soon as possible. The io_service
  229. * destructor defined above destroys all handlers, causing all @c shared_ptr
  230. * references to all connection objects to be destroyed.
  231. */
  232. BOOST_ASIO_DECL ~io_service();
  233. /// Run the io_service object's event processing loop.
  234. /**
  235. * The run() function blocks until all work has finished and there are no
  236. * more handlers to be dispatched, or until the io_service has been stopped.
  237. *
  238. * Multiple threads may call the run() function to set up a pool of threads
  239. * from which the io_service may execute handlers. All threads that are
  240. * waiting in the pool are equivalent and the io_service may choose any one
  241. * of them to invoke a handler.
  242. *
  243. * A normal exit from the run() function implies that the io_service object
  244. * is stopped (the stopped() function returns @c true). Subsequent calls to
  245. * run(), run_one(), poll() or poll_one() will return immediately unless there
  246. * is a prior call to reset().
  247. *
  248. * @return The number of handlers that were executed.
  249. *
  250. * @throws boost::system::system_error Thrown on failure.
  251. *
  252. * @note The run() function must not be called from a thread that is currently
  253. * calling one of run(), run_one(), poll() or poll_one() on the same
  254. * io_service object.
  255. *
  256. * The poll() function may also be used to dispatch ready handlers, but
  257. * without blocking.
  258. */
  259. BOOST_ASIO_DECL std::size_t run();
  260. /// Run the io_service object's event processing loop.
  261. /**
  262. * The run() function blocks until all work has finished and there are no
  263. * more handlers to be dispatched, or until the io_service has been stopped.
  264. *
  265. * Multiple threads may call the run() function to set up a pool of threads
  266. * from which the io_service may execute handlers. All threads that are
  267. * waiting in the pool are equivalent and the io_service may choose any one
  268. * of them to invoke a handler.
  269. *
  270. * A normal exit from the run() function implies that the io_service object
  271. * is stopped (the stopped() function returns @c true). Subsequent calls to
  272. * run(), run_one(), poll() or poll_one() will return immediately unless there
  273. * is a prior call to reset().
  274. *
  275. * @param ec Set to indicate what error occurred, if any.
  276. *
  277. * @return The number of handlers that were executed.
  278. *
  279. * @note The run() function must not be called from a thread that is currently
  280. * calling one of run(), run_one(), poll() or poll_one() on the same
  281. * io_service object.
  282. *
  283. * The poll() function may also be used to dispatch ready handlers, but
  284. * without blocking.
  285. */
  286. BOOST_ASIO_DECL std::size_t run(boost::system::error_code& ec);
  287. /// Run the io_service object's event processing loop to execute at most one
  288. /// handler.
  289. /**
  290. * The run_one() function blocks until one handler has been dispatched, or
  291. * until the io_service has been stopped.
  292. *
  293. * @return The number of handlers that were executed. A zero return value
  294. * implies that the io_service object is stopped (the stopped() function
  295. * returns @c true). Subsequent calls to run(), run_one(), poll() or
  296. * poll_one() will return immediately unless there is a prior call to
  297. * reset().
  298. *
  299. * @throws boost::system::system_error Thrown on failure.
  300. */
  301. BOOST_ASIO_DECL std::size_t run_one();
  302. /// Run the io_service object's event processing loop to execute at most one
  303. /// handler.
  304. /**
  305. * The run_one() function blocks until one handler has been dispatched, or
  306. * until the io_service has been stopped.
  307. *
  308. * @return The number of handlers that were executed. A zero return value
  309. * implies that the io_service object is stopped (the stopped() function
  310. * returns @c true). Subsequent calls to run(), run_one(), poll() or
  311. * poll_one() will return immediately unless there is a prior call to
  312. * reset().
  313. *
  314. * @return The number of handlers that were executed.
  315. */
  316. BOOST_ASIO_DECL std::size_t run_one(boost::system::error_code& ec);
  317. /// Run the io_service object's event processing loop to execute ready
  318. /// handlers.
  319. /**
  320. * The poll() function runs handlers that are ready to run, without blocking,
  321. * until the io_service has been stopped or there are no more ready handlers.
  322. *
  323. * @return The number of handlers that were executed.
  324. *
  325. * @throws boost::system::system_error Thrown on failure.
  326. */
  327. BOOST_ASIO_DECL std::size_t poll();
  328. /// Run the io_service object's event processing loop to execute ready
  329. /// handlers.
  330. /**
  331. * The poll() function runs handlers that are ready to run, without blocking,
  332. * until the io_service has been stopped or there are no more ready handlers.
  333. *
  334. * @param ec Set to indicate what error occurred, if any.
  335. *
  336. * @return The number of handlers that were executed.
  337. */
  338. BOOST_ASIO_DECL std::size_t poll(boost::system::error_code& ec);
  339. /// Run the io_service object's event processing loop to execute one ready
  340. /// handler.
  341. /**
  342. * The poll_one() function runs at most one handler that is ready to run,
  343. * without blocking.
  344. *
  345. * @return The number of handlers that were executed.
  346. *
  347. * @throws boost::system::system_error Thrown on failure.
  348. */
  349. BOOST_ASIO_DECL std::size_t poll_one();
  350. /// Run the io_service object's event processing loop to execute one ready
  351. /// handler.
  352. /**
  353. * The poll_one() function runs at most one handler that is ready to run,
  354. * without blocking.
  355. *
  356. * @param ec Set to indicate what error occurred, if any.
  357. *
  358. * @return The number of handlers that were executed.
  359. */
  360. BOOST_ASIO_DECL std::size_t poll_one(boost::system::error_code& ec);
  361. /// Stop the io_service object's event processing loop.
  362. /**
  363. * This function does not block, but instead simply signals the io_service to
  364. * stop. All invocations of its run() or run_one() member functions should
  365. * return as soon as possible. Subsequent calls to run(), run_one(), poll()
  366. * or poll_one() will return immediately until reset() is called.
  367. */
  368. BOOST_ASIO_DECL void stop();
  369. /// Determine whether the io_service object has been stopped.
  370. /**
  371. * This function is used to determine whether an io_service object has been
  372. * stopped, either through an explicit call to stop(), or due to running out
  373. * of work. When an io_service object is stopped, calls to run(), run_one(),
  374. * poll() or poll_one() will return immediately without invoking any
  375. * handlers.
  376. *
  377. * @return @c true if the io_service object is stopped, otherwise @c false.
  378. */
  379. BOOST_ASIO_DECL bool stopped() const;
  380. /// Reset the io_service in preparation for a subsequent run() invocation.
  381. /**
  382. * This function must be called prior to any second or later set of
  383. * invocations of the run(), run_one(), poll() or poll_one() functions when a
  384. * previous invocation of these functions returned due to the io_service
  385. * being stopped or running out of work. After a call to reset(), the
  386. * io_service object's stopped() function will return @c false.
  387. *
  388. * This function must not be called while there are any unfinished calls to
  389. * the run(), run_one(), poll() or poll_one() functions.
  390. */
  391. BOOST_ASIO_DECL void reset();
  392. /// Request the io_service to invoke the given handler.
  393. /**
  394. * This function is used to ask the io_service to execute the given handler.
  395. *
  396. * The io_service guarantees that the handler will only be called in a thread
  397. * in which the run(), run_one(), poll() or poll_one() member functions is
  398. * currently being invoked. The handler may be executed inside this function
  399. * if the guarantee can be met.
  400. *
  401. * @param handler The handler to be called. The io_service will make
  402. * a copy of the handler object as required. The function signature of the
  403. * handler must be: @code void handler(); @endcode
  404. *
  405. * @note This function throws an exception only if:
  406. *
  407. * @li the handler's @c asio_handler_allocate function; or
  408. *
  409. * @li the handler's copy constructor
  410. *
  411. * throws an exception.
  412. */
  413. template <typename CompletionHandler>
  414. BOOST_ASIO_INITFN_RESULT_TYPE(CompletionHandler, void ())
  415. dispatch(BOOST_ASIO_MOVE_ARG(CompletionHandler) handler);
  416. /// Request the io_service to invoke the given handler and return immediately.
  417. /**
  418. * This function is used to ask the io_service to execute the given handler,
  419. * but without allowing the io_service to call the handler from inside this
  420. * function.
  421. *
  422. * The io_service guarantees that the handler will only be called in a thread
  423. * in which the run(), run_one(), poll() or poll_one() member functions is
  424. * currently being invoked.
  425. *
  426. * @param handler The handler to be called. The io_service will make
  427. * a copy of the handler object as required. The function signature of the
  428. * handler must be: @code void handler(); @endcode
  429. *
  430. * @note This function throws an exception only if:
  431. *
  432. * @li the handler's @c asio_handler_allocate function; or
  433. *
  434. * @li the handler's copy constructor
  435. *
  436. * throws an exception.
  437. */
  438. template <typename CompletionHandler>
  439. BOOST_ASIO_INITFN_RESULT_TYPE(CompletionHandler, void ())
  440. post(BOOST_ASIO_MOVE_ARG(CompletionHandler) handler);
  441. /// Create a new handler that automatically dispatches the wrapped handler
  442. /// on the io_service.
  443. /**
  444. * This function is used to create a new handler function object that, when
  445. * invoked, will automatically pass the wrapped handler to the io_service
  446. * object's dispatch function.
  447. *
  448. * @param handler The handler to be wrapped. The io_service will make a copy
  449. * of the handler object as required. The function signature of the handler
  450. * must be: @code void handler(A1 a1, ... An an); @endcode
  451. *
  452. * @return A function object that, when invoked, passes the wrapped handler to
  453. * the io_service object's dispatch function. Given a function object with the
  454. * signature:
  455. * @code R f(A1 a1, ... An an); @endcode
  456. * If this function object is passed to the wrap function like so:
  457. * @code io_service.wrap(f); @endcode
  458. * then the return value is a function object with the signature
  459. * @code void g(A1 a1, ... An an); @endcode
  460. * that, when invoked, executes code equivalent to:
  461. * @code io_service.dispatch(boost::bind(f, a1, ... an)); @endcode
  462. */
  463. template <typename Handler>
  464. #if defined(GENERATING_DOCUMENTATION)
  465. unspecified
  466. #else
  467. detail::wrapped_handler<io_service&, Handler>
  468. #endif
  469. wrap(Handler handler);
  470. /// Fork-related event notifications.
  471. enum fork_event
  472. {
  473. /// Notify the io_service that the process is about to fork.
  474. fork_prepare,
  475. /// Notify the io_service that the process has forked and is the parent.
  476. fork_parent,
  477. /// Notify the io_service that the process has forked and is the child.
  478. fork_child
  479. };
  480. /// Notify the io_service of a fork-related event.
  481. /**
  482. * This function is used to inform the io_service that the process is about
  483. * to fork, or has just forked. This allows the io_service, and the services
  484. * it contains, to perform any necessary housekeeping to ensure correct
  485. * operation following a fork.
  486. *
  487. * This function must not be called while any other io_service function, or
  488. * any function on an I/O object associated with the io_service, is being
  489. * called in another thread. It is, however, safe to call this function from
  490. * within a completion handler, provided no other thread is accessing the
  491. * io_service.
  492. *
  493. * @param event A fork-related event.
  494. *
  495. * @throws boost::system::system_error Thrown on failure. If the notification
  496. * fails the io_service object should no longer be used and should be
  497. * destroyed.
  498. *
  499. * @par Example
  500. * The following code illustrates how to incorporate the notify_fork()
  501. * function:
  502. * @code my_io_service.notify_fork(boost::asio::io_service::fork_prepare);
  503. * if (fork() == 0)
  504. * {
  505. * // This is the child process.
  506. * my_io_service.notify_fork(boost::asio::io_service::fork_child);
  507. * }
  508. * else
  509. * {
  510. * // This is the parent process.
  511. * my_io_service.notify_fork(boost::asio::io_service::fork_parent);
  512. * } @endcode
  513. *
  514. * @note For each service object @c svc in the io_service set, performs
  515. * <tt>svc->fork_service();</tt>. When processing the fork_prepare event,
  516. * services are visited in reverse order of the beginning of service object
  517. * lifetime. Otherwise, services are visited in order of the beginning of
  518. * service object lifetime.
  519. */
  520. BOOST_ASIO_DECL void notify_fork(boost::asio::io_service::fork_event event);
  521. /// Obtain the service object corresponding to the given type.
  522. /**
  523. * This function is used to locate a service object that corresponds to
  524. * the given service type. If there is no existing implementation of the
  525. * service, then the io_service will create a new instance of the service.
  526. *
  527. * @param ios The io_service object that owns the service.
  528. *
  529. * @return The service interface implementing the specified service type.
  530. * Ownership of the service interface is not transferred to the caller.
  531. */
  532. template <typename Service>
  533. friend Service& use_service(io_service& ios);
  534. /// Add a service object to the io_service.
  535. /**
  536. * This function is used to add a service to the io_service.
  537. *
  538. * @param ios The io_service object that owns the service.
  539. *
  540. * @param svc The service object. On success, ownership of the service object
  541. * is transferred to the io_service. When the io_service object is destroyed,
  542. * it will destroy the service object by performing:
  543. * @code delete static_cast<io_service::service*>(svc) @endcode
  544. *
  545. * @throws boost::asio::service_already_exists Thrown if a service of the
  546. * given type is already present in the io_service.
  547. *
  548. * @throws boost::asio::invalid_service_owner Thrown if the service's owning
  549. * io_service is not the io_service object specified by the ios parameter.
  550. */
  551. template <typename Service>
  552. friend void add_service(io_service& ios, Service* svc);
  553. /// Determine if an io_service contains a specified service type.
  554. /**
  555. * This function is used to determine whether the io_service contains a
  556. * service object corresponding to the given service type.
  557. *
  558. * @param ios The io_service object that owns the service.
  559. *
  560. * @return A boolean indicating whether the io_service contains the service.
  561. */
  562. template <typename Service>
  563. friend bool has_service(io_service& ios);
  564. private:
  565. #if defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
  566. detail::winsock_init<> init_;
  567. #elif defined(__sun) || defined(__QNX__) || defined(__hpux) || defined(_AIX) \
  568. || defined(__osf__)
  569. detail::signal_init<> init_;
  570. #endif
  571. // The service registry.
  572. boost::asio::detail::service_registry* service_registry_;
  573. // The implementation.
  574. impl_type& impl_;
  575. };
  576. /// Class to inform the io_service when it has work to do.
  577. /**
  578. * The work class is used to inform the io_service when work starts and
  579. * finishes. This ensures that the io_service object's run() function will not
  580. * exit while work is underway, and that it does exit when there is no
  581. * unfinished work remaining.
  582. *
  583. * The work class is copy-constructible so that it may be used as a data member
  584. * in a handler class. It is not assignable.
  585. */
  586. class io_service::work
  587. {
  588. public:
  589. /// Constructor notifies the io_service that work is starting.
  590. /**
  591. * The constructor is used to inform the io_service that some work has begun.
  592. * This ensures that the io_service object's run() function will not exit
  593. * while the work is underway.
  594. */
  595. explicit work(boost::asio::io_service& io_service);
  596. /// Copy constructor notifies the io_service that work is starting.
  597. /**
  598. * The constructor is used to inform the io_service that some work has begun.
  599. * This ensures that the io_service object's run() function will not exit
  600. * while the work is underway.
  601. */
  602. work(const work& other);
  603. /// Destructor notifies the io_service that the work is complete.
  604. /**
  605. * The destructor is used to inform the io_service that some work has
  606. * finished. Once the count of unfinished work reaches zero, the io_service
  607. * object's run() function is permitted to exit.
  608. */
  609. ~work();
  610. /// Get the io_service associated with the work.
  611. boost::asio::io_service& get_io_service();
  612. private:
  613. // Prevent assignment.
  614. void operator=(const work& other);
  615. // The io_service implementation.
  616. detail::io_service_impl& io_service_impl_;
  617. };
  618. /// Class used to uniquely identify a service.
  619. class io_service::id
  620. : private noncopyable
  621. {
  622. public:
  623. /// Constructor.
  624. id() {}
  625. };
  626. /// Base class for all io_service services.
  627. class io_service::service
  628. : private noncopyable
  629. {
  630. public:
  631. /// Get the io_service object that owns the service.
  632. boost::asio::io_service& get_io_service();
  633. protected:
  634. /// Constructor.
  635. /**
  636. * @param owner The io_service object that owns the service.
  637. */
  638. BOOST_ASIO_DECL service(boost::asio::io_service& owner);
  639. /// Destructor.
  640. BOOST_ASIO_DECL virtual ~service();
  641. private:
  642. /// Destroy all user-defined handler objects owned by the service.
  643. virtual void shutdown_service() = 0;
  644. /// Handle notification of a fork-related event to perform any necessary
  645. /// housekeeping.
  646. /**
  647. * This function is not a pure virtual so that services only have to
  648. * implement it if necessary. The default implementation does nothing.
  649. */
  650. BOOST_ASIO_DECL virtual void fork_service(
  651. boost::asio::io_service::fork_event event);
  652. friend class boost::asio::detail::service_registry;
  653. struct key
  654. {
  655. key() : type_info_(0), id_(0) {}
  656. const std::type_info* type_info_;
  657. const boost::asio::io_service::id* id_;
  658. } key_;
  659. boost::asio::io_service& owner_;
  660. service* next_;
  661. };
  662. /// Exception thrown when trying to add a duplicate service to an io_service.
  663. class service_already_exists
  664. : public std::logic_error
  665. {
  666. public:
  667. BOOST_ASIO_DECL service_already_exists();
  668. };
  669. /// Exception thrown when trying to add a service object to an io_service where
  670. /// the service has a different owner.
  671. class invalid_service_owner
  672. : public std::logic_error
  673. {
  674. public:
  675. BOOST_ASIO_DECL invalid_service_owner();
  676. };
  677. namespace detail {
  678. // Special derived service id type to keep classes header-file only.
  679. template <typename Type>
  680. class service_id
  681. : public boost::asio::io_service::id
  682. {
  683. };
  684. // Special service base class to keep classes header-file only.
  685. template <typename Type>
  686. class service_base
  687. : public boost::asio::io_service::service
  688. {
  689. public:
  690. static boost::asio::detail::service_id<Type> id;
  691. // Constructor.
  692. service_base(boost::asio::io_service& io_service)
  693. : boost::asio::io_service::service(io_service)
  694. {
  695. }
  696. };
  697. template <typename Type>
  698. boost::asio::detail::service_id<Type> service_base<Type>::id;
  699. } // namespace detail
  700. } // namespace asio
  701. } // namespace boost
  702. #include <boost/asio/detail/pop_options.hpp>
  703. #include <boost/asio/impl/io_service.hpp>
  704. #if defined(BOOST_ASIO_HEADER_ONLY)
  705. # include <boost/asio/impl/io_service.ipp>
  706. #endif // defined(BOOST_ASIO_HEADER_ONLY)
  707. #endif // BOOST_ASIO_IO_SERVICE_HPP