blob: f1b71e8868edcc7c9aa1563ac59d527a6577d3e7 [file] [log] [blame]
Hyunyoung Song7ac0ef12020-03-26 01:48:24 -07001/*
2 * Copyright (C) 2020 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16syntax = "proto2";
17
18option java_package = "com.android.launcher3.logger";
19option java_outer_classname = "LauncherAtom";
20
21//
22// ItemInfos
23message ItemInfo {
24 oneof Item {
25 Application application = 1;
thiruramacbd7ef2020-04-17 19:10:49 -070026 Task task = 2;
Hyunyoung Song7ac0ef12020-03-26 01:48:24 -070027 Shortcut shortcut = 3;
thiruramf81e8b02020-04-15 10:22:28 -070028 Widget widget = 4;
thiruram5a01f0e2020-05-04 17:49:37 -070029 FolderIcon folder_icon = 9;
Hyunyoung Song7ac0ef12020-03-26 01:48:24 -070030 }
31 // When used for launch event, stores the global predictive rank
32 optional int32 rank = 5;
33
34 // Stores whether the Item belows to non primary user
35 optional bool is_work = 6;
36
37 // Item can be child node to parent container or parent containers (nested)
thiruramacbd7ef2020-04-17 19:10:49 -070038 optional ContainerInfo container_info = 7;
39
Hyunyoung Song7ac0ef12020-03-26 01:48:24 -070040 // Stores the origin of the Item
thiruramacbd7ef2020-04-17 19:10:49 -070041 optional Origin source = 8;
42}
43
44// Represents various launcher surface where items are placed.
45message ContainerInfo {
46 oneof Container {
47 WorkspaceContainer workspace = 1;
48 HotseatContainer hotseat = 2;
49 FolderContainer folder = 3;
50 AllAppsContainer all_apps_container = 4;
51 }
52}
53
54message AllAppsContainer {
Hyunyoung Song7ac0ef12020-03-26 01:48:24 -070055}
56
57enum Origin {
58 UNKNOWN = 0;
59 DEFAULT_LAYOUT = 1; // icon automatically placed in workspace, folder, hotseat
60 BACKUP_RESTORE = 2; // icon layout restored from backup
61 PINITEM = 3; // from another app (e.g., Chrome's "Add to Home screen")
62 ALLAPPS_ATOZ = 4; // within launcher surface, all aps a-z
63 WIDGETS = 5; // within launcher, widgets tray
64 ADD_TO_HOMESCREEN = 6; // play install + launcher home setting
65 ALLAPPS_PREDICTION = 7; // from prediction bar in all apps container
66 HOTSEAT_PREDICTION = 8; // from prediction bar in hotseat container
67}
68
69// Main app icons
70message Application {
71 optional string package_name = 1;
72 optional string component_name = 2;
73}
74
75// Legacy shortcuts and shortcuts handled by ShortcutManager
76message Shortcut {
77 optional string shortcut_name = 1;
78}
79
80// AppWidgets handled by AppWidgetManager
81message Widget {
thiruramacbd7ef2020-04-17 19:10:49 -070082 optional int32 span_x = 1 [default = 1];
83 optional int32 span_y = 2 [default = 1];
Hyunyoung Song7ac0ef12020-03-26 01:48:24 -070084 optional int32 app_widget_id = 3;
85 optional string package_name = 4; // only populated during snapshot if from workspace
86 optional string component_name = 5; // only populated during snapshot if from workspace
87}
88
89// Tasks handled by PackageManager
90message Task {
91 optional string package_name = 1;
92 optional string component_name = 2;
93 optional int32 index = 3;
94}
95
thiruram5a01f0e2020-05-04 17:49:37 -070096// Represents folder in a closed state.
97message FolderIcon {
thiruram6524cc72020-05-08 11:04:32 -070098 // Number of items inside folder.
thiruram5a01f0e2020-05-04 17:49:37 -070099 optional int32 cardinality = 1;
thiruram6524cc72020-05-08 11:04:32 -0700100
101 // State of the folder label before the event.
thiruramf95f1522020-05-08 17:53:19 -0700102 optional FromState from_label_state = 2;
thiruram6524cc72020-05-08 11:04:32 -0700103
104 // State of the folder label after the event.
thiruramf95f1522020-05-08 17:53:19 -0700105 optional ToState to_label_state = 3;
thiruram6524cc72020-05-08 11:04:32 -0700106
thiruramf95f1522020-05-08 17:53:19 -0700107 // Details about actual folder label.
108 // Populated when folder label is not a PII.
109 optional string label_info = 4;
thiruram5a01f0e2020-05-04 17:49:37 -0700110}
111
Hyunyoung Song7ac0ef12020-03-26 01:48:24 -0700112//////////////////////////////////////////////
113// Containers
114
115message WorkspaceContainer {
thiruramacbd7ef2020-04-17 19:10:49 -0700116 optional int32 page_index = 1 [default = -2]; // range [-1, l], 0 is the index of the main homescreen
117 optional int32 grid_x = 2 [default = -1]; // [0, m], m varies based on the display density and resolution
118 optional int32 grid_y = 3 [default = -1]; // [0, n], n varies based on the display density and resolution
Hyunyoung Song7ac0ef12020-03-26 01:48:24 -0700119}
120
121message HotseatContainer {
122 optional int32 index = 1;
123}
124
125message FolderContainer {
thiruramacbd7ef2020-04-17 19:10:49 -0700126 optional int32 page_index = 1 [default = -1];
127 optional int32 grid_x = 2 [default = -1];
128 optional int32 grid_y = 3 [default = -1];
129 oneof ParentContainer {
Hyunyoung Song7ac0ef12020-03-26 01:48:24 -0700130 WorkspaceContainer workspace = 4;
131 HotseatContainer hotseat = 5;
132 }
133}
thiruram6524cc72020-05-08 11:04:32 -0700134
thiruramf95f1522020-05-08 17:53:19 -0700135// Represents state of EditText field before update.
thiruram6524cc72020-05-08 11:04:32 -0700136enum FromState {
137 // Default value.
thiruramf95f1522020-05-08 17:53:19 -0700138 // Used when a FromState is not applicable, for example, during folder creation.
thiruram6524cc72020-05-08 11:04:32 -0700139 FROM_STATE_UNSPECIFIED = 0;
140
thiruramf95f1522020-05-08 17:53:19 -0700141 // EditText was empty.
142 // Eg: When a folder label is updated from empty string.
thiruram6524cc72020-05-08 11:04:32 -0700143 FROM_EMPTY = 1;
144
thiruramf95f1522020-05-08 17:53:19 -0700145 // EditText was non-empty and manually entered by the user.
146 // Eg: When a folder label is updated from a user-entered value.
thiruram6524cc72020-05-08 11:04:32 -0700147 FROM_CUSTOM = 2;
148
thiruramf95f1522020-05-08 17:53:19 -0700149 // EditText was non-empty and one of the suggestions.
150 // Eg: When a folder label is updated from a suggested value.
thiruram6524cc72020-05-08 11:04:32 -0700151 FROM_SUGGESTED = 3;
152}
153
thiruramf95f1522020-05-08 17:53:19 -0700154// Represents state of EditText field after update.
thiruram6524cc72020-05-08 11:04:32 -0700155enum ToState {
156 // Default value.
thiruramf95f1522020-05-08 17:53:19 -0700157 // Used when ToState is not applicable, for example, when folder label is updated to a different
158 // value when folder label suggestion feature is disabled.
thiruram6524cc72020-05-08 11:04:32 -0700159 TO_STATE_UNSPECIFIED = 0;
thiruramf95f1522020-05-08 17:53:19 -0700160
161 // User attempted to change the EditText, but was not changed.
thiruram6524cc72020-05-08 11:04:32 -0700162 UNCHANGED = 1;
163
164 // New label matches with primary(aka top) suggestion.
165 TO_SUGGESTION0 = 2;
166
thiruramf95f1522020-05-08 17:53:19 -0700167 // New value matches with second top suggestion even though the top suggestion was non-empty.
thiruram6524cc72020-05-08 11:04:32 -0700168 TO_SUGGESTION1_WITH_VALID_PRIMARY = 3;
169
thiruramf95f1522020-05-08 17:53:19 -0700170 // New value matches with second top suggestion given that top suggestion was empty.
thiruram6524cc72020-05-08 11:04:32 -0700171 TO_SUGGESTION1_WITH_EMPTY_PRIMARY = 4;
172
thiruramf95f1522020-05-08 17:53:19 -0700173 // New value matches with third top suggestion even though the top suggestion was non-empty.
thiruram6524cc72020-05-08 11:04:32 -0700174 TO_SUGGESTION2_WITH_VALID_PRIMARY = 5;
175
thiruramf95f1522020-05-08 17:53:19 -0700176 // New value matches with third top suggestion given that top suggestion was empty.
thiruram6524cc72020-05-08 11:04:32 -0700177 TO_SUGGESTION2_WITH_EMPTY_PRIMARY = 6;
178
thiruramf95f1522020-05-08 17:53:19 -0700179 // New value matches with 4th top suggestion even though the top suggestion was non-empty.
thiruram6524cc72020-05-08 11:04:32 -0700180 TO_SUGGESTION3_WITH_VALID_PRIMARY = 7;
181
thiruramf95f1522020-05-08 17:53:19 -0700182 // New value matches with 4th top suggestion given that top suggestion was empty.
thiruram6524cc72020-05-08 11:04:32 -0700183 TO_SUGGESTION3_WITH_EMPTY_PRIMARY = 8;
184
thiruramf95f1522020-05-08 17:53:19 -0700185 // New value is empty even though the top suggestion was non-empty.
thiruram6524cc72020-05-08 11:04:32 -0700186 TO_EMPTY_WITH_VALID_PRIMARY = 9;
187
thiruramf95f1522020-05-08 17:53:19 -0700188 // New value is empty given that top suggestion was empty.
thiruram6524cc72020-05-08 11:04:32 -0700189 TO_EMPTY_WITH_VALID_SUGGESTIONS_AND_EMPTY_PRIMARY = 10;
190
thiruramf95f1522020-05-08 17:53:19 -0700191 // New value is empty given that no suggestions were provided.
thiruram6524cc72020-05-08 11:04:32 -0700192 TO_EMPTY_WITH_EMPTY_SUGGESTIONS = 11;
193
thiruramf95f1522020-05-08 17:53:19 -0700194 // New value is empty given that suggestions feature was disabled.
thiruram6524cc72020-05-08 11:04:32 -0700195 TO_EMPTY_WITH_SUGGESTIONS_DISABLED = 12;
196
thiruramf95f1522020-05-08 17:53:19 -0700197 // New value is non-empty and does not match with any of the suggestions even though the top suggestion was non-empty.
thiruram6524cc72020-05-08 11:04:32 -0700198 TO_CUSTOM_WITH_VALID_PRIMARY = 13;
199
thiruramf95f1522020-05-08 17:53:19 -0700200 // New value is non-empty and not match with any suggestions given that top suggestion was empty.
thiruram6524cc72020-05-08 11:04:32 -0700201 TO_CUSTOM_WITH_VALID_SUGGESTIONS_AND_EMPTY_PRIMARY = 14;
202
thiruramf95f1522020-05-08 17:53:19 -0700203 // New value is non-empty and also no suggestions were provided.
thiruram6524cc72020-05-08 11:04:32 -0700204 TO_CUSTOM_WITH_EMPTY_SUGGESTIONS = 15;
205
thiruramf95f1522020-05-08 17:53:19 -0700206 // New value is non-empty and also suggestions feature was disable.
thiruram6524cc72020-05-08 11:04:32 -0700207 TO_CUSTOM_WITH_SUGGESTIONS_DISABLED = 16;
208}