io_uring_socket_connect_op.hpp 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. //
  2. // detail/io_uring_socket_connect_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_SOCKET_CONNECT_OP_HPP
  11. #define BOOST_ASIO_DETAIL_IO_URING_SOCKET_CONNECT_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. #if defined(BOOST_ASIO_HAS_IO_URING)
  17. #include <boost/asio/detail/bind_handler.hpp>
  18. #include <boost/asio/detail/fenced_block.hpp>
  19. #include <boost/asio/detail/handler_alloc_helpers.hpp>
  20. #include <boost/asio/detail/handler_work.hpp>
  21. #include <boost/asio/detail/io_uring_operation.hpp>
  22. #include <boost/asio/detail/memory.hpp>
  23. #include <boost/asio/detail/socket_ops.hpp>
  24. #include <boost/asio/detail/push_options.hpp>
  25. namespace boost {
  26. namespace asio {
  27. namespace detail {
  28. template <typename Protocol>
  29. class io_uring_socket_connect_op_base : public io_uring_operation
  30. {
  31. public:
  32. io_uring_socket_connect_op_base(const boost::system::error_code& success_ec,
  33. socket_type socket, const typename Protocol::endpoint& endpoint,
  34. func_type complete_func)
  35. : io_uring_operation(success_ec,
  36. &io_uring_socket_connect_op_base::do_prepare,
  37. &io_uring_socket_connect_op_base::do_perform, complete_func),
  38. socket_(socket),
  39. endpoint_(endpoint)
  40. {
  41. }
  42. static void do_prepare(io_uring_operation* base, ::io_uring_sqe* sqe)
  43. {
  44. BOOST_ASIO_ASSUME(base != 0);
  45. io_uring_socket_connect_op_base* o(
  46. static_cast<io_uring_socket_connect_op_base*>(base));
  47. ::io_uring_prep_connect(sqe, o->socket_,
  48. static_cast<sockaddr*>(o->endpoint_.data()),
  49. static_cast<socklen_t>(o->endpoint_.size()));
  50. }
  51. static bool do_perform(io_uring_operation*, bool after_completion)
  52. {
  53. return after_completion;
  54. }
  55. private:
  56. socket_type socket_;
  57. typename Protocol::endpoint endpoint_;
  58. };
  59. template <typename Protocol, typename Handler, typename IoExecutor>
  60. class io_uring_socket_connect_op :
  61. public io_uring_socket_connect_op_base<Protocol>
  62. {
  63. public:
  64. BOOST_ASIO_DEFINE_HANDLER_PTR(io_uring_socket_connect_op);
  65. io_uring_socket_connect_op(const boost::system::error_code& success_ec,
  66. socket_type socket, const typename Protocol::endpoint& endpoint,
  67. Handler& handler, const IoExecutor& io_ex)
  68. : io_uring_socket_connect_op_base<Protocol>(success_ec, socket,
  69. endpoint, &io_uring_socket_connect_op::do_complete),
  70. handler_(static_cast<Handler&&>(handler)),
  71. work_(handler_, io_ex)
  72. {
  73. }
  74. static void do_complete(void* owner, operation* base,
  75. const boost::system::error_code& /*ec*/,
  76. std::size_t /*bytes_transferred*/)
  77. {
  78. // Take ownership of the handler object.
  79. BOOST_ASIO_ASSUME(base != 0);
  80. io_uring_socket_connect_op* o
  81. (static_cast<io_uring_socket_connect_op*>(base));
  82. ptr p = { boost::asio::detail::addressof(o->handler_), o, o };
  83. BOOST_ASIO_HANDLER_COMPLETION((*o));
  84. // Take ownership of the operation's outstanding work.
  85. handler_work<Handler, IoExecutor> w(
  86. static_cast<handler_work<Handler, IoExecutor>&&>(
  87. o->work_));
  88. BOOST_ASIO_ERROR_LOCATION(o->ec_);
  89. // Make a copy of the handler so that the memory can be deallocated before
  90. // the upcall is made. Even if we're not about to make an upcall, a
  91. // sub-object of the handler may be the true owner of the memory associated
  92. // with the handler. Consequently, a local copy of the handler is required
  93. // to ensure that any owning sub-object remains valid until after we have
  94. // deallocated the memory here.
  95. detail::binder1<Handler, boost::system::error_code>
  96. handler(o->handler_, o->ec_);
  97. p.h = boost::asio::detail::addressof(handler.handler_);
  98. p.reset();
  99. // Make the upcall if required.
  100. if (owner)
  101. {
  102. fenced_block b(fenced_block::half);
  103. BOOST_ASIO_HANDLER_INVOCATION_BEGIN((handler.arg1_));
  104. w.complete(handler, handler.handler_);
  105. BOOST_ASIO_HANDLER_INVOCATION_END;
  106. }
  107. }
  108. private:
  109. Handler handler_;
  110. handler_work<Handler, IoExecutor> work_;
  111. };
  112. } // namespace detail
  113. } // namespace asio
  114. } // namespace boost
  115. #include <boost/asio/detail/pop_options.hpp>
  116. #endif // defined(BOOST_ASIO_HAS_IO_URING)
  117. #endif // BOOST_ASIO_DETAIL_IO_URING_SOCKET_CONNECT_OP_HPP