blob: 432073ebaf672848cfeb4bc7023d0372a062a87d [file] [log] [blame]
Sunny Goyal0fe505b2014-08-06 09:55:36 -07001/*
2 * Copyright (C) 2014 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 */
16
17package com.android.launcher3;
18
19import android.appwidget.AppWidgetHost;
Sunny Goyal0fe505b2014-08-06 09:55:36 -070020import android.content.ComponentName;
21import android.content.ContentValues;
22import android.content.Context;
23import android.content.Intent;
24import android.content.pm.ActivityInfo;
25import android.content.pm.PackageManager;
26import android.content.res.Resources;
Sunny Goyal0fe505b2014-08-06 09:55:36 -070027import android.database.sqlite.SQLiteDatabase;
28import android.graphics.drawable.Drawable;
29import android.net.Uri;
Sunny Goyal179249d2017-12-19 16:49:24 -080030import android.os.Build.VERSION;
Sunny Goyal0fe505b2014-08-06 09:55:36 -070031import android.os.Bundle;
Sunny Goyalad7ff442017-09-12 12:42:26 -070032import android.os.Process;
Sunny Goyal0fe505b2014-08-06 09:55:36 -070033import android.text.TextUtils;
Rajeev Kumar26453a22017-06-09 16:02:25 -070034import android.util.ArrayMap;
Sunny Goyal0d742312019-03-04 20:22:26 -080035import android.util.AttributeSet;
Sunny Goyal0fe505b2014-08-06 09:55:36 -070036import android.util.Log;
37import android.util.Pair;
38import android.util.Patterns;
Sunny Goyal0d742312019-03-04 20:22:26 -080039import android.util.Xml;
Sunny Goyal36b54222018-07-10 13:50:50 -070040
Samuel Fufaca37b8a2019-08-19 17:04:36 -070041import androidx.annotation.Nullable;
42
Sunny Goyal0fe505b2014-08-06 09:55:36 -070043import com.android.launcher3.LauncherProvider.SqlArguments;
Sunny Goyal0fe505b2014-08-06 09:55:36 -070044import com.android.launcher3.LauncherSettings.Favorites;
Sunny Goyale62d2bb2018-11-06 10:28:37 -080045import com.android.launcher3.icons.GraphicsUtils;
Hyunyoung Song48cb7bc2018-09-25 17:03:34 -070046import com.android.launcher3.icons.LauncherIcons;
Sunny Goyale396abf2020-04-06 15:11:17 -070047import com.android.launcher3.model.data.LauncherAppWidgetInfo;
48import com.android.launcher3.model.data.WorkspaceItemInfo;
Samuel Fufaca37b8a2019-08-19 17:04:36 -070049import com.android.launcher3.qsb.QsbContainerView;
Sunny Goyalefb7e842018-10-04 15:11:00 -070050import com.android.launcher3.util.IntArray;
Sunny Goyal9dbb27c2019-07-17 15:12:56 -070051import com.android.launcher3.util.PackageManagerHelper;
Adam Cohen091440a2015-03-18 14:16:05 -070052import com.android.launcher3.util.Thunk;
Sunny Goyal36b54222018-07-10 13:50:50 -070053
54import org.xmlpull.v1.XmlPullParser;
55import org.xmlpull.v1.XmlPullParserException;
56
Sunny Goyal0fe505b2014-08-06 09:55:36 -070057import java.io.IOException;
Sunny Goyalb2d46ce2015-03-26 11:32:11 -070058import java.util.Locale;
Sunny Goyalc0f03d92019-03-22 14:13:36 -070059import java.util.function.Supplier;
Sunny Goyal0fe505b2014-08-06 09:55:36 -070060
61/**
Sunny Goyal3a5a9d12014-10-01 15:33:41 -070062 * Layout parsing code for auto installs layout
Sunny Goyal0fe505b2014-08-06 09:55:36 -070063 */
Sunny Goyal3a5a9d12014-10-01 15:33:41 -070064public class AutoInstallsLayout {
Sunny Goyal0fe505b2014-08-06 09:55:36 -070065 private static final String TAG = "AutoInstalls";
Sunny Goyal3a5a9d12014-10-01 15:33:41 -070066 private static final boolean LOGD = false;
Sunny Goyal0fe505b2014-08-06 09:55:36 -070067
68 /** Marker action used to discover a package which defines launcher customization */
69 static final String ACTION_LAUNCHER_CUSTOMIZATION =
Sunny Goyal2233c882014-09-18 14:36:48 -070070 "android.autoinstalls.config.action.PLAY_AUTO_INSTALL";
Sunny Goyal0fe505b2014-08-06 09:55:36 -070071
Sunny Goyalb2d46ce2015-03-26 11:32:11 -070072 /**
73 * Layout resource which also includes grid size and hotseat count, e.g., default_layout_6x6_h5
74 */
75 private static final String FORMATTED_LAYOUT_RES_WITH_HOSTEAT = "default_layout_%dx%d_h%s";
76 private static final String FORMATTED_LAYOUT_RES = "default_layout_%dx%d";
Sunny Goyal0fe505b2014-08-06 09:55:36 -070077 private static final String LAYOUT_RES = "default_layout";
78
79 static AutoInstallsLayout get(Context context, AppWidgetHost appWidgetHost,
80 LayoutParserCallback callback) {
Sunny Goyal9dbb27c2019-07-17 15:12:56 -070081 Pair<String, Resources> customizationApkInfo = PackageManagerHelper.findSystemApk(
Sunny Goyal0fe505b2014-08-06 09:55:36 -070082 ACTION_LAUNCHER_CUSTOMIZATION, context.getPackageManager());
83 if (customizationApkInfo == null) {
84 return null;
85 }
Sunny Goyalc0f03d92019-03-22 14:13:36 -070086 String pkg = customizationApkInfo.first;
87 Resources targetRes = customizationApkInfo.second;
Sunny Goyal87f784c2017-01-11 10:48:34 -080088 InvariantDeviceProfile grid = LauncherAppState.getIDP(context);
Sunny Goyalb2d46ce2015-03-26 11:32:11 -070089
90 // Try with grid size and hotseat count
91 String layoutName = String.format(Locale.ENGLISH, FORMATTED_LAYOUT_RES_WITH_HOSTEAT,
Samuel Fufaca37b8a2019-08-19 17:04:36 -070092 grid.numColumns, grid.numRows, grid.numHotseatIcons);
Sunny Goyalb2d46ce2015-03-26 11:32:11 -070093 int layoutId = targetRes.getIdentifier(layoutName, "xml", pkg);
94
95 // Try with only grid size
96 if (layoutId == 0) {
97 Log.d(TAG, "Formatted layout: " + layoutName
98 + " not found. Trying layout without hosteat");
99 layoutName = String.format(Locale.ENGLISH, FORMATTED_LAYOUT_RES,
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700100 grid.numColumns, grid.numRows);
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700101 layoutId = targetRes.getIdentifier(layoutName, "xml", pkg);
102 }
103
104 // Try the default layout
105 if (layoutId == 0) {
106 Log.d(TAG, "Formatted layout: " + layoutName + " not found. Trying the default layout");
107 layoutId = targetRes.getIdentifier(LAYOUT_RES, "xml", pkg);
108 }
109
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700110 if (layoutId == 0) {
111 Log.e(TAG, "Layout definition not found in package: " + pkg);
112 return null;
113 }
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700114 return new AutoInstallsLayout(context, appWidgetHost, callback, targetRes, layoutId,
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700115 TAG_WORKSPACE);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700116 }
117
118 // Object Tags
Sunny Goyalb564efb2015-01-23 13:45:20 -0800119 private static final String TAG_INCLUDE = "include";
Sunny Goyalc0f03d92019-03-22 14:13:36 -0700120 public static final String TAG_WORKSPACE = "workspace";
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700121 private static final String TAG_APP_ICON = "appicon";
122 private static final String TAG_AUTO_INSTALL = "autoinstall";
123 private static final String TAG_FOLDER = "folder";
124 private static final String TAG_APPWIDGET = "appwidget";
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700125 protected static final String TAG_SEARCH_WIDGET = "searchwidget";
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700126 private static final String TAG_SHORTCUT = "shortcut";
127 private static final String TAG_EXTRA = "extra";
128
129 private static final String ATTR_CONTAINER = "container";
130 private static final String ATTR_RANK = "rank";
131
132 private static final String ATTR_PACKAGE_NAME = "packageName";
133 private static final String ATTR_CLASS_NAME = "className";
134 private static final String ATTR_TITLE = "title";
Sunny Goyal55e2b162020-06-09 15:44:48 -0700135 private static final String ATTR_TITLE_TEXT = "titleText";
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700136 private static final String ATTR_SCREEN = "screen";
Sunny Goyal96a09632015-12-16 11:32:54 -0800137
138 // x and y can be specified as negative integers, in which case -1 represents the
139 // last row / column, -2 represents the second last, and so on.
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700140 private static final String ATTR_X = "x";
141 private static final String ATTR_Y = "y";
Sunny Goyal96a09632015-12-16 11:32:54 -0800142
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700143 private static final String ATTR_SPAN_X = "spanX";
144 private static final String ATTR_SPAN_Y = "spanY";
145 private static final String ATTR_ICON = "icon";
146 private static final String ATTR_URL = "url";
147
Sunny Goyalb564efb2015-01-23 13:45:20 -0800148 // Attrs for "Include"
149 private static final String ATTR_WORKSPACE = "workspace";
150
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700151 // Style attrs -- "Extra"
152 private static final String ATTR_KEY = "key";
153 private static final String ATTR_VALUE = "value";
154
155 private static final String HOTSEAT_CONTAINER_NAME =
156 Favorites.containerToString(Favorites.CONTAINER_HOTSEAT);
157
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700158 @Thunk
159 final Context mContext;
160 @Thunk
161 final AppWidgetHost mAppWidgetHost;
Sunny Goyalbb3b02f2015-01-15 12:00:14 -0800162 protected final LayoutParserCallback mCallback;
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700163
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700164 protected final PackageManager mPackageManager;
165 protected final Resources mSourceRes;
Sunny Goyalc0f03d92019-03-22 14:13:36 -0700166 protected final Supplier<XmlPullParser> mInitialLayoutSupplier;
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700167
Sunny Goyalbb011da2016-06-15 15:42:29 -0700168 private final InvariantDeviceProfile mIdp;
Sunny Goyal96a09632015-12-16 11:32:54 -0800169 private final int mRowCount;
170 private final int mColumnCount;
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700171
Sunny Goyalefb7e842018-10-04 15:11:00 -0700172 private final int[] mTemp = new int[2];
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700173 @Thunk
174 final ContentValues mValues;
Sunny Goyalbb3b02f2015-01-15 12:00:14 -0800175 protected final String mRootTag;
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700176
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700177 protected SQLiteDatabase mDb;
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700178
179 public AutoInstallsLayout(Context context, AppWidgetHost appWidgetHost,
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700180 LayoutParserCallback callback, Resources res,
181 int layoutId, String rootTag) {
Sunny Goyalc0f03d92019-03-22 14:13:36 -0700182 this(context, appWidgetHost, callback, res, () -> res.getXml(layoutId), rootTag);
183 }
184
185 public AutoInstallsLayout(Context context, AppWidgetHost appWidgetHost,
186 LayoutParserCallback callback, Resources res,
187 Supplier<XmlPullParser> initialLayoutSupplier, String rootTag) {
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700188 mContext = context;
189 mAppWidgetHost = appWidgetHost;
190 mCallback = callback;
191
192 mPackageManager = context.getPackageManager();
193 mValues = new ContentValues();
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700194 mRootTag = rootTag;
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700195
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700196 mSourceRes = res;
Sunny Goyalc0f03d92019-03-22 14:13:36 -0700197 mInitialLayoutSupplier = initialLayoutSupplier;
Sunny Goyal96a09632015-12-16 11:32:54 -0800198
Sunny Goyal87f784c2017-01-11 10:48:34 -0800199 mIdp = LauncherAppState.getIDP(context);
Sunny Goyalbb011da2016-06-15 15:42:29 -0700200 mRowCount = mIdp.numRows;
201 mColumnCount = mIdp.numColumns;
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700202 }
203
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700204 /**
205 * Loads the layout in the db and returns the number of entries added on the desktop.
206 */
Sunny Goyalefb7e842018-10-04 15:11:00 -0700207 public int loadLayout(SQLiteDatabase db, IntArray screenIds) {
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700208 mDb = db;
209 try {
Sunny Goyalc0f03d92019-03-22 14:13:36 -0700210 return parseLayout(mInitialLayoutSupplier.get(), screenIds);
Sameer Padala8fd74832014-09-08 16:00:29 -0700211 } catch (Exception e) {
Sunny Goyalc0f03d92019-03-22 14:13:36 -0700212 Log.e(TAG, "Error parsing layout: ", e);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700213 return -1;
214 }
215 }
216
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700217 /**
218 * Parses the layout and returns the number of elements added on the homescreen.
219 */
Sunny Goyalc0f03d92019-03-22 14:13:36 -0700220 protected int parseLayout(XmlPullParser parser, IntArray screenIds)
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700221 throws XmlPullParserException, IOException {
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700222 beginDocument(parser, mRootTag);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700223 final int depth = parser.getDepth();
224 int type;
Rajeev Kumar26453a22017-06-09 16:02:25 -0700225 ArrayMap<String, TagParser> tagParserMap = getLayoutElementsMap();
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700226 int count = 0;
227
228 while (((type = parser.next()) != XmlPullParser.END_TAG ||
229 parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
230 if (type != XmlPullParser.START_TAG) {
231 continue;
232 }
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700233 count += parseAndAddNode(parser, tagParserMap, screenIds);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700234 }
235 return count;
236 }
237
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700238 /**
239 * Parses container and screenId attribute from the current tag, and puts it in the out.
240 * @param out array of size 2.
241 */
Sunny Goyal0d742312019-03-04 20:22:26 -0800242 protected void parseContainerAndScreen(XmlPullParser parser, int[] out) {
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700243 if (HOTSEAT_CONTAINER_NAME.equals(getAttributeValue(parser, ATTR_CONTAINER))) {
244 out[0] = Favorites.CONTAINER_HOTSEAT;
245 // Hack: hotseat items are stored using screen ids
Sunny Goyalefb7e842018-10-04 15:11:00 -0700246 out[1] = Integer.parseInt(getAttributeValue(parser, ATTR_RANK));
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700247 } else {
248 out[0] = Favorites.CONTAINER_DESKTOP;
Sunny Goyalefb7e842018-10-04 15:11:00 -0700249 out[1] = Integer.parseInt(getAttributeValue(parser, ATTR_SCREEN));
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700250 }
251 }
252
253 /**
254 * Parses the current node and returns the number of elements added.
255 */
256 protected int parseAndAddNode(
Sunny Goyal0d742312019-03-04 20:22:26 -0800257 XmlPullParser parser, ArrayMap<String, TagParser> tagParserMap, IntArray screenIds)
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700258 throws XmlPullParserException, IOException {
Sunny Goyalb564efb2015-01-23 13:45:20 -0800259
260 if (TAG_INCLUDE.equals(parser.getName())) {
261 final int resId = getAttributeResourceValue(parser, ATTR_WORKSPACE, 0);
262 if (resId != 0) {
263 // recursively load some more favorites, why not?
Sunny Goyalc0f03d92019-03-22 14:13:36 -0700264 return parseLayout(mSourceRes.getXml(resId), screenIds);
Sunny Goyalb564efb2015-01-23 13:45:20 -0800265 } else {
266 return 0;
267 }
268 }
269
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700270 mValues.clear();
271 parseContainerAndScreen(parser, mTemp);
Sunny Goyalefb7e842018-10-04 15:11:00 -0700272 final int container = mTemp[0];
273 final int screenId = mTemp[1];
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700274
275 mValues.put(Favorites.CONTAINER, container);
276 mValues.put(Favorites.SCREEN, screenId);
Sunny Goyal96a09632015-12-16 11:32:54 -0800277
278 mValues.put(Favorites.CELLX,
Sunny Goyalf82e5472016-01-06 15:09:22 -0800279 convertToDistanceFromEnd(getAttributeValue(parser, ATTR_X), mColumnCount));
Sunny Goyal96a09632015-12-16 11:32:54 -0800280 mValues.put(Favorites.CELLY,
Sunny Goyalf82e5472016-01-06 15:09:22 -0800281 convertToDistanceFromEnd(getAttributeValue(parser, ATTR_Y), mRowCount));
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700282
283 TagParser tagParser = tagParserMap.get(parser.getName());
284 if (tagParser == null) {
285 if (LOGD) Log.d(TAG, "Ignoring unknown element tag: " + parser.getName());
286 return 0;
287 }
Sunny Goyalefb7e842018-10-04 15:11:00 -0700288 int newElementId = tagParser.parseAndAdd(parser);
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700289 if (newElementId >= 0) {
290 // Keep track of the set of screens which need to be added to the db.
291 if (!screenIds.contains(screenId) &&
292 container == Favorites.CONTAINER_DESKTOP) {
293 screenIds.add(screenId);
294 }
295 return 1;
296 }
297 return 0;
298 }
299
Sunny Goyalefb7e842018-10-04 15:11:00 -0700300 protected int addShortcut(String title, Intent intent, int type) {
301 int id = mCallback.generateNewItemId();
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700302 mValues.put(Favorites.INTENT, intent.toUri(0));
303 mValues.put(Favorites.TITLE, title);
304 mValues.put(Favorites.ITEM_TYPE, type);
305 mValues.put(Favorites.SPANX, 1);
306 mValues.put(Favorites.SPANY, 1);
307 mValues.put(Favorites._ID, id);
308 if (mCallback.insertAndCheck(mDb, mValues) < 0) {
309 return -1;
310 } else {
311 return id;
312 }
313 }
314
Rajeev Kumar26453a22017-06-09 16:02:25 -0700315 protected ArrayMap<String, TagParser> getFolderElementsMap() {
316 ArrayMap<String, TagParser> parsers = new ArrayMap<>();
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700317 parsers.put(TAG_APP_ICON, new AppShortcutParser());
318 parsers.put(TAG_AUTO_INSTALL, new AutoInstallParser());
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700319 parsers.put(TAG_SHORTCUT, new ShortcutParser(mSourceRes));
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700320 return parsers;
321 }
322
Rajeev Kumar26453a22017-06-09 16:02:25 -0700323 protected ArrayMap<String, TagParser> getLayoutElementsMap() {
324 ArrayMap<String, TagParser> parsers = new ArrayMap<>();
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700325 parsers.put(TAG_APP_ICON, new AppShortcutParser());
326 parsers.put(TAG_AUTO_INSTALL, new AutoInstallParser());
327 parsers.put(TAG_FOLDER, new FolderParser());
Sunny Goyal86df1382016-08-10 15:03:22 -0700328 parsers.put(TAG_APPWIDGET, new PendingWidgetParser());
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700329 parsers.put(TAG_SEARCH_WIDGET, new SearchWidgetParser());
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700330 parsers.put(TAG_SHORTCUT, new ShortcutParser(mSourceRes));
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700331 return parsers;
332 }
333
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700334 protected interface TagParser {
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700335 /**
336 * Parses the tag and adds to the db
337 * @return the id of the row added or -1;
338 */
Sunny Goyal0d742312019-03-04 20:22:26 -0800339 int parseAndAdd(XmlPullParser parser)
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700340 throws XmlPullParserException, IOException;
341 }
342
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700343 /**
344 * App shortcuts: required attributes packageName and className
345 */
346 protected class AppShortcutParser implements TagParser {
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700347
348 @Override
Sunny Goyal0d742312019-03-04 20:22:26 -0800349 public int parseAndAdd(XmlPullParser parser) {
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700350 final String packageName = getAttributeValue(parser, ATTR_PACKAGE_NAME);
351 final String className = getAttributeValue(parser, ATTR_CLASS_NAME);
352
353 if (!TextUtils.isEmpty(packageName) && !TextUtils.isEmpty(className)) {
354 ActivityInfo info;
355 try {
356 ComponentName cn;
357 try {
358 cn = new ComponentName(packageName, className);
359 info = mPackageManager.getActivityInfo(cn, 0);
360 } catch (PackageManager.NameNotFoundException nnfe) {
361 String[] packages = mPackageManager.currentToCanonicalPackageNames(
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700362 new String[]{packageName});
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700363 cn = new ComponentName(packages[0], className);
364 info = mPackageManager.getActivityInfo(cn, 0);
365 }
366 final Intent intent = new Intent(Intent.ACTION_MAIN, null)
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700367 .addCategory(Intent.CATEGORY_LAUNCHER)
368 .setComponent(cn)
369 .setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
370 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700371
372 return addShortcut(info.loadLabel(mPackageManager).toString(),
373 intent, Favorites.ITEM_TYPE_APPLICATION);
374 } catch (PackageManager.NameNotFoundException e) {
Sunny Goyaleb3ba0f2017-03-27 11:22:36 -0700375 Log.e(TAG, "Favorite not found: " + packageName + "/" + className);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700376 }
377 return -1;
378 } else {
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700379 return invalidPackageOrClass(parser);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700380 }
381 }
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700382
383 /**
384 * Helper method to allow extending the parser capabilities
385 */
Sunny Goyal0d742312019-03-04 20:22:26 -0800386 protected int invalidPackageOrClass(XmlPullParser parser) {
Adam Cohencf0c7462015-08-06 14:02:23 -0700387 Log.w(TAG, "Skipping invalid <favorite> with no component");
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700388 return -1;
389 }
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700390 }
391
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700392 /**
393 * AutoInstall: required attributes packageName and className
394 */
395 protected class AutoInstallParser implements TagParser {
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700396
397 @Override
Sunny Goyal0d742312019-03-04 20:22:26 -0800398 public int parseAndAdd(XmlPullParser parser) {
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700399 final String packageName = getAttributeValue(parser, ATTR_PACKAGE_NAME);
400 final String className = getAttributeValue(parser, ATTR_CLASS_NAME);
401 if (TextUtils.isEmpty(packageName) || TextUtils.isEmpty(className)) {
402 if (LOGD) Log.d(TAG, "Skipping invalid <favorite> with no component");
403 return -1;
404 }
405
Sunny Goyal95899162019-03-27 16:03:06 -0700406 mValues.put(Favorites.RESTORED, WorkspaceItemInfo.FLAG_AUTOINSTALL_ICON);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700407 final Intent intent = new Intent(Intent.ACTION_MAIN, null)
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700408 .addCategory(Intent.CATEGORY_LAUNCHER)
409 .setComponent(new ComponentName(packageName, className))
410 .setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
411 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700412 return addShortcut(mContext.getString(R.string.package_state_unknown), intent,
413 Favorites.ITEM_TYPE_APPLICATION);
414 }
415 }
416
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700417 /**
418 * Parses a web shortcut. Required attributes url, icon, title
419 */
420 protected class ShortcutParser implements TagParser {
421
422 private final Resources mIconRes;
423
424 public ShortcutParser(Resources iconRes) {
425 mIconRes = iconRes;
426 }
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700427
428 @Override
Sunny Goyal0d742312019-03-04 20:22:26 -0800429 public int parseAndAdd(XmlPullParser parser) {
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700430 final int titleResId = getAttributeResourceValue(parser, ATTR_TITLE, 0);
431 final int iconId = getAttributeResourceValue(parser, ATTR_ICON, 0);
432
433 if (titleResId == 0 || iconId == 0) {
434 if (LOGD) Log.d(TAG, "Ignoring shortcut");
435 return -1;
436 }
437
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700438 final Intent intent = parseIntent(parser);
439 if (intent == null) {
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700440 return -1;
441 }
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700442
443 Drawable icon = mIconRes.getDrawable(iconId);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700444 if (icon == null) {
445 if (LOGD) Log.d(TAG, "Ignoring shortcut, can't load icon");
446 return -1;
447 }
448
Sunny Goyalad7ff442017-09-12 12:42:26 -0700449 // Auto installs should always support the current platform version.
Sunny Goyal18a4e5a2018-01-09 15:34:38 -0800450 LauncherIcons li = LauncherIcons.obtain(mContext);
Sunny Goyale62d2bb2018-11-06 10:28:37 -0800451 mValues.put(LauncherSettings.Favorites.ICON, GraphicsUtils.flattenBitmap(
Sunny Goyal18a4e5a2018-01-09 15:34:38 -0800452 li.createBadgedIconBitmap(icon, Process.myUserHandle(), VERSION.SDK_INT).icon));
453 li.recycle();
454
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700455 mValues.put(Favorites.ICON_PACKAGE, mIconRes.getResourcePackageName(iconId));
456 mValues.put(Favorites.ICON_RESOURCE, mIconRes.getResourceName(iconId));
457
458 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700459 Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700460 return addShortcut(mSourceRes.getString(titleResId),
461 intent, Favorites.ITEM_TYPE_SHORTCUT);
462 }
463
Sunny Goyal0d742312019-03-04 20:22:26 -0800464 protected Intent parseIntent(XmlPullParser parser) {
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700465 final String url = getAttributeValue(parser, ATTR_URL);
466 if (TextUtils.isEmpty(url) || !Patterns.WEB_URL.matcher(url).matches()) {
467 if (LOGD) Log.d(TAG, "Ignoring shortcut, invalid url: " + url);
468 return null;
469 }
470 return new Intent(Intent.ACTION_VIEW, null).setData(Uri.parse(url));
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700471 }
472 }
473
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700474 /**
475 * AppWidget parser: Required attributes packageName, className, spanX and spanY.
476 * Options child nodes: <extra key=... value=... />
Sunny Goyal86df1382016-08-10 15:03:22 -0700477 * It adds a pending widget which allows the widget to come later. If there are extras, those
478 * are passed to widget options during bind.
479 * The config activity for the widget (if present) is not shown, so any optional configurations
480 * should be passed as extras and the widget should support reading these widget options.
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700481 */
Sunny Goyal86df1382016-08-10 15:03:22 -0700482 protected class PendingWidgetParser implements TagParser {
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700483
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700484 @Nullable
485 public ComponentName getComponentName(XmlPullParser parser) {
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700486 final String packageName = getAttributeValue(parser, ATTR_PACKAGE_NAME);
487 final String className = getAttributeValue(parser, ATTR_CLASS_NAME);
488 if (TextUtils.isEmpty(packageName) || TextUtils.isEmpty(className)) {
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700489 return null;
490 }
491 return new ComponentName(packageName, className);
492 }
493
494
495 @Override
496 public int parseAndAdd(XmlPullParser parser)
497 throws XmlPullParserException, IOException {
498 ComponentName cn = getComponentName(parser);
499 if (cn == null) {
Sunny Goyal86df1382016-08-10 15:03:22 -0700500 if (LOGD) Log.d(TAG, "Skipping invalid <appwidget> with no component");
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700501 return -1;
502 }
503
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700504 mValues.put(Favorites.SPANX, getAttributeValue(parser, ATTR_SPAN_X));
505 mValues.put(Favorites.SPANY, getAttributeValue(parser, ATTR_SPAN_Y));
Sunny Goyal86df1382016-08-10 15:03:22 -0700506 mValues.put(Favorites.ITEM_TYPE, Favorites.ITEM_TYPE_APPWIDGET);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700507
508 // Read the extras
509 Bundle extras = new Bundle();
510 int widgetDepth = parser.getDepth();
511 int type;
512 while ((type = parser.next()) != XmlPullParser.END_TAG ||
513 parser.getDepth() > widgetDepth) {
514 if (type != XmlPullParser.START_TAG) {
515 continue;
516 }
517
518 if (TAG_EXTRA.equals(parser.getName())) {
519 String key = getAttributeValue(parser, ATTR_KEY);
520 String value = getAttributeValue(parser, ATTR_VALUE);
521 if (key != null && value != null) {
522 extras.putString(key, value);
523 } else {
524 throw new RuntimeException("Widget extras must have a key and value");
525 }
526 } else {
527 throw new RuntimeException("Widgets can contain only extras");
528 }
529 }
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700530 return verifyAndInsert(cn, extras);
Sunny Goyal86df1382016-08-10 15:03:22 -0700531 }
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700532
Sunny Goyalefb7e842018-10-04 15:11:00 -0700533 protected int verifyAndInsert(ComponentName cn, Bundle extras) {
Sunny Goyal86df1382016-08-10 15:03:22 -0700534 mValues.put(Favorites.APPWIDGET_PROVIDER, cn.flattenToString());
535 mValues.put(Favorites.RESTORED,
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700536 LauncherAppWidgetInfo.FLAG_ID_NOT_VALID
537 | LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY
538 | LauncherAppWidgetInfo.FLAG_DIRECT_CONFIG);
Sunny Goyal86df1382016-08-10 15:03:22 -0700539 mValues.put(Favorites._ID, mCallback.generateNewItemId());
540 if (!extras.isEmpty()) {
541 mValues.put(Favorites.INTENT, new Intent().putExtras(extras).toUri(0));
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700542 }
Sunny Goyal86df1382016-08-10 15:03:22 -0700543
Sunny Goyalefb7e842018-10-04 15:11:00 -0700544 int insertedId = mCallback.insertAndCheck(mDb, mValues);
Sunny Goyal86df1382016-08-10 15:03:22 -0700545 if (insertedId < 0) {
546 return -1;
547 } else {
548 return insertedId;
549 }
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700550 }
551 }
552
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700553 protected class SearchWidgetParser extends PendingWidgetParser {
554 @Override
555 @Nullable
556 public ComponentName getComponentName(XmlPullParser parser) {
557 return QsbContainerView.getSearchComponentName(mContext);
558 }
559
560 @Override
561 protected int verifyAndInsert(ComponentName cn, Bundle extras) {
562 mValues.put(Favorites.OPTIONS, LauncherAppWidgetInfo.OPTION_SEARCH_WIDGET);
563 int flags = mValues.getAsInteger(Favorites.RESTORED)
564 | WorkspaceItemInfo.FLAG_RESTORE_STARTED;
565 mValues.put(Favorites.RESTORED, flags);
566 return super.verifyAndInsert(cn, extras);
567 }
568 }
569
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700570 protected class FolderParser implements TagParser {
Rajeev Kumar26453a22017-06-09 16:02:25 -0700571 private final ArrayMap<String, TagParser> mFolderElements;
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700572
573 public FolderParser() {
574 this(getFolderElementsMap());
575 }
576
Rajeev Kumar26453a22017-06-09 16:02:25 -0700577 public FolderParser(ArrayMap<String, TagParser> elements) {
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700578 mFolderElements = elements;
579 }
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700580
581 @Override
Sunny Goyal0d742312019-03-04 20:22:26 -0800582 public int parseAndAdd(XmlPullParser parser)
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700583 throws XmlPullParserException, IOException {
584 final String title;
585 final int titleResId = getAttributeResourceValue(parser, ATTR_TITLE, 0);
586 if (titleResId != 0) {
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700587 title = mSourceRes.getString(titleResId);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700588 } else {
Sunny Goyal55e2b162020-06-09 15:44:48 -0700589 String titleText = getAttributeValue(parser, ATTR_TITLE_TEXT);
590 title = TextUtils.isEmpty(titleText) ? "" : titleText;
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700591 }
592
593 mValues.put(Favorites.TITLE, title);
594 mValues.put(Favorites.ITEM_TYPE, Favorites.ITEM_TYPE_FOLDER);
595 mValues.put(Favorites.SPANX, 1);
596 mValues.put(Favorites.SPANY, 1);
597 mValues.put(Favorites._ID, mCallback.generateNewItemId());
Sunny Goyalefb7e842018-10-04 15:11:00 -0700598 int folderId = mCallback.insertAndCheck(mDb, mValues);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700599 if (folderId < 0) {
600 if (LOGD) Log.e(TAG, "Unable to add folder");
601 return -1;
602 }
603
604 final ContentValues myValues = new ContentValues(mValues);
Sunny Goyalefb7e842018-10-04 15:11:00 -0700605 IntArray folderItems = new IntArray();
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700606
607 int type;
608 int folderDepth = parser.getDepth();
Sunny Goyal56a57bb2015-07-06 11:15:45 -0700609 int rank = 0;
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700610 while ((type = parser.next()) != XmlPullParser.END_TAG ||
611 parser.getDepth() > folderDepth) {
612 if (type != XmlPullParser.START_TAG) {
613 continue;
614 }
615 mValues.clear();
616 mValues.put(Favorites.CONTAINER, folderId);
Sunny Goyal56a57bb2015-07-06 11:15:45 -0700617 mValues.put(Favorites.RANK, rank);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700618
619 TagParser tagParser = mFolderElements.get(parser.getName());
620 if (tagParser != null) {
Sunny Goyalefb7e842018-10-04 15:11:00 -0700621 final int id = tagParser.parseAndAdd(parser);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700622 if (id >= 0) {
623 folderItems.add(id);
Sunny Goyal56a57bb2015-07-06 11:15:45 -0700624 rank++;
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700625 }
626 } else {
627 throw new RuntimeException("Invalid folder item " + parser.getName());
628 }
629 }
630
Sunny Goyalefb7e842018-10-04 15:11:00 -0700631 int addedId = folderId;
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700632
633 // We can only have folders with >= 2 items, so we need to remove the
634 // folder and clean up if less than 2 items were included, or some
635 // failed to add, and less than 2 were actually added
636 if (folderItems.size() < 2) {
637 // Delete the folder
Sunny Goyal1d4a2df2015-03-30 11:11:46 -0700638 Uri uri = Favorites.getContentUri(folderId);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700639 SqlArguments args = new SqlArguments(uri, null, null);
640 mDb.delete(args.table, args.where, args.args);
641 addedId = -1;
642
643 // If we have a single item, promote it to where the folder
644 // would have been.
645 if (folderItems.size() == 1) {
646 final ContentValues childValues = new ContentValues();
647 copyInteger(myValues, childValues, Favorites.CONTAINER);
648 copyInteger(myValues, childValues, Favorites.SCREEN);
649 copyInteger(myValues, childValues, Favorites.CELLX);
650 copyInteger(myValues, childValues, Favorites.CELLY);
651
652 addedId = folderItems.get(0);
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700653 mDb.update(Favorites.TABLE_NAME, childValues,
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700654 Favorites._ID + "=" + addedId, null);
655 }
656 }
657 return addedId;
658 }
659 }
660
Rajeev Kumar26453a22017-06-09 16:02:25 -0700661 protected static void beginDocument(XmlPullParser parser, String firstElementName)
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700662 throws XmlPullParserException, IOException {
663 int type;
664 while ((type = parser.next()) != XmlPullParser.START_TAG
665 && type != XmlPullParser.END_DOCUMENT);
666
667 if (type != XmlPullParser.START_TAG) {
668 throw new XmlPullParserException("No start tag found");
669 }
670
671 if (!parser.getName().equals(firstElementName)) {
672 throw new XmlPullParserException("Unexpected start tag: found " + parser.getName() +
673 ", expected " + firstElementName);
674 }
675 }
676
Sunny Goyal96a09632015-12-16 11:32:54 -0800677 private static String convertToDistanceFromEnd(String value, int endValue) {
678 if (!TextUtils.isEmpty(value)) {
679 int x = Integer.parseInt(value);
680 if (x < 0) {
681 return Integer.toString(endValue + x);
682 }
683 }
684 return value;
685 }
686
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700687 /**
688 * Return attribute value, attempting launcher-specific namespace first
689 * before falling back to anonymous attribute.
690 */
Sunny Goyal0d742312019-03-04 20:22:26 -0800691 protected static String getAttributeValue(XmlPullParser parser, String attribute) {
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700692 String value = parser.getAttributeValue(
693 "http://schemas.android.com/apk/res-auto/com.android.launcher3", attribute);
694 if (value == null) {
695 value = parser.getAttributeValue(null, attribute);
696 }
697 return value;
698 }
699
700 /**
701 * Return attribute resource value, attempting launcher-specific namespace
702 * first before falling back to anonymous attribute.
703 */
Sunny Goyal0d742312019-03-04 20:22:26 -0800704 protected static int getAttributeResourceValue(XmlPullParser parser, String attribute,
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700705 int defaultValue) {
Sunny Goyal0d742312019-03-04 20:22:26 -0800706 AttributeSet attrs = Xml.asAttributeSet(parser);
707 int value = attrs.getAttributeResourceValue(
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700708 "http://schemas.android.com/apk/res-auto/com.android.launcher3", attribute,
709 defaultValue);
710 if (value == defaultValue) {
Sunny Goyal0d742312019-03-04 20:22:26 -0800711 value = attrs.getAttributeResourceValue(null, attribute, defaultValue);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700712 }
713 return value;
714 }
715
Rajeev Kumar26453a22017-06-09 16:02:25 -0700716 public interface LayoutParserCallback {
Sunny Goyalefb7e842018-10-04 15:11:00 -0700717 int generateNewItemId();
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700718
Sunny Goyalefb7e842018-10-04 15:11:00 -0700719 int insertAndCheck(SQLiteDatabase db, ContentValues values);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700720 }
721
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700722 @Thunk
723 static void copyInteger(ContentValues from, ContentValues to, String key) {
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700724 to.put(key, from.getAsInteger(key));
725 }
726}