basic_waitable_timer.hpp 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521
  1. //
  2. // basic_waitable_timer.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_BASIC_WAITABLE_TIMER_HPP
  11. #define BOOST_ASIO_BASIC_WAITABLE_TIMER_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 <boost/asio/basic_io_object.hpp>
  18. #include <boost/asio/detail/handler_type_requirements.hpp>
  19. #include <boost/asio/detail/throw_error.hpp>
  20. #include <boost/asio/error.hpp>
  21. #include <boost/asio/wait_traits.hpp>
  22. #include <boost/asio/waitable_timer_service.hpp>
  23. #include <boost/asio/detail/push_options.hpp>
  24. namespace boost {
  25. namespace asio {
  26. /// Provides waitable timer functionality.
  27. /**
  28. * The basic_waitable_timer class template provides the ability to perform a
  29. * blocking or asynchronous wait for a timer to expire.
  30. *
  31. * A waitable timer is always in one of two states: "expired" or "not expired".
  32. * If the wait() or async_wait() function is called on an expired timer, the
  33. * wait operation will complete immediately.
  34. *
  35. * Most applications will use one of the boost::asio::steady_timer,
  36. * boost::asio::system_timer or boost::asio::high_resolution_timer typedefs.
  37. *
  38. * @note This waitable timer functionality is for use with the C++11 standard
  39. * library's @c &lt;chrono&gt; facility, or with the Boost.Chrono library.
  40. *
  41. * @par Thread Safety
  42. * @e Distinct @e objects: Safe.@n
  43. * @e Shared @e objects: Unsafe.
  44. *
  45. * @par Examples
  46. * Performing a blocking wait (C++11):
  47. * @code
  48. * // Construct a timer without setting an expiry time.
  49. * boost::asio::steady_timer timer(io_service);
  50. *
  51. * // Set an expiry time relative to now.
  52. * timer.expires_from_now(std::chrono::seconds(5));
  53. *
  54. * // Wait for the timer to expire.
  55. * timer.wait();
  56. * @endcode
  57. *
  58. * @par
  59. * Performing an asynchronous wait (C++11):
  60. * @code
  61. * void handler(const boost::system::error_code& error)
  62. * {
  63. * if (!error)
  64. * {
  65. * // Timer expired.
  66. * }
  67. * }
  68. *
  69. * ...
  70. *
  71. * // Construct a timer with an absolute expiry time.
  72. * boost::asio::steady_timer timer(io_service,
  73. * std::chrono::steady_clock::now() + std::chrono::seconds(60));
  74. *
  75. * // Start an asynchronous wait.
  76. * timer.async_wait(handler);
  77. * @endcode
  78. *
  79. * @par Changing an active waitable timer's expiry time
  80. *
  81. * Changing the expiry time of a timer while there are pending asynchronous
  82. * waits causes those wait operations to be cancelled. To ensure that the action
  83. * associated with the timer is performed only once, use something like this:
  84. * used:
  85. *
  86. * @code
  87. * void on_some_event()
  88. * {
  89. * if (my_timer.expires_from_now(seconds(5)) > 0)
  90. * {
  91. * // We managed to cancel the timer. Start new asynchronous wait.
  92. * my_timer.async_wait(on_timeout);
  93. * }
  94. * else
  95. * {
  96. * // Too late, timer has already expired!
  97. * }
  98. * }
  99. *
  100. * void on_timeout(const boost::system::error_code& e)
  101. * {
  102. * if (e != boost::asio::error::operation_aborted)
  103. * {
  104. * // Timer was not cancelled, take necessary action.
  105. * }
  106. * }
  107. * @endcode
  108. *
  109. * @li The boost::asio::basic_waitable_timer::expires_from_now() function
  110. * cancels any pending asynchronous waits, and returns the number of
  111. * asynchronous waits that were cancelled. If it returns 0 then you were too
  112. * late and the wait handler has already been executed, or will soon be
  113. * executed. If it returns 1 then the wait handler was successfully cancelled.
  114. *
  115. * @li If a wait handler is cancelled, the boost::system::error_code passed to
  116. * it contains the value boost::asio::error::operation_aborted.
  117. */
  118. template <typename Clock,
  119. typename WaitTraits = boost::asio::wait_traits<Clock>,
  120. typename WaitableTimerService = waitable_timer_service<Clock, WaitTraits> >
  121. class basic_waitable_timer
  122. : public basic_io_object<WaitableTimerService>
  123. {
  124. public:
  125. /// The clock type.
  126. typedef Clock clock_type;
  127. /// The duration type of the clock.
  128. typedef typename clock_type::duration duration;
  129. /// The time point type of the clock.
  130. typedef typename clock_type::time_point time_point;
  131. /// The wait traits type.
  132. typedef WaitTraits traits_type;
  133. /// Constructor.
  134. /**
  135. * This constructor creates a timer without setting an expiry time. The
  136. * expires_at() or expires_from_now() functions must be called to set an
  137. * expiry time before the timer can be waited on.
  138. *
  139. * @param io_service The io_service object that the timer will use to dispatch
  140. * handlers for any asynchronous operations performed on the timer.
  141. */
  142. explicit basic_waitable_timer(boost::asio::io_service& io_service)
  143. : basic_io_object<WaitableTimerService>(io_service)
  144. {
  145. }
  146. /// Constructor to set a particular expiry time as an absolute time.
  147. /**
  148. * This constructor creates a timer and sets the expiry time.
  149. *
  150. * @param io_service The io_service object that the timer will use to dispatch
  151. * handlers for any asynchronous operations performed on the timer.
  152. *
  153. * @param expiry_time The expiry time to be used for the timer, expressed
  154. * as an absolute time.
  155. */
  156. basic_waitable_timer(boost::asio::io_service& io_service,
  157. const time_point& expiry_time)
  158. : basic_io_object<WaitableTimerService>(io_service)
  159. {
  160. boost::system::error_code ec;
  161. this->service.expires_at(this->implementation, expiry_time, ec);
  162. boost::asio::detail::throw_error(ec, "expires_at");
  163. }
  164. /// Constructor to set a particular expiry time relative to now.
  165. /**
  166. * This constructor creates a timer and sets the expiry time.
  167. *
  168. * @param io_service The io_service object that the timer will use to dispatch
  169. * handlers for any asynchronous operations performed on the timer.
  170. *
  171. * @param expiry_time The expiry time to be used for the timer, relative to
  172. * now.
  173. */
  174. basic_waitable_timer(boost::asio::io_service& io_service,
  175. const duration& expiry_time)
  176. : basic_io_object<WaitableTimerService>(io_service)
  177. {
  178. boost::system::error_code ec;
  179. this->service.expires_from_now(this->implementation, expiry_time, ec);
  180. boost::asio::detail::throw_error(ec, "expires_from_now");
  181. }
  182. /// Cancel any asynchronous operations that are waiting on the timer.
  183. /**
  184. * This function forces the completion of any pending asynchronous wait
  185. * operations against the timer. The handler for each cancelled operation will
  186. * be invoked with the boost::asio::error::operation_aborted error code.
  187. *
  188. * Cancelling the timer does not change the expiry time.
  189. *
  190. * @return The number of asynchronous operations that were cancelled.
  191. *
  192. * @throws boost::system::system_error Thrown on failure.
  193. *
  194. * @note If the timer has already expired when cancel() is called, then the
  195. * handlers for asynchronous wait operations will:
  196. *
  197. * @li have already been invoked; or
  198. *
  199. * @li have been queued for invocation in the near future.
  200. *
  201. * These handlers can no longer be cancelled, and therefore are passed an
  202. * error code that indicates the successful completion of the wait operation.
  203. */
  204. std::size_t cancel()
  205. {
  206. boost::system::error_code ec;
  207. std::size_t s = this->service.cancel(this->implementation, ec);
  208. boost::asio::detail::throw_error(ec, "cancel");
  209. return s;
  210. }
  211. /// Cancel any asynchronous operations that are waiting on the timer.
  212. /**
  213. * This function forces the completion of any pending asynchronous wait
  214. * operations against the timer. The handler for each cancelled operation will
  215. * be invoked with the boost::asio::error::operation_aborted error code.
  216. *
  217. * Cancelling the timer does not change the expiry time.
  218. *
  219. * @param ec Set to indicate what error occurred, if any.
  220. *
  221. * @return The number of asynchronous operations that were cancelled.
  222. *
  223. * @note If the timer has already expired when cancel() is called, then the
  224. * handlers for asynchronous wait operations will:
  225. *
  226. * @li have already been invoked; or
  227. *
  228. * @li have been queued for invocation in the near future.
  229. *
  230. * These handlers can no longer be cancelled, and therefore are passed an
  231. * error code that indicates the successful completion of the wait operation.
  232. */
  233. std::size_t cancel(boost::system::error_code& ec)
  234. {
  235. return this->service.cancel(this->implementation, ec);
  236. }
  237. /// Cancels one asynchronous operation that is waiting on the timer.
  238. /**
  239. * This function forces the completion of one pending asynchronous wait
  240. * operation against the timer. Handlers are cancelled in FIFO order. The
  241. * handler for the cancelled operation will be invoked with the
  242. * boost::asio::error::operation_aborted error code.
  243. *
  244. * Cancelling the timer does not change the expiry time.
  245. *
  246. * @return The number of asynchronous operations that were cancelled. That is,
  247. * either 0 or 1.
  248. *
  249. * @throws boost::system::system_error Thrown on failure.
  250. *
  251. * @note If the timer has already expired when cancel_one() is called, then
  252. * the handlers for asynchronous wait operations will:
  253. *
  254. * @li have already been invoked; or
  255. *
  256. * @li have been queued for invocation in the near future.
  257. *
  258. * These handlers can no longer be cancelled, and therefore are passed an
  259. * error code that indicates the successful completion of the wait operation.
  260. */
  261. std::size_t cancel_one()
  262. {
  263. boost::system::error_code ec;
  264. std::size_t s = this->service.cancel_one(this->implementation, ec);
  265. boost::asio::detail::throw_error(ec, "cancel_one");
  266. return s;
  267. }
  268. /// Cancels one asynchronous operation that is waiting on the timer.
  269. /**
  270. * This function forces the completion of one pending asynchronous wait
  271. * operation against the timer. Handlers are cancelled in FIFO order. The
  272. * handler for the cancelled operation will be invoked with the
  273. * boost::asio::error::operation_aborted error code.
  274. *
  275. * Cancelling the timer does not change the expiry time.
  276. *
  277. * @param ec Set to indicate what error occurred, if any.
  278. *
  279. * @return The number of asynchronous operations that were cancelled. That is,
  280. * either 0 or 1.
  281. *
  282. * @note If the timer has already expired when cancel_one() is called, then
  283. * the handlers for asynchronous wait operations will:
  284. *
  285. * @li have already been invoked; or
  286. *
  287. * @li have been queued for invocation in the near future.
  288. *
  289. * These handlers can no longer be cancelled, and therefore are passed an
  290. * error code that indicates the successful completion of the wait operation.
  291. */
  292. std::size_t cancel_one(boost::system::error_code& ec)
  293. {
  294. return this->service.cancel_one(this->implementation, ec);
  295. }
  296. /// Get the timer's expiry time as an absolute time.
  297. /**
  298. * This function may be used to obtain the timer's current expiry time.
  299. * Whether the timer has expired or not does not affect this value.
  300. */
  301. time_point expires_at() const
  302. {
  303. return this->service.expires_at(this->implementation);
  304. }
  305. /// Set the timer's expiry time as an absolute time.
  306. /**
  307. * This function sets the expiry time. Any pending asynchronous wait
  308. * operations will be cancelled. The handler for each cancelled operation will
  309. * be invoked with the boost::asio::error::operation_aborted error code.
  310. *
  311. * @param expiry_time The expiry time to be used for the timer.
  312. *
  313. * @return The number of asynchronous operations that were cancelled.
  314. *
  315. * @throws boost::system::system_error Thrown on failure.
  316. *
  317. * @note If the timer has already expired when expires_at() is called, then
  318. * the handlers for asynchronous wait operations will:
  319. *
  320. * @li have already been invoked; or
  321. *
  322. * @li have been queued for invocation in the near future.
  323. *
  324. * These handlers can no longer be cancelled, and therefore are passed an
  325. * error code that indicates the successful completion of the wait operation.
  326. */
  327. std::size_t expires_at(const time_point& expiry_time)
  328. {
  329. boost::system::error_code ec;
  330. std::size_t s = this->service.expires_at(
  331. this->implementation, expiry_time, ec);
  332. boost::asio::detail::throw_error(ec, "expires_at");
  333. return s;
  334. }
  335. /// Set the timer's expiry time as an absolute time.
  336. /**
  337. * This function sets the expiry time. Any pending asynchronous wait
  338. * operations will be cancelled. The handler for each cancelled operation will
  339. * be invoked with the boost::asio::error::operation_aborted error code.
  340. *
  341. * @param expiry_time The expiry time to be used for the timer.
  342. *
  343. * @param ec Set to indicate what error occurred, if any.
  344. *
  345. * @return The number of asynchronous operations that were cancelled.
  346. *
  347. * @note If the timer has already expired when expires_at() is called, then
  348. * the handlers for asynchronous wait operations will:
  349. *
  350. * @li have already been invoked; or
  351. *
  352. * @li have been queued for invocation in the near future.
  353. *
  354. * These handlers can no longer be cancelled, and therefore are passed an
  355. * error code that indicates the successful completion of the wait operation.
  356. */
  357. std::size_t expires_at(const time_point& expiry_time,
  358. boost::system::error_code& ec)
  359. {
  360. return this->service.expires_at(this->implementation, expiry_time, ec);
  361. }
  362. /// Get the timer's expiry time relative to now.
  363. /**
  364. * This function may be used to obtain the timer's current expiry time.
  365. * Whether the timer has expired or not does not affect this value.
  366. */
  367. duration expires_from_now() const
  368. {
  369. return this->service.expires_from_now(this->implementation);
  370. }
  371. /// Set the timer's expiry time relative to now.
  372. /**
  373. * This function sets the expiry time. Any pending asynchronous wait
  374. * operations will be cancelled. The handler for each cancelled operation will
  375. * be invoked with the boost::asio::error::operation_aborted error code.
  376. *
  377. * @param expiry_time The expiry time to be used for the timer.
  378. *
  379. * @return The number of asynchronous operations that were cancelled.
  380. *
  381. * @throws boost::system::system_error Thrown on failure.
  382. *
  383. * @note If the timer has already expired when expires_from_now() is called,
  384. * then the handlers for asynchronous wait operations will:
  385. *
  386. * @li have already been invoked; or
  387. *
  388. * @li have been queued for invocation in the near future.
  389. *
  390. * These handlers can no longer be cancelled, and therefore are passed an
  391. * error code that indicates the successful completion of the wait operation.
  392. */
  393. std::size_t expires_from_now(const duration& expiry_time)
  394. {
  395. boost::system::error_code ec;
  396. std::size_t s = this->service.expires_from_now(
  397. this->implementation, expiry_time, ec);
  398. boost::asio::detail::throw_error(ec, "expires_from_now");
  399. return s;
  400. }
  401. /// Set the timer's expiry time relative to now.
  402. /**
  403. * This function sets the expiry time. Any pending asynchronous wait
  404. * operations will be cancelled. The handler for each cancelled operation will
  405. * be invoked with the boost::asio::error::operation_aborted error code.
  406. *
  407. * @param expiry_time The expiry time to be used for the timer.
  408. *
  409. * @param ec Set to indicate what error occurred, if any.
  410. *
  411. * @return The number of asynchronous operations that were cancelled.
  412. *
  413. * @note If the timer has already expired when expires_from_now() is called,
  414. * then the handlers for asynchronous wait operations will:
  415. *
  416. * @li have already been invoked; or
  417. *
  418. * @li have been queued for invocation in the near future.
  419. *
  420. * These handlers can no longer be cancelled, and therefore are passed an
  421. * error code that indicates the successful completion of the wait operation.
  422. */
  423. std::size_t expires_from_now(const duration& expiry_time,
  424. boost::system::error_code& ec)
  425. {
  426. return this->service.expires_from_now(
  427. this->implementation, expiry_time, ec);
  428. }
  429. /// Perform a blocking wait on the timer.
  430. /**
  431. * This function is used to wait for the timer to expire. This function
  432. * blocks and does not return until the timer has expired.
  433. *
  434. * @throws boost::system::system_error Thrown on failure.
  435. */
  436. void wait()
  437. {
  438. boost::system::error_code ec;
  439. this->service.wait(this->implementation, ec);
  440. boost::asio::detail::throw_error(ec, "wait");
  441. }
  442. /// Perform a blocking wait on the timer.
  443. /**
  444. * This function is used to wait for the timer to expire. This function
  445. * blocks and does not return until the timer has expired.
  446. *
  447. * @param ec Set to indicate what error occurred, if any.
  448. */
  449. void wait(boost::system::error_code& ec)
  450. {
  451. this->service.wait(this->implementation, ec);
  452. }
  453. /// Start an asynchronous wait on the timer.
  454. /**
  455. * This function may be used to initiate an asynchronous wait against the
  456. * timer. It always returns immediately.
  457. *
  458. * For each call to async_wait(), the supplied handler will be called exactly
  459. * once. The handler will be called when:
  460. *
  461. * @li The timer has expired.
  462. *
  463. * @li The timer was cancelled, in which case the handler is passed the error
  464. * code boost::asio::error::operation_aborted.
  465. *
  466. * @param handler The handler to be called when the timer expires. Copies
  467. * will be made of the handler as required. The function signature of the
  468. * handler must be:
  469. * @code void handler(
  470. * const boost::system::error_code& error // Result of operation.
  471. * ); @endcode
  472. * Regardless of whether the asynchronous operation completes immediately or
  473. * not, the handler will not be invoked from within this function. Invocation
  474. * of the handler will be performed in a manner equivalent to using
  475. * boost::asio::io_service::post().
  476. */
  477. template <typename WaitHandler>
  478. BOOST_ASIO_INITFN_RESULT_TYPE(WaitHandler,
  479. void (boost::system::error_code))
  480. async_wait(BOOST_ASIO_MOVE_ARG(WaitHandler) handler)
  481. {
  482. // If you get an error on the following line it means that your handler does
  483. // not meet the documented type requirements for a WaitHandler.
  484. BOOST_ASIO_WAIT_HANDLER_CHECK(WaitHandler, handler) type_check;
  485. return this->service.async_wait(this->implementation,
  486. BOOST_ASIO_MOVE_CAST(WaitHandler)(handler));
  487. }
  488. };
  489. } // namespace asio
  490. } // namespace boost
  491. #include <boost/asio/detail/pop_options.hpp>
  492. #endif // BOOST_ASIO_BASIC_WAITABLE_TIMER_HPP