resolve_query_op.hpp 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. //
  2. // detail/resolve_query_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_RESOLVE_QUERY_OP_HPP
  11. #define ASIO_DETAIL_RESOLVE_QUERY_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/memory.hpp"
  21. #include "asio/detail/resolve_op.hpp"
  22. #include "asio/detail/socket_ops.hpp"
  23. #include "asio/error.hpp"
  24. #include "asio/ip/basic_resolver_query.hpp"
  25. #include "asio/ip/basic_resolver_results.hpp"
  26. #if defined(ASIO_HAS_IOCP)
  27. # include "asio/detail/win_iocp_io_context.hpp"
  28. #else // defined(ASIO_HAS_IOCP)
  29. # include "asio/detail/scheduler.hpp"
  30. #endif // defined(ASIO_HAS_IOCP)
  31. #include "asio/detail/push_options.hpp"
  32. namespace asio {
  33. namespace detail {
  34. template <typename Protocol, typename Handler, typename IoExecutor>
  35. class resolve_query_op : public resolve_op
  36. {
  37. public:
  38. ASIO_DEFINE_HANDLER_PTR(resolve_query_op);
  39. typedef asio::ip::basic_resolver_query<Protocol> query_type;
  40. typedef asio::ip::basic_resolver_results<Protocol> results_type;
  41. #if defined(ASIO_HAS_IOCP)
  42. typedef class win_iocp_io_context scheduler_impl;
  43. #else
  44. typedef class scheduler scheduler_impl;
  45. #endif
  46. resolve_query_op(socket_ops::weak_cancel_token_type cancel_token,
  47. const query_type& qry, scheduler_impl& sched,
  48. Handler& handler, const IoExecutor& io_ex)
  49. : resolve_op(&resolve_query_op::do_complete),
  50. cancel_token_(cancel_token),
  51. query_(qry),
  52. scheduler_(sched),
  53. handler_(static_cast<Handler&&>(handler)),
  54. work_(handler_, io_ex),
  55. addrinfo_(0)
  56. {
  57. }
  58. ~resolve_query_op()
  59. {
  60. if (addrinfo_)
  61. socket_ops::freeaddrinfo(addrinfo_);
  62. }
  63. static void do_complete(void* owner, operation* base,
  64. const asio::error_code& /*ec*/,
  65. std::size_t /*bytes_transferred*/)
  66. {
  67. // Take ownership of the operation object.
  68. ASIO_ASSUME(base != 0);
  69. resolve_query_op* o(static_cast<resolve_query_op*>(base));
  70. ptr p = { asio::detail::addressof(o->handler_), o, o };
  71. if (owner && owner != &o->scheduler_)
  72. {
  73. // The operation is being run on the worker io_context. Time to perform
  74. // the resolver operation.
  75. // Perform the blocking host resolution operation.
  76. socket_ops::background_getaddrinfo(o->cancel_token_,
  77. o->query_.host_name().c_str(), o->query_.service_name().c_str(),
  78. o->query_.hints(), &o->addrinfo_, o->ec_);
  79. // Pass operation back to main io_context for completion.
  80. o->scheduler_.post_deferred_completion(o);
  81. p.v = p.p = 0;
  82. }
  83. else
  84. {
  85. // The operation has been returned to the main io_context. The completion
  86. // handler is ready to be delivered.
  87. ASIO_HANDLER_COMPLETION((*o));
  88. // Take ownership of the operation's outstanding work.
  89. handler_work<Handler, IoExecutor> w(
  90. static_cast<handler_work<Handler, IoExecutor>&&>(
  91. o->work_));
  92. // Make a copy of the handler so that the memory can be deallocated
  93. // before the upcall is made. Even if we're not about to make an upcall,
  94. // a sub-object of the handler may be the true owner of the memory
  95. // associated with the handler. Consequently, a local copy of the handler
  96. // is required to ensure that any owning sub-object remains valid until
  97. // after we have deallocated the memory here.
  98. detail::binder2<Handler, asio::error_code, results_type>
  99. handler(o->handler_, o->ec_, results_type());
  100. p.h = asio::detail::addressof(handler.handler_);
  101. if (o->addrinfo_)
  102. {
  103. handler.arg2_ = results_type::create(o->addrinfo_,
  104. o->query_.host_name(), o->query_.service_name());
  105. }
  106. p.reset();
  107. if (owner)
  108. {
  109. fenced_block b(fenced_block::half);
  110. ASIO_HANDLER_INVOCATION_BEGIN((handler.arg1_, "..."));
  111. w.complete(handler, handler.handler_);
  112. ASIO_HANDLER_INVOCATION_END;
  113. }
  114. }
  115. }
  116. private:
  117. socket_ops::weak_cancel_token_type cancel_token_;
  118. query_type query_;
  119. scheduler_impl& scheduler_;
  120. Handler handler_;
  121. handler_work<Handler, IoExecutor> work_;
  122. asio::detail::addrinfo_type* addrinfo_;
  123. };
  124. } // namespace detail
  125. } // namespace asio
  126. #include "asio/detail/pop_options.hpp"
  127. #endif // ASIO_DETAIL_RESOLVE_QUERY_OP_HPP