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
ash / wm / coral / coral_controller.cc [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/wm/coral/coral_controller.h"
#include <memory>
#include "ash/birch/coral_util.h"
#include "ash/constants/ash_switches.h"
#include "ash/public/cpp/coral_delegate.h"
#include "ash/public/cpp/desk_template.h"
#include "ash/public/cpp/saved_desk_delegate.h"
#include "ash/public/cpp/window_properties.h"
#include "ash/shell.h"
#include "ash/wm/coral/fake_coral_service.h"
#include "ash/wm/desks/desk.h"
#include "ash/wm/desks/desks_controller.h"
#include "ash/wm/desks/desks_histogram_enums.h"
#include "ash/wm/mru_window_tracker.h"
#include "ash/wm/overview/overview_controller.h"
#include "ash/wm/overview/overview_session.h"
#include "ash/wm/snap_group/snap_group.h"
#include "ash/wm/snap_group/snap_group_controller.h"
#include "base/command_line.h"
#include "chromeos/ash/components/mojo_service_manager/connection.h"
#include "chromeos/ash/services/coral/public/mojom/coral_service.mojom.h"
#include "components/app_constants/constants.h"
#include "components/app_restore/restore_data.h"
#include "components/desks_storage/core/desk_model.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "third_party/cros_system_api/mojo/service_constants.h"
#include "ui/aura/window_tracker.h"
#undef ENABLED_VLOG_LEVEL
#define ENABLED_VLOG_LEVEL 1
namespace ash {
namespace {
constexpr int kMinItemsInGroup = 4;
constexpr int kMaxItemsInGroup = 10;
constexpr int kMaxGroupsToGenerate = 2;
// Too many items in 1 request could result in poor performance.
constexpr size_t kMaxItemsInRequest = 100;
constexpr base::TimeDelta kRequestCoralServiceTimeout = base::Seconds(10);
aura::Window* FindAppWindowOnActiveDesk(const std::string& app_id) {
for (const auto& window :
Shell::Get()->mru_window_tracker()->BuildMruWindowList(kActiveDesk)) {
// Skip invalid windows.
if (!coral_util::CanMoveToNewDesk(window)) {
continue;
}
const std::string* app_id_key = window->GetProperty(kAppIDKey);
if (app_id_key && *app_id_key == app_id) {
return window;
}
}
return nullptr;
}
const char* SourceToString(CoralSource source) {
switch (source) {
case CoralSource::kInSession:
return "in-session";
case CoralSource::kPostLogin:
return "post-login";
case CoralSource::kUnknown:
return "unknown";
}
}
std::string GroupResponseToString(
const coral::mojom::GroupResponsePtr& group_response) {
const std::vector<coral::mojom::GroupPtr>& groups = group_response->groups;
std::string group_info = base::NumberToString(groups.size()) + " groups";
for (size_t i = 0; i < groups.size(); i++) {
group_info += ", group " + base::NumberToString(i + 1) + " has " +
base::NumberToString(groups[i]->entities.size()) +
" entities";
}
return group_info;
}
} // namespace
CoralRequest::CoralRequest() = default;
CoralRequest::~CoralRequest() = default;
std::string CoralRequest::ToString() const {
auto root = base::Value::Dict().Set(
"Coral request", coral_util::EntitiesToListValue(content_));
return root.DebugString();
}
CoralResponse::CoralResponse() = default;
CoralResponse::~CoralResponse() = default;
CoralController::CoralController() = default;
CoralController::~CoralController() = default;
void CoralController::PrepareResource() {
CoralService* coral_service = EnsureCoralService();
if (!coral_service) {
LOG(ERROR) << "Failed to connect to coral service.";
return;
}
coral_service->PrepareResource();
}
void CoralController::GenerateContentGroups(
const CoralRequest& request,
mojo::PendingRemote<coral::mojom::TitleObserver> title_observer,
CoralResponseCallback callback) {
// There couldn't be valid groups, skip generating and return an empty
// response.
if (request.content().size() < kMinItemsInGroup) {
std::move(callback).Run(std::make_unique<CoralResponse>());
return;
}
CoralService* coral_service = EnsureCoralService();
if (!coral_service) {
LOG(ERROR) << "Failed to connect to coral service.";
std::move(callback).Run(nullptr);
return;
}
auto group_request = coral::mojom::GroupRequest::New();
group_request->embedding_options = coral::mojom::EmbeddingOptions::New();
group_request->clustering_options = coral::mojom::ClusteringOptions::New();
group_request->clustering_options->min_items_in_cluster = kMinItemsInGroup;
group_request->clustering_options->max_items_in_cluster = kMaxItemsInGroup;
group_request->clustering_options->max_clusters = kMaxGroupsToGenerate;
group_request->title_generation_options =
coral::mojom::TitleGenerationOptions::New();
const size_t items_in_request =
std::min(request.content().size(), kMaxItemsInRequest);
for (size_t i = 0; i < items_in_request; i++) {
group_request->entities.push_back(request.content()[i]->Clone());
}
coral_service->Group(
std::move(group_request), std::move(title_observer),
base::BindOnce(&CoralController::HandleGroupResult,
weak_factory_.GetWeakPtr(), request.source(),
std::move(callback), base::TimeTicks::Now()));
}
void CoralController::CacheEmbeddings(const CoralRequest& request,
base::OnceCallback<void(bool)> callback) {
CoralService* coral_service = EnsureCoralService();
if (!coral_service) {
LOG(ERROR) << "Failed to connect to coral service.";
std::move(callback).Run(false);
return;
}
auto cache_embeddings_request = coral::mojom::CacheEmbeddingsRequest::New();
cache_embeddings_request->embedding_options =
coral::mojom::EmbeddingOptions::New();
for (const auto& entity : request.content()) {
cache_embeddings_request->entities.push_back(entity->Clone());
}
coral_service->CacheEmbeddings(
std::move(cache_embeddings_request),
base::BindOnce(&CoralController::HandleCacheEmbeddingsResult,
weak_factory_.GetWeakPtr(), std::move(callback)));
}
void CoralController::OpenNewDeskWithGroup(CoralResponse::Group group,
const Desk* source_desk) {
CHECK(!!source_desk);
if (group->entities.empty()) {
return;
}
DesksController* desks_controller = DesksController::Get();
CHECK(desks_controller->CanCreateDesks());
const coral_util::TabsAndApps tabs_apps =
coral_util::SplitContentData(group->entities);
int src_desk_index = desks_controller->GetDeskIndex(source_desk);
// First place all windows that should be moved in a set, this is so we can
// have O(1) lookups for snap groups later.
base::flat_set<aura::Window*> windows_set;
for (const auto& app : tabs_apps.apps) {
if (aura::Window* window = FindAppWindowOnActiveDesk(app.id)) {
windows_set.insert(window);
}
}
// Create the new desk to which the apps and tabs will be moved. And activate
// it.
Desk* new_desk = desks_controller->CreateNewDeskForCoralGroup(
base::UTF8ToUTF16(group->title.value_or(std::string())));
auto* snap_group_controller = SnapGroupController::Get();
{
// Don't update desk mini view of the `new_desk` until all the apps and tabs
// are moved to the `new_desk`.
auto new_desk_mini_view_pauser =
Desk::ScopedContentUpdateNotificationDisabler(
/*desks=*/{new_desk},
/*notify_when_destroyed=*/true);
for (aura::Window* window : windows_set) {
// If a window is part of a snap group, and the other window is not part
// of `windows_set` (i.e. not in the group), remove the snap group first
// otherwise both windows will be moved.
if (SnapGroup* snap_group =
snap_group_controller->GetSnapGroupForGivenWindow(window)) {
aura::Window* other_window = window == snap_group->window1()
? snap_group->window2()
: snap_group->window1();
CHECK(other_window);
if (!windows_set.contains(other_window)) {
snap_group_controller->RemoveSnapGroup(snap_group,
SnapGroupExitPoint::kCoral);
}
}
desks_controller->MoveWindowFromDeskAtIndexTo(
window, src_desk_index, new_desk, window->GetRootWindow(),
DesksMoveWindowFromActiveDeskSource::kCoral);
}
// Move tabs to a browser on the new desk.
Shell::Get()->coral_delegate()->MoveTabsInGroupToNewDesk(tabs_apps.tabs,
src_desk_index);
}
}
void CoralController::CreateSavedDeskFromGroup(coral::mojom::GroupPtr group,
aura::Window* root_window) {
std::vector<GURL> tab_urls;
base::flat_set<std::string> app_ids;
for (const coral::mojom::EntityPtr& entity : group->entities) {
if (entity->is_tab()) {
tab_urls.push_back(entity->get_tab()->url);
} else if (entity->is_app()) {
app_ids.insert(entity->get_app()->id);
}
}
// `RestoreDataCollector` has a callback because it is compatible with lacros
// which needs to be async. If there are no apps and just tabs, we can
// directly trigger the callback, but we have to create the template
// ourselves.
auto window_tracker = std::make_unique<aura::WindowTracker>(
aura::WindowTracker::WindowList{root_window});
if (app_ids.empty()) {
OnTemplateCreated(tab_urls, std::move(window_tracker),
/*desk_template=*/nullptr);
return;
}
DesksController::Get()->CaptureActiveDeskAsSavedDesk(
base::BindOnce(&CoralController::OnTemplateCreated,
weak_factory_.GetWeakPtr(), tab_urls,
std::move(window_tracker)),
DeskTemplateType::kCoral,
/*root_window_to_show=*/root_window, app_ids);
}
CoralController::CoralService* CoralController::EnsureCoralService() {
// Generate a fake service if --force-birch-fake-coral-backend is enabled.
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kForceBirchFakeCoralBackend)) {
if (!fake_service_) {
fake_service_ = std::make_unique<FakeCoralService>();
}
return fake_service_.get();
}
if (!coral_service_ && mojo_service_manager::IsServiceManagerBound()) {
auto pipe_handle = coral_service_.BindNewPipeAndPassReceiver().PassPipe();
coral_service_.reset_on_disconnect();
mojo_service_manager::GetServiceManagerProxy()->Request(
chromeos::mojo_services::kCrosCoralService, kRequestCoralServiceTimeout,
std::move(pipe_handle));
}
return coral_service_ ? coral_service_.get() : nullptr;
}
void CoralController::HandleGroupResult(CoralSource source,
CoralResponseCallback callback,
const base::TimeTicks& request_time,
coral::mojom::GroupResultPtr result) {
if (result->is_error()) {
LOG(ERROR) << "Coral group request failed with CoralError code: "
<< static_cast<int>(result->get_error());
std::move(callback).Run(nullptr);
return;
}
coral::mojom::GroupResponsePtr group_response =
std::move(result->get_response());
VLOG(1) << "Coral group " << SourceToString(source)
<< " request succeeded with " << GroupResponseToString(group_response)
<< ", in " << (base::TimeTicks::Now() - request_time).InMilliseconds()
<< " ms.";
auto response = std::make_unique<CoralResponse>();
response->set_source(source);
response->set_groups(std::move(group_response->groups));
std::move(callback).Run(std::move(response));
}
void CoralController::HandleCacheEmbeddingsResult(
base::OnceCallback<void(bool)> callback,
coral::mojom::CacheEmbeddingsResultPtr result) {
if (result->is_error()) {
LOG(ERROR) << "Coral cache embeddings request failed with CoralError code: "
<< static_cast<int>(result->get_error());
std::move(callback).Run(false);
return;
}
std::move(callback).Run(true);
}
void CoralController::OnTemplateCreated(
const std::vector<GURL>& tab_urls,
std::unique_ptr<aura::WindowTracker> window_tracker,
std::unique_ptr<DeskTemplate> desk_template) {
std::unique_ptr<DeskTemplate> new_template = std::move(desk_template);
// There is a chance the template is empty due to unsupported apps.
if (!new_template) {
if (tab_urls.empty()) {
return;
}
// TODO(crbug.com/365839564): The title can be nullopt and updated async
// after. Figure out how to handle that case.
new_template = std::make_unique<DeskTemplate>(
base::Uuid::GenerateRandomV4(), DeskTemplateSource::kUser,
"saved group", base::Time::Now(), DeskTemplateType::kCoral);
new_template->set_desk_restore_data(
std::make_unique<app_restore::RestoreData>());
}
auto* shell = Shell::Get();
if (!tab_urls.empty()) {
auto* restore_data = new_template->mutable_desk_restore_data();
auto& launch_list =
restore_data
->mutable_app_id_to_launch_list()[app_constants::kChromeAppId];
// All tabs go into the same window.
auto& app_restore_data =
launch_list[shell->coral_delegate()->GetChromeDefaultRestoreId()];
app_restore_data = std::make_unique<app_restore::AppRestoreData>();
app_restore_data->browser_extra_info.urls = std::move(tab_urls);
}
shell->saved_desk_delegate()->GetDeskModel()->AddOrUpdateEntry(
std::move(new_template),
base::BindOnce(&CoralController::ShowSavedDeskLibrary,
weak_factory_.GetWeakPtr(), std::move(window_tracker)));
}
void CoralController::ShowSavedDeskLibrary(
std::unique_ptr<aura::WindowTracker> window_tracker,
desks_storage::DeskModel::AddOrUpdateEntryStatus status,
std::unique_ptr<DeskTemplate> saved_desk) {
if (status != desks_storage::DeskModel::AddOrUpdateEntryStatus::kOk) {
return;
}
if (auto* overview_session = OverviewController::Get()->overview_session()) {
aura::Window* root_window = window_tracker->windows().empty()
? Shell::GetPrimaryRootWindow()
: window_tracker->windows()[0].get();
overview_session->ShowSavedDeskLibrary(saved_desk->uuid(),
/*saved_desk_name=*/u"",
root_window);
}
}
} // namespace ash