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
|
// Copyright 2014 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 "chrome/browser/extensions/display_info_provider_chromeos.h"
#include "ash/display/display_controller.h"
#include "ash/display/display_manager.h"
#include "ash/shell.h"
#include "base/message_loop/message_loop_proxy.h"
#include "base/strings/string_number_conversions.h"
#include "extensions/common/api/system_display.h"
#include "ui/gfx/display.h"
#include "ui/gfx/geometry/point.h"
#include "ui/gfx/geometry/rect.h"
using ash::DisplayManager;
namespace extensions {
using core_api::system_display::Bounds;
using core_api::system_display::DisplayUnitInfo;
using core_api::system_display::DisplayProperties;
using core_api::system_display::Insets;
namespace {
// Maximum allowed bounds origin absolute value.
const int kMaxBoundsOrigin = 200 * 1000;
// Checks if the given integer value is valid display rotation in degrees.
bool IsValidRotationValue(int rotation) {
return rotation == 0 || rotation == 90 || rotation == 180 || rotation == 270;
}
// Converts integer integer value in degrees to Rotation enum value.
gfx::Display::Rotation DegreesToRotation(int degrees) {
DCHECK(IsValidRotationValue(degrees));
switch (degrees) {
case 0:
return gfx::Display::ROTATE_0;
case 90:
return gfx::Display::ROTATE_90;
case 180:
return gfx::Display::ROTATE_180;
case 270:
return gfx::Display::ROTATE_270;
default:
return gfx::Display::ROTATE_0;
}
}
// Checks if the given point is over the radius vector described by it's end
// point |vector|. The point is over a vector if it's on its positive (left)
// side. The method sees a point on the same line as the vector as being over
// the vector.
bool PointIsOverRadiusVector(const gfx::Point& point,
const gfx::Point& vector) {
// |point| is left of |vector| if its radius vector's scalar product with a
// vector orthogonal (and facing the positive side) to |vector| is positive.
//
// An orthogonal vector of (a, b) is (b, -a), as the scalar product of these
// two is 0.
// So, (x, y) is over (a, b) if x * b + y * (-a) >= 0, which is equivalent to
// x * b >= y * a.
return static_cast<int64>(point.x()) * static_cast<int64>(vector.y()) >=
static_cast<int64>(point.y()) * static_cast<int64>(vector.x());
}
// Created ash::DisplayLayout value for |rectangle| compared to the |reference|
// rectangle.
// The layout consists of two values:
// - position: Whether the rectangle is positioned left, right, over or under
// the reference.
// - offset: The rectangle's offset from the reference origin along the axis
// opposite the position direction (if the rectangle is left or right along
// y-axis, otherwise along x-axis).
// The rectangle's position is calculated by dividing the space in areas defined
// by the |reference|'s diagonals and finding the area |rectangle|'s center
// point belongs. If the |rectangle| in the calculated layout does not share a
// part of the bounds with the |reference|, the |rectangle| position in set to
// the more suitable neighboring position (e.g. if |rectangle| is completely
// over the |reference| top bound, it will be set to TOP) and the layout is
// recalculated with the new position. This is to handle case where the
// rectangle shares an edge with the reference, but it's center is not in the
// same area as the reference's edge, e.g.
//
// +---------------------+
// | |
// | REFERENCE |
// | |
// | |
// +---------------------+
// +-------------------------------------------------+
// | RECTANGLE x |
// +-------------------------------------------------+
//
// The rectangle shares an egde with the reference's bottom edge, but it's
// center point is in the left area.
ash::DisplayLayout GetLayoutForRectangles(const gfx::Rect& reference,
const gfx::Rect& rectangle) {
// Translate coordinate system so origin is in the reference's top left point
// (so the reference's down-diagonal vector starts in the (0, 0)) and scale it
// up by two (to avoid division when calculating the rectangle's center
// point).
gfx::Point center(2 * (rectangle.x() - reference.x()) + rectangle.width(),
2 * (rectangle.y() - reference.y()) + rectangle.height());
gfx::Point down_diag(2 * reference.width(), 2 * reference.height());
bool is_top_right = PointIsOverRadiusVector(center, down_diag);
// Translate the coordinating system again, so the bottom right point of the
// reference is origin (so the references up-diagonal starts at (0, 0)).
// Note that the coordinate system is scaled by 2.
center.Offset(0, -2 * reference.height());
// Choose the vector orientation so the points on the diagonal are considered
// to be left.
gfx::Point up_diag(-2 * reference.width(), 2 * reference.height());
bool is_bottom_right = PointIsOverRadiusVector(center, up_diag);
ash::DisplayLayout::Position position;
if (is_top_right) {
position =
is_bottom_right ? ash::DisplayLayout::RIGHT : ash::DisplayLayout::TOP;
} else {
position =
is_bottom_right ? ash::DisplayLayout::BOTTOM : ash::DisplayLayout::LEFT;
}
// If the rectangle with the calculated position would not have common side
// with the reference, try to position it so it shares another edge with the
// reference.
if (is_top_right == is_bottom_right) {
if (rectangle.y() > reference.y() + reference.height()) {
// The rectangle is left or right, but completely under the reference.
position = ash::DisplayLayout::BOTTOM;
} else if (rectangle.y() + rectangle.height() < reference.y()) {
// The rectangle is left or right, but completely over the reference.
position = ash::DisplayLayout::TOP;
}
} else {
if (rectangle.x() > reference.x() + reference.width()) {
// The rectangle is over or under, but completely right of the reference.
position = ash::DisplayLayout::RIGHT;
} else if (rectangle.x() + rectangle.width() < reference.x()) {
// The rectangle is over or under, but completely left of the reference.
position = ash::DisplayLayout::LEFT;
}
}
if (position == ash::DisplayLayout::LEFT ||
position == ash::DisplayLayout::RIGHT) {
return ash::DisplayLayout::FromInts(position, rectangle.y());
} else {
return ash::DisplayLayout::FromInts(position, rectangle.x());
}
}
// Updates the display layout for the target display in reference to the primary
// display.
void UpdateDisplayLayout(const gfx::Rect& primary_display_bounds,
int primary_display_id,
const gfx::Rect& target_display_bounds,
int target_display_id) {
ash::DisplayLayout layout =
GetLayoutForRectangles(primary_display_bounds, target_display_bounds);
ash::Shell::GetInstance()->display_manager()->SetLayoutForCurrentDisplays(
layout);
}
// Validates that parameters passed to the SetInfo function are valid for the
// desired display and the current display manager state.
// Returns whether the parameters are valid. On failure |error| is set to the
// error message.
bool ValidateParamsForDisplay(const DisplayProperties& info,
const gfx::Display& display,
DisplayManager* display_manager,
int64 primary_display_id,
std::string* error) {
bool is_primary = display.id() == primary_display_id ||
(info.is_primary && *info.is_primary);
// If mirroring source id is set, a display with the given id should exist,
// and if should not be the same as the target display's id.
if (info.mirroring_source_id && !info.mirroring_source_id->empty()) {
int64 mirroring_id;
if (!base::StringToInt64(*info.mirroring_source_id, &mirroring_id) ||
display_manager->GetDisplayForId(mirroring_id).id() ==
gfx::Display::kInvalidDisplayID) {
*error = "Display " + *info.mirroring_source_id + " not found.";
return false;
}
if (*info.mirroring_source_id == base::Int64ToString(display.id())) {
*error = "Not allowed to mirror self.";
return false;
}
}
// If mirroring source parameter is specified, no other parameter should be
// set as when the mirroring is applied the display list could change.
if (info.mirroring_source_id &&
(info.is_primary || info.bounds_origin_x || info.bounds_origin_y ||
info.rotation || info.overscan)) {
*error = "No other parameter should be set alongside mirroringSourceId.";
return false;
}
// The bounds cannot be changed for the primary display and should be inside
// a reasonable bounds. Note that the display is considered primary if the
// info has 'isPrimary' parameter set, as this will be applied before bounds
// origin changes.
if (info.bounds_origin_x || info.bounds_origin_y) {
if (is_primary) {
*error = "Bounds origin not allowed for the primary display.";
return false;
}
if (info.bounds_origin_x && (*info.bounds_origin_x > kMaxBoundsOrigin ||
*info.bounds_origin_x < -kMaxBoundsOrigin)) {
*error = "Bounds origin x out of bounds.";
return false;
}
if (info.bounds_origin_y && (*info.bounds_origin_y > kMaxBoundsOrigin ||
*info.bounds_origin_y < -kMaxBoundsOrigin)) {
*error = "Bounds origin y out of bounds.";
return false;
}
}
// Verify the rotation value is valid.
if (info.rotation && !IsValidRotationValue(*info.rotation)) {
*error = "Invalid rotation.";
return false;
}
// Overscan cannot be changed for the internal display, and should be at most
// half of the screen size.
if (info.overscan) {
if (display.IsInternal()) {
*error = "Overscan changes not allowed for the internal monitor.";
return false;
}
if (info.overscan->left < 0 || info.overscan->top < 0 ||
info.overscan->right < 0 || info.overscan->bottom < 0) {
*error = "Negative overscan not allowed.";
return false;
}
const gfx::Insets overscan =
display_manager->GetOverscanInsets(display.id());
int screen_width = display.bounds().width() + overscan.width();
int screen_height = display.bounds().height() + overscan.height();
if ((info.overscan->left + info.overscan->right) * 2 > screen_width) {
*error = "Horizontal overscan is more than half of the screen width.";
return false;
}
if ((info.overscan->top + info.overscan->bottom) * 2 > screen_height) {
*error = "Vertical overscan is more than half of the screen height.";
return false;
}
}
return true;
}
// Gets the display with the provided string id.
gfx::Display GetTargetDisplay(const std::string& display_id_str,
DisplayManager* manager) {
int64 display_id;
if (!base::StringToInt64(display_id_str, &display_id)) {
// This should return invalid display.
return gfx::Display();
}
return manager->GetDisplayForId(display_id);
}
} // namespace
DisplayInfoProviderChromeOS::DisplayInfoProviderChromeOS() {
}
DisplayInfoProviderChromeOS::~DisplayInfoProviderChromeOS() {
}
bool DisplayInfoProviderChromeOS::SetInfo(const std::string& display_id_str,
const DisplayProperties& info,
std::string* error) {
DisplayManager* display_manager =
ash::Shell::GetInstance()->display_manager();
DCHECK(display_manager);
ash::DisplayController* display_controller =
ash::Shell::GetInstance()->display_controller();
DCHECK(display_controller);
const gfx::Display target = GetTargetDisplay(display_id_str, display_manager);
if (target.id() == gfx::Display::kInvalidDisplayID) {
*error = "Display not found.";
return false;
}
int64 display_id = target.id();
// TODO(scottmg): Native is wrong http://crbug.com/133312
const gfx::Display& primary =
gfx::Screen::GetNativeScreen()->GetPrimaryDisplay();
if (!ValidateParamsForDisplay(
info, target, display_manager, primary.id(), error)) {
return false;
}
// Process 'isPrimary' parameter.
if (info.is_primary && *info.is_primary && target.id() != primary.id())
display_controller->SetPrimaryDisplayId(display_id);
// Process 'mirroringSourceId' parameter.
if (info.mirroring_source_id &&
info.mirroring_source_id->empty() == display_manager->IsMirrored()) {
display_controller->ToggleMirrorMode();
}
// Process 'overscan' parameter.
if (info.overscan) {
display_manager->SetOverscanInsets(display_id,
gfx::Insets(info.overscan->top,
info.overscan->left,
info.overscan->bottom,
info.overscan->right));
}
// Process 'rotation' parameter.
if (info.rotation) {
display_manager->SetDisplayRotation(display_id,
DegreesToRotation(*info.rotation));
}
// Process new display origin parameters.
gfx::Point new_bounds_origin = target.bounds().origin();
if (info.bounds_origin_x)
new_bounds_origin.set_x(*info.bounds_origin_x);
if (info.bounds_origin_y)
new_bounds_origin.set_y(*info.bounds_origin_y);
if (new_bounds_origin != target.bounds().origin()) {
gfx::Rect target_bounds = target.bounds();
target_bounds.Offset(new_bounds_origin.x() - target.bounds().x(),
new_bounds_origin.y() - target.bounds().y());
UpdateDisplayLayout(
primary.bounds(), primary.id(), target_bounds, target.id());
}
return true;
}
void DisplayInfoProviderChromeOS::UpdateDisplayUnitInfoForPlatform(
const gfx::Display& display,
extensions::core_api::system_display::DisplayUnitInfo* unit) {
ash::DisplayManager* display_manager =
ash::Shell::GetInstance()->display_manager();
unit->name = display_manager->GetDisplayNameForId(display.id());
if (display_manager->IsMirrored()) {
unit->mirroring_source_id =
base::Int64ToString(display_manager->mirrored_display_id());
}
// TODO(hshi): determine the DPI of the screen.
const float kDpi96 = 96.0;
const float dpi = display.device_scale_factor() * kDpi96;
unit->dpi_x = dpi;
unit->dpi_y = dpi;
const gfx::Insets overscan_insets =
display_manager->GetOverscanInsets(display.id());
unit->overscan.left = overscan_insets.left();
unit->overscan.top = overscan_insets.top();
unit->overscan.right = overscan_insets.right();
unit->overscan.bottom = overscan_insets.bottom();
}
gfx::Screen* DisplayInfoProviderChromeOS::GetActiveScreen() {
return ash::Shell::GetScreen();
}
// static
DisplayInfoProvider* DisplayInfoProvider::Create() {
return new DisplayInfoProviderChromeOS();
}
} // namespace extensions
|