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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
ash / birch / birch_coral_provider.cc [blame]
// Copyright 2024 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/birch/birch_coral_provider.h"
#include <unordered_set>
#include <variant>
#include "ash/birch/birch_item.h"
#include "ash/birch/birch_model.h"
#include "ash/birch/coral_item_remover.h"
#include "ash/birch/coral_util.h"
#include "ash/constants/ash_pref_names.h"
#include "ash/constants/ash_switches.h"
#include "ash/public/cpp/app_types_util.h"
#include "ash/public/cpp/saved_desk_delegate.h"
#include "ash/public/cpp/tab_cluster/tab_cluster_ui_controller.h"
#include "ash/public/cpp/tab_cluster/tab_cluster_ui_item.h"
#include "ash/public/cpp/window_properties.h"
#include "ash/session/session_controller_impl.h"
#include "ash/shell.h"
#include "ash/wm/coral/coral_controller.h"
#include "ash/wm/desks/desk.h"
#include "ash/wm/desks/desks_controller.h"
#include "ash/wm/desks/desks_util.h"
#include "ash/wm/desks/templates/saved_desk_util.h"
#include "ash/wm/mru_window_tracker.h"
#include "ash/wm/window_restore/informed_restore_contents_data.h"
#include "ash/wm/window_restore/informed_restore_controller.h"
#include "base/command_line.h"
#include "base/strings/utf_string_conversions.h"
#include "chromeos/ash/services/coral/public/mojom/coral_service.mojom.h"
#include "chromeos/ui/base/window_properties.h"
#include "components/prefs/pref_service.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "ui/wm/core/window_util.h"
// Implement custom hash for EntityPtr because GURL doesn't support hash.
// We can dedup by possibly_invalid_spec() as it's how we transform GURL
// back to strings.
namespace std {
template <>
struct hash<coral::mojom::EntityPtr> {
inline size_t operator()(const coral::mojom::EntityPtr& entity) const {
if (entity->is_app()) {
return std::hash<coral::mojom::AppPtr>{}(entity->get_app());
}
const coral::mojom::TabPtr& tab = entity->get_tab();
std::size_t h1 = std::hash<std::string>{}(tab->title);
std::size_t h2 = std::hash<std::string>{}(tab->url.possibly_invalid_spec());
return h1 ^ (h2 << 1);
}
};
} // namespace std
namespace ash {
namespace {
constexpr size_t kMaxClusterCount = 2;
// Persist post-login clusters for 15 minutes.
constexpr base::TimeDelta kPostLoginClustersLifespan = base::Minutes(15);
// Persist second post-login cluster for 10 minutes after restoring the first
// cluster.
constexpr base::TimeDelta kPostLoginSecondClusterLifespan = base::Minutes(10);
BirchCoralProvider* g_instance = nullptr;
constexpr char16_t kTitlePlaceholder[] = u"Suggested Group";
// The minimum number of entities in a group that allows user to remove an
// entity.
constexpr size_t kMinGroupSizeToRemove = 3;
bool HasValidClusterCount(size_t num_clusters) {
return num_clusters <= kMaxClusterCount;
}
bool IsBrowserWindow(aura::Window* window) {
return window->GetProperty(chromeos::kAppTypeKey) ==
chromeos::AppType::BROWSER;
}
bool IsWebAppWindow(aura::Window* window) {
const chromeos::AppType app_type = window->GetProperty(chromeos::kAppTypeKey);
return app_type == chromeos::AppType::CHROME_APP ||
app_type == chromeos::AppType::SYSTEM_APP;
}
bool IsNonWebAppWindow(aura::Window* window) {
return !IsBrowserWindow(window) && !IsWebAppWindow(window);
}
// Filters out tabs that should not be embedded/clustered.
bool IsValidTab(TabClusterUIItem* tab) {
aura::Window* browser_window = tab->current_info().browser_window;
// Filter out the browser window which is not on the active desk.
if (!desks_util::BelongsToActiveDesk(browser_window)) {
return false;
}
// Filter out non-browser tab info.
if (!IsBrowserWindow(browser_window)) {
return false;
}
// Filter out browser window whose tabs cannot move to the new desk.
if (!coral_util::CanMoveToNewDesk(browser_window)) {
return false;
}
// Filter out the unloaded tab.
if (tab->current_info().is_loading) {
return false;
}
return true;
}
// Filters out apps that should not be grouped.
bool IsValidApp(aura::Window* window) {
// Skip transient windows.
if (wm::GetTransientParent(window)) {
return false;
}
// Skip browser windows.
if (IsBrowserWindow(window)) {
return false;
}
// Skip the window that cannot move to the new desk.
if (!coral_util::CanMoveToNewDesk(window)) {
return false;
}
// Skip the window that has no app ID.
if (!window->GetProperty(kAppIDKey)) {
return false;
}
return true;
}
// Checks whether `tab` has been meaningfully updated and we should generate
// and cache a new embedding in the backend.
bool ShouldCreateEmbedding(TabClusterUIItem* tab) {
return tab->current_info().title != tab->old_info().title ||
tab->current_info().source != tab->old_info().source ||
tab->current_info().is_loading != tab->old_info().is_loading;
}
// Creates an AppPtr from given `window` with app title and app ID.
coral::mojom::AppPtr GetBasicAppInfoFromWindow(aura::Window* window) {
CHECK(IsValidApp(window));
const std::string* app_id_key = window->GetProperty(kAppIDKey);
auto app_mojom = coral::mojom::App::New();
app_mojom->title =
IsArcWindow(window)
? base::UTF16ToUTF8(window->GetTitle())
: Shell::Get()->saved_desk_delegate()->GetAppShortName(*app_id_key);
app_mojom->id = std::move(*app_id_key);
return app_mojom;
}
// Gets the data of the tabs, PWAs, and SWAs opened on the active desk.
// Unordered set is used because we need to dedup identical entities, but we
// don't need to sort them.
std::unordered_set<coral::mojom::EntityPtr> GetInSessionTabAndWebAppData() {
// TODO(zxdan) add more tab metadata, app data,
// and handle in-session use cases.
std::unordered_set<coral::mojom::EntityPtr> entities;
const TabClusterUIController* tab_cluster_ui_controller =
Shell::Get()->tab_cluster_ui_controller();
if (!tab_cluster_ui_controller) {
return entities;
}
for (const std::unique_ptr<TabClusterUIItem>& tab :
tab_cluster_ui_controller->tab_items()) {
const TabClusterUIItem::Info& item_info = tab->current_info();
if (IsValidTab(tab.get())) {
auto tab_entity = coral::mojom::Entity::NewTab(coral::mojom::Tab::New(
/*title=*/item_info.title, /*url=*/GURL(item_info.source)));
entities.emplace(std::move(tab_entity));
} else if (IsValidApp(item_info.browser_window) &&
IsWebAppWindow(item_info.browser_window)) {
coral::mojom::AppPtr app_mojom =
GetBasicAppInfoFromWindow(item_info.browser_window);
// TODO(zxdan|hcyang): write tab title as the filename to the app info.
entities.emplace(coral::mojom::Entity::NewApp(std::move(app_mojom)));
}
}
return entities;
}
// Gets the data of the non-web apps opened on the active desk. Unordered set is
// used because we need to dedup identical apps, but we don't need to sort them.
std::unordered_set<coral::mojom::EntityPtr> GetInSessionNonWebAppData() {
std::unordered_set<coral::mojom::EntityPtr> entities;
for (aura::Window* window :
Shell::Get()->mru_window_tracker()->BuildMruWindowList(kActiveDesk)) {
if (!IsValidApp(window) || !IsNonWebAppWindow(window)) {
continue;
}
entities.emplace(
coral::mojom::Entity::NewApp(GetBasicAppInfoFromWindow(window)));
}
return entities;
}
// Checks if we should show the response on Glanceables bar.
bool ShouldShowResponse(CoralResponse* response) {
if (!response) {
return false;
}
// If we got only one group from an in-session response whose name and content
// are exactly same as the active desk which was created from a coral group,
// we won't show it.
const auto& groups = response->groups();
if (response->source() == CoralSource::kPostLogin ||
DesksController::Get()->active_desk()->type() != Desk::Type::kCoral ||
groups.size() != 1) {
return true;
}
// Since the non-duplicated entities in the group is a subset of the tabs and
// apps on the active desk, we only need to check if the number of group
// entities equals to the total number of tabs and apps on the active desk.
Shell* shell = Shell::Get();
const size_t tab_num = base::ranges::count_if(
shell->tab_cluster_ui_controller()->tab_items(),
[](const auto& tab_item) {
aura::Window* window = tab_item->current_info().browser_window;
return IsBrowserWindow(window) &&
desks_util::BelongsToActiveDesk(window);
});
const size_t app_num = base::ranges::count_if(
shell->mru_window_tracker()->BuildMruWindowList(kActiveDesk),
[](const auto& window) {
return !wm::GetTransientParent(window) && !IsBrowserWindow(window);
});
return groups[0]->entities.size() != (tab_num + app_num);
}
} // namespace
////////////////////////////////////////////////////////////////////////////////
// BirchCoralProvider::Observer:
BirchCoralProvider::Observer::Observer() {
if (auto* coral_provider = BirchCoralProvider::Get()) {
coral_provider->AddObserver(this);
}
}
BirchCoralProvider::Observer::~Observer() {
if (auto* coral_provider = BirchCoralProvider::Get()) {
coral_provider->RemoveObserver(this);
}
CHECK(!IsInObserverList());
}
void BirchCoralProvider::Observer::OnCoralGroupRemoved(
const base::Token& group_id) {}
void BirchCoralProvider::Observer::OnCoralEntityRemoved(
const base::Token& group_id,
std::string_view identifier) {}
void BirchCoralProvider::Observer::OnCoralGroupTitleUpdated(
const base::Token& group_id,
const std::string& title) {}
////////////////////////////////////////////////////////////////////////////////
// BirchCoralProvider:
BirchCoralProvider::BirchCoralProvider() {
g_instance = this;
Shell* shell = Shell::Get();
shell->tab_cluster_ui_controller()->AddObserver(this);
overview_observation_.Observe(shell->overview_controller());
coral_item_remover_ = std::make_unique<CoralItemRemover>();
// Using a default fake response when --force-birch-fake-coral-group is
// enabled.
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kForceBirchFakeCoralGroup)) {
auto fake_group = coral::mojom::Group::New();
fake_group->id = base::Token(7, 1);
fake_group->entities.push_back(coral::mojom::Entity::NewTab(
coral::mojom::Tab::New("Reddit", GURL("https://www.reddit.com/"))));
fake_group->entities.push_back(coral::mojom::Entity::NewTab(
coral::mojom::Tab::New("Figma", GURL("https://www.figma.com/"))));
fake_group->entities.push_back(coral::mojom::Entity::NewTab(
coral::mojom::Tab::New("Notion", GURL("https://www.notion.so/"))));
// nba.com PWA.
fake_group->entities.push_back(coral::mojom::Entity::NewApp(
coral::mojom::App::New("NBA", "ikemcggffkeigegkomkifdbhddiognji")));
// OS settings.
fake_group->entities.push_back(
coral::mojom::Entity::NewApp(coral::mojom::App::New(
"Settings", "odknhmnlageboeamepcngndbggdpaobj")));
// Files.
fake_group->entities.push_back(coral::mojom::Entity::NewApp(
coral::mojom::App::New("Files", "fkiggjmkendpmbegkagpmagjepfkpmeb")));
// ARC playstore.
fake_group->entities.push_back(
coral::mojom::Entity::NewApp(coral::mojom::App::New(
"Playstore", "cnbgggchhmkkdmeppjobngjoejnihlei")));
std::vector<coral::mojom::GroupPtr> fake_groups;
fake_groups.push_back(std::move(fake_group));
auto fake_response = std::make_unique<CoralResponse>();
fake_response->set_groups(std::move(fake_groups));
OverrideCoralResponseForTest(std::move(fake_response));
} else {
shell->coral_controller()->PrepareResource();
}
}
BirchCoralProvider::~BirchCoralProvider() {
Shell::Get()->tab_cluster_ui_controller()->RemoveObserver(this);
g_instance = nullptr;
}
// static.
BirchCoralProvider* BirchCoralProvider::Get() {
return g_instance;
}
const coral::mojom::GroupPtr& BirchCoralProvider::GetGroupById(
const base::Token& group_id) const {
std::vector<coral::mojom::GroupPtr>& groups = response_->groups();
auto iter = std::find_if(
groups.begin(), groups.end(),
[&group_id](const auto& group) { return group->id == group_id; });
CHECK(iter != groups.end());
return *iter;
}
coral::mojom::GroupPtr BirchCoralProvider::ExtractGroupById(
const base::Token& group_id) {
std::vector<coral::mojom::GroupPtr>& groups = response_->groups();
auto iter = std::find_if(
groups.begin(), groups.end(),
[&group_id](const auto& group) { return group->id == group_id; });
CHECK(iter != groups.end());
auto group = std::move(*iter);
groups.erase(iter);
// Clear the `in_session_source_desk_` when there is no groups to avoid
// dangling ptr and reset the window observer.
if (groups.empty()) {
in_session_source_desk_ = nullptr;
windows_observation_.RemoveAllObservations();
}
observers_.Notify(&Observer::OnCoralGroupRemoved, group->id);
return group;
}
void BirchCoralProvider::RemoveGroup(const base::Token& group_id) {
CHECK(coral_item_remover_);
coral::mojom::GroupPtr group = ExtractGroupById(group_id);
for (const coral::mojom::EntityPtr& entity : group->entities) {
coral_item_remover_->RemoveItem(entity);
}
}
void BirchCoralProvider::RemoveItemFromGroup(const base::Token& group_id,
const std::string& identifier) {
CHECK(coral_item_remover_);
auto& group = GetGroupById(group_id);
// The group should not be modified when there are less than
// `kMinGroupSizeToRemove` entities.
CHECK_GE(group->entities.size(), kMinGroupSizeToRemove);
group->entities.erase(
std::remove_if(group->entities.begin(), group->entities.end(),
[identifier](const coral::mojom::EntityPtr& entity) {
return coral_util::GetIdentifier(entity) == identifier;
}),
group->entities.end());
coral_item_remover_->RemoveItem(identifier);
}
void BirchCoralProvider::OnPostLoginClusterRestored() {
post_login_response_expiration_timestamp_ =
base::TimeTicks::Now() + kPostLoginSecondClusterLifespan;
}
mojo::PendingRemote<coral::mojom::TitleObserver>
BirchCoralProvider::BindRemote() {
receiver_.reset();
return receiver_.BindNewPipeAndPassRemote();
}
void BirchCoralProvider::AddObserver(Observer* observer) {
observers_.AddObserver(observer);
}
void BirchCoralProvider::RemoveObserver(Observer* observer) {
observers_.RemoveObserver(observer);
}
void BirchCoralProvider::RequestBirchDataFetch() {
// Use the customized fake response if set.
if (fake_response_) {
auto fake_response_copy = std::make_unique<CoralResponse>();
std::vector<coral::mojom::GroupPtr> groups;
// Copy groups.
for (const auto& group : fake_response_->groups()) {
// Simulate title change so we can test skottie animation and dynamic
// title changes.
coral::mojom::GroupPtr new_group = group->Clone();
if (new_group->id == base::Token(7, 1)) {
new_group->title = std::nullopt;
base::SequencedTaskRunner::GetCurrentDefault()->PostDelayedTask(
FROM_HERE, base::BindOnce([]() {
if (auto* coral_provider = BirchCoralProvider::Get()) {
coral_provider->TitleUpdated(base::Token(7, 1), "Coral group");
}
}),
base::Seconds(5));
}
groups.push_back(std::move(new_group));
}
switch (fake_response_->source()) {
case CoralSource::kUnknown:
fake_response_copy->set_source(HasValidPostLoginData()
? CoralSource::kPostLogin
: CoralSource::kInSession);
break;
case CoralSource::kInSession:
fake_response_copy->set_source(CoralSource::kInSession);
break;
case CoralSource::kPostLogin:
fake_response_copy->set_source(CoralSource::kPostLogin);
break;
}
fake_response_copy->set_groups(std::move(groups));
HandleCoralResponse(std::move(fake_response_copy));
return;
}
if (HasValidPostLoginData()) {
HandlePostLoginDataRequest();
} else {
HandleInSessionDataRequest();
}
}
void BirchCoralProvider::OnTabItemAdded(TabClusterUIItem* tab_item) {
MaybeCacheTabEmbedding(tab_item);
}
void BirchCoralProvider::OnTabItemUpdated(TabClusterUIItem* tab_item) {
MaybeCacheTabEmbedding(tab_item);
}
void BirchCoralProvider::OnTabItemRemoved(TabClusterUIItem* tab_item) {
// Modify in-session groups when a valid associated tab being observed by
// window observation is removed.
if (!response_ || response_->source() == CoralSource::kPostLogin ||
response_->groups().empty() ||
!windows_observation_.IsObservingSource(
tab_item->current_info().browser_window)) {
return;
}
OnTabRemovedFromSourceDesk(tab_item);
}
void BirchCoralProvider::TitleUpdated(const base::Token& id,
const std::string& title) {
// `response_` may be cleared upon exiting overview.
if (!response_) {
return;
}
for (coral::mojom::GroupPtr& group : response_->groups()) {
if (group->id == id) {
group->title = title;
observers_.Notify(&Observer::OnCoralGroupTitleUpdated, group->id, title);
return;
}
}
}
void BirchCoralProvider::OnWindowDestroyed(aura::Window* window) {
if (!IsBrowserWindow(window)) {
OnAppWindowRemovedFromSourceDesk(window);
}
// Note, we should remove the window from observing list after modifying the
// response.
windows_observation_.RemoveObservation(window);
}
void BirchCoralProvider::OnWindowParentChanged(aura::Window* window,
aura::Window* parent) {
// When the last group is launched the `in_session_source_desk_` is reset and
// its windows are still being observed, we only need to removed the
// observation.
if (!in_session_source_desk_) {
windows_observation_.RemoveObservation(window);
return;
}
// If an observed window is moved to another desk, remove the associated
// entities from the `response_`. When parent is null, the window may be in
// the middle of changing parent.
if (!parent || desks_util::BelongsToDesk(window, in_session_source_desk_)) {
return;
}
if (IsBrowserWindow(window)) {
// Removes the entities corresponding to the tabs in the moved browser
// window from `response_`.
for (const auto& tab_item :
Shell::Get()->tab_cluster_ui_controller()->tab_items()) {
if (tab_item->current_info().browser_window == window) {
OnTabRemovedFromSourceDesk(tab_item.get());
}
}
} else {
OnAppWindowRemovedFromSourceDesk(window);
}
// Note, we should remove the window from observing list after modifying the
// response.
windows_observation_.RemoveObservation(window);
}
void BirchCoralProvider::OnOverviewModeEnded() {
// Clear the in-session `response_` and reset the in-session source desk and
// the app windows observation.
if (response_ && response_->source() == CoralSource::kInSession) {
response_.reset();
in_session_source_desk_ = nullptr;
windows_observation_.RemoveAllObservations();
}
}
void BirchCoralProvider::OnSessionStateChanged(
session_manager::SessionState state) {
// Clear stale items on login.
if (state == session_manager::SessionState::ACTIVE) {
response_.reset();
in_session_source_desk_ = nullptr;
}
}
void BirchCoralProvider::OverrideCoralResponseForTest(
std::unique_ptr<CoralResponse> response) {
fake_response_ = std::move(response);
}
bool BirchCoralProvider::HasValidPostLoginData() const {
InformedRestoreController* informed_restore_controller =
Shell::Get()->informed_restore_controller();
return informed_restore_controller &&
!!informed_restore_controller->contents_data();
}
void BirchCoralProvider::HandlePostLoginDataRequest() {
if (response_) {
HandleCoralResponse(std::move(response_));
return;
}
InformedRestoreContentsData* contents_data =
Shell::Get()->informed_restore_controller()->contents_data();
std::vector<CoralRequest::ContentItem> tab_app_data;
for (const InformedRestoreContentsData::AppInfo& app_info :
contents_data->apps_infos) {
if (app_info.tab_infos.empty()) {
tab_app_data.push_back(coral::mojom::Entity::NewApp(
coral::mojom::App::New(app_info.title, app_info.app_id)));
continue;
}
for (const InformedRestoreContentsData::TabInfo& tab_info :
app_info.tab_infos) {
tab_app_data.push_back(coral::mojom::Entity::NewTab(
coral::mojom::Tab::New(tab_info.title, tab_info.url)));
}
}
request_.set_source(CoralSource::kPostLogin);
request_.set_content(std::move(tab_app_data));
Shell::Get()->coral_controller()->GenerateContentGroups(
request_, BindRemote(),
base::BindOnce(&BirchCoralProvider::HandlePostLoginCoralResponse,
weak_ptr_factory_.GetWeakPtr()));
}
void BirchCoralProvider::HandleInSessionDataRequest() {
// TODO(zxdan) add more tab metadata, app data,
// and handle in-session use cases.
std::vector<CoralRequest::ContentItem> active_tab_app_data;
std::unordered_set<coral::mojom::EntityPtr> tab_web_apps =
GetInSessionTabAndWebAppData();
while (!tab_web_apps.empty()) {
active_tab_app_data.push_back(
std::move(tab_web_apps.extract(tab_web_apps.begin()).value()));
}
std::unordered_set<coral::mojom::EntityPtr> non_web_apps =
GetInSessionNonWebAppData();
while (!non_web_apps.empty()) {
active_tab_app_data.push_back(
std::move(non_web_apps.extract(non_web_apps.begin()).value()));
}
FilterCoralContentItems(&active_tab_app_data);
request_.set_source(CoralSource::kInSession);
request_.set_content(std::move(active_tab_app_data));
Shell::Get()->coral_controller()->GenerateContentGroups(
request_, BindRemote(),
base::BindOnce(&BirchCoralProvider::HandleInSessionCoralResponse,
weak_ptr_factory_.GetWeakPtr()));
}
bool BirchCoralProvider::HasValidPostLoginResponse() {
return response_ && response_->source() == CoralSource::kPostLogin &&
response_->groups().size() > 0 &&
!post_login_response_expiration_timestamp_.is_null() &&
base::TimeTicks::Now() < post_login_response_expiration_timestamp_;
}
void BirchCoralProvider::HandlePostLoginCoralResponse(
std::unique_ptr<CoralResponse> response) {
// If response_ is not null, it may be a previously arrived post-login or
// in-session response. Skip handling the newly arrived response in this case.
if (response_) {
return;
}
post_login_response_expiration_timestamp_ =
base::TimeTicks::Now() + kPostLoginClustersLifespan;
HandleCoralResponse(std::move(response));
}
void BirchCoralProvider::HandleInSessionCoralResponse(
std::unique_ptr<CoralResponse> response) {
const bool non_empty = response && response->groups().size();
if (HasValidPostLoginResponse() && !non_empty) {
HandleCoralResponse(std::move(response_));
return;
}
// Invalid post login response if a valid in-session response is generated.
post_login_response_expiration_timestamp_ = base::TimeTicks();
HandleCoralResponse(std::move(response));
}
void BirchCoralProvider::HandleCoralResponse(
std::unique_ptr<CoralResponse> response) {
std::vector<BirchCoralItem> items;
response_ = std::move(response);
if (!ShouldShowResponse(response_.get())) {
windows_observation_.RemoveAllObservations();
Shell::Get()->birch_model()->SetCoralItems(items);
return;
}
CHECK(HasValidClusterCount(response_->groups().size()));
for (size_t i = 0; i < response_->groups().size(); ++i) {
const auto& group = response_->groups()[i];
// Set a placeholder to item title. The chip title will be directly fetched
// from group title.
// TODO(zxdan): Localize the strings.
std::u16string subtitle;
switch (response_->source()) {
case CoralSource::kPostLogin:
subtitle = u"Resume suggested group";
break;
case CoralSource::kInSession:
subtitle = u"Organize in a new desk";
break;
case CoralSource::kUnknown:
break;
}
items.emplace_back(/*title=*/kTitlePlaceholder,
/*subtitle=*/subtitle, response_->source(),
/*group_id=*/group->id);
}
Shell::Get()->birch_model()->SetCoralItems(items);
if (response_->source() == CoralSource::kInSession) {
in_session_source_desk_ = DesksController::Get()->active_desk();
}
ObserveAllWindowsInResponse();
}
void BirchCoralProvider::FilterCoralContentItems(
std::vector<coral::mojom::EntityPtr>* items) {
CHECK(coral_item_remover_);
coral_item_remover_->FilterRemovedItems(items);
}
void BirchCoralProvider::MaybeCacheTabEmbedding(TabClusterUIItem* tab_item) {
// Only cache tab embeddings for the primary user.
auto* session_controller = Shell::Get()->session_controller();
if (session_controller->IsUserPrimary() &&
session_controller->GetPrimaryUserPrefService() &&
session_controller->GetPrimaryUserPrefService()->GetBoolean(
prefs::kBirchUseCoral) &&
IsValidTab(tab_item) && ShouldCreateEmbedding(tab_item)) {
CacheTabEmbedding(tab_item);
}
}
void BirchCoralProvider::CacheTabEmbedding(TabClusterUIItem* tab_item) {
if (!Shell::Get()->coral_controller()) {
return;
}
auto tab_mojom = coral::mojom::Tab::New();
tab_mojom->title = tab_item->current_info().title;
tab_mojom->url = GURL(tab_item->current_info().source);
std::vector<CoralRequest::ContentItem> active_tab_app_data;
active_tab_app_data.push_back(
coral::mojom::Entity::NewTab(std::move(tab_mojom)));
CoralRequest request;
request.set_content(std::move(active_tab_app_data));
Shell::Get()->coral_controller()->CacheEmbeddings(
std::move(request),
base::BindOnce(&BirchCoralProvider::HandleEmbeddingResult,
weak_ptr_factory_.GetWeakPtr()));
}
void BirchCoralProvider::HandleEmbeddingResult(bool success) {
// TODO(conniekxu) Add metrics.
}
void BirchCoralProvider::ObserveAllWindowsInResponse() {
// Reset windows observation.
windows_observation_.RemoveAllObservations();
// Only observe the windows in in-session response.
if (response_->source() != CoralSource::kInSession) {
return;
}
// Find all urls and app ids in the response.
base::flat_set<std::string> urls;
base::flat_set<std::string> app_ids;
for (const auto& group : response_->groups()) {
for (const auto& entity : group->entities) {
if (entity->is_tab()) {
urls.emplace(entity->get_tab()->url.possibly_invalid_spec());
} else if (entity->is_app()) {
app_ids.emplace(entity->get_app()->id);
}
}
}
// Observe browser windows containing the tabs with the same urls in the
// response.
base::ranges::for_each(
Shell::Get()->tab_cluster_ui_controller()->tab_items(),
[&](const auto& tab_item) {
if (IsValidTab(tab_item.get()) &&
urls.contains(tab_item->current_info().source)) {
const auto& window = tab_item->current_info().browser_window;
if (!windows_observation_.IsObservingSource(window)) {
windows_observation_.AddObservation(window);
}
}
});
// Observe all the apps with the app id in the response.
base::ranges::for_each(
Shell::Get()->mru_window_tracker()->BuildMruWindowList(kActiveDesk),
[&](const auto& window) {
if (IsValidApp(window) &&
app_ids.contains(*(window->GetProperty(kAppIDKey)))) {
windows_observation_.AddObservation(window);
}
});
}
void BirchCoralProvider::OnTabRemovedFromSourceDesk(
TabClusterUIItem* tab_item) {
const std::string url = tab_item->current_info().source;
// Don't modify the groups if there are multiple tabs with the same url to be
// removed.
if (base::ranges::count_if(
Shell::Get()->tab_cluster_ui_controller()->tab_items(),
[&](const auto& tab) {
return windows_observation_.IsObservingSource(
tab->current_info().browser_window) &&
tab->current_info().source == url;
}) == 1) {
RemoveEntity(url);
}
}
void BirchCoralProvider::OnAppWindowRemovedFromSourceDesk(
aura::Window* app_window) {
CHECK(!IsBrowserWindow(app_window));
// Don't modify groups if there are multiple of the same app on the active
// desk.
const std::string app_id = *(app_window->GetProperty(kAppIDKey));
if (base::ranges::count_if(
windows_observation_.sources(), [&app_id](const auto& window) {
return *(window->GetProperty(kAppIDKey)) == app_id;
}) == 1) {
RemoveEntity(app_id);
}
}
void BirchCoralProvider::RemoveEntity(std::string_view entity_identifier) {
CHECK(response_);
CHECK_EQ(response_->source(), CoralSource::kInSession);
auto& groups = response_->groups();
for (auto group_iter = groups.begin(); group_iter != groups.end();) {
const coral::mojom::GroupPtr& group = *group_iter;
// Check if the entity is included in the group.
auto entity_iter = std::find_if(
group->entities.begin(), group->entities.end(),
[&entity_identifier](coral::mojom::EntityPtr& entity) {
return coral_util::GetIdentifier(entity) == entity_identifier;
});
// If the `entity` is included in the group, remove it. After removing, if
// the group becomes empty, remove the group.
if (entity_iter != group->entities.end()) {
group->entities.erase(entity_iter);
if (group->entities.empty()) {
const base::Token group_id = group->id;
group_iter = groups.erase(group_iter);
// Clear the `in_session_source_desk_` when there is no groups since the
// source desk may be in the process of removal.
if (groups.empty()) {
in_session_source_desk_ = nullptr;
}
observers_.Notify(&Observer::OnCoralGroupRemoved, group_id);
continue;
}
observers_.Notify(&Observer::OnCoralEntityRemoved, group->id,
entity_identifier);
}
group_iter++;
}
}
} // namespace ash