io_uring_descriptor_write_at_op.hpp 5.9 KB

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