io_uring_descriptor_write_op.hpp 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. //
  2. // detail/io_uring_descriptor_write_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_IO_URING_DESCRIPTOR_WRITE_OP_HPP
  11. #define BOOST_ASIO_DETAIL_IO_URING_DESCRIPTOR_WRITE_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. #if defined(BOOST_ASIO_HAS_IO_URING)
  17. #include <boost/asio/detail/bind_handler.hpp>
  18. #include <boost/asio/detail/buffer_sequence_adapter.hpp>
  19. #include <boost/asio/detail/descriptor_ops.hpp>
  20. #include <boost/asio/detail/fenced_block.hpp>
  21. #include <boost/asio/detail/handler_work.hpp>
  22. #include <boost/asio/detail/io_uring_operation.hpp>
  23. #include <boost/asio/detail/memory.hpp>
  24. #include <boost/asio/detail/push_options.hpp>
  25. namespace boost {
  26. namespace asio {
  27. namespace detail {
  28. template <typename ConstBufferSequence>
  29. class io_uring_descriptor_write_op_base : public io_uring_operation
  30. {
  31. public:
  32. io_uring_descriptor_write_op_base(const boost::system::error_code& success_ec,
  33. int descriptor, descriptor_ops::state_type state,
  34. const ConstBufferSequence& buffers, func_type complete_func)
  35. : io_uring_operation(success_ec,
  36. &io_uring_descriptor_write_op_base::do_prepare,
  37. &io_uring_descriptor_write_op_base::do_perform, complete_func),
  38. descriptor_(descriptor),
  39. state_(state),
  40. buffers_(buffers),
  41. bufs_(buffers)
  42. {
  43. }
  44. static void do_prepare(io_uring_operation* base, ::io_uring_sqe* sqe)
  45. {
  46. BOOST_ASIO_ASSUME(base != 0);
  47. io_uring_descriptor_write_op_base* o(
  48. static_cast<io_uring_descriptor_write_op_base*>(base));
  49. if ((o->state_ & descriptor_ops::internal_non_blocking) != 0)
  50. {
  51. ::io_uring_prep_poll_add(sqe, o->descriptor_, POLLOUT);
  52. }
  53. else if (o->bufs_.is_single_buffer && o->bufs_.is_registered_buffer)
  54. {
  55. ::io_uring_prep_write_fixed(sqe, o->descriptor_,
  56. o->bufs_.buffers()->iov_base, o->bufs_.buffers()->iov_len,
  57. 0, o->bufs_.registered_id().native_handle());
  58. }
  59. else
  60. {
  61. ::io_uring_prep_writev(sqe, o->descriptor_,
  62. o->bufs_.buffers(), o->bufs_.count(), -1);
  63. }
  64. }
  65. static bool do_perform(io_uring_operation* base, bool after_completion)
  66. {
  67. BOOST_ASIO_ASSUME(base != 0);
  68. io_uring_descriptor_write_op_base* o(
  69. static_cast<io_uring_descriptor_write_op_base*>(base));
  70. if ((o->state_ & descriptor_ops::internal_non_blocking) != 0)
  71. {
  72. if (o->bufs_.is_single_buffer)
  73. {
  74. return descriptor_ops::non_blocking_write1(
  75. o->descriptor_, o->bufs_.first(o->buffers_).data(),
  76. o->bufs_.first(o->buffers_).size(), o->ec_,
  77. o->bytes_transferred_);
  78. }
  79. else
  80. {
  81. return descriptor_ops::non_blocking_write(
  82. o->descriptor_, o->bufs_.buffers(), o->bufs_.count(),
  83. o->ec_, o->bytes_transferred_);
  84. }
  85. }
  86. if (o->ec_ && o->ec_ == boost::asio::error::would_block)
  87. {
  88. o->state_ |= descriptor_ops::internal_non_blocking;
  89. return false;
  90. }
  91. return after_completion;
  92. }
  93. private:
  94. int descriptor_;
  95. descriptor_ops::state_type state_;
  96. ConstBufferSequence buffers_;
  97. buffer_sequence_adapter<boost::asio::const_buffer,
  98. ConstBufferSequence> bufs_;
  99. };
  100. template <typename ConstBufferSequence, typename Handler, typename IoExecutor>
  101. class io_uring_descriptor_write_op
  102. : public io_uring_descriptor_write_op_base<ConstBufferSequence>
  103. {
  104. public:
  105. BOOST_ASIO_DEFINE_HANDLER_PTR(io_uring_descriptor_write_op);
  106. io_uring_descriptor_write_op(const boost::system::error_code& success_ec,
  107. int descriptor, descriptor_ops::state_type state,
  108. const ConstBufferSequence& buffers, Handler& handler,
  109. const IoExecutor& io_ex)
  110. : io_uring_descriptor_write_op_base<ConstBufferSequence>(success_ec,
  111. descriptor, state, buffers, &io_uring_descriptor_write_op::do_complete),
  112. handler_(static_cast<Handler&&>(handler)),
  113. work_(handler_, io_ex)
  114. {
  115. }
  116. static void do_complete(void* owner, operation* base,
  117. const boost::system::error_code& /*ec*/,
  118. std::size_t /*bytes_transferred*/)
  119. {
  120. // Take ownership of the handler object.
  121. BOOST_ASIO_ASSUME(base != 0);
  122. io_uring_descriptor_write_op* o
  123. (static_cast<io_uring_descriptor_write_op*>(base));
  124. ptr p = { boost::asio::detail::addressof(o->handler_), o, o };
  125. BOOST_ASIO_HANDLER_COMPLETION((*o));
  126. // Take ownership of the operation's outstanding work.
  127. handler_work<Handler, IoExecutor> w(
  128. static_cast<handler_work<Handler, IoExecutor>&&>(
  129. o->work_));
  130. BOOST_ASIO_ERROR_LOCATION(o->ec_);
  131. // Make a copy of the handler so that the memory can be deallocated before
  132. // the upcall is made. Even if we're not about to make an upcall, a
  133. // sub-object of the handler may be the true owner of the memory associated
  134. // with the handler. Consequently, a local copy of the handler is required
  135. // to ensure that any owning sub-object remains valid until after we have
  136. // deallocated the memory here.
  137. detail::binder2<Handler, boost::system::error_code, std::size_t>
  138. handler(o->handler_, o->ec_, o->bytes_transferred_);
  139. p.h = boost::asio::detail::addressof(handler.handler_);
  140. p.reset();
  141. // Make the upcall if required.
  142. if (owner)
  143. {
  144. fenced_block b(fenced_block::half);
  145. BOOST_ASIO_HANDLER_INVOCATION_BEGIN((handler.arg1_, handler.arg2_));
  146. w.complete(handler, handler.handler_);
  147. BOOST_ASIO_HANDLER_INVOCATION_END;
  148. }
  149. }
  150. private:
  151. Handler handler_;
  152. handler_work<Handler, IoExecutor> work_;
  153. };
  154. } // namespace detail
  155. } // namespace asio
  156. } // namespace boost
  157. #include <boost/asio/detail/pop_options.hpp>
  158. #endif // defined(BOOST_ASIO_HAS_IO_URING)
  159. #endif // BOOST_ASIO_DETAIL_IO_URING_DESCRIPTOR_WRITE_OP_HPP