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
|
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/exo/wm_helper.h"
#include "ash/frame_throttler/frame_throttling_controller.h"
#include "ash/public/cpp/shell_window_ids.h"
#include "ash/shell.h"
#include "ash/wm/tablet_mode/tablet_mode_controller.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/memory/singleton.h"
#include "base/time/time.h"
#include "chromeos/dbus/power/power_manager_client.h"
#include "chromeos/dbus/power_manager/backlight.pb.h"
#include "ui/aura/client/drag_drop_client.h"
#include "ui/aura/client/focus_client.h"
#include "ui/base/data_transfer_policy/data_transfer_endpoint.h"
#include "ui/base/dragdrop/drag_drop_types.h"
#include "ui/base/dragdrop/mojom/drag_drop_types.mojom.h"
#include "ui/compositor/compositor.h"
#include "ui/compositor/layer.h"
#include "ui/display/manager/display_configurator.h"
#include "ui/display/manager/display_manager.h"
#include "ui/display/types/display_snapshot.h"
#include "ui/display/util/display_util.h"
#include "ui/views/corewm/tooltip_controller.h"
#include "ui/wm/core/capture_controller.h"
#include "ui/wm/public/activation_client.h"
#include "ui/wm/public/tooltip_observer.h"
namespace exo {
namespace {
WMHelper* g_instance = nullptr;
aura::Window* GetPrimaryRoot() {
return ash::Shell::Get()->GetPrimaryRootWindow();
}
// Placeholder EDID for internal and virtual displays.
// The data isn't complete but sufficient for SurfaceFlinger not to complain.
// https://en.wikipedia.org/wiki/Extended_Display_Identification_Data
// TODO(b/299391925) We should derive this from the display info.
// clang-format off
constexpr uint8_t kFablicatedFallbackEDIDData[] = {
// [0-7] Fixed header pattern
0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00,
// [8-9] Manufacturer ID ("GGL"), [10-11] Manufacturer product code (0), [12-15] Serial (0)
0x1c, 0xec, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
// [16-17] Manufacture year (2023), [18-19] EDID version (1.4), [20-47] Not used in Android
0xFF, 0x21, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
// [48-53] Not used for SF, [54-55] Descriptor Header
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
// [56-58] Descriptor Header (Display name type), [59-63] display name value ("ArcFa")
0x00, 0xfc, 0x00, 0x45, 0x78, 0x6F, 0x46, 0x61,
// [64-70] display name value ("keEdid\n")
0x6b, 0x65, 0x45, 0x64, 0x69, 0x64, 0x0a, 0x00,
// [71-126] Non-mandatory fields (asciiText, serialNumber, extensions, etc)
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
// [127] checksum
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6,
};
// clang-format on
} // namespace
WMHelper::LifetimeManager::LifetimeManager() = default;
WMHelper::LifetimeManager::~LifetimeManager() = default;
void WMHelper::LifetimeManager::NotifyDestroyed() {
for (Observer& observer : observers_)
observer.OnDestroyed();
}
void WMHelper::LifetimeManager::AddObserver(Observer* observer) {
observers_.AddObserver(observer);
}
void WMHelper::LifetimeManager::RemoveObserver(Observer* observer) {
observers_.RemoveObserver(observer);
}
WMHelper::WMHelper() : vsync_timing_manager_(this) {
DCHECK(!g_instance);
g_instance = this;
auto* power_manager = chromeos::PowerManagerClient::Get();
// May be null in tests
if (power_manager) {
power_manager->AddObserver(this);
}
}
WMHelper::~WMHelper() {
auto* power_manager = chromeos::PowerManagerClient::Get();
if (power_manager) {
power_manager->RemoveObserver(this);
}
// Notify the user of lifetime manager first as
// observers may access the instance.
lifetime_manager_.NotifyDestroyed();
DCHECK(g_instance);
g_instance = nullptr;
}
// static
WMHelper* WMHelper::GetInstance() {
DCHECK(g_instance);
return g_instance;
}
// static
bool WMHelper::HasInstance() {
return !!g_instance;
}
////////////////////////////////////////////////////////////////////////////////
// WMHelper, public:
aura::Window* WMHelper::GetPrimaryDisplayContainer(int container_id) {
return ash::Shell::GetContainer(ash::Shell::GetPrimaryRootWindow(),
container_id);
}
void WMHelper::RegisterAppPropertyResolver(
std::unique_ptr<AppPropertyResolver> resolver) {
resolver_list_.push_back(std::move(resolver));
}
void WMHelper::PopulateAppProperties(
const AppPropertyResolver::Params& params,
ui::PropertyHandler& out_properties_container) {
for (auto& resolver : resolver_list_) {
resolver->PopulateProperties(params, out_properties_container);
}
}
void WMHelper::AddExoWindowObserver(ExoWindowObserver* observer) {
exo_window_observers_.AddObserver(observer);
}
void WMHelper::NotifyExoWindowCreated(aura::Window* window) {
for (auto& obs : exo_window_observers_) {
obs.OnExoWindowCreated(window);
}
}
void WMHelper::AddActivationObserver(wm::ActivationChangeObserver* observer) {
ash::Shell::Get()->activation_client()->AddObserver(observer);
}
void WMHelper::RemoveActivationObserver(
wm::ActivationChangeObserver* observer) {
ash::Shell::Get()->activation_client()->RemoveObserver(observer);
}
void WMHelper::AddTooltipObserver(wm::TooltipObserver* observer) {
ash::Shell::Get()->tooltip_controller()->AddObserver(observer);
}
void WMHelper::RemoveTooltipObserver(wm::TooltipObserver* observer) {
ash::Shell::Get()->tooltip_controller()->RemoveObserver(observer);
}
void WMHelper::AddFocusObserver(aura::client::FocusChangeObserver* observer) {
aura::client::GetFocusClient(GetPrimaryRoot())->AddObserver(observer);
}
void WMHelper::RemoveFocusObserver(
aura::client::FocusChangeObserver* observer) {
aura::client::GetFocusClient(GetPrimaryRoot())->RemoveObserver(observer);
}
void WMHelper::AddDragDropObserver(DragDropObserver* observer) {
drag_drop_observers_.AddObserver(observer);
}
void WMHelper::RemoveDragDropObserver(DragDropObserver* observer) {
drag_drop_observers_.RemoveObserver(observer);
}
void WMHelper::SetDragDropDelegate(aura::Window* window) {
aura::client::SetDragDropDelegate(window, this);
}
void WMHelper::ResetDragDropDelegate(aura::Window* window) {
aura::client::SetDragDropDelegate(window, nullptr);
}
void WMHelper::AddPowerObserver(WMHelper::PowerObserver* observer) {
power_observers_.AddObserver(observer);
}
void WMHelper::RemovePowerObserver(WMHelper::PowerObserver* observer) {
power_observers_.RemoveObserver(observer);
}
VSyncTimingManager& WMHelper::GetVSyncTimingManager() {
return vsync_timing_manager_;
}
const display::ManagedDisplayInfo& WMHelper::GetDisplayInfo(
int64_t display_id) const {
return ash::Shell::Get()->display_manager()->GetDisplayInfo(display_id);
}
const std::vector<uint8_t>& WMHelper::GetDisplayIdentificationData(
int64_t display_id) const {
const auto& displays =
ash::Shell::Get()->display_configurator()->cached_displays();
for (display::DisplaySnapshot* display : displays) {
if (display->display_id() == display_id) {
// This condition is true on virtual displays on VMs.
if (display->type() == display::DISPLAY_CONNECTION_TYPE_UNKNOWN ||
display->edid().empty()) {
// b/288216766
// TODO(b/299391925) instead of using kPlaceholderIdentificationData we
// should derive it from the display info of this DisplaySnapshot..
static const std::vector<uint8_t> kFablicatedFallbackEDID(
kFablicatedFallbackEDIDData,
kFablicatedFallbackEDIDData + sizeof(kFablicatedFallbackEDIDData));
return kFablicatedFallbackEDID;
}
return display->edid();
}
}
static std::vector<uint8_t> no_data;
return no_data;
}
bool WMHelper::GetActiveModeForDisplayId(
int64_t display_id,
display::ManagedDisplayMode* mode) const {
return ash::Shell::Get()->display_manager()->GetActiveModeForDisplayId(
display_id, mode);
}
aura::Window* WMHelper::GetActiveWindow() const {
return ash::Shell::Get()->activation_client()->GetActiveWindow();
}
aura::Window* WMHelper::GetFocusedWindow() const {
aura::client::FocusClient* focus_client =
aura::client::GetFocusClient(ash::Shell::GetPrimaryRootWindow());
return focus_client->GetFocusedWindow();
}
aura::client::CursorClient* WMHelper::GetCursorClient() {
return aura::client::GetCursorClient(ash::Shell::GetPrimaryRootWindow());
}
aura::client::DragDropClient* WMHelper::GetDragDropClient() {
return aura::client::GetDragDropClient(ash::Shell::GetPrimaryRootWindow());
}
void WMHelper::AddPreTargetHandler(ui::EventHandler* handler) {
ash::Shell::Get()->AddPreTargetHandler(handler);
}
void WMHelper::PrependPreTargetHandler(ui::EventHandler* handler) {
ash::Shell::Get()->AddPreTargetHandler(
handler, ui::EventTarget::Priority::kAccessibility);
}
void WMHelper::RemovePreTargetHandler(ui::EventHandler* handler) {
ash::Shell::Get()->RemovePreTargetHandler(handler);
}
void WMHelper::AddPostTargetHandler(ui::EventHandler* handler) {
ash::Shell::Get()->AddPostTargetHandler(handler);
}
void WMHelper::RemovePostTargetHandler(ui::EventHandler* handler) {
ash::Shell::Get()->RemovePostTargetHandler(handler);
}
bool WMHelper::InTabletMode() const {
return ash::Shell::Get()->tablet_mode_controller()->InTabletMode();
}
double WMHelper::GetDeviceScaleFactorForWindow(aura::Window* window) const {
if (default_scale_cancellation_) {
return GetDefaultDeviceScaleFactor();
}
const display::Screen* screen = display::Screen::GetScreen();
display::Display display = screen->GetDisplayNearestWindow(window);
return display.device_scale_factor();
}
void WMHelper::SetDefaultScaleCancellation(bool default_scale_cancellation) {
default_scale_cancellation_ = default_scale_cancellation;
}
void WMHelper::AddTabletModeObserver(ash::TabletModeObserver* observer) {
ash::Shell::Get()->tablet_mode_controller()->AddObserver(observer);
}
void WMHelper::RemoveTabletModeObserver(ash::TabletModeObserver* observer) {
ash::Shell::Get()->tablet_mode_controller()->RemoveObserver(observer);
}
void WMHelper::AddDisplayConfigurationObserver(
ash::WindowTreeHostManager::Observer* observer) {
ash::Shell::Get()->window_tree_host_manager()->AddObserver(observer);
}
void WMHelper::RemoveDisplayConfigurationObserver(
ash::WindowTreeHostManager::Observer* observer) {
ash::Shell::Get()->window_tree_host_manager()->RemoveObserver(observer);
}
void WMHelper::AddFrameThrottlingObserver() {
ash::FrameThrottlingController* controller =
ash::Shell::Get()->frame_throttling_controller();
if (!controller->HasArcObserver(&vsync_timing_manager_)) {
ash::Shell::Get()->frame_throttling_controller()->AddArcObserver(
&vsync_timing_manager_);
}
}
void WMHelper::RemoveFrameThrottlingObserver() {
ash::Shell::Get()->frame_throttling_controller()->RemoveArcObserver(
&vsync_timing_manager_);
}
WMHelper::LifetimeManager* WMHelper::GetLifetimeManager() {
return &lifetime_manager_;
}
aura::client::CaptureClient* WMHelper::GetCaptureClient() {
return wm::CaptureController::Get();
}
void WMHelper::OnDragEntered(const ui::DropTargetEvent& event) {
for (DragDropObserver& observer : drag_drop_observers_) {
observer.OnDragEntered(event);
}
}
aura::client::DragUpdateInfo WMHelper::OnDragUpdated(
const ui::DropTargetEvent& event) {
aura::client::DragUpdateInfo drag_info(
ui::DragDropTypes::DRAG_NONE,
ui::DataTransferEndpoint(ui::EndpointType::kUnknownVm));
for (DragDropObserver& observer : drag_drop_observers_) {
auto observer_drag_info = observer.OnDragUpdated(event);
drag_info.drag_operation =
drag_info.drag_operation | observer_drag_info.drag_operation;
if (observer_drag_info.data_endpoint.type() !=
drag_info.data_endpoint.type()) {
drag_info.data_endpoint = observer_drag_info.data_endpoint;
}
}
return drag_info;
}
void WMHelper::OnDragExited() {
for (DragDropObserver& observer : drag_drop_observers_) {
observer.OnDragExited();
}
}
aura::client::DragDropDelegate::DropCallback WMHelper::GetDropCallback(
const ui::DropTargetEvent& event) {
std::vector<WMHelper::DragDropObserver::DropCallback> drop_callbacks;
for (DragDropObserver& observer : drag_drop_observers_) {
WMHelper::DragDropObserver::DropCallback drop_cb =
observer.GetDropCallback();
if (!drop_cb.is_null()) {
drop_callbacks.push_back(std::move(drop_cb));
}
}
return base::BindOnce(&WMHelper::PerformDrop, weak_ptr_factory_.GetWeakPtr(),
std::move(drop_callbacks));
}
void WMHelper::SuspendDone(base::TimeDelta sleep_duration) {
for (PowerObserver& observer : power_observers_) {
observer.SuspendDone();
}
}
void WMHelper::ScreenBrightnessChanged(
const power_manager::BacklightBrightnessChange& change) {
for (PowerObserver& observer : power_observers_) {
observer.ScreenBrightnessChanged(change.percent());
}
}
void WMHelper::LidEventReceived(chromeos::PowerManagerClient::LidState state,
base::TimeTicks timestamp) {
for (PowerObserver& observer : power_observers_) {
observer.LidEventReceived(state ==
chromeos::PowerManagerClient::LidState::OPEN);
}
}
void WMHelper::AddVSyncParameterObserver(
mojo::PendingRemote<viz::mojom::VSyncParameterObserver> observer) {
GetPrimaryRoot()->layer()->GetCompositor()->AddVSyncParameterObserver(
std::move(observer));
}
void WMHelper::RemoveExoWindowObserver(ExoWindowObserver* observer) {
exo_window_observers_.RemoveObserver(observer);
}
void WMHelper::PerformDrop(
std::vector<WMHelper::DragDropObserver::DropCallback> drop_callbacks,
std::unique_ptr<ui::OSExchangeData> data,
ui::mojom::DragOperation& output_drag_op,
std::unique_ptr<ui::LayerTreeOwner> drag_image_layer_owner) {
for (auto& drop_cb : drop_callbacks) {
auto operation = ui::mojom::DragOperation::kNone;
std::move(drop_cb).Run(operation);
if (operation != ui::mojom::DragOperation::kNone) {
output_drag_op = operation;
}
}
}
float GetDefaultDeviceScaleFactor() {
if (!display::HasInternalDisplay()) {
return 1.0;
}
if (display::Display::HasForceDeviceScaleFactor()) {
return display::Display::GetForcedDeviceScaleFactor();
}
display::DisplayManager* display_manager =
ash::Shell::Get()->display_manager();
const display::ManagedDisplayInfo& display_info =
display_manager->GetDisplayInfo(display::Display::InternalDisplayId());
DCHECK(display_info.display_modes().size());
return display_info.display_modes()[0].device_scale_factor();
}
} // namespace exo
|