resolve_op.hpp 4.3 KB

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