io_service.ipp 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. //
  2. // impl/io_service.ipp
  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_IPP
  11. #define BOOST_ASIO_IMPL_IO_SERVICE_IPP
  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 <boost/asio/io_service.hpp>
  17. #include <boost/asio/detail/limits.hpp>
  18. #include <boost/asio/detail/scoped_ptr.hpp>
  19. #include <boost/asio/detail/service_registry.hpp>
  20. #include <boost/asio/detail/throw_error.hpp>
  21. #if defined(BOOST_ASIO_HAS_IOCP)
  22. # include <boost/asio/detail/win_iocp_io_service.hpp>
  23. #else
  24. # include <boost/asio/detail/task_io_service.hpp>
  25. #endif
  26. #include <boost/asio/detail/push_options.hpp>
  27. namespace boost {
  28. namespace asio {
  29. io_service::io_service()
  30. : service_registry_(new boost::asio::detail::service_registry(
  31. *this, static_cast<impl_type*>(0),
  32. (std::numeric_limits<std::size_t>::max)())),
  33. impl_(service_registry_->first_service<impl_type>())
  34. {
  35. }
  36. io_service::io_service(std::size_t concurrency_hint)
  37. : service_registry_(new boost::asio::detail::service_registry(
  38. *this, static_cast<impl_type*>(0), concurrency_hint)),
  39. impl_(service_registry_->first_service<impl_type>())
  40. {
  41. }
  42. io_service::~io_service()
  43. {
  44. delete service_registry_;
  45. }
  46. std::size_t io_service::run()
  47. {
  48. boost::system::error_code ec;
  49. std::size_t s = impl_.run(ec);
  50. boost::asio::detail::throw_error(ec);
  51. return s;
  52. }
  53. std::size_t io_service::run(boost::system::error_code& ec)
  54. {
  55. return impl_.run(ec);
  56. }
  57. std::size_t io_service::run_one()
  58. {
  59. boost::system::error_code ec;
  60. std::size_t s = impl_.run_one(ec);
  61. boost::asio::detail::throw_error(ec);
  62. return s;
  63. }
  64. std::size_t io_service::run_one(boost::system::error_code& ec)
  65. {
  66. return impl_.run_one(ec);
  67. }
  68. std::size_t io_service::poll()
  69. {
  70. boost::system::error_code ec;
  71. std::size_t s = impl_.poll(ec);
  72. boost::asio::detail::throw_error(ec);
  73. return s;
  74. }
  75. std::size_t io_service::poll(boost::system::error_code& ec)
  76. {
  77. return impl_.poll(ec);
  78. }
  79. std::size_t io_service::poll_one()
  80. {
  81. boost::system::error_code ec;
  82. std::size_t s = impl_.poll_one(ec);
  83. boost::asio::detail::throw_error(ec);
  84. return s;
  85. }
  86. std::size_t io_service::poll_one(boost::system::error_code& ec)
  87. {
  88. return impl_.poll_one(ec);
  89. }
  90. void io_service::stop()
  91. {
  92. impl_.stop();
  93. }
  94. bool io_service::stopped() const
  95. {
  96. return impl_.stopped();
  97. }
  98. void io_service::reset()
  99. {
  100. impl_.reset();
  101. }
  102. void io_service::notify_fork(boost::asio::io_service::fork_event event)
  103. {
  104. service_registry_->notify_fork(event);
  105. }
  106. io_service::service::service(boost::asio::io_service& owner)
  107. : owner_(owner),
  108. next_(0)
  109. {
  110. }
  111. io_service::service::~service()
  112. {
  113. }
  114. void io_service::service::fork_service(boost::asio::io_service::fork_event)
  115. {
  116. }
  117. service_already_exists::service_already_exists()
  118. : std::logic_error("Service already exists.")
  119. {
  120. }
  121. invalid_service_owner::invalid_service_owner()
  122. : std::logic_error("Invalid service owner.")
  123. {
  124. }
  125. } // namespace asio
  126. } // namespace boost
  127. #include <boost/asio/detail/pop_options.hpp>
  128. #endif // BOOST_ASIO_IMPL_IO_SERVICE_IPP