reactive_socket_recv_op.hpp 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. //
  2. // detail/reactive_socket_recv_op.hpp
  3. // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2024 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_DETAIL_REACTIVE_SOCKET_RECV_OP_HPP
  11. #define BOOST_ASIO_DETAIL_REACTIVE_SOCKET_RECV_OP_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 <boost/asio/detail/bind_handler.hpp>
  17. #include <boost/asio/detail/buffer_sequence_adapter.hpp>
  18. #include <boost/asio/detail/fenced_block.hpp>
  19. #include <boost/asio/detail/handler_alloc_helpers.hpp>
  20. #include <boost/asio/detail/handler_work.hpp>
  21. #include <boost/asio/detail/memory.hpp>
  22. #include <boost/asio/detail/reactor_op.hpp>
  23. #include <boost/asio/detail/socket_ops.hpp>
  24. #include <boost/asio/detail/push_options.hpp>
  25. namespace boost {
  26. namespace asio {
  27. namespace detail {
  28. template <typename MutableBufferSequence>
  29. class reactive_socket_recv_op_base : public reactor_op
  30. {
  31. public:
  32. reactive_socket_recv_op_base(const boost::system::error_code& success_ec,
  33. socket_type socket, socket_ops::state_type state,
  34. const MutableBufferSequence& buffers,
  35. socket_base::message_flags flags, func_type complete_func)
  36. : reactor_op(success_ec,
  37. &reactive_socket_recv_op_base::do_perform, complete_func),
  38. socket_(socket),
  39. state_(state),
  40. buffers_(buffers),
  41. flags_(flags)
  42. {
  43. }
  44. static status do_perform(reactor_op* base)
  45. {
  46. BOOST_ASIO_ASSUME(base != 0);
  47. reactive_socket_recv_op_base* o(
  48. static_cast<reactive_socket_recv_op_base*>(base));
  49. typedef buffer_sequence_adapter<boost::asio::mutable_buffer,
  50. MutableBufferSequence> bufs_type;
  51. status result;
  52. if (bufs_type::is_single_buffer)
  53. {
  54. result = socket_ops::non_blocking_recv1(o->socket_,
  55. bufs_type::first(o->buffers_).data(),
  56. bufs_type::first(o->buffers_).size(), o->flags_,
  57. (o->state_ & socket_ops::stream_oriented) != 0,
  58. o->ec_, o->bytes_transferred_) ? done : not_done;
  59. }
  60. else
  61. {
  62. bufs_type bufs(o->buffers_);
  63. result = socket_ops::non_blocking_recv(o->socket_,
  64. bufs.buffers(), bufs.count(), o->flags_,
  65. (o->state_ & socket_ops::stream_oriented) != 0,
  66. o->ec_, o->bytes_transferred_) ? done : not_done;
  67. }
  68. if (result == done)
  69. if ((o->state_ & socket_ops::stream_oriented) != 0)
  70. if (o->bytes_transferred_ == 0)
  71. result = done_and_exhausted;
  72. BOOST_ASIO_HANDLER_REACTOR_OPERATION((*o, "non_blocking_recv",
  73. o->ec_, o->bytes_transferred_));
  74. return result;
  75. }
  76. private:
  77. socket_type socket_;
  78. socket_ops::state_type state_;
  79. MutableBufferSequence buffers_;
  80. socket_base::message_flags flags_;
  81. };
  82. template <typename MutableBufferSequence, typename Handler, typename IoExecutor>
  83. class reactive_socket_recv_op :
  84. public reactive_socket_recv_op_base<MutableBufferSequence>
  85. {
  86. public:
  87. typedef Handler handler_type;
  88. typedef IoExecutor io_executor_type;
  89. BOOST_ASIO_DEFINE_HANDLER_PTR(reactive_socket_recv_op);
  90. reactive_socket_recv_op(const boost::system::error_code& success_ec,
  91. socket_type socket, socket_ops::state_type state,
  92. const MutableBufferSequence& buffers, socket_base::message_flags flags,
  93. Handler& handler, const IoExecutor& io_ex)
  94. : reactive_socket_recv_op_base<MutableBufferSequence>(success_ec, socket,
  95. state, buffers, flags, &reactive_socket_recv_op::do_complete),
  96. handler_(static_cast<Handler&&>(handler)),
  97. work_(handler_, io_ex)
  98. {
  99. }
  100. static void do_complete(void* owner, operation* base,
  101. const boost::system::error_code& /*ec*/,
  102. std::size_t /*bytes_transferred*/)
  103. {
  104. // Take ownership of the handler object.
  105. BOOST_ASIO_ASSUME(base != 0);
  106. reactive_socket_recv_op* o(static_cast<reactive_socket_recv_op*>(base));
  107. ptr p = { boost::asio::detail::addressof(o->handler_), o, o };
  108. BOOST_ASIO_HANDLER_COMPLETION((*o));
  109. // Take ownership of the operation's outstanding work.
  110. handler_work<Handler, IoExecutor> w(
  111. static_cast<handler_work<Handler, IoExecutor>&&>(
  112. o->work_));
  113. BOOST_ASIO_ERROR_LOCATION(o->ec_);
  114. // Make a copy of the handler so that the memory can be deallocated before
  115. // the upcall is made. Even if we're not about to make an upcall, a
  116. // sub-object of the handler may be the true owner of the memory associated
  117. // with the handler. Consequently, a local copy of the handler is required
  118. // to ensure that any owning sub-object remains valid until after we have
  119. // deallocated the memory here.
  120. detail::binder2<Handler, boost::system::error_code, std::size_t>
  121. handler(o->handler_, o->ec_, o->bytes_transferred_);
  122. p.h = boost::asio::detail::addressof(handler.handler_);
  123. p.reset();
  124. // Make the upcall if required.
  125. if (owner)
  126. {
  127. fenced_block b(fenced_block::half);
  128. BOOST_ASIO_HANDLER_INVOCATION_BEGIN((handler.arg1_, handler.arg2_));
  129. w.complete(handler, handler.handler_);
  130. BOOST_ASIO_HANDLER_INVOCATION_END;
  131. }
  132. }
  133. static void do_immediate(operation* base, bool, const void* io_ex)
  134. {
  135. // Take ownership of the handler object.
  136. BOOST_ASIO_ASSUME(base != 0);
  137. reactive_socket_recv_op* o(static_cast<reactive_socket_recv_op*>(base));
  138. ptr p = { boost::asio::detail::addressof(o->handler_), o, o };
  139. BOOST_ASIO_HANDLER_COMPLETION((*o));
  140. // Take ownership of the operation's outstanding work.
  141. immediate_handler_work<Handler, IoExecutor> w(
  142. static_cast<handler_work<Handler, IoExecutor>&&>(
  143. o->work_));
  144. BOOST_ASIO_ERROR_LOCATION(o->ec_);
  145. // Make a copy of the handler so that the memory can be deallocated before
  146. // the upcall is made. Even if we're not about to make an upcall, a
  147. // sub-object of the handler may be the true owner of the memory associated
  148. // with the handler. Consequently, a local copy of the handler is required
  149. // to ensure that any owning sub-object remains valid until after we have
  150. // deallocated the memory here.
  151. detail::binder2<Handler, boost::system::error_code, std::size_t>
  152. handler(o->handler_, o->ec_, o->bytes_transferred_);
  153. p.h = boost::asio::detail::addressof(handler.handler_);
  154. p.reset();
  155. BOOST_ASIO_HANDLER_INVOCATION_BEGIN((handler.arg1_, handler.arg2_));
  156. w.complete(handler, handler.handler_, io_ex);
  157. BOOST_ASIO_HANDLER_INVOCATION_END;
  158. }
  159. private:
  160. Handler handler_;
  161. handler_work<Handler, IoExecutor> work_;
  162. };
  163. } // namespace detail
  164. } // namespace asio
  165. } // namespace boost
  166. #include <boost/asio/detail/pop_options.hpp>
  167. #endif // BOOST_ASIO_DETAIL_REACTIVE_SOCKET_RECV_OP_HPP