io_service.hpp 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. //
  2. // impl/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_IMPL_IO_SERVICE_HPP
  11. #define BOOST_ASIO_IMPL_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/handler_type_requirements.hpp>
  16. #include <boost/asio/detail/service_registry.hpp>
  17. #include <boost/asio/detail/push_options.hpp>
  18. namespace boost {
  19. namespace asio {
  20. template <typename Service>
  21. inline Service& use_service(io_service& ios)
  22. {
  23. // Check that Service meets the necessary type requirements.
  24. (void)static_cast<io_service::service*>(static_cast<Service*>(0));
  25. (void)static_cast<const io_service::id*>(&Service::id);
  26. return ios.service_registry_->template use_service<Service>();
  27. }
  28. template <>
  29. inline detail::io_service_impl& use_service<detail::io_service_impl>(
  30. io_service& ios)
  31. {
  32. return ios.impl_;
  33. }
  34. template <typename Service>
  35. inline void add_service(io_service& ios, Service* svc)
  36. {
  37. // Check that Service meets the necessary type requirements.
  38. (void)static_cast<io_service::service*>(static_cast<Service*>(0));
  39. (void)static_cast<const io_service::id*>(&Service::id);
  40. ios.service_registry_->template add_service<Service>(svc);
  41. }
  42. template <typename Service>
  43. inline bool has_service(io_service& ios)
  44. {
  45. // Check that Service meets the necessary type requirements.
  46. (void)static_cast<io_service::service*>(static_cast<Service*>(0));
  47. (void)static_cast<const io_service::id*>(&Service::id);
  48. return ios.service_registry_->template has_service<Service>();
  49. }
  50. } // namespace asio
  51. } // namespace boost
  52. #include <boost/asio/detail/pop_options.hpp>
  53. #if defined(BOOST_ASIO_HAS_IOCP)
  54. # include <boost/asio/detail/win_iocp_io_service.hpp>
  55. #else
  56. # include <boost/asio/detail/task_io_service.hpp>
  57. #endif
  58. #include <boost/asio/detail/push_options.hpp>
  59. namespace boost {
  60. namespace asio {
  61. template <typename CompletionHandler>
  62. inline BOOST_ASIO_INITFN_RESULT_TYPE(CompletionHandler, void ())
  63. io_service::dispatch(BOOST_ASIO_MOVE_ARG(CompletionHandler) handler)
  64. {
  65. // If you get an error on the following line it means that your handler does
  66. // not meet the documented type requirements for a CompletionHandler.
  67. BOOST_ASIO_COMPLETION_HANDLER_CHECK(CompletionHandler, handler) type_check;
  68. detail::async_result_init<
  69. CompletionHandler, void ()> init(
  70. BOOST_ASIO_MOVE_CAST(CompletionHandler)(handler));
  71. impl_.dispatch(init.handler);
  72. return init.result.get();
  73. }
  74. template <typename CompletionHandler>
  75. inline BOOST_ASIO_INITFN_RESULT_TYPE(CompletionHandler, void ())
  76. io_service::post(BOOST_ASIO_MOVE_ARG(CompletionHandler) handler)
  77. {
  78. // If you get an error on the following line it means that your handler does
  79. // not meet the documented type requirements for a CompletionHandler.
  80. BOOST_ASIO_COMPLETION_HANDLER_CHECK(CompletionHandler, handler) type_check;
  81. detail::async_result_init<
  82. CompletionHandler, void ()> init(
  83. BOOST_ASIO_MOVE_CAST(CompletionHandler)(handler));
  84. impl_.post(init.handler);
  85. return init.result.get();
  86. }
  87. template <typename Handler>
  88. #if defined(GENERATING_DOCUMENTATION)
  89. unspecified
  90. #else
  91. inline detail::wrapped_handler<io_service&, Handler>
  92. #endif
  93. io_service::wrap(Handler handler)
  94. {
  95. return detail::wrapped_handler<io_service&, Handler>(*this, handler);
  96. }
  97. inline io_service::work::work(boost::asio::io_service& io_service)
  98. : io_service_impl_(io_service.impl_)
  99. {
  100. io_service_impl_.work_started();
  101. }
  102. inline io_service::work::work(const work& other)
  103. : io_service_impl_(other.io_service_impl_)
  104. {
  105. io_service_impl_.work_started();
  106. }
  107. inline io_service::work::~work()
  108. {
  109. io_service_impl_.work_finished();
  110. }
  111. inline boost::asio::io_service& io_service::work::get_io_service()
  112. {
  113. return io_service_impl_.get_io_service();
  114. }
  115. inline boost::asio::io_service& io_service::service::get_io_service()
  116. {
  117. return owner_;
  118. }
  119. } // namespace asio
  120. } // namespace boost
  121. #include <boost/asio/detail/pop_options.hpp>
  122. #endif // BOOST_ASIO_IMPL_IO_SERVICE_HPP