io_uring_descriptor_read_op.hpp 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. //
  2. // detail/io_uring_descriptor_read_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_READ_OP_HPP
  11. #define ASIO_DETAIL_IO_URING_DESCRIPTOR_READ_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 MutableBufferSequence>
  28. class io_uring_descriptor_read_op_base : public io_uring_operation
  29. {
  30. public:
  31. io_uring_descriptor_read_op_base(const asio::error_code& success_ec,
  32. int descriptor, descriptor_ops::state_type state,
  33. const MutableBufferSequence& buffers, func_type complete_func)
  34. : io_uring_operation(success_ec,
  35. &io_uring_descriptor_read_op_base::do_prepare,
  36. &io_uring_descriptor_read_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_read_op_base* o(
  47. static_cast<io_uring_descriptor_read_op_base*>(base));
  48. if ((o->state_ & descriptor_ops::internal_non_blocking) != 0)
  49. {
  50. ::io_uring_prep_poll_add(sqe, o->descriptor_, POLLIN);
  51. }
  52. else if (o->bufs_.is_single_buffer && o->bufs_.is_registered_buffer)
  53. {
  54. ::io_uring_prep_read_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_readv(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_read_op_base* o(
  68. static_cast<io_uring_descriptor_read_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_read1(
  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_read(
  81. o->descriptor_, o->bufs_.buffers(), o->bufs_.count(),
  82. o->ec_, o->bytes_transferred_);
  83. }
  84. }
  85. else if (after_completion)
  86. {
  87. if (!o->ec_ && o->bytes_transferred_ == 0)
  88. o->ec_ = asio::error::eof;
  89. }
  90. if (o->ec_ && o->ec_ == asio::error::would_block)
  91. {
  92. o->state_ |= descriptor_ops::internal_non_blocking;
  93. return false;
  94. }
  95. return after_completion;
  96. }
  97. private:
  98. int descriptor_;
  99. descriptor_ops::state_type state_;
  100. MutableBufferSequence buffers_;
  101. buffer_sequence_adapter<asio::mutable_buffer,
  102. MutableBufferSequence> bufs_;
  103. };
  104. template <typename MutableBufferSequence, typename Handler, typename IoExecutor>
  105. class io_uring_descriptor_read_op
  106. : public io_uring_descriptor_read_op_base<MutableBufferSequence>
  107. {
  108. public:
  109. ASIO_DEFINE_HANDLER_PTR(io_uring_descriptor_read_op);
  110. io_uring_descriptor_read_op(const asio::error_code& success_ec,
  111. int descriptor, descriptor_ops::state_type state,
  112. const MutableBufferSequence& buffers,
  113. Handler& handler, const IoExecutor& io_ex)
  114. : io_uring_descriptor_read_op_base<MutableBufferSequence>(success_ec,
  115. descriptor, state, buffers, &io_uring_descriptor_read_op::do_complete),
  116. handler_(static_cast<Handler&&>(handler)),
  117. work_(handler_, io_ex)
  118. {
  119. }
  120. static void do_complete(void* owner, operation* base,
  121. const asio::error_code& /*ec*/,
  122. std::size_t /*bytes_transferred*/)
  123. {
  124. // Take ownership of the handler object.
  125. ASIO_ASSUME(base != 0);
  126. io_uring_descriptor_read_op* o
  127. (static_cast<io_uring_descriptor_read_op*>(base));
  128. ptr p = { asio::detail::addressof(o->handler_), o, o };
  129. ASIO_HANDLER_COMPLETION((*o));
  130. // Take ownership of the operation's outstanding work.
  131. handler_work<Handler, IoExecutor> w(
  132. static_cast<handler_work<Handler, IoExecutor>&&>(
  133. o->work_));
  134. ASIO_ERROR_LOCATION(o->ec_);
  135. // Make a copy of the handler so that the memory can be deallocated before
  136. // the upcall is made. Even if we're not about to make an upcall, a
  137. // sub-object of the handler may be the true owner of the memory associated
  138. // with the handler. Consequently, a local copy of the handler is required
  139. // to ensure that any owning sub-object remains valid until after we have
  140. // deallocated the memory here.
  141. detail::binder2<Handler, asio::error_code, std::size_t>
  142. handler(o->handler_, o->ec_, o->bytes_transferred_);
  143. p.h = asio::detail::addressof(handler.handler_);
  144. p.reset();
  145. // Make the upcall if required.
  146. if (owner)
  147. {
  148. fenced_block b(fenced_block::half);
  149. ASIO_HANDLER_INVOCATION_BEGIN((handler.arg1_, handler.arg2_));
  150. w.complete(handler, handler.handler_);
  151. ASIO_HANDLER_INVOCATION_END;
  152. }
  153. }
  154. private:
  155. Handler handler_;
  156. handler_work<Handler, IoExecutor> work_;
  157. };
  158. } // namespace detail
  159. } // namespace asio
  160. #include "asio/detail/pop_options.hpp"
  161. #endif // defined(ASIO_HAS_IO_URING)
  162. #endif // ASIO_DETAIL_IO_URING_DESCRIPTOR_READ_OP_HPP