11 #ifndef ASIO_DETAIL_RESOLVER_ENDPOINT_OP_HPP 12 #define ASIO_DETAIL_RESOLVER_ENDPOINT_OP_HPP 14 #if defined(_MSC_VER) && (_MSC_VER >= 1200) 16 #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) 18 #include "asio/detail/config.hpp" 19 #include "asio/detail/bind_handler.hpp" 20 #include "asio/detail/fenced_block.hpp" 21 #include "asio/detail/handler_alloc_helpers.hpp" 22 #include "asio/detail/handler_invoke_helpers.hpp" 23 #include "asio/detail/handler_work.hpp" 24 #include "asio/detail/memory.hpp" 25 #include "asio/detail/resolve_op.hpp" 26 #include "asio/detail/socket_ops.hpp" 27 #include "asio/error.hpp" 28 #include "asio/ip/basic_resolver_results.hpp" 30 #if defined(ASIO_HAS_IOCP) 31 # include "asio/detail/win_iocp_io_context.hpp" 32 #else // defined(ASIO_HAS_IOCP) 33 # include "asio/detail/scheduler.hpp" 34 #endif // defined(ASIO_HAS_IOCP) 36 #include "asio/detail/push_options.hpp" 41 template <
typename Protocol,
typename Handler,
typename IoExecutor>
47 typedef typename Protocol::endpoint endpoint_type;
50 #if defined(ASIO_HAS_IOCP) 51 typedef class win_iocp_io_context scheduler_impl;
57 const endpoint_type& endpoint, scheduler_impl& sched,
58 Handler& handler,
const IoExecutor& io_ex)
59 :
resolve_op(&resolve_endpoint_op::do_complete),
60 cancel_token_(cancel_token),
63 handler_(ASIO_MOVE_CAST(Handler)(handler)),
64 work_(handler_, io_ex)
68 static void do_complete(
void* owner, operation* base,
73 resolve_endpoint_op* o(static_cast<resolve_endpoint_op*>(base));
74 ptr p = { asio::detail::addressof(o->handler_), o, o };
76 if (owner && owner != &o->scheduler_)
82 char host_name[NI_MAXHOST];
83 char service_name[NI_MAXSERV];
84 socket_ops::background_getnameinfo(o->cancel_token_, o->endpoint_.data(),
85 o->endpoint_.size(), host_name, NI_MAXHOST, service_name, NI_MAXSERV,
86 o->endpoint_.protocol().type(), o->ec_);
87 o->results_ = results_type::create(o->endpoint_, host_name, service_name);
90 o->scheduler_.post_deferred_completion(o);
98 ASIO_HANDLER_COMPLETION((*o));
112 handler(o->handler_, o->ec_, o->results_);
113 p.h = asio::detail::addressof(handler.handler_);
119 ASIO_HANDLER_INVOCATION_BEGIN((handler.arg1_,
"..."));
120 w.complete(handler, handler.handler_);
121 ASIO_HANDLER_INVOCATION_END;
127 socket_ops::weak_cancel_token_type cancel_token_;
128 endpoint_type endpoint_;
129 scheduler_impl& scheduler_;
132 results_type results_;
138 #include "asio/detail/pop_options.hpp" 140 #endif // ASIO_DETAIL_RESOLVER_ENDPOINT_OP_HPP Definition: resolve_op.hpp:27
Definition: resolve_endpoint_op.hpp:42
Definition: null_fenced_block.hpp:25
Class to represent an error code value.
Definition: error_code.hpp:80
Definition: any_io_executor.hpp:28
Definition: bind_handler.hpp:144
Definition: scheduler.hpp:38