| // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "content/renderer/p2p/host_address_request.h" |
| |
| #include "base/bind.h" |
| #include "base/callback_helpers.h" |
| #include "base/location.h" |
| #include "base/threading/thread_task_runner_handle.h" |
| #include "content/renderer/p2p/socket_dispatcher.h" |
| #include "jingle/glue/utils.h" |
| |
| namespace content { |
| |
| P2PAsyncAddressResolver::P2PAsyncAddressResolver( |
| P2PSocketDispatcher* dispatcher) |
| : dispatcher_(dispatcher), state_(STATE_CREATED) { |
| AddRef(); // Balanced in Destroy(). |
| } |
| |
| P2PAsyncAddressResolver::~P2PAsyncAddressResolver() { |
| DCHECK(state_ == STATE_CREATED || state_ == STATE_FINISHED); |
| } |
| |
| void P2PAsyncAddressResolver::Start(const rtc::SocketAddress& host_name, |
| const DoneCallback& done_callback) { |
| DCHECK(thread_checker_.CalledOnValidThread()); |
| DCHECK_EQ(STATE_CREATED, state_); |
| |
| state_ = STATE_SENT; |
| done_callback_ = done_callback; |
| dispatcher_->GetP2PSocketManager()->GetHostAddress( |
| host_name.hostname(), base::BindOnce(&P2PAsyncAddressResolver::OnResponse, |
| base::Unretained(this))); |
| } |
| |
| void P2PAsyncAddressResolver::Cancel() { |
| DCHECK(thread_checker_.CalledOnValidThread()); |
| |
| if (state_ != STATE_FINISHED) |
| state_ = STATE_FINISHED; |
| |
| done_callback_.Reset(); |
| } |
| |
| void P2PAsyncAddressResolver::OnResponse(const net::IPAddressList& addresses) { |
| DCHECK(thread_checker_.CalledOnValidThread()); |
| if (state_ == STATE_SENT) { |
| state_ = STATE_FINISHED; |
| base::ResetAndReturn(&done_callback_).Run(addresses); |
| } |
| } |
| |
| } // namespace content |