blob: 557a91a42df18de5852dab5a83d67ac8c34a0085 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
2 * Copyright (C) 2008 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
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Romain Guy629de3e2010-01-13 12:20:59 -080019import android.appwidget.AppWidgetProviderInfo;
Sunny Goyalf599ccf2014-07-08 13:01:29 -070020import android.content.BroadcastReceiver;
21import android.content.ComponentName;
Sunny Goyalf599ccf2014-07-08 13:01:29 -070022import android.content.ContentProviderOperation;
23import android.content.ContentResolver;
24import android.content.ContentValues;
25import android.content.Context;
26import android.content.Intent;
Joe Onorato0589f0f2010-02-08 13:44:00 -080027import android.content.Intent.ShortcutIconResource;
Sunny Goyalf599ccf2014-07-08 13:01:29 -070028import android.content.IntentFilter;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080029import android.content.pm.PackageManager;
30import android.content.pm.ResolveInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080031import android.database.Cursor;
32import android.graphics.Bitmap;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080033import android.net.Uri;
Joe Onorato36115782010-06-17 13:28:48 -040034import android.os.Handler;
35import android.os.HandlerThread;
Sunny Goyal756adbc2015-04-16 15:20:51 -070036import android.os.Looper;
Joe Onorato0589f0f2010-02-08 13:44:00 -080037import android.os.Parcelable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080038import android.os.Process;
Joe Onorato9c1289c2009-08-17 11:03:03 -040039import android.os.SystemClock;
Chris Wrenc3919c02013-09-18 09:48:33 -040040import android.provider.BaseColumns;
Winson Chunga90303b2013-11-15 13:05:06 -080041import android.text.TextUtils;
Winson Chungaafa03c2010-06-11 17:34:16 -070042import android.util.Log;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080043import android.util.LongSparseArray;
Winson Chungc9168342013-06-26 14:54:55 -070044import android.util.Pair;
Michael Jurka34c2e6c2013-12-13 16:07:45 +010045
Sunny Goyalffe83f12014-08-14 17:39:34 -070046import com.android.launcher3.compat.AppWidgetManagerCompat;
Kenny Guyed131872014-04-30 03:02:21 +010047import com.android.launcher3.compat.LauncherActivityInfoCompat;
48import com.android.launcher3.compat.LauncherAppsCompat;
Sunny Goyal34942622014-08-29 17:20:55 -070049import com.android.launcher3.compat.PackageInstallerCompat;
Sunny Goyale755d462014-07-22 13:48:29 -070050import com.android.launcher3.compat.PackageInstallerCompat.PackageInstallInfo;
Kenny Guyed131872014-04-30 03:02:21 +010051import com.android.launcher3.compat.UserHandleCompat;
52import com.android.launcher3.compat.UserManagerCompat;
Sunny Goyal6c56c682015-07-16 14:09:05 -070053import com.android.launcher3.config.ProviderConfig;
Tony Wickham827cef22016-03-17 15:39:39 -070054import com.android.launcher3.dynamicui.ExtractionUtils;
Sunny Goyal26119432016-02-18 22:09:23 +000055import com.android.launcher3.folder.Folder;
56import com.android.launcher3.folder.FolderIcon;
Sunny Goyal1acb9e92016-05-16 12:41:09 -070057import com.android.launcher3.logging.FileLog;
Sunny Goyalf862a262015-12-14 14:27:38 -080058import com.android.launcher3.model.GridSizeMigrationTask;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -070059import com.android.launcher3.model.WidgetsModel;
Robin Lee26ace122015-03-16 19:41:43 +000060import com.android.launcher3.util.ComponentKey;
Sunny Goyal4e5cc642015-06-25 16:37:44 -070061import com.android.launcher3.util.CursorIconInfo;
Sunny Goyal3bbbabc2016-03-15 09:16:30 -070062import com.android.launcher3.util.FlagOp;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -070063import com.android.launcher3.util.GridOccupancy;
Sunny Goyale2df0622015-04-24 11:27:00 -070064import com.android.launcher3.util.LongArrayMap;
Sunny Goyal18bf8e22015-04-08 18:13:46 -070065import com.android.launcher3.util.ManagedProfileHeuristic;
Sunny Goyald09c3702016-04-06 16:18:20 -070066import com.android.launcher3.util.PackageManagerHelper;
Sunny Goyalaaf7d1d2016-05-17 13:38:54 -070067import com.android.launcher3.util.Preconditions;
Sunny Goyalda891c12016-03-18 18:29:24 -070068import com.android.launcher3.util.StringFilter;
Adam Cohen091440a2015-03-18 14:16:05 -070069import com.android.launcher3.util.Thunk;
Sunny Goyal527c7d32015-08-28 15:19:36 -070070import com.android.launcher3.util.ViewOnDrawExecutor;
Romain Guyedcce092010-03-04 13:03:17 -080071
Michael Jurkac2f801e2011-07-12 14:19:46 -070072import java.lang.ref.WeakReference;
73import java.net.URISyntaxException;
Sunny Goyal34942622014-08-29 17:20:55 -070074import java.security.InvalidParameterException;
Michael Jurkac2f801e2011-07-12 14:19:46 -070075import java.util.ArrayList;
Adam Cohendcd297f2013-06-18 13:13:40 -070076import java.util.Arrays;
Michael Jurkac2f801e2011-07-12 14:19:46 -070077import java.util.Collections;
78import java.util.Comparator;
79import java.util.HashMap;
Winson Chungb8b2a5a2012-07-12 17:55:31 -070080import java.util.HashSet;
Winson Chung2abf94d2012-07-18 18:16:38 -070081import java.util.Iterator;
Michael Jurkac2f801e2011-07-12 14:19:46 -070082import java.util.List;
Sunny Goyalf599ccf2014-07-08 13:01:29 -070083import java.util.Map.Entry;
Winson Chungb8b2a5a2012-07-12 17:55:31 -070084import java.util.Set;
Sunny Goyal527c7d32015-08-28 15:19:36 -070085import java.util.concurrent.Executor;
Michael Jurkac2f801e2011-07-12 14:19:46 -070086
The Android Open Source Project31dd5032009-03-03 19:32:27 -080087/**
88 * Maintains in-memory state of the Launcher. It is expected that there should be only one
89 * LauncherModel object held in a static. Also provide APIs for updating the database state
The Android Open Source Projectbc219c32009-03-09 11:52:14 -070090 * for the Launcher.
The Android Open Source Project31dd5032009-03-03 19:32:27 -080091 */
Kenny Guyed131872014-04-30 03:02:21 +010092public class LauncherModel extends BroadcastReceiver
Kenny Guyc2bd8102014-06-30 12:30:31 +010093 implements LauncherAppsCompat.OnAppsChangedCallbackCompat {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -080094 static final boolean DEBUG_LOADERS = false;
Chris Wrenee523362014-09-09 10:09:02 -040095 private static final boolean DEBUG_RECEIVER = false;
Sunny Goyal94485362014-09-18 16:13:58 -070096 private static final boolean REMOVE_UNRESTORED_ICONS = true;
Chris Wrenb358f812014-04-16 13:37:00 -040097
Joe Onorato9c1289c2009-08-17 11:03:03 -040098 static final String TAG = "Launcher.Model";
The Android Open Source Projectf96811c2009-03-18 17:39:48 -070099
Joe Onorato36115782010-06-17 13:28:48 -0400100 private static final int ITEMS_CHUNK = 6; // batch size for the workspace icons
Derek Prothro7aff3992013-12-10 14:00:37 -0500101 private static final long INVALID_SCREEN_ID = -1L;
Winson Chunga6945242014-01-08 14:04:34 -0800102
Adam Cohen091440a2015-03-18 14:16:05 -0700103 @Thunk final LauncherAppState mApp;
104 @Thunk final Object mLock = new Object();
105 @Thunk DeferredHandler mHandler = new DeferredHandler();
106 @Thunk LoaderTask mLoaderTask;
107 @Thunk boolean mIsLoaderTaskRunning;
Sunny Goyal756a28a2015-04-23 17:07:55 -0700108 @Thunk boolean mHasLoaderCompletedOnce;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800109
Adam Cohen091440a2015-03-18 14:16:05 -0700110 @Thunk static final HandlerThread sWorkerThread = new HandlerThread("launcher-loader");
Brad Fitzpatrick700889f2010-10-11 09:40:44 -0700111 static {
112 sWorkerThread.start();
113 }
Adam Cohen091440a2015-03-18 14:16:05 -0700114 @Thunk static final Handler sWorker = new Handler(sWorkerThread.getLooper());
Brad Fitzpatrick700889f2010-10-11 09:40:44 -0700115
Joe Onoratocc67f472010-06-08 10:54:30 -0700116 // We start off with everything not loaded. After that, we assume that
117 // our monitoring of the package manager provides all updates and we never
118 // need to do a requery. These are only ever touched from the loader thread.
Adam Cohen091440a2015-03-18 14:16:05 -0700119 @Thunk boolean mWorkspaceLoaded;
120 @Thunk boolean mAllAppsLoaded;
Joe Onoratocc67f472010-06-08 10:54:30 -0700121
Sunny Goyal756a28a2015-04-23 17:07:55 -0700122 /**
123 * Set of runnables to be called on the background thread after the workspace binding
124 * is complete.
125 */
126 static final ArrayList<Runnable> mBindCompleteRunnables = new ArrayList<Runnable>();
127
Adam Cohen091440a2015-03-18 14:16:05 -0700128 @Thunk WeakReference<Callbacks> mCallbacks;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800129
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700130 // < only access in worker thread >
Sunny Goyal2e1efb42016-03-03 16:58:55 -0800131 private final AllAppsList mBgAllAppsList;
Hyunyoung Song9110d482015-05-22 14:49:23 -0700132 // Entire list of widgets.
Sunny Goyal2e1efb42016-03-03 16:58:55 -0800133 private final WidgetsModel mBgWidgetsModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800134
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700135 // The lock that must be acquired before referencing any static bg data structures. Unlike
136 // other locks, this one can generally be held long-term because we never expect any of these
137 // static data structures to be referenced outside of the worker thread except on the first
138 // load after configuration change.
Winson Chung2abf94d2012-07-18 18:16:38 -0700139 static final Object sBgLock = new Object();
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700140
Adam Cohen487f7dd2012-06-28 18:12:10 -0700141 // sBgItemsIdMap maps *all* the ItemInfos (shortcuts, folders, and widgets) created by
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700142 // LauncherModel to their ids
Sunny Goyale2df0622015-04-24 11:27:00 -0700143 static final LongArrayMap<ItemInfo> sBgItemsIdMap = new LongArrayMap<>();
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700144
Adam Cohen487f7dd2012-06-28 18:12:10 -0700145 // sBgWorkspaceItems is passed to bindItems, which expects a list of all folders and shortcuts
146 // created by LauncherModel that are directly on the home screen (however, no widgets or
147 // shortcuts within folders).
148 static final ArrayList<ItemInfo> sBgWorkspaceItems = new ArrayList<ItemInfo>();
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700149
Adam Cohen487f7dd2012-06-28 18:12:10 -0700150 // sBgAppWidgets is all LauncherAppWidgetInfo created by LauncherModel. Passed to bindAppWidget()
151 static final ArrayList<LauncherAppWidgetInfo> sBgAppWidgets =
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700152 new ArrayList<LauncherAppWidgetInfo>();
153
Adam Cohen487f7dd2012-06-28 18:12:10 -0700154 // sBgFolders is all FolderInfos created by LauncherModel. Passed to bindFolders()
Sunny Goyale2df0622015-04-24 11:27:00 -0700155 static final LongArrayMap<FolderInfo> sBgFolders = new LongArrayMap<>();
Winson Chungb1094bd2011-08-24 16:14:08 -0700156
Adam Cohendcd297f2013-06-18 13:13:40 -0700157 // sBgWorkspaceScreens is the ordered set of workspace screens.
158 static final ArrayList<Long> sBgWorkspaceScreens = new ArrayList<Long>();
159
Sunny Goyalf599ccf2014-07-08 13:01:29 -0700160 // sPendingPackages is a set of packages which could be on sdcard and are not available yet
Sameer Padala513edae2014-07-29 16:17:08 -0700161 static final HashMap<UserHandleCompat, HashSet<String>> sPendingPackages =
162 new HashMap<UserHandleCompat, HashSet<String>>();
Sunny Goyalf599ccf2014-07-08 13:01:29 -0700163
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700164 // </ only access in worker thread >
165
Adam Cohen091440a2015-03-18 14:16:05 -0700166 @Thunk IconCache mIconCache;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800167
Adam Cohen091440a2015-03-18 14:16:05 -0700168 @Thunk final LauncherAppsCompat mLauncherApps;
169 @Thunk final UserManagerCompat mUserManager;
Kenny Guyed131872014-04-30 03:02:21 +0100170
Joe Onorato9c1289c2009-08-17 11:03:03 -0400171 public interface Callbacks {
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700172 public boolean setLoadOnResume();
Joe Onorato9c1289c2009-08-17 11:03:03 -0400173 public int getCurrentWorkspaceScreen();
Sunny Goyal527c7d32015-08-28 15:19:36 -0700174 public void clearPendingBinds();
Joe Onorato9c1289c2009-08-17 11:03:03 -0400175 public void startBinding();
Winson Chung64359a52013-07-08 17:17:08 -0700176 public void bindItems(ArrayList<ItemInfo> shortcuts, int start, int end,
177 boolean forceAnimateIcons);
Adam Cohendcd297f2013-06-18 13:13:40 -0700178 public void bindScreens(ArrayList<Long> orderedScreenIds);
Sunny Goyal66cfdc22015-02-02 13:01:51 -0800179 public void finishBindingItems();
Joe Onorato9c1289c2009-08-17 11:03:03 -0400180 public void bindAppWidget(LauncherAppWidgetInfo info);
Michael Jurkaeadbfc52013-09-04 00:45:37 +0200181 public void bindAllApplications(ArrayList<AppInfo> apps);
Winson Chungd64d1762013-08-20 14:37:16 -0700182 public void bindAppsAdded(ArrayList<Long> newScreens,
183 ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -0700184 ArrayList<ItemInfo> addAnimated,
185 ArrayList<AppInfo> addedApps);
Michael Jurkaeadbfc52013-09-04 00:45:37 +0200186 public void bindAppsUpdated(ArrayList<AppInfo> apps);
Sunny Goyal4390ace2014-10-13 11:33:11 -0700187 public void bindShortcutsChanged(ArrayList<ShortcutInfo> updated,
188 ArrayList<ShortcutInfo> removed, UserHandleCompat user);
189 public void bindWidgetsRestored(ArrayList<LauncherAppWidgetInfo> widgets);
Sunny Goyal756adbc2015-04-16 15:20:51 -0700190 public void bindRestoreItemsChange(HashSet<ItemInfo> updates);
Sunny Goyal3bbbabc2016-03-15 09:16:30 -0700191 public void bindWorkspaceComponentsRemoved(
192 HashSet<String> packageNames, HashSet<ComponentName> components,
193 UserHandleCompat user);
194 public void bindAppInfosRemoved(ArrayList<AppInfo> appInfos);
Sunny Goyal2e1efb42016-03-03 16:58:55 -0800195 public void notifyWidgetProvidersChanged();
196 public void bindWidgetsModel(WidgetsModel model);
Winson Chunga0b7e862013-09-05 16:03:15 -0700197 public boolean isAllAppsButtonRank(int rank);
Adam Cohen1462de32012-07-24 22:34:36 -0700198 public void onPageBoundSynchronously(int page);
Sunny Goyal527c7d32015-08-28 15:19:36 -0700199 public void executeOnNextDraw(ViewOnDrawExecutor executor);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400200 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800201
Winson Chung64359a52013-07-08 17:17:08 -0700202 public interface ItemInfoFilter {
203 public boolean filterItem(ItemInfo parent, ItemInfo info, ComponentName cn);
204 }
205
Bjorn Bringert1307f632013-10-03 22:31:03 +0100206 LauncherModel(LauncherAppState app, IconCache iconCache, AppFilter appFilter) {
Winson Chunga6945242014-01-08 14:04:34 -0800207 Context context = app.getContext();
Daniel Sandlere4f98912013-06-25 15:13:26 -0400208 mApp = app;
Bjorn Bringert1307f632013-10-03 22:31:03 +0100209 mBgAllAppsList = new AllAppsList(iconCache, appFilter);
Hyunyoung Songeaf291b2015-06-17 21:12:44 -0700210 mBgWidgetsModel = new WidgetsModel(context, iconCache, appFilter);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800211 mIconCache = iconCache;
212
Kenny Guyed131872014-04-30 03:02:21 +0100213 mLauncherApps = LauncherAppsCompat.getInstance(context);
214 mUserManager = UserManagerCompat.getInstance(context);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800215 }
216
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700217 /** Runs the specified runnable immediately if called from the main thread, otherwise it is
218 * posted on the main thread handler. */
Adam Cohen091440a2015-03-18 14:16:05 -0700219 @Thunk void runOnMainThread(Runnable r) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700220 if (sWorkerThread.getThreadId() == Process.myTid()) {
221 // If we are on the worker thread, post onto the main handler
222 mHandler.post(r);
223 } else {
224 r.run();
225 }
226 }
227
228 /** Runs the specified runnable immediately if called from the worker thread, otherwise it is
229 * posted on the worker thread handler. */
Sunny Goyal639e9062015-08-19 19:17:06 -0700230 @Thunk static void runOnWorkerThread(Runnable r) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700231 if (sWorkerThread.getThreadId() == Process.myTid()) {
232 r.run();
233 } else {
234 // If we are not on the worker thread, then post to the worker handler
235 sWorker.post(r);
236 }
237 }
238
Sunny Goyal756adbc2015-04-16 15:20:51 -0700239 public void setPackageState(final PackageInstallInfo installInfo) {
240 Runnable updateRunnable = new Runnable() {
241
242 @Override
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500243 public void run() {
Sunny Goyal756adbc2015-04-16 15:20:51 -0700244 synchronized (sBgLock) {
245 final HashSet<ItemInfo> updates = new HashSet<>();
246
247 if (installInfo.state == PackageInstallerCompat.STATUS_INSTALLED) {
248 // Ignore install success events as they are handled by Package add events.
249 return;
250 }
251
Sunny Goyale2df0622015-04-24 11:27:00 -0700252 for (ItemInfo info : sBgItemsIdMap) {
Sunny Goyal756adbc2015-04-16 15:20:51 -0700253 if (info instanceof ShortcutInfo) {
254 ShortcutInfo si = (ShortcutInfo) info;
255 ComponentName cn = si.getTargetComponent();
256 if (si.isPromise() && (cn != null)
257 && installInfo.packageName.equals(cn.getPackageName())) {
258 si.setInstallProgress(installInfo.progress);
259
260 if (installInfo.state == PackageInstallerCompat.STATUS_FAILED) {
261 // Mark this info as broken.
262 si.status &= ~ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE;
263 }
264 updates.add(si);
265 }
266 }
267 }
268
269 for (LauncherAppWidgetInfo widget : sBgAppWidgets) {
270 if (widget.providerName.getPackageName().equals(installInfo.packageName)) {
271 widget.installProgress = installInfo.progress;
272 updates.add(widget);
273 }
274 }
275
276 if (!updates.isEmpty()) {
277 // Push changes to the callback.
278 Runnable r = new Runnable() {
279 public void run() {
280 Callbacks callbacks = getCallback();
281 if (callbacks != null) {
282 callbacks.bindRestoreItemsChange(updates);
283 }
284 }
285 };
286 mHandler.post(r);
287 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500288 }
289 }
290 };
Sunny Goyal756adbc2015-04-16 15:20:51 -0700291 runOnWorkerThread(updateRunnable);
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500292 }
293
Sunny Goyal756adbc2015-04-16 15:20:51 -0700294 /**
295 * Updates the icons and label of all pending icons for the provided package name.
296 */
297 public void updateSessionDisplayInfo(final String packageName) {
298 Runnable updateRunnable = new Runnable() {
299
300 @Override
Sunny Goyala22666f2014-09-18 13:25:15 -0700301 public void run() {
Sunny Goyal756adbc2015-04-16 15:20:51 -0700302 synchronized (sBgLock) {
303 final ArrayList<ShortcutInfo> updates = new ArrayList<>();
304 final UserHandleCompat user = UserHandleCompat.myUserHandle();
305
Sunny Goyale2df0622015-04-24 11:27:00 -0700306 for (ItemInfo info : sBgItemsIdMap) {
Sunny Goyal756adbc2015-04-16 15:20:51 -0700307 if (info instanceof ShortcutInfo) {
308 ShortcutInfo si = (ShortcutInfo) info;
309 ComponentName cn = si.getTargetComponent();
310 if (si.isPromise() && (cn != null)
311 && packageName.equals(cn.getPackageName())) {
312 if (si.hasStatusFlag(ShortcutInfo.FLAG_AUTOINTALL_ICON)) {
313 // For auto install apps update the icon as well as label.
314 mIconCache.getTitleAndIcon(si,
315 si.promisedIntent, user,
316 si.shouldUseLowResIcon());
317 } else {
318 // Only update the icon for restored apps.
319 si.updateIcon(mIconCache);
320 }
321 updates.add(si);
322 }
323 }
324 }
325
326 if (!updates.isEmpty()) {
327 // Push changes to the callback.
328 Runnable r = new Runnable() {
329 public void run() {
330 Callbacks callbacks = getCallback();
331 if (callbacks != null) {
332 callbacks.bindShortcutsChanged(updates,
333 new ArrayList<ShortcutInfo>(), user);
334 }
335 }
336 };
337 mHandler.post(r);
338 }
Sunny Goyala22666f2014-09-18 13:25:15 -0700339 }
340 }
341 };
Sunny Goyal756adbc2015-04-16 15:20:51 -0700342 runOnWorkerThread(updateRunnable);
Sunny Goyala22666f2014-09-18 13:25:15 -0700343 }
344
Adam Cohen76a47a12014-02-05 11:47:43 -0800345 public void addAppsToAllApps(final Context ctx, final ArrayList<AppInfo> allAppsApps) {
Sunny Goyale0f58d72014-11-10 18:05:31 -0800346 final Callbacks callbacks = getCallback();
Adam Cohen76a47a12014-02-05 11:47:43 -0800347
348 if (allAppsApps == null) {
349 throw new RuntimeException("allAppsApps must not be null");
350 }
351 if (allAppsApps.isEmpty()) {
352 return;
353 }
354
355 // Process the newly added applications and add them to the database first
356 Runnable r = new Runnable() {
357 public void run() {
358 runOnMainThread(new Runnable() {
359 public void run() {
Sunny Goyale0f58d72014-11-10 18:05:31 -0800360 Callbacks cb = getCallback();
Adam Cohen76a47a12014-02-05 11:47:43 -0800361 if (callbacks == cb && cb != null) {
Chris Wren6d0dde02014-02-10 12:16:54 -0500362 callbacks.bindAppsAdded(null, null, null, allAppsApps);
Adam Cohen76a47a12014-02-05 11:47:43 -0800363 }
364 }
365 });
366 }
367 };
368 runOnWorkerThread(r);
Winson Chung997a9232013-07-24 15:33:46 -0700369 }
Adam Cohen76a47a12014-02-05 11:47:43 -0800370
Sunny Goyala9116722015-04-29 13:55:58 -0700371 private static boolean findNextAvailableIconSpaceInScreen(ArrayList<ItemInfo> occupiedPos,
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800372 int[] xy, int spanX, int spanY) {
373 LauncherAppState app = LauncherAppState.getInstance();
Adam Cohen2e6da152015-05-06 11:42:25 -0700374 InvariantDeviceProfile profile = app.getInvariantDeviceProfile();
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700375
376 GridOccupancy occupied = new GridOccupancy(profile.numColumns, profile.numRows);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800377 if (occupiedPos != null) {
Sunny Goyala9116722015-04-29 13:55:58 -0700378 for (ItemInfo r : occupiedPos) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700379 occupied.markCells(r, true);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800380 }
Winson Chungfe9d96a2013-11-14 11:30:05 -0800381 }
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700382 return occupied.findVacantCell(xy, spanX, spanY);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800383 }
384
385 /**
386 * Find a position on the screen for the given size or adds a new screen.
387 * @return screenId and the coordinates for the item.
388 */
Sunny Goyal756a28a2015-04-23 17:07:55 -0700389 @Thunk Pair<Long, int[]> findSpaceForItem(
Sunny Goyalc3642d42015-10-30 10:27:08 -0700390 Context context,
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800391 ArrayList<Long> workspaceScreens,
392 ArrayList<Long> addedWorkspaceScreensFinal,
393 int spanX, int spanY) {
Sunny Goyala9116722015-04-29 13:55:58 -0700394 LongSparseArray<ArrayList<ItemInfo>> screenItems = new LongSparseArray<>();
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800395
Sunny Goyala9116722015-04-29 13:55:58 -0700396 // Use sBgItemsIdMap as all the items are already loaded.
Sunny Goyal756a28a2015-04-23 17:07:55 -0700397 assertWorkspaceLoaded();
Sunny Goyala9116722015-04-29 13:55:58 -0700398 synchronized (sBgLock) {
399 for (ItemInfo info : sBgItemsIdMap) {
400 if (info.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
401 ArrayList<ItemInfo> items = screenItems.get(info.screenId);
402 if (items == null) {
403 items = new ArrayList<>();
404 screenItems.put(info.screenId, items);
405 }
406 items.add(info);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800407 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800408 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800409 }
410
411 // Find appropriate space for the item.
412 long screenId = 0;
413 int[] cordinates = new int[2];
414 boolean found = false;
415
416 int screenCount = workspaceScreens.size();
417 // First check the preferred screen.
Sunny Goyala9116722015-04-29 13:55:58 -0700418 int preferredScreenIndex = workspaceScreens.isEmpty() ? 0 : 1;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800419 if (preferredScreenIndex < screenCount) {
420 screenId = workspaceScreens.get(preferredScreenIndex);
421 found = findNextAvailableIconSpaceInScreen(
422 screenItems.get(screenId), cordinates, spanX, spanY);
423 }
424
425 if (!found) {
Sunny Goyala9116722015-04-29 13:55:58 -0700426 // Search on any of the screens starting from the first screen.
427 for (int screen = 1; screen < screenCount; screen++) {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800428 screenId = workspaceScreens.get(screen);
429 if (findNextAvailableIconSpaceInScreen(
430 screenItems.get(screenId), cordinates, spanX, spanY)) {
431 // We found a space for it
432 found = true;
433 break;
434 }
435 }
436 }
437
438 if (!found) {
439 // Still no position found. Add a new screen to the end.
Sunny Goyald2497482015-09-22 18:24:19 -0700440 screenId = LauncherSettings.Settings.call(context.getContentResolver(),
441 LauncherSettings.Settings.METHOD_NEW_SCREEN_ID)
442 .getLong(LauncherSettings.Settings.EXTRA_VALUE);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800443
444 // Save the screen id for binding in the workspace
445 workspaceScreens.add(screenId);
446 addedWorkspaceScreensFinal.add(screenId);
447
448 // If we still can't find an empty space, then God help us all!!!
449 if (!findNextAvailableIconSpaceInScreen(
450 screenItems.get(screenId), cordinates, spanX, spanY)) {
451 throw new RuntimeException("Can't find space to add the item");
452 }
453 }
454 return Pair.create(screenId, cordinates);
455 }
456
457 /**
458 * Adds the provided items to the workspace.
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800459 */
Sunny Goyal18bf8e22015-04-08 18:13:46 -0700460 public void addAndBindAddedWorkspaceItems(final Context context,
Sunny Goyala214a632015-05-06 12:23:34 -0700461 final ArrayList<? extends ItemInfo> workspaceApps) {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800462 final Callbacks callbacks = getCallback();
Adam Cohen76a47a12014-02-05 11:47:43 -0800463 if (workspaceApps.isEmpty()) {
Winson Chung9e6a0a22013-08-27 11:58:12 -0700464 return;
Winson Chung997a9232013-07-24 15:33:46 -0700465 }
Winson Chung64359a52013-07-08 17:17:08 -0700466 // Process the newly added applications and add them to the database first
467 Runnable r = new Runnable() {
468 public void run() {
469 final ArrayList<ItemInfo> addedShortcutsFinal = new ArrayList<ItemInfo>();
470 final ArrayList<Long> addedWorkspaceScreensFinal = new ArrayList<Long>();
471
Winson Chung76828c82013-08-19 15:43:29 -0700472 // Get the list of workspace screens. We need to append to this list and
473 // can not use sBgWorkspaceScreens because loadWorkspace() may not have been
474 // called.
Sunny Goyalc1b7c2e2015-01-16 16:19:04 -0800475 ArrayList<Long> workspaceScreens = loadWorkspaceScreensDb(context);
Winson Chung64359a52013-07-08 17:17:08 -0700476 synchronized(sBgLock) {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800477 for (ItemInfo item : workspaceApps) {
Sunny Goyala9116722015-04-29 13:55:58 -0700478 if (item instanceof ShortcutInfo) {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800479 // Short-circuit this logic if the icon exists somewhere on the workspace
Sunny Goyal756adbc2015-04-16 15:20:51 -0700480 if (shortcutExists(context, item.getIntent(), item.user)) {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800481 continue;
Winson Chungc763c4e2013-07-19 13:49:06 -0700482 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800483 }
Winson Chung76828c82013-08-19 15:43:29 -0700484
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800485 // Find appropriate space for the item.
Sunny Goyalc3642d42015-10-30 10:27:08 -0700486 Pair<Long, int[]> coords = findSpaceForItem(context,
Sunny Goyal9eba1fd2015-10-16 08:58:57 -0700487 workspaceScreens, addedWorkspaceScreensFinal, 1, 1);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800488 long screenId = coords.first;
489 int[] cordinates = coords.second;
Winson Chung64359a52013-07-08 17:17:08 -0700490
Sunny Goyal18bf8e22015-04-08 18:13:46 -0700491 ItemInfo itemInfo;
492 if (item instanceof ShortcutInfo || item instanceof FolderInfo) {
493 itemInfo = item;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800494 } else if (item instanceof AppInfo) {
Sunny Goyal18bf8e22015-04-08 18:13:46 -0700495 itemInfo = ((AppInfo) item).makeShortcut();
Winson Chung997a9232013-07-24 15:33:46 -0700496 } else {
497 throw new RuntimeException("Unexpected info type");
498 }
Winson Chung94d67682013-09-25 16:29:40 -0700499
Winson Chung64359a52013-07-08 17:17:08 -0700500 // Add the shortcut to the db
Sunny Goyal18bf8e22015-04-08 18:13:46 -0700501 addItemToDatabase(context, itemInfo,
Winson Chung64359a52013-07-08 17:17:08 -0700502 LauncherSettings.Favorites.CONTAINER_DESKTOP,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -0700503 screenId, cordinates[0], cordinates[1]);
Winson Chung64359a52013-07-08 17:17:08 -0700504 // Save the ShortcutInfo for binding in the workspace
Sunny Goyal18bf8e22015-04-08 18:13:46 -0700505 addedShortcutsFinal.add(itemInfo);
Winson Chung64359a52013-07-08 17:17:08 -0700506 }
507 }
508
Winson Chung76828c82013-08-19 15:43:29 -0700509 // Update the workspace screens
510 updateWorkspaceScreenOrder(context, workspaceScreens);
511
Adam Cohen76a47a12014-02-05 11:47:43 -0800512 if (!addedShortcutsFinal.isEmpty()) {
Winson Chung997a9232013-07-24 15:33:46 -0700513 runOnMainThread(new Runnable() {
514 public void run() {
Sunny Goyale0f58d72014-11-10 18:05:31 -0800515 Callbacks cb = getCallback();
Winson Chung997a9232013-07-24 15:33:46 -0700516 if (callbacks == cb && cb != null) {
Winson Chung997a9232013-07-24 15:33:46 -0700517 final ArrayList<ItemInfo> addAnimated = new ArrayList<ItemInfo>();
518 final ArrayList<ItemInfo> addNotAnimated = new ArrayList<ItemInfo>();
Winson Chung94d67682013-09-25 16:29:40 -0700519 if (!addedShortcutsFinal.isEmpty()) {
520 ItemInfo info = addedShortcutsFinal.get(addedShortcutsFinal.size() - 1);
521 long lastScreenId = info.screenId;
522 for (ItemInfo i : addedShortcutsFinal) {
523 if (i.screenId == lastScreenId) {
524 addAnimated.add(i);
525 } else {
526 addNotAnimated.add(i);
527 }
Winson Chung997a9232013-07-24 15:33:46 -0700528 }
529 }
Winson Chungd64d1762013-08-20 14:37:16 -0700530 callbacks.bindAppsAdded(addedWorkspaceScreensFinal,
Adam Cohen76a47a12014-02-05 11:47:43 -0800531 addNotAnimated, addAnimated, null);
Winson Chung997a9232013-07-24 15:33:46 -0700532 }
Winson Chung64359a52013-07-08 17:17:08 -0700533 }
Winson Chung997a9232013-07-24 15:33:46 -0700534 });
535 }
Winson Chung64359a52013-07-08 17:17:08 -0700536 }
537 };
538 runOnWorkerThread(r);
539 }
540
Joe Onorato9c1289c2009-08-17 11:03:03 -0400541 /**
542 * Adds an item to the DB if it was not created previously, or move it to a new
543 * <container, screen, cellX, cellY>
544 */
Adam Cohenf9c184a2016-01-15 16:47:43 -0800545 public static void addOrMoveItemInDatabase(Context context, ItemInfo item, long container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700546 long screenId, int cellX, int cellY) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400547 if (item.container == ItemInfo.NO_ID) {
548 // From all apps
Sunny Goyal1d4a2df2015-03-30 11:11:46 -0700549 addItemToDatabase(context, item, container, screenId, cellX, cellY);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400550 } else {
551 // From somewhere else
Adam Cohendcd297f2013-06-18 13:13:40 -0700552 moveItemInDatabase(context, item, container, screenId, cellX, cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800553 }
554 }
555
Michael Jurkab2ae8ac2012-09-21 12:06:06 -0700556 static void checkItemInfoLocked(
557 final long itemId, final ItemInfo item, StackTraceElement[] stackTrace) {
558 ItemInfo modelItem = sBgItemsIdMap.get(itemId);
559 if (modelItem != null && item != modelItem) {
560 // check all the data is consistent
561 if (modelItem instanceof ShortcutInfo && item instanceof ShortcutInfo) {
562 ShortcutInfo modelShortcut = (ShortcutInfo) modelItem;
563 ShortcutInfo shortcut = (ShortcutInfo) item;
564 if (modelShortcut.title.toString().equals(shortcut.title.toString()) &&
565 modelShortcut.intent.filterEquals(shortcut.intent) &&
566 modelShortcut.id == shortcut.id &&
567 modelShortcut.itemType == shortcut.itemType &&
568 modelShortcut.container == shortcut.container &&
Adam Cohendcd297f2013-06-18 13:13:40 -0700569 modelShortcut.screenId == shortcut.screenId &&
Michael Jurkab2ae8ac2012-09-21 12:06:06 -0700570 modelShortcut.cellX == shortcut.cellX &&
571 modelShortcut.cellY == shortcut.cellY &&
572 modelShortcut.spanX == shortcut.spanX &&
Sunny Goyalaa8ef112015-06-12 20:04:41 -0700573 modelShortcut.spanY == shortcut.spanY) {
Michael Jurkab2ae8ac2012-09-21 12:06:06 -0700574 // For all intents and purposes, this is the same object
575 return;
576 }
577 }
578
579 // the modelItem needs to match up perfectly with item if our model is
580 // to be consistent with the database-- for now, just require
581 // modelItem == item or the equality check above
582 String msg = "item: " + ((item != null) ? item.toString() : "null") +
583 "modelItem: " +
584 ((modelItem != null) ? modelItem.toString() : "null") +
585 "Error: ItemInfo passed to checkItemInfo doesn't match original";
586 RuntimeException e = new RuntimeException(msg);
587 if (stackTrace != null) {
588 e.setStackTrace(stackTrace);
589 }
Adam Cohenb9ada652013-11-08 08:25:08 -0800590 throw e;
Michael Jurkab2ae8ac2012-09-21 12:06:06 -0700591 }
592 }
593
Michael Jurka816474f2012-06-25 14:49:02 -0700594 static void checkItemInfo(final ItemInfo item) {
595 final StackTraceElement[] stackTrace = new Throwable().getStackTrace();
596 final long itemId = item.id;
597 Runnable r = new Runnable() {
Michael Jurkab2ae8ac2012-09-21 12:06:06 -0700598 public void run() {
599 synchronized (sBgLock) {
600 checkItemInfoLocked(itemId, item, stackTrace);
Michael Jurka816474f2012-06-25 14:49:02 -0700601 }
Michael Jurkab2ae8ac2012-09-21 12:06:06 -0700602 }
603 };
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700604 runOnWorkerThread(r);
Michael Jurka816474f2012-06-25 14:49:02 -0700605 }
606
Michael Jurkac9d95c52011-08-29 14:03:34 -0700607 static void updateItemInDatabaseHelper(Context context, final ContentValues values,
608 final ItemInfo item, final String callingFunction) {
609 final long itemId = item.id;
Sunny Goyal1d4a2df2015-03-30 11:11:46 -0700610 final Uri uri = LauncherSettings.Favorites.getContentUri(itemId);
Michael Jurkac9d95c52011-08-29 14:03:34 -0700611 final ContentResolver cr = context.getContentResolver();
612
Adam Cohen487f7dd2012-06-28 18:12:10 -0700613 final StackTraceElement[] stackTrace = new Throwable().getStackTrace();
Michael Jurkac9d95c52011-08-29 14:03:34 -0700614 Runnable r = new Runnable() {
615 public void run() {
616 cr.update(uri, values, null, null);
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700617 updateItemArrays(item, itemId, stackTrace);
618 }
619 };
620 runOnWorkerThread(r);
621 }
Michael Jurkac9d95c52011-08-29 14:03:34 -0700622
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700623 static void updateItemsInDatabaseHelper(Context context, final ArrayList<ContentValues> valuesList,
624 final ArrayList<ItemInfo> items, final String callingFunction) {
625 final ContentResolver cr = context.getContentResolver();
Adam Cohen487f7dd2012-06-28 18:12:10 -0700626
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700627 final StackTraceElement[] stackTrace = new Throwable().getStackTrace();
628 Runnable r = new Runnable() {
629 public void run() {
630 ArrayList<ContentProviderOperation> ops =
631 new ArrayList<ContentProviderOperation>();
632 int count = items.size();
633 for (int i = 0; i < count; i++) {
634 ItemInfo item = items.get(i);
635 final long itemId = item.id;
Sunny Goyal1d4a2df2015-03-30 11:11:46 -0700636 final Uri uri = LauncherSettings.Favorites.getContentUri(itemId);
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700637 ContentValues values = valuesList.get(i);
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700638
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700639 ops.add(ContentProviderOperation.newUpdate(uri).withValues(values).build());
640 updateItemArrays(item, itemId, stackTrace);
641
642 }
643 try {
644 cr.applyBatch(LauncherProvider.AUTHORITY, ops);
645 } catch (Exception e) {
646 e.printStackTrace();
Michael Jurkac9d95c52011-08-29 14:03:34 -0700647 }
648 }
649 };
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700650 runOnWorkerThread(r);
Michael Jurkac9d95c52011-08-29 14:03:34 -0700651 }
Adam Cohenbebf0422012-04-11 18:06:28 -0700652
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700653 static void updateItemArrays(ItemInfo item, long itemId, StackTraceElement[] stackTrace) {
654 // Lock on mBgLock *after* the db operation
655 synchronized (sBgLock) {
656 checkItemInfoLocked(itemId, item, stackTrace);
657
658 if (item.container != LauncherSettings.Favorites.CONTAINER_DESKTOP &&
659 item.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
660 // Item is in a folder, make sure this folder exists
661 if (!sBgFolders.containsKey(item.container)) {
662 // An items container is being set to a that of an item which is not in
663 // the list of Folders.
664 String msg = "item: " + item + " container being set to: " +
665 item.container + ", not in the list of folders";
666 Log.e(TAG, msg);
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700667 }
668 }
669
670 // Items are added/removed from the corresponding FolderInfo elsewhere, such
671 // as in Workspace.onDrop. Here, we just add/remove them from the list of items
672 // that are on the desktop, as appropriate
673 ItemInfo modelItem = sBgItemsIdMap.get(itemId);
Winson Chung33231f52013-12-09 16:57:45 -0800674 if (modelItem != null &&
675 (modelItem.container == LauncherSettings.Favorites.CONTAINER_DESKTOP ||
676 modelItem.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT)) {
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700677 switch (modelItem.itemType) {
678 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
679 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
680 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
681 if (!sBgWorkspaceItems.contains(modelItem)) {
682 sBgWorkspaceItems.add(modelItem);
683 }
684 break;
685 default:
686 break;
687 }
688 } else {
689 sBgWorkspaceItems.remove(modelItem);
690 }
691 }
692 }
693
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800694 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -0400695 * Move an item in the DB to a new <container, screen, cellX, cellY>
The Android Open Source Projectbc219c32009-03-09 11:52:14 -0700696 */
Sunny Goyal83a8f042015-05-19 12:52:12 -0700697 public static void moveItemInDatabase(Context context, final ItemInfo item, final long container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700698 final long screenId, final int cellX, final int cellY) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400699 item.container = container;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400700 item.cellX = cellX;
701 item.cellY = cellY;
Michael Jurkac9d95c52011-08-29 14:03:34 -0700702
Winson Chung3d503fb2011-07-13 17:25:49 -0700703 // We store hotseat items in canonical form which is this orientation invariant position
704 // in the hotseat
Adam Cohendcd297f2013-06-18 13:13:40 -0700705 if (context instanceof Launcher && screenId < 0 &&
Winson Chung3d503fb2011-07-13 17:25:49 -0700706 container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
Adam Cohendcd297f2013-06-18 13:13:40 -0700707 item.screenId = ((Launcher) context).getHotseat().getOrderInHotseat(cellX, cellY);
Winson Chung3d503fb2011-07-13 17:25:49 -0700708 } else {
Adam Cohendcd297f2013-06-18 13:13:40 -0700709 item.screenId = screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -0700710 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400711
712 final ContentValues values = new ContentValues();
Joe Onorato9c1289c2009-08-17 11:03:03 -0400713 values.put(LauncherSettings.Favorites.CONTAINER, item.container);
Winson Chung3d503fb2011-07-13 17:25:49 -0700714 values.put(LauncherSettings.Favorites.CELLX, item.cellX);
715 values.put(LauncherSettings.Favorites.CELLY, item.cellY);
Sunny Goyal08f72612015-01-05 13:41:43 -0800716 values.put(LauncherSettings.Favorites.RANK, item.rank);
Adam Cohendcd297f2013-06-18 13:13:40 -0700717 values.put(LauncherSettings.Favorites.SCREEN, item.screenId);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400718
Michael Jurkac9d95c52011-08-29 14:03:34 -0700719 updateItemInDatabaseHelper(context, values, item, "moveItemInDatabase");
The Android Open Source Projectbc219c32009-03-09 11:52:14 -0700720 }
721
722 /**
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700723 * Move items in the DB to a new <container, screen, cellX, cellY>. We assume that the
724 * cellX, cellY have already been updated on the ItemInfos.
725 */
Adam Cohenf9c184a2016-01-15 16:47:43 -0800726 public static void moveItemsInDatabase(Context context, final ArrayList<ItemInfo> items,
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700727 final long container, final int screen) {
728
729 ArrayList<ContentValues> contentValues = new ArrayList<ContentValues>();
730 int count = items.size();
731
732 for (int i = 0; i < count; i++) {
733 ItemInfo item = items.get(i);
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700734 item.container = container;
735
736 // We store hotseat items in canonical form which is this orientation invariant position
737 // in the hotseat
738 if (context instanceof Launcher && screen < 0 &&
739 container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
Adam Cohendcd297f2013-06-18 13:13:40 -0700740 item.screenId = ((Launcher) context).getHotseat().getOrderInHotseat(item.cellX,
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700741 item.cellY);
742 } else {
Adam Cohendcd297f2013-06-18 13:13:40 -0700743 item.screenId = screen;
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700744 }
745
746 final ContentValues values = new ContentValues();
747 values.put(LauncherSettings.Favorites.CONTAINER, item.container);
748 values.put(LauncherSettings.Favorites.CELLX, item.cellX);
749 values.put(LauncherSettings.Favorites.CELLY, item.cellY);
Sunny Goyal08f72612015-01-05 13:41:43 -0800750 values.put(LauncherSettings.Favorites.RANK, item.rank);
Adam Cohendcd297f2013-06-18 13:13:40 -0700751 values.put(LauncherSettings.Favorites.SCREEN, item.screenId);
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700752
753 contentValues.add(values);
754 }
755 updateItemsInDatabaseHelper(context, contentValues, items, "moveItemInDatabase");
756 }
757
758 /**
Adam Cohenbebf0422012-04-11 18:06:28 -0700759 * Move and/or resize item in the DB to a new <container, screen, cellX, cellY, spanX, spanY>
Adam Cohend4844c32011-02-18 19:25:06 -0800760 */
Adam Cohenbebf0422012-04-11 18:06:28 -0700761 static void modifyItemInDatabase(Context context, final ItemInfo item, final long container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700762 final long screenId, final int cellX, final int cellY, final int spanX, final int spanY) {
Winson Chung0f84a602013-09-30 14:30:58 -0700763 item.container = container;
Adam Cohend4844c32011-02-18 19:25:06 -0800764 item.cellX = cellX;
765 item.cellY = cellY;
Adam Cohenbebf0422012-04-11 18:06:28 -0700766 item.spanX = spanX;
767 item.spanY = spanY;
768
769 // We store hotseat items in canonical form which is this orientation invariant position
770 // in the hotseat
Adam Cohendcd297f2013-06-18 13:13:40 -0700771 if (context instanceof Launcher && screenId < 0 &&
Adam Cohenbebf0422012-04-11 18:06:28 -0700772 container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
Adam Cohendcd297f2013-06-18 13:13:40 -0700773 item.screenId = ((Launcher) context).getHotseat().getOrderInHotseat(cellX, cellY);
Adam Cohenbebf0422012-04-11 18:06:28 -0700774 } else {
Adam Cohendcd297f2013-06-18 13:13:40 -0700775 item.screenId = screenId;
Adam Cohenbebf0422012-04-11 18:06:28 -0700776 }
Adam Cohend4844c32011-02-18 19:25:06 -0800777
Adam Cohend4844c32011-02-18 19:25:06 -0800778 final ContentValues values = new ContentValues();
Adam Cohend4844c32011-02-18 19:25:06 -0800779 values.put(LauncherSettings.Favorites.CONTAINER, item.container);
Adam Cohenbebf0422012-04-11 18:06:28 -0700780 values.put(LauncherSettings.Favorites.CELLX, item.cellX);
781 values.put(LauncherSettings.Favorites.CELLY, item.cellY);
Sunny Goyal08f72612015-01-05 13:41:43 -0800782 values.put(LauncherSettings.Favorites.RANK, item.rank);
Adam Cohenbebf0422012-04-11 18:06:28 -0700783 values.put(LauncherSettings.Favorites.SPANX, item.spanX);
784 values.put(LauncherSettings.Favorites.SPANY, item.spanY);
Adam Cohendcd297f2013-06-18 13:13:40 -0700785 values.put(LauncherSettings.Favorites.SCREEN, item.screenId);
Adam Cohend4844c32011-02-18 19:25:06 -0800786
Michael Jurka816474f2012-06-25 14:49:02 -0700787 updateItemInDatabaseHelper(context, values, item, "modifyItemInDatabase");
Adam Cohenbebf0422012-04-11 18:06:28 -0700788 }
Michael Jurkac9d95c52011-08-29 14:03:34 -0700789
790 /**
791 * Update an item to the database in a specified container.
792 */
Sunny Goyal83a8f042015-05-19 12:52:12 -0700793 public static void updateItemInDatabase(Context context, final ItemInfo item) {
Michael Jurkac9d95c52011-08-29 14:03:34 -0700794 final ContentValues values = new ContentValues();
Kenny Guyed131872014-04-30 03:02:21 +0100795 item.onAddToDatabase(context, values);
Michael Jurkac9d95c52011-08-29 14:03:34 -0700796 updateItemInDatabaseHelper(context, values, item, "updateItemInDatabase");
Adam Cohend4844c32011-02-18 19:25:06 -0800797 }
798
Sunny Goyal756a28a2015-04-23 17:07:55 -0700799 private void assertWorkspaceLoaded() {
Sunny Goyal8f531dd2015-08-25 17:08:57 -0700800 if (ProviderConfig.IS_DOGFOOD_BUILD) {
Sunny Goyal639e9062015-08-19 19:17:06 -0700801 synchronized (mLock) {
802 if (!mHasLoaderCompletedOnce ||
803 (mLoaderTask != null && mLoaderTask.mIsLoadingAndBindingWorkspace)) {
804 throw new RuntimeException("Trying to add shortcut while loader is running");
805 }
806 }
Sunny Goyal756a28a2015-04-23 17:07:55 -0700807 }
808 }
809
Adam Cohend4844c32011-02-18 19:25:06 -0800810 /**
Sunny Goyal756adbc2015-04-16 15:20:51 -0700811 * Returns true if the shortcuts already exists on the workspace. This must be called after
812 * the workspace has been loaded. We identify a shortcut by its intent.
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800813 */
Sunny Goyal756a28a2015-04-23 17:07:55 -0700814 @Thunk boolean shortcutExists(Context context, Intent intent, UserHandleCompat user) {
815 assertWorkspaceLoaded();
Sunny Goyaldfde9992015-05-01 12:31:32 -0700816 final String intentWithPkg, intentWithoutPkg;
Sunny Goyal2a6cf092014-06-26 15:27:14 -0700817 if (intent.getComponent() != null) {
818 // If component is not null, an intent with null package will produce
819 // the same result and should also be a match.
Sunny Goyal4e5cc642015-06-25 16:37:44 -0700820 String packageName = intent.getComponent().getPackageName();
Sunny Goyal2a6cf092014-06-26 15:27:14 -0700821 if (intent.getPackage() != null) {
Sunny Goyaldfde9992015-05-01 12:31:32 -0700822 intentWithPkg = intent.toUri(0);
823 intentWithoutPkg = new Intent(intent).setPackage(null).toUri(0);
Sunny Goyal2a6cf092014-06-26 15:27:14 -0700824 } else {
Sunny Goyaldfde9992015-05-01 12:31:32 -0700825 intentWithPkg = new Intent(intent).setPackage(packageName).toUri(0);
826 intentWithoutPkg = intent.toUri(0);
Sunny Goyal2a6cf092014-06-26 15:27:14 -0700827 }
828 } else {
Sunny Goyaldfde9992015-05-01 12:31:32 -0700829 intentWithPkg = intent.toUri(0);
830 intentWithoutPkg = intent.toUri(0);
Sunny Goyal2a6cf092014-06-26 15:27:14 -0700831 }
Sunny Goyal756adbc2015-04-16 15:20:51 -0700832
833 synchronized (sBgLock) {
Sunny Goyale2df0622015-04-24 11:27:00 -0700834 for (ItemInfo item : sBgItemsIdMap) {
Sunny Goyal756adbc2015-04-16 15:20:51 -0700835 if (item instanceof ShortcutInfo) {
836 ShortcutInfo info = (ShortcutInfo) item;
Sunny Goyal4e5cc642015-06-25 16:37:44 -0700837 Intent targetIntent = info.promisedIntent == null
838 ? info.intent : info.promisedIntent;
839 if (targetIntent != null && info.user.equals(user)) {
840 String s = targetIntent.toUri(0);
Sunny Goyaldfde9992015-05-01 12:31:32 -0700841 if (intentWithPkg.equals(s) || intentWithoutPkg.equals(s)) {
842 return true;
843 }
Sunny Goyal756adbc2015-04-16 15:20:51 -0700844 }
845 }
846 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800847 }
Sunny Goyal756adbc2015-04-16 15:20:51 -0700848 return false;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -0700849 }
850
Joe Onorato9c1289c2009-08-17 11:03:03 -0400851 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -0400852 * Add an item to the database in a specified container. Sets the container, screen, cellX and
853 * cellY fields of the item. Also assigns an ID to the item.
854 */
Sunny Goyal18bf8e22015-04-08 18:13:46 -0700855 public static void addItemToDatabase(Context context, final ItemInfo item, final long container,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -0700856 final long screenId, final int cellX, final int cellY) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400857 item.container = container;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400858 item.cellX = cellX;
859 item.cellY = cellY;
Winson Chung3d503fb2011-07-13 17:25:49 -0700860 // We store hotseat items in canonical form which is this orientation invariant position
861 // in the hotseat
Adam Cohendcd297f2013-06-18 13:13:40 -0700862 if (context instanceof Launcher && screenId < 0 &&
Winson Chung3d503fb2011-07-13 17:25:49 -0700863 container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
Adam Cohendcd297f2013-06-18 13:13:40 -0700864 item.screenId = ((Launcher) context).getHotseat().getOrderInHotseat(cellX, cellY);
Winson Chung3d503fb2011-07-13 17:25:49 -0700865 } else {
Adam Cohendcd297f2013-06-18 13:13:40 -0700866 item.screenId = screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -0700867 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400868
869 final ContentValues values = new ContentValues();
870 final ContentResolver cr = context.getContentResolver();
Kenny Guyed131872014-04-30 03:02:21 +0100871 item.onAddToDatabase(context, values);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400872
Sunny Goyald2497482015-09-22 18:24:19 -0700873 item.id = LauncherSettings.Settings.call(cr, LauncherSettings.Settings.METHOD_NEW_ITEM_ID)
874 .getLong(LauncherSettings.Settings.EXTRA_VALUE);
875
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700876 values.put(LauncherSettings.Favorites._ID, item.id);
Winson Chungaafa03c2010-06-11 17:34:16 -0700877
Jason Monk8e19cf22014-03-20 15:06:57 -0400878 final StackTraceElement[] stackTrace = new Throwable().getStackTrace();
Michael Jurkac9d95c52011-08-29 14:03:34 -0700879 Runnable r = new Runnable() {
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700880 public void run() {
Sunny Goyal1d4a2df2015-03-30 11:11:46 -0700881 cr.insert(LauncherSettings.Favorites.CONTENT_URI, values);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400882
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700883 // Lock on mBgLock *after* the db operation
Winson Chung2abf94d2012-07-18 18:16:38 -0700884 synchronized (sBgLock) {
Jason Monk8e19cf22014-03-20 15:06:57 -0400885 checkItemInfoLocked(item.id, item, stackTrace);
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700886 sBgItemsIdMap.put(item.id, item);
887 switch (item.itemType) {
888 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
889 sBgFolders.put(item.id, (FolderInfo) item);
890 // Fall through
891 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
892 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
893 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP ||
894 item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
895 sBgWorkspaceItems.add(item);
896 } else {
897 if (!sBgFolders.containsKey(item.container)) {
898 // Adding an item to a folder that doesn't exist.
899 String msg = "adding item: " + item + " to a folder that " +
900 " doesn't exist";
Adam Cohen28b3e102012-10-04 17:21:33 -0700901 Log.e(TAG, msg);
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700902 }
Adam Cohen487f7dd2012-06-28 18:12:10 -0700903 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700904 break;
905 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
906 sBgAppWidgets.add((LauncherAppWidgetInfo) item);
907 break;
908 }
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700909 }
910 }
Michael Jurkac9d95c52011-08-29 14:03:34 -0700911 };
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700912 runOnWorkerThread(r);
The Android Open Source Projectf96811c2009-03-18 17:39:48 -0700913 }
914
Sunny Goyal34942622014-08-29 17:20:55 -0700915 private static ArrayList<ItemInfo> getItemsByPackageName(
916 final String pn, final UserHandleCompat user) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -0700917 ItemInfoFilter filter = new ItemInfoFilter() {
918 @Override
919 public boolean filterItem(ItemInfo parent, ItemInfo info, ComponentName cn) {
920 return cn.getPackageName().equals(pn) && info.user.equals(user);
921 }
922 };
Sunny Goyale2df0622015-04-24 11:27:00 -0700923 return filterItemInfos(sBgItemsIdMap, filter);
Sunny Goyal34942622014-08-29 17:20:55 -0700924 }
925
926 /**
927 * Removes all the items from the database corresponding to the specified package.
928 */
929 static void deletePackageFromDatabase(Context context, final String pn,
930 final UserHandleCompat user) {
931 deleteItemsFromDatabase(context, getItemsByPackageName(pn, user));
Sunny Goyale7b8cd92014-08-27 14:04:33 -0700932 }
933
934 /**
Michael Jurkac9d95c52011-08-29 14:03:34 -0700935 * Removes the specified item from the database
Joe Onorato9c1289c2009-08-17 11:03:03 -0400936 */
Sunny Goyalfa401a12015-04-10 13:45:42 -0700937 public static void deleteItemFromDatabase(Context context, final ItemInfo item) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -0700938 ArrayList<ItemInfo> items = new ArrayList<ItemInfo>();
939 items.add(item);
940 deleteItemsFromDatabase(context, items);
941 }
942
943 /**
944 * Removes the specified items from the database
Sunny Goyale7b8cd92014-08-27 14:04:33 -0700945 */
Sunny Goyal4390ace2014-10-13 11:33:11 -0700946 static void deleteItemsFromDatabase(Context context, final ArrayList<? extends ItemInfo> items) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400947 final ContentResolver cr = context.getContentResolver();
Michael Jurka83df1882011-08-31 20:59:26 -0700948 Runnable r = new Runnable() {
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700949 public void run() {
Sunny Goyale7b8cd92014-08-27 14:04:33 -0700950 for (ItemInfo item : items) {
Sunny Goyal1d4a2df2015-03-30 11:11:46 -0700951 final Uri uri = LauncherSettings.Favorites.getContentUri(item.id);
Sunny Goyale7b8cd92014-08-27 14:04:33 -0700952 cr.delete(uri, null, null);
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700953
Sunny Goyale7b8cd92014-08-27 14:04:33 -0700954 // Lock on mBgLock *after* the db operation
955 synchronized (sBgLock) {
956 switch (item.itemType) {
957 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
958 sBgFolders.remove(item.id);
Sunny Goyale2df0622015-04-24 11:27:00 -0700959 for (ItemInfo info: sBgItemsIdMap) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -0700960 if (info.container == item.id) {
961 // We are deleting a folder which still contains items that
962 // think they are contained by that folder.
963 String msg = "deleting a folder (" + item + ") which still " +
964 "contains items (" + info + ")";
965 Log.e(TAG, msg);
966 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700967 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -0700968 sBgWorkspaceItems.remove(item);
969 break;
970 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
971 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
972 sBgWorkspaceItems.remove(item);
973 break;
974 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
975 sBgAppWidgets.remove((LauncherAppWidgetInfo) item);
976 break;
977 }
978 sBgItemsIdMap.remove(item.id);
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700979 }
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700980 }
981 }
Michael Jurka83df1882011-08-31 20:59:26 -0700982 };
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700983 runOnWorkerThread(r);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400984 }
985
986 /**
Adam Cohendcd297f2013-06-18 13:13:40 -0700987 * Update the order of the workspace screens in the database. The array list contains
988 * a list of screen ids in the order that they should appear.
989 */
Sunny Goyale5bb7052015-07-27 14:36:07 -0700990 public void updateWorkspaceScreenOrder(Context context, final ArrayList<Long> screens) {
Winson Chung64359a52013-07-08 17:17:08 -0700991 final ArrayList<Long> screensCopy = new ArrayList<Long>(screens);
Adam Cohendcd297f2013-06-18 13:13:40 -0700992 final ContentResolver cr = context.getContentResolver();
993 final Uri uri = LauncherSettings.WorkspaceScreens.CONTENT_URI;
994
995 // Remove any negative screen ids -- these aren't persisted
Winson Chung64359a52013-07-08 17:17:08 -0700996 Iterator<Long> iter = screensCopy.iterator();
Adam Cohendcd297f2013-06-18 13:13:40 -0700997 while (iter.hasNext()) {
998 long id = iter.next();
999 if (id < 0) {
1000 iter.remove();
1001 }
1002 }
1003
1004 Runnable r = new Runnable() {
1005 @Override
1006 public void run() {
Yura085c8532014-02-11 15:15:29 +00001007 ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>();
Adam Cohendcd297f2013-06-18 13:13:40 -07001008 // Clear the table
Yura085c8532014-02-11 15:15:29 +00001009 ops.add(ContentProviderOperation.newDelete(uri).build());
Winson Chung76828c82013-08-19 15:43:29 -07001010 int count = screensCopy.size();
Adam Cohendcd297f2013-06-18 13:13:40 -07001011 for (int i = 0; i < count; i++) {
1012 ContentValues v = new ContentValues();
Winson Chung76828c82013-08-19 15:43:29 -07001013 long screenId = screensCopy.get(i);
Adam Cohendcd297f2013-06-18 13:13:40 -07001014 v.put(LauncherSettings.WorkspaceScreens._ID, screenId);
1015 v.put(LauncherSettings.WorkspaceScreens.SCREEN_RANK, i);
Yura085c8532014-02-11 15:15:29 +00001016 ops.add(ContentProviderOperation.newInsert(uri).withValues(v).build());
Adam Cohendcd297f2013-06-18 13:13:40 -07001017 }
Yura085c8532014-02-11 15:15:29 +00001018
1019 try {
1020 cr.applyBatch(LauncherProvider.AUTHORITY, ops);
1021 } catch (Exception ex) {
1022 throw new RuntimeException(ex);
1023 }
Winson Chung9e6a0a22013-08-27 11:58:12 -07001024
Winson Chungba9c37f2013-08-30 14:11:37 -07001025 synchronized (sBgLock) {
Winson Chungba9c37f2013-08-30 14:11:37 -07001026 sBgWorkspaceScreens.clear();
1027 sBgWorkspaceScreens.addAll(screensCopy);
Adam Cohen4caf2982013-08-20 18:54:31 -07001028 }
Adam Cohendcd297f2013-06-18 13:13:40 -07001029 }
1030 };
1031 runOnWorkerThread(r);
1032 }
1033
1034 /**
Winsonc0b52fe2015-09-09 16:38:15 -07001035 * Remove the specified folder and all its contents from the database.
Joe Onorato9c1289c2009-08-17 11:03:03 -04001036 */
Winsonc0b52fe2015-09-09 16:38:15 -07001037 public static void deleteFolderAndContentsFromDatabase(Context context, final FolderInfo info) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001038 final ContentResolver cr = context.getContentResolver();
1039
Michael Jurkac9d95c52011-08-29 14:03:34 -07001040 Runnable r = new Runnable() {
1041 public void run() {
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001042 cr.delete(LauncherSettings.Favorites.getContentUri(info.id), null, null);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001043 // Lock on mBgLock *after* the db operation
Winson Chung2abf94d2012-07-18 18:16:38 -07001044 synchronized (sBgLock) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001045 sBgItemsIdMap.remove(info.id);
1046 sBgFolders.remove(info.id);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001047 sBgWorkspaceItems.remove(info);
1048 }
Michael Jurkaa8c760d2011-04-28 14:59:33 -07001049
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001050 cr.delete(LauncherSettings.Favorites.CONTENT_URI,
Michael Jurkac9d95c52011-08-29 14:03:34 -07001051 LauncherSettings.Favorites.CONTAINER + "=" + info.id, null);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001052 // Lock on mBgLock *after* the db operation
Winson Chung2abf94d2012-07-18 18:16:38 -07001053 synchronized (sBgLock) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001054 for (ItemInfo childInfo : info.contents) {
1055 sBgItemsIdMap.remove(childInfo.id);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001056 }
Adam Cohenafb01ee2011-06-23 15:38:03 -07001057 }
Michael Jurkac9d95c52011-08-29 14:03:34 -07001058 }
1059 };
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001060 runOnWorkerThread(r);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001061 }
1062
1063 /**
1064 * Set this as the current Launcher activity object for the loader.
1065 */
1066 public void initialize(Callbacks callbacks) {
1067 synchronized (mLock) {
Sunny Goyalaaf7d1d2016-05-17 13:38:54 -07001068 Preconditions.assertUIThread();
1069 // Remove any queued UI runnables
1070 mHandler.cancelAll();
1071 mCallbacks = new WeakReference<>(callbacks);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001072 }
1073 }
1074
Kenny Guyed131872014-04-30 03:02:21 +01001075 @Override
Kenny Guyc2bd8102014-06-30 12:30:31 +01001076 public void onPackageChanged(String packageName, UserHandleCompat user) {
Kenny Guyed131872014-04-30 03:02:21 +01001077 int op = PackageUpdatedTask.OP_UPDATE;
1078 enqueuePackageUpdated(new PackageUpdatedTask(op, new String[] { packageName },
1079 user));
1080 }
1081
1082 @Override
Kenny Guyc2bd8102014-06-30 12:30:31 +01001083 public void onPackageRemoved(String packageName, UserHandleCompat user) {
Kenny Guyed131872014-04-30 03:02:21 +01001084 int op = PackageUpdatedTask.OP_REMOVE;
1085 enqueuePackageUpdated(new PackageUpdatedTask(op, new String[] { packageName },
1086 user));
1087 }
1088
1089 @Override
Kenny Guyc2bd8102014-06-30 12:30:31 +01001090 public void onPackageAdded(String packageName, UserHandleCompat user) {
Kenny Guyed131872014-04-30 03:02:21 +01001091 int op = PackageUpdatedTask.OP_ADD;
1092 enqueuePackageUpdated(new PackageUpdatedTask(op, new String[] { packageName },
1093 user));
1094 }
1095
1096 @Override
Kenny Guyc2bd8102014-06-30 12:30:31 +01001097 public void onPackagesAvailable(String[] packageNames, UserHandleCompat user,
Kenny Guyed131872014-04-30 03:02:21 +01001098 boolean replacing) {
Sunny Goyal144154d2016-03-30 16:47:03 -07001099 enqueuePackageUpdated(
1100 new PackageUpdatedTask(PackageUpdatedTask.OP_UPDATE, packageNames, user));
Kenny Guyed131872014-04-30 03:02:21 +01001101 }
1102
1103 @Override
Kenny Guyc2bd8102014-06-30 12:30:31 +01001104 public void onPackagesUnavailable(String[] packageNames, UserHandleCompat user,
Kenny Guyed131872014-04-30 03:02:21 +01001105 boolean replacing) {
1106 if (!replacing) {
1107 enqueuePackageUpdated(new PackageUpdatedTask(
1108 PackageUpdatedTask.OP_UNAVAILABLE, packageNames,
1109 user));
1110 }
Kenny Guyed131872014-04-30 03:02:21 +01001111 }
1112
Kenny Guy44cba692016-01-21 19:50:02 +00001113 @Override
1114 public void onPackagesSuspended(String[] packageNames, UserHandleCompat user) {
1115 enqueuePackageUpdated(new PackageUpdatedTask(
1116 PackageUpdatedTask.OP_SUSPEND, packageNames,
1117 user));
1118 }
1119
1120 @Override
1121 public void onPackagesUnsuspended(String[] packageNames, UserHandleCompat user) {
1122 enqueuePackageUpdated(new PackageUpdatedTask(
1123 PackageUpdatedTask.OP_UNSUSPEND, packageNames,
1124 user));
1125 }
1126
Joe Onorato1d8e7bb2009-10-15 19:49:43 -07001127 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04001128 * Call from the handler for ACTION_PACKAGE_ADDED, ACTION_PACKAGE_REMOVED and
1129 * ACTION_PACKAGE_CHANGED.
1130 */
Narayan Kamathcb1a4772011-06-28 13:46:59 +01001131 @Override
Joe Onoratof99f8c12009-10-31 17:27:36 -04001132 public void onReceive(Context context, Intent intent) {
Chris Wrenb358f812014-04-16 13:37:00 -04001133 if (DEBUG_RECEIVER) Log.d(TAG, "onReceive intent=" + intent);
Winson Chungaafa03c2010-06-11 17:34:16 -07001134
Joe Onorato36115782010-06-17 13:28:48 -04001135 final String action = intent.getAction();
Kenny Guyed131872014-04-30 03:02:21 +01001136 if (Intent.ACTION_LOCALE_CHANGED.equals(action)) {
Reena Lee93f824a2011-09-23 17:20:28 -07001137 // If we have changed locale we need to clear out the labels in all apps/workspace.
1138 forceReload();
Sunny Goyal957c13f2015-05-01 13:02:20 -07001139 } else if (LauncherAppsCompat.ACTION_MANAGED_PROFILE_ADDED.equals(action)
Sunny Goyalda891c12016-03-18 18:29:24 -07001140 || LauncherAppsCompat.ACTION_MANAGED_PROFILE_REMOVED.equals(action)) {
Sunny Goyal823fd502015-08-04 11:40:13 -07001141 UserManagerCompat.getInstance(context).enableAndResetCache();
Sunny Goyal957c13f2015-05-01 13:02:20 -07001142 forceReload();
Rubin Xuac6e5d72016-04-04 16:13:35 +01001143 } else if (LauncherAppsCompat.ACTION_MANAGED_PROFILE_AVAILABLE.equals(action) ||
1144 LauncherAppsCompat.ACTION_MANAGED_PROFILE_UNAVAILABLE.equals(action)) {
Sunny Goyalda891c12016-03-18 18:29:24 -07001145 UserHandleCompat user = UserHandleCompat.fromIntent(intent);
1146 if (user != null) {
1147 enqueuePackageUpdated(new PackageUpdatedTask(
1148 PackageUpdatedTask.OP_USER_AVAILABILITY_CHANGE,
1149 new String[0], user));
1150 }
Tony Wickham827cef22016-03-17 15:39:39 -07001151 } else if (Intent.ACTION_WALLPAPER_CHANGED.equals(action)) {
1152 ExtractionUtils.startColorExtractionServiceIfNecessary(context);
Joe Onoratoe9ad59e2010-10-29 17:35:36 -07001153 }
1154 }
1155
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001156 void forceReload() {
Winson Chungf0c6ae02012-03-21 16:10:31 -07001157 resetLoadedState(true, true);
1158
Reena Lee93f824a2011-09-23 17:20:28 -07001159 // Do this here because if the launcher activity is running it will be restarted.
1160 // If it's not running startLoaderFromBackground will merely tell it that it needs
1161 // to reload.
1162 startLoaderFromBackground();
1163 }
1164
Winson Chungf0c6ae02012-03-21 16:10:31 -07001165 public void resetLoadedState(boolean resetAllAppsLoaded, boolean resetWorkspaceLoaded) {
1166 synchronized (mLock) {
1167 // Stop any existing loaders first, so they don't set mAllAppsLoaded or
1168 // mWorkspaceLoaded to true later
1169 stopLoaderLocked();
1170 if (resetAllAppsLoaded) mAllAppsLoaded = false;
1171 if (resetWorkspaceLoaded) mWorkspaceLoaded = false;
1172 }
1173 }
1174
Joe Onoratoe9ad59e2010-10-29 17:35:36 -07001175 /**
1176 * When the launcher is in the background, it's possible for it to miss paired
1177 * configuration changes. So whenever we trigger the loader from the background
1178 * tell the launcher that it needs to re-run the loader when it comes back instead
1179 * of doing it now.
1180 */
1181 public void startLoaderFromBackground() {
Sunny Goyale0f58d72014-11-10 18:05:31 -08001182 Callbacks callbacks = getCallback();
1183 if (callbacks != null) {
1184 // Only actually run the loader if they're not paused.
1185 if (!callbacks.setLoadOnResume()) {
Sunny Goyal93f878c2016-03-30 17:31:24 -07001186 startLoader(callbacks.getCurrentWorkspaceScreen());
Joe Onoratoe9ad59e2010-10-29 17:35:36 -07001187 }
1188 }
Joe Onorato36115782010-06-17 13:28:48 -04001189 }
Joe Onoratof99f8c12009-10-31 17:27:36 -04001190
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001191 /**
1192 * If there is already a loader task running, tell it to stop.
1193 */
1194 private void stopLoaderLocked() {
Reena Lee93f824a2011-09-23 17:20:28 -07001195 LoaderTask oldTask = mLoaderTask;
1196 if (oldTask != null) {
Reena Lee93f824a2011-09-23 17:20:28 -07001197 oldTask.stopLocked();
1198 }
Reena Lee93f824a2011-09-23 17:20:28 -07001199 }
1200
Adam Cohen1a85c582014-09-30 09:48:49 -07001201 public boolean isCurrentCallbacks(Callbacks callbacks) {
1202 return (mCallbacks != null && mCallbacks.get() == callbacks);
1203 }
1204
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001205 public void startLoader(int synchronousBindPage) {
Sunny Goyal756adbc2015-04-16 15:20:51 -07001206 // Enable queue before starting loader. It will get disabled in Launcher#finishBindingItems
1207 InstallShortcutReceiver.enableInstallQueue();
Joe Onorato36115782010-06-17 13:28:48 -04001208 synchronized (mLock) {
Joe Onorato36115782010-06-17 13:28:48 -04001209 // Don't bother to start the thread if we know it's not going to do anything
1210 if (mCallbacks != null && mCallbacks.get() != null) {
Sunny Goyal527c7d32015-08-28 15:19:36 -07001211 final Callbacks oldCallbacks = mCallbacks.get();
1212 // Clear any pending bind-runnables from the synchronized load process.
1213 runOnMainThread(new Runnable() {
1214 public void run() {
1215 oldCallbacks.clearPendingBinds();
1216 }
1217 });
1218
Joe Onorato36115782010-06-17 13:28:48 -04001219 // If there is already one running, tell it to stop.
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001220 stopLoaderLocked();
Sunny Goyalded0fdb2016-05-23 15:55:41 -07001221 mLoaderTask = new LoaderTask(mApp.getContext(), synchronousBindPage);
Derek Prothro7aff3992013-12-10 14:00:37 -05001222 if (synchronousBindPage != PagedView.INVALID_RESTORE_PAGE
Sunny Goyalf5cd9982015-05-18 15:19:29 -07001223 && mAllAppsLoaded && mWorkspaceLoaded && !mIsLoaderTaskRunning) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001224 mLoaderTask.runBindSynchronousPage(synchronousBindPage);
1225 } else {
1226 sWorkerThread.setPriority(Thread.NORM_PRIORITY);
1227 sWorker.post(mLoaderTask);
1228 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001229 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001230 }
1231 }
1232
Joe Onorato36115782010-06-17 13:28:48 -04001233 public void stopLoader() {
1234 synchronized (mLock) {
1235 if (mLoaderTask != null) {
1236 mLoaderTask.stopLocked();
Joe Onorato9c1289c2009-08-17 11:03:03 -04001237 }
1238 }
Joe Onorato36115782010-06-17 13:28:48 -04001239 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001240
Sunny Goyalc1b7c2e2015-01-16 16:19:04 -08001241 /**
1242 * Loads the workspace screen ids in an ordered list.
1243 */
Sunny Goyale5bb7052015-07-27 14:36:07 -07001244 public static ArrayList<Long> loadWorkspaceScreensDb(Context context) {
Winson Chung76828c82013-08-19 15:43:29 -07001245 final ContentResolver contentResolver = context.getContentResolver();
1246 final Uri screensUri = LauncherSettings.WorkspaceScreens.CONTENT_URI;
Winson Chung76828c82013-08-19 15:43:29 -07001247
Sunny Goyalc1b7c2e2015-01-16 16:19:04 -08001248 // Get screens ordered by rank.
1249 final Cursor sc = contentResolver.query(screensUri, null, null, null,
1250 LauncherSettings.WorkspaceScreens.SCREEN_RANK);
1251 ArrayList<Long> screenIds = new ArrayList<Long>();
Winson Chung76828c82013-08-19 15:43:29 -07001252 try {
Sunny Goyalc1b7c2e2015-01-16 16:19:04 -08001253 final int idIndex = sc.getColumnIndexOrThrow(LauncherSettings.WorkspaceScreens._ID);
Winson Chung76828c82013-08-19 15:43:29 -07001254 while (sc.moveToNext()) {
1255 try {
Sunny Goyalc1b7c2e2015-01-16 16:19:04 -08001256 screenIds.add(sc.getLong(idIndex));
Winson Chung76828c82013-08-19 15:43:29 -07001257 } catch (Exception e) {
Sunny Goyal713edfc2016-05-06 09:58:34 -07001258 FileLog.d(TAG, "Invalid screen id", e);
Winson Chung76828c82013-08-19 15:43:29 -07001259 }
1260 }
1261 } finally {
1262 sc.close();
1263 }
Sunny Goyalc1b7c2e2015-01-16 16:19:04 -08001264 return screenIds;
Winson Chung76828c82013-08-19 15:43:29 -07001265 }
1266
Joe Onorato36115782010-06-17 13:28:48 -04001267 /**
1268 * Runnable for the thread that loads the contents of the launcher:
1269 * - workspace icons
1270 * - widgets
1271 * - all apps icons
1272 */
1273 private class LoaderTask implements Runnable {
1274 private Context mContext;
Sunny Goyal93f878c2016-03-30 17:31:24 -07001275 private int mPageToBindFirst;
1276
Adam Cohen091440a2015-03-18 14:16:05 -07001277 @Thunk boolean mIsLoadingAndBindingWorkspace;
Joe Onorato36115782010-06-17 13:28:48 -04001278 private boolean mStopped;
Adam Cohen091440a2015-03-18 14:16:05 -07001279 @Thunk boolean mLoadAndBindStepFinished;
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001280
Sunny Goyalded0fdb2016-05-23 15:55:41 -07001281 LoaderTask(Context context, int pageToBindFirst) {
Joe Onorato36115782010-06-17 13:28:48 -04001282 mContext = context;
Sunny Goyal93f878c2016-03-30 17:31:24 -07001283 mPageToBindFirst = pageToBindFirst;
Joe Onorato9c1289c2009-08-17 11:03:03 -04001284 }
1285
Sunny Goyal66cfdc22015-02-02 13:01:51 -08001286 private void loadAndBindWorkspace() {
Winson Chung36a62fe2012-05-06 18:04:42 -07001287 mIsLoadingAndBindingWorkspace = true;
1288
Joe Onorato36115782010-06-17 13:28:48 -04001289 // Load the workspace
Joe Onorato36115782010-06-17 13:28:48 -04001290 if (DEBUG_LOADERS) {
1291 Log.d(TAG, "loadAndBindWorkspace mWorkspaceLoaded=" + mWorkspaceLoaded);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001292 }
Michael Jurka288a36b2011-07-12 16:53:48 -07001293
Michael Jurkaa8c760d2011-04-28 14:59:33 -07001294 if (!mWorkspaceLoaded) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08001295 loadWorkspace();
Reena Lee93f824a2011-09-23 17:20:28 -07001296 synchronized (LoaderTask.this) {
1297 if (mStopped) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08001298 return;
Reena Lee93f824a2011-09-23 17:20:28 -07001299 }
1300 mWorkspaceLoaded = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -04001301 }
1302 }
1303
Joe Onorato36115782010-06-17 13:28:48 -04001304 // Bind the workspace
Sunny Goyal93f878c2016-03-30 17:31:24 -07001305 bindWorkspace(mPageToBindFirst);
Joe Onorato36115782010-06-17 13:28:48 -04001306 }
Daniel Sandler843e8602010-06-07 14:59:01 -04001307
Joe Onorato36115782010-06-17 13:28:48 -04001308 private void waitForIdle() {
1309 // Wait until the either we're stopped or the other threads are done.
1310 // This way we don't start loading all apps until the workspace has settled
1311 // down.
1312 synchronized (LoaderTask.this) {
1313 final long workspaceWaitTime = DEBUG_LOADERS ? SystemClock.uptimeMillis() : 0;
Joe Onoratocc67f472010-06-08 10:54:30 -07001314
Joe Onorato36115782010-06-17 13:28:48 -04001315 mHandler.postIdle(new Runnable() {
1316 public void run() {
1317 synchronized (LoaderTask.this) {
1318 mLoadAndBindStepFinished = true;
1319 if (DEBUG_LOADERS) {
1320 Log.d(TAG, "done with previous binding step");
Daniel Sandler843e8602010-06-07 14:59:01 -04001321 }
Joe Onorato36115782010-06-17 13:28:48 -04001322 LoaderTask.this.notify();
Daniel Sandler843e8602010-06-07 14:59:01 -04001323 }
Daniel Sandler843e8602010-06-07 14:59:01 -04001324 }
Joe Onorato36115782010-06-17 13:28:48 -04001325 });
1326
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08001327 while (!mStopped && !mLoadAndBindStepFinished) {
Joe Onorato36115782010-06-17 13:28:48 -04001328 try {
Michael Jurkac7700af2013-05-14 20:17:58 +02001329 // Just in case mFlushingWorkerThread changes but we aren't woken up,
1330 // wait no longer than 1sec at a time
1331 this.wait(1000);
Joe Onorato36115782010-06-17 13:28:48 -04001332 } catch (InterruptedException ex) {
1333 // Ignore
Daniel Sandler843e8602010-06-07 14:59:01 -04001334 }
1335 }
Joe Onorato36115782010-06-17 13:28:48 -04001336 if (DEBUG_LOADERS) {
1337 Log.d(TAG, "waited "
Winson Chungaafa03c2010-06-11 17:34:16 -07001338 + (SystemClock.uptimeMillis()-workspaceWaitTime)
Joe Onorato36115782010-06-17 13:28:48 -04001339 + "ms for previous step to finish binding");
1340 }
Daniel Sandler843e8602010-06-07 14:59:01 -04001341 }
Joe Onorato36115782010-06-17 13:28:48 -04001342 }
Daniel Sandler843e8602010-06-07 14:59:01 -04001343
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001344 void runBindSynchronousPage(int synchronousBindPage) {
Derek Prothro7aff3992013-12-10 14:00:37 -05001345 if (synchronousBindPage == PagedView.INVALID_RESTORE_PAGE) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001346 // Ensure that we have a valid page index to load synchronously
1347 throw new RuntimeException("Should not call runBindSynchronousPage() without " +
1348 "valid page index");
1349 }
1350 if (!mAllAppsLoaded || !mWorkspaceLoaded) {
1351 // Ensure that we don't try and bind a specified page when the pages have not been
1352 // loaded already (we should load everything asynchronously in that case)
1353 throw new RuntimeException("Expecting AllApps and Workspace to be loaded");
1354 }
1355 synchronized (mLock) {
1356 if (mIsLoaderTaskRunning) {
1357 // Ensure that we are never running the background loading at this point since
1358 // we also touch the background collections
1359 throw new RuntimeException("Error! Background loading is already running");
1360 }
1361 }
1362
1363 // XXX: Throw an exception if we are already loading (since we touch the worker thread
1364 // data structures, we can't allow any other thread to touch that data, but because
1365 // this call is synchronous, we can get away with not locking).
1366
Daniel Sandlercc8befa2013-06-11 14:45:48 -04001367 // The LauncherModel is static in the LauncherAppState and mHandler may have queued
Adam Cohena13a2f22012-07-23 14:29:15 -07001368 // operations from the previous activity. We need to ensure that all queued operations
1369 // are executed before any synchronous binding work is done.
1370 mHandler.flush();
1371
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001372 // Divide the set of loaded items into those that we are binding synchronously, and
1373 // everything else that is to be bound normally (asynchronously).
Sunny Goyal66cfdc22015-02-02 13:01:51 -08001374 bindWorkspace(synchronousBindPage);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001375 // XXX: For now, continue posting the binding of AllApps as there are other issues that
1376 // arise from that.
1377 onlyBindAllApps();
1378 }
1379
Joe Onorato36115782010-06-17 13:28:48 -04001380 public void run() {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001381 synchronized (mLock) {
Sunny Goyalf5cd9982015-05-18 15:19:29 -07001382 if (mStopped) {
1383 return;
1384 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001385 mIsLoaderTaskRunning = true;
1386 }
Joe Onorato36115782010-06-17 13:28:48 -04001387 // Optimize for end-user experience: if the Launcher is up and // running with the
1388 // All Apps interface in the foreground, load All Apps first. Otherwise, load the
1389 // workspace first (default).
Joe Onorato36115782010-06-17 13:28:48 -04001390 keep_running: {
Winson Chung64359a52013-07-08 17:17:08 -07001391 if (DEBUG_LOADERS) Log.d(TAG, "step 1: loading workspace");
Sunny Goyal66cfdc22015-02-02 13:01:51 -08001392 loadAndBindWorkspace();
Daniel Sandler843e8602010-06-07 14:59:01 -04001393
Joe Onorato36115782010-06-17 13:28:48 -04001394 if (mStopped) {
1395 break keep_running;
1396 }
1397
Joe Onorato36115782010-06-17 13:28:48 -04001398 waitForIdle();
Daniel Sandler843e8602010-06-07 14:59:01 -04001399
1400 // second step
Winson Chung64359a52013-07-08 17:17:08 -07001401 if (DEBUG_LOADERS) Log.d(TAG, "step 2: loading all apps");
1402 loadAndBindAllApps();
Joe Onorato36115782010-06-17 13:28:48 -04001403 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001404
Joe Onorato36115782010-06-17 13:28:48 -04001405 // Clear out this reference, otherwise we end up holding it until all of the
1406 // callback runnables are done.
1407 mContext = null;
Joe Onorato9c1289c2009-08-17 11:03:03 -04001408
Joe Onorato36115782010-06-17 13:28:48 -04001409 synchronized (mLock) {
1410 // If we are still the last one to be scheduled, remove ourselves.
1411 if (mLoaderTask == this) {
1412 mLoaderTask = null;
Joe Onorato9c1289c2009-08-17 11:03:03 -04001413 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001414 mIsLoaderTaskRunning = false;
Sunny Goyal756a28a2015-04-23 17:07:55 -07001415 mHasLoaderCompletedOnce = true;
Joe Onorato36115782010-06-17 13:28:48 -04001416 }
Joe Onorato36115782010-06-17 13:28:48 -04001417 }
1418
1419 public void stopLocked() {
1420 synchronized (LoaderTask.this) {
1421 mStopped = true;
1422 this.notify();
1423 }
1424 }
1425
1426 /**
1427 * Gets the callbacks object. If we've been stopped, or if the launcher object
1428 * has somehow been garbage collected, return null instead. Pass in the Callbacks
1429 * object that was around when the deferred message was scheduled, and if there's
1430 * a new Callbacks object around then also return null. This will save us from
1431 * calling onto it with data that will be ignored.
1432 */
1433 Callbacks tryGetCallbacks(Callbacks oldCallbacks) {
1434 synchronized (mLock) {
1435 if (mStopped) {
1436 return null;
Daniel Sandler8802e962010-05-26 16:28:16 -04001437 }
Joe Onorato36115782010-06-17 13:28:48 -04001438
1439 if (mCallbacks == null) {
1440 return null;
Daniel Sandler8802e962010-05-26 16:28:16 -04001441 }
Joe Onorato36115782010-06-17 13:28:48 -04001442
1443 final Callbacks callbacks = mCallbacks.get();
1444 if (callbacks != oldCallbacks) {
1445 return null;
1446 }
1447 if (callbacks == null) {
1448 Log.w(TAG, "no mCallbacks");
1449 return null;
1450 }
1451
1452 return callbacks;
1453 }
1454 }
1455
1456 // check & update map of what's occupied; used to discard overlapping/invalid items
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001457 private boolean checkItemPlacement(LongArrayMap<GridOccupancy> occupied, ItemInfo item,
Sunny Goyal41cdc8d2015-09-04 12:53:04 -07001458 ArrayList<Long> workspaceScreens) {
Winson Chung892c74d2013-08-22 16:15:50 -07001459 LauncherAppState app = LauncherAppState.getInstance();
Adam Cohen2e6da152015-05-06 11:42:25 -07001460 InvariantDeviceProfile profile = app.getInvariantDeviceProfile();
Winson Chung892c74d2013-08-22 16:15:50 -07001461
Adam Cohendcd297f2013-06-18 13:13:40 -07001462 long containerIndex = item.screenId;
Winson Chungf30ad5f2011-08-08 10:55:42 -07001463 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
Winson Chunga0b7e862013-09-05 16:03:15 -07001464 // Return early if we detect that an item is under the hotseat button
1465 if (mCallbacks == null ||
1466 mCallbacks.get().isAllAppsButtonRank((int) item.screenId)) {
Dan Sandler295ae182013-12-10 16:05:47 -05001467 Log.e(TAG, "Error loading shortcut into hotseat " + item
1468 + " into position (" + item.screenId + ":" + item.cellX + ","
1469 + item.cellY + ") occupied by all apps");
Winson Chunga0b7e862013-09-05 16:03:15 -07001470 return false;
1471 }
1472
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001473 final GridOccupancy hotseatOccupancy =
Dan Sandler295ae182013-12-10 16:05:47 -05001474 occupied.get((long) LauncherSettings.Favorites.CONTAINER_HOTSEAT);
1475
Adam Cohen2e6da152015-05-06 11:42:25 -07001476 if (item.screenId >= profile.numHotseatIcons) {
Adam Cohenae4409d2013-11-26 10:34:59 -08001477 Log.e(TAG, "Error loading shortcut " + item
1478 + " into hotseat position " + item.screenId
Adam Cohen2e6da152015-05-06 11:42:25 -07001479 + ", position out of bounds: (0 to " + (profile.numHotseatIcons - 1)
Adam Cohenae4409d2013-11-26 10:34:59 -08001480 + ")");
1481 return false;
1482 }
1483
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001484 if (hotseatOccupancy != null) {
1485 if (hotseatOccupancy.cells[(int) item.screenId][0]) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001486 Log.e(TAG, "Error loading shortcut into hotseat " + item
1487 + " into position (" + item.screenId + ":" + item.cellX + ","
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001488 + item.cellY + ") already occupied");
Adam Cohendcd297f2013-06-18 13:13:40 -07001489 return false;
Dan Sandler295ae182013-12-10 16:05:47 -05001490 } else {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001491 hotseatOccupancy.cells[(int) item.screenId][0] = true;
Dan Sandler295ae182013-12-10 16:05:47 -05001492 return true;
Adam Cohendcd297f2013-06-18 13:13:40 -07001493 }
Winson Chung6ba2a1b2011-09-02 16:22:11 -07001494 } else {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001495 final GridOccupancy occupancy = new GridOccupancy(profile.numHotseatIcons, 1);
1496 occupancy.cells[(int) item.screenId][0] = true;
1497 occupied.put((long) LauncherSettings.Favorites.CONTAINER_HOTSEAT, occupancy);
Winson Chung6ba2a1b2011-09-02 16:22:11 -07001498 return true;
1499 }
Sunny Goyal41cdc8d2015-09-04 12:53:04 -07001500 } else if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
1501 if (!workspaceScreens.contains((Long) item.screenId)) {
1502 // The item has an invalid screen id.
1503 return false;
1504 }
1505 } else {
Winson Chungf30ad5f2011-08-08 10:55:42 -07001506 // Skip further checking if it is not the hotseat or workspace container
Daniel Sandler8802e962010-05-26 16:28:16 -04001507 return true;
1508 }
Winson Chungf30ad5f2011-08-08 10:55:42 -07001509
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001510 final int countX = profile.numColumns;
1511 final int countY = profile.numRows;
Adam Cohenae4409d2013-11-26 10:34:59 -08001512 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP &&
1513 item.cellX < 0 || item.cellY < 0 ||
1514 item.cellX + item.spanX > countX || item.cellY + item.spanY > countY) {
1515 Log.e(TAG, "Error loading shortcut " + item
1516 + " into cell (" + containerIndex + "-" + item.screenId + ":"
1517 + item.cellX + "," + item.cellY
1518 + ") out of screen bounds ( " + countX + "x" + countY + ")");
1519 return false;
1520 }
1521
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001522 if (!occupied.containsKey(item.screenId)) {
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07001523 GridOccupancy screen = new GridOccupancy(countX + 1, countY + 1);
1524 if (item.screenId == Workspace.FIRST_SCREEN_ID) {
1525 // Mark the first row as occupied in order to account for the QSB.
1526 screen.markCells(0, 0, countX + 1, 1, true);
1527 }
1528 occupied.put(item.screenId, screen);
Joe Onorato36115782010-06-17 13:28:48 -04001529 }
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001530 final GridOccupancy occupancy = occupied.get(item.screenId);
Winson Chungf30ad5f2011-08-08 10:55:42 -07001531
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001532 // Check if any workspace icons overlap with each other
1533 if (occupancy.isRegionVacant(item.cellX, item.cellY, item.spanX, item.spanY)) {
1534 occupancy.markCells(item, true);
1535 return true;
1536 } else {
1537 Log.e(TAG, "Error loading shortcut " + item
1538 + " into cell (" + containerIndex + "-" + item.screenId + ":"
1539 + item.cellX + "," + item.cellX + "," + item.spanX + "," + item.spanY
1540 + ") already occupied");
1541 return false;
1542 }
Joe Onorato36115782010-06-17 13:28:48 -04001543 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001544
Winson Chungba9c37f2013-08-30 14:11:37 -07001545 /** Clears all the sBg data structures */
1546 private void clearSBgDataStructures() {
1547 synchronized (sBgLock) {
1548 sBgWorkspaceItems.clear();
1549 sBgAppWidgets.clear();
1550 sBgFolders.clear();
1551 sBgItemsIdMap.clear();
Winson Chungba9c37f2013-08-30 14:11:37 -07001552 sBgWorkspaceScreens.clear();
1553 }
1554 }
1555
Sunny Goyal66cfdc22015-02-02 13:01:51 -08001556 private void loadWorkspace() {
Joe Onorato36115782010-06-17 13:28:48 -04001557 final long t = DEBUG_LOADERS ? SystemClock.uptimeMillis() : 0;
Joe Onorato9c1289c2009-08-17 11:03:03 -04001558
Joe Onorato36115782010-06-17 13:28:48 -04001559 final Context context = mContext;
1560 final ContentResolver contentResolver = context.getContentResolver();
1561 final PackageManager manager = context.getPackageManager();
Joe Onorato36115782010-06-17 13:28:48 -04001562 final boolean isSafeMode = manager.isSafeMode();
Sunny Goyalf599ccf2014-07-08 13:01:29 -07001563 final LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(context);
Sunny Goyal25aba0a2015-07-16 15:07:47 -07001564 final boolean isSdCardReady = Utilities.isBootCompleted();
Joe Onorato3c2f7e12009-10-31 19:17:31 -04001565
Winson Chung892c74d2013-08-22 16:15:50 -07001566 LauncherAppState app = LauncherAppState.getInstance();
Adam Cohen2e6da152015-05-06 11:42:25 -07001567 InvariantDeviceProfile profile = app.getInvariantDeviceProfile();
Sunny Goyal41cdc8d2015-09-04 12:53:04 -07001568 int countX = profile.numColumns;
1569 int countY = profile.numRows;
Winson Chung892c74d2013-08-22 16:15:50 -07001570
Sunny Goyalded0fdb2016-05-23 15:55:41 -07001571 boolean clearDb = false;
Sunny Goyalf076eae2016-01-11 12:25:10 -08001572 if (GridSizeMigrationTask.ENABLED &&
1573 !GridSizeMigrationTask.migrateGridIfNeeded(mContext)) {
1574 // Migration failed. Clear workspace.
Sunny Goyalded0fdb2016-05-23 15:55:41 -07001575 clearDb = true;
Sunny Goyale5bb7052015-07-27 14:36:07 -07001576 }
1577
Sunny Goyalded0fdb2016-05-23 15:55:41 -07001578 if (clearDb) {
Sunny Goyala1365452015-10-01 15:46:24 -07001579 Log.d(TAG, "loadWorkspace: resetting launcher database");
Sunny Goyald2497482015-09-22 18:24:19 -07001580 LauncherSettings.Settings.call(contentResolver,
1581 LauncherSettings.Settings.METHOD_DELETE_DB);
Dan Sandlerd5024042014-01-09 15:01:33 -05001582 }
1583
Sunny Goyalded0fdb2016-05-23 15:55:41 -07001584 Log.d(TAG, "loadWorkspace: loading default favorites");
1585 LauncherSettings.Settings.call(contentResolver,
1586 LauncherSettings.Settings.METHOD_LOAD_DEFAULT_FAVORITES);
Adam Cohene25af792013-06-06 23:08:25 -07001587
Winson Chung2abf94d2012-07-18 18:16:38 -07001588 synchronized (sBgLock) {
Winson Chungba9c37f2013-08-30 14:11:37 -07001589 clearSBgDataStructures();
Sunny Goyal756adbc2015-04-16 15:20:51 -07001590 final HashMap<String, Integer> installingPkgs = PackageInstallerCompat
Sunny Goyal94485362014-09-18 16:13:58 -07001591 .getInstance(mContext).updateAndGetActiveSessionCache();
Sunny Goyal41cdc8d2015-09-04 12:53:04 -07001592 sBgWorkspaceScreens.addAll(loadWorkspaceScreensDb(mContext));
Romain Guy5c16f3e2010-01-12 17:24:58 -08001593
Sunny Goyal2e1efb42016-03-03 16:58:55 -08001594 final ArrayList<Long> itemsToRemove = new ArrayList<>();
1595 final ArrayList<Long> restoredRows = new ArrayList<>();
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001596 final Uri contentUri = LauncherSettings.Favorites.CONTENT_URI;
Chris Wrene523e702013-10-09 10:36:55 -04001597 if (DEBUG_LOADERS) Log.d(TAG, "loading model from " + contentUri);
Adam Cohene25af792013-06-06 23:08:25 -07001598 final Cursor c = contentResolver.query(contentUri, null, null, null, null);
Daniel Sandler8802e962010-05-26 16:28:16 -04001599
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001600 // +1 for the hotseat (it can be larger than the workspace)
1601 // Load workspace in reverse order to ensure that latest items are loaded first (and
1602 // before any earlier duplicates)
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001603 final LongArrayMap<GridOccupancy> occupied = new LongArrayMap<>();
Sunny Goyal2e1efb42016-03-03 16:58:55 -08001604 HashMap<ComponentKey, AppWidgetProviderInfo> widgetProvidersMap = null;
Joe Onorato9c1289c2009-08-17 11:03:03 -04001605
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001606 try {
1607 final int idIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites._ID);
1608 final int intentIndex = c.getColumnIndexOrThrow
1609 (LauncherSettings.Favorites.INTENT);
1610 final int titleIndex = c.getColumnIndexOrThrow
1611 (LauncherSettings.Favorites.TITLE);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001612 final int containerIndex = c.getColumnIndexOrThrow(
1613 LauncherSettings.Favorites.CONTAINER);
1614 final int itemTypeIndex = c.getColumnIndexOrThrow(
1615 LauncherSettings.Favorites.ITEM_TYPE);
1616 final int appWidgetIdIndex = c.getColumnIndexOrThrow(
1617 LauncherSettings.Favorites.APPWIDGET_ID);
Chris Wrenc3919c02013-09-18 09:48:33 -04001618 final int appWidgetProviderIndex = c.getColumnIndexOrThrow(
1619 LauncherSettings.Favorites.APPWIDGET_PROVIDER);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001620 final int screenIndex = c.getColumnIndexOrThrow(
1621 LauncherSettings.Favorites.SCREEN);
1622 final int cellXIndex = c.getColumnIndexOrThrow
1623 (LauncherSettings.Favorites.CELLX);
1624 final int cellYIndex = c.getColumnIndexOrThrow
1625 (LauncherSettings.Favorites.CELLY);
1626 final int spanXIndex = c.getColumnIndexOrThrow
1627 (LauncherSettings.Favorites.SPANX);
1628 final int spanYIndex = c.getColumnIndexOrThrow(
1629 LauncherSettings.Favorites.SPANY);
Sunny Goyal08f72612015-01-05 13:41:43 -08001630 final int rankIndex = c.getColumnIndexOrThrow(
1631 LauncherSettings.Favorites.RANK);
Chris Wrenf4d08112014-01-16 18:13:56 -05001632 final int restoredIndex = c.getColumnIndexOrThrow(
1633 LauncherSettings.Favorites.RESTORED);
Kenny Guyed131872014-04-30 03:02:21 +01001634 final int profileIdIndex = c.getColumnIndexOrThrow(
1635 LauncherSettings.Favorites.PROFILE_ID);
Sunny Goyal5d85c442015-03-10 13:14:47 -07001636 final int optionsIndex = c.getColumnIndexOrThrow(
1637 LauncherSettings.Favorites.OPTIONS);
Sunny Goyal4e5cc642015-06-25 16:37:44 -07001638 final CursorIconInfo cursorIconInfo = new CursorIconInfo(c);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001639
Sunny Goyal7f834d22015-04-21 10:10:23 -07001640 final LongSparseArray<UserHandleCompat> allUsers = new LongSparseArray<>();
Kenny Guyff05f432016-01-22 17:48:29 +00001641 final LongSparseArray<Boolean> quietMode = new LongSparseArray<>();
Sunny Goyal7f834d22015-04-21 10:10:23 -07001642 for (UserHandleCompat user : mUserManager.getUserProfiles()) {
Kenny Guyff05f432016-01-22 17:48:29 +00001643 long serialNo = mUserManager.getSerialNumberForUser(user);
1644 allUsers.put(serialNo, user);
1645 quietMode.put(serialNo, mUserManager.isQuietModeEnabled(user));
Sunny Goyal7f834d22015-04-21 10:10:23 -07001646 }
1647
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001648 ShortcutInfo info;
1649 String intentDescription;
1650 LauncherAppWidgetInfo appWidgetInfo;
1651 int container;
1652 long id;
Robin Lee26ace122015-03-16 19:41:43 +00001653 long serialNumber;
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001654 Intent intent;
Kenny Guyed131872014-04-30 03:02:21 +01001655 UserHandleCompat user;
Sunny Goyald09c3702016-04-06 16:18:20 -07001656 String targetPackage;
Joe Onorato9c1289c2009-08-17 11:03:03 -04001657
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001658 while (!mStopped && c.moveToNext()) {
1659 try {
1660 int itemType = c.getInt(itemTypeIndex);
Chris Wrenf4d08112014-01-16 18:13:56 -05001661 boolean restored = 0 != c.getInt(restoredIndex);
Sunny Goyalf599ccf2014-07-08 13:01:29 -07001662 boolean allowMissingTarget = false;
Sunny Goyalb1622cc2015-06-10 16:00:42 -07001663 container = c.getInt(containerIndex);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001664
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001665 switch (itemType) {
1666 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
1667 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungee055712013-07-30 14:46:24 -07001668 id = c.getLong(idIndex);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001669 intentDescription = c.getString(intentIndex);
Robin Lee26ace122015-03-16 19:41:43 +00001670 serialNumber = c.getInt(profileIdIndex);
Sunny Goyal7f834d22015-04-21 10:10:23 -07001671 user = allUsers.get(serialNumber);
Sunny Goyal34942622014-08-29 17:20:55 -07001672 int promiseType = c.getInt(restoredIndex);
Sunny Goyal1a745e82014-10-02 15:58:31 -07001673 int disabledState = 0;
Sunny Goyalbb3b02f2015-01-15 12:00:14 -08001674 boolean itemReplaced = false;
Sunny Goyald09c3702016-04-06 16:18:20 -07001675 targetPackage = null;
Kenny Guyed131872014-04-30 03:02:21 +01001676 if (user == null) {
1677 // User has been deleted remove the item.
1678 itemsToRemove.add(id);
1679 continue;
1680 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001681 try {
1682 intent = Intent.parseUri(intentDescription, 0);
Winson Chungee055712013-07-30 14:46:24 -07001683 ComponentName cn = intent.getComponent();
Sunny Goyalf599ccf2014-07-08 13:01:29 -07001684 if (cn != null && cn.getPackageName() != null) {
1685 boolean validPkg = launcherApps.isPackageEnabledForProfile(
1686 cn.getPackageName(), user);
1687 boolean validComponent = validPkg &&
1688 launcherApps.isActivityEnabledForProfile(cn, user);
Sunny Goyald09c3702016-04-06 16:18:20 -07001689 if (validPkg) {
1690 targetPackage = cn.getPackageName();
1691 }
Sunny Goyalf599ccf2014-07-08 13:01:29 -07001692
1693 if (validComponent) {
1694 if (restored) {
1695 // no special handling necessary for this item
1696 restoredRows.add(id);
1697 restored = false;
1698 }
Kenny Guyff05f432016-01-22 17:48:29 +00001699 if (quietMode.get(serialNumber)) {
Sunny Goyald09c3702016-04-06 16:18:20 -07001700 disabledState = ShortcutInfo.FLAG_DISABLED_QUIET_USER;
Kenny Guyff05f432016-01-22 17:48:29 +00001701 }
Sunny Goyalf599ccf2014-07-08 13:01:29 -07001702 } else if (validPkg) {
Sunny Goyal34942622014-08-29 17:20:55 -07001703 intent = null;
1704 if ((promiseType & ShortcutInfo.FLAG_AUTOINTALL_ICON) != 0) {
1705 // We allow auto install apps to have their intent
1706 // updated after an install.
1707 intent = manager.getLaunchIntentForPackage(
1708 cn.getPackageName());
1709 if (intent != null) {
1710 ContentValues values = new ContentValues();
1711 values.put(LauncherSettings.Favorites.INTENT,
1712 intent.toUri(0));
Sunny Goyalbb3b02f2015-01-15 12:00:14 -08001713 updateItem(id, values);
Sunny Goyal34942622014-08-29 17:20:55 -07001714 }
1715 }
1716
1717 if (intent == null) {
1718 // The app is installed but the component is no
1719 // longer available.
Sunny Goyal713edfc2016-05-06 09:58:34 -07001720 FileLog.d(TAG, "Invalid component removed: " + cn);
Sunny Goyal34942622014-08-29 17:20:55 -07001721 itemsToRemove.add(id);
1722 continue;
1723 } else {
1724 // no special handling necessary for this item
1725 restoredRows.add(id);
1726 restored = false;
1727 }
Sunny Goyalf599ccf2014-07-08 13:01:29 -07001728 } else if (restored) {
1729 // Package is not yet available but might be
1730 // installed later.
Sunny Goyal713edfc2016-05-06 09:58:34 -07001731 FileLog.d(TAG, "package not yet restored: " + cn);
Sunny Goyal94485362014-09-18 16:13:58 -07001732
1733 if ((promiseType & ShortcutInfo.FLAG_RESTORE_STARTED) != 0) {
1734 // Restore has started once.
Sunny Goyal756adbc2015-04-16 15:20:51 -07001735 } else if (installingPkgs.containsKey(cn.getPackageName())) {
Sunny Goyal94485362014-09-18 16:13:58 -07001736 // App restore has started. Update the flag
1737 promiseType |= ShortcutInfo.FLAG_RESTORE_STARTED;
1738 ContentValues values = new ContentValues();
1739 values.put(LauncherSettings.Favorites.RESTORED,
1740 promiseType);
Sunny Goyalbb3b02f2015-01-15 12:00:14 -08001741 updateItem(id, values);
1742 } else if ((promiseType & ShortcutInfo.FLAG_RESTORED_APP_TYPE) != 0) {
1743 // This is a common app. Try to replace this.
1744 int appType = CommonAppTypeParser.decodeItemTypeFromFlag(promiseType);
1745 CommonAppTypeParser parser = new CommonAppTypeParser(id, appType, context);
1746 if (parser.findDefaultApp()) {
1747 // Default app found. Replace it.
1748 intent = parser.parsedIntent;
1749 cn = intent.getComponent();
1750 ContentValues values = parser.parsedValues;
1751 values.put(LauncherSettings.Favorites.RESTORED, 0);
1752 updateItem(id, values);
1753 restored = false;
1754 itemReplaced = true;
Sunny Goyal94485362014-09-18 16:13:58 -07001755
Sunny Goyalbb3b02f2015-01-15 12:00:14 -08001756 } else if (REMOVE_UNRESTORED_ICONS) {
Sunny Goyal713edfc2016-05-06 09:58:34 -07001757 FileLog.d(TAG, "Unrestored package removed: " + cn);
Sunny Goyalbb3b02f2015-01-15 12:00:14 -08001758 itemsToRemove.add(id);
1759 continue;
1760 }
Sunny Goyal94485362014-09-18 16:13:58 -07001761 } else if (REMOVE_UNRESTORED_ICONS) {
Sunny Goyal713edfc2016-05-06 09:58:34 -07001762 FileLog.d(TAG, "Unrestored package removed: " + cn);
Sunny Goyal94485362014-09-18 16:13:58 -07001763 itemsToRemove.add(id);
1764 continue;
1765 }
Sunny Goyald09c3702016-04-06 16:18:20 -07001766 } else if (PackageManagerHelper.isAppOnSdcard(
1767 manager, cn.getPackageName())) {
Sunny Goyal1a745e82014-10-02 15:58:31 -07001768 // Package is present but not available.
1769 allowMissingTarget = true;
1770 disabledState = ShortcutInfo.FLAG_DISABLED_NOT_AVAILABLE;
1771 } else if (!isSdCardReady) {
Sunny Goyalf599ccf2014-07-08 13:01:29 -07001772 // SdCard is not ready yet. Package might get available,
1773 // once it is ready.
Sunny Goyala1365452015-10-01 15:46:24 -07001774 Log.d(TAG, "Invalid package: " + cn + " (check again later)");
Sunny Goyalf599ccf2014-07-08 13:01:29 -07001775 HashSet<String> pkgs = sPendingPackages.get(user);
1776 if (pkgs == null) {
Sameer Padala513edae2014-07-29 16:17:08 -07001777 pkgs = new HashSet<String>();
Sunny Goyalf599ccf2014-07-08 13:01:29 -07001778 sPendingPackages.put(user, pkgs);
1779 }
1780 pkgs.add(cn.getPackageName());
1781 allowMissingTarget = true;
1782 // Add the icon on the workspace anyway.
Sunny Goyal1a745e82014-10-02 15:58:31 -07001783
1784 } else {
1785 // Do not wait for external media load anymore.
1786 // Log the invalid package, and remove it
Sunny Goyal713edfc2016-05-06 09:58:34 -07001787 FileLog.d(TAG, "Invalid package removed: " + cn);
Sunny Goyal1a745e82014-10-02 15:58:31 -07001788 itemsToRemove.add(id);
1789 continue;
Winson Chungee055712013-07-30 14:46:24 -07001790 }
Sunny Goyal938a53d2014-09-05 03:17:45 -07001791 } else if (cn == null) {
1792 // For shortcuts with no component, keep them as they are
1793 restoredRows.add(id);
1794 restored = false;
Winson Chungee055712013-07-30 14:46:24 -07001795 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001796 } catch (URISyntaxException e) {
Sunny Goyal713edfc2016-05-06 09:58:34 -07001797 FileLog.d(TAG, "Invalid uri: " + intentDescription);
Sunny Goyal41cdc8d2015-09-04 12:53:04 -07001798 itemsToRemove.add(id);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001799 continue;
1800 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001801
Sunny Goyal34b65272015-03-11 16:56:52 -07001802 boolean useLowResIcon = container >= 0 &&
1803 c.getInt(rankIndex) >= FolderIcon.NUM_ITEMS_IN_PREVIEW;
1804
Sunny Goyalbb3b02f2015-01-15 12:00:14 -08001805 if (itemReplaced) {
1806 if (user.equals(UserHandleCompat.myUserHandle())) {
Sunny Goyald09c3702016-04-06 16:18:20 -07001807 info = getAppShortcutInfo(intent, user, context, null,
Sunny Goyal4e5cc642015-06-25 16:37:44 -07001808 cursorIconInfo.iconIndex, titleIndex,
1809 false, useLowResIcon);
Sunny Goyalbb3b02f2015-01-15 12:00:14 -08001810 } else {
1811 // Don't replace items for other profiles.
1812 itemsToRemove.add(id);
1813 continue;
1814 }
1815 } else if (restored) {
Kenny Guyed131872014-04-30 03:02:21 +01001816 if (user.equals(UserHandleCompat.myUserHandle())) {
Sunny Goyal34b65272015-03-11 16:56:52 -07001817 info = getRestoredItemInfo(c, titleIndex, intent,
Sunny Goyalc22841b2015-07-13 19:59:50 -07001818 promiseType, itemType, cursorIconInfo, context);
Kenny Guyed131872014-04-30 03:02:21 +01001819 intent = getRestoredItemIntent(c, context, intent);
1820 } else {
1821 // Don't restore items for other profiles.
1822 itemsToRemove.add(id);
1823 continue;
1824 }
Chris Wrenf4d08112014-01-16 18:13:56 -05001825 } else if (itemType ==
1826 LauncherSettings.Favorites.ITEM_TYPE_APPLICATION) {
Sunny Goyald09c3702016-04-06 16:18:20 -07001827 info = getAppShortcutInfo(intent, user, context, c,
Sunny Goyal4e5cc642015-06-25 16:37:44 -07001828 cursorIconInfo.iconIndex, titleIndex,
1829 allowMissingTarget, useLowResIcon);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001830 } else {
Sunny Goyal4e5cc642015-06-25 16:37:44 -07001831 info = getShortcutInfo(c, context, titleIndex, cursorIconInfo);
Michael Jurka96879562012-03-22 05:54:33 -07001832
Sunny Goyald09c3702016-04-06 16:18:20 -07001833 // Shortcuts are only available on the primary profile
1834 if (PackageManagerHelper.isAppSuspended(manager, targetPackage)) {
1835 disabledState |= ShortcutInfo.FLAG_DISABLED_SUSPENDED;
1836 }
1837
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001838 // App shortcuts that used to be automatically added to Launcher
1839 // didn't always have the correct intent flags set, so do that
1840 // here
1841 if (intent.getAction() != null &&
Michael Jurka9ad00562012-05-14 12:24:22 -07001842 intent.getCategories() != null &&
1843 intent.getAction().equals(Intent.ACTION_MAIN) &&
Michael Jurka96879562012-03-22 05:54:33 -07001844 intent.getCategories().contains(Intent.CATEGORY_LAUNCHER)) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001845 intent.addFlags(
1846 Intent.FLAG_ACTIVITY_NEW_TASK |
1847 Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1848 }
Michael Jurka96879562012-03-22 05:54:33 -07001849 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001850
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001851 if (info != null) {
Winson Chungee055712013-07-30 14:46:24 -07001852 info.id = id;
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001853 info.intent = intent;
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001854 info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07001855 info.screenId = c.getInt(screenIndex);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001856 info.cellX = c.getInt(cellXIndex);
1857 info.cellY = c.getInt(cellYIndex);
Sunny Goyal08f72612015-01-05 13:41:43 -08001858 info.rank = c.getInt(rankIndex);
Winson Chung5f8afe62013-08-12 16:19:28 -07001859 info.spanX = 1;
1860 info.spanY = 1;
Kenny Guyed131872014-04-30 03:02:21 +01001861 info.intent.putExtra(ItemInfo.EXTRA_PROFILE, serialNumber);
Sunny Goyal4e5cc642015-06-25 16:37:44 -07001862 if (info.promisedIntent != null) {
1863 info.promisedIntent.putExtra(ItemInfo.EXTRA_PROFILE, serialNumber);
1864 }
Sunny Goyald09c3702016-04-06 16:18:20 -07001865 info.isDisabled |= disabledState;
Sunny Goyal1a745e82014-10-02 15:58:31 -07001866 if (isSafeMode && !Utilities.isSystemApp(context, intent)) {
1867 info.isDisabled |= ShortcutInfo.FLAG_DISABLED_SAFEMODE;
1868 }
Adam Cohenae4409d2013-11-26 10:34:59 -08001869
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001870 // check & update map of what's occupied
Sunny Goyal41cdc8d2015-09-04 12:53:04 -07001871 if (!checkItemPlacement(occupied, info, sBgWorkspaceScreens)) {
Sunny Goyalfc0fe6b2014-10-16 12:18:37 -07001872 itemsToRemove.add(id);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001873 break;
1874 }
1875
Sunny Goyal756adbc2015-04-16 15:20:51 -07001876 if (restored) {
1877 ComponentName cn = info.getTargetComponent();
1878 if (cn != null) {
1879 Integer progress = installingPkgs.get(cn.getPackageName());
1880 if (progress != null) {
1881 info.setInstallProgress(progress);
1882 } else {
1883 info.status &= ~ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE;
1884 }
1885 }
1886 }
1887
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001888 switch (container) {
1889 case LauncherSettings.Favorites.CONTAINER_DESKTOP:
1890 case LauncherSettings.Favorites.CONTAINER_HOTSEAT:
1891 sBgWorkspaceItems.add(info);
1892 break;
1893 default:
1894 // Item is in a user folder
1895 FolderInfo folderInfo =
1896 findOrMakeFolder(sBgFolders, container);
Sunny Goyalc52ba712016-04-05 15:59:05 -07001897 folderInfo.add(info, false);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001898 break;
1899 }
1900 sBgItemsIdMap.put(info.id, info);
Winson Chung1323b482013-08-05 12:41:55 -07001901 } else {
1902 throw new RuntimeException("Unexpected null ShortcutInfo");
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001903 }
1904 break;
1905
1906 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
1907 id = c.getLong(idIndex);
1908 FolderInfo folderInfo = findOrMakeFolder(sBgFolders, id);
1909
Sunny Goyala508e4f2015-05-21 09:33:57 -07001910 // Do not trim the folder label, as is was set by the user.
1911 folderInfo.title = c.getString(titleIndex);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001912 folderInfo.id = id;
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001913 folderInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07001914 folderInfo.screenId = c.getInt(screenIndex);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001915 folderInfo.cellX = c.getInt(cellXIndex);
1916 folderInfo.cellY = c.getInt(cellYIndex);
Winson Chung5f8afe62013-08-12 16:19:28 -07001917 folderInfo.spanX = 1;
1918 folderInfo.spanY = 1;
Sunny Goyal5d85c442015-03-10 13:14:47 -07001919 folderInfo.options = c.getInt(optionsIndex);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001920
Daniel Sandler8802e962010-05-26 16:28:16 -04001921 // check & update map of what's occupied
Sunny Goyal41cdc8d2015-09-04 12:53:04 -07001922 if (!checkItemPlacement(occupied, folderInfo, sBgWorkspaceScreens)) {
Sunny Goyalfc0fe6b2014-10-16 12:18:37 -07001923 itemsToRemove.add(id);
Daniel Sandler8802e962010-05-26 16:28:16 -04001924 break;
1925 }
Winson Chung5f8afe62013-08-12 16:19:28 -07001926
Joe Onorato9c1289c2009-08-17 11:03:03 -04001927 switch (container) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001928 case LauncherSettings.Favorites.CONTAINER_DESKTOP:
1929 case LauncherSettings.Favorites.CONTAINER_HOTSEAT:
1930 sBgWorkspaceItems.add(folderInfo);
1931 break;
Joe Onorato36115782010-06-17 13:28:48 -04001932 }
Joe Onorato17a89222011-02-08 17:26:11 -08001933
Chris Wrenf4d08112014-01-16 18:13:56 -05001934 if (restored) {
1935 // no special handling required for restored folders
1936 restoredRows.add(id);
1937 }
1938
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001939 sBgItemsIdMap.put(folderInfo.id, folderInfo);
1940 sBgFolders.put(folderInfo.id, folderInfo);
1941 break;
1942
1943 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
Adam Cohen59400422014-03-05 18:07:04 -08001944 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001945 // Read all Launcher-specific widget details
Adam Cohen59400422014-03-05 18:07:04 -08001946 boolean customWidget = itemType ==
1947 LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET;
1948
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001949 int appWidgetId = c.getInt(appWidgetIdIndex);
Sunny Goyal7f834d22015-04-21 10:10:23 -07001950 serialNumber = c.getLong(profileIdIndex);
Chris Wrenc3919c02013-09-18 09:48:33 -04001951 String savedProvider = c.getString(appWidgetProviderIndex);
Joe Onorato36115782010-06-17 13:28:48 -04001952 id = c.getLong(idIndex);
Sunny Goyal7f834d22015-04-21 10:10:23 -07001953 user = allUsers.get(serialNumber);
1954 if (user == null) {
1955 itemsToRemove.add(id);
1956 continue;
1957 }
1958
Sunny Goyalff572272014-07-23 13:58:07 -07001959 final ComponentName component =
1960 ComponentName.unflattenFromString(savedProvider);
Joe Onorato36115782010-06-17 13:28:48 -04001961
Sunny Goyal651077b2014-06-30 14:15:31 -07001962 final int restoreStatus = c.getInt(restoredIndex);
Sunny Goyalff572272014-07-23 13:58:07 -07001963 final boolean isIdValid = (restoreStatus &
1964 LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) == 0;
Sunny Goyalff572272014-07-23 13:58:07 -07001965 final boolean wasProviderReady = (restoreStatus &
1966 LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0;
Sunny Goyal651077b2014-06-30 14:15:31 -07001967
Sunny Goyal2e1efb42016-03-03 16:58:55 -08001968 if (widgetProvidersMap == null) {
1969 widgetProvidersMap = AppWidgetManagerCompat
1970 .getInstance(mContext).getAllProvidersMap();
1971 }
1972 final AppWidgetProviderInfo provider = widgetProvidersMap.get(
1973 new ComponentKey(
Robin Lee26ace122015-03-16 19:41:43 +00001974 ComponentName.unflattenFromString(savedProvider),
Sunny Goyal2e1efb42016-03-03 16:58:55 -08001975 user));
Sunny Goyalff572272014-07-23 13:58:07 -07001976
1977 final boolean isProviderReady = isValidProvider(provider);
Adam Cohen59400422014-03-05 18:07:04 -08001978 if (!isSafeMode && !customWidget &&
1979 wasProviderReady && !isProviderReady) {
Sunny Goyal713edfc2016-05-06 09:58:34 -07001980 FileLog.d(TAG, "Deleting widget that isn't installed anymore: "
Sunny Goyala1365452015-10-01 15:46:24 -07001981 + provider);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001982 itemsToRemove.add(id);
1983 } else {
Sunny Goyalff572272014-07-23 13:58:07 -07001984 if (isProviderReady) {
Sunny Goyal651077b2014-06-30 14:15:31 -07001985 appWidgetInfo = new LauncherAppWidgetInfo(appWidgetId,
1986 provider.provider);
Adam Cohen59400422014-03-05 18:07:04 -08001987
Sunny Goyal53f96722015-07-13 19:54:53 -07001988 // The provider is available. So the widget is either
1989 // available or not available. We do not need to track
1990 // any future restore updates.
1991 int status = restoreStatus &
1992 ~LauncherAppWidgetInfo.FLAG_RESTORE_STARTED;
Sunny Goyalff572272014-07-23 13:58:07 -07001993 if (!wasProviderReady) {
1994 // If provider was not previously ready, update the
1995 // status and UI flag.
1996
1997 // Id would be valid only if the widget restore broadcast was received.
1998 if (isIdValid) {
Sunny Goyal84b4adc2015-08-12 15:12:16 -07001999 status = LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
Sunny Goyalff572272014-07-23 13:58:07 -07002000 } else {
2001 status &= ~LauncherAppWidgetInfo
2002 .FLAG_PROVIDER_NOT_READY;
2003 }
2004 }
2005 appWidgetInfo.restoreStatus = status;
Sunny Goyal651077b2014-06-30 14:15:31 -07002006 } else {
2007 Log.v(TAG, "Widget restore pending id=" + id
2008 + " appWidgetId=" + appWidgetId
2009 + " status =" + restoreStatus);
2010 appWidgetInfo = new LauncherAppWidgetInfo(appWidgetId,
Sunny Goyalff572272014-07-23 13:58:07 -07002011 component);
Sunny Goyal651077b2014-06-30 14:15:31 -07002012 appWidgetInfo.restoreStatus = restoreStatus;
Sunny Goyal756adbc2015-04-16 15:20:51 -07002013 Integer installProgress = installingPkgs.get(component.getPackageName());
Sunny Goyal94485362014-09-18 16:13:58 -07002014
2015 if ((restoreStatus & LauncherAppWidgetInfo.FLAG_RESTORE_STARTED) != 0) {
2016 // Restore has started once.
Sunny Goyal756adbc2015-04-16 15:20:51 -07002017 } else if (installProgress != null) {
Sunny Goyal94485362014-09-18 16:13:58 -07002018 // App restore has started. Update the flag
2019 appWidgetInfo.restoreStatus |=
2020 LauncherAppWidgetInfo.FLAG_RESTORE_STARTED;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002021 } else if (REMOVE_UNRESTORED_ICONS && !isSafeMode) {
Sunny Goyal713edfc2016-05-06 09:58:34 -07002022 FileLog.d(TAG, "Unrestored widget removed: " + component);
Sunny Goyal94485362014-09-18 16:13:58 -07002023 itemsToRemove.add(id);
2024 continue;
2025 }
Sunny Goyal756adbc2015-04-16 15:20:51 -07002026
2027 appWidgetInfo.installProgress =
2028 installProgress == null ? 0 : installProgress;
Sunny Goyal651077b2014-06-30 14:15:31 -07002029 }
Sunny Goyalff572272014-07-23 13:58:07 -07002030
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002031 appWidgetInfo.id = id;
Adam Cohendcd297f2013-06-18 13:13:40 -07002032 appWidgetInfo.screenId = c.getInt(screenIndex);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002033 appWidgetInfo.cellX = c.getInt(cellXIndex);
2034 appWidgetInfo.cellY = c.getInt(cellYIndex);
2035 appWidgetInfo.spanX = c.getInt(spanXIndex);
2036 appWidgetInfo.spanY = c.getInt(spanYIndex);
Sunny Goyalab7a4fe2015-07-15 17:20:54 -07002037 appWidgetInfo.user = user;
Joe Onorato36115782010-06-17 13:28:48 -04002038
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002039 if (container != LauncherSettings.Favorites.CONTAINER_DESKTOP &&
2040 container != LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2041 Log.e(TAG, "Widget found where container != " +
Sunny Goyal41cdc8d2015-09-04 12:53:04 -07002042 "CONTAINER_DESKTOP nor CONTAINER_HOTSEAT - ignoring!");
2043 itemsToRemove.add(id);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002044 continue;
2045 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002046
Sunny Goyalb1622cc2015-06-10 16:00:42 -07002047 appWidgetInfo.container = container;
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002048 // check & update map of what's occupied
Sunny Goyal41cdc8d2015-09-04 12:53:04 -07002049 if (!checkItemPlacement(occupied, appWidgetInfo, sBgWorkspaceScreens)) {
Sunny Goyalfc0fe6b2014-10-16 12:18:37 -07002050 itemsToRemove.add(id);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002051 break;
2052 }
Sunny Goyal651077b2014-06-30 14:15:31 -07002053
Adam Cohen59400422014-03-05 18:07:04 -08002054 if (!customWidget) {
2055 String providerName =
2056 appWidgetInfo.providerName.flattenToString();
2057 if (!providerName.equals(savedProvider) ||
2058 (appWidgetInfo.restoreStatus != restoreStatus)) {
2059 ContentValues values = new ContentValues();
2060 values.put(
2061 LauncherSettings.Favorites.APPWIDGET_PROVIDER,
2062 providerName);
2063 values.put(LauncherSettings.Favorites.RESTORED,
2064 appWidgetInfo.restoreStatus);
Sunny Goyalbb3b02f2015-01-15 12:00:14 -08002065 updateItem(id, values);
Adam Cohen59400422014-03-05 18:07:04 -08002066 }
Chris Wrenc3919c02013-09-18 09:48:33 -04002067 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002068 sBgItemsIdMap.put(appWidgetInfo.id, appWidgetInfo);
2069 sBgAppWidgets.add(appWidgetInfo);
2070 }
Joe Onorato36115782010-06-17 13:28:48 -04002071 break;
2072 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002073 } catch (Exception e) {
Sunny Goyala1365452015-10-01 15:46:24 -07002074 Log.e(TAG, "Desktop items loading interrupted", e);
Romain Guy5c16f3e2010-01-12 17:24:58 -08002075 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002076 }
2077 } finally {
Sunny Goyal713edfc2016-05-06 09:58:34 -07002078 Utilities.closeSilently(c);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002079 }
2080
Winson Chungba9c37f2013-08-30 14:11:37 -07002081 // Break early if we've stopped loading
2082 if (mStopped) {
Winson Chungba9c37f2013-08-30 14:11:37 -07002083 clearSBgDataStructures();
Sunny Goyal66cfdc22015-02-02 13:01:51 -08002084 return;
Winson Chungba9c37f2013-08-30 14:11:37 -07002085 }
2086
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002087 if (itemsToRemove.size() > 0) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002088 // Remove dead items
Sunny Goyalb1622cc2015-06-10 16:00:42 -07002089 contentResolver.delete(LauncherSettings.Favorites.CONTENT_URI,
2090 Utilities.createDbSelectionQuery(
2091 LauncherSettings.Favorites._ID, itemsToRemove), null);
2092 if (DEBUG_LOADERS) {
2093 Log.d(TAG, "Removed = " + Utilities.createDbSelectionQuery(
2094 LauncherSettings.Favorites._ID, itemsToRemove));
2095 }
2096
2097 // Remove any empty folder
Sunny Goyald2497482015-09-22 18:24:19 -07002098 ArrayList<Long> deletedFolderIds = (ArrayList<Long>) LauncherSettings.Settings
2099 .call(contentResolver,
2100 LauncherSettings.Settings.METHOD_DELETE_EMPTY_FOLDERS)
2101 .getSerializable(LauncherSettings.Settings.EXTRA_VALUE);
2102 for (long folderId : deletedFolderIds) {
Sunny Goyalb1622cc2015-06-10 16:00:42 -07002103 sBgWorkspaceItems.remove(sBgFolders.get(folderId));
2104 sBgFolders.remove(folderId);
2105 sBgItemsIdMap.remove(folderId);
Romain Guy5c16f3e2010-01-12 17:24:58 -08002106 }
2107 }
2108
Sunny Goyal317698b2015-07-29 11:45:41 -07002109 // Sort all the folder items and make sure the first 3 items are high resolution.
2110 for (FolderInfo folder : sBgFolders) {
2111 Collections.sort(folder.contents, Folder.ITEM_POS_COMPARATOR);
2112 int pos = 0;
2113 for (ShortcutInfo info : folder.contents) {
2114 if (info.usingLowResIcon) {
2115 info.updateIcon(mIconCache, false);
2116 }
2117 pos ++;
2118 if (pos >= FolderIcon.NUM_ITEMS_IN_PREVIEW) {
2119 break;
2120 }
2121 }
2122 }
2123
Chris Wrenf4d08112014-01-16 18:13:56 -05002124 if (restoredRows.size() > 0) {
Chris Wrenf4d08112014-01-16 18:13:56 -05002125 // Update restored items that no longer require special handling
Sunny Goyalb1622cc2015-06-10 16:00:42 -07002126 ContentValues values = new ContentValues();
2127 values.put(LauncherSettings.Favorites.RESTORED, 0);
2128 contentResolver.update(LauncherSettings.Favorites.CONTENT_URI, values,
2129 Utilities.createDbSelectionQuery(
2130 LauncherSettings.Favorites._ID, restoredRows), null);
Chris Wrenf4d08112014-01-16 18:13:56 -05002131 }
2132
Sunny Goyalf599ccf2014-07-08 13:01:29 -07002133 if (!isSdCardReady && !sPendingPackages.isEmpty()) {
2134 context.registerReceiver(new AppsAvailabilityCheck(),
Sunny Goyal25aba0a2015-07-16 15:07:47 -07002135 new IntentFilter(Intent.ACTION_BOOT_COMPLETED),
Sunny Goyalf599ccf2014-07-08 13:01:29 -07002136 null, sWorker);
2137 }
2138
Sunny Goyal66cfdc22015-02-02 13:01:51 -08002139 // Remove any empty screens
2140 ArrayList<Long> unusedScreens = new ArrayList<Long>(sBgWorkspaceScreens);
Sunny Goyale2df0622015-04-24 11:27:00 -07002141 for (ItemInfo item: sBgItemsIdMap) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08002142 long screenId = item.screenId;
2143 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP &&
2144 unusedScreens.contains(screenId)) {
2145 unusedScreens.remove(screenId);
2146 }
2147 }
2148
2149 // If there are any empty screens remove them, and update.
2150 if (unusedScreens.size() != 0) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08002151 sBgWorkspaceScreens.removeAll(unusedScreens);
Adam Cohendcd297f2013-06-18 13:13:40 -07002152 updateWorkspaceScreenOrder(context, sBgWorkspaceScreens);
Adam Cohendcd297f2013-06-18 13:13:40 -07002153 }
2154
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002155 if (DEBUG_LOADERS) {
2156 Log.d(TAG, "loaded workspace in " + (SystemClock.uptimeMillis()-t) + "ms");
2157 Log.d(TAG, "workspace layout: ");
Adam Cohendcd297f2013-06-18 13:13:40 -07002158 int nScreens = occupied.size();
Winson Chung892c74d2013-08-22 16:15:50 -07002159 for (int y = 0; y < countY; y++) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002160 String line = "";
Adam Cohendcd297f2013-06-18 13:13:40 -07002161
Sunny Goyale2df0622015-04-24 11:27:00 -07002162 for (int i = 0; i < nScreens; i++) {
2163 long screenId = occupied.keyAt(i);
Winson Chungc9168342013-06-26 14:54:55 -07002164 if (screenId > 0) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002165 line += " | ";
2166 }
Joe Onorato36115782010-06-17 13:28:48 -04002167 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002168 Log.d(TAG, "[ " + line + " ]");
Joe Onorato36115782010-06-17 13:28:48 -04002169 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04002170 }
Joe Onorato36115782010-06-17 13:28:48 -04002171 }
Adam Cohene25af792013-06-06 23:08:25 -07002172 }
2173
Sunny Goyalbb3b02f2015-01-15 12:00:14 -08002174 /**
2175 * Partially updates the item without any notification. Must be called on the worker thread.
2176 */
2177 private void updateItem(long itemId, ContentValues update) {
2178 mContext.getContentResolver().update(
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002179 LauncherSettings.Favorites.CONTENT_URI,
Sunny Goyalbb3b02f2015-01-15 12:00:14 -08002180 update,
2181 BaseColumns._ID + "= ?",
2182 new String[]{Long.toString(itemId)});
2183 }
2184
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002185 /** Filters the set of items who are directly or indirectly (via another container) on the
2186 * specified screen. */
Winson Chung9b9fb962013-11-15 15:39:34 -08002187 private void filterCurrentWorkspaceItems(long currentScreenId,
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002188 ArrayList<ItemInfo> allWorkspaceItems,
2189 ArrayList<ItemInfo> currentScreenItems,
2190 ArrayList<ItemInfo> otherScreenItems) {
Winson Chung2abf94d2012-07-18 18:16:38 -07002191 // Purge any null ItemInfos
2192 Iterator<ItemInfo> iter = allWorkspaceItems.iterator();
2193 while (iter.hasNext()) {
2194 ItemInfo i = iter.next();
2195 if (i == null) {
2196 iter.remove();
2197 }
2198 }
2199
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002200 // Order the set of items by their containers first, this allows use to walk through the
2201 // list sequentially, build up a list of containers that are in the specified screen,
2202 // as well as all items in those containers.
2203 Set<Long> itemsOnScreen = new HashSet<Long>();
2204 Collections.sort(allWorkspaceItems, new Comparator<ItemInfo>() {
2205 @Override
2206 public int compare(ItemInfo lhs, ItemInfo rhs) {
Winson12fb9fc2015-10-01 15:34:08 -07002207 return Utilities.longCompare(lhs.container, rhs.container);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002208 }
2209 });
2210 for (ItemInfo info : allWorkspaceItems) {
2211 if (info.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
Winson Chung9b9fb962013-11-15 15:39:34 -08002212 if (info.screenId == currentScreenId) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002213 currentScreenItems.add(info);
2214 itemsOnScreen.add(info.id);
2215 } else {
2216 otherScreenItems.add(info);
2217 }
2218 } else if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2219 currentScreenItems.add(info);
2220 itemsOnScreen.add(info.id);
2221 } else {
2222 if (itemsOnScreen.contains(info.container)) {
2223 currentScreenItems.add(info);
2224 itemsOnScreen.add(info.id);
2225 } else {
2226 otherScreenItems.add(info);
2227 }
2228 }
2229 }
2230 }
2231
2232 /** Filters the set of widgets which are on the specified screen. */
Winson Chung9b9fb962013-11-15 15:39:34 -08002233 private void filterCurrentAppWidgets(long currentScreenId,
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002234 ArrayList<LauncherAppWidgetInfo> appWidgets,
2235 ArrayList<LauncherAppWidgetInfo> currentScreenWidgets,
2236 ArrayList<LauncherAppWidgetInfo> otherScreenWidgets) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002237
2238 for (LauncherAppWidgetInfo widget : appWidgets) {
Winson Chung2abf94d2012-07-18 18:16:38 -07002239 if (widget == null) continue;
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002240 if (widget.container == LauncherSettings.Favorites.CONTAINER_DESKTOP &&
Winson Chung9b9fb962013-11-15 15:39:34 -08002241 widget.screenId == currentScreenId) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002242 currentScreenWidgets.add(widget);
2243 } else {
2244 otherScreenWidgets.add(widget);
2245 }
2246 }
2247 }
2248
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002249 /** Sorts the set of items by hotseat, workspace (spatially from top to bottom, left to
2250 * right) */
2251 private void sortWorkspaceItemsSpatially(ArrayList<ItemInfo> workspaceItems) {
Winson Chung892c74d2013-08-22 16:15:50 -07002252 final LauncherAppState app = LauncherAppState.getInstance();
Adam Cohen2e6da152015-05-06 11:42:25 -07002253 final InvariantDeviceProfile profile = app.getInvariantDeviceProfile();
Winson Chung882a52e2015-07-08 14:32:26 -07002254 final int screenCols = profile.numColumns;
2255 final int screenCellCount = profile.numColumns * profile.numRows;
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002256 Collections.sort(workspaceItems, new Comparator<ItemInfo>() {
Winson Chungdb8a8942012-04-03 14:08:41 -07002257 @Override
2258 public int compare(ItemInfo lhs, ItemInfo rhs) {
Winson Chung882a52e2015-07-08 14:32:26 -07002259 if (lhs.container == rhs.container) {
2260 // Within containers, order by their spatial position in that container
2261 switch ((int) lhs.container) {
2262 case LauncherSettings.Favorites.CONTAINER_DESKTOP: {
2263 long lr = (lhs.screenId * screenCellCount +
2264 lhs.cellY * screenCols + lhs.cellX);
2265 long rr = (rhs.screenId * screenCellCount +
2266 rhs.cellY * screenCols + rhs.cellX);
Winson722e8562015-10-07 13:04:30 -07002267 return Utilities.longCompare(lr, rr);
Winson Chung882a52e2015-07-08 14:32:26 -07002268 }
2269 case LauncherSettings.Favorites.CONTAINER_HOTSEAT: {
2270 // We currently use the screen id as the rank
Winson722e8562015-10-07 13:04:30 -07002271 return Utilities.longCompare(lhs.screenId, rhs.screenId);
Winson Chung882a52e2015-07-08 14:32:26 -07002272 }
2273 default:
Sunny Goyal6c56c682015-07-16 14:09:05 -07002274 if (ProviderConfig.IS_DOGFOOD_BUILD) {
Winson Chung882a52e2015-07-08 14:32:26 -07002275 throw new RuntimeException("Unexpected container type when " +
2276 "sorting workspace items.");
2277 }
2278 return 0;
2279 }
2280 } else {
2281 // Between containers, order by hotseat, desktop
Winson722e8562015-10-07 13:04:30 -07002282 return Utilities.longCompare(lhs.container, rhs.container);
Winson Chung882a52e2015-07-08 14:32:26 -07002283 }
Winson Chungdb8a8942012-04-03 14:08:41 -07002284 }
2285 });
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002286 }
Winson Chungdb8a8942012-04-03 14:08:41 -07002287
Adam Cohendcd297f2013-06-18 13:13:40 -07002288 private void bindWorkspaceScreens(final Callbacks oldCallbacks,
2289 final ArrayList<Long> orderedScreens) {
Adam Cohendcd297f2013-06-18 13:13:40 -07002290 final Runnable r = new Runnable() {
2291 @Override
2292 public void run() {
2293 Callbacks callbacks = tryGetCallbacks(oldCallbacks);
2294 if (callbacks != null) {
2295 callbacks.bindScreens(orderedScreens);
2296 }
2297 }
2298 };
Sunny Goyald33860f2015-04-23 16:02:20 -07002299 runOnMainThread(r);
Adam Cohendcd297f2013-06-18 13:13:40 -07002300 }
2301
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002302 private void bindWorkspaceItems(final Callbacks oldCallbacks,
2303 final ArrayList<ItemInfo> workspaceItems,
2304 final ArrayList<LauncherAppWidgetInfo> appWidgets,
Sunny Goyal527c7d32015-08-28 15:19:36 -07002305 final Executor executor) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002306
2307 // Bind the workspace items
Winson Chungdb8a8942012-04-03 14:08:41 -07002308 int N = workspaceItems.size();
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002309 for (int i = 0; i < N; i += ITEMS_CHUNK) {
Joe Onorato36115782010-06-17 13:28:48 -04002310 final int start = i;
2311 final int chunkSize = (i+ITEMS_CHUNK <= N) ? ITEMS_CHUNK : (N-i);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002312 final Runnable r = new Runnable() {
2313 @Override
Joe Onorato9c1289c2009-08-17 11:03:03 -04002314 public void run() {
Joe Onoratoc131b742010-03-11 15:45:05 -08002315 Callbacks callbacks = tryGetCallbacks(oldCallbacks);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002316 if (callbacks != null) {
Winson Chung64359a52013-07-08 17:17:08 -07002317 callbacks.bindItems(workspaceItems, start, start+chunkSize,
2318 false);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002319 }
2320 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002321 };
Sunny Goyal527c7d32015-08-28 15:19:36 -07002322 executor.execute(r);
Joe Onorato36115782010-06-17 13:28:48 -04002323 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002324
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002325 // Bind the widgets, one at a time
2326 N = appWidgets.size();
2327 for (int i = 0; i < N; i++) {
2328 final LauncherAppWidgetInfo widget = appWidgets.get(i);
2329 final Runnable r = new Runnable() {
2330 public void run() {
2331 Callbacks callbacks = tryGetCallbacks(oldCallbacks);
2332 if (callbacks != null) {
2333 callbacks.bindAppWidget(widget);
2334 }
2335 }
2336 };
Sunny Goyal527c7d32015-08-28 15:19:36 -07002337 executor.execute(r);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002338 }
2339 }
2340
2341 /**
2342 * Binds all loaded data to actual views on the main thread.
2343 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08002344 private void bindWorkspace(int synchronizeBindPage) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002345 final long t = SystemClock.uptimeMillis();
2346 Runnable r;
2347
2348 // Don't use these two variables in any of the callback runnables.
2349 // Otherwise we hold a reference to them.
2350 final Callbacks oldCallbacks = mCallbacks.get();
2351 if (oldCallbacks == null) {
2352 // This launcher has exited and nobody bothered to tell us. Just bail.
2353 Log.w(TAG, "LoaderTask running with no launcher");
2354 return;
2355 }
2356
Winson Chung9b9fb962013-11-15 15:39:34 -08002357 // Save a copy of all the bg-thread collections
Sunny Goyal44c06432016-04-02 10:56:02 -07002358 ArrayList<ItemInfo> workspaceItems = new ArrayList<>();
2359 ArrayList<LauncherAppWidgetInfo> appWidgets = new ArrayList<>();
2360 ArrayList<Long> orderedScreenIds = new ArrayList<>();
Sunny Goyale2df0622015-04-24 11:27:00 -07002361
Winson Chung2abf94d2012-07-18 18:16:38 -07002362 synchronized (sBgLock) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002363 workspaceItems.addAll(sBgWorkspaceItems);
2364 appWidgets.addAll(sBgAppWidgets);
Adam Cohendcd297f2013-06-18 13:13:40 -07002365 orderedScreenIds.addAll(sBgWorkspaceScreens);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002366 }
2367
Derek Prothro7aff3992013-12-10 14:00:37 -05002368 final boolean isLoadingSynchronously =
2369 synchronizeBindPage != PagedView.INVALID_RESTORE_PAGE;
Adam Cohend8dbb462013-11-27 11:55:48 -08002370 int currScreen = isLoadingSynchronously ? synchronizeBindPage :
Winson Chung9b9fb962013-11-15 15:39:34 -08002371 oldCallbacks.getCurrentWorkspaceScreen();
Adam Cohend8dbb462013-11-27 11:55:48 -08002372 if (currScreen >= orderedScreenIds.size()) {
2373 // There may be no workspace screens (just hotseat items and an empty page).
Derek Prothro7aff3992013-12-10 14:00:37 -05002374 currScreen = PagedView.INVALID_RESTORE_PAGE;
Winson Chung9b9fb962013-11-15 15:39:34 -08002375 }
Adam Cohend8dbb462013-11-27 11:55:48 -08002376 final int currentScreen = currScreen;
Derek Prothro7aff3992013-12-10 14:00:37 -05002377 final long currentScreenId = currentScreen < 0
2378 ? INVALID_SCREEN_ID : orderedScreenIds.get(currentScreen);
Winson Chung9b9fb962013-11-15 15:39:34 -08002379
Winson Chung9b9fb962013-11-15 15:39:34 -08002380 // Separate the items that are on the current screen, and all the other remaining items
Sunny Goyal44c06432016-04-02 10:56:02 -07002381 ArrayList<ItemInfo> currentWorkspaceItems = new ArrayList<>();
2382 ArrayList<ItemInfo> otherWorkspaceItems = new ArrayList<>();
2383 ArrayList<LauncherAppWidgetInfo> currentAppWidgets = new ArrayList<>();
2384 ArrayList<LauncherAppWidgetInfo> otherAppWidgets = new ArrayList<>();
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002385
Winson Chung9b9fb962013-11-15 15:39:34 -08002386 filterCurrentWorkspaceItems(currentScreenId, workspaceItems, currentWorkspaceItems,
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002387 otherWorkspaceItems);
Winson Chung9b9fb962013-11-15 15:39:34 -08002388 filterCurrentAppWidgets(currentScreenId, appWidgets, currentAppWidgets,
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002389 otherAppWidgets);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002390 sortWorkspaceItemsSpatially(currentWorkspaceItems);
2391 sortWorkspaceItemsSpatially(otherWorkspaceItems);
2392
2393 // Tell the workspace that we're about to start binding items
2394 r = new Runnable() {
Joe Onorato36115782010-06-17 13:28:48 -04002395 public void run() {
2396 Callbacks callbacks = tryGetCallbacks(oldCallbacks);
2397 if (callbacks != null) {
Sunny Goyal527c7d32015-08-28 15:19:36 -07002398 callbacks.clearPendingBinds();
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002399 callbacks.startBinding();
Joe Onorato36115782010-06-17 13:28:48 -04002400 }
2401 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002402 };
Sunny Goyald33860f2015-04-23 16:02:20 -07002403 runOnMainThread(r);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002404
Adam Cohendcd297f2013-06-18 13:13:40 -07002405 bindWorkspaceScreens(oldCallbacks, orderedScreenIds);
2406
Sunny Goyal527c7d32015-08-28 15:19:36 -07002407 Executor mainExecutor = new DeferredMainThreadExecutor();
2408 // Load items on the current page.
Sunny Goyal44c06432016-04-02 10:56:02 -07002409 bindWorkspaceItems(oldCallbacks, currentWorkspaceItems, currentAppWidgets, mainExecutor);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002410
Sunny Goyal527c7d32015-08-28 15:19:36 -07002411 // In case of isLoadingSynchronously, only bind the first screen, and defer binding the
2412 // remaining screens after first onDraw is called. This ensures that the first screen
2413 // is immediately visible (eg. during rotation)
2414 // In case of !isLoadingSynchronously, bind all pages one after other.
2415 final Executor deferredExecutor = isLoadingSynchronously ?
2416 new ViewOnDrawExecutor(mHandler) : mainExecutor;
2417
Sunny Goyal44c06432016-04-02 10:56:02 -07002418 bindWorkspaceItems(oldCallbacks, otherWorkspaceItems, otherAppWidgets, deferredExecutor);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002419
2420 // Tell the workspace that we're done binding items
2421 r = new Runnable() {
Joe Onorato36115782010-06-17 13:28:48 -04002422 public void run() {
2423 Callbacks callbacks = tryGetCallbacks(oldCallbacks);
2424 if (callbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08002425 callbacks.finishBindingItems();
Joe Onorato36115782010-06-17 13:28:48 -04002426 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002427
Sunny Goyal639e9062015-08-19 19:17:06 -07002428 mIsLoadingAndBindingWorkspace = false;
2429
2430 // Run all the bind complete runnables after workspace is bound.
2431 if (!mBindCompleteRunnables.isEmpty()) {
2432 synchronized (mBindCompleteRunnables) {
2433 for (final Runnable r : mBindCompleteRunnables) {
2434 runOnWorkerThread(r);
2435 }
2436 mBindCompleteRunnables.clear();
2437 }
2438 }
2439
Winson Chung98e030b2012-05-07 16:01:11 -07002440 // If we're profiling, ensure this is the last thing in the queue.
Joe Onorato36115782010-06-17 13:28:48 -04002441 if (DEBUG_LOADERS) {
2442 Log.d(TAG, "bound workspace in "
2443 + (SystemClock.uptimeMillis()-t) + "ms");
2444 }
Winson Chung36a62fe2012-05-06 18:04:42 -07002445
Joe Onorato36115782010-06-17 13:28:48 -04002446 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002447 };
Sunny Goyal527c7d32015-08-28 15:19:36 -07002448 deferredExecutor.execute(r);
2449
Winson Chung4a2afa32012-07-19 14:53:05 -07002450 if (isLoadingSynchronously) {
Sunny Goyal527c7d32015-08-28 15:19:36 -07002451 r = new Runnable() {
2452 public void run() {
2453 Callbacks callbacks = tryGetCallbacks(oldCallbacks);
2454 if (callbacks != null) {
2455 // We are loading synchronously, which means, some of the pages will be
2456 // bound after first draw. Inform the callbacks that page binding is
2457 // not complete, and schedule the remaining pages.
2458 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
2459 callbacks.onPageBoundSynchronously(currentScreen);
2460 }
2461 callbacks.executeOnNextDraw((ViewOnDrawExecutor) deferredExecutor);
2462 }
2463 }
2464 };
Sunny Goyald33860f2015-04-23 16:02:20 -07002465 runOnMainThread(r);
Winson Chung4a2afa32012-07-19 14:53:05 -07002466 }
Joe Onorato36115782010-06-17 13:28:48 -04002467 }
Joe Onoratocc67f472010-06-08 10:54:30 -07002468
Joe Onorato36115782010-06-17 13:28:48 -04002469 private void loadAndBindAllApps() {
2470 if (DEBUG_LOADERS) {
2471 Log.d(TAG, "loadAndBindAllApps mAllAppsLoaded=" + mAllAppsLoaded);
2472 }
2473 if (!mAllAppsLoaded) {
Winson Chung64359a52013-07-08 17:17:08 -07002474 loadAllApps();
Sunny Goyalf5cd9982015-05-18 15:19:29 -07002475 synchronized (LoaderTask.this) {
2476 if (mStopped) {
2477 return;
2478 }
2479 }
Sunny Goyal4e5cc642015-06-25 16:37:44 -07002480 updateIconCache();
Reena Lee93f824a2011-09-23 17:20:28 -07002481 synchronized (LoaderTask.this) {
2482 if (mStopped) {
2483 return;
2484 }
2485 mAllAppsLoaded = true;
Joe Onoratocc67f472010-06-08 10:54:30 -07002486 }
Joe Onorato36115782010-06-17 13:28:48 -04002487 } else {
2488 onlyBindAllApps();
2489 }
2490 }
Joe Onoratocc67f472010-06-08 10:54:30 -07002491
Sunny Goyal4e5cc642015-06-25 16:37:44 -07002492 private void updateIconCache() {
2493 // Ignore packages which have a promise icon.
2494 HashSet<String> packagesToIgnore = new HashSet<>();
2495 synchronized (sBgLock) {
2496 for (ItemInfo info : sBgItemsIdMap) {
2497 if (info instanceof ShortcutInfo) {
2498 ShortcutInfo si = (ShortcutInfo) info;
2499 if (si.isPromise() && si.getTargetComponent() != null) {
2500 packagesToIgnore.add(si.getTargetComponent().getPackageName());
2501 }
2502 } else if (info instanceof LauncherAppWidgetInfo) {
2503 LauncherAppWidgetInfo lawi = (LauncherAppWidgetInfo) info;
2504 if (lawi.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY)) {
2505 packagesToIgnore.add(lawi.providerName.getPackageName());
2506 }
2507 }
2508 }
2509 }
2510 mIconCache.updateDbIcons(packagesToIgnore);
2511 }
2512
Joe Onorato36115782010-06-17 13:28:48 -04002513 private void onlyBindAllApps() {
2514 final Callbacks oldCallbacks = mCallbacks.get();
2515 if (oldCallbacks == null) {
2516 // This launcher has exited and nobody bothered to tell us. Just bail.
2517 Log.w(TAG, "LoaderTask running with no launcher (onlyBindAllApps)");
2518 return;
2519 }
2520
2521 // shallow copy
Winson Chungc208ff92012-03-29 17:37:41 -07002522 @SuppressWarnings("unchecked")
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002523 final ArrayList<AppInfo> list
2524 = (ArrayList<AppInfo>) mBgAllAppsList.data.clone();
Winson Chungc93e5ae2012-07-23 20:48:26 -07002525 Runnable r = new Runnable() {
Joe Onorato36115782010-06-17 13:28:48 -04002526 public void run() {
2527 final long t = SystemClock.uptimeMillis();
2528 final Callbacks callbacks = tryGetCallbacks(oldCallbacks);
2529 if (callbacks != null) {
2530 callbacks.bindAllApplications(list);
2531 }
2532 if (DEBUG_LOADERS) {
2533 Log.d(TAG, "bound all " + list.size() + " apps from cache in "
Hyunyoung Song747a5bc2016-02-08 11:31:33 -08002534 + (SystemClock.uptimeMillis() - t) + "ms");
Joe Onorato36115782010-06-17 13:28:48 -04002535 }
2536 }
Winson Chungc93e5ae2012-07-23 20:48:26 -07002537 };
2538 boolean isRunningOnMainThread = !(sWorkerThread.getThreadId() == Process.myTid());
Winson Chung64359a52013-07-08 17:17:08 -07002539 if (isRunningOnMainThread) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07002540 r.run();
2541 } else {
2542 mHandler.post(r);
2543 }
Joe Onorato36115782010-06-17 13:28:48 -04002544 }
2545
Winson Chung64359a52013-07-08 17:17:08 -07002546 private void loadAllApps() {
2547 final long loadTime = DEBUG_LOADERS ? SystemClock.uptimeMillis() : 0;
Joe Onorato36115782010-06-17 13:28:48 -04002548
Joe Onorato36115782010-06-17 13:28:48 -04002549 final Callbacks oldCallbacks = mCallbacks.get();
2550 if (oldCallbacks == null) {
2551 // This launcher has exited and nobody bothered to tell us. Just bail.
Winson Chung64359a52013-07-08 17:17:08 -07002552 Log.w(TAG, "LoaderTask running with no launcher (loadAllApps)");
Joe Onorato36115782010-06-17 13:28:48 -04002553 return;
2554 }
2555
Kenny Guyed131872014-04-30 03:02:21 +01002556 final List<UserHandleCompat> profiles = mUserManager.getUserProfiles();
2557
Winson Chung64359a52013-07-08 17:17:08 -07002558 // Clear the list of apps
2559 mBgAllAppsList.clear();
Kenny Guyed131872014-04-30 03:02:21 +01002560 for (UserHandleCompat user : profiles) {
2561 // Query for the set of apps
2562 final long qiaTime = DEBUG_LOADERS ? SystemClock.uptimeMillis() : 0;
Sunny Goyal756a28a2015-04-23 17:07:55 -07002563 final List<LauncherActivityInfoCompat> apps = mLauncherApps.getActivityList(null, user);
Kenny Guyed131872014-04-30 03:02:21 +01002564 if (DEBUG_LOADERS) {
2565 Log.d(TAG, "getActivityList took "
2566 + (SystemClock.uptimeMillis()-qiaTime) + "ms for user " + user);
2567 Log.d(TAG, "getActivityList got " + apps.size() + " apps for user " + user);
2568 }
2569 // Fail if we don't have any apps
Sunny Goyale0f58d72014-11-10 18:05:31 -08002570 // TODO: Fix this. Only fail for the current user.
Kenny Guyed131872014-04-30 03:02:21 +01002571 if (apps == null || apps.isEmpty()) {
2572 return;
2573 }
Kenny Guyff05f432016-01-22 17:48:29 +00002574 boolean quietMode = mUserManager.isQuietModeEnabled(user);
Kenny Guyed131872014-04-30 03:02:21 +01002575 // Create the ApplicationInfos
2576 for (int i = 0; i < apps.size(); i++) {
2577 LauncherActivityInfoCompat app = apps.get(i);
2578 // This builds the icon bitmaps.
Kenny Guyff05f432016-01-22 17:48:29 +00002579 mBgAllAppsList.add(new AppInfo(mContext, app, user, mIconCache, quietMode));
Kenny Guyed131872014-04-30 03:02:21 +01002580 }
Sunny Goyale0f58d72014-11-10 18:05:31 -08002581
Sunny Goyal756a28a2015-04-23 17:07:55 -07002582 final ManagedProfileHeuristic heuristic = ManagedProfileHeuristic.get(mContext, user);
2583 if (heuristic != null) {
Sunny Goyal639e9062015-08-19 19:17:06 -07002584 final Runnable r = new Runnable() {
Sunny Goyal756a28a2015-04-23 17:07:55 -07002585
2586 @Override
2587 public void run() {
2588 heuristic.processUserApps(apps);
2589 }
Sunny Goyal639e9062015-08-19 19:17:06 -07002590 };
2591 runOnMainThread(new Runnable() {
2592
2593 @Override
2594 public void run() {
2595 // Check isLoadingWorkspace on the UI thread, as it is updated on
2596 // the UI thread.
2597 if (mIsLoadingAndBindingWorkspace) {
2598 synchronized (mBindCompleteRunnables) {
2599 mBindCompleteRunnables.add(r);
2600 }
2601 } else {
2602 runOnWorkerThread(r);
2603 }
2604 }
Sunny Goyal756a28a2015-04-23 17:07:55 -07002605 });
Sunny Goyale0f58d72014-11-10 18:05:31 -08002606 }
Winson Chung64359a52013-07-08 17:17:08 -07002607 }
Bjorn Bringert85f418d2013-09-06 12:50:05 +01002608 // Huh? Shouldn't this be inside the Runnable below?
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002609 final ArrayList<AppInfo> added = mBgAllAppsList.added;
2610 mBgAllAppsList.added = new ArrayList<AppInfo>();
Winson Chung64359a52013-07-08 17:17:08 -07002611
2612 // Post callback on main thread
2613 mHandler.post(new Runnable() {
2614 public void run() {
Hyunyoung Song9892e582015-05-05 10:07:23 -07002615
Winson Chung64359a52013-07-08 17:17:08 -07002616 final long bindTime = SystemClock.uptimeMillis();
Winson Chung11a1a532013-09-13 11:14:45 -07002617 final Callbacks callbacks = tryGetCallbacks(oldCallbacks);
Winson Chung64359a52013-07-08 17:17:08 -07002618 if (callbacks != null) {
2619 callbacks.bindAllApplications(added);
2620 if (DEBUG_LOADERS) {
2621 Log.d(TAG, "bound " + added.size() + " apps in "
Sunny Goyal2e1efb42016-03-03 16:58:55 -08002622 + (SystemClock.uptimeMillis() - bindTime) + "ms");
Winson Chung64359a52013-07-08 17:17:08 -07002623 }
2624 } else {
2625 Log.i(TAG, "not binding apps: no Launcher activity");
2626 }
2627 }
2628 });
Sunny Goyal18bf8e22015-04-08 18:13:46 -07002629 // Cleanup any data stored for a deleted user.
2630 ManagedProfileHeuristic.processAllUsers(profiles, mContext);
Joe Onorato36115782010-06-17 13:28:48 -04002631 if (DEBUG_LOADERS) {
Winson Chung64359a52013-07-08 17:17:08 -07002632 Log.d(TAG, "Icons processed in "
2633 + (SystemClock.uptimeMillis() - loadTime) + "ms");
Joe Onoratobe386092009-11-17 17:32:16 -08002634 }
2635 }
2636
2637 public void dumpState() {
Winson Chung2abf94d2012-07-18 18:16:38 -07002638 synchronized (sBgLock) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002639 Log.d(TAG, "mLoaderTask.mContext=" + mContext);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002640 Log.d(TAG, "mLoaderTask.mStopped=" + mStopped);
2641 Log.d(TAG, "mLoaderTask.mLoadAndBindStepFinished=" + mLoadAndBindStepFinished);
2642 Log.d(TAG, "mItems size=" + sBgWorkspaceItems.size());
2643 }
Joe Onorato36115782010-06-17 13:28:48 -04002644 }
2645 }
2646
Sunny Goyal75b0f552015-05-20 21:57:06 -07002647 /**
2648 * Called when the icons for packages have been updated in the icon cache.
2649 */
2650 public void onPackageIconsUpdated(HashSet<String> updatedPackages, UserHandleCompat user) {
2651 final Callbacks callbacks = getCallback();
2652 final ArrayList<AppInfo> updatedApps = new ArrayList<>();
2653 final ArrayList<ShortcutInfo> updatedShortcuts = new ArrayList<>();
2654
2655 // If any package icon has changed (app was updated while launcher was dead),
2656 // update the corresponding shortcuts.
2657 synchronized (sBgLock) {
2658 for (ItemInfo info : sBgItemsIdMap) {
2659 if (info instanceof ShortcutInfo && user.equals(info.user)
2660 && info.itemType == LauncherSettings.Favorites.ITEM_TYPE_APPLICATION) {
2661 ShortcutInfo si = (ShortcutInfo) info;
2662 ComponentName cn = si.getTargetComponent();
2663 if (cn != null && updatedPackages.contains(cn.getPackageName())) {
2664 si.updateIcon(mIconCache);
2665 updatedShortcuts.add(si);
2666 }
2667 }
2668 }
2669 mBgAllAppsList.updateIconsAndLabels(updatedPackages, user, updatedApps);
2670 }
2671
2672 if (!updatedShortcuts.isEmpty()) {
2673 final UserHandleCompat userFinal = user;
2674 mHandler.post(new Runnable() {
2675
2676 public void run() {
2677 Callbacks cb = getCallback();
2678 if (cb != null && callbacks == cb) {
2679 cb.bindShortcutsChanged(updatedShortcuts,
2680 new ArrayList<ShortcutInfo>(), userFinal);
2681 }
2682 }
2683 });
2684 }
2685
2686 if (!updatedApps.isEmpty()) {
2687 mHandler.post(new Runnable() {
2688
2689 public void run() {
2690 Callbacks cb = getCallback();
2691 if (cb != null && callbacks == cb) {
2692 cb.bindAppsUpdated(updatedApps);
2693 }
2694 }
2695 });
2696 }
2697 }
2698
Joe Onorato36115782010-06-17 13:28:48 -04002699 void enqueuePackageUpdated(PackageUpdatedTask task) {
Brad Fitzpatrick700889f2010-10-11 09:40:44 -07002700 sWorker.post(task);
Joe Onorato36115782010-06-17 13:28:48 -04002701 }
2702
Adam Cohen091440a2015-03-18 14:16:05 -07002703 @Thunk class AppsAvailabilityCheck extends BroadcastReceiver {
Sunny Goyalf599ccf2014-07-08 13:01:29 -07002704
2705 @Override
2706 public void onReceive(Context context, Intent intent) {
2707 synchronized (sBgLock) {
2708 final LauncherAppsCompat launcherApps = LauncherAppsCompat
2709 .getInstance(mApp.getContext());
Sunny Goyal1a745e82014-10-02 15:58:31 -07002710 final PackageManager manager = context.getPackageManager();
2711 final ArrayList<String> packagesRemoved = new ArrayList<String>();
2712 final ArrayList<String> packagesUnavailable = new ArrayList<String>();
Sunny Goyalf599ccf2014-07-08 13:01:29 -07002713 for (Entry<UserHandleCompat, HashSet<String>> entry : sPendingPackages.entrySet()) {
2714 UserHandleCompat user = entry.getKey();
Sunny Goyal1a745e82014-10-02 15:58:31 -07002715 packagesRemoved.clear();
2716 packagesUnavailable.clear();
Sunny Goyalf599ccf2014-07-08 13:01:29 -07002717 for (String pkg : entry.getValue()) {
2718 if (!launcherApps.isPackageEnabledForProfile(pkg, user)) {
Sunny Goyald09c3702016-04-06 16:18:20 -07002719 if (PackageManagerHelper.isAppOnSdcard(manager, pkg)) {
Sunny Goyal1a745e82014-10-02 15:58:31 -07002720 packagesUnavailable.add(pkg);
2721 } else {
Sunny Goyal1a745e82014-10-02 15:58:31 -07002722 packagesRemoved.add(pkg);
2723 }
Sunny Goyalf599ccf2014-07-08 13:01:29 -07002724 }
2725 }
2726 if (!packagesRemoved.isEmpty()) {
2727 enqueuePackageUpdated(new PackageUpdatedTask(PackageUpdatedTask.OP_REMOVE,
2728 packagesRemoved.toArray(new String[packagesRemoved.size()]), user));
2729 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07002730 if (!packagesUnavailable.isEmpty()) {
2731 enqueuePackageUpdated(new PackageUpdatedTask(PackageUpdatedTask.OP_UNAVAILABLE,
2732 packagesUnavailable.toArray(new String[packagesUnavailable.size()]), user));
2733 }
Sunny Goyalf599ccf2014-07-08 13:01:29 -07002734 }
Sunny Goyal34942622014-08-29 17:20:55 -07002735 sPendingPackages.clear();
Sunny Goyalf599ccf2014-07-08 13:01:29 -07002736 }
2737 }
2738 }
2739
Joe Onorato36115782010-06-17 13:28:48 -04002740 private class PackageUpdatedTask implements Runnable {
2741 int mOp;
2742 String[] mPackages;
Kenny Guyed131872014-04-30 03:02:21 +01002743 UserHandleCompat mUser;
Joe Onorato36115782010-06-17 13:28:48 -04002744
2745 public static final int OP_NONE = 0;
2746 public static final int OP_ADD = 1;
2747 public static final int OP_UPDATE = 2;
2748 public static final int OP_REMOVE = 3; // uninstlled
2749 public static final int OP_UNAVAILABLE = 4; // external media unmounted
Kenny Guy44cba692016-01-21 19:50:02 +00002750 public static final int OP_SUSPEND = 5; // package suspended
2751 public static final int OP_UNSUSPEND = 6; // package unsuspended
Sunny Goyalda891c12016-03-18 18:29:24 -07002752 public static final int OP_USER_AVAILABILITY_CHANGE = 7; // user available/unavailable
Joe Onorato36115782010-06-17 13:28:48 -04002753
Kenny Guyed131872014-04-30 03:02:21 +01002754 public PackageUpdatedTask(int op, String[] packages, UserHandleCompat user) {
Joe Onorato36115782010-06-17 13:28:48 -04002755 mOp = op;
2756 mPackages = packages;
Kenny Guyed131872014-04-30 03:02:21 +01002757 mUser = user;
Joe Onorato36115782010-06-17 13:28:48 -04002758 }
2759
2760 public void run() {
Sunny Goyalc905efc2015-05-06 09:54:53 -07002761 if (!mHasLoaderCompletedOnce) {
2762 // Loader has not yet run.
2763 return;
2764 }
Daniel Sandlercc8befa2013-06-11 14:45:48 -04002765 final Context context = mApp.getContext();
Joe Onorato36115782010-06-17 13:28:48 -04002766
2767 final String[] packages = mPackages;
2768 final int N = packages.length;
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07002769 FlagOp flagOp = FlagOp.NO_OP;
Sunny Goyalda891c12016-03-18 18:29:24 -07002770 StringFilter pkgFilter = StringFilter.of(new HashSet<>(Arrays.asList(packages)));
Joe Onorato36115782010-06-17 13:28:48 -04002771 switch (mOp) {
Sunny Goyal18bf8e22015-04-08 18:13:46 -07002772 case OP_ADD: {
Joe Onorato36115782010-06-17 13:28:48 -04002773 for (int i=0; i<N; i++) {
2774 if (DEBUG_LOADERS) Log.d(TAG, "mAllAppsList.addPackage " + packages[i]);
Sunny Goyal4fbc3822015-02-18 16:46:50 -08002775 mIconCache.updateIconsForPkg(packages[i], mUser);
Kenny Guyed131872014-04-30 03:02:21 +01002776 mBgAllAppsList.addPackage(context, packages[i], mUser);
Joe Onorato36115782010-06-17 13:28:48 -04002777 }
Sunny Goyale0f58d72014-11-10 18:05:31 -08002778
Sunny Goyal18bf8e22015-04-08 18:13:46 -07002779 ManagedProfileHeuristic heuristic = ManagedProfileHeuristic.get(context, mUser);
2780 if (heuristic != null) {
2781 heuristic.processPackageAdd(mPackages);
Sunny Goyale0f58d72014-11-10 18:05:31 -08002782 }
Joe Onorato36115782010-06-17 13:28:48 -04002783 break;
Sunny Goyal18bf8e22015-04-08 18:13:46 -07002784 }
Joe Onorato36115782010-06-17 13:28:48 -04002785 case OP_UPDATE:
2786 for (int i=0; i<N; i++) {
2787 if (DEBUG_LOADERS) Log.d(TAG, "mAllAppsList.updatePackage " + packages[i]);
Sunny Goyal4fbc3822015-02-18 16:46:50 -08002788 mIconCache.updateIconsForPkg(packages[i], mUser);
Kenny Guyed131872014-04-30 03:02:21 +01002789 mBgAllAppsList.updatePackage(context, packages[i], mUser);
Sunny Goyal5b0e6692015-03-19 14:31:19 -07002790 mApp.getWidgetCache().removePackage(packages[i], mUser);
Joe Onorato36115782010-06-17 13:28:48 -04002791 }
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07002792 // Since package was just updated, the target must be available now.
2793 flagOp = FlagOp.removeFlag(ShortcutInfo.FLAG_DISABLED_NOT_AVAILABLE);
Joe Onorato36115782010-06-17 13:28:48 -04002794 break;
Sunny Goyal18bf8e22015-04-08 18:13:46 -07002795 case OP_REMOVE: {
2796 ManagedProfileHeuristic heuristic = ManagedProfileHeuristic.get(context, mUser);
2797 if (heuristic != null) {
2798 heuristic.processPackageRemoved(mPackages);
Sunny Goyale0f58d72014-11-10 18:05:31 -08002799 }
Joe Onorato36115782010-06-17 13:28:48 -04002800 for (int i=0; i<N; i++) {
2801 if (DEBUG_LOADERS) Log.d(TAG, "mAllAppsList.removePackage " + packages[i]);
Sunny Goyal4fbc3822015-02-18 16:46:50 -08002802 mIconCache.removeIconsForPkg(packages[i], mUser);
2803 }
2804 // Fall through
Sunny Goyal18bf8e22015-04-08 18:13:46 -07002805 }
Sunny Goyal4fbc3822015-02-18 16:46:50 -08002806 case OP_UNAVAILABLE:
2807 for (int i=0; i<N; i++) {
2808 if (DEBUG_LOADERS) Log.d(TAG, "mAllAppsList.removePackage " + packages[i]);
2809 mBgAllAppsList.removePackage(packages[i], mUser);
Sunny Goyal5b0e6692015-03-19 14:31:19 -07002810 mApp.getWidgetCache().removePackage(packages[i], mUser);
Joe Onorato36115782010-06-17 13:28:48 -04002811 }
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07002812 flagOp = FlagOp.addFlag(ShortcutInfo.FLAG_DISABLED_NOT_AVAILABLE);
Joe Onorato36115782010-06-17 13:28:48 -04002813 break;
Kenny Guy44cba692016-01-21 19:50:02 +00002814 case OP_SUSPEND:
2815 case OP_UNSUSPEND:
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07002816 flagOp = mOp == OP_SUSPEND ?
2817 FlagOp.addFlag(ShortcutInfo.FLAG_DISABLED_SUSPENDED) :
2818 FlagOp.removeFlag(ShortcutInfo.FLAG_DISABLED_SUSPENDED);
Sunny Goyal17763cb2016-03-24 13:53:22 -07002819 if (DEBUG_LOADERS) Log.d(TAG, "mAllAppsList.(un)suspend " + N);
Sunny Goyalda891c12016-03-18 18:29:24 -07002820 mBgAllAppsList.updatePackageFlags(pkgFilter, mUser, flagOp);
2821 break;
2822 case OP_USER_AVAILABILITY_CHANGE:
2823 flagOp = UserManagerCompat.getInstance(context).isQuietModeEnabled(mUser)
2824 ? FlagOp.addFlag(ShortcutInfo.FLAG_DISABLED_QUIET_USER)
2825 : FlagOp.removeFlag(ShortcutInfo.FLAG_DISABLED_QUIET_USER);
2826 // We want to update all packages for this user.
2827 pkgFilter = StringFilter.matchesAll();
2828 mBgAllAppsList.updatePackageFlags(pkgFilter, mUser, flagOp);
Kenny Guy44cba692016-01-21 19:50:02 +00002829 break;
Joe Onorato36115782010-06-17 13:28:48 -04002830 }
2831
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002832 ArrayList<AppInfo> added = null;
2833 ArrayList<AppInfo> modified = null;
2834 final ArrayList<AppInfo> removedApps = new ArrayList<AppInfo>();
Joe Onorato36115782010-06-17 13:28:48 -04002835
Adam Cohen487f7dd2012-06-28 18:12:10 -07002836 if (mBgAllAppsList.added.size() > 0) {
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07002837 added = new ArrayList<>(mBgAllAppsList.added);
Winson Chung5d55f332012-07-16 20:45:03 -07002838 mBgAllAppsList.added.clear();
Joe Onorato36115782010-06-17 13:28:48 -04002839 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07002840 if (mBgAllAppsList.modified.size() > 0) {
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07002841 modified = new ArrayList<>(mBgAllAppsList.modified);
Winson Chung5d55f332012-07-16 20:45:03 -07002842 mBgAllAppsList.modified.clear();
Joe Onorato36115782010-06-17 13:28:48 -04002843 }
Winson Chung5d55f332012-07-16 20:45:03 -07002844 if (mBgAllAppsList.removed.size() > 0) {
Winson Chung83892cc2013-05-01 16:53:33 -07002845 removedApps.addAll(mBgAllAppsList.removed);
Winson Chung5d55f332012-07-16 20:45:03 -07002846 mBgAllAppsList.removed.clear();
Winson Chungcd810732012-06-18 16:45:43 -07002847 }
2848
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07002849 final HashMap<ComponentName, AppInfo> addedOrUpdatedApps = new HashMap<>();
Sunny Goyal4390ace2014-10-13 11:33:11 -07002850
Joe Onorato36115782010-06-17 13:28:48 -04002851 if (added != null) {
Sunny Goyalc9acdd52015-02-26 12:34:42 -08002852 addAppsToAllApps(context, added);
Sunny Goyal4390ace2014-10-13 11:33:11 -07002853 for (AppInfo ai : added) {
2854 addedOrUpdatedApps.put(ai.componentName, ai);
2855 }
Joe Onorato36115782010-06-17 13:28:48 -04002856 }
Adam Cohen76a47a12014-02-05 11:47:43 -08002857
Joe Onorato36115782010-06-17 13:28:48 -04002858 if (modified != null) {
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07002859 final Callbacks callbacks = getCallback();
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002860 final ArrayList<AppInfo> modifiedFinal = modified;
Sunny Goyal4390ace2014-10-13 11:33:11 -07002861 for (AppInfo ai : modified) {
2862 addedOrUpdatedApps.put(ai.componentName, ai);
Winson Chung64359a52013-07-08 17:17:08 -07002863 }
2864
Joe Onorato36115782010-06-17 13:28:48 -04002865 mHandler.post(new Runnable() {
2866 public void run() {
Sunny Goyale0f58d72014-11-10 18:05:31 -08002867 Callbacks cb = getCallback();
Winson Chungcd2b0142011-06-08 16:02:26 -07002868 if (callbacks == cb && cb != null) {
Joe Onorato36115782010-06-17 13:28:48 -04002869 callbacks.bindAppsUpdated(modifiedFinal);
2870 }
2871 }
2872 });
2873 }
Winson Chung83892cc2013-05-01 16:53:33 -07002874
Sunny Goyal4390ace2014-10-13 11:33:11 -07002875 // Update shortcut infos
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07002876 if (mOp == OP_ADD || flagOp != FlagOp.NO_OP) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07002877 final ArrayList<ShortcutInfo> updatedShortcuts = new ArrayList<ShortcutInfo>();
2878 final ArrayList<ShortcutInfo> removedShortcuts = new ArrayList<ShortcutInfo>();
2879 final ArrayList<LauncherAppWidgetInfo> widgets = new ArrayList<LauncherAppWidgetInfo>();
2880
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07002881 synchronized (sBgLock) {
Sunny Goyale2df0622015-04-24 11:27:00 -07002882 for (ItemInfo info : sBgItemsIdMap) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07002883 if (info instanceof ShortcutInfo && mUser.equals(info.user)) {
2884 ShortcutInfo si = (ShortcutInfo) info;
Sunny Goyal4390ace2014-10-13 11:33:11 -07002885 boolean infoUpdated = false;
2886 boolean shortcutUpdated = false;
2887
2888 // Update shortcuts which use iconResource.
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07002889 if ((si.iconResource != null)
Sunny Goyalda891c12016-03-18 18:29:24 -07002890 && pkgFilter.matches(si.iconResource.packageName)) {
Sunny Goyal53d7ee42015-05-22 12:25:45 -07002891 Bitmap icon = Utilities.createIconBitmap(
2892 si.iconResource.packageName,
2893 si.iconResource.resourceName, context);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07002894 if (icon != null) {
2895 si.setIcon(icon);
2896 si.usingFallbackIcon = false;
Sunny Goyal4390ace2014-10-13 11:33:11 -07002897 infoUpdated = true;
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07002898 }
2899 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07002900
2901 ComponentName cn = si.getTargetComponent();
Sunny Goyalda891c12016-03-18 18:29:24 -07002902 if (cn != null && pkgFilter.matches(cn.getPackageName())) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07002903 AppInfo appInfo = addedOrUpdatedApps.get(cn);
2904
2905 if (si.isPromise()) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07002906 if (si.hasStatusFlag(ShortcutInfo.FLAG_AUTOINTALL_ICON)) {
2907 // Auto install icon
2908 PackageManager pm = context.getPackageManager();
2909 ResolveInfo matched = pm.resolveActivity(
2910 new Intent(Intent.ACTION_MAIN)
2911 .setComponent(cn).addCategory(Intent.CATEGORY_LAUNCHER),
2912 PackageManager.MATCH_DEFAULT_ONLY);
2913 if (matched == null) {
2914 // Try to find the best match activity.
2915 Intent intent = pm.getLaunchIntentForPackage(
2916 cn.getPackageName());
2917 if (intent != null) {
2918 cn = intent.getComponent();
2919 appInfo = addedOrUpdatedApps.get(cn);
2920 }
2921
2922 if ((intent == null) || (appInfo == null)) {
2923 removedShortcuts.add(si);
2924 continue;
2925 }
2926 si.promisedIntent = intent;
2927 }
2928 }
2929
2930 // Restore the shortcut.
Sunny Goyalfa401a12015-04-10 13:45:42 -07002931 if (appInfo != null) {
2932 si.flags = appInfo.flags;
2933 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07002934
Sunny Goyal756adbc2015-04-16 15:20:51 -07002935 si.intent = si.promisedIntent;
2936 si.promisedIntent = null;
2937 si.status = ShortcutInfo.DEFAULT;
Sunny Goyal4390ace2014-10-13 11:33:11 -07002938 infoUpdated = true;
2939 si.updateIcon(mIconCache);
2940 }
2941
2942 if (appInfo != null && Intent.ACTION_MAIN.equals(si.intent.getAction())
2943 && si.itemType == LauncherSettings.Favorites.ITEM_TYPE_APPLICATION) {
2944 si.updateIcon(mIconCache);
Winson Chung82b016c2015-05-08 17:00:10 -07002945 si.title = Utilities.trim(appInfo.title);
Sunny Goyal4390ace2014-10-13 11:33:11 -07002946 si.contentDescription = appInfo.contentDescription;
2947 infoUpdated = true;
2948 }
2949
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07002950 int oldDisabledFlags = si.isDisabled;
2951 si.isDisabled = flagOp.apply(si.isDisabled);
2952 if (si.isDisabled != oldDisabledFlags) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07002953 shortcutUpdated = true;
2954 }
2955 }
2956
2957 if (infoUpdated || shortcutUpdated) {
2958 updatedShortcuts.add(si);
2959 }
2960 if (infoUpdated) {
2961 updateItemInDatabase(context, si);
2962 }
Sunny Goyalda891c12016-03-18 18:29:24 -07002963 } else if (info instanceof LauncherAppWidgetInfo && mOp == OP_ADD) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07002964 LauncherAppWidgetInfo widgetInfo = (LauncherAppWidgetInfo) info;
2965 if (mUser.equals(widgetInfo.user)
2966 && widgetInfo.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY)
Sunny Goyalda891c12016-03-18 18:29:24 -07002967 && pkgFilter.matches(widgetInfo.providerName.getPackageName())) {
Sunny Goyal53f96722015-07-13 19:54:53 -07002968 widgetInfo.restoreStatus &=
2969 ~LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY &
2970 ~LauncherAppWidgetInfo.FLAG_RESTORE_STARTED;
Sunny Goyal84b4adc2015-08-12 15:12:16 -07002971
2972 // adding this flag ensures that launcher shows 'click to setup'
2973 // if the widget has a config activity. In case there is no config
2974 // activity, it will be marked as 'restored' during bind.
2975 widgetInfo.restoreStatus |= LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
2976
Sunny Goyal4390ace2014-10-13 11:33:11 -07002977 widgets.add(widgetInfo);
2978 updateItemInDatabase(context, widgetInfo);
2979 }
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07002980 }
2981 }
2982 }
2983
Sunny Goyal4390ace2014-10-13 11:33:11 -07002984 if (!updatedShortcuts.isEmpty() || !removedShortcuts.isEmpty()) {
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07002985 final Callbacks callbacks = getCallback();
Sunny Goyal4390ace2014-10-13 11:33:11 -07002986 mHandler.post(new Runnable() {
2987
2988 public void run() {
Sunny Goyale0f58d72014-11-10 18:05:31 -08002989 Callbacks cb = getCallback();
Sunny Goyal4390ace2014-10-13 11:33:11 -07002990 if (callbacks == cb && cb != null) {
2991 callbacks.bindShortcutsChanged(
2992 updatedShortcuts, removedShortcuts, mUser);
2993 }
2994 }
2995 });
2996 if (!removedShortcuts.isEmpty()) {
2997 deleteItemsFromDatabase(context, removedShortcuts);
2998 }
2999 }
3000 if (!widgets.isEmpty()) {
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07003001 final Callbacks callbacks = getCallback();
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07003002 mHandler.post(new Runnable() {
3003 public void run() {
Sunny Goyale0f58d72014-11-10 18:05:31 -08003004 Callbacks cb = getCallback();
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07003005 if (callbacks == cb && cb != null) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07003006 callbacks.bindWidgetsRestored(widgets);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07003007 }
3008 }
3009 });
3010 }
3011 }
3012
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07003013 final HashSet<String> removedPackages = new HashSet<>();
3014 final HashSet<ComponentName> removedComponents = new HashSet<>();
3015 if (mOp == OP_REMOVE) {
Winson Chungdf95eb12013-10-16 14:57:07 -07003016 // Mark all packages in the broadcast to be removed
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07003017 Collections.addAll(removedPackages, packages);
3018
3019 // No need to update the removedComponents as
3020 // removedPackages is a super-set of removedComponents
Winson Chungdf95eb12013-10-16 14:57:07 -07003021 } else if (mOp == OP_UPDATE) {
3022 // Mark disabled packages in the broadcast to be removed
Winson Chungdf95eb12013-10-16 14:57:07 -07003023 for (int i=0; i<N; i++) {
Kenny Guyed131872014-04-30 03:02:21 +01003024 if (isPackageDisabled(context, packages[i], mUser)) {
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07003025 removedPackages.add(packages[i]);
Winson Chung64359a52013-07-08 17:17:08 -07003026 }
3027 }
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07003028
3029 // Update removedComponents as some components can get removed during package update
3030 for (AppInfo info : removedApps) {
3031 removedComponents.add(info.componentName);
3032 }
Winson Chungdf95eb12013-10-16 14:57:07 -07003033 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07003034
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07003035 if (!removedPackages.isEmpty() || !removedComponents.isEmpty()) {
3036 for (String pn : removedPackages) {
3037 deletePackageFromDatabase(context, pn, mUser);
3038 }
3039 for (ComponentName cn : removedComponents) {
3040 deleteItemsFromDatabase(context, getItemInfoForComponentName(cn, mUser));
Sunny Goyal1a745e82014-10-02 15:58:31 -07003041 }
3042
Winson Chungdf95eb12013-10-16 14:57:07 -07003043 // Remove any queued items from the install queue
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07003044 InstallShortcutReceiver.removeFromInstallQueue(context, removedPackages, mUser);
3045
Winson Chungdf95eb12013-10-16 14:57:07 -07003046 // Call the components-removed callback
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07003047 final Callbacks callbacks = getCallback();
Joe Onorato36115782010-06-17 13:28:48 -04003048 mHandler.post(new Runnable() {
3049 public void run() {
Sunny Goyale0f58d72014-11-10 18:05:31 -08003050 Callbacks cb = getCallback();
Winson Chungcd2b0142011-06-08 16:02:26 -07003051 if (callbacks == cb && cb != null) {
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07003052 callbacks.bindWorkspaceComponentsRemoved(
3053 removedPackages, removedComponents, mUser);
3054 }
3055 }
3056 });
3057 }
3058
3059 if (!removedApps.isEmpty()) {
3060 // Remove corresponding apps from All-Apps
3061 final Callbacks callbacks = getCallback();
3062 mHandler.post(new Runnable() {
3063 public void run() {
3064 Callbacks cb = getCallback();
3065 if (callbacks == cb && cb != null) {
3066 callbacks.bindAppInfosRemoved(removedApps);
Joe Onorato36115782010-06-17 13:28:48 -04003067 }
3068 }
3069 });
Joe Onoratobe386092009-11-17 17:32:16 -08003070 }
Hyunyoung Song227239e2015-05-04 18:17:35 -07003071
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003072 // Notify launcher of widget update. From marshmallow onwards we use AppWidgetHost to
3073 // get widget update signals.
3074 if (!Utilities.ATLEAST_MARSHMALLOW &&
3075 (mOp == OP_ADD || mOp == OP_REMOVE || mOp == OP_UPDATE)) {
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07003076 final Callbacks callbacks = getCallback();
Hyunyoung Songd4af1482015-04-20 20:40:03 -07003077 mHandler.post(new Runnable() {
Hyunyoung Songd4af1482015-04-20 20:40:03 -07003078 public void run() {
3079 Callbacks cb = getCallback();
3080 if (callbacks == cb && cb != null) {
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003081 callbacks.notifyWidgetProvidersChanged();
Hyunyoung Songd4af1482015-04-20 20:40:03 -07003082 }
3083 }
3084 });
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003085 }
3086 }
3087 }
3088
3089 private void bindWidgetsModel(final Callbacks callbacks, final WidgetsModel model) {
3090 mHandler.post(new Runnable() {
3091 @Override
3092 public void run() {
3093 Callbacks cb = getCallback();
3094 if (callbacks == cb && cb != null) {
3095 callbacks.bindWidgetsModel(model);
3096 }
Hyunyoung Songd4af1482015-04-20 20:40:03 -07003097 }
3098 });
3099 }
3100
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003101 public void refreshAndBindWidgetsAndShortcuts(
3102 final Callbacks callbacks, final boolean bindFirst) {
3103 runOnWorkerThread(new Runnable() {
3104 @Override
3105 public void run() {
3106 if (bindFirst && !mBgWidgetsModel.isEmpty()) {
3107 bindWidgetsModel(callbacks, mBgWidgetsModel.clone());
Sunny Goyal31860582015-09-18 08:38:57 -07003108 }
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003109 final WidgetsModel model = mBgWidgetsModel.updateAndClone(mApp.getContext());
3110 bindWidgetsModel(callbacks, model);
3111 // update the Widget entries inside DB on the worker thread.
3112 LauncherAppState.getInstance().getWidgetCache().removeObsoletePreviews(
3113 model.getRawList());
Sunny Goyal31860582015-09-18 08:38:57 -07003114 }
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003115 });
Michael Jurkac402cd92013-05-20 15:49:32 +02003116 }
3117
Adam Cohen091440a2015-03-18 14:16:05 -07003118 @Thunk static boolean isPackageDisabled(Context context, String packageName,
Kenny Guyed131872014-04-30 03:02:21 +01003119 UserHandleCompat user) {
3120 final LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(context);
3121 return !launcherApps.isPackageEnabledForProfile(packageName, user);
Winson Chungdf95eb12013-10-16 14:57:07 -07003122 }
Adam Cohen556f6132014-01-15 15:18:08 -08003123
Kenny Guyed131872014-04-30 03:02:21 +01003124 public static boolean isValidPackageActivity(Context context, ComponentName cn,
3125 UserHandleCompat user) {
Winson Chungee055712013-07-30 14:46:24 -07003126 if (cn == null) {
3127 return false;
3128 }
Kenny Guyed131872014-04-30 03:02:21 +01003129 final LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(context);
3130 if (!launcherApps.isPackageEnabledForProfile(cn.getPackageName(), user)) {
Winson Chungdf95eb12013-10-16 14:57:07 -07003131 return false;
3132 }
Kenny Guyed131872014-04-30 03:02:21 +01003133 return launcherApps.isActivityEnabledForProfile(cn, user);
Winson Chungee055712013-07-30 14:46:24 -07003134 }
3135
Adam Cohena28b78e2014-05-20 17:03:04 -07003136 public static boolean isValidPackage(Context context, String packageName,
3137 UserHandleCompat user) {
3138 if (packageName == null) {
3139 return false;
3140 }
3141 final LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(context);
3142 return launcherApps.isPackageEnabledForProfile(packageName, user);
3143 }
3144
Joe Onorato9c1289c2009-08-17 11:03:03 -04003145 /**
Chris Wrenf4d08112014-01-16 18:13:56 -05003146 * Make an ShortcutInfo object for a restored application or shortcut item that points
3147 * to a package that is not yet installed on the system.
3148 */
Sunny Goyal4e5cc642015-06-25 16:37:44 -07003149 public ShortcutInfo getRestoredItemInfo(Cursor c, int titleIndex, Intent intent,
Sunny Goyalc22841b2015-07-13 19:59:50 -07003150 int promiseType, int itemType, CursorIconInfo iconInfo, Context context) {
Chris Wrenf4d08112014-01-16 18:13:56 -05003151 final ShortcutInfo info = new ShortcutInfo();
Kenny Guyed131872014-04-30 03:02:21 +01003152 info.user = UserHandleCompat.myUserHandle();
Sunny Goyal4e5cc642015-06-25 16:37:44 -07003153
3154 Bitmap icon = iconInfo.loadIcon(c, info, context);
3155 // the fallback icon
3156 if (icon == null) {
3157 mIconCache.getTitleAndIcon(info, intent, info.user, false /* useLowResIcon */);
3158 } else {
3159 info.setIcon(icon);
3160 }
Sunny Goyal34942622014-08-29 17:20:55 -07003161
3162 if ((promiseType & ShortcutInfo.FLAG_RESTORED_ICON) != 0) {
Sunny Goyal4e5cc642015-06-25 16:37:44 -07003163 String title = (c != null) ? c.getString(titleIndex) : null;
Sunny Goyal34942622014-08-29 17:20:55 -07003164 if (!TextUtils.isEmpty(title)) {
Winson Chung82b016c2015-05-08 17:00:10 -07003165 info.title = Utilities.trim(title);
Sunny Goyal34942622014-08-29 17:20:55 -07003166 }
Sunny Goyal34942622014-08-29 17:20:55 -07003167 } else if ((promiseType & ShortcutInfo.FLAG_AUTOINTALL_ICON) != 0) {
3168 if (TextUtils.isEmpty(info.title)) {
Sunny Goyal4e5cc642015-06-25 16:37:44 -07003169 info.title = (c != null) ? Utilities.trim(c.getString(titleIndex)) : "";
Sunny Goyal34942622014-08-29 17:20:55 -07003170 }
Sunny Goyal34942622014-08-29 17:20:55 -07003171 } else {
3172 throw new InvalidParameterException("Invalid restoreType " + promiseType);
3173 }
3174
Winson Chung82b016c2015-05-08 17:00:10 -07003175 info.contentDescription = mUserManager.getBadgedLabelForUser(info.title, info.user);
Sunny Goyalc22841b2015-07-13 19:59:50 -07003176 info.itemType = itemType;
Sunny Goyal34942622014-08-29 17:20:55 -07003177 info.promisedIntent = intent;
Sunny Goyal756adbc2015-04-16 15:20:51 -07003178 info.status = promiseType;
Chris Wrenf4d08112014-01-16 18:13:56 -05003179 return info;
3180 }
3181
3182 /**
3183 * Make an Intent object for a restored application or shortcut item that points
3184 * to the market page for the item.
3185 */
Adam Cohen091440a2015-03-18 14:16:05 -07003186 @Thunk Intent getRestoredItemIntent(Cursor c, Context context, Intent intent) {
Chris Wrenf4d08112014-01-16 18:13:56 -05003187 ComponentName componentName = intent.getComponent();
Sunny Goyale7b8cd92014-08-27 14:04:33 -07003188 return getMarketIntent(componentName.getPackageName());
3189 }
3190
3191 static Intent getMarketIntent(String packageName) {
3192 return new Intent(Intent.ACTION_VIEW)
3193 .setData(new Uri.Builder()
Chris Wrenf4d08112014-01-16 18:13:56 -05003194 .scheme("market")
3195 .authority("details")
Sunny Goyale7b8cd92014-08-27 14:04:33 -07003196 .appendQueryParameter("id", packageName)
3197 .build());
Chris Wrenf4d08112014-01-16 18:13:56 -05003198 }
3199
3200 /**
Joe Onorato56d82912010-03-07 14:32:10 -05003201 * Make an ShortcutInfo object for a shortcut that is an application.
3202 *
3203 * If c is not null, then it will be used to fill in missing data like the title and icon.
3204 */
Sunny Goyald09c3702016-04-06 16:18:20 -07003205 public ShortcutInfo getAppShortcutInfo(Intent intent,
Kenny Guyed131872014-04-30 03:02:21 +01003206 UserHandleCompat user, Context context, Cursor c, int iconIndex, int titleIndex,
Sunny Goyal34b65272015-03-11 16:56:52 -07003207 boolean allowMissingTarget, boolean useLowResIcon) {
Kenny Guyed131872014-04-30 03:02:21 +01003208 if (user == null) {
3209 Log.d(TAG, "Null user found in getShortcutInfo");
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003210 return null;
3211 }
3212
Kenny Guyed131872014-04-30 03:02:21 +01003213 ComponentName componentName = intent.getComponent();
3214 if (componentName == null) {
Sunny Goyalb740f592015-12-17 23:22:42 -08003215 Log.d(TAG, "Missing component found in getShortcutInfo");
Kenny Guyed131872014-04-30 03:02:21 +01003216 return null;
3217 }
3218
3219 Intent newIntent = new Intent(intent.getAction(), null);
3220 newIntent.addCategory(Intent.CATEGORY_LAUNCHER);
3221 newIntent.setComponent(componentName);
3222 LauncherActivityInfoCompat lai = mLauncherApps.resolveActivity(newIntent, user);
Sunny Goyalf599ccf2014-07-08 13:01:29 -07003223 if ((lai == null) && !allowMissingTarget) {
Kenny Guyed131872014-04-30 03:02:21 +01003224 Log.d(TAG, "Missing activity found in getShortcutInfo: " + componentName);
3225 return null;
3226 }
3227
3228 final ShortcutInfo info = new ShortcutInfo();
Sunny Goyal34b65272015-03-11 16:56:52 -07003229 mIconCache.getTitleAndIcon(info, componentName, lai, user, false, useLowResIcon);
Sunny Goyal4fbc3822015-02-18 16:46:50 -08003230 if (mIconCache.isDefaultIcon(info.getIcon(mIconCache), user) && c != null) {
3231 Bitmap icon = Utilities.createIconBitmap(c, iconIndex, context);
3232 info.setIcon(icon == null ? mIconCache.getDefaultIcon(user) : icon);
Kenny Guyed131872014-04-30 03:02:21 +01003233 }
3234
Sunny Goyald09c3702016-04-06 16:18:20 -07003235 if (lai != null && PackageManagerHelper.isAppSuspended(lai.getApplicationInfo())) {
3236 info.isDisabled = ShortcutInfo.FLAG_DISABLED_SUSPENDED;
3237 }
3238
Joe Onorato56d82912010-03-07 14:32:10 -05003239 // from the db
Sunny Goyal4fbc3822015-02-18 16:46:50 -08003240 if (TextUtils.isEmpty(info.title) && c != null) {
Winson Chung82b016c2015-05-08 17:00:10 -07003241 info.title = Utilities.trim(c.getString(titleIndex));
Joe Onorato56d82912010-03-07 14:32:10 -05003242 }
Sunny Goyal4fbc3822015-02-18 16:46:50 -08003243
Joe Onorato56d82912010-03-07 14:32:10 -05003244 // fall back to the class name of the activity
3245 if (info.title == null) {
3246 info.title = componentName.getClassName();
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003247 }
Sunny Goyal4fbc3822015-02-18 16:46:50 -08003248
Joe Onorato9c1289c2009-08-17 11:03:03 -04003249 info.itemType = LauncherSettings.Favorites.ITEM_TYPE_APPLICATION;
Kenny Guyed131872014-04-30 03:02:21 +01003250 info.user = user;
Winson Chung82b016c2015-05-08 17:00:10 -07003251 info.contentDescription = mUserManager.getBadgedLabelForUser(info.title, info.user);
Sunny Goyalfa401a12015-04-10 13:45:42 -07003252 if (lai != null) {
3253 info.flags = AppInfo.initFlags(lai);
3254 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003255 return info;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003256 }
The Android Open Source Projectbc219c32009-03-09 11:52:14 -07003257
Sunny Goyale2df0622015-04-24 11:27:00 -07003258 static ArrayList<ItemInfo> filterItemInfos(Iterable<ItemInfo> infos,
Winson Chung64359a52013-07-08 17:17:08 -07003259 ItemInfoFilter f) {
3260 HashSet<ItemInfo> filtered = new HashSet<ItemInfo>();
3261 for (ItemInfo i : infos) {
3262 if (i instanceof ShortcutInfo) {
3263 ShortcutInfo info = (ShortcutInfo) i;
Sunny Goyal34942622014-08-29 17:20:55 -07003264 ComponentName cn = info.getTargetComponent();
Winson Chung64359a52013-07-08 17:17:08 -07003265 if (cn != null && f.filterItem(null, info, cn)) {
3266 filtered.add(info);
3267 }
3268 } else if (i instanceof FolderInfo) {
3269 FolderInfo info = (FolderInfo) i;
3270 for (ShortcutInfo s : info.contents) {
Sunny Goyal34942622014-08-29 17:20:55 -07003271 ComponentName cn = s.getTargetComponent();
Winson Chung64359a52013-07-08 17:17:08 -07003272 if (cn != null && f.filterItem(info, s, cn)) {
3273 filtered.add(s);
Winson Chung8a435102012-08-30 17:16:53 -07003274 }
3275 }
Winson Chung64359a52013-07-08 17:17:08 -07003276 } else if (i instanceof LauncherAppWidgetInfo) {
3277 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) i;
3278 ComponentName cn = info.providerName;
3279 if (cn != null && f.filterItem(null, info, cn)) {
3280 filtered.add(info);
3281 }
Winson Chung8a435102012-08-30 17:16:53 -07003282 }
3283 }
Winson Chung64359a52013-07-08 17:17:08 -07003284 return new ArrayList<ItemInfo>(filtered);
3285 }
3286
Adam Cohen091440a2015-03-18 14:16:05 -07003287 @Thunk ArrayList<ItemInfo> getItemInfoForComponentName(final ComponentName cname,
Kenny Guyed131872014-04-30 03:02:21 +01003288 final UserHandleCompat user) {
Winson Chung64359a52013-07-08 17:17:08 -07003289 ItemInfoFilter filter = new ItemInfoFilter() {
3290 @Override
3291 public boolean filterItem(ItemInfo parent, ItemInfo info, ComponentName cn) {
Kenny Guyed131872014-04-30 03:02:21 +01003292 if (info.user == null) {
3293 return cn.equals(cname);
3294 } else {
3295 return cn.equals(cname) && info.user.equals(user);
3296 }
Winson Chung64359a52013-07-08 17:17:08 -07003297 }
3298 };
Sunny Goyale2df0622015-04-24 11:27:00 -07003299 return filterItemInfos(sBgItemsIdMap, filter);
Winson Chung64359a52013-07-08 17:17:08 -07003300 }
3301
Sunny Goyal1a745e82014-10-02 15:58:31 -07003302 /**
Joe Onorato0589f0f2010-02-08 13:44:00 -08003303 * Make an ShortcutInfo object for a shortcut that isn't an application.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003304 */
Adam Cohen091440a2015-03-18 14:16:05 -07003305 @Thunk ShortcutInfo getShortcutInfo(Cursor c, Context context,
Sunny Goyal4e5cc642015-06-25 16:37:44 -07003306 int titleIndex, CursorIconInfo iconInfo) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07003307 final ShortcutInfo info = new ShortcutInfo();
Kenny Guyed131872014-04-30 03:02:21 +01003308 // Non-app shortcuts are only supported for current user.
3309 info.user = UserHandleCompat.myUserHandle();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003310 info.itemType = LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003311
Joe Onorato8ddc4fd2010-03-17 09:14:50 -07003312 // TODO: If there's an explicit component and we can't install that, delete it.
3313
Winson Chung82b016c2015-05-08 17:00:10 -07003314 info.title = Utilities.trim(c.getString(titleIndex));
Joe Onorato56d82912010-03-07 14:32:10 -05003315
Sunny Goyal4e5cc642015-06-25 16:37:44 -07003316 Bitmap icon = iconInfo.loadIcon(c, info, context);
3317 // the fallback icon
3318 if (icon == null) {
Kenny Guyed131872014-04-30 03:02:21 +01003319 icon = mIconCache.getDefaultIcon(info.user);
Joe Onorato56d82912010-03-07 14:32:10 -05003320 info.usingFallbackIcon = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003321 }
Joe Onoratod8d22da2010-03-11 17:59:11 -08003322 info.setIcon(icon);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003323 return info;
3324 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003325
Sunny Goyal2350bc92014-10-14 16:42:54 -07003326 ShortcutInfo infoFromShortcutIntent(Context context, Intent data) {
Joe Onorato0589f0f2010-02-08 13:44:00 -08003327 Intent intent = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_INTENT);
3328 String name = data.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
3329 Parcelable bitmap = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_ICON);
3330
Adam Cohend9198822011-11-22 16:42:47 -08003331 if (intent == null) {
3332 // If the intent is null, we can't construct a valid ShortcutInfo, so we return null
3333 Log.e(TAG, "Can't construct ShorcutInfo with null intent");
3334 return null;
3335 }
3336
Joe Onorato0589f0f2010-02-08 13:44:00 -08003337 Bitmap icon = null;
Joe Onorato0589f0f2010-02-08 13:44:00 -08003338 boolean customIcon = false;
3339 ShortcutIconResource iconResource = null;
3340
Sunny Goyal2fce90c2014-10-07 12:01:58 -07003341 if (bitmap instanceof Bitmap) {
3342 icon = Utilities.createIconBitmap((Bitmap) bitmap, context);
Joe Onorato0589f0f2010-02-08 13:44:00 -08003343 customIcon = true;
3344 } else {
3345 Parcelable extra = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07003346 if (extra instanceof ShortcutIconResource) {
3347 iconResource = (ShortcutIconResource) extra;
3348 icon = Utilities.createIconBitmap(iconResource.packageName,
Sunny Goyal53d7ee42015-05-22 12:25:45 -07003349 iconResource.resourceName, context);
Joe Onorato0589f0f2010-02-08 13:44:00 -08003350 }
3351 }
3352
Michael Jurkac9d95c52011-08-29 14:03:34 -07003353 final ShortcutInfo info = new ShortcutInfo();
Joe Onorato56d82912010-03-07 14:32:10 -05003354
Kenny Guyed131872014-04-30 03:02:21 +01003355 // Only support intents for current user for now. Intents sent from other
3356 // users wouldn't get here without intent forwarding anyway.
3357 info.user = UserHandleCompat.myUserHandle();
Joe Onorato56d82912010-03-07 14:32:10 -05003358 if (icon == null) {
Sunny Goyal2350bc92014-10-14 16:42:54 -07003359 icon = mIconCache.getDefaultIcon(info.user);
3360 info.usingFallbackIcon = true;
Joe Onorato56d82912010-03-07 14:32:10 -05003361 }
Joe Onorato0589f0f2010-02-08 13:44:00 -08003362 info.setIcon(icon);
Joe Onorato56d82912010-03-07 14:32:10 -05003363
Winson Chung82b016c2015-05-08 17:00:10 -07003364 info.title = Utilities.trim(name);
3365 info.contentDescription = mUserManager.getBadgedLabelForUser(info.title, info.user);
Joe Onorato0589f0f2010-02-08 13:44:00 -08003366 info.intent = intent;
Joe Onorato0589f0f2010-02-08 13:44:00 -08003367 info.iconResource = iconResource;
3368
3369 return info;
3370 }
3371
Joe Onorato9c1289c2009-08-17 11:03:03 -04003372 /**
Adam Cohendf2cc412011-04-27 16:56:57 -07003373 * Return an existing FolderInfo object if we have encountered this ID previously,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003374 * or make a new one.
3375 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003376 @Thunk static FolderInfo findOrMakeFolder(LongArrayMap<FolderInfo> folders, long id) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003377 // See if a placeholder was created for us already
3378 FolderInfo folderInfo = folders.get(id);
Adam Cohendf2cc412011-04-27 16:56:57 -07003379 if (folderInfo == null) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003380 // No placeholder -- create a new instance
Michael Jurkac9d95c52011-08-29 14:03:34 -07003381 folderInfo = new FolderInfo();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003382 folders.put(id, folderInfo);
3383 }
Adam Cohendf2cc412011-04-27 16:56:57 -07003384 return folderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003385 }
3386
Joe Onoratobe386092009-11-17 17:32:16 -08003387
Sunny Goyal651077b2014-06-30 14:15:31 -07003388 static boolean isValidProvider(AppWidgetProviderInfo provider) {
3389 return (provider != null) && (provider.provider != null)
3390 && (provider.provider.getPackageName() != null);
3391 }
3392
Joe Onoratobe386092009-11-17 17:32:16 -08003393 public void dumpState() {
Joe Onoratobe386092009-11-17 17:32:16 -08003394 Log.d(TAG, "mCallbacks=" + mCallbacks);
Michael Jurkaeadbfc52013-09-04 00:45:37 +02003395 AppInfo.dumpApplicationInfoList(TAG, "mAllAppsList.data", mBgAllAppsList.data);
3396 AppInfo.dumpApplicationInfoList(TAG, "mAllAppsList.added", mBgAllAppsList.added);
3397 AppInfo.dumpApplicationInfoList(TAG, "mAllAppsList.removed", mBgAllAppsList.removed);
3398 AppInfo.dumpApplicationInfoList(TAG, "mAllAppsList.modified", mBgAllAppsList.modified);
Joe Onorato36115782010-06-17 13:28:48 -04003399 if (mLoaderTask != null) {
3400 mLoaderTask.dumpState();
3401 } else {
3402 Log.d(TAG, "mLoaderTask=null");
3403 }
Joe Onoratobe386092009-11-17 17:32:16 -08003404 }
Sunny Goyale0f58d72014-11-10 18:05:31 -08003405
3406 public Callbacks getCallback() {
3407 return mCallbacks != null ? mCallbacks.get() : null;
3408 }
Sunny Goyal18bf8e22015-04-08 18:13:46 -07003409
3410 /**
3411 * @return {@link FolderInfo} if its already loaded.
3412 */
3413 public FolderInfo findFolderById(Long folderId) {
3414 synchronized (sBgLock) {
3415 return sBgFolders.get(folderId);
3416 }
3417 }
Sunny Goyal756adbc2015-04-16 15:20:51 -07003418
Sunny Goyal527c7d32015-08-28 15:19:36 -07003419 @Thunk class DeferredMainThreadExecutor implements Executor {
3420
3421 @Override
3422 public void execute(Runnable command) {
3423 runOnMainThread(command);
3424 }
3425 }
3426
Sunny Goyal756adbc2015-04-16 15:20:51 -07003427 /**
3428 * @return the looper for the worker thread which can be used to start background tasks.
3429 */
3430 public static Looper getWorkerLooper() {
3431 return sWorkerThread.getLooper();
3432 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003433}