Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

134 lines
4.1KB

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