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
|
// 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.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/390223051): Remove C-library calls to fix the errors.
#pragma allow_unsafe_libc_calls
#endif
#include "ui/ozone/demo/window_manager.h"
#include <memory>
#include <utility>
#include "base/command_line.h"
#include "base/functional/bind.h"
#include "base/logging.h"
#include "base/task/single_thread_task_runner.h"
#include "ui/display/types/display_configuration_params.h"
#include "ui/display/types/display_snapshot.h"
#include "ui/display/types/native_display_delegate.h"
#include "ui/ozone/demo/demo_window.h"
#include "ui/ozone/public/ozone_platform.h"
namespace ui {
namespace {
const int kTestWindowWidth = 800;
const int kTestWindowHeight = 600;
const char kWindowSize[] = "window-size";
} // namespace
WindowManager::WindowManager(std::unique_ptr<RendererFactory> renderer_factory,
base::OnceClosure quit_closure)
: delegate_(
ui::OzonePlatform::GetInstance()->CreateNativeDisplayDelegate()),
quit_closure_(std::move(quit_closure)),
renderer_factory_(std::move(renderer_factory)) {
if (!renderer_factory_->Initialize())
LOG(FATAL) << "Failed to initialize renderer factory";
if (delegate_) {
delegate_->AddObserver(this);
delegate_->Initialize();
OnConfigurationChanged();
} else {
LOG(WARNING) << "No display delegate; falling back to test window";
int width = kTestWindowWidth;
int height = kTestWindowHeight;
sscanf(base::CommandLine::ForCurrentProcess()
->GetSwitchValueASCII(kWindowSize)
.c_str(),
"%dx%d", &width, &height);
DemoWindow* window = new DemoWindow(this, renderer_factory_.get(),
gfx::Rect(gfx::Size(width, height)));
window->Start();
}
}
WindowManager::~WindowManager() {
if (delegate_)
delegate_->RemoveObserver(this);
}
void WindowManager::Quit() {
std::move(quit_closure_).Run();
}
void WindowManager::OnConfigurationChanged() {
if (is_configuring_) {
should_configure_ = true;
return;
}
is_configuring_ = true;
delegate_->GetDisplays(base::BindOnce(&WindowManager::OnDisplaysAcquired,
base::Unretained(this)));
}
void WindowManager::OnDisplaySnapshotsInvalidated() {}
void WindowManager::OnDisplaysAcquired(
const std::vector<raw_ptr<display::DisplaySnapshot, VectorExperimental>>&
displays) {
windows_.clear();
gfx::Point origin;
for (display::DisplaySnapshot* display : displays) {
if (!display->native_mode()) {
LOG(ERROR) << "Display " << display->display_id()
<< " doesn't have a native mode";
continue;
}
display::DisplayConfigurationParams display_config_params(
display->display_id(), origin, display->native_mode());
std::vector<display::DisplayConfigurationParams> config_request;
config_request.push_back(std::move(display_config_params));
delegate_->Configure(config_request,
base::BindOnce(&WindowManager::OnDisplayConfigured,
base::Unretained(this)),
{display::ModesetFlag::kTestModeset,
display::ModesetFlag::kCommitModeset});
origin.Offset(display->native_mode()->size().width(), 0);
}
is_configuring_ = false;
if (should_configure_) {
should_configure_ = false;
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, base::BindOnce(&WindowManager::OnConfigurationChanged,
base::Unretained(this)));
}
}
void WindowManager::OnDisplayConfigured(
const std::vector<display::DisplayConfigurationParams>& request_results,
bool config_success) {
CHECK_EQ(request_results.size(), 1u);
const auto& request = request_results[0];
const gfx::Rect bounds(request.origin, request.mode->size());
if (config_success) {
std::unique_ptr<DemoWindow> window(
new DemoWindow(this, renderer_factory_.get(), bounds));
window->Start();
windows_.push_back(std::move(window));
} else {
LOG(ERROR) << "Failed to configure display at " << bounds.ToString();
}
}
} // namespace ui
|