blob: 848922c4752f7ca4f2802832705f28f59db7aa9c [file] [log] [blame]
// Copyright 2016 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/browser/devtools/devtools_session.h"
#include "base/bind.h"
#include "base/json/json_reader.h"
#include "base/strings/stringprintf.h"
#include "content/browser/devtools/devtools_manager.h"
#include "content/browser/devtools/protocol/devtools_domain_handler.h"
#include "content/browser/devtools/protocol/protocol.h"
#include "content/browser/devtools/render_frame_devtools_agent_host.h"
#include "content/browser/frame_host/render_frame_host_impl.h"
#include "content/public/browser/devtools_external_agent_proxy_delegate.h"
#include "content/public/browser/devtools_manager_delegate.h"
namespace content {
namespace {
bool ShouldSendOnIO(const std::string& method) {
// Keep in sync with WebDevToolsAgent::ShouldInterruptForMethod.
// TODO(dgozman): find a way to share this.
return method == "Debugger.pause" || method == "Debugger.setBreakpoint" ||
method == "Debugger.setBreakpointByUrl" ||
method == "Debugger.removeBreakpoint" ||
method == "Debugger.setBreakpointsActive" ||
method == "Performance.getMetrics" || method == "Page.crash" ||
method == "Runtime.terminateExecution" ||
method == "Emulation.setScriptExecutionDisabled";
}
static const char kMethod[] = "method";
static const char kResumeMethod[] = "Runtime.runIfWaitingForDebugger";
static const char kSessionId[] = "sessionId";
} // namespace
DevToolsSession::DevToolsSession(DevToolsAgentHostClient* client)
: binding_(this),
client_(client),
dispatcher_(new protocol::UberDispatcher(this)),
weak_factory_(this) {}
DevToolsSession::~DevToolsSession() {
if (proxy_delegate_)
proxy_delegate_->Detach(this);
// It is Ok for session to be deleted without the dispose -
// it can be kicked out by an extension connect / disconnect.
if (dispatcher_)
Dispose();
}
void DevToolsSession::SetAgentHost(DevToolsAgentHostImpl* agent_host) {
DCHECK(!agent_host_);
agent_host_ = agent_host;
}
void DevToolsSession::SetRuntimeResumeCallback(
base::OnceClosure runtime_resume) {
runtime_resume_ = std::move(runtime_resume);
}
void DevToolsSession::Dispose() {
dispatcher_.reset();
for (auto& pair : handlers_)
pair.second->Disable();
handlers_.clear();
}
DevToolsSession* DevToolsSession::GetRootSession() {
return root_session_ ? root_session_ : this;
}
void DevToolsSession::AddHandler(
std::unique_ptr<protocol::DevToolsDomainHandler> handler) {
DCHECK(agent_host_);
handler->Wire(dispatcher_.get());
handlers_[handler->name()] = std::move(handler);
}
void DevToolsSession::SetBrowserOnly(bool browser_only) {
browser_only_ = browser_only;
}
void DevToolsSession::TurnIntoExternalProxy(
DevToolsExternalAgentProxyDelegate* proxy_delegate) {
proxy_delegate_ = proxy_delegate;
proxy_delegate_->Attach(this);
}
void DevToolsSession::AttachToAgent(blink::mojom::DevToolsAgent* agent) {
DCHECK(agent_host_);
if (!agent) {
binding_.Close();
session_ptr_.reset();
io_session_ptr_.reset();
return;
}
blink::mojom::DevToolsSessionHostAssociatedPtrInfo host_ptr_info;
binding_.Bind(mojo::MakeRequest(&host_ptr_info));
agent->AttachDevToolsSession(
std::move(host_ptr_info), mojo::MakeRequest(&session_ptr_),
mojo::MakeRequest(&io_session_ptr_), session_state_cookie_.Clone());
session_ptr_.set_connection_error_handler(base::BindOnce(
&DevToolsSession::MojoConnectionDestroyed, base::Unretained(this)));
if (!suspended_sending_messages_to_agent_) {
for (const auto& pair : waiting_for_response_messages_) {
int call_id = pair.first;
const WaitingMessage& message = pair.second;
DispatchProtocolMessageToAgent(call_id, message.method, message.message);
}
} else {
std::vector<SuspendedMessage> temp;
for (const auto& pair : waiting_for_response_messages_)
temp.push_back({pair.first, pair.second.method, pair.second.message});
suspended_messages_.insert(suspended_messages_.begin(), temp.begin(),
temp.end());
waiting_for_response_messages_.clear();
}
// Set cookie to an empty struct to reattach next time instead of attaching.
if (!session_state_cookie_)
session_state_cookie_ = blink::mojom::DevToolsSessionState::New();
}
void DevToolsSession::MojoConnectionDestroyed() {
binding_.Close();
session_ptr_.reset();
io_session_ptr_.reset();
}
bool DevToolsSession::DispatchProtocolMessage(const std::string& message) {
std::unique_ptr<protocol::DictionaryValue> value =
protocol::DictionaryValue::cast(protocol::StringUtil::parseJSON(message));
std::string session_id;
if (!value || !value->getString(kSessionId, &session_id))
return DispatchProtocolMessageInternal(message, std::move(value));
auto it = child_sessions_.find(session_id);
if (it == child_sessions_.end())
return false;
DevToolsSession* session = it->second;
return session->DispatchProtocolMessageInternal(message, std::move(value));
}
bool DevToolsSession::DispatchProtocolMessageInternal(
const std::string& message,
std::unique_ptr<protocol::DictionaryValue> value) {
std::string method;
bool has_method = value && value->getString(kMethod, &method);
if (!runtime_resume_.is_null() && has_method && method == kResumeMethod)
std::move(runtime_resume_).Run();
if (proxy_delegate_) {
proxy_delegate_->SendMessageToBackend(this, message);
return true;
}
DevToolsManagerDelegate* delegate =
DevToolsManager::GetInstance()->delegate();
if (delegate && has_method) {
delegate->HandleCommand(
agent_host_, client_, method, message,
base::BindOnce(&DevToolsSession::HandleCommand,
weak_factory_.GetWeakPtr(), std::move(value)));
} else {
HandleCommand(std::move(value), message);
}
return true;
}
void DevToolsSession::HandleCommand(
std::unique_ptr<protocol::DictionaryValue> value,
const std::string& message) {
int call_id;
std::string method;
if (!dispatcher_->parseCommand(value.get(), &call_id, &method))
return;
if (browser_only_ || dispatcher_->canDispatch(method)) {
dispatcher_->dispatch(call_id, method, std::move(value), message);
} else {
fallThrough(call_id, method, message);
}
}
void DevToolsSession::fallThrough(int call_id,
const std::string& method,
const std::string& message) {
// In browser-only mode, we should've handled everything in dispatcher.
DCHECK(!browser_only_);
if (suspended_sending_messages_to_agent_) {
suspended_messages_.push_back({call_id, method, message});
return;
}
DispatchProtocolMessageToAgent(call_id, method, message);
waiting_for_response_messages_[call_id] = {method, message};
}
void DevToolsSession::DispatchProtocolMessageToAgent(
int call_id,
const std::string& method,
const std::string& message) {
DCHECK(!browser_only_);
auto message_ptr = blink::mojom::DevToolsMessage::New();
message_ptr->data = mojo_base::BigBuffer(base::make_span(
reinterpret_cast<const uint8_t*>(message.data()), message.length()));
if (ShouldSendOnIO(method)) {
if (io_session_ptr_)
io_session_ptr_->DispatchProtocolCommand(call_id, method,
std::move(message_ptr));
} else {
if (session_ptr_)
session_ptr_->DispatchProtocolCommand(call_id, method,
std::move(message_ptr));
}
}
void DevToolsSession::SuspendSendingMessagesToAgent() {
DCHECK(!browser_only_);
suspended_sending_messages_to_agent_ = true;
}
void DevToolsSession::ResumeSendingMessagesToAgent() {
DCHECK(!browser_only_);
suspended_sending_messages_to_agent_ = false;
for (const SuspendedMessage& message : suspended_messages_) {
DispatchProtocolMessageToAgent(message.call_id, message.method,
message.message);
waiting_for_response_messages_[message.call_id] = {message.method,
message.message};
}
suspended_messages_.clear();
}
void DevToolsSession::sendProtocolResponse(
int call_id,
std::unique_ptr<protocol::Serializable> message) {
client_->DispatchProtocolMessage(agent_host_, message->serialize());
// |this| may be deleted at this point.
}
void DevToolsSession::sendProtocolNotification(
std::unique_ptr<protocol::Serializable> message) {
client_->DispatchProtocolMessage(agent_host_, message->serialize());
// |this| may be deleted at this point.
}
void DevToolsSession::flushProtocolNotifications() {
}
void DevToolsSession::DispatchProtocolResponse(
blink::mojom::DevToolsMessagePtr message,
int call_id,
blink::mojom::DevToolsSessionStatePtr updates) {
ApplySessionStateUpdates(std::move(updates));
waiting_for_response_messages_.erase(call_id);
client_->DispatchProtocolMessage(
agent_host_,
std::string(reinterpret_cast<const char*>(message->data.data()),
message->data.size()));
// |this| may be deleted at this point.
}
void DevToolsSession::DispatchProtocolNotification(
blink::mojom::DevToolsMessagePtr message,
blink::mojom::DevToolsSessionStatePtr updates) {
ApplySessionStateUpdates(std::move(updates));
client_->DispatchProtocolMessage(
agent_host_,
std::string(reinterpret_cast<const char*>(message->data.data()),
message->data.size()));
// |this| may be deleted at this point.
}
void DevToolsSession::DispatchOnClientHost(const std::string& message) {
client_->DispatchProtocolMessage(agent_host_, message);
// |this| may be deleted at this point.
}
void DevToolsSession::ConnectionClosed() {
DevToolsAgentHostClient* client = client_;
DevToolsAgentHostImpl* agent_host = agent_host_;
agent_host->DetachInternal(this);
// |this| is delete here, do not use any fields below.
client->AgentHostClosed(agent_host);
}
void DevToolsSession::ApplySessionStateUpdates(
blink::mojom::DevToolsSessionStatePtr updates) {
if (!updates)
return;
if (!session_state_cookie_)
session_state_cookie_ = blink::mojom::DevToolsSessionState::New();
for (auto& entry : updates->entries) {
if (entry.second.has_value())
session_state_cookie_->entries[entry.first] = std::move(entry.second);
else
session_state_cookie_->entries.erase(entry.first);
}
}
DevToolsSession* DevToolsSession::AttachChildSession(
const std::string& session_id,
DevToolsAgentHostImpl* agent_host,
DevToolsAgentHostClient* client) {
DCHECK(!agent_host->SessionByClient(client));
DCHECK(!root_session_);
auto session = std::make_unique<DevToolsSession>(client);
session->root_session_ = this;
DevToolsSession* session_ptr = session.get();
// If attach did not succeed, |session| is already destroyed.
if (!agent_host->AttachInternal(std::move(session)))
return nullptr;
child_sessions_[session_id] = session_ptr;
return session_ptr;
}
void DevToolsSession::DetachChildSession(const std::string& session_id) {
child_sessions_.erase(session_id);
}
void DevToolsSession::SendMessageFromChildSession(const std::string& session_id,
const std::string& message) {
if (child_sessions_.find(session_id) == child_sessions_.end())
return;
if (!message.length() || message[message.length() - 1] != '}')
return;
std::string suffix =
base::StringPrintf(", \"sessionId\": \"%s\"}", session_id.c_str());
std::string patched;
patched.reserve(message.length() + suffix.length() - 1);
patched.append(message.data(), message.length() - 1);
patched.append(suffix);
client_->DispatchProtocolMessage(agent_host_, patched);
// |this| may be deleted at this point.
}
} // namespace content