io_uring_null_buffers_op.hpp 3.5 KB

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