mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-14 14:20:45 +01:00

This is a reland of 69241a93fb
Fix: The problem was related to NO_MAIN_THREAD_WRAPPING, which
affects https://source.chromium.org/chromium/chromium/src/+/master:third_party/webrtc/rtc_base/thread.cc;l=257-263;drc=7acc2d9fe3a6e3c4d8881d2bdfc9b8968a724cd5.
The original CL didn't attach the definition of the macro
NO_MAIN_THREAD_WRAPPING when building for Chromium (which doesn't have
to be related to //rtc_base anymore but to //rtc_base:threading).
Original change's description:
> Refactor rtc_base build targets.
>
> The "//rtc_base:rtc_base" build target has historically been one of the
> biggest targets in the WebRTC build. Big targets are the main source of
> circular dependencies and non-API types leakage.
>
> This CL is a step forward into splitting "//rtc_base:rtc_base" into
> smaller targets (as originally started in 2018).
>
> The only non-automated changes are (like re-wiring the build system):
> * The creation of //rtc_base/async_resolver.{h,cc} which allows to
> break a circular dependency (is has been extracted from
> //rtc_base/net_helpers.{h,cc}).
> * The creation of //rtc_base/internal/default_socket_server.{h,cc} to
> break another circular dependency.
>
> Bug: webrtc:9987
> Change-Id: I0c8f5e7efe2c8fd8e6bffa0d6dd2dd494cf3df02
> Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/196903
> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
> Reviewed-by: Harald Alvestrand <hta@webrtc.org>
> Cr-Commit-Position: refs/heads/master@{#32941}
Bug: webrtc:9987
Change-Id: I7cdf49d2aac8357f1f50f90010bf2c2f62fa19f6
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/202021
Reviewed-by: Niels Moller <nisse@webrtc.org>
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#33001}
169 lines
5.2 KiB
C++
169 lines
5.2 KiB
C++
/*
|
|
* Copyright 2008 The WebRTC Project Authors. All rights reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "rtc_base/async_resolver.h"
|
|
|
|
#include <string>
|
|
#include <utility>
|
|
|
|
#if defined(WEBRTC_WIN)
|
|
#include <ws2spi.h>
|
|
#include <ws2tcpip.h>
|
|
|
|
#include "rtc_base/win32.h"
|
|
#endif
|
|
#if defined(WEBRTC_POSIX) && !defined(__native_client__)
|
|
#if defined(WEBRTC_ANDROID)
|
|
#include "rtc_base/ifaddrs_android.h"
|
|
#else
|
|
#include <ifaddrs.h>
|
|
#endif
|
|
#endif // defined(WEBRTC_POSIX) && !defined(__native_client__)
|
|
|
|
#include "api/task_queue/task_queue_base.h"
|
|
#include "rtc_base/ip_address.h"
|
|
#include "rtc_base/logging.h"
|
|
#include "rtc_base/task_queue.h"
|
|
#include "rtc_base/task_utils/to_queued_task.h"
|
|
#include "rtc_base/third_party/sigslot/sigslot.h" // for signal_with_thread...
|
|
|
|
namespace rtc {
|
|
|
|
int ResolveHostname(const std::string& hostname,
|
|
int family,
|
|
std::vector<IPAddress>* addresses) {
|
|
#ifdef __native_client__
|
|
RTC_NOTREACHED();
|
|
RTC_LOG(LS_WARNING) << "ResolveHostname() is not implemented for NaCl";
|
|
return -1;
|
|
#else // __native_client__
|
|
if (!addresses) {
|
|
return -1;
|
|
}
|
|
addresses->clear();
|
|
struct addrinfo* result = nullptr;
|
|
struct addrinfo hints = {0};
|
|
hints.ai_family = family;
|
|
// |family| here will almost always be AF_UNSPEC, because |family| comes from
|
|
// AsyncResolver::addr_.family(), which comes from a SocketAddress constructed
|
|
// with a hostname. When a SocketAddress is constructed with a hostname, its
|
|
// family is AF_UNSPEC. However, if someday in the future we construct
|
|
// a SocketAddress with both a hostname and a family other than AF_UNSPEC,
|
|
// then it would be possible to get a specific family value here.
|
|
|
|
// The behavior of AF_UNSPEC is roughly "get both ipv4 and ipv6", as
|
|
// documented by the various operating systems:
|
|
// Linux: http://man7.org/linux/man-pages/man3/getaddrinfo.3.html
|
|
// Windows: https://msdn.microsoft.com/en-us/library/windows/desktop/
|
|
// ms738520(v=vs.85).aspx
|
|
// Mac: https://developer.apple.com/legacy/library/documentation/Darwin/
|
|
// Reference/ManPages/man3/getaddrinfo.3.html
|
|
// Android (source code, not documentation):
|
|
// https://android.googlesource.com/platform/bionic/+/
|
|
// 7e0bfb511e85834d7c6cb9631206b62f82701d60/libc/netbsd/net/getaddrinfo.c#1657
|
|
hints.ai_flags = AI_ADDRCONFIG;
|
|
int ret = getaddrinfo(hostname.c_str(), nullptr, &hints, &result);
|
|
if (ret != 0) {
|
|
return ret;
|
|
}
|
|
struct addrinfo* cursor = result;
|
|
for (; cursor; cursor = cursor->ai_next) {
|
|
if (family == AF_UNSPEC || cursor->ai_family == family) {
|
|
IPAddress ip;
|
|
if (IPFromAddrInfo(cursor, &ip)) {
|
|
addresses->push_back(ip);
|
|
}
|
|
}
|
|
}
|
|
freeaddrinfo(result);
|
|
return 0;
|
|
#endif // !__native_client__
|
|
}
|
|
|
|
AsyncResolver::AsyncResolver() : error_(-1) {}
|
|
|
|
AsyncResolver::~AsyncResolver() {
|
|
RTC_DCHECK_RUN_ON(&sequence_checker_);
|
|
}
|
|
|
|
void AsyncResolver::Start(const SocketAddress& addr) {
|
|
RTC_DCHECK_RUN_ON(&sequence_checker_);
|
|
RTC_DCHECK(!destroy_called_);
|
|
addr_ = addr;
|
|
webrtc::TaskQueueBase* current_task_queue = webrtc::TaskQueueBase::Current();
|
|
popup_thread_ = Thread::Create();
|
|
popup_thread_->Start();
|
|
popup_thread_->PostTask(webrtc::ToQueuedTask(
|
|
[this, flag = safety_.flag(), addr, current_task_queue] {
|
|
std::vector<IPAddress> addresses;
|
|
int error =
|
|
ResolveHostname(addr.hostname().c_str(), addr.family(), &addresses);
|
|
current_task_queue->PostTask(webrtc::ToQueuedTask(
|
|
std::move(flag), [this, error, addresses = std::move(addresses)] {
|
|
RTC_DCHECK_RUN_ON(&sequence_checker_);
|
|
ResolveDone(std::move(addresses), error);
|
|
}));
|
|
}));
|
|
}
|
|
|
|
bool AsyncResolver::GetResolvedAddress(int family, SocketAddress* addr) const {
|
|
RTC_DCHECK_RUN_ON(&sequence_checker_);
|
|
RTC_DCHECK(!destroy_called_);
|
|
if (error_ != 0 || addresses_.empty())
|
|
return false;
|
|
|
|
*addr = addr_;
|
|
for (size_t i = 0; i < addresses_.size(); ++i) {
|
|
if (family == addresses_[i].family()) {
|
|
addr->SetResolvedIP(addresses_[i]);
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
int AsyncResolver::GetError() const {
|
|
RTC_DCHECK_RUN_ON(&sequence_checker_);
|
|
RTC_DCHECK(!destroy_called_);
|
|
return error_;
|
|
}
|
|
|
|
void AsyncResolver::Destroy(bool wait) {
|
|
// Some callers have trouble guaranteeing that Destroy is called on the
|
|
// sequence guarded by |sequence_checker_|.
|
|
// RTC_DCHECK_RUN_ON(&sequence_checker_);
|
|
RTC_DCHECK(!destroy_called_);
|
|
destroy_called_ = true;
|
|
MaybeSelfDestruct();
|
|
}
|
|
|
|
const std::vector<IPAddress>& AsyncResolver::addresses() const {
|
|
RTC_DCHECK_RUN_ON(&sequence_checker_);
|
|
RTC_DCHECK(!destroy_called_);
|
|
return addresses_;
|
|
}
|
|
|
|
void AsyncResolver::ResolveDone(std::vector<IPAddress> addresses, int error) {
|
|
addresses_ = addresses;
|
|
error_ = error;
|
|
recursion_check_ = true;
|
|
SignalDone(this);
|
|
MaybeSelfDestruct();
|
|
}
|
|
|
|
void AsyncResolver::MaybeSelfDestruct() {
|
|
if (!recursion_check_) {
|
|
delete this;
|
|
} else {
|
|
recursion_check_ = false;
|
|
}
|
|
}
|
|
|
|
} // namespace rtc
|