96.25% Lines (77/80) 100.00% Functions (25/25)
TLA Baseline Branch
Line Hits Code Line Hits Code
1   // 1   //
2   // Copyright (c) 2025 Vinnie Falco (vinnie.falco@gmail.com) 2   // Copyright (c) 2025 Vinnie Falco (vinnie.falco@gmail.com)
3   // Copyright (c) 2026 Steve Gerbino 3   // Copyright (c) 2026 Steve Gerbino
4   // Copyright (c) 2026 Michael Vandeberg 4   // Copyright (c) 2026 Michael Vandeberg
5   // 5   //
6   // Distributed under the Boost Software License, Version 1.0. (See accompanying 6   // Distributed under the Boost Software License, Version 1.0. (See accompanying
7   // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 7   // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
8   // 8   //
9   // Official repository: https://github.com/cppalliance/corosio 9   // Official repository: https://github.com/cppalliance/corosio
10   // 10   //
11   11  
12   #ifndef BOOST_COROSIO_RESOLVER_HPP 12   #ifndef BOOST_COROSIO_RESOLVER_HPP
13   #define BOOST_COROSIO_RESOLVER_HPP 13   #define BOOST_COROSIO_RESOLVER_HPP
14   14  
15   #include <boost/corosio/detail/config.hpp> 15   #include <boost/corosio/detail/config.hpp>
16   #include <boost/corosio/detail/op_base.hpp> 16   #include <boost/corosio/detail/op_base.hpp>
17   #include <boost/corosio/endpoint.hpp> 17   #include <boost/corosio/endpoint.hpp>
18   #include <boost/corosio/io/io_object.hpp> 18   #include <boost/corosio/io/io_object.hpp>
19   #include <boost/capy/io_result.hpp> 19   #include <boost/capy/io_result.hpp>
20   #include <boost/capy/ex/executor_ref.hpp> 20   #include <boost/capy/ex/executor_ref.hpp>
21   #include <boost/capy/ex/execution_context.hpp> 21   #include <boost/capy/ex/execution_context.hpp>
22   #include <boost/capy/ex/io_env.hpp> 22   #include <boost/capy/ex/io_env.hpp>
23   #include <boost/capy/concept/executor.hpp> 23   #include <boost/capy/concept/executor.hpp>
24   24  
25   #include <system_error> 25   #include <system_error>
26   26  
27   #include <cassert> 27   #include <cassert>
28   #include <concepts> 28   #include <concepts>
29   #include <coroutine> 29   #include <coroutine>
30   #include <stop_token> 30   #include <stop_token>
31   #include <string> 31   #include <string>
32   #include <string_view> 32   #include <string_view>
33   #include <vector> 33   #include <vector>
34   #include <type_traits> 34   #include <type_traits>
35   35  
36   namespace boost::corosio { 36   namespace boost::corosio {
37   37  
38   /** Bitmask flags for resolver queries. 38   /** Bitmask flags for resolver queries.
39   39  
40 - These flags correspond to the hints parameter of `getaddrinfo`. 40 + These flags correspond to the hints parameter of getaddrinfo.
41   */ 41   */
42   enum class resolve_flags : unsigned int 42   enum class resolve_flags : unsigned int
43   { 43   {
44   /// No flags. 44   /// No flags.
45   none = 0, 45   none = 0,
46   46  
47   /// Indicate that returned endpoint is intended for use as a locally 47   /// Indicate that returned endpoint is intended for use as a locally
48   /// bound socket endpoint. 48   /// bound socket endpoint.
49   passive = 0x01, 49   passive = 0x01,
50   50  
51   /// Host name should be treated as a numeric string defining an IPv4 51   /// Host name should be treated as a numeric string defining an IPv4
52   /// or IPv6 address and no name resolution should be attempted. 52   /// or IPv6 address and no name resolution should be attempted.
53   numeric_host = 0x04, 53   numeric_host = 0x04,
54   54  
55   /// Service name should be treated as a numeric string defining a port 55   /// Service name should be treated as a numeric string defining a port
56   /// number and no name resolution should be attempted. 56   /// number and no name resolution should be attempted.
57   numeric_service = 0x08, 57   numeric_service = 0x08,
58   58  
59   /// Only return IPv4 addresses if a non-loopback IPv4 address is 59   /// Only return IPv4 addresses if a non-loopback IPv4 address is
60   /// configured for the system. Only return IPv6 addresses if a 60   /// configured for the system. Only return IPv6 addresses if a
61   /// non-loopback IPv6 address is configured for the system. 61   /// non-loopback IPv6 address is configured for the system.
62   address_configured = 0x20, 62   address_configured = 0x20,
63   63  
64   /// If the query protocol family is specified as IPv6, return 64   /// If the query protocol family is specified as IPv6, return
65   /// IPv4-mapped IPv6 addresses on finding no IPv6 addresses. 65   /// IPv4-mapped IPv6 addresses on finding no IPv6 addresses.
66   v4_mapped = 0x800, 66   v4_mapped = 0x800,
67   67  
68   /// If used with v4_mapped, return all matching IPv6 and IPv4 addresses. 68   /// If used with v4_mapped, return all matching IPv6 and IPv4 addresses.
69   all_matching = 0x100 69   all_matching = 0x100
70   }; 70   };
71   71  
72 - /** Combine two `resolve_flags`. */ 72 + /** Combine two resolve_flags. */
73   inline resolve_flags 73   inline resolve_flags
HITCBC 74   17 operator|(resolve_flags a, resolve_flags b) noexcept 74   17 operator|(resolve_flags a, resolve_flags b) noexcept
75   { 75   {
76   return static_cast<resolve_flags>( 76   return static_cast<resolve_flags>(
HITCBC 77   17 static_cast<unsigned int>(a) | static_cast<unsigned int>(b)); 77   17 static_cast<unsigned int>(a) | static_cast<unsigned int>(b));
78   } 78   }
79   79  
80 - /** Combine two `resolve_flags`. */ 80 + /** Combine two resolve_flags. */
81   inline resolve_flags& 81   inline resolve_flags&
HITCBC 82   1 operator|=(resolve_flags& a, resolve_flags b) noexcept 82   1 operator|=(resolve_flags& a, resolve_flags b) noexcept
83   { 83   {
HITCBC 84   1 a = a | b; 84   1 a = a | b;
HITCBC 85   1 return a; 85   1 return a;
86   } 86   }
87   87  
88 - /** Intersect two `resolve_flags`. */ 88 + /** Intersect two resolve_flags. */
89   inline resolve_flags 89   inline resolve_flags
HITCBC 90   205 operator&(resolve_flags a, resolve_flags b) noexcept 90   205 operator&(resolve_flags a, resolve_flags b) noexcept
91   { 91   {
92   return static_cast<resolve_flags>( 92   return static_cast<resolve_flags>(
HITCBC 93   205 static_cast<unsigned int>(a) & static_cast<unsigned int>(b)); 93   205 static_cast<unsigned int>(a) & static_cast<unsigned int>(b));
94   } 94   }
95   95  
96 - /** Intersect two `resolve_flags`. */ 96 + /** Intersect two resolve_flags. */
97   inline resolve_flags& 97   inline resolve_flags&
HITCBC 98   1 operator&=(resolve_flags& a, resolve_flags b) noexcept 98   1 operator&=(resolve_flags& a, resolve_flags b) noexcept
99   { 99   {
HITCBC 100   1 a = a & b; 100   1 a = a & b;
HITCBC 101   1 return a; 101   1 return a;
102   } 102   }
103   103  
104   /** Bitmask flags for reverse resolver queries. 104   /** Bitmask flags for reverse resolver queries.
105   105  
106 - These flags correspond to the flags parameter of `getnameinfo`. 106 + These flags correspond to the flags parameter of getnameinfo.
107   */ 107   */
108   enum class reverse_flags : unsigned int 108   enum class reverse_flags : unsigned int
109   { 109   {
110   /// No flags. 110   /// No flags.
111   none = 0, 111   none = 0,
112   112  
113   /// Return the numeric form of the hostname instead of its name. 113   /// Return the numeric form of the hostname instead of its name.
114   numeric_host = 0x01, 114   numeric_host = 0x01,
115   115  
116   /// Return the numeric form of the service name instead of its name. 116   /// Return the numeric form of the service name instead of its name.
117   numeric_service = 0x02, 117   numeric_service = 0x02,
118   118  
119   /// Return an error if the hostname cannot be resolved. 119   /// Return an error if the hostname cannot be resolved.
120   name_required = 0x04, 120   name_required = 0x04,
121   121  
122   /// Lookup for datagram (UDP) service instead of stream (TCP). 122   /// Lookup for datagram (UDP) service instead of stream (TCP).
123   datagram_service = 0x08 123   datagram_service = 0x08
124   }; 124   };
125   125  
126 - /** Combine two `reverse_flags`. */ 126 + /** Combine two reverse_flags. */
127   inline reverse_flags 127   inline reverse_flags
HITCBC 128   9 operator|(reverse_flags a, reverse_flags b) noexcept 128   9 operator|(reverse_flags a, reverse_flags b) noexcept
129   { 129   {
130   return static_cast<reverse_flags>( 130   return static_cast<reverse_flags>(
HITCBC 131   9 static_cast<unsigned int>(a) | static_cast<unsigned int>(b)); 131   9 static_cast<unsigned int>(a) | static_cast<unsigned int>(b));
132   } 132   }
133   133  
134 - /** Combine two `reverse_flags`. */ 134 + /** Combine two reverse_flags. */
135   inline reverse_flags& 135   inline reverse_flags&
HITCBC 136   1 operator|=(reverse_flags& a, reverse_flags b) noexcept 136   1 operator|=(reverse_flags& a, reverse_flags b) noexcept
137   { 137   {
HITCBC 138   1 a = a | b; 138   1 a = a | b;
HITCBC 139   1 return a; 139   1 return a;
140   } 140   }
141   141  
142 - /** Intersect two `reverse_flags`. */ 142 + /** Intersect two reverse_flags. */
143   inline reverse_flags 143   inline reverse_flags
HITCBC 144   75 operator&(reverse_flags a, reverse_flags b) noexcept 144   75 operator&(reverse_flags a, reverse_flags b) noexcept
145   { 145   {
146   return static_cast<reverse_flags>( 146   return static_cast<reverse_flags>(
HITCBC 147   75 static_cast<unsigned int>(a) & static_cast<unsigned int>(b)); 147   75 static_cast<unsigned int>(a) & static_cast<unsigned int>(b));
148   } 148   }
149   149  
150 - /** Intersect two `reverse_flags`. */ 150 + /** Intersect two reverse_flags. */
151   inline reverse_flags& 151   inline reverse_flags&
HITCBC 152   1 operator&=(reverse_flags& a, reverse_flags b) noexcept 152   1 operator&=(reverse_flags& a, reverse_flags b) noexcept
153   { 153   {
HITCBC 154   1 a = a & b; 154   1 a = a & b;
HITCBC 155   1 return a; 155   1 return a;
156   } 156   }
157   157  
158   /** The name of an endpoint. 158   /** The name of an endpoint.
159   159  
160   Reverse resolution translates an endpoint into its symbolic 160   Reverse resolution translates an endpoint into its symbolic
161   spelling: the host name and the service name. Both fields carry 161   spelling: the host name and the service name. Both fields carry
162   resolved data; the endpoint they name is the one the caller 162   resolved data; the endpoint they name is the one the caller
163   passed to `resolve`. 163   passed to `resolve`.
164   */ 164   */
165   struct endpoint_name 165   struct endpoint_name
166   { 166   {
167   /// The resolved host name. 167   /// The resolved host name.
168   std::string host_name; 168   std::string host_name;
169   169  
170   /// The resolved service name. 170   /// The resolved service name.
171   std::string service_name; 171   std::string service_name;
172   }; 172   };
173   173  
174 - /** Resolves host names and services to endpoints, from a coroutine. 174 + /** An asynchronous DNS resolver for coroutine I/O.
175   175  
176   This class provides asynchronous DNS resolution operations that return 176   This class provides asynchronous DNS resolution operations that return
177   awaitable types. Each operation participates in the affine awaitable 177   awaitable types. Each operation participates in the affine awaitable
178   protocol, ensuring coroutines resume on the correct executor. 178   protocol, ensuring coroutines resume on the correct executor.
179   179  
180   @par Thread Safety 180   @par Thread Safety
181   Distinct objects: Safe.@n 181   Distinct objects: Safe.@n
182   Shared objects: Unsafe. A resolver must not have concurrent resolve 182   Shared objects: Unsafe. A resolver must not have concurrent resolve
183   operations. 183   operations.
184   184  
185   @par Semantics 185   @par Semantics
186 - Wraps platform DNS resolution (`getaddrinfo`/`getnameinfo`). 186 + Wraps platform DNS resolution (getaddrinfo/getnameinfo).
187 - Operations dispatch to OS resolver APIs via the `io_context` 187 + Operations dispatch to OS resolver APIs via the io_context
188   thread pool. 188   thread pool.
189   189  
190   @par Example 190   @par Example
191   @par !example resolver 191   @par !example resolver
192   */ 192   */
193   class BOOST_COROSIO_DECL resolver : public io_object 193   class BOOST_COROSIO_DECL resolver : public io_object
194   { 194   {
195   struct resolve_awaitable 195   struct resolve_awaitable
196   : detail::value_op_base<resolve_awaitable, std::vector<endpoint>> 196   : detail::value_op_base<resolve_awaitable, std::vector<endpoint>>
197   { 197   {
198 - private: 198 + resolver& r_;
199 - friend resolver; 199 + std::string host_;
  200 + std::string service_;
  201 + resolve_flags flags_;
200   202  
HITCBC 201   29 resolve_awaitable( 203   29 resolve_awaitable(
202   resolver& r, 204   resolver& r,
203   std::string_view host, 205   std::string_view host,
204   std::string_view service, 206   std::string_view service,
205   resolve_flags flags) noexcept 207   resolve_flags flags) noexcept
HITCBC 206   58 : r_(r) 208   58 : r_(r)
HITCBC 207   58 , host_(host) 209   58 , host_(host)
HITCBC 208   58 , service_(service) 210   58 , service_(service)
HITCBC 209   29 , flags_(flags) 211   29 , flags_(flags)
210   { 212   {
HITCBC 211   29 } 213   29 }
212 - friend detail::value_op_base<resolve_awaitable, std::vector<endpoint>>;  
213 - resolver& r_;  
214 - std::string host_;  
215 - std::string service_;  
216 - resolve_flags flags_;  
217 -  
218   214  
219   std::coroutine_handle<> 215   std::coroutine_handle<>
HITCBC 220   28 dispatch(std::coroutine_handle<> h, capy::executor_ref ex) const 216   28 dispatch(std::coroutine_handle<> h, capy::executor_ref ex) const
221   { 217   {
HITCBC 222   84 return r_.get().resolve( 218   84 return r_.get().resolve(
HITCBC 223   84 h, ex, host_, service_, flags_, token_, &ec_, &value_); 219   84 h, ex, host_, service_, flags_, token_, &ec_, &value_);
224   } 220   }
225   }; 221   };
226   222  
227   struct resolve_host_awaitable 223   struct resolve_host_awaitable
228   : detail::value_op_base<resolve_host_awaitable, std::vector<endpoint>> 224   : detail::value_op_base<resolve_host_awaitable, std::vector<endpoint>>
229   { 225   {
230 - private: 226 + resolver& r_;
231 - friend resolver; 227 + std::string host_;
  228 + resolve_flags flags_;
232   229  
HITCBC 233   6 resolve_host_awaitable( 230   6 resolve_host_awaitable(
234   resolver& r, std::string_view host, resolve_flags flags) noexcept 231   resolver& r, std::string_view host, resolve_flags flags) noexcept
HITCBC 235   12 : r_(r) 232   12 : r_(r)
HITCBC 236   12 , host_(host) 233   12 , host_(host)
HITCBC 237   6 , flags_(flags) 234   6 , flags_(flags)
238   { 235   {
HITCBC 239   6 } 236   6 }
240 - friend detail::  
241 - value_op_base<resolve_host_awaitable, std::vector<endpoint>>;  
242 - resolver& r_;  
243 - std::string host_;  
244 - resolve_flags flags_;  
245 -  
246   237  
247   std::coroutine_handle<> 238   std::coroutine_handle<>
HITCBC 248   5 dispatch(std::coroutine_handle<> h, capy::executor_ref ex) const 239   5 dispatch(std::coroutine_handle<> h, capy::executor_ref ex) const
249   { 240   {
250   // An empty service reaches the system resolver as null, 241   // An empty service reaches the system resolver as null,
251   // which is the host-only query 242   // which is the host-only query
HITCBC 252   15 return r_.get().resolve( 243   15 return r_.get().resolve(
HITCBC 253   15 h, ex, host_, {}, flags_, token_, &ec_, &value_); 244   15 h, ex, host_, {}, flags_, token_, &ec_, &value_);
254   } 245   }
255 - public:  
256   246  
257   // Shadows the base: the endpoint result is reshaped into 247   // Shadows the base: the endpoint result is reshaped into
258   // the honest address list 248   // the honest address list
259   [[nodiscard]] capy::io_result<std::vector<ip_address>> 249   [[nodiscard]] capy::io_result<std::vector<ip_address>>
HITCBC 260   6 await_resume() const 250   6 await_resume() const
261   { 251   {
HITCBC 262   6 std::vector<ip_address> addrs; 252   6 std::vector<ip_address> addrs;
HITCBC 263   6 addrs.reserve(value_.size()); 253   6 addrs.reserve(value_.size());
HITCBC 264   9 for (auto const& entry : value_) 254   9 for (auto const& entry : value_)
265   { 255   {
HITCBC 266   3 auto a = entry.address(); 256   3 auto a = entry.address();
HITCBC 267   3 bool duplicate = false; 257   3 bool duplicate = false;
HITCBC 268   3 for (auto const& seen : addrs) 258   3 for (auto const& seen : addrs)
269   { 259   {
MISUBC 270   ✗ if (seen == a) 260   ✗ if (seen == a)
271   { 261   {
MISUBC 272   ✗ duplicate = true; 262   ✗ duplicate = true;
MISUBC 273   ✗ break; 263   ✗ break;
274   } 264   }
275   } 265   }
276   // The same address can come back more than once 266   // The same address can come back more than once
277   // (mixed name sources, repeated records); each 267   // (mixed name sources, repeated records); each
278   // address is reported once 268   // address is reported once
HITCBC 279   3 if (!duplicate) 269   3 if (!duplicate)
HITCBC 280   3 addrs.push_back(a); 270   3 addrs.push_back(a);
281   } 271   }
HITCBC 282   12 return {ec_, std::move(addrs)}; 272   12 return {ec_, std::move(addrs)};
HITCBC 283   6 } 273   6 }
284   }; 274   };
285   275  
286   struct reverse_resolve_awaitable 276   struct reverse_resolve_awaitable
287   : detail::value_op_base<reverse_resolve_awaitable, endpoint_name> 277   : detail::value_op_base<reverse_resolve_awaitable, endpoint_name>
288   { 278   {
289 - private: 279 + resolver& r_;
290 - friend resolver; 280 + endpoint ep_;
  281 + reverse_flags flags_;
291   282  
HITCBC 292   20 reverse_resolve_awaitable( 283   20 reverse_resolve_awaitable(
293   resolver& r, endpoint const& ep, reverse_flags flags) noexcept 284   resolver& r, endpoint const& ep, reverse_flags flags) noexcept
HITCBC 294   40 : r_(r) 285   40 : r_(r)
HITCBC 295   20 , ep_(ep) 286   20 , ep_(ep)
HITCBC 296   20 , flags_(flags) 287   20 , flags_(flags)
297   { 288   {
HITCBC 298   20 } 289   20 }
299 - friend detail::value_op_base<reverse_resolve_awaitable, endpoint_name>;  
300 -  
301 - resolver& r_;  
302 - endpoint ep_;  
303 - reverse_flags flags_;  
304 -  
305   290  
306   std::coroutine_handle<> 291   std::coroutine_handle<>
HITCBC 307   19 dispatch(std::coroutine_handle<> h, capy::executor_ref ex) const 292   19 dispatch(std::coroutine_handle<> h, capy::executor_ref ex) const
308   { 293   {
HITCBC 309   38 return r_.get().reverse_resolve( 294   38 return r_.get().reverse_resolve(
HITCBC 310   38 h, ex, ep_, flags_, token_, &ec_, &value_); 295   38 h, ex, ep_, flags_, token_, &ec_, &value_);
311   } 296   }
312   }; 297   };
313   298  
314   public: 299   public:
315   /** Destructor. 300   /** Destructor.
316   301  
317   Cancels any pending operations. 302   Cancels any pending operations.
318   */ 303   */
319   ~resolver() override; 304   ~resolver() override;
320   305  
321   /** Construct a resolver from an execution context. 306   /** Construct a resolver from an execution context.
322   307  
323 - @param ctx The execution context that owns this resolver. 308 + @param ctx The execution context that will own this resolver.
324   */ 309   */
325   explicit resolver(capy::execution_context& ctx); 310   explicit resolver(capy::execution_context& ctx);
326   311  
327   /** Construct a resolver from an executor. 312   /** Construct a resolver from an executor.
328   313  
329   The resolver is associated with the executor's context. 314   The resolver is associated with the executor's context.
330   315  
331 - @param ex The executor whose context owns the resolver. 316 + @param ex The executor whose context will own the resolver.
332   */ 317   */
333   template<class Ex> 318   template<class Ex>
334   requires(!std::same_as<std::remove_cvref_t<Ex>, resolver>) && 319   requires(!std::same_as<std::remove_cvref_t<Ex>, resolver>) &&
335   capy::Executor<Ex> 320   capy::Executor<Ex>
HITCBC 336   1 explicit resolver(Ex const& ex) : resolver(ex.context()) 321   1 explicit resolver(Ex const& ex) : resolver(ex.context())
337   { 322   {
HITCBC 338   1 } 323   1 }
339   324  
340   /** Move constructor. 325   /** Move constructor.
341   326  
342   Transfers ownership of the resolver resources. After the move, 327   Transfers ownership of the resolver resources. After the move,
343   @p other is in a moved-from state and may only be destroyed or 328   @p other is in a moved-from state and may only be destroyed or
344   assigned to. 329   assigned to.
345   330  
346   @param other The resolver to move from. 331   @param other The resolver to move from.
347   332  
348   @pre No awaitables returned by @p other's `resolve` methods 333   @pre No awaitables returned by @p other's `resolve` methods
349   exist. 334   exist.
350   @pre The execution context associated with @p other must 335   @pre The execution context associated with @p other must
351   outlive this resolver. 336   outlive this resolver.
352   */ 337   */
HITCBC 353   2 resolver(resolver&& other) noexcept : io_object(std::move(other)) {} 338   2 resolver(resolver&& other) noexcept : io_object(std::move(other)) {}
354   339  
355   /** Move assignment operator. 340   /** Move assignment operator.
356   341  
357   Destroys the current implementation and transfers ownership 342   Destroys the current implementation and transfers ownership
358   from @p other. After the move, @p other is in a moved-from 343   from @p other. After the move, @p other is in a moved-from
359   state and may only be destroyed or assigned to. 344   state and may only be destroyed or assigned to.
360   345  
361   @param other The resolver to move from. 346   @param other The resolver to move from.
362   347  
363   @pre No awaitables returned by either `*this` or @p other's 348   @pre No awaitables returned by either `*this` or @p other's
364   `resolve` methods exist. 349   `resolve` methods exist.
365   @pre The execution context associated with @p other must 350   @pre The execution context associated with @p other must
366   outlive this resolver. 351   outlive this resolver.
367   352  
368   @return Reference to this resolver. 353   @return Reference to this resolver.
369   */ 354   */
HITCBC 370   2 resolver& operator=(resolver&& other) noexcept 355   2 resolver& operator=(resolver&& other) noexcept
371   { 356   {
HITCBC 372   2 if (this != &other) 357   2 if (this != &other)
HITCBC 373   2 h_ = std::move(other.h_); 358   2 h_ = std::move(other.h_);
HITCBC 374   2 return *this; 359   2 return *this;
375   } 360   }
376   361  
377 - /// Copy construction is disabled; the handle is uniquely owned. 362 + resolver(resolver const&) = delete;
378 - resolver(resolver const&) = delete;  
379 - /// Copy assignment is disabled; the handle is uniquely owned.  
380   resolver& operator=(resolver const&) = delete; 363   resolver& operator=(resolver const&) = delete;
381   364  
382   /** Initiate an asynchronous resolve operation. 365   /** Initiate an asynchronous resolve operation.
383   366  
384   Resolves the host and service names into a list of endpoints. 367   Resolves the host and service names into a list of endpoints.
385   368  
386   This resolver must outlive the returned awaitable. 369   This resolver must outlive the returned awaitable.
387   370  
388   @param host A string identifying a location. May be a descriptive 371   @param host A string identifying a location. May be a descriptive
389   name or a numeric address string. 372   name or a numeric address string.
390   373  
391   @param service A string identifying the requested service. This may 374   @param service A string identifying the requested service. This may
392   be a descriptive name or a numeric string corresponding to a 375   be a descriptive name or a numeric string corresponding to a
393   port number. 376   port number.
394   377  
395   @return An awaitable that completes with 378   @return An awaitable that completes with
396   `io_result<std::vector<endpoint>>`. 379   `io_result<std::vector<endpoint>>`.
397   380  
398   @par Example 381   @par Example
399   @par !example forward_resolve 382   @par !example forward_resolve
400   */ 383   */
HITCBC 401   13 [[nodiscard]] auto resolve(std::string_view host, std::string_view service) 384   13 [[nodiscard]] auto resolve(std::string_view host, std::string_view service)
402   { 385   {
HITCBC 403   13 return resolve_awaitable(*this, host, service, resolve_flags::none); 386   13 return resolve_awaitable(*this, host, service, resolve_flags::none);
404   } 387   }
405   388  
406   /** Initiate an asynchronous host-only resolve operation. 389   /** Initiate an asynchronous host-only resolve operation.
407   390  
408   Resolves a host name into its addresses, with no service or 391   Resolves a host name into its addresses, with no service or
409   port involved — the query `getaddrinfo` performs with a null 392   port involved — the query `getaddrinfo` performs with a null
410   service. Use this when the host and port travel separately, 393   service. Use this when the host and port travel separately,
411   as they do in most configuration. 394   as they do in most configuration.
412   395  
413   Each address appears once in the result even when the query 396   Each address appears once in the result even when the query
414   reports it more than once, and link-local results keep 397   reports it more than once, and link-local results keep
415   their zone. 398   their zone.
416   399  
417   @param host The host name or numeric address string. 400   @param host The host name or numeric address string.
418   401  
419   @return An awaitable that completes with 402   @return An awaitable that completes with
420   `io_result<std::vector<ip_address>>`. 403   `io_result<std::vector<ip_address>>`.
421   404  
422   @par Example 405   @par Example
423   @par !example host_only_resolve 406   @par !example host_only_resolve
424   */ 407   */
HITCBC 425   3 [[nodiscard]] auto resolve(std::string_view host) 408   3 [[nodiscard]] auto resolve(std::string_view host)
426   { 409   {
HITCBC 427   3 return resolve_host_awaitable(*this, host, resolve_flags::none); 410   3 return resolve_host_awaitable(*this, host, resolve_flags::none);
428   } 411   }
429   412  
430   /** Initiate an asynchronous host-only resolve operation with flags. 413   /** Initiate an asynchronous host-only resolve operation with flags.
431   414  
432   @param host The host name or numeric address string. 415   @param host The host name or numeric address string.
433   @param flags Resolution behavior flags. 416   @param flags Resolution behavior flags.
434   417  
435   @return An awaitable that completes with 418   @return An awaitable that completes with
436   `io_result<std::vector<ip_address>>`. 419   `io_result<std::vector<ip_address>>`.
437   */ 420   */
HITCBC 438   3 [[nodiscard]] auto resolve(std::string_view host, resolve_flags flags) 421   3 [[nodiscard]] auto resolve(std::string_view host, resolve_flags flags)
439   { 422   {
HITCBC 440   3 return resolve_host_awaitable(*this, host, flags); 423   3 return resolve_host_awaitable(*this, host, flags);
441   } 424   }
442   425  
443   /** Initiate an asynchronous resolve operation with flags. 426   /** Initiate an asynchronous resolve operation with flags.
444   427  
445   Resolves the host and service names into a list of endpoints. 428   Resolves the host and service names into a list of endpoints.
446   429  
447   This resolver must outlive the returned awaitable. 430   This resolver must outlive the returned awaitable.
448   431  
449   @param host A string identifying a location. 432   @param host A string identifying a location.
450   433  
451   @param service A string identifying the requested service. 434   @param service A string identifying the requested service.
452   435  
453   @param flags Flags controlling resolution behavior. 436   @param flags Flags controlling resolution behavior.
454   437  
455   @return An awaitable that completes with 438   @return An awaitable that completes with
456   `io_result<std::vector<endpoint>>`. 439   `io_result<std::vector<endpoint>>`.
457   */ 440   */
HITCBC 458   16 [[nodiscard]] auto resolve( 441   16 [[nodiscard]] auto resolve(
459   std::string_view host, std::string_view service, resolve_flags flags) 442   std::string_view host, std::string_view service, resolve_flags flags)
460   { 443   {
HITCBC 461   16 return resolve_awaitable(*this, host, service, flags); 444   16 return resolve_awaitable(*this, host, service, flags);
462   } 445   }
463   446  
464   /** Initiate an asynchronous reverse resolve operation. 447   /** Initiate an asynchronous reverse resolve operation.
465   448  
466   Resolves an endpoint into a hostname and service name using 449   Resolves an endpoint into a hostname and service name using
467   reverse DNS lookup (PTR record query). 450   reverse DNS lookup (PTR record query).
468   451  
469   This resolver must outlive the returned awaitable. 452   This resolver must outlive the returned awaitable.
470   453  
471   @param ep The endpoint to resolve. 454   @param ep The endpoint to resolve.
472   455  
473   @return An awaitable that completes with 456   @return An awaitable that completes with
474   `io_result<endpoint_name>`. 457   `io_result<endpoint_name>`.
475   458  
476   @par Example 459   @par Example
477   @par !example reverse_resolve 460   @par !example reverse_resolve
478   */ 461   */
HITCBC 479   11 [[nodiscard]] auto resolve(endpoint const& ep) 462   11 [[nodiscard]] auto resolve(endpoint const& ep)
480   { 463   {
HITCBC 481   11 return reverse_resolve_awaitable(*this, ep, reverse_flags::none); 464   11 return reverse_resolve_awaitable(*this, ep, reverse_flags::none);
482   } 465   }
483   466  
484   /** Initiate an asynchronous reverse resolve operation with flags. 467   /** Initiate an asynchronous reverse resolve operation with flags.
485   468  
486   Resolves an endpoint into a hostname and service name using 469   Resolves an endpoint into a hostname and service name using
487   reverse DNS lookup (PTR record query). 470   reverse DNS lookup (PTR record query).
488   471  
489   This resolver must outlive the returned awaitable. 472   This resolver must outlive the returned awaitable.
490   473  
491   @param ep The endpoint to resolve. 474   @param ep The endpoint to resolve.
492   475  
493   @param flags Flags controlling resolution behavior. See reverse_flags. 476   @param flags Flags controlling resolution behavior. See reverse_flags.
494   477  
495   @return An awaitable that completes with 478   @return An awaitable that completes with
496   `io_result<endpoint_name>`. 479   `io_result<endpoint_name>`.
497   */ 480   */
HITCBC 498   9 [[nodiscard]] auto resolve(endpoint const& ep, reverse_flags flags) 481   9 [[nodiscard]] auto resolve(endpoint const& ep, reverse_flags flags)
499   { 482   {
HITCBC 500   9 return reverse_resolve_awaitable(*this, ep, flags); 483   9 return reverse_resolve_awaitable(*this, ep, flags);
501   } 484   }
502   485  
503   /** Cancel any pending asynchronous operations. 486   /** Cancel any pending asynchronous operations.
504   487  
505 - A resolve transfers no bytes, so a cancellation always wins. An 488 + Operations still in flight complete with `errc::operation_canceled`;
506 - operation reports `errc::operation_canceled` even when the lookup 489 + an operation whose result is already decided reports that result.
507 - had already completed when the cancellation landed. Check 490 + Check `ec == cond::canceled` for portable comparison.
508 - `ec == cond::canceled` for a portable comparison.  
509   */ 491   */
510   void cancel() noexcept; 492   void cancel() noexcept;
511   493  
512   public: 494   public:
513 - /** Define backend hooks for DNS resolution operations. 495 + /** Backend interface for DNS resolution operations.
514   496  
515   Platform backends derive from this to implement forward and 497   Platform backends derive from this to implement forward and
516 - reverse DNS resolution via `getaddrinfo`/`getnameinfo`. 498 + reverse DNS resolution via getaddrinfo/getnameinfo.
517   */ 499   */
518   struct implementation : io_object::implementation 500   struct implementation : io_object::implementation
519   { 501   {
520 - /** Initiate an asynchronous forward DNS resolution. 502 + /// Initiate an asynchronous forward DNS resolution.
521 -  
522 - @param h Coroutine handle to resume on completion.  
523 - @param ex Executor for dispatching the completion.  
524 - @param host The host name or address literal to resolve.  
525 - @param service The service name or port number.  
526 - @param flags Flags controlling the lookup.  
527 - @param token Stop token for cancellation.  
528 - @param ec Output error code.  
529 - @param results Output resolver results.  
530 -  
531 - @return Coroutine handle to resume immediately.  
532 - */  
533   virtual std::coroutine_handle<> resolve( 503   virtual std::coroutine_handle<> resolve(
534 - std::coroutine_handle<> h, 504 + std::coroutine_handle<>,
535 - capy::executor_ref ex, 505 + capy::executor_ref,
536   std::string_view host, 506   std::string_view host,
537   std::string_view service, 507   std::string_view service,
538   resolve_flags flags, 508   resolve_flags flags,
539 - std::stop_token token, 509 + std::stop_token,
540 - std::error_code* ec, 510 + std::error_code*,
541 - std::vector<endpoint>* results) = 0; 511 + std::vector<endpoint>*) = 0;
542 -  
543 - /** Initiate an asynchronous reverse DNS resolution.  
544 -  
545 - @param h Coroutine handle to resume on completion.  
546 - @param ex Executor for dispatching the completion.  
547 - @param ep The endpoint to resolve.  
548 - @param flags Flags controlling the lookup.  
549 - @param token Stop token for cancellation.  
550 - @param ec Output error code.  
551 - @param result Output reverse-resolution result.  
552   512  
553 - @return Coroutine handle to resume immediately. 513 + /// Initiate an asynchronous reverse DNS resolution.
554 - */  
555   virtual std::coroutine_handle<> reverse_resolve( 514   virtual std::coroutine_handle<> reverse_resolve(
556 - std::coroutine_handle<> h, 515 + std::coroutine_handle<>,
557 - capy::executor_ref ex, 516 + capy::executor_ref,
558   endpoint const& ep, 517   endpoint const& ep,
559   reverse_flags flags, 518   reverse_flags flags,
560 - std::stop_token token, 519 + std::stop_token,
561 - std::error_code* ec, 520 + std::error_code*,
562 - endpoint_name* result) = 0; 521 + endpoint_name*) = 0;
563   522  
564   /// Cancel pending resolve operations. 523   /// Cancel pending resolve operations.
565   virtual void cancel() noexcept = 0; 524   virtual void cancel() noexcept = 0;
566   }; 525   };
567   526  
568 - /** Adopt an existing handle.  
569 -  
570 - @param h The handle the resolver takes ownership of.  
571 - */  
572   protected: 527   protected:
573   explicit resolver(handle h) noexcept : io_object(std::move(h)) {} 528   explicit resolver(handle h) noexcept : io_object(std::move(h)) {}
574   529  
575   private: 530   private:
HITCBC 576   59 inline implementation& get() const noexcept 531   59 inline implementation& get() const noexcept
577   { 532   {
HITCBC 578   59 return *static_cast<implementation*>(h_.get()); 533   59 return *static_cast<implementation*>(h_.get());
579   } 534   }
580   }; 535   };
581   536  
582   } // namespace boost::corosio 537   } // namespace boost::corosio
583   538  
584   #endif 539   #endif