resolve_op.hpp 3.9 KB

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