io_uring_wait_op.hpp 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. //
  2. // detail/io_uring_wait_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_WAIT_OP_HPP
  11. #define BOOST_ASIO_DETAIL_IO_URING_WAIT_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. #include <boost/asio/detail/bind_handler.hpp>
  17. #include <boost/asio/detail/fenced_block.hpp>
  18. #include <boost/asio/detail/handler_alloc_helpers.hpp>
  19. #include <boost/asio/detail/handler_work.hpp>
  20. #include <boost/asio/detail/io_uring_operation.hpp>
  21. #include <boost/asio/detail/memory.hpp>
  22. #include <boost/asio/detail/push_options.hpp>
  23. namespace boost {
  24. namespace asio {
  25. namespace detail {
  26. template <typename Handler, typename IoExecutor>
  27. class io_uring_wait_op : public io_uring_operation
  28. {
  29. public:
  30. BOOST_ASIO_DEFINE_HANDLER_PTR(io_uring_wait_op);
  31. io_uring_wait_op(const boost::system::error_code& success_ec, int descriptor,
  32. int poll_flags, Handler& handler, const IoExecutor& io_ex)
  33. : io_uring_operation(success_ec, &io_uring_wait_op::do_prepare,
  34. &io_uring_wait_op::do_perform, &io_uring_wait_op::do_complete),
  35. handler_(static_cast<Handler&&>(handler)),
  36. work_(handler_, io_ex),
  37. descriptor_(descriptor),
  38. poll_flags_(poll_flags)
  39. {
  40. }
  41. static void do_prepare(io_uring_operation* base, ::io_uring_sqe* sqe)
  42. {
  43. BOOST_ASIO_ASSUME(base != 0);
  44. io_uring_wait_op* o(static_cast<io_uring_wait_op*>(base));
  45. ::io_uring_prep_poll_add(sqe, o->descriptor_, o->poll_flags_);
  46. }
  47. static bool do_perform(io_uring_operation*, bool after_completion)
  48. {
  49. return after_completion;
  50. }
  51. static void do_complete(void* owner, operation* base,
  52. const boost::system::error_code& /*ec*/,
  53. std::size_t /*bytes_transferred*/)
  54. {
  55. // Take ownership of the handler object.
  56. BOOST_ASIO_ASSUME(base != 0);
  57. io_uring_wait_op* o(static_cast<io_uring_wait_op*>(base));
  58. ptr p = { boost::asio::detail::addressof(o->handler_), o, o };
  59. BOOST_ASIO_HANDLER_COMPLETION((*o));
  60. // Take ownership of the operation's outstanding work.
  61. handler_work<Handler, IoExecutor> w(
  62. static_cast<handler_work<Handler, IoExecutor>&&>(
  63. o->work_));
  64. BOOST_ASIO_ERROR_LOCATION(o->ec_);
  65. // Make a copy of the handler so that the memory can be deallocated before
  66. // the upcall is made. Even if we're not about to make an upcall, a
  67. // sub-object of the handler may be the true owner of the memory associated
  68. // with the handler. Consequently, a local copy of the handler is required
  69. // to ensure that any owning sub-object remains valid until after we have
  70. // deallocated the memory here.
  71. detail::binder1<Handler, boost::system::error_code>
  72. handler(o->handler_, o->ec_);
  73. p.h = boost::asio::detail::addressof(handler.handler_);
  74. p.reset();
  75. // Make the upcall if required.
  76. if (owner)
  77. {
  78. fenced_block b(fenced_block::half);
  79. BOOST_ASIO_HANDLER_INVOCATION_BEGIN((handler.arg1_, handler.arg2_));
  80. w.complete(handler, handler.handler_);
  81. BOOST_ASIO_HANDLER_INVOCATION_END;
  82. }
  83. }
  84. private:
  85. Handler handler_;
  86. handler_work<Handler, IoExecutor> work_;
  87. int descriptor_;
  88. int poll_flags_;
  89. };
  90. } // namespace detail
  91. } // namespace asio
  92. } // namespace boost
  93. #include <boost/asio/detail/pop_options.hpp>
  94. #endif // BOOST_ASIO_DETAIL_IO_URING_WAIT_OP_HPP