blob: 998ebd800d1148f12d0f058d58b800aa9306e050 [file] [log] [blame]
henrike@webrtc.orgf0488722014-05-13 18:00:26 +00001/*
2 * Copyright 2013 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Steve Anton10542f22019-01-11 09:11:00 -080011#ifndef RTC_BASE_ASYNC_RESOLVER_INTERFACE_H_
12#define RTC_BASE_ASYNC_RESOLVER_INTERFACE_H_
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000013
Sameer Vijaykarb787e262022-08-11 11:52:57 +020014#include "rtc_base/checks.h"
Steve Anton10542f22019-01-11 09:11:00 -080015#include "rtc_base/socket_address.h"
Mirko Bonadei35214fc2019-09-23 14:54:28 +020016#include "rtc_base/system/rtc_export.h"
Artem Titove41c4332018-07-25 15:04:28 +020017#include "rtc_base/third_party/sigslot/sigslot.h"
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000018
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020019namespace rtc {
20
21// This interface defines the methods to resolve the address asynchronously.
Mirko Bonadei35214fc2019-09-23 14:54:28 +020022class RTC_EXPORT AsyncResolverInterface {
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020023 public:
24 AsyncResolverInterface();
25 virtual ~AsyncResolverInterface();
26
Artem Titov96e3b992021-07-26 16:03:14 +020027 // Start address resolution of the hostname in `addr`.
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020028 virtual void Start(const SocketAddress& addr) = 0;
Sameer Vijaykarb787e262022-08-11 11:52:57 +020029 // Start address resolution of the hostname in `addr` matching `family`.
30 virtual void Start(const SocketAddress& addr, int family) {
31 // TODO(webrtc:14319) make pure virtual when all subclasses have been
32 // updated.
33 RTC_DCHECK_NOTREACHED();
34 }
Artem Titov96e3b992021-07-26 16:03:14 +020035 // Returns true iff the address from `Start` was successfully resolved.
36 // If the address was successfully resolved, sets `addr` to a copy of the
37 // address from `Start` with the IP address set to the top most resolved
38 // address of `family` (`addr` will have both hostname and the resolved ip).
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020039 virtual bool GetResolvedAddress(int family, SocketAddress* addr) const = 0;
40 // Returns error from resolver.
41 virtual int GetError() const = 0;
42 // Delete the resolver.
43 virtual void Destroy(bool wait) = 0;
44 // Returns top most resolved IPv4 address if address is resolved successfully.
45 // Otherwise returns address set in SetAddress.
46 SocketAddress address() const {
47 SocketAddress addr;
48 GetResolvedAddress(AF_INET, &addr);
49 return addr;
50 }
51
52 // This signal is fired when address resolve process is completed.
53 sigslot::signal1<AsyncResolverInterface*> SignalDone;
54};
55
56} // namespace rtc
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000057
58#endif