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
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "headless/lib/browser/protocol/browser_handler.h"
#include "base/functional/bind.h"
#include "content/public/browser/browser_task_traits.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/web_contents.h"
#include "headless/lib/browser/headless_browser_impl.h"
#include "headless/lib/browser/headless_web_contents_impl.h"
#include "headless/lib/browser/protocol/target_handler.h"
#include "headless/public/headless_window_state.h"
namespace headless {
namespace protocol {
namespace {
std::unique_ptr<Browser::Bounds> CreateBrowserBounds(
const HeadlessWebContentsImpl* web_contents) {
gfx::Rect bounds = web_contents->web_contents()->GetContainerBounds();
return Browser::Bounds::Create()
.SetLeft(bounds.x())
.SetTop(bounds.y())
.SetWidth(bounds.width())
.SetHeight(bounds.height())
.SetWindowState(GetProtocolWindowState(web_contents->GetWindowState()))
.Build();
}
} // namespace
BrowserHandler::BrowserHandler(HeadlessBrowserImpl* browser,
const std::string& target_id)
: browser_(browser), target_id_(target_id) {}
BrowserHandler::~BrowserHandler() = default;
void BrowserHandler::Wire(UberDispatcher* dispatcher) {
Browser::Dispatcher::wire(dispatcher, this);
}
Response BrowserHandler::Disable() {
return Response::Success();
}
Response BrowserHandler::GetWindowForTarget(
std::optional<std::string> target_id,
int* out_window_id,
std::unique_ptr<Browser::Bounds>* out_bounds) {
auto agent_host =
content::DevToolsAgentHost::GetForId(target_id.value_or(target_id_));
HeadlessWebContentsImpl* web_contents =
HeadlessWebContentsImpl::From(agent_host->GetWebContents());
if (!web_contents)
return Response::ServerError("No web contents for the given target id");
*out_window_id = web_contents->window_id();
*out_bounds = CreateBrowserBounds(web_contents);
return Response::Success();
}
Response BrowserHandler::GetWindowBounds(
int window_id,
std::unique_ptr<Browser::Bounds>* out_bounds) {
HeadlessWebContentsImpl* web_contents =
browser_->GetWebContentsForWindowId(window_id);
if (!web_contents)
return Response::ServerError("Browser window not found");
*out_bounds = CreateBrowserBounds(web_contents);
return Response::Success();
}
Response BrowserHandler::Close() {
content::GetUIThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(&HeadlessBrowserImpl::Shutdown, browser_->GetWeakPtr()));
return Response::Success();
}
Response BrowserHandler::SetWindowBounds(
int window_id,
std::unique_ptr<Browser::Bounds> window_bounds) {
HeadlessWebContentsImpl* web_contents =
browser_->GetWebContentsForWindowId(window_id);
if (!web_contents)
return Response::ServerError("Browser window not found");
const bool set_bounds = window_bounds->HasLeft() || window_bounds->HasTop() ||
window_bounds->HasWidth() ||
window_bounds->HasHeight();
std::optional<HeadlessWindowState> headless_window_state;
if (window_bounds->HasWindowState()) {
std::string protocol_window_state = window_bounds->GetWindowState().value();
headless_window_state = GetWindowStateFromProtocol(protocol_window_state);
if (!headless_window_state) {
return Response::InvalidParams("Invalid window state: " +
protocol_window_state);
}
if (set_bounds && headless_window_state != HeadlessWindowState::kNormal) {
return Response::InvalidParams(
"The 'minimized', 'maximized' and 'fullscreen' states cannot be "
"combined with 'left', 'top', 'width' or 'height'");
}
}
if (set_bounds &&
web_contents->GetWindowState() != HeadlessWindowState::kNormal) {
return Response::InvalidParams(
"To resize minimized/maximized/fullscreen window, restore it to normal "
"state first.");
}
// Set the requested or normal window state. Note that this will update window
// position according to the requested window state if necessary.
web_contents->SetWindowState(
headless_window_state.value_or(HeadlessWindowState::kNormal));
if (set_bounds) {
gfx::Rect bounds = web_contents->web_contents()->GetContainerBounds();
bounds.set_x(window_bounds->GetLeft(bounds.x()));
bounds.set_y(window_bounds->GetTop(bounds.y()));
bounds.set_width(window_bounds->GetWidth(bounds.width()));
bounds.set_height(window_bounds->GetHeight(bounds.height()));
web_contents->SetBounds(bounds);
}
return Response::Success();
}
protocol::Response BrowserHandler::SetDockTile(
std::optional<std::string> label,
std::optional<protocol::Binary> image) {
return Response::Success();
}
} // namespace protocol
} // namespace headless
|