waitable_timer_service.hpp 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. //
  2. // waitable_timer_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_WAITABLE_TIMER_SERVICE_HPP
  11. #define BOOST_ASIO_WAITABLE_TIMER_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 <boost/asio/async_result.hpp>
  18. #include <boost/asio/detail/chrono_time_traits.hpp>
  19. #include <boost/asio/detail/deadline_timer_service.hpp>
  20. #include <boost/asio/io_service.hpp>
  21. #include <boost/asio/wait_traits.hpp>
  22. #include <boost/asio/detail/push_options.hpp>
  23. namespace boost {
  24. namespace asio {
  25. /// Default service implementation for a timer.
  26. template <typename Clock,
  27. typename WaitTraits = boost::asio::wait_traits<Clock> >
  28. class waitable_timer_service
  29. #if defined(GENERATING_DOCUMENTATION)
  30. : public boost::asio::io_service::service
  31. #else
  32. : public boost::asio::detail::service_base<
  33. waitable_timer_service<Clock, WaitTraits> >
  34. #endif
  35. {
  36. public:
  37. #if defined(GENERATING_DOCUMENTATION)
  38. /// The unique service identifier.
  39. static boost::asio::io_service::id id;
  40. #endif
  41. /// The clock type.
  42. typedef Clock clock_type;
  43. /// The duration type of the clock.
  44. typedef typename clock_type::duration duration;
  45. /// The time point type of the clock.
  46. typedef typename clock_type::time_point time_point;
  47. /// The wait traits type.
  48. typedef WaitTraits traits_type;
  49. private:
  50. // The type of the platform-specific implementation.
  51. typedef detail::deadline_timer_service<
  52. detail::chrono_time_traits<Clock, WaitTraits> > service_impl_type;
  53. public:
  54. /// The implementation type of the waitable timer.
  55. #if defined(GENERATING_DOCUMENTATION)
  56. typedef implementation_defined implementation_type;
  57. #else
  58. typedef typename service_impl_type::implementation_type implementation_type;
  59. #endif
  60. /// Construct a new timer service for the specified io_service.
  61. explicit waitable_timer_service(boost::asio::io_service& io_service)
  62. : boost::asio::detail::service_base<
  63. waitable_timer_service<Clock, WaitTraits> >(io_service),
  64. service_impl_(io_service)
  65. {
  66. }
  67. /// Construct a new timer implementation.
  68. void construct(implementation_type& impl)
  69. {
  70. service_impl_.construct(impl);
  71. }
  72. /// Destroy a timer implementation.
  73. void destroy(implementation_type& impl)
  74. {
  75. service_impl_.destroy(impl);
  76. }
  77. /// Cancel any asynchronous wait operations associated with the timer.
  78. std::size_t cancel(implementation_type& impl, boost::system::error_code& ec)
  79. {
  80. return service_impl_.cancel(impl, ec);
  81. }
  82. /// Cancels one asynchronous wait operation associated with the timer.
  83. std::size_t cancel_one(implementation_type& impl,
  84. boost::system::error_code& ec)
  85. {
  86. return service_impl_.cancel_one(impl, ec);
  87. }
  88. /// Get the expiry time for the timer as an absolute time.
  89. time_point expires_at(const implementation_type& impl) const
  90. {
  91. return service_impl_.expires_at(impl);
  92. }
  93. /// Set the expiry time for the timer as an absolute time.
  94. std::size_t expires_at(implementation_type& impl,
  95. const time_point& expiry_time, boost::system::error_code& ec)
  96. {
  97. return service_impl_.expires_at(impl, expiry_time, ec);
  98. }
  99. /// Get the expiry time for the timer relative to now.
  100. duration expires_from_now(const implementation_type& impl) const
  101. {
  102. return service_impl_.expires_from_now(impl);
  103. }
  104. /// Set the expiry time for the timer relative to now.
  105. std::size_t expires_from_now(implementation_type& impl,
  106. const duration& expiry_time, boost::system::error_code& ec)
  107. {
  108. return service_impl_.expires_from_now(impl, expiry_time, ec);
  109. }
  110. // Perform a blocking wait on the timer.
  111. void wait(implementation_type& impl, boost::system::error_code& ec)
  112. {
  113. service_impl_.wait(impl, ec);
  114. }
  115. // Start an asynchronous wait on the timer.
  116. template <typename WaitHandler>
  117. BOOST_ASIO_INITFN_RESULT_TYPE(WaitHandler,
  118. void (boost::system::error_code))
  119. async_wait(implementation_type& impl,
  120. BOOST_ASIO_MOVE_ARG(WaitHandler) handler)
  121. {
  122. detail::async_result_init<
  123. WaitHandler, void (boost::system::error_code)> init(
  124. BOOST_ASIO_MOVE_CAST(WaitHandler)(handler));
  125. service_impl_.async_wait(impl, init.handler);
  126. return init.result.get();
  127. }
  128. private:
  129. // Destroy all user-defined handler objects owned by the service.
  130. void shutdown_service()
  131. {
  132. service_impl_.shutdown_service();
  133. }
  134. // The platform-specific implementation.
  135. service_impl_type service_impl_;
  136. };
  137. } // namespace asio
  138. } // namespace boost
  139. #include <boost/asio/detail/pop_options.hpp>
  140. #endif // BOOST_ASIO_WAITABLE_TIMER_SERVICE_HPP