io_uring_descriptor_write_op.hpp 5.7 KB

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