reactive_socket_recvmsg_op.hpp 6.1 KB

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