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
ash / wm / desks / desks_util.cc [blame]
// Copyright 2019 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/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "ash/wm/desks/desks_util.h"
#include <array>
#include <optional>
#include "ash/constants/ash_features.h"
#include "ash/shell.h"
#include "ash/wm/desks/desk.h"
#include "ash/wm/desks/desk_bar_view_base.h"
#include "ash/wm/desks/desks_controller.h"
#include "ash/wm/desks/overview_desk_bar_view.h"
#include "ash/wm/float/float_controller.h"
#include "ash/wm/overview/overview_controller.h"
#include "ash/wm/overview/overview_grid.h"
#include "ash/wm/overview/overview_session.h"
#include "ash/wm/overview/overview_types.h"
#include "ash/wm/overview/overview_utils.h"
#include "ash/wm/window_state.h"
#include "ash/wm/window_util.h"
#include "base/check.h"
#include "base/containers/adapters.h"
#include "base/memory/raw_ptr.h"
#include "chromeos/constants/chromeos_features.h"
#include "ui/aura/client/aura_constants.h"
#include "ui/aura/window.h"
#include "ui/compositor/layer.h"
#include "ui/display/screen.h"
namespace ash {
namespace desks_util {
namespace {
constexpr std::array<int, kDesksUpperLimit> kDesksContainersIds = {
kShellWindowId_DeskContainerA, kShellWindowId_DeskContainerB,
kShellWindowId_DeskContainerC, kShellWindowId_DeskContainerD,
kShellWindowId_DeskContainerE, kShellWindowId_DeskContainerF,
kShellWindowId_DeskContainerG, kShellWindowId_DeskContainerH,
kShellWindowId_DeskContainerI, kShellWindowId_DeskContainerJ,
kShellWindowId_DeskContainerK, kShellWindowId_DeskContainerL,
kShellWindowId_DeskContainerM, kShellWindowId_DeskContainerN,
kShellWindowId_DeskContainerO, kShellWindowId_DeskContainerP,
};
// Default max number of desks (that is, enable-16-desks is off).
constexpr size_t kDesksDefaultLimit = 8;
} // namespace
size_t GetMaxNumberOfDesks() {
return features::Is16DesksEnabled() ? kDesksUpperLimit : kDesksDefaultLimit;
}
std::vector<int> GetDesksContainersIds() {
return std::vector<int>(kDesksContainersIds.begin(),
kDesksContainersIds.begin() + GetMaxNumberOfDesks());
}
std::vector<aura::Window*> GetDesksContainers(aura::Window* root) {
DCHECK(root);
DCHECK(root->IsRootWindow());
std::vector<aura::Window*> containers;
for (const auto& id : GetDesksContainersIds()) {
auto* container = root->GetChildById(id);
DCHECK(container);
containers.push_back(container);
}
return containers;
}
const char* GetDeskContainerName(int container_id) {
CHECK(IsDeskContainerId(container_id));
static const char* kDeskContainerNames[] = {
"Desk_Container_A", "Desk_Container_B", "Desk_Container_C",
"Desk_Container_D", "Desk_Container_E", "Desk_Container_F",
"Desk_Container_G", "Desk_Container_H", "Desk_Container_I",
"Desk_Container_J", "Desk_Container_K", "Desk_Container_L",
"Desk_Container_M", "Desk_Container_N", "Desk_Container_O",
"Desk_Container_P",
};
return kDeskContainerNames[container_id - kShellWindowId_DeskContainerA];
}
bool IsDeskContainer(const aura::Window* container) {
DCHECK(container);
return IsDeskContainerId(container->GetId());
}
bool IsDeskContainerId(int id) {
return id >= kShellWindowId_DeskContainerA &&
id <= kShellWindowId_DeskContainerP;
}
int GetActiveDeskContainerId() {
auto* controller = DesksController::Get();
DCHECK(controller);
return controller->active_desk()->container_id();
}
ASH_EXPORT bool IsActiveDeskContainer(const aura::Window* container) {
DCHECK(container);
return container->GetId() == GetActiveDeskContainerId();
}
aura::Window* GetActiveDeskContainerForRoot(aura::Window* root) {
DCHECK(root);
return root->GetChildById(GetActiveDeskContainerId());
}
ASH_EXPORT bool BelongsToActiveDesk(aura::Window* window) {
auto* controller = DesksController::Get();
DCHECK(controller);
return BelongsToDesk(window, controller->active_desk());
}
ASH_EXPORT bool BelongsToDesk(aura::Window* window, const Desk* desk) {
DCHECK(window);
// This function may be called early on during window construction. If there
// is no parent, then it's not part of any desk yet. See b/260851890 for more
// details.
if (!window->parent()) {
return false;
}
auto* window_state = WindowState::Get(window);
// A floated window may be associated with a desk, but they would be parented
// to the float container.
if (window_state && window_state->IsFloated()) {
// When restoring floated window, this will be called when window is not
// assigned to a desk by float controller yet. Only return `desk` when it
// exists.
// Note: in above case, `window` still belongs to desk container and
// can be checked in statements below.
if (auto* associated_desk =
Shell::Get()->float_controller()->FindDeskOfFloatedWindow(window)) {
return associated_desk->container_id() == desk->container_id();
}
}
aura::Window* desk_container = GetDeskContainerForContext(window);
return desk_container && desk_container->GetId() == desk->container_id();
}
std::optional<uint64_t> GetActiveDeskLacrosProfileId() {
std::optional<uint64_t> id;
if (auto* desk_controller = DesksController::Get();
desk_controller && chromeos::features::IsDeskProfilesEnabled()) {
id = desk_controller->active_desk()->lacros_profile_id();
}
return id;
}
aura::Window* GetDeskContainerForContext(aura::Window* context) {
DCHECK(context);
while (context) {
if (IsDeskContainerId(context->GetId()))
return context;
context = context->parent();
}
return nullptr;
}
const Desk* GetDeskForContext(aura::Window* context) {
DCHECK(context);
if (aura::Window* context_desk = GetDeskContainerForContext(context)) {
for (auto& desk : DesksController::Get()->desks()) {
if (desk->container_id() == context_desk->GetId()) {
return desk.get();
}
}
}
if (WindowState::Get(context)->IsFloated())
return Shell::Get()->float_controller()->FindDeskOfFloatedWindow(context);
return nullptr;
}
bool ShouldDesksBarBeCreated() {
// Never show desk bar in an informed restore session.
auto* overview_session = GetOverviewSession();
if (overview_session && overview_session->enter_exit_overview_type() ==
OverviewEnterExitType::kInformedRestore) {
return false;
}
// If it is in tablet mode, hide the desk bar in split view. Otherwise, only
// show desk bar with more than one desks.
if (display::Screen::GetScreen()->InTabletMode()) {
for (auto& root : Shell::GetAllRootWindows()) {
if (SplitViewController::Get(root)->InSplitViewMode()) {
return false;
}
}
return DesksController::Get()->desks().size() > 1;
}
// If in clamshell mode, and overview was started by faster splitscreen setup,
// don't show the desk bar.
return !window_util::IsInFasterSplitScreenSetupSession();
}
bool ShouldRenderDeskBarWithMiniViews() {
return ShouldDesksBarBeCreated() &&
DeskBarViewBase::GetPreferredState(DeskBarViewBase::Type::kOverview) ==
DeskBarViewBase::State::kExpanded;
}
ui::Compositor* GetSelectedCompositorForPerformanceMetrics() {
// Favor the compositor associated with the active window's root window (if
// any), or that of the primary root window.
auto* active_window = window_util::GetActiveWindow();
auto* selected_root = active_window && active_window->GetRootWindow()
? active_window->GetRootWindow()
: Shell::GetPrimaryRootWindow();
DCHECK(selected_root);
return selected_root->layer()->GetCompositor();
}
bool IsDraggingAnyDesk() {
OverviewSession* overview_session =
Shell::Get()->overview_controller()->overview_session();
if (!overview_session)
return false;
for (auto& grid : overview_session->grid_list()) {
const OverviewDeskBarView* desks_bar_view = grid->desks_bar_view();
if (desks_bar_view && desks_bar_view->IsDraggingDesk())
return true;
}
return false;
}
bool IsWindowVisibleOnAllWorkspaces(const aura::Window* window) {
return window->GetProperty(aura::client::kWindowWorkspaceKey) ==
aura::client::kWindowWorkspaceVisibleOnAllWorkspaces;
}
bool IsZOrderTracked(aura::Window* window) {
return window->GetType() == aura::client::WindowType::WINDOW_TYPE_NORMAL &&
window->GetProperty(aura::client::kZOrderingKey) ==
ui::ZOrderLevel::kNormal;
}
std::optional<size_t> GetWindowZOrder(
const std::vector<raw_ptr<aura::Window, VectorExperimental>>& windows,
aura::Window* window) {
size_t position = 0;
for (aura::Window* w : base::Reversed(windows)) {
if (IsZOrderTracked(w)) {
if (w == window)
return position;
++position;
}
}
return std::nullopt;
}
} // namespace desks_util
} // namespace ash