1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/devtools/device/devtools_device_discovery.h"
#include <map>
#include <string_view>
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/json/json_reader.h"
#include "base/memory/ptr_util.h"
#include "base/memory/raw_ptr.h"
#include "base/metrics/user_metrics.h"
#include "base/strings/escape.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_split.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
#include "base/values.h"
#include "chrome/browser/browser_features.h"
#include "chrome/browser/devtools/devtools_window.h"
#include "content/public/browser/browser_task_traits.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/devtools_agent_host.h"
#include "content/public/browser/devtools_external_agent_proxy.h"
#include "content/public/browser/devtools_external_agent_proxy_delegate.h"
using content::BrowserThread;
using content::DevToolsAgentHost;
using RemoteBrowser = DevToolsDeviceDiscovery::RemoteBrowser;
using RemoteDevice = DevToolsDeviceDiscovery::RemoteDevice;
using RemotePage = DevToolsDeviceDiscovery::RemotePage;
namespace {
const char kPageListRequest[] = "/json/list";
const char kVersionRequest[] = "/json/version";
const char kClosePageRequest[] = "/json/close/%s";
const char kActivatePageRequest[] = "/json/activate/%s";
const char kBrowserTargetSocket[] = "/devtools/browser";
const int kPollingIntervalMs = 1000;
const char kPageReloadCommand[] = "{'method': 'Page.reload', id: 1}";
const char kWebViewSocketPrefix[] = "webview_devtools_remote";
static void ScheduleTaskDefault(base::OnceClosure task) {
content::GetUIThreadTaskRunner({})->PostDelayedTask(
FROM_HERE, std::move(task), base::Milliseconds(kPollingIntervalMs));
}
// ProtocolCommand ------------------------------------------------------------
class ProtocolCommand
: public AndroidDeviceManager::AndroidWebSocket::Delegate {
public:
ProtocolCommand(scoped_refptr<AndroidDeviceManager::Device> device,
const std::string& socket,
const std::string& target_path,
const std::string& command);
ProtocolCommand(const ProtocolCommand&) = delete;
ProtocolCommand& operator=(const ProtocolCommand&) = delete;
private:
void OnSocketOpened() override;
void OnFrameRead(const std::string& message) override;
void OnSocketClosed() override;
~ProtocolCommand() override;
const std::string command_;
std::unique_ptr<AndroidDeviceManager::AndroidWebSocket> web_socket_;
};
ProtocolCommand::ProtocolCommand(
scoped_refptr<AndroidDeviceManager::Device> device,
const std::string& socket,
const std::string& target_path,
const std::string& command)
: command_(command),
web_socket_(device->CreateWebSocket(socket, target_path, this)) {}
void ProtocolCommand::OnSocketOpened() {
web_socket_->SendFrame(command_);
}
void ProtocolCommand::OnFrameRead(const std::string& message) {
delete this;
}
void ProtocolCommand::OnSocketClosed() {
delete this;
}
ProtocolCommand::~ProtocolCommand() = default;
// AgentHostDelegate ----------------------------------------------------------
class WebSocketProxy : public AndroidDeviceManager::AndroidWebSocket::Delegate {
public:
explicit WebSocketProxy(content::DevToolsExternalAgentProxy* proxy)
: socket_opened_(false), proxy_(proxy) {}
WebSocketProxy(const WebSocketProxy&) = delete;
WebSocketProxy& operator=(const WebSocketProxy&) = delete;
void WebSocketCreated(AndroidDeviceManager::AndroidWebSocket* web_socket) {
web_socket_.reset(web_socket);
}
void SendMessageToBackend(std::string message) {
if (socket_opened_) {
web_socket_->SendFrame(std::move(message));
} else {
pending_messages_.push_back(std::move(message));
}
}
void OnSocketOpened() override {
socket_opened_ = true;
for (std::string& message : pending_messages_) {
SendMessageToBackend(std::move(message));
}
pending_messages_.clear();
}
void OnFrameRead(const std::string& message) override {
proxy_->DispatchOnClientHost(base::as_byte_span(message));
}
void OnSocketClosed() override {
constexpr char kMsg[] =
"{\"method\":\"Inspector.detached\",\"params\":"
"{\"reason\":\"Connection lost.\"}}";
proxy_->DispatchOnClientHost(base::byte_span_with_nul_from_cstring(kMsg));
web_socket_.reset();
socket_opened_ = false;
proxy_->ConnectionClosed(); // Deletes |this|.
}
private:
bool socket_opened_;
std::vector<std::string> pending_messages_;
std::unique_ptr<AndroidDeviceManager::AndroidWebSocket> web_socket_;
raw_ptr<content::DevToolsExternalAgentProxy> proxy_;
};
class AgentHostDelegate : public content::DevToolsExternalAgentProxyDelegate {
public:
static scoped_refptr<content::DevToolsAgentHost> GetOrCreateAgentHost(
scoped_refptr<AndroidDeviceManager::Device> device,
const std::string& browser_id,
const std::string& browser_version,
const std::string& local_id,
const std::string& target_path,
const std::string& type,
const base::Value::Dict* value);
AgentHostDelegate(const AgentHostDelegate&) = delete;
AgentHostDelegate& operator=(const AgentHostDelegate&) = delete;
~AgentHostDelegate() override;
private:
AgentHostDelegate(scoped_refptr<AndroidDeviceManager::Device> device,
const std::string& browser_id,
const std::string& browser_version,
const std::string& local_id,
const std::string& target_path,
const std::string& type,
const base::Value::Dict* value);
// DevToolsExternalAgentProxyDelegate overrides.
void Attach(content::DevToolsExternalAgentProxy* proxy) override;
void Detach(content::DevToolsExternalAgentProxy* proxy) override;
std::string GetType() override;
std::string GetTitle() override;
std::string GetDescription() override;
GURL GetURL() override;
GURL GetFaviconURL() override;
std::string GetFrontendURL() override;
bool Activate() override;
void Reload() override;
bool Close() override;
base::TimeTicks GetLastActivityTime() override;
void SendMessageToBackend(content::DevToolsExternalAgentProxy* proxy,
base::span<const uint8_t> message) override;
scoped_refptr<AndroidDeviceManager::Device> device_;
std::string browser_id_;
std::string local_id_;
std::string target_path_;
std::string remote_type_;
std::string remote_id_;
std::string frontend_url_;
std::string title_;
std::string description_;
GURL url_;
GURL favicon_url_;
raw_ptr<content::DevToolsAgentHost> agent_host_;
std::map<content::DevToolsExternalAgentProxy*,
std::unique_ptr<WebSocketProxy>>
proxies_;
};
static std::string GetStringProperty(const base::Value::Dict& value,
const std::string& name) {
const std::string* result = value.FindString(name);
return result ? *result : std::string();
}
static std::string BuildUniqueTargetId(const std::string& serial,
const std::string& browser_id,
const base::Value::Dict& value) {
return base::StringPrintf("%s:%s:%s", serial.c_str(), browser_id.c_str(),
GetStringProperty(value, "id").c_str());
}
static std::string GetFrontendURLFromValue(const base::Value::Dict& value,
const std::string& browser_version) {
std::string frontend_url = GetStringProperty(value, "devtoolsFrontendUrl");
size_t ws_param = frontend_url.find("?ws");
if (ws_param != std::string::npos) {
frontend_url = frontend_url.substr(0, ws_param);
}
if (base::StartsWith(frontend_url, "http:", base::CompareCase::SENSITIVE)) {
frontend_url = "https:" + frontend_url.substr(5);
}
if (!browser_version.empty()) {
frontend_url += "?remoteVersion=" + browser_version;
}
return frontend_url;
}
static std::string GetTargetPath(const base::Value::Dict& value) {
std::string target_path = GetStringProperty(value, "webSocketDebuggerUrl");
if (base::StartsWith(target_path, "ws://", base::CompareCase::SENSITIVE)) {
size_t pos = target_path.find("/", 5);
if (pos == std::string::npos) {
pos = 5;
}
target_path = target_path.substr(pos);
} else {
target_path = std::string();
}
return target_path;
}
// static
scoped_refptr<content::DevToolsAgentHost>
AgentHostDelegate::GetOrCreateAgentHost(
scoped_refptr<AndroidDeviceManager::Device> device,
const std::string& browser_id,
const std::string& browser_version,
const std::string& local_id,
const std::string& target_path,
const std::string& type,
const base::Value::Dict* value) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
scoped_refptr<DevToolsAgentHost> result =
DevToolsAgentHost::GetForId(local_id);
if (result) {
return result;
}
AgentHostDelegate* delegate = new AgentHostDelegate(
device, browser_id, browser_version, local_id, target_path, type, value);
result =
content::DevToolsAgentHost::Forward(local_id, base::WrapUnique(delegate));
delegate->agent_host_ = result.get();
return result;
}
AgentHostDelegate::AgentHostDelegate(
scoped_refptr<AndroidDeviceManager::Device> device,
const std::string& browser_id,
const std::string& browser_version,
const std::string& local_id,
const std::string& target_path,
const std::string& type,
const base::Value::Dict* value)
: device_(device),
browser_id_(browser_id),
local_id_(local_id),
target_path_(target_path),
remote_type_(type),
remote_id_(value ? GetStringProperty(*value, "id") : ""),
frontend_url_(value ? GetFrontendURLFromValue(*value, browser_version)
: ""),
title_(value ? base::UTF16ToUTF8(base::UnescapeForHTML(
base::UTF8ToUTF16(GetStringProperty(*value, "title"))))
: ""),
description_(value ? GetStringProperty(*value, "description") : ""),
url_(GURL(value ? GetStringProperty(*value, "url") : "")),
favicon_url_(GURL(value ? GetStringProperty(*value, "faviconUrl") : "")),
agent_host_(nullptr) {}
AgentHostDelegate::~AgentHostDelegate() = default;
void AgentHostDelegate::Attach(content::DevToolsExternalAgentProxy* proxy) {
std::unique_ptr<WebSocketProxy> ws_proxy(new WebSocketProxy(proxy));
ws_proxy->WebSocketCreated(
device_->CreateWebSocket(browser_id_, target_path_, ws_proxy.get()));
proxies_[proxy] = std::move(ws_proxy);
base::RecordAction(
base::StartsWith(browser_id_, kWebViewSocketPrefix,
base::CompareCase::SENSITIVE)
? base::UserMetricsAction("DevTools_InspectAndroidWebView")
: base::UserMetricsAction("DevTools_InspectAndroidPage"));
}
void AgentHostDelegate::Detach(content::DevToolsExternalAgentProxy* proxy) {
proxies_.erase(proxy);
}
std::string AgentHostDelegate::GetType() {
return remote_type_;
}
std::string AgentHostDelegate::GetTitle() {
return title_;
}
std::string AgentHostDelegate::GetDescription() {
return description_;
}
GURL AgentHostDelegate::GetURL() {
return url_;
}
GURL AgentHostDelegate::GetFaviconURL() {
return favicon_url_;
}
std::string AgentHostDelegate::GetFrontendURL() {
return frontend_url_;
}
bool AgentHostDelegate::Activate() {
std::string request =
base::StringPrintf(kActivatePageRequest, remote_id_.c_str());
device_->SendJsonRequest(browser_id_, request, base::DoNothing());
return true;
}
void AgentHostDelegate::Reload() {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
if (target_path_.empty()) {
return;
}
new ProtocolCommand(device_, browser_id_, target_path_, kPageReloadCommand);
}
bool AgentHostDelegate::Close() {
std::string request =
base::StringPrintf(kClosePageRequest, remote_id_.c_str());
device_->SendJsonRequest(browser_id_, request, base::DoNothing());
return true;
}
base::TimeTicks AgentHostDelegate::GetLastActivityTime() {
return base::TimeTicks();
}
void AgentHostDelegate::SendMessageToBackend(
content::DevToolsExternalAgentProxy* proxy,
base::span<const uint8_t> message) {
auto it = proxies_.find(proxy);
// We could have detached due to physical connection being closed.
if (it == proxies_.end()) {
return;
}
it->second->SendMessageToBackend(std::string(message.begin(), message.end()));
}
} // namespace
// DevToolsDeviceDiscovery::DiscoveryRequest ----------------------------------
class DevToolsDeviceDiscovery::DiscoveryRequest
: public base::RefCountedThreadSafe<DiscoveryRequest,
BrowserThread::DeleteOnUIThread> {
public:
static void Start(AndroidDeviceManager* device_manager,
base::OnceCallback<void(const CompleteDevices&)> callback);
private:
friend struct BrowserThread::DeleteOnThread<BrowserThread::UI>;
friend class base::DeleteHelper<DiscoveryRequest>;
explicit DiscoveryRequest(
base::OnceCallback<void(const CompleteDevices&)> callback);
virtual ~DiscoveryRequest();
void ReceivedDevices(const AndroidDeviceManager::Devices& devices);
void ReceivedDeviceInfo(scoped_refptr<AndroidDeviceManager::Device> device,
const AndroidDeviceManager::DeviceInfo& device_info);
void ReceivedVersion(scoped_refptr<AndroidDeviceManager::Device> device,
scoped_refptr<RemoteBrowser>,
int result,
const std::string& response);
void ReceivedPages(scoped_refptr<AndroidDeviceManager::Device> device,
scoped_refptr<RemoteBrowser>,
int result,
const std::string& response);
void ParseBrowserInfo(scoped_refptr<RemoteBrowser> browser,
const std::string& version_response,
bool& is_chrome);
base::OnceCallback<void(const CompleteDevices&)> callback_;
DevToolsDeviceDiscovery::CompleteDevices complete_devices_;
};
// static
void DevToolsDeviceDiscovery::DiscoveryRequest::Start(
AndroidDeviceManager* device_manager,
base::OnceCallback<void(const CompleteDevices&)> callback) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
auto request =
base::WrapRefCounted(new DiscoveryRequest(std::move(callback)));
device_manager->QueryDevices(
base::BindOnce(&DiscoveryRequest::ReceivedDevices, request));
}
DevToolsDeviceDiscovery::DiscoveryRequest::DiscoveryRequest(
base::OnceCallback<void(const CompleteDevices&)> callback)
: callback_(std::move(callback)) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
}
DevToolsDeviceDiscovery::DiscoveryRequest::~DiscoveryRequest() {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
std::move(callback_).Run(complete_devices_);
}
void DevToolsDeviceDiscovery::DiscoveryRequest::ReceivedDevices(
const AndroidDeviceManager::Devices& devices) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
for (const auto& device : devices) {
device->QueryDeviceInfo(
base::BindOnce(&DiscoveryRequest::ReceivedDeviceInfo, this, device));
}
}
void DevToolsDeviceDiscovery::DiscoveryRequest::ReceivedDeviceInfo(
scoped_refptr<AndroidDeviceManager::Device> device,
const AndroidDeviceManager::DeviceInfo& device_info) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
scoped_refptr<RemoteDevice> remote_device =
new RemoteDevice(device->serial(), device_info);
complete_devices_.push_back(std::make_pair(device, remote_device));
for (auto it = remote_device->browsers().begin();
it != remote_device->browsers().end(); ++it) {
device->SendJsonRequest(
(*it)->socket(), kVersionRequest,
base::BindOnce(&DiscoveryRequest::ReceivedVersion, this, device, *it));
}
}
void DevToolsDeviceDiscovery::DiscoveryRequest::ParseBrowserInfo(
scoped_refptr<RemoteBrowser> browser,
const std::string& version_response,
bool& is_chrome) {
// Parse version, append to package name if available,
std::optional<base::Value::Dict> value_dict =
base::JSONReader::ReadDict(version_response);
if (!value_dict) {
return;
}
const std::string* browser_name = value_dict->FindString("Browser");
if (browser_name) {
std::vector<std::string_view> parts = base::SplitStringPiece(
*browser_name, "/", base::KEEP_WHITESPACE, base::SPLIT_WANT_NONEMPTY);
if (parts.size() == 2) {
browser->version_ = parts[1];
is_chrome = parts[0] == "Chrome" || parts[0] == "HeadlessChrome";
} else {
browser->version_ = *browser_name;
}
}
browser->browser_target_id_ = GetTargetPath(*value_dict);
if (browser->browser_target_id_.empty()) {
browser->browser_target_id_ = kBrowserTargetSocket;
}
const std::string* package = value_dict->FindString("Android-Package");
if (package) {
browser->display_name_ =
AndroidDeviceManager::GetBrowserName(browser->socket(), *package);
}
}
void DevToolsDeviceDiscovery::DiscoveryRequest::ReceivedVersion(
scoped_refptr<AndroidDeviceManager::Device> device,
scoped_refptr<RemoteBrowser> browser,
int result,
const std::string& response) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
std::string url = kPageListRequest;
bool is_chrome = false;
if (result >= 0) {
ParseBrowserInfo(browser, response, is_chrome);
}
if (is_chrome) {
url += "?for_tab";
}
device->SendJsonRequest(
browser->socket(), url,
base::BindOnce(&DiscoveryRequest::ReceivedPages, this, device, browser));
}
void DevToolsDeviceDiscovery::DiscoveryRequest::ReceivedPages(
scoped_refptr<AndroidDeviceManager::Device> device,
scoped_refptr<RemoteBrowser> browser,
int result,
const std::string& response) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
if (result < 0) {
return;
}
std::optional<base::Value> value = base::JSONReader::Read(response);
if (!value) {
return;
}
auto* value_list = value->GetIfList();
if (!value_list) {
return;
}
for (base::Value& page_value : *value_list) {
if (page_value.is_dict()) {
browser->pages_.push_back(
new RemotePage(device, browser->browser_id_, browser->version_,
std::move(page_value).TakeDict()));
}
}
}
// DevToolsDeviceDiscovery::RemotePage ----------------------------------------
DevToolsDeviceDiscovery::RemotePage::RemotePage(
scoped_refptr<AndroidDeviceManager::Device> device,
const std::string& browser_id,
const std::string& browser_version,
base::Value::Dict dict)
: device_(device),
browser_id_(browser_id),
browser_version_(browser_version),
dict_(std::move(dict)) {}
DevToolsDeviceDiscovery::RemotePage::~RemotePage() = default;
scoped_refptr<content::DevToolsAgentHost>
DevToolsDeviceDiscovery::RemotePage::CreateTarget() {
std::string local_id =
BuildUniqueTargetId(device_->serial(), browser_id_, dict_);
std::string target_path = GetTargetPath(dict_);
std::string type = GetStringProperty(dict_, "type");
std::string port_num = browser_id_;
if (type == "node") {
port_num = GURL(GetStringProperty(dict_, "webSocketDebuggerUrl")).port();
}
agent_host_ = AgentHostDelegate::GetOrCreateAgentHost(
device_, port_num, browser_version_, local_id, target_path, type, &dict_);
return agent_host_;
}
// DevToolsDeviceDiscovery::RemoteBrowser -------------------------------------
DevToolsDeviceDiscovery::RemoteBrowser::RemoteBrowser(
const std::string& serial,
const AndroidDeviceManager::BrowserInfo& browser_info)
: serial_(serial),
browser_id_(browser_info.socket_name),
display_name_(browser_info.display_name),
user_(browser_info.user),
type_(browser_info.type) {}
bool DevToolsDeviceDiscovery::RemoteBrowser::IsChrome() {
return type_ == AndroidDeviceManager::BrowserInfo::kTypeChrome;
}
std::string DevToolsDeviceDiscovery::RemoteBrowser::GetId() {
return serial() + ":" + socket();
}
DevToolsDeviceDiscovery::RemoteBrowser::ParsedVersion
DevToolsDeviceDiscovery::RemoteBrowser::GetParsedVersion() {
ParsedVersion result;
for (std::string_view part : base::SplitStringPiece(
version_, ".", base::KEEP_WHITESPACE, base::SPLIT_WANT_NONEMPTY)) {
int value = 0;
base::StringToInt(part, &value);
result.push_back(value);
}
return result;
}
DevToolsDeviceDiscovery::RemoteBrowser::~RemoteBrowser() = default;
// DevToolsDeviceDiscovery::RemoteDevice --------------------------------------
DevToolsDeviceDiscovery::RemoteDevice::RemoteDevice(
const std::string& serial,
const AndroidDeviceManager::DeviceInfo& device_info)
: serial_(serial),
model_(device_info.model),
connected_(device_info.connected),
screen_size_(device_info.screen_size) {
for (auto it = device_info.browser_info.begin();
it != device_info.browser_info.end(); ++it) {
browsers_.push_back(new RemoteBrowser(serial, *it));
}
}
DevToolsDeviceDiscovery::RemoteDevice::~RemoteDevice() = default;
// DevToolsDeviceDiscovery ----------------------------------------------------
DevToolsDeviceDiscovery::DevToolsDeviceDiscovery(
AndroidDeviceManager* device_manager,
DeviceListCallback callback)
: device_manager_(device_manager),
callback_(std::move(callback)),
task_scheduler_(base::BindRepeating(&ScheduleTaskDefault)) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
RequestDeviceList();
}
DevToolsDeviceDiscovery::~DevToolsDeviceDiscovery() {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
}
void DevToolsDeviceDiscovery::SetScheduler(
base::RepeatingCallback<void(base::OnceClosure)> scheduler) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
task_scheduler_ = std::move(scheduler);
}
// static
scoped_refptr<content::DevToolsAgentHost>
DevToolsDeviceDiscovery::CreateBrowserAgentHost(
scoped_refptr<AndroidDeviceManager::Device> device,
scoped_refptr<RemoteBrowser> browser) {
return AgentHostDelegate::GetOrCreateAgentHost(
device, browser->browser_id_, browser->version_,
"adb:" + browser->serial() + ":" + browser->socket(),
browser->browser_target_id(), DevToolsAgentHost::kTypeBrowser, nullptr);
}
void DevToolsDeviceDiscovery::RequestDeviceList() {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
DiscoveryRequest::Start(
device_manager_,
base::BindOnce(&DevToolsDeviceDiscovery::ReceivedDeviceList,
weak_factory_.GetWeakPtr()));
}
void DevToolsDeviceDiscovery::ReceivedDeviceList(
const CompleteDevices& complete_devices) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
task_scheduler_.Run(base::BindOnce(
&DevToolsDeviceDiscovery::RequestDeviceList, weak_factory_.GetWeakPtr()));
// |callback_| should be run last as it may destroy |this|.
callback_.Run(complete_devices);
}
|