blob: 10b8648de78bbd1c5c7c47443b87a3e54bc354b9 [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
Narayan Kamathcb1a4772011-06-28 13:46:59 +010019import android.app.SearchManager;
Romain Guy629de3e2010-01-13 12:20:59 -080020import android.appwidget.AppWidgetProviderInfo;
Sunny Goyalf599ccf2014-07-08 13:01:29 -070021import android.content.BroadcastReceiver;
22import android.content.ComponentName;
23import android.content.ContentProviderClient;
24import android.content.ContentProviderOperation;
25import android.content.ContentResolver;
26import android.content.ContentValues;
27import android.content.Context;
28import android.content.Intent;
Joe Onorato0589f0f2010-02-08 13:44:00 -080029import android.content.Intent.ShortcutIconResource;
Sunny Goyalf599ccf2014-07-08 13:01:29 -070030import android.content.IntentFilter;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080031import android.content.pm.PackageManager;
Jason Monkbbe1e242014-05-16 17:37:34 -040032import android.content.pm.ProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080033import android.content.pm.ResolveInfo;
Reena Lee93f824a2011-09-23 17:20:28 -070034import android.content.res.Configuration;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080035import android.content.res.Resources;
36import android.database.Cursor;
37import android.graphics.Bitmap;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080038import android.net.Uri;
Hyunyoung Songd4af1482015-04-20 20:40:03 -070039import android.os.Build;
Joe Onorato17a89222011-02-08 17:26:11 -080040import android.os.Environment;
Joe Onorato36115782010-06-17 13:28:48 -040041import android.os.Handler;
42import android.os.HandlerThread;
Sunny Goyal756adbc2015-04-16 15:20:51 -070043import android.os.Looper;
Joe Onorato0589f0f2010-02-08 13:44:00 -080044import android.os.Parcelable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080045import android.os.Process;
Winson Chungaafa03c2010-06-11 17:34:16 -070046import android.os.RemoteException;
Joe Onorato9c1289c2009-08-17 11:03:03 -040047import android.os.SystemClock;
Chris Wrenc3919c02013-09-18 09:48:33 -040048import android.provider.BaseColumns;
Winson Chunga90303b2013-11-15 13:05:06 -080049import android.text.TextUtils;
Winson Chungaafa03c2010-06-11 17:34:16 -070050import android.util.Log;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080051import android.util.LongSparseArray;
Winson Chungc9168342013-06-26 14:54:55 -070052import android.util.Pair;
Michael Jurka34c2e6c2013-12-13 16:07:45 +010053
Sunny Goyalffe83f12014-08-14 17:39:34 -070054import com.android.launcher3.compat.AppWidgetManagerCompat;
Kenny Guyed131872014-04-30 03:02:21 +010055import com.android.launcher3.compat.LauncherActivityInfoCompat;
56import com.android.launcher3.compat.LauncherAppsCompat;
Sunny Goyal34942622014-08-29 17:20:55 -070057import com.android.launcher3.compat.PackageInstallerCompat;
Sunny Goyale755d462014-07-22 13:48:29 -070058import com.android.launcher3.compat.PackageInstallerCompat.PackageInstallInfo;
Kenny Guyed131872014-04-30 03:02:21 +010059import com.android.launcher3.compat.UserHandleCompat;
60import com.android.launcher3.compat.UserManagerCompat;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -070061import com.android.launcher3.model.WidgetsModel;
Robin Lee26ace122015-03-16 19:41:43 +000062import com.android.launcher3.util.ComponentKey;
Sunny Goyale2df0622015-04-24 11:27:00 -070063import com.android.launcher3.util.LongArrayMap;
Sunny Goyal18bf8e22015-04-08 18:13:46 -070064import com.android.launcher3.util.ManagedProfileHeuristic;
Adam Cohen091440a2015-03-18 14:16:05 -070065import com.android.launcher3.util.Thunk;
Romain Guyedcce092010-03-04 13:03:17 -080066
Michael Jurkac2f801e2011-07-12 14:19:46 -070067import java.lang.ref.WeakReference;
68import java.net.URISyntaxException;
Sunny Goyal34942622014-08-29 17:20:55 -070069import java.security.InvalidParameterException;
Michael Jurkac2f801e2011-07-12 14:19:46 -070070import java.util.ArrayList;
Adam Cohendcd297f2013-06-18 13:13:40 -070071import java.util.Arrays;
Winson Chung64359a52013-07-08 17:17:08 -070072import java.util.Collection;
Michael Jurkac2f801e2011-07-12 14:19:46 -070073import java.util.Collections;
74import java.util.Comparator;
75import java.util.HashMap;
Winson Chungb8b2a5a2012-07-12 17:55:31 -070076import java.util.HashSet;
Winson Chung2abf94d2012-07-18 18:16:38 -070077import java.util.Iterator;
Michael Jurkac2f801e2011-07-12 14:19:46 -070078import java.util.List;
Sunny Goyalf599ccf2014-07-08 13:01:29 -070079import java.util.Map.Entry;
Winson Chungb8b2a5a2012-07-12 17:55:31 -070080import java.util.Set;
Michael Jurkac2f801e2011-07-12 14:19:46 -070081
The Android Open Source Project31dd5032009-03-03 19:32:27 -080082/**
83 * Maintains in-memory state of the Launcher. It is expected that there should be only one
84 * LauncherModel object held in a static. Also provide APIs for updating the database state
The Android Open Source Projectbc219c32009-03-09 11:52:14 -070085 * for the Launcher.
The Android Open Source Project31dd5032009-03-03 19:32:27 -080086 */
Kenny Guyed131872014-04-30 03:02:21 +010087public class LauncherModel extends BroadcastReceiver
Kenny Guyc2bd8102014-06-30 12:30:31 +010088 implements LauncherAppsCompat.OnAppsChangedCallbackCompat {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -080089 static final boolean DEBUG_LOADERS = false;
Chris Wrenee523362014-09-09 10:09:02 -040090 private static final boolean DEBUG_RECEIVER = false;
Sunny Goyal94485362014-09-18 16:13:58 -070091 private static final boolean REMOVE_UNRESTORED_ICONS = true;
Chris Wrenb358f812014-04-16 13:37:00 -040092
Joe Onorato9c1289c2009-08-17 11:03:03 -040093 static final String TAG = "Launcher.Model";
The Android Open Source Projectf96811c2009-03-18 17:39:48 -070094
Dan Sandlerd5024042014-01-09 15:01:33 -050095 public static final int LOADER_FLAG_NONE = 0;
96 public static final int LOADER_FLAG_CLEAR_WORKSPACE = 1 << 0;
97 public static final int LOADER_FLAG_MIGRATE_SHORTCUTS = 1 << 1;
98
Joe Onorato36115782010-06-17 13:28:48 -040099 private static final int ITEMS_CHUNK = 6; // batch size for the workspace icons
Derek Prothro7aff3992013-12-10 14:00:37 -0500100 private static final long INVALID_SCREEN_ID = -1L;
Winson Chunga6945242014-01-08 14:04:34 -0800101
Adam Cohen091440a2015-03-18 14:16:05 -0700102 @Thunk final boolean mAppsCanBeOnRemoveableStorage;
Winson Chunga6945242014-01-08 14:04:34 -0800103 private final boolean mOldContentProviderExists;
Daniel Sandlerdca66122010-04-13 16:23:58 -0400104
Adam Cohen091440a2015-03-18 14:16:05 -0700105 @Thunk final LauncherAppState mApp;
106 @Thunk final Object mLock = new Object();
107 @Thunk DeferredHandler mHandler = new DeferredHandler();
108 @Thunk LoaderTask mLoaderTask;
109 @Thunk boolean mIsLoaderTaskRunning;
Sunny Goyal756a28a2015-04-23 17:07:55 -0700110 @Thunk boolean mHasLoaderCompletedOnce;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800111
Jason Monkbbe1e242014-05-16 17:37:34 -0400112 private static final String MIGRATE_AUTHORITY = "com.android.launcher2.settings";
Winson Chung81b52252012-08-27 15:34:29 -0700113
Adam Cohen091440a2015-03-18 14:16:05 -0700114 @Thunk static final HandlerThread sWorkerThread = new HandlerThread("launcher-loader");
Brad Fitzpatrick700889f2010-10-11 09:40:44 -0700115 static {
116 sWorkerThread.start();
117 }
Adam Cohen091440a2015-03-18 14:16:05 -0700118 @Thunk static final Handler sWorker = new Handler(sWorkerThread.getLooper());
Brad Fitzpatrick700889f2010-10-11 09:40:44 -0700119
Joe Onoratocc67f472010-06-08 10:54:30 -0700120 // We start off with everything not loaded. After that, we assume that
121 // our monitoring of the package manager provides all updates and we never
122 // need to do a requery. These are only ever touched from the loader thread.
Adam Cohen091440a2015-03-18 14:16:05 -0700123 @Thunk boolean mWorkspaceLoaded;
124 @Thunk boolean mAllAppsLoaded;
Joe Onoratocc67f472010-06-08 10:54:30 -0700125
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700126 // When we are loading pages synchronously, we can't just post the binding of items on the side
127 // pages as this delays the rotation process. Instead, we wait for a callback from the first
128 // draw (in Workspace) to initiate the binding of the remaining side pages. Any time we start
129 // a normal load, we also clear this set of Runnables.
130 static final ArrayList<Runnable> mDeferredBindRunnables = new ArrayList<Runnable>();
131
Sunny Goyal756a28a2015-04-23 17:07:55 -0700132 /**
133 * Set of runnables to be called on the background thread after the workspace binding
134 * is complete.
135 */
136 static final ArrayList<Runnable> mBindCompleteRunnables = new ArrayList<Runnable>();
137
Adam Cohen091440a2015-03-18 14:16:05 -0700138 @Thunk WeakReference<Callbacks> mCallbacks;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800139
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700140 // < only access in worker thread >
Adam Cohen4caf2982013-08-20 18:54:31 -0700141 AllAppsList mBgAllAppsList;
Hyunyoung Song9110d482015-05-22 14:49:23 -0700142 // Entire list of widgets.
143 WidgetsModel mBgWidgetsModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800144
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700145 // The lock that must be acquired before referencing any static bg data structures. Unlike
146 // other locks, this one can generally be held long-term because we never expect any of these
147 // static data structures to be referenced outside of the worker thread except on the first
148 // load after configuration change.
Winson Chung2abf94d2012-07-18 18:16:38 -0700149 static final Object sBgLock = new Object();
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700150
Adam Cohen487f7dd2012-06-28 18:12:10 -0700151 // sBgItemsIdMap maps *all* the ItemInfos (shortcuts, folders, and widgets) created by
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700152 // LauncherModel to their ids
Sunny Goyale2df0622015-04-24 11:27:00 -0700153 static final LongArrayMap<ItemInfo> sBgItemsIdMap = new LongArrayMap<>();
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700154
Adam Cohen487f7dd2012-06-28 18:12:10 -0700155 // sBgWorkspaceItems is passed to bindItems, which expects a list of all folders and shortcuts
156 // created by LauncherModel that are directly on the home screen (however, no widgets or
157 // shortcuts within folders).
158 static final ArrayList<ItemInfo> sBgWorkspaceItems = new ArrayList<ItemInfo>();
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700159
Adam Cohen487f7dd2012-06-28 18:12:10 -0700160 // sBgAppWidgets is all LauncherAppWidgetInfo created by LauncherModel. Passed to bindAppWidget()
161 static final ArrayList<LauncherAppWidgetInfo> sBgAppWidgets =
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700162 new ArrayList<LauncherAppWidgetInfo>();
163
Adam Cohen487f7dd2012-06-28 18:12:10 -0700164 // sBgFolders is all FolderInfos created by LauncherModel. Passed to bindFolders()
Sunny Goyale2df0622015-04-24 11:27:00 -0700165 static final LongArrayMap<FolderInfo> sBgFolders = new LongArrayMap<>();
Winson Chungb1094bd2011-08-24 16:14:08 -0700166
Adam Cohendcd297f2013-06-18 13:13:40 -0700167 // sBgWorkspaceScreens is the ordered set of workspace screens.
168 static final ArrayList<Long> sBgWorkspaceScreens = new ArrayList<Long>();
169
Adam Cohen59400422014-03-05 18:07:04 -0800170 // sBgWidgetProviders is the set of widget providers including custom internal widgets
Robin Lee26ace122015-03-16 19:41:43 +0000171 public static HashMap<ComponentKey, LauncherAppWidgetProviderInfo> sBgWidgetProviders;
Adam Cohen59400422014-03-05 18:07:04 -0800172
Sunny Goyalf599ccf2014-07-08 13:01:29 -0700173 // sPendingPackages is a set of packages which could be on sdcard and are not available yet
Sameer Padala513edae2014-07-29 16:17:08 -0700174 static final HashMap<UserHandleCompat, HashSet<String>> sPendingPackages =
175 new HashMap<UserHandleCompat, HashSet<String>>();
Sunny Goyalf599ccf2014-07-08 13:01:29 -0700176
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700177 // </ only access in worker thread >
178
Adam Cohen091440a2015-03-18 14:16:05 -0700179 @Thunk IconCache mIconCache;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800180
Reena Lee99a73f32011-10-24 17:27:37 -0700181 protected int mPreviousConfigMcc;
Reena Lee93f824a2011-09-23 17:20:28 -0700182
Adam Cohen091440a2015-03-18 14:16:05 -0700183 @Thunk final LauncherAppsCompat mLauncherApps;
184 @Thunk final UserManagerCompat mUserManager;
Kenny Guyed131872014-04-30 03:02:21 +0100185
Joe Onorato9c1289c2009-08-17 11:03:03 -0400186 public interface Callbacks {
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700187 public boolean setLoadOnResume();
Joe Onorato9c1289c2009-08-17 11:03:03 -0400188 public int getCurrentWorkspaceScreen();
189 public void startBinding();
Winson Chung64359a52013-07-08 17:17:08 -0700190 public void bindItems(ArrayList<ItemInfo> shortcuts, int start, int end,
191 boolean forceAnimateIcons);
Adam Cohendcd297f2013-06-18 13:13:40 -0700192 public void bindScreens(ArrayList<Long> orderedScreenIds);
Winson Chung64359a52013-07-08 17:17:08 -0700193 public void bindAddScreens(ArrayList<Long> orderedScreenIds);
Sunny Goyale2df0622015-04-24 11:27:00 -0700194 public void bindFolders(LongArrayMap<FolderInfo> folders);
Sunny Goyal66cfdc22015-02-02 13:01:51 -0800195 public void finishBindingItems();
Joe Onorato9c1289c2009-08-17 11:03:03 -0400196 public void bindAppWidget(LauncherAppWidgetInfo info);
Michael Jurkaeadbfc52013-09-04 00:45:37 +0200197 public void bindAllApplications(ArrayList<AppInfo> apps);
Winson Chungd64d1762013-08-20 14:37:16 -0700198 public void bindAppsAdded(ArrayList<Long> newScreens,
199 ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -0700200 ArrayList<ItemInfo> addAnimated,
201 ArrayList<AppInfo> addedApps);
Michael Jurkaeadbfc52013-09-04 00:45:37 +0200202 public void bindAppsUpdated(ArrayList<AppInfo> apps);
Sunny Goyal4390ace2014-10-13 11:33:11 -0700203 public void bindShortcutsChanged(ArrayList<ShortcutInfo> updated,
204 ArrayList<ShortcutInfo> removed, UserHandleCompat user);
205 public void bindWidgetsRestored(ArrayList<LauncherAppWidgetInfo> widgets);
Sunny Goyal756adbc2015-04-16 15:20:51 -0700206 public void bindRestoreItemsChange(HashSet<ItemInfo> updates);
Winson Chung83892cc2013-05-01 16:53:33 -0700207 public void bindComponentsRemoved(ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -0700208 ArrayList<AppInfo> appInfos, UserHandleCompat user, int reason);
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700209 public void bindAllPackages(WidgetsModel model);
Narayan Kamathcb1a4772011-06-28 13:46:59 +0100210 public void bindSearchablesChanged();
Winson Chunga0b7e862013-09-05 16:03:15 -0700211 public boolean isAllAppsButtonRank(int rank);
Adam Cohen1462de32012-07-24 22:34:36 -0700212 public void onPageBoundSynchronously(int page);
Winson Chungede41292013-09-19 16:27:36 -0700213 public void dumpLogsToLocalData();
Joe Onorato9c1289c2009-08-17 11:03:03 -0400214 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800215
Winson Chung64359a52013-07-08 17:17:08 -0700216 public interface ItemInfoFilter {
217 public boolean filterItem(ItemInfo parent, ItemInfo info, ComponentName cn);
218 }
219
Bjorn Bringert1307f632013-10-03 22:31:03 +0100220 LauncherModel(LauncherAppState app, IconCache iconCache, AppFilter appFilter) {
Winson Chunga6945242014-01-08 14:04:34 -0800221 Context context = app.getContext();
Daniel Sandlere4f98912013-06-25 15:13:26 -0400222
Winson Chungee055712013-07-30 14:46:24 -0700223 mAppsCanBeOnRemoveableStorage = Environment.isExternalStorageRemovable();
Adam Cohen71483f42014-05-15 14:04:01 -0700224 String oldProvider = context.getString(R.string.old_launcher_provider_uri);
Jason Monkbbe1e242014-05-16 17:37:34 -0400225 // This may be the same as MIGRATE_AUTHORITY, or it may be replaced by a different
226 // resource string.
227 String redirectAuthority = Uri.parse(oldProvider).getAuthority();
228 ProviderInfo providerInfo =
229 context.getPackageManager().resolveContentProvider(MIGRATE_AUTHORITY, 0);
230 ProviderInfo redirectProvider =
231 context.getPackageManager().resolveContentProvider(redirectAuthority, 0);
Adam Cohen71483f42014-05-15 14:04:01 -0700232
233 Log.d(TAG, "Old launcher provider: " + oldProvider);
Jason Monkbbe1e242014-05-16 17:37:34 -0400234 mOldContentProviderExists = (providerInfo != null) && (redirectProvider != null);
Adam Cohen71483f42014-05-15 14:04:01 -0700235
236 if (mOldContentProviderExists) {
237 Log.d(TAG, "Old launcher provider exists.");
238 } else {
239 Log.d(TAG, "Old launcher provider does not exist.");
240 }
241
Daniel Sandlere4f98912013-06-25 15:13:26 -0400242 mApp = app;
Bjorn Bringert1307f632013-10-03 22:31:03 +0100243 mBgAllAppsList = new AllAppsList(iconCache, appFilter);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800244 mIconCache = iconCache;
245
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400246 final Resources res = context.getResources();
Reena Lee99a73f32011-10-24 17:27:37 -0700247 Configuration config = res.getConfiguration();
248 mPreviousConfigMcc = config.mcc;
Kenny Guyed131872014-04-30 03:02:21 +0100249 mLauncherApps = LauncherAppsCompat.getInstance(context);
250 mUserManager = UserManagerCompat.getInstance(context);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800251 }
252
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700253 /** Runs the specified runnable immediately if called from the main thread, otherwise it is
254 * posted on the main thread handler. */
Adam Cohen091440a2015-03-18 14:16:05 -0700255 @Thunk void runOnMainThread(Runnable r) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700256 if (sWorkerThread.getThreadId() == Process.myTid()) {
257 // If we are on the worker thread, post onto the main handler
258 mHandler.post(r);
259 } else {
260 r.run();
261 }
262 }
263
264 /** Runs the specified runnable immediately if called from the worker thread, otherwise it is
265 * posted on the worker thread handler. */
266 private static void runOnWorkerThread(Runnable r) {
267 if (sWorkerThread.getThreadId() == Process.myTid()) {
268 r.run();
269 } else {
270 // If we are not on the worker thread, then post to the worker handler
271 sWorker.post(r);
272 }
273 }
274
Sunny Goyal756a28a2015-04-23 17:07:55 -0700275 /**
276 * Runs the specified runnable after the loader is complete
277 */
Sunny Goyal316490e2015-06-02 09:38:28 -0700278 @Thunk void runAfterBindCompletes(Runnable r) {
Sunny Goyal756a28a2015-04-23 17:07:55 -0700279 if (isLoadingWorkspace() || !mHasLoaderCompletedOnce) {
280 synchronized (mBindCompleteRunnables) {
281 mBindCompleteRunnables.add(r);
282 }
283 } else {
284 runOnWorkerThread(r);
285 }
286 }
287
Winson Chunge43a1e72014-01-15 10:33:02 -0800288 boolean canMigrateFromOldLauncherDb(Launcher launcher) {
289 return mOldContentProviderExists && !launcher.isLauncherPreinstalled() ;
Winson Chunga6945242014-01-08 14:04:34 -0800290 }
291
Sunny Goyal756adbc2015-04-16 15:20:51 -0700292 public void setPackageState(final PackageInstallInfo installInfo) {
293 Runnable updateRunnable = new Runnable() {
294
295 @Override
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500296 public void run() {
Sunny Goyal756adbc2015-04-16 15:20:51 -0700297 synchronized (sBgLock) {
298 final HashSet<ItemInfo> updates = new HashSet<>();
299
300 if (installInfo.state == PackageInstallerCompat.STATUS_INSTALLED) {
301 // Ignore install success events as they are handled by Package add events.
302 return;
303 }
304
Sunny Goyale2df0622015-04-24 11:27:00 -0700305 for (ItemInfo info : sBgItemsIdMap) {
Sunny Goyal756adbc2015-04-16 15:20:51 -0700306 if (info instanceof ShortcutInfo) {
307 ShortcutInfo si = (ShortcutInfo) info;
308 ComponentName cn = si.getTargetComponent();
309 if (si.isPromise() && (cn != null)
310 && installInfo.packageName.equals(cn.getPackageName())) {
311 si.setInstallProgress(installInfo.progress);
312
313 if (installInfo.state == PackageInstallerCompat.STATUS_FAILED) {
314 // Mark this info as broken.
315 si.status &= ~ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE;
316 }
317 updates.add(si);
318 }
319 }
320 }
321
322 for (LauncherAppWidgetInfo widget : sBgAppWidgets) {
323 if (widget.providerName.getPackageName().equals(installInfo.packageName)) {
324 widget.installProgress = installInfo.progress;
325 updates.add(widget);
326 }
327 }
328
329 if (!updates.isEmpty()) {
330 // Push changes to the callback.
331 Runnable r = new Runnable() {
332 public void run() {
333 Callbacks callbacks = getCallback();
334 if (callbacks != null) {
335 callbacks.bindRestoreItemsChange(updates);
336 }
337 }
338 };
339 mHandler.post(r);
340 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500341 }
342 }
343 };
Sunny Goyal756adbc2015-04-16 15:20:51 -0700344 runOnWorkerThread(updateRunnable);
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500345 }
346
Sunny Goyal756adbc2015-04-16 15:20:51 -0700347 /**
348 * Updates the icons and label of all pending icons for the provided package name.
349 */
350 public void updateSessionDisplayInfo(final String packageName) {
351 Runnable updateRunnable = new Runnable() {
352
353 @Override
Sunny Goyala22666f2014-09-18 13:25:15 -0700354 public void run() {
Sunny Goyal756adbc2015-04-16 15:20:51 -0700355 synchronized (sBgLock) {
356 final ArrayList<ShortcutInfo> updates = new ArrayList<>();
357 final UserHandleCompat user = UserHandleCompat.myUserHandle();
358
Sunny Goyale2df0622015-04-24 11:27:00 -0700359 for (ItemInfo info : sBgItemsIdMap) {
Sunny Goyal756adbc2015-04-16 15:20:51 -0700360 if (info instanceof ShortcutInfo) {
361 ShortcutInfo si = (ShortcutInfo) info;
362 ComponentName cn = si.getTargetComponent();
363 if (si.isPromise() && (cn != null)
364 && packageName.equals(cn.getPackageName())) {
365 if (si.hasStatusFlag(ShortcutInfo.FLAG_AUTOINTALL_ICON)) {
366 // For auto install apps update the icon as well as label.
367 mIconCache.getTitleAndIcon(si,
368 si.promisedIntent, user,
369 si.shouldUseLowResIcon());
370 } else {
371 // Only update the icon for restored apps.
372 si.updateIcon(mIconCache);
373 }
374 updates.add(si);
375 }
376 }
377 }
378
379 if (!updates.isEmpty()) {
380 // Push changes to the callback.
381 Runnable r = new Runnable() {
382 public void run() {
383 Callbacks callbacks = getCallback();
384 if (callbacks != null) {
385 callbacks.bindShortcutsChanged(updates,
386 new ArrayList<ShortcutInfo>(), user);
387 }
388 }
389 };
390 mHandler.post(r);
391 }
Sunny Goyala22666f2014-09-18 13:25:15 -0700392 }
393 }
394 };
Sunny Goyal756adbc2015-04-16 15:20:51 -0700395 runOnWorkerThread(updateRunnable);
Sunny Goyala22666f2014-09-18 13:25:15 -0700396 }
397
Adam Cohen76a47a12014-02-05 11:47:43 -0800398 public void addAppsToAllApps(final Context ctx, final ArrayList<AppInfo> allAppsApps) {
Sunny Goyale0f58d72014-11-10 18:05:31 -0800399 final Callbacks callbacks = getCallback();
Adam Cohen76a47a12014-02-05 11:47:43 -0800400
401 if (allAppsApps == null) {
402 throw new RuntimeException("allAppsApps must not be null");
403 }
404 if (allAppsApps.isEmpty()) {
405 return;
406 }
407
408 // Process the newly added applications and add them to the database first
409 Runnable r = new Runnable() {
410 public void run() {
411 runOnMainThread(new Runnable() {
412 public void run() {
Sunny Goyale0f58d72014-11-10 18:05:31 -0800413 Callbacks cb = getCallback();
Adam Cohen76a47a12014-02-05 11:47:43 -0800414 if (callbacks == cb && cb != null) {
Chris Wren6d0dde02014-02-10 12:16:54 -0500415 callbacks.bindAppsAdded(null, null, null, allAppsApps);
Adam Cohen76a47a12014-02-05 11:47:43 -0800416 }
417 }
418 });
419 }
420 };
421 runOnWorkerThread(r);
Winson Chung997a9232013-07-24 15:33:46 -0700422 }
Adam Cohen76a47a12014-02-05 11:47:43 -0800423
Sunny Goyala9116722015-04-29 13:55:58 -0700424 private static boolean findNextAvailableIconSpaceInScreen(ArrayList<ItemInfo> occupiedPos,
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800425 int[] xy, int spanX, int spanY) {
426 LauncherAppState app = LauncherAppState.getInstance();
Adam Cohen2e6da152015-05-06 11:42:25 -0700427 InvariantDeviceProfile profile = app.getInvariantDeviceProfile();
428 final int xCount = (int) profile.numColumns;
429 final int yCount = (int) profile.numRows;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800430 boolean[][] occupied = new boolean[xCount][yCount];
431 if (occupiedPos != null) {
Sunny Goyala9116722015-04-29 13:55:58 -0700432 for (ItemInfo r : occupiedPos) {
433 int right = r.cellX + r.spanX;
434 int bottom = r.cellY + r.spanY;
435 for (int x = r.cellX; 0 <= x && x < right && x < xCount; x++) {
436 for (int y = r.cellY; 0 <= y && y < bottom && y < yCount; y++) {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800437 occupied[x][y] = true;
438 }
439 }
440 }
Winson Chungfe9d96a2013-11-14 11:30:05 -0800441 }
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700442 return Utilities.findVacantCell(xy, spanX, spanY, xCount, yCount, occupied);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800443 }
444
445 /**
446 * Find a position on the screen for the given size or adds a new screen.
447 * @return screenId and the coordinates for the item.
448 */
Sunny Goyal756a28a2015-04-23 17:07:55 -0700449 @Thunk Pair<Long, int[]> findSpaceForItem(
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800450 Context context,
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800451 ArrayList<Long> workspaceScreens,
452 ArrayList<Long> addedWorkspaceScreensFinal,
453 int spanX, int spanY) {
Sunny Goyala9116722015-04-29 13:55:58 -0700454 LongSparseArray<ArrayList<ItemInfo>> screenItems = new LongSparseArray<>();
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800455
Sunny Goyala9116722015-04-29 13:55:58 -0700456 // Use sBgItemsIdMap as all the items are already loaded.
Sunny Goyal756a28a2015-04-23 17:07:55 -0700457 assertWorkspaceLoaded();
Sunny Goyala9116722015-04-29 13:55:58 -0700458 synchronized (sBgLock) {
459 for (ItemInfo info : sBgItemsIdMap) {
460 if (info.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
461 ArrayList<ItemInfo> items = screenItems.get(info.screenId);
462 if (items == null) {
463 items = new ArrayList<>();
464 screenItems.put(info.screenId, items);
465 }
466 items.add(info);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800467 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800468 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800469 }
470
471 // Find appropriate space for the item.
472 long screenId = 0;
473 int[] cordinates = new int[2];
474 boolean found = false;
475
476 int screenCount = workspaceScreens.size();
477 // First check the preferred screen.
Sunny Goyala9116722015-04-29 13:55:58 -0700478 int preferredScreenIndex = workspaceScreens.isEmpty() ? 0 : 1;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800479 if (preferredScreenIndex < screenCount) {
480 screenId = workspaceScreens.get(preferredScreenIndex);
481 found = findNextAvailableIconSpaceInScreen(
482 screenItems.get(screenId), cordinates, spanX, spanY);
483 }
484
485 if (!found) {
Sunny Goyala9116722015-04-29 13:55:58 -0700486 // Search on any of the screens starting from the first screen.
487 for (int screen = 1; screen < screenCount; screen++) {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800488 screenId = workspaceScreens.get(screen);
489 if (findNextAvailableIconSpaceInScreen(
490 screenItems.get(screenId), cordinates, spanX, spanY)) {
491 // We found a space for it
492 found = true;
493 break;
494 }
495 }
496 }
497
498 if (!found) {
499 // Still no position found. Add a new screen to the end.
500 screenId = LauncherAppState.getLauncherProvider().generateNewScreenId();
501
502 // Save the screen id for binding in the workspace
503 workspaceScreens.add(screenId);
504 addedWorkspaceScreensFinal.add(screenId);
505
506 // If we still can't find an empty space, then God help us all!!!
507 if (!findNextAvailableIconSpaceInScreen(
508 screenItems.get(screenId), cordinates, spanX, spanY)) {
509 throw new RuntimeException("Can't find space to add the item");
510 }
511 }
512 return Pair.create(screenId, cordinates);
513 }
514
515 /**
516 * Adds the provided items to the workspace.
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800517 */
Sunny Goyal18bf8e22015-04-08 18:13:46 -0700518 public void addAndBindAddedWorkspaceItems(final Context context,
Sunny Goyala214a632015-05-06 12:23:34 -0700519 final ArrayList<? extends ItemInfo> workspaceApps) {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800520 final Callbacks callbacks = getCallback();
Adam Cohen76a47a12014-02-05 11:47:43 -0800521 if (workspaceApps.isEmpty()) {
Winson Chung9e6a0a22013-08-27 11:58:12 -0700522 return;
Winson Chung997a9232013-07-24 15:33:46 -0700523 }
Winson Chung64359a52013-07-08 17:17:08 -0700524 // Process the newly added applications and add them to the database first
525 Runnable r = new Runnable() {
526 public void run() {
527 final ArrayList<ItemInfo> addedShortcutsFinal = new ArrayList<ItemInfo>();
528 final ArrayList<Long> addedWorkspaceScreensFinal = new ArrayList<Long>();
529
Winson Chung76828c82013-08-19 15:43:29 -0700530 // Get the list of workspace screens. We need to append to this list and
531 // can not use sBgWorkspaceScreens because loadWorkspace() may not have been
532 // called.
Sunny Goyalc1b7c2e2015-01-16 16:19:04 -0800533 ArrayList<Long> workspaceScreens = loadWorkspaceScreensDb(context);
Winson Chung64359a52013-07-08 17:17:08 -0700534 synchronized(sBgLock) {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800535 for (ItemInfo item : workspaceApps) {
Sunny Goyala9116722015-04-29 13:55:58 -0700536 if (item instanceof ShortcutInfo) {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800537 // Short-circuit this logic if the icon exists somewhere on the workspace
Sunny Goyal756adbc2015-04-16 15:20:51 -0700538 if (shortcutExists(context, item.getIntent(), item.user)) {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800539 continue;
Winson Chungc763c4e2013-07-19 13:49:06 -0700540 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800541 }
Winson Chung76828c82013-08-19 15:43:29 -0700542
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800543 // Find appropriate space for the item.
Sunny Goyala9116722015-04-29 13:55:58 -0700544 Pair<Long, int[]> coords = findSpaceForItem(context,
545 workspaceScreens, addedWorkspaceScreensFinal,
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800546 1, 1);
547 long screenId = coords.first;
548 int[] cordinates = coords.second;
Winson Chung64359a52013-07-08 17:17:08 -0700549
Sunny Goyal18bf8e22015-04-08 18:13:46 -0700550 ItemInfo itemInfo;
551 if (item instanceof ShortcutInfo || item instanceof FolderInfo) {
552 itemInfo = item;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800553 } else if (item instanceof AppInfo) {
Sunny Goyal18bf8e22015-04-08 18:13:46 -0700554 itemInfo = ((AppInfo) item).makeShortcut();
Winson Chung997a9232013-07-24 15:33:46 -0700555 } else {
556 throw new RuntimeException("Unexpected info type");
557 }
Winson Chung94d67682013-09-25 16:29:40 -0700558
Winson Chung64359a52013-07-08 17:17:08 -0700559 // Add the shortcut to the db
Sunny Goyal18bf8e22015-04-08 18:13:46 -0700560 addItemToDatabase(context, itemInfo,
Winson Chung64359a52013-07-08 17:17:08 -0700561 LauncherSettings.Favorites.CONTAINER_DESKTOP,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -0700562 screenId, cordinates[0], cordinates[1]);
Winson Chung64359a52013-07-08 17:17:08 -0700563 // Save the ShortcutInfo for binding in the workspace
Sunny Goyal18bf8e22015-04-08 18:13:46 -0700564 addedShortcutsFinal.add(itemInfo);
Winson Chung64359a52013-07-08 17:17:08 -0700565 }
566 }
567
Winson Chung76828c82013-08-19 15:43:29 -0700568 // Update the workspace screens
569 updateWorkspaceScreenOrder(context, workspaceScreens);
570
Adam Cohen76a47a12014-02-05 11:47:43 -0800571 if (!addedShortcutsFinal.isEmpty()) {
Winson Chung997a9232013-07-24 15:33:46 -0700572 runOnMainThread(new Runnable() {
573 public void run() {
Sunny Goyale0f58d72014-11-10 18:05:31 -0800574 Callbacks cb = getCallback();
Winson Chung997a9232013-07-24 15:33:46 -0700575 if (callbacks == cb && cb != null) {
Winson Chung997a9232013-07-24 15:33:46 -0700576 final ArrayList<ItemInfo> addAnimated = new ArrayList<ItemInfo>();
577 final ArrayList<ItemInfo> addNotAnimated = new ArrayList<ItemInfo>();
Winson Chung94d67682013-09-25 16:29:40 -0700578 if (!addedShortcutsFinal.isEmpty()) {
579 ItemInfo info = addedShortcutsFinal.get(addedShortcutsFinal.size() - 1);
580 long lastScreenId = info.screenId;
581 for (ItemInfo i : addedShortcutsFinal) {
582 if (i.screenId == lastScreenId) {
583 addAnimated.add(i);
584 } else {
585 addNotAnimated.add(i);
586 }
Winson Chung997a9232013-07-24 15:33:46 -0700587 }
588 }
Winson Chungd64d1762013-08-20 14:37:16 -0700589 callbacks.bindAppsAdded(addedWorkspaceScreensFinal,
Adam Cohen76a47a12014-02-05 11:47:43 -0800590 addNotAnimated, addAnimated, null);
Winson Chung997a9232013-07-24 15:33:46 -0700591 }
Winson Chung64359a52013-07-08 17:17:08 -0700592 }
Winson Chung997a9232013-07-24 15:33:46 -0700593 });
594 }
Winson Chung64359a52013-07-08 17:17:08 -0700595 }
596 };
597 runOnWorkerThread(r);
598 }
599
Sunny Goyald33860f2015-04-23 16:02:20 -0700600 private void unbindItemInfosAndClearQueuedBindRunnables() {
Winson Chung81b52252012-08-27 15:34:29 -0700601 if (sWorkerThread.getThreadId() == Process.myTid()) {
602 throw new RuntimeException("Expected unbindLauncherItemInfos() to be called from the " +
603 "main thread");
604 }
605
606 // Clear any deferred bind runnables
Jason Monka0a7a742014-04-22 09:23:19 -0400607 synchronized (mDeferredBindRunnables) {
608 mDeferredBindRunnables.clear();
609 }
Sunny Goyald33860f2015-04-23 16:02:20 -0700610
611 // Remove any queued UI runnables
612 mHandler.cancelAll();
Winson Chung81b52252012-08-27 15:34:29 -0700613 // Unbind all the workspace items
614 unbindWorkspaceItemsOnMainThread();
Winson Chung603bcb92011-09-02 11:45:39 -0700615 }
616
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700617 /** Unbinds all the sBgWorkspaceItems and sBgAppWidgets on the main thread */
Winson Chung81b52252012-08-27 15:34:29 -0700618 void unbindWorkspaceItemsOnMainThread() {
Winson Chung603bcb92011-09-02 11:45:39 -0700619 // Ensure that we don't use the same workspace items data structure on the main thread
620 // by making a copy of workspace items first.
Sunny Goyald33860f2015-04-23 16:02:20 -0700621 final ArrayList<ItemInfo> tmpItems = new ArrayList<ItemInfo>();
Winson Chung2abf94d2012-07-18 18:16:38 -0700622 synchronized (sBgLock) {
Sunny Goyald33860f2015-04-23 16:02:20 -0700623 tmpItems.addAll(sBgWorkspaceItems);
624 tmpItems.addAll(sBgAppWidgets);
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700625 }
626 Runnable r = new Runnable() {
627 @Override
628 public void run() {
Sunny Goyald33860f2015-04-23 16:02:20 -0700629 for (ItemInfo item : tmpItems) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700630 item.unbind();
631 }
632 }
633 };
634 runOnMainThread(r);
Adam Cohen4eac29a2011-07-11 17:53:37 -0700635 }
636
Joe Onorato9c1289c2009-08-17 11:03:03 -0400637 /**
638 * Adds an item to the DB if it was not created previously, or move it to a new
639 * <container, screen, cellX, cellY>
640 */
641 static void addOrMoveItemInDatabase(Context context, ItemInfo item, long container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700642 long screenId, int cellX, int cellY) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400643 if (item.container == ItemInfo.NO_ID) {
644 // From all apps
Sunny Goyal1d4a2df2015-03-30 11:11:46 -0700645 addItemToDatabase(context, item, container, screenId, cellX, cellY);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400646 } else {
647 // From somewhere else
Adam Cohendcd297f2013-06-18 13:13:40 -0700648 moveItemInDatabase(context, item, container, screenId, cellX, cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800649 }
650 }
651
Michael Jurkab2ae8ac2012-09-21 12:06:06 -0700652 static void checkItemInfoLocked(
653 final long itemId, final ItemInfo item, StackTraceElement[] stackTrace) {
654 ItemInfo modelItem = sBgItemsIdMap.get(itemId);
655 if (modelItem != null && item != modelItem) {
656 // check all the data is consistent
657 if (modelItem instanceof ShortcutInfo && item instanceof ShortcutInfo) {
658 ShortcutInfo modelShortcut = (ShortcutInfo) modelItem;
659 ShortcutInfo shortcut = (ShortcutInfo) item;
660 if (modelShortcut.title.toString().equals(shortcut.title.toString()) &&
661 modelShortcut.intent.filterEquals(shortcut.intent) &&
662 modelShortcut.id == shortcut.id &&
663 modelShortcut.itemType == shortcut.itemType &&
664 modelShortcut.container == shortcut.container &&
Adam Cohendcd297f2013-06-18 13:13:40 -0700665 modelShortcut.screenId == shortcut.screenId &&
Michael Jurkab2ae8ac2012-09-21 12:06:06 -0700666 modelShortcut.cellX == shortcut.cellX &&
667 modelShortcut.cellY == shortcut.cellY &&
668 modelShortcut.spanX == shortcut.spanX &&
669 modelShortcut.spanY == shortcut.spanY &&
670 ((modelShortcut.dropPos == null && shortcut.dropPos == null) ||
671 (modelShortcut.dropPos != null &&
672 shortcut.dropPos != null &&
673 modelShortcut.dropPos[0] == shortcut.dropPos[0] &&
674 modelShortcut.dropPos[1] == shortcut.dropPos[1]))) {
675 // For all intents and purposes, this is the same object
676 return;
677 }
678 }
679
680 // the modelItem needs to match up perfectly with item if our model is
681 // to be consistent with the database-- for now, just require
682 // modelItem == item or the equality check above
683 String msg = "item: " + ((item != null) ? item.toString() : "null") +
684 "modelItem: " +
685 ((modelItem != null) ? modelItem.toString() : "null") +
686 "Error: ItemInfo passed to checkItemInfo doesn't match original";
687 RuntimeException e = new RuntimeException(msg);
688 if (stackTrace != null) {
689 e.setStackTrace(stackTrace);
690 }
Adam Cohenb9ada652013-11-08 08:25:08 -0800691 throw e;
Michael Jurkab2ae8ac2012-09-21 12:06:06 -0700692 }
693 }
694
Michael Jurka816474f2012-06-25 14:49:02 -0700695 static void checkItemInfo(final ItemInfo item) {
696 final StackTraceElement[] stackTrace = new Throwable().getStackTrace();
697 final long itemId = item.id;
698 Runnable r = new Runnable() {
Michael Jurkab2ae8ac2012-09-21 12:06:06 -0700699 public void run() {
700 synchronized (sBgLock) {
701 checkItemInfoLocked(itemId, item, stackTrace);
Michael Jurka816474f2012-06-25 14:49:02 -0700702 }
Michael Jurkab2ae8ac2012-09-21 12:06:06 -0700703 }
704 };
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700705 runOnWorkerThread(r);
Michael Jurka816474f2012-06-25 14:49:02 -0700706 }
707
Michael Jurkac9d95c52011-08-29 14:03:34 -0700708 static void updateItemInDatabaseHelper(Context context, final ContentValues values,
709 final ItemInfo item, final String callingFunction) {
710 final long itemId = item.id;
Sunny Goyal1d4a2df2015-03-30 11:11:46 -0700711 final Uri uri = LauncherSettings.Favorites.getContentUri(itemId);
Michael Jurkac9d95c52011-08-29 14:03:34 -0700712 final ContentResolver cr = context.getContentResolver();
713
Adam Cohen487f7dd2012-06-28 18:12:10 -0700714 final StackTraceElement[] stackTrace = new Throwable().getStackTrace();
Michael Jurkac9d95c52011-08-29 14:03:34 -0700715 Runnable r = new Runnable() {
716 public void run() {
717 cr.update(uri, values, null, null);
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700718 updateItemArrays(item, itemId, stackTrace);
719 }
720 };
721 runOnWorkerThread(r);
722 }
Michael Jurkac9d95c52011-08-29 14:03:34 -0700723
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700724 static void updateItemsInDatabaseHelper(Context context, final ArrayList<ContentValues> valuesList,
725 final ArrayList<ItemInfo> items, final String callingFunction) {
726 final ContentResolver cr = context.getContentResolver();
Adam Cohen487f7dd2012-06-28 18:12:10 -0700727
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700728 final StackTraceElement[] stackTrace = new Throwable().getStackTrace();
729 Runnable r = new Runnable() {
730 public void run() {
731 ArrayList<ContentProviderOperation> ops =
732 new ArrayList<ContentProviderOperation>();
733 int count = items.size();
734 for (int i = 0; i < count; i++) {
735 ItemInfo item = items.get(i);
736 final long itemId = item.id;
Sunny Goyal1d4a2df2015-03-30 11:11:46 -0700737 final Uri uri = LauncherSettings.Favorites.getContentUri(itemId);
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700738 ContentValues values = valuesList.get(i);
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700739
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700740 ops.add(ContentProviderOperation.newUpdate(uri).withValues(values).build());
741 updateItemArrays(item, itemId, stackTrace);
742
743 }
744 try {
745 cr.applyBatch(LauncherProvider.AUTHORITY, ops);
746 } catch (Exception e) {
747 e.printStackTrace();
Michael Jurkac9d95c52011-08-29 14:03:34 -0700748 }
749 }
750 };
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700751 runOnWorkerThread(r);
Michael Jurkac9d95c52011-08-29 14:03:34 -0700752 }
Adam Cohenbebf0422012-04-11 18:06:28 -0700753
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700754 static void updateItemArrays(ItemInfo item, long itemId, StackTraceElement[] stackTrace) {
755 // Lock on mBgLock *after* the db operation
756 synchronized (sBgLock) {
757 checkItemInfoLocked(itemId, item, stackTrace);
758
759 if (item.container != LauncherSettings.Favorites.CONTAINER_DESKTOP &&
760 item.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
761 // Item is in a folder, make sure this folder exists
762 if (!sBgFolders.containsKey(item.container)) {
763 // An items container is being set to a that of an item which is not in
764 // the list of Folders.
765 String msg = "item: " + item + " container being set to: " +
766 item.container + ", not in the list of folders";
767 Log.e(TAG, msg);
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700768 }
769 }
770
771 // Items are added/removed from the corresponding FolderInfo elsewhere, such
772 // as in Workspace.onDrop. Here, we just add/remove them from the list of items
773 // that are on the desktop, as appropriate
774 ItemInfo modelItem = sBgItemsIdMap.get(itemId);
Winson Chung33231f52013-12-09 16:57:45 -0800775 if (modelItem != null &&
776 (modelItem.container == LauncherSettings.Favorites.CONTAINER_DESKTOP ||
777 modelItem.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT)) {
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700778 switch (modelItem.itemType) {
779 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
780 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
781 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
782 if (!sBgWorkspaceItems.contains(modelItem)) {
783 sBgWorkspaceItems.add(modelItem);
784 }
785 break;
786 default:
787 break;
788 }
789 } else {
790 sBgWorkspaceItems.remove(modelItem);
791 }
792 }
793 }
794
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800795 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -0400796 * Move an item in the DB to a new <container, screen, cellX, cellY>
The Android Open Source Projectbc219c32009-03-09 11:52:14 -0700797 */
Sunny Goyal83a8f042015-05-19 12:52:12 -0700798 public static void moveItemInDatabase(Context context, final ItemInfo item, final long container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700799 final long screenId, final int cellX, final int cellY) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400800 item.container = container;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400801 item.cellX = cellX;
802 item.cellY = cellY;
Michael Jurkac9d95c52011-08-29 14:03:34 -0700803
Winson Chung3d503fb2011-07-13 17:25:49 -0700804 // We store hotseat items in canonical form which is this orientation invariant position
805 // in the hotseat
Adam Cohendcd297f2013-06-18 13:13:40 -0700806 if (context instanceof Launcher && screenId < 0 &&
Winson Chung3d503fb2011-07-13 17:25:49 -0700807 container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
Adam Cohendcd297f2013-06-18 13:13:40 -0700808 item.screenId = ((Launcher) context).getHotseat().getOrderInHotseat(cellX, cellY);
Winson Chung3d503fb2011-07-13 17:25:49 -0700809 } else {
Adam Cohendcd297f2013-06-18 13:13:40 -0700810 item.screenId = screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -0700811 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400812
813 final ContentValues values = new ContentValues();
Joe Onorato9c1289c2009-08-17 11:03:03 -0400814 values.put(LauncherSettings.Favorites.CONTAINER, item.container);
Winson Chung3d503fb2011-07-13 17:25:49 -0700815 values.put(LauncherSettings.Favorites.CELLX, item.cellX);
816 values.put(LauncherSettings.Favorites.CELLY, item.cellY);
Sunny Goyal08f72612015-01-05 13:41:43 -0800817 values.put(LauncherSettings.Favorites.RANK, item.rank);
Adam Cohendcd297f2013-06-18 13:13:40 -0700818 values.put(LauncherSettings.Favorites.SCREEN, item.screenId);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400819
Michael Jurkac9d95c52011-08-29 14:03:34 -0700820 updateItemInDatabaseHelper(context, values, item, "moveItemInDatabase");
The Android Open Source Projectbc219c32009-03-09 11:52:14 -0700821 }
822
823 /**
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700824 * Move items in the DB to a new <container, screen, cellX, cellY>. We assume that the
825 * cellX, cellY have already been updated on the ItemInfos.
826 */
827 static void moveItemsInDatabase(Context context, final ArrayList<ItemInfo> items,
828 final long container, final int screen) {
829
830 ArrayList<ContentValues> contentValues = new ArrayList<ContentValues>();
831 int count = items.size();
832
833 for (int i = 0; i < count; i++) {
834 ItemInfo item = items.get(i);
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700835 item.container = container;
836
837 // We store hotseat items in canonical form which is this orientation invariant position
838 // in the hotseat
839 if (context instanceof Launcher && screen < 0 &&
840 container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
Adam Cohendcd297f2013-06-18 13:13:40 -0700841 item.screenId = ((Launcher) context).getHotseat().getOrderInHotseat(item.cellX,
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700842 item.cellY);
843 } else {
Adam Cohendcd297f2013-06-18 13:13:40 -0700844 item.screenId = screen;
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700845 }
846
847 final ContentValues values = new ContentValues();
848 values.put(LauncherSettings.Favorites.CONTAINER, item.container);
849 values.put(LauncherSettings.Favorites.CELLX, item.cellX);
850 values.put(LauncherSettings.Favorites.CELLY, item.cellY);
Sunny Goyal08f72612015-01-05 13:41:43 -0800851 values.put(LauncherSettings.Favorites.RANK, item.rank);
Adam Cohendcd297f2013-06-18 13:13:40 -0700852 values.put(LauncherSettings.Favorites.SCREEN, item.screenId);
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700853
854 contentValues.add(values);
855 }
856 updateItemsInDatabaseHelper(context, contentValues, items, "moveItemInDatabase");
857 }
858
859 /**
Adam Cohenbebf0422012-04-11 18:06:28 -0700860 * Move and/or resize item in the DB to a new <container, screen, cellX, cellY, spanX, spanY>
Adam Cohend4844c32011-02-18 19:25:06 -0800861 */
Adam Cohenbebf0422012-04-11 18:06:28 -0700862 static void modifyItemInDatabase(Context context, final ItemInfo item, final long container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700863 final long screenId, final int cellX, final int cellY, final int spanX, final int spanY) {
Winson Chung0f84a602013-09-30 14:30:58 -0700864 item.container = container;
Adam Cohend4844c32011-02-18 19:25:06 -0800865 item.cellX = cellX;
866 item.cellY = cellY;
Adam Cohenbebf0422012-04-11 18:06:28 -0700867 item.spanX = spanX;
868 item.spanY = spanY;
869
870 // We store hotseat items in canonical form which is this orientation invariant position
871 // in the hotseat
Adam Cohendcd297f2013-06-18 13:13:40 -0700872 if (context instanceof Launcher && screenId < 0 &&
Adam Cohenbebf0422012-04-11 18:06:28 -0700873 container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
Adam Cohendcd297f2013-06-18 13:13:40 -0700874 item.screenId = ((Launcher) context).getHotseat().getOrderInHotseat(cellX, cellY);
Adam Cohenbebf0422012-04-11 18:06:28 -0700875 } else {
Adam Cohendcd297f2013-06-18 13:13:40 -0700876 item.screenId = screenId;
Adam Cohenbebf0422012-04-11 18:06:28 -0700877 }
Adam Cohend4844c32011-02-18 19:25:06 -0800878
Adam Cohend4844c32011-02-18 19:25:06 -0800879 final ContentValues values = new ContentValues();
Adam Cohend4844c32011-02-18 19:25:06 -0800880 values.put(LauncherSettings.Favorites.CONTAINER, item.container);
Adam Cohenbebf0422012-04-11 18:06:28 -0700881 values.put(LauncherSettings.Favorites.CELLX, item.cellX);
882 values.put(LauncherSettings.Favorites.CELLY, item.cellY);
Sunny Goyal08f72612015-01-05 13:41:43 -0800883 values.put(LauncherSettings.Favorites.RANK, item.rank);
Adam Cohenbebf0422012-04-11 18:06:28 -0700884 values.put(LauncherSettings.Favorites.SPANX, item.spanX);
885 values.put(LauncherSettings.Favorites.SPANY, item.spanY);
Adam Cohendcd297f2013-06-18 13:13:40 -0700886 values.put(LauncherSettings.Favorites.SCREEN, item.screenId);
Adam Cohend4844c32011-02-18 19:25:06 -0800887
Michael Jurka816474f2012-06-25 14:49:02 -0700888 updateItemInDatabaseHelper(context, values, item, "modifyItemInDatabase");
Adam Cohenbebf0422012-04-11 18:06:28 -0700889 }
Michael Jurkac9d95c52011-08-29 14:03:34 -0700890
891 /**
892 * Update an item to the database in a specified container.
893 */
Sunny Goyal83a8f042015-05-19 12:52:12 -0700894 public static void updateItemInDatabase(Context context, final ItemInfo item) {
Michael Jurkac9d95c52011-08-29 14:03:34 -0700895 final ContentValues values = new ContentValues();
Kenny Guyed131872014-04-30 03:02:21 +0100896 item.onAddToDatabase(context, values);
Michael Jurkac9d95c52011-08-29 14:03:34 -0700897 updateItemInDatabaseHelper(context, values, item, "updateItemInDatabase");
Adam Cohend4844c32011-02-18 19:25:06 -0800898 }
899
Sunny Goyal756a28a2015-04-23 17:07:55 -0700900 private void assertWorkspaceLoaded() {
901 if (LauncherAppState.isDogfoodBuild() && (isLoadingWorkspace() || !mHasLoaderCompletedOnce)) {
902 throw new RuntimeException("Trying to add shortcut while loader is running");
903 }
904 }
905
Adam Cohend4844c32011-02-18 19:25:06 -0800906 /**
Sunny Goyal756adbc2015-04-16 15:20:51 -0700907 * Returns true if the shortcuts already exists on the workspace. This must be called after
908 * the workspace has been loaded. We identify a shortcut by its intent.
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800909 */
Sunny Goyal756a28a2015-04-23 17:07:55 -0700910 @Thunk boolean shortcutExists(Context context, Intent intent, UserHandleCompat user) {
911 assertWorkspaceLoaded();
Sunny Goyaldfde9992015-05-01 12:31:32 -0700912 final String intentWithPkg, intentWithoutPkg;
Sunny Goyal756adbc2015-04-16 15:20:51 -0700913 final String packageName;
Sunny Goyal2a6cf092014-06-26 15:27:14 -0700914 if (intent.getComponent() != null) {
915 // If component is not null, an intent with null package will produce
916 // the same result and should also be a match.
Sunny Goyal756adbc2015-04-16 15:20:51 -0700917 packageName = intent.getComponent().getPackageName();
Sunny Goyal2a6cf092014-06-26 15:27:14 -0700918 if (intent.getPackage() != null) {
Sunny Goyaldfde9992015-05-01 12:31:32 -0700919 intentWithPkg = intent.toUri(0);
920 intentWithoutPkg = new Intent(intent).setPackage(null).toUri(0);
Sunny Goyal2a6cf092014-06-26 15:27:14 -0700921 } else {
Sunny Goyaldfde9992015-05-01 12:31:32 -0700922 intentWithPkg = new Intent(intent).setPackage(packageName).toUri(0);
923 intentWithoutPkg = intent.toUri(0);
Sunny Goyal2a6cf092014-06-26 15:27:14 -0700924 }
925 } else {
Sunny Goyaldfde9992015-05-01 12:31:32 -0700926 intentWithPkg = intent.toUri(0);
927 intentWithoutPkg = intent.toUri(0);
Sunny Goyal756adbc2015-04-16 15:20:51 -0700928 packageName = intent.getPackage();
Sunny Goyal2a6cf092014-06-26 15:27:14 -0700929 }
Sunny Goyal756adbc2015-04-16 15:20:51 -0700930
931 synchronized (sBgLock) {
Sunny Goyale2df0622015-04-24 11:27:00 -0700932 for (ItemInfo item : sBgItemsIdMap) {
Sunny Goyal756adbc2015-04-16 15:20:51 -0700933 if (item instanceof ShortcutInfo) {
934 ShortcutInfo info = (ShortcutInfo) item;
Sunny Goyaldfde9992015-05-01 12:31:32 -0700935 if (info.getIntent() != null && info.user.equals(user)) {
936 String s = info.getIntent().toUri(0);
937 if (intentWithPkg.equals(s) || intentWithoutPkg.equals(s)) {
938 return true;
939 }
Sunny Goyal756adbc2015-04-16 15:20:51 -0700940 }
941 }
942 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800943 }
Sunny Goyal756adbc2015-04-16 15:20:51 -0700944 return false;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -0700945 }
946
Joe Onorato9c1289c2009-08-17 11:03:03 -0400947 /**
948 * Find a folder in the db, creating the FolderInfo if necessary, and adding it to folderList.
949 */
Sunny Goyale2df0622015-04-24 11:27:00 -0700950 FolderInfo getFolderById(Context context, LongArrayMap<FolderInfo> folderList, long id) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400951 final ContentResolver cr = context.getContentResolver();
952 Cursor c = cr.query(LauncherSettings.Favorites.CONTENT_URI, null,
953 "_id=? and (itemType=? or itemType=?)",
954 new String[] { String.valueOf(id),
Adam Cohendf2cc412011-04-27 16:56:57 -0700955 String.valueOf(LauncherSettings.Favorites.ITEM_TYPE_FOLDER)}, null);
The Android Open Source Projectca9475f2009-03-13 13:04:24 -0700956
Joe Onorato9c1289c2009-08-17 11:03:03 -0400957 try {
958 if (c.moveToFirst()) {
959 final int itemTypeIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ITEM_TYPE);
960 final int titleIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.TITLE);
961 final int containerIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CONTAINER);
962 final int screenIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.SCREEN);
963 final int cellXIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CELLX);
964 final int cellYIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CELLY);
Sunny Goyal5d85c442015-03-10 13:14:47 -0700965 final int optionsIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.OPTIONS);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800966
Joe Onorato9c1289c2009-08-17 11:03:03 -0400967 FolderInfo folderInfo = null;
968 switch (c.getInt(itemTypeIndex)) {
Adam Cohendf2cc412011-04-27 16:56:57 -0700969 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
970 folderInfo = findOrMakeFolder(folderList, id);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400971 break;
The Android Open Source Projectf96811c2009-03-18 17:39:48 -0700972 }
973
Sunny Goyala508e4f2015-05-21 09:33:57 -0700974 // Do not trim the folder label, as is was set by the user.
975 folderInfo.title = c.getString(titleIndex);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400976 folderInfo.id = id;
977 folderInfo.container = c.getInt(containerIndex);
Adam Cohendcd297f2013-06-18 13:13:40 -0700978 folderInfo.screenId = c.getInt(screenIndex);
Adam Cohend22015c2010-07-26 22:02:18 -0700979 folderInfo.cellX = c.getInt(cellXIndex);
980 folderInfo.cellY = c.getInt(cellYIndex);
Sunny Goyal5d85c442015-03-10 13:14:47 -0700981 folderInfo.options = c.getInt(optionsIndex);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400982
983 return folderInfo;
The Android Open Source Projectf96811c2009-03-18 17:39:48 -0700984 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400985 } finally {
986 c.close();
The Android Open Source Projectf96811c2009-03-18 17:39:48 -0700987 }
988
989 return null;
990 }
991
Joe Onorato9c1289c2009-08-17 11:03:03 -0400992 /**
993 * Add an item to the database in a specified container. Sets the container, screen, cellX and
994 * cellY fields of the item. Also assigns an ID to the item.
995 */
Sunny Goyal18bf8e22015-04-08 18:13:46 -0700996 public static void addItemToDatabase(Context context, final ItemInfo item, final long container,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -0700997 final long screenId, final int cellX, final int cellY) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400998 item.container = container;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400999 item.cellX = cellX;
1000 item.cellY = cellY;
Winson Chung3d503fb2011-07-13 17:25:49 -07001001 // We store hotseat items in canonical form which is this orientation invariant position
1002 // in the hotseat
Adam Cohendcd297f2013-06-18 13:13:40 -07001003 if (context instanceof Launcher && screenId < 0 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001004 container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001005 item.screenId = ((Launcher) context).getHotseat().getOrderInHotseat(cellX, cellY);
Winson Chung3d503fb2011-07-13 17:25:49 -07001006 } else {
Adam Cohendcd297f2013-06-18 13:13:40 -07001007 item.screenId = screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -07001008 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001009
1010 final ContentValues values = new ContentValues();
1011 final ContentResolver cr = context.getContentResolver();
Kenny Guyed131872014-04-30 03:02:21 +01001012 item.onAddToDatabase(context, values);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001013
Michael Jurka414300a2013-08-27 15:42:35 +02001014 item.id = LauncherAppState.getLauncherProvider().generateNewItemId();
Michael Jurkaa8c760d2011-04-28 14:59:33 -07001015 values.put(LauncherSettings.Favorites._ID, item.id);
Winson Chungaafa03c2010-06-11 17:34:16 -07001016
Jason Monk8e19cf22014-03-20 15:06:57 -04001017 final StackTraceElement[] stackTrace = new Throwable().getStackTrace();
Michael Jurkac9d95c52011-08-29 14:03:34 -07001018 Runnable r = new Runnable() {
Michael Jurkaa8c760d2011-04-28 14:59:33 -07001019 public void run() {
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001020 cr.insert(LauncherSettings.Favorites.CONTENT_URI, values);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001021
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001022 // Lock on mBgLock *after* the db operation
Winson Chung2abf94d2012-07-18 18:16:38 -07001023 synchronized (sBgLock) {
Jason Monk8e19cf22014-03-20 15:06:57 -04001024 checkItemInfoLocked(item.id, item, stackTrace);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001025 sBgItemsIdMap.put(item.id, item);
1026 switch (item.itemType) {
1027 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
1028 sBgFolders.put(item.id, (FolderInfo) item);
1029 // Fall through
1030 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
1031 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
1032 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP ||
1033 item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
1034 sBgWorkspaceItems.add(item);
1035 } else {
1036 if (!sBgFolders.containsKey(item.container)) {
1037 // Adding an item to a folder that doesn't exist.
1038 String msg = "adding item: " + item + " to a folder that " +
1039 " doesn't exist";
Adam Cohen28b3e102012-10-04 17:21:33 -07001040 Log.e(TAG, msg);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001041 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07001042 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001043 break;
1044 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
1045 sBgAppWidgets.add((LauncherAppWidgetInfo) item);
1046 break;
1047 }
Michael Jurkaa8c760d2011-04-28 14:59:33 -07001048 }
1049 }
Michael Jurkac9d95c52011-08-29 14:03:34 -07001050 };
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001051 runOnWorkerThread(r);
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07001052 }
1053
Joe Onorato9c1289c2009-08-17 11:03:03 -04001054 /**
Winson Chungaafa03c2010-06-11 17:34:16 -07001055 * Creates a new unique child id, for a given cell span across all layouts.
1056 */
Michael Jurka845ba3b2010-09-28 17:09:46 -07001057 static int getCellLayoutChildId(
Adam Cohendcd297f2013-06-18 13:13:40 -07001058 long container, long screen, int localCellX, int localCellY, int spanX, int spanY) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001059 return (((int) container & 0xFF) << 24)
Adam Cohendcd297f2013-06-18 13:13:40 -07001060 | ((int) screen & 0xFF) << 16 | (localCellX & 0xFF) << 8 | (localCellY & 0xFF);
Winson Chungaafa03c2010-06-11 17:34:16 -07001061 }
1062
Sunny Goyal34942622014-08-29 17:20:55 -07001063 private static ArrayList<ItemInfo> getItemsByPackageName(
1064 final String pn, final UserHandleCompat user) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07001065 ItemInfoFilter filter = new ItemInfoFilter() {
1066 @Override
1067 public boolean filterItem(ItemInfo parent, ItemInfo info, ComponentName cn) {
1068 return cn.getPackageName().equals(pn) && info.user.equals(user);
1069 }
1070 };
Sunny Goyale2df0622015-04-24 11:27:00 -07001071 return filterItemInfos(sBgItemsIdMap, filter);
Sunny Goyal34942622014-08-29 17:20:55 -07001072 }
1073
1074 /**
1075 * Removes all the items from the database corresponding to the specified package.
1076 */
1077 static void deletePackageFromDatabase(Context context, final String pn,
1078 final UserHandleCompat user) {
1079 deleteItemsFromDatabase(context, getItemsByPackageName(pn, user));
Sunny Goyale7b8cd92014-08-27 14:04:33 -07001080 }
1081
1082 /**
Michael Jurkac9d95c52011-08-29 14:03:34 -07001083 * Removes the specified item from the database
1084 * @param context
1085 * @param item
Joe Onorato9c1289c2009-08-17 11:03:03 -04001086 */
Sunny Goyalfa401a12015-04-10 13:45:42 -07001087 public static void deleteItemFromDatabase(Context context, final ItemInfo item) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07001088 ArrayList<ItemInfo> items = new ArrayList<ItemInfo>();
1089 items.add(item);
1090 deleteItemsFromDatabase(context, items);
1091 }
1092
1093 /**
1094 * Removes the specified items from the database
1095 * @param context
1096 * @param item
1097 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07001098 static void deleteItemsFromDatabase(Context context, final ArrayList<? extends ItemInfo> items) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001099 final ContentResolver cr = context.getContentResolver();
Michael Jurka83df1882011-08-31 20:59:26 -07001100 Runnable r = new Runnable() {
Michael Jurkaa8c760d2011-04-28 14:59:33 -07001101 public void run() {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07001102 for (ItemInfo item : items) {
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001103 final Uri uri = LauncherSettings.Favorites.getContentUri(item.id);
Sunny Goyale7b8cd92014-08-27 14:04:33 -07001104 cr.delete(uri, null, null);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001105
Sunny Goyale7b8cd92014-08-27 14:04:33 -07001106 // Lock on mBgLock *after* the db operation
1107 synchronized (sBgLock) {
1108 switch (item.itemType) {
1109 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
1110 sBgFolders.remove(item.id);
Sunny Goyale2df0622015-04-24 11:27:00 -07001111 for (ItemInfo info: sBgItemsIdMap) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07001112 if (info.container == item.id) {
1113 // We are deleting a folder which still contains items that
1114 // think they are contained by that folder.
1115 String msg = "deleting a folder (" + item + ") which still " +
1116 "contains items (" + info + ")";
1117 Log.e(TAG, msg);
1118 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001119 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07001120 sBgWorkspaceItems.remove(item);
1121 break;
1122 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
1123 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
1124 sBgWorkspaceItems.remove(item);
1125 break;
1126 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
1127 sBgAppWidgets.remove((LauncherAppWidgetInfo) item);
1128 break;
1129 }
1130 sBgItemsIdMap.remove(item.id);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001131 }
Michael Jurkaa8c760d2011-04-28 14:59:33 -07001132 }
1133 }
Michael Jurka83df1882011-08-31 20:59:26 -07001134 };
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001135 runOnWorkerThread(r);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001136 }
1137
1138 /**
Adam Cohendcd297f2013-06-18 13:13:40 -07001139 * Update the order of the workspace screens in the database. The array list contains
1140 * a list of screen ids in the order that they should appear.
1141 */
Winson Chungc9168342013-06-26 14:54:55 -07001142 void updateWorkspaceScreenOrder(Context context, final ArrayList<Long> screens) {
Winson Chung64359a52013-07-08 17:17:08 -07001143 final ArrayList<Long> screensCopy = new ArrayList<Long>(screens);
Adam Cohendcd297f2013-06-18 13:13:40 -07001144 final ContentResolver cr = context.getContentResolver();
1145 final Uri uri = LauncherSettings.WorkspaceScreens.CONTENT_URI;
1146
1147 // Remove any negative screen ids -- these aren't persisted
Winson Chung64359a52013-07-08 17:17:08 -07001148 Iterator<Long> iter = screensCopy.iterator();
Adam Cohendcd297f2013-06-18 13:13:40 -07001149 while (iter.hasNext()) {
1150 long id = iter.next();
1151 if (id < 0) {
1152 iter.remove();
1153 }
1154 }
1155
1156 Runnable r = new Runnable() {
1157 @Override
1158 public void run() {
Yura085c8532014-02-11 15:15:29 +00001159 ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>();
Adam Cohendcd297f2013-06-18 13:13:40 -07001160 // Clear the table
Yura085c8532014-02-11 15:15:29 +00001161 ops.add(ContentProviderOperation.newDelete(uri).build());
Winson Chung76828c82013-08-19 15:43:29 -07001162 int count = screensCopy.size();
Adam Cohendcd297f2013-06-18 13:13:40 -07001163 for (int i = 0; i < count; i++) {
1164 ContentValues v = new ContentValues();
Winson Chung76828c82013-08-19 15:43:29 -07001165 long screenId = screensCopy.get(i);
Adam Cohendcd297f2013-06-18 13:13:40 -07001166 v.put(LauncherSettings.WorkspaceScreens._ID, screenId);
1167 v.put(LauncherSettings.WorkspaceScreens.SCREEN_RANK, i);
Yura085c8532014-02-11 15:15:29 +00001168 ops.add(ContentProviderOperation.newInsert(uri).withValues(v).build());
Adam Cohendcd297f2013-06-18 13:13:40 -07001169 }
Yura085c8532014-02-11 15:15:29 +00001170
1171 try {
1172 cr.applyBatch(LauncherProvider.AUTHORITY, ops);
1173 } catch (Exception ex) {
1174 throw new RuntimeException(ex);
1175 }
Winson Chung9e6a0a22013-08-27 11:58:12 -07001176
Winson Chungba9c37f2013-08-30 14:11:37 -07001177 synchronized (sBgLock) {
Winson Chungba9c37f2013-08-30 14:11:37 -07001178 sBgWorkspaceScreens.clear();
1179 sBgWorkspaceScreens.addAll(screensCopy);
Adam Cohen4caf2982013-08-20 18:54:31 -07001180 }
Adam Cohendcd297f2013-06-18 13:13:40 -07001181 }
1182 };
1183 runOnWorkerThread(r);
1184 }
1185
1186 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04001187 * Remove the contents of the specified folder from the database
1188 */
Sunny Goyalfa401a12015-04-10 13:45:42 -07001189 public static void deleteFolderContentsFromDatabase(Context context, final FolderInfo info) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001190 final ContentResolver cr = context.getContentResolver();
1191
Michael Jurkac9d95c52011-08-29 14:03:34 -07001192 Runnable r = new Runnable() {
1193 public void run() {
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001194 cr.delete(LauncherSettings.Favorites.getContentUri(info.id), null, null);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001195 // Lock on mBgLock *after* the db operation
Winson Chung2abf94d2012-07-18 18:16:38 -07001196 synchronized (sBgLock) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001197 sBgItemsIdMap.remove(info.id);
1198 sBgFolders.remove(info.id);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001199 sBgWorkspaceItems.remove(info);
1200 }
Michael Jurkaa8c760d2011-04-28 14:59:33 -07001201
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001202 cr.delete(LauncherSettings.Favorites.CONTENT_URI,
Michael Jurkac9d95c52011-08-29 14:03:34 -07001203 LauncherSettings.Favorites.CONTAINER + "=" + info.id, null);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001204 // Lock on mBgLock *after* the db operation
Winson Chung2abf94d2012-07-18 18:16:38 -07001205 synchronized (sBgLock) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001206 for (ItemInfo childInfo : info.contents) {
1207 sBgItemsIdMap.remove(childInfo.id);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001208 }
Adam Cohenafb01ee2011-06-23 15:38:03 -07001209 }
Michael Jurkac9d95c52011-08-29 14:03:34 -07001210 }
1211 };
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001212 runOnWorkerThread(r);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001213 }
1214
1215 /**
1216 * Set this as the current Launcher activity object for the loader.
1217 */
1218 public void initialize(Callbacks callbacks) {
1219 synchronized (mLock) {
Sunny Goyald33860f2015-04-23 16:02:20 -07001220 // Disconnect any of the callbacks and drawables associated with ItemInfos on the
1221 // workspace to prevent leaking Launcher activities on orientation change.
1222 unbindItemInfosAndClearQueuedBindRunnables();
Joe Onorato9c1289c2009-08-17 11:03:03 -04001223 mCallbacks = new WeakReference<Callbacks>(callbacks);
1224 }
1225 }
1226
Kenny Guyed131872014-04-30 03:02:21 +01001227 @Override
Kenny Guyc2bd8102014-06-30 12:30:31 +01001228 public void onPackageChanged(String packageName, UserHandleCompat user) {
Kenny Guyed131872014-04-30 03:02:21 +01001229 int op = PackageUpdatedTask.OP_UPDATE;
1230 enqueuePackageUpdated(new PackageUpdatedTask(op, new String[] { packageName },
1231 user));
1232 }
1233
1234 @Override
Kenny Guyc2bd8102014-06-30 12:30:31 +01001235 public void onPackageRemoved(String packageName, UserHandleCompat user) {
Kenny Guyed131872014-04-30 03:02:21 +01001236 int op = PackageUpdatedTask.OP_REMOVE;
1237 enqueuePackageUpdated(new PackageUpdatedTask(op, new String[] { packageName },
1238 user));
1239 }
1240
1241 @Override
Kenny Guyc2bd8102014-06-30 12:30:31 +01001242 public void onPackageAdded(String packageName, UserHandleCompat user) {
Kenny Guyed131872014-04-30 03:02:21 +01001243 int op = PackageUpdatedTask.OP_ADD;
1244 enqueuePackageUpdated(new PackageUpdatedTask(op, new String[] { packageName },
1245 user));
1246 }
1247
1248 @Override
Kenny Guyc2bd8102014-06-30 12:30:31 +01001249 public void onPackagesAvailable(String[] packageNames, UserHandleCompat user,
Kenny Guyed131872014-04-30 03:02:21 +01001250 boolean replacing) {
1251 if (!replacing) {
1252 enqueuePackageUpdated(new PackageUpdatedTask(PackageUpdatedTask.OP_ADD, packageNames,
1253 user));
1254 if (mAppsCanBeOnRemoveableStorage) {
1255 // Only rebind if we support removable storage. It catches the
1256 // case where
1257 // apps on the external sd card need to be reloaded
1258 startLoaderFromBackground();
1259 }
1260 } else {
1261 // If we are replacing then just update the packages in the list
1262 enqueuePackageUpdated(new PackageUpdatedTask(PackageUpdatedTask.OP_UPDATE,
1263 packageNames, user));
1264 }
1265 }
1266
1267 @Override
Kenny Guyc2bd8102014-06-30 12:30:31 +01001268 public void onPackagesUnavailable(String[] packageNames, UserHandleCompat user,
Kenny Guyed131872014-04-30 03:02:21 +01001269 boolean replacing) {
1270 if (!replacing) {
1271 enqueuePackageUpdated(new PackageUpdatedTask(
1272 PackageUpdatedTask.OP_UNAVAILABLE, packageNames,
1273 user));
1274 }
Kenny Guyed131872014-04-30 03:02:21 +01001275 }
1276
Joe Onorato1d8e7bb2009-10-15 19:49:43 -07001277 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04001278 * Call from the handler for ACTION_PACKAGE_ADDED, ACTION_PACKAGE_REMOVED and
1279 * ACTION_PACKAGE_CHANGED.
1280 */
Narayan Kamathcb1a4772011-06-28 13:46:59 +01001281 @Override
Joe Onoratof99f8c12009-10-31 17:27:36 -04001282 public void onReceive(Context context, Intent intent) {
Chris Wrenb358f812014-04-16 13:37:00 -04001283 if (DEBUG_RECEIVER) Log.d(TAG, "onReceive intent=" + intent);
Winson Chungaafa03c2010-06-11 17:34:16 -07001284
Joe Onorato36115782010-06-17 13:28:48 -04001285 final String action = intent.getAction();
Kenny Guyed131872014-04-30 03:02:21 +01001286 if (Intent.ACTION_LOCALE_CHANGED.equals(action)) {
Reena Lee93f824a2011-09-23 17:20:28 -07001287 // If we have changed locale we need to clear out the labels in all apps/workspace.
1288 forceReload();
1289 } else if (Intent.ACTION_CONFIGURATION_CHANGED.equals(action)) {
1290 // Check if configuration change was an mcc/mnc change which would affect app resources
1291 // and we would need to clear out the labels in all apps/workspace. Same handling as
1292 // above for ACTION_LOCALE_CHANGED
1293 Configuration currentConfig = context.getResources().getConfiguration();
Reena Lee99a73f32011-10-24 17:27:37 -07001294 if (mPreviousConfigMcc != currentConfig.mcc) {
Reena Lee93f824a2011-09-23 17:20:28 -07001295 Log.d(TAG, "Reload apps on config change. curr_mcc:"
Reena Lee99a73f32011-10-24 17:27:37 -07001296 + currentConfig.mcc + " prevmcc:" + mPreviousConfigMcc);
Reena Lee93f824a2011-09-23 17:20:28 -07001297 forceReload();
1298 }
1299 // Update previousConfig
Reena Lee99a73f32011-10-24 17:27:37 -07001300 mPreviousConfigMcc = currentConfig.mcc;
Winson Chungcbf7c4d2011-08-23 11:58:54 -07001301 } else if (SearchManager.INTENT_GLOBAL_SEARCH_ACTIVITY_CHANGED.equals(action) ||
1302 SearchManager.INTENT_ACTION_SEARCHABLES_CHANGED.equals(action)) {
Sunny Goyale0f58d72014-11-10 18:05:31 -08001303 Callbacks callbacks = getCallback();
1304 if (callbacks != null) {
1305 callbacks.bindSearchablesChanged();
Winson Chungcfdf7ee2011-08-25 11:38:34 -07001306 }
Sunny Goyal957c13f2015-05-01 13:02:20 -07001307 } else if (LauncherAppsCompat.ACTION_MANAGED_PROFILE_ADDED.equals(action)
1308 || LauncherAppsCompat.ACTION_MANAGED_PROFILE_REMOVED.equals(action)) {
1309 forceReload();
Joe Onoratoe9ad59e2010-10-29 17:35:36 -07001310 }
1311 }
1312
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001313 void forceReload() {
Winson Chungf0c6ae02012-03-21 16:10:31 -07001314 resetLoadedState(true, true);
1315
Reena Lee93f824a2011-09-23 17:20:28 -07001316 // Do this here because if the launcher activity is running it will be restarted.
1317 // If it's not running startLoaderFromBackground will merely tell it that it needs
1318 // to reload.
1319 startLoaderFromBackground();
1320 }
1321
Winson Chungf0c6ae02012-03-21 16:10:31 -07001322 public void resetLoadedState(boolean resetAllAppsLoaded, boolean resetWorkspaceLoaded) {
1323 synchronized (mLock) {
1324 // Stop any existing loaders first, so they don't set mAllAppsLoaded or
1325 // mWorkspaceLoaded to true later
1326 stopLoaderLocked();
1327 if (resetAllAppsLoaded) mAllAppsLoaded = false;
1328 if (resetWorkspaceLoaded) mWorkspaceLoaded = false;
1329 }
1330 }
1331
Joe Onoratoe9ad59e2010-10-29 17:35:36 -07001332 /**
1333 * When the launcher is in the background, it's possible for it to miss paired
1334 * configuration changes. So whenever we trigger the loader from the background
1335 * tell the launcher that it needs to re-run the loader when it comes back instead
1336 * of doing it now.
1337 */
1338 public void startLoaderFromBackground() {
1339 boolean runLoader = false;
Sunny Goyale0f58d72014-11-10 18:05:31 -08001340 Callbacks callbacks = getCallback();
1341 if (callbacks != null) {
1342 // Only actually run the loader if they're not paused.
1343 if (!callbacks.setLoadOnResume()) {
1344 runLoader = true;
Joe Onoratoe9ad59e2010-10-29 17:35:36 -07001345 }
1346 }
1347 if (runLoader) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001348 startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato790c2d92010-06-11 00:14:11 -07001349 }
Joe Onorato36115782010-06-17 13:28:48 -04001350 }
Joe Onoratof99f8c12009-10-31 17:27:36 -04001351
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001352 /**
1353 * If there is already a loader task running, tell it to stop.
1354 */
1355 private void stopLoaderLocked() {
Reena Lee93f824a2011-09-23 17:20:28 -07001356 LoaderTask oldTask = mLoaderTask;
1357 if (oldTask != null) {
Reena Lee93f824a2011-09-23 17:20:28 -07001358 oldTask.stopLocked();
1359 }
Reena Lee93f824a2011-09-23 17:20:28 -07001360 }
1361
Adam Cohen1a85c582014-09-30 09:48:49 -07001362 public boolean isCurrentCallbacks(Callbacks callbacks) {
1363 return (mCallbacks != null && mCallbacks.get() == callbacks);
1364 }
1365
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001366 public void startLoader(int synchronousBindPage) {
1367 startLoader(synchronousBindPage, LOADER_FLAG_NONE);
Dan Sandlerd5024042014-01-09 15:01:33 -05001368 }
1369
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001370 public void startLoader(int synchronousBindPage, int loadFlags) {
Sunny Goyal756adbc2015-04-16 15:20:51 -07001371 // Enable queue before starting loader. It will get disabled in Launcher#finishBindingItems
1372 InstallShortcutReceiver.enableInstallQueue();
Joe Onorato36115782010-06-17 13:28:48 -04001373 synchronized (mLock) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001374 // Clear any deferred bind-runnables from the synchronized load process
1375 // We must do this before any loading/binding is scheduled below.
Jason Monka0a7a742014-04-22 09:23:19 -04001376 synchronized (mDeferredBindRunnables) {
1377 mDeferredBindRunnables.clear();
1378 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001379
Joe Onorato36115782010-06-17 13:28:48 -04001380 // Don't bother to start the thread if we know it's not going to do anything
1381 if (mCallbacks != null && mCallbacks.get() != null) {
1382 // If there is already one running, tell it to stop.
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001383 stopLoaderLocked();
1384 mLoaderTask = new LoaderTask(mApp.getContext(), loadFlags);
Derek Prothro7aff3992013-12-10 14:00:37 -05001385 if (synchronousBindPage != PagedView.INVALID_RESTORE_PAGE
Sunny Goyalf5cd9982015-05-18 15:19:29 -07001386 && mAllAppsLoaded && mWorkspaceLoaded && !mIsLoaderTaskRunning) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001387 mLoaderTask.runBindSynchronousPage(synchronousBindPage);
1388 } else {
1389 sWorkerThread.setPriority(Thread.NORM_PRIORITY);
1390 sWorker.post(mLoaderTask);
1391 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001392 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001393 }
1394 }
1395
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001396 void bindRemainingSynchronousPages() {
1397 // Post the remaining side pages to be loaded
1398 if (!mDeferredBindRunnables.isEmpty()) {
Jason Monka0a7a742014-04-22 09:23:19 -04001399 Runnable[] deferredBindRunnables = null;
1400 synchronized (mDeferredBindRunnables) {
1401 deferredBindRunnables = mDeferredBindRunnables.toArray(
1402 new Runnable[mDeferredBindRunnables.size()]);
1403 mDeferredBindRunnables.clear();
1404 }
1405 for (final Runnable r : deferredBindRunnables) {
Sunny Goyald33860f2015-04-23 16:02:20 -07001406 mHandler.post(r);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001407 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001408 }
Sunny Goyal756a28a2015-04-23 17:07:55 -07001409
1410 // Run all the bind complete runnables after workspace is bound.
1411 if (!mBindCompleteRunnables.isEmpty()) {
1412 synchronized (mBindCompleteRunnables) {
1413 for (final Runnable r : mBindCompleteRunnables) {
1414 runOnWorkerThread(r);
1415 }
1416 mBindCompleteRunnables.clear();
1417 }
1418 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001419 }
1420
Joe Onorato36115782010-06-17 13:28:48 -04001421 public void stopLoader() {
1422 synchronized (mLock) {
1423 if (mLoaderTask != null) {
1424 mLoaderTask.stopLocked();
Joe Onorato9c1289c2009-08-17 11:03:03 -04001425 }
1426 }
Joe Onorato36115782010-06-17 13:28:48 -04001427 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001428
Sunny Goyalc1b7c2e2015-01-16 16:19:04 -08001429 /**
1430 * Loads the workspace screen ids in an ordered list.
1431 */
Adam Cohen091440a2015-03-18 14:16:05 -07001432 @Thunk static ArrayList<Long> loadWorkspaceScreensDb(Context context) {
Winson Chung76828c82013-08-19 15:43:29 -07001433 final ContentResolver contentResolver = context.getContentResolver();
1434 final Uri screensUri = LauncherSettings.WorkspaceScreens.CONTENT_URI;
Winson Chung76828c82013-08-19 15:43:29 -07001435
Sunny Goyalc1b7c2e2015-01-16 16:19:04 -08001436 // Get screens ordered by rank.
1437 final Cursor sc = contentResolver.query(screensUri, null, null, null,
1438 LauncherSettings.WorkspaceScreens.SCREEN_RANK);
1439 ArrayList<Long> screenIds = new ArrayList<Long>();
Winson Chung76828c82013-08-19 15:43:29 -07001440 try {
Sunny Goyalc1b7c2e2015-01-16 16:19:04 -08001441 final int idIndex = sc.getColumnIndexOrThrow(LauncherSettings.WorkspaceScreens._ID);
Winson Chung76828c82013-08-19 15:43:29 -07001442 while (sc.moveToNext()) {
1443 try {
Sunny Goyalc1b7c2e2015-01-16 16:19:04 -08001444 screenIds.add(sc.getLong(idIndex));
Winson Chung76828c82013-08-19 15:43:29 -07001445 } catch (Exception e) {
Sunny Goyalc1b7c2e2015-01-16 16:19:04 -08001446 Launcher.addDumpLog(TAG, "Desktop items loading interrupted"
1447 + " - invalid screens: " + e, true);
Winson Chung76828c82013-08-19 15:43:29 -07001448 }
1449 }
1450 } finally {
1451 sc.close();
1452 }
Sunny Goyalc1b7c2e2015-01-16 16:19:04 -08001453 return screenIds;
Winson Chung76828c82013-08-19 15:43:29 -07001454 }
1455
Michael Jurkac57b7a82011-08-09 22:02:20 -07001456 public boolean isAllAppsLoaded() {
1457 return mAllAppsLoaded;
1458 }
1459
Winson Chung36a62fe2012-05-06 18:04:42 -07001460 boolean isLoadingWorkspace() {
1461 synchronized (mLock) {
1462 if (mLoaderTask != null) {
1463 return mLoaderTask.isLoadingWorkspace();
1464 }
1465 }
1466 return false;
1467 }
1468
Joe Onorato36115782010-06-17 13:28:48 -04001469 /**
1470 * Runnable for the thread that loads the contents of the launcher:
1471 * - workspace icons
1472 * - widgets
1473 * - all apps icons
1474 */
1475 private class LoaderTask implements Runnable {
1476 private Context mContext;
Adam Cohen091440a2015-03-18 14:16:05 -07001477 @Thunk boolean mIsLoadingAndBindingWorkspace;
Joe Onorato36115782010-06-17 13:28:48 -04001478 private boolean mStopped;
Adam Cohen091440a2015-03-18 14:16:05 -07001479 @Thunk boolean mLoadAndBindStepFinished;
Dan Sandlerd5024042014-01-09 15:01:33 -05001480 private int mFlags;
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001481
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001482 LoaderTask(Context context, int flags) {
Joe Onorato36115782010-06-17 13:28:48 -04001483 mContext = context;
Dan Sandlerd5024042014-01-09 15:01:33 -05001484 mFlags = flags;
Joe Onorato9c1289c2009-08-17 11:03:03 -04001485 }
1486
Winson Chung36a62fe2012-05-06 18:04:42 -07001487 boolean isLoadingWorkspace() {
1488 return mIsLoadingAndBindingWorkspace;
1489 }
1490
Sunny Goyal66cfdc22015-02-02 13:01:51 -08001491 private void loadAndBindWorkspace() {
Winson Chung36a62fe2012-05-06 18:04:42 -07001492 mIsLoadingAndBindingWorkspace = true;
1493
Joe Onorato36115782010-06-17 13:28:48 -04001494 // Load the workspace
Joe Onorato36115782010-06-17 13:28:48 -04001495 if (DEBUG_LOADERS) {
1496 Log.d(TAG, "loadAndBindWorkspace mWorkspaceLoaded=" + mWorkspaceLoaded);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001497 }
Michael Jurka288a36b2011-07-12 16:53:48 -07001498
Michael Jurkaa8c760d2011-04-28 14:59:33 -07001499 if (!mWorkspaceLoaded) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08001500 loadWorkspace();
Reena Lee93f824a2011-09-23 17:20:28 -07001501 synchronized (LoaderTask.this) {
1502 if (mStopped) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08001503 return;
Reena Lee93f824a2011-09-23 17:20:28 -07001504 }
1505 mWorkspaceLoaded = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -04001506 }
1507 }
1508
Joe Onorato36115782010-06-17 13:28:48 -04001509 // Bind the workspace
Sunny Goyal66cfdc22015-02-02 13:01:51 -08001510 bindWorkspace(-1);
Joe Onorato36115782010-06-17 13:28:48 -04001511 }
Daniel Sandler843e8602010-06-07 14:59:01 -04001512
Joe Onorato36115782010-06-17 13:28:48 -04001513 private void waitForIdle() {
1514 // Wait until the either we're stopped or the other threads are done.
1515 // This way we don't start loading all apps until the workspace has settled
1516 // down.
1517 synchronized (LoaderTask.this) {
1518 final long workspaceWaitTime = DEBUG_LOADERS ? SystemClock.uptimeMillis() : 0;
Joe Onoratocc67f472010-06-08 10:54:30 -07001519
Joe Onorato36115782010-06-17 13:28:48 -04001520 mHandler.postIdle(new Runnable() {
1521 public void run() {
1522 synchronized (LoaderTask.this) {
1523 mLoadAndBindStepFinished = true;
1524 if (DEBUG_LOADERS) {
1525 Log.d(TAG, "done with previous binding step");
Daniel Sandler843e8602010-06-07 14:59:01 -04001526 }
Joe Onorato36115782010-06-17 13:28:48 -04001527 LoaderTask.this.notify();
Daniel Sandler843e8602010-06-07 14:59:01 -04001528 }
Daniel Sandler843e8602010-06-07 14:59:01 -04001529 }
Joe Onorato36115782010-06-17 13:28:48 -04001530 });
1531
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08001532 while (!mStopped && !mLoadAndBindStepFinished) {
Joe Onorato36115782010-06-17 13:28:48 -04001533 try {
Michael Jurkac7700af2013-05-14 20:17:58 +02001534 // Just in case mFlushingWorkerThread changes but we aren't woken up,
1535 // wait no longer than 1sec at a time
1536 this.wait(1000);
Joe Onorato36115782010-06-17 13:28:48 -04001537 } catch (InterruptedException ex) {
1538 // Ignore
Daniel Sandler843e8602010-06-07 14:59:01 -04001539 }
1540 }
Joe Onorato36115782010-06-17 13:28:48 -04001541 if (DEBUG_LOADERS) {
1542 Log.d(TAG, "waited "
Winson Chungaafa03c2010-06-11 17:34:16 -07001543 + (SystemClock.uptimeMillis()-workspaceWaitTime)
Joe Onorato36115782010-06-17 13:28:48 -04001544 + "ms for previous step to finish binding");
1545 }
Daniel Sandler843e8602010-06-07 14:59:01 -04001546 }
Joe Onorato36115782010-06-17 13:28:48 -04001547 }
Daniel Sandler843e8602010-06-07 14:59:01 -04001548
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001549 void runBindSynchronousPage(int synchronousBindPage) {
Derek Prothro7aff3992013-12-10 14:00:37 -05001550 if (synchronousBindPage == PagedView.INVALID_RESTORE_PAGE) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001551 // Ensure that we have a valid page index to load synchronously
1552 throw new RuntimeException("Should not call runBindSynchronousPage() without " +
1553 "valid page index");
1554 }
1555 if (!mAllAppsLoaded || !mWorkspaceLoaded) {
1556 // Ensure that we don't try and bind a specified page when the pages have not been
1557 // loaded already (we should load everything asynchronously in that case)
1558 throw new RuntimeException("Expecting AllApps and Workspace to be loaded");
1559 }
1560 synchronized (mLock) {
1561 if (mIsLoaderTaskRunning) {
1562 // Ensure that we are never running the background loading at this point since
1563 // we also touch the background collections
1564 throw new RuntimeException("Error! Background loading is already running");
1565 }
1566 }
1567
1568 // XXX: Throw an exception if we are already loading (since we touch the worker thread
1569 // data structures, we can't allow any other thread to touch that data, but because
1570 // this call is synchronous, we can get away with not locking).
1571
Daniel Sandlercc8befa2013-06-11 14:45:48 -04001572 // The LauncherModel is static in the LauncherAppState and mHandler may have queued
Adam Cohena13a2f22012-07-23 14:29:15 -07001573 // operations from the previous activity. We need to ensure that all queued operations
1574 // are executed before any synchronous binding work is done.
1575 mHandler.flush();
1576
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001577 // Divide the set of loaded items into those that we are binding synchronously, and
1578 // everything else that is to be bound normally (asynchronously).
Sunny Goyal66cfdc22015-02-02 13:01:51 -08001579 bindWorkspace(synchronousBindPage);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001580 // XXX: For now, continue posting the binding of AllApps as there are other issues that
1581 // arise from that.
1582 onlyBindAllApps();
1583 }
1584
Joe Onorato36115782010-06-17 13:28:48 -04001585 public void run() {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001586 synchronized (mLock) {
Sunny Goyalf5cd9982015-05-18 15:19:29 -07001587 if (mStopped) {
1588 return;
1589 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001590 mIsLoaderTaskRunning = true;
1591 }
Joe Onorato36115782010-06-17 13:28:48 -04001592 // Optimize for end-user experience: if the Launcher is up and // running with the
1593 // All Apps interface in the foreground, load All Apps first. Otherwise, load the
1594 // workspace first (default).
Joe Onorato36115782010-06-17 13:28:48 -04001595 keep_running: {
Winson Chung64359a52013-07-08 17:17:08 -07001596 if (DEBUG_LOADERS) Log.d(TAG, "step 1: loading workspace");
Sunny Goyal66cfdc22015-02-02 13:01:51 -08001597 loadAndBindWorkspace();
Daniel Sandler843e8602010-06-07 14:59:01 -04001598
Joe Onorato36115782010-06-17 13:28:48 -04001599 if (mStopped) {
1600 break keep_running;
1601 }
1602
Joe Onorato36115782010-06-17 13:28:48 -04001603 waitForIdle();
Daniel Sandler843e8602010-06-07 14:59:01 -04001604
1605 // second step
Winson Chung64359a52013-07-08 17:17:08 -07001606 if (DEBUG_LOADERS) Log.d(TAG, "step 2: loading all apps");
1607 loadAndBindAllApps();
Joe Onorato36115782010-06-17 13:28:48 -04001608 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001609
Joe Onorato36115782010-06-17 13:28:48 -04001610 // Clear out this reference, otherwise we end up holding it until all of the
1611 // callback runnables are done.
1612 mContext = null;
Joe Onorato9c1289c2009-08-17 11:03:03 -04001613
Joe Onorato36115782010-06-17 13:28:48 -04001614 synchronized (mLock) {
1615 // If we are still the last one to be scheduled, remove ourselves.
1616 if (mLoaderTask == this) {
1617 mLoaderTask = null;
Joe Onorato9c1289c2009-08-17 11:03:03 -04001618 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001619 mIsLoaderTaskRunning = false;
Sunny Goyal756a28a2015-04-23 17:07:55 -07001620 mHasLoaderCompletedOnce = true;
Joe Onorato36115782010-06-17 13:28:48 -04001621 }
Joe Onorato36115782010-06-17 13:28:48 -04001622 }
1623
1624 public void stopLocked() {
1625 synchronized (LoaderTask.this) {
1626 mStopped = true;
1627 this.notify();
1628 }
1629 }
1630
1631 /**
1632 * Gets the callbacks object. If we've been stopped, or if the launcher object
1633 * has somehow been garbage collected, return null instead. Pass in the Callbacks
1634 * object that was around when the deferred message was scheduled, and if there's
1635 * a new Callbacks object around then also return null. This will save us from
1636 * calling onto it with data that will be ignored.
1637 */
1638 Callbacks tryGetCallbacks(Callbacks oldCallbacks) {
1639 synchronized (mLock) {
1640 if (mStopped) {
1641 return null;
Daniel Sandler8802e962010-05-26 16:28:16 -04001642 }
Joe Onorato36115782010-06-17 13:28:48 -04001643
1644 if (mCallbacks == null) {
1645 return null;
Daniel Sandler8802e962010-05-26 16:28:16 -04001646 }
Joe Onorato36115782010-06-17 13:28:48 -04001647
1648 final Callbacks callbacks = mCallbacks.get();
1649 if (callbacks != oldCallbacks) {
1650 return null;
1651 }
1652 if (callbacks == null) {
1653 Log.w(TAG, "no mCallbacks");
1654 return null;
1655 }
1656
1657 return callbacks;
1658 }
1659 }
1660
1661 // check & update map of what's occupied; used to discard overlapping/invalid items
Sunny Goyale2df0622015-04-24 11:27:00 -07001662 private boolean checkItemPlacement(LongArrayMap<ItemInfo[][]> occupied, ItemInfo item) {
Winson Chung892c74d2013-08-22 16:15:50 -07001663 LauncherAppState app = LauncherAppState.getInstance();
Adam Cohen2e6da152015-05-06 11:42:25 -07001664 InvariantDeviceProfile profile = app.getInvariantDeviceProfile();
1665 final int countX = (int) profile.numColumns;
1666 final int countY = (int) profile.numRows;
Winson Chung892c74d2013-08-22 16:15:50 -07001667
Adam Cohendcd297f2013-06-18 13:13:40 -07001668 long containerIndex = item.screenId;
Winson Chungf30ad5f2011-08-08 10:55:42 -07001669 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
Winson Chunga0b7e862013-09-05 16:03:15 -07001670 // Return early if we detect that an item is under the hotseat button
1671 if (mCallbacks == null ||
1672 mCallbacks.get().isAllAppsButtonRank((int) item.screenId)) {
Dan Sandler295ae182013-12-10 16:05:47 -05001673 Log.e(TAG, "Error loading shortcut into hotseat " + item
1674 + " into position (" + item.screenId + ":" + item.cellX + ","
1675 + item.cellY + ") occupied by all apps");
Winson Chunga0b7e862013-09-05 16:03:15 -07001676 return false;
1677 }
1678
Dan Sandler295ae182013-12-10 16:05:47 -05001679 final ItemInfo[][] hotseatItems =
1680 occupied.get((long) LauncherSettings.Favorites.CONTAINER_HOTSEAT);
1681
Adam Cohen2e6da152015-05-06 11:42:25 -07001682 if (item.screenId >= profile.numHotseatIcons) {
Adam Cohenae4409d2013-11-26 10:34:59 -08001683 Log.e(TAG, "Error loading shortcut " + item
1684 + " into hotseat position " + item.screenId
Adam Cohen2e6da152015-05-06 11:42:25 -07001685 + ", position out of bounds: (0 to " + (profile.numHotseatIcons - 1)
Adam Cohenae4409d2013-11-26 10:34:59 -08001686 + ")");
1687 return false;
1688 }
1689
Dan Sandler295ae182013-12-10 16:05:47 -05001690 if (hotseatItems != null) {
1691 if (hotseatItems[(int) item.screenId][0] != null) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001692 Log.e(TAG, "Error loading shortcut into hotseat " + item
1693 + " into position (" + item.screenId + ":" + item.cellX + ","
1694 + item.cellY + ") occupied by "
1695 + occupied.get(LauncherSettings.Favorites.CONTAINER_HOTSEAT)
1696 [(int) item.screenId][0]);
1697 return false;
Dan Sandler295ae182013-12-10 16:05:47 -05001698 } else {
1699 hotseatItems[(int) item.screenId][0] = item;
1700 return true;
Adam Cohendcd297f2013-06-18 13:13:40 -07001701 }
Winson Chung6ba2a1b2011-09-02 16:22:11 -07001702 } else {
Adam Cohen2e6da152015-05-06 11:42:25 -07001703 final ItemInfo[][] items = new ItemInfo[(int) profile.numHotseatIcons][1];
Adam Cohendcd297f2013-06-18 13:13:40 -07001704 items[(int) item.screenId][0] = item;
1705 occupied.put((long) LauncherSettings.Favorites.CONTAINER_HOTSEAT, items);
Winson Chung6ba2a1b2011-09-02 16:22:11 -07001706 return true;
1707 }
Winson Chungf30ad5f2011-08-08 10:55:42 -07001708 } else if (item.container != LauncherSettings.Favorites.CONTAINER_DESKTOP) {
1709 // Skip further checking if it is not the hotseat or workspace container
Daniel Sandler8802e962010-05-26 16:28:16 -04001710 return true;
1711 }
Winson Chungf30ad5f2011-08-08 10:55:42 -07001712
Adam Cohendcd297f2013-06-18 13:13:40 -07001713 if (!occupied.containsKey(item.screenId)) {
Winson Chung892c74d2013-08-22 16:15:50 -07001714 ItemInfo[][] items = new ItemInfo[countX + 1][countY + 1];
Adam Cohendcd297f2013-06-18 13:13:40 -07001715 occupied.put(item.screenId, items);
1716 }
1717
Dan Sandler295ae182013-12-10 16:05:47 -05001718 final ItemInfo[][] screens = occupied.get(item.screenId);
Adam Cohenae4409d2013-11-26 10:34:59 -08001719 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP &&
1720 item.cellX < 0 || item.cellY < 0 ||
1721 item.cellX + item.spanX > countX || item.cellY + item.spanY > countY) {
1722 Log.e(TAG, "Error loading shortcut " + item
1723 + " into cell (" + containerIndex + "-" + item.screenId + ":"
1724 + item.cellX + "," + item.cellY
1725 + ") out of screen bounds ( " + countX + "x" + countY + ")");
1726 return false;
1727 }
1728
Winson Chung6ba2a1b2011-09-02 16:22:11 -07001729 // Check if any workspace icons overlap with each other
Joe Onorato36115782010-06-17 13:28:48 -04001730 for (int x = item.cellX; x < (item.cellX+item.spanX); x++) {
1731 for (int y = item.cellY; y < (item.cellY+item.spanY); y++) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001732 if (screens[x][y] != null) {
Joe Onorato36115782010-06-17 13:28:48 -04001733 Log.e(TAG, "Error loading shortcut " + item
Adam Cohendcd297f2013-06-18 13:13:40 -07001734 + " into cell (" + containerIndex + "-" + item.screenId + ":"
Joe Onorato36115782010-06-17 13:28:48 -04001735 + x + "," + y
Winson Chungaafa03c2010-06-11 17:34:16 -07001736 + ") occupied by "
Adam Cohendcd297f2013-06-18 13:13:40 -07001737 + screens[x][y]);
Joe Onorato36115782010-06-17 13:28:48 -04001738 return false;
1739 }
1740 }
1741 }
1742 for (int x = item.cellX; x < (item.cellX+item.spanX); x++) {
1743 for (int y = item.cellY; y < (item.cellY+item.spanY); y++) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001744 screens[x][y] = item;
Joe Onorato36115782010-06-17 13:28:48 -04001745 }
1746 }
Winson Chungf30ad5f2011-08-08 10:55:42 -07001747
Joe Onorato36115782010-06-17 13:28:48 -04001748 return true;
1749 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001750
Winson Chungba9c37f2013-08-30 14:11:37 -07001751 /** Clears all the sBg data structures */
1752 private void clearSBgDataStructures() {
1753 synchronized (sBgLock) {
1754 sBgWorkspaceItems.clear();
1755 sBgAppWidgets.clear();
1756 sBgFolders.clear();
1757 sBgItemsIdMap.clear();
Winson Chungba9c37f2013-08-30 14:11:37 -07001758 sBgWorkspaceScreens.clear();
1759 }
1760 }
1761
Sunny Goyal66cfdc22015-02-02 13:01:51 -08001762 private void loadWorkspace() {
Joe Onorato36115782010-06-17 13:28:48 -04001763 final long t = DEBUG_LOADERS ? SystemClock.uptimeMillis() : 0;
Joe Onorato9c1289c2009-08-17 11:03:03 -04001764
Joe Onorato36115782010-06-17 13:28:48 -04001765 final Context context = mContext;
1766 final ContentResolver contentResolver = context.getContentResolver();
1767 final PackageManager manager = context.getPackageManager();
Joe Onorato36115782010-06-17 13:28:48 -04001768 final boolean isSafeMode = manager.isSafeMode();
Sunny Goyalf599ccf2014-07-08 13:01:29 -07001769 final LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(context);
1770 final boolean isSdCardReady = context.registerReceiver(null,
Sunny Goyal05e318d2014-07-29 11:49:35 -07001771 new IntentFilter(StartupReceiver.SYSTEM_READY)) != null;
Joe Onorato3c2f7e12009-10-31 19:17:31 -04001772
Winson Chung892c74d2013-08-22 16:15:50 -07001773 LauncherAppState app = LauncherAppState.getInstance();
Adam Cohen2e6da152015-05-06 11:42:25 -07001774 InvariantDeviceProfile profile = app.getInvariantDeviceProfile();
1775 int countX = (int) profile.numColumns;
1776 int countY = (int) profile.numRows;
Winson Chung892c74d2013-08-22 16:15:50 -07001777
Dan Sandlerd5024042014-01-09 15:01:33 -05001778 if ((mFlags & LOADER_FLAG_CLEAR_WORKSPACE) != 0) {
1779 Launcher.addDumpLog(TAG, "loadWorkspace: resetting launcher database", true);
1780 LauncherAppState.getLauncherProvider().deleteDatabase();
1781 }
1782
1783 if ((mFlags & LOADER_FLAG_MIGRATE_SHORTCUTS) != 0) {
1784 // append the user's Launcher2 shortcuts
1785 Launcher.addDumpLog(TAG, "loadWorkspace: migrating from launcher2", true);
1786 LauncherAppState.getLauncherProvider().migrateLauncher2Shortcuts();
1787 } else {
1788 // Make sure the default workspace is loaded
1789 Launcher.addDumpLog(TAG, "loadWorkspace: loading default favorites", false);
Sunny Goyal0fe505b2014-08-06 09:55:36 -07001790 LauncherAppState.getLauncherProvider().loadDefaultFavoritesIfNecessary();
Dan Sandlerd5024042014-01-09 15:01:33 -05001791 }
Adam Cohene25af792013-06-06 23:08:25 -07001792
Winson Chung2abf94d2012-07-18 18:16:38 -07001793 synchronized (sBgLock) {
Winson Chungba9c37f2013-08-30 14:11:37 -07001794 clearSBgDataStructures();
Sunny Goyal756adbc2015-04-16 15:20:51 -07001795 final HashMap<String, Integer> installingPkgs = PackageInstallerCompat
Sunny Goyal94485362014-09-18 16:13:58 -07001796 .getInstance(mContext).updateAndGetActiveSessionCache();
Romain Guy5c16f3e2010-01-12 17:24:58 -08001797
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001798 final ArrayList<Long> itemsToRemove = new ArrayList<Long>();
Chris Wrenf4d08112014-01-16 18:13:56 -05001799 final ArrayList<Long> restoredRows = new ArrayList<Long>();
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001800 final Uri contentUri = LauncherSettings.Favorites.CONTENT_URI;
Chris Wrene523e702013-10-09 10:36:55 -04001801 if (DEBUG_LOADERS) Log.d(TAG, "loading model from " + contentUri);
Adam Cohene25af792013-06-06 23:08:25 -07001802 final Cursor c = contentResolver.query(contentUri, null, null, null, null);
Daniel Sandler8802e962010-05-26 16:28:16 -04001803
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001804 // +1 for the hotseat (it can be larger than the workspace)
1805 // Load workspace in reverse order to ensure that latest items are loaded first (and
1806 // before any earlier duplicates)
Sunny Goyale2df0622015-04-24 11:27:00 -07001807 final LongArrayMap<ItemInfo[][]> occupied = new LongArrayMap<>();
Joe Onorato9c1289c2009-08-17 11:03:03 -04001808
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001809 try {
1810 final int idIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites._ID);
1811 final int intentIndex = c.getColumnIndexOrThrow
1812 (LauncherSettings.Favorites.INTENT);
1813 final int titleIndex = c.getColumnIndexOrThrow
1814 (LauncherSettings.Favorites.TITLE);
1815 final int iconTypeIndex = c.getColumnIndexOrThrow(
1816 LauncherSettings.Favorites.ICON_TYPE);
1817 final int iconIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON);
1818 final int iconPackageIndex = c.getColumnIndexOrThrow(
1819 LauncherSettings.Favorites.ICON_PACKAGE);
1820 final int iconResourceIndex = c.getColumnIndexOrThrow(
1821 LauncherSettings.Favorites.ICON_RESOURCE);
1822 final int containerIndex = c.getColumnIndexOrThrow(
1823 LauncherSettings.Favorites.CONTAINER);
1824 final int itemTypeIndex = c.getColumnIndexOrThrow(
1825 LauncherSettings.Favorites.ITEM_TYPE);
1826 final int appWidgetIdIndex = c.getColumnIndexOrThrow(
1827 LauncherSettings.Favorites.APPWIDGET_ID);
Chris Wrenc3919c02013-09-18 09:48:33 -04001828 final int appWidgetProviderIndex = c.getColumnIndexOrThrow(
1829 LauncherSettings.Favorites.APPWIDGET_PROVIDER);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001830 final int screenIndex = c.getColumnIndexOrThrow(
1831 LauncherSettings.Favorites.SCREEN);
1832 final int cellXIndex = c.getColumnIndexOrThrow
1833 (LauncherSettings.Favorites.CELLX);
1834 final int cellYIndex = c.getColumnIndexOrThrow
1835 (LauncherSettings.Favorites.CELLY);
1836 final int spanXIndex = c.getColumnIndexOrThrow
1837 (LauncherSettings.Favorites.SPANX);
1838 final int spanYIndex = c.getColumnIndexOrThrow(
1839 LauncherSettings.Favorites.SPANY);
Sunny Goyal08f72612015-01-05 13:41:43 -08001840 final int rankIndex = c.getColumnIndexOrThrow(
1841 LauncherSettings.Favorites.RANK);
Chris Wrenf4d08112014-01-16 18:13:56 -05001842 final int restoredIndex = c.getColumnIndexOrThrow(
1843 LauncherSettings.Favorites.RESTORED);
Kenny Guyed131872014-04-30 03:02:21 +01001844 final int profileIdIndex = c.getColumnIndexOrThrow(
1845 LauncherSettings.Favorites.PROFILE_ID);
Sunny Goyal5d85c442015-03-10 13:14:47 -07001846 final int optionsIndex = c.getColumnIndexOrThrow(
1847 LauncherSettings.Favorites.OPTIONS);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001848
Sunny Goyal7f834d22015-04-21 10:10:23 -07001849 final LongSparseArray<UserHandleCompat> allUsers = new LongSparseArray<>();
1850 for (UserHandleCompat user : mUserManager.getUserProfiles()) {
1851 allUsers.put(mUserManager.getSerialNumberForUser(user), user);
1852 }
1853
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001854 ShortcutInfo info;
1855 String intentDescription;
1856 LauncherAppWidgetInfo appWidgetInfo;
1857 int container;
1858 long id;
Robin Lee26ace122015-03-16 19:41:43 +00001859 long serialNumber;
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001860 Intent intent;
Kenny Guyed131872014-04-30 03:02:21 +01001861 UserHandleCompat user;
Joe Onorato9c1289c2009-08-17 11:03:03 -04001862
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001863 while (!mStopped && c.moveToNext()) {
1864 try {
1865 int itemType = c.getInt(itemTypeIndex);
Chris Wrenf4d08112014-01-16 18:13:56 -05001866 boolean restored = 0 != c.getInt(restoredIndex);
Sunny Goyalf599ccf2014-07-08 13:01:29 -07001867 boolean allowMissingTarget = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -04001868
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001869 switch (itemType) {
1870 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
1871 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungee055712013-07-30 14:46:24 -07001872 id = c.getLong(idIndex);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001873 intentDescription = c.getString(intentIndex);
Robin Lee26ace122015-03-16 19:41:43 +00001874 serialNumber = c.getInt(profileIdIndex);
Sunny Goyal7f834d22015-04-21 10:10:23 -07001875 user = allUsers.get(serialNumber);
Sunny Goyal34942622014-08-29 17:20:55 -07001876 int promiseType = c.getInt(restoredIndex);
Sunny Goyal1a745e82014-10-02 15:58:31 -07001877 int disabledState = 0;
Sunny Goyalbb3b02f2015-01-15 12:00:14 -08001878 boolean itemReplaced = false;
Kenny Guyed131872014-04-30 03:02:21 +01001879 if (user == null) {
1880 // User has been deleted remove the item.
1881 itemsToRemove.add(id);
1882 continue;
1883 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07001884 try {
1885 intent = Intent.parseUri(intentDescription, 0);
Winson Chungee055712013-07-30 14:46:24 -07001886 ComponentName cn = intent.getComponent();
Sunny Goyalf599ccf2014-07-08 13:01:29 -07001887 if (cn != null && cn.getPackageName() != null) {
1888 boolean validPkg = launcherApps.isPackageEnabledForProfile(
1889 cn.getPackageName(), user);
1890 boolean validComponent = validPkg &&
1891 launcherApps.isActivityEnabledForProfile(cn, user);
1892
1893 if (validComponent) {
1894 if (restored) {
1895 // no special handling necessary for this item
1896 restoredRows.add(id);
1897 restored = false;
1898 }
1899 } else if (validPkg) {
Sunny Goyal34942622014-08-29 17:20:55 -07001900 intent = null;
1901 if ((promiseType & ShortcutInfo.FLAG_AUTOINTALL_ICON) != 0) {
1902 // We allow auto install apps to have their intent
1903 // updated after an install.
1904 intent = manager.getLaunchIntentForPackage(
1905 cn.getPackageName());
1906 if (intent != null) {
1907 ContentValues values = new ContentValues();
1908 values.put(LauncherSettings.Favorites.INTENT,
1909 intent.toUri(0));
Sunny Goyalbb3b02f2015-01-15 12:00:14 -08001910 updateItem(id, values);
Sunny Goyal34942622014-08-29 17:20:55 -07001911 }
1912 }
1913
1914 if (intent == null) {
1915 // The app is installed but the component is no
1916 // longer available.
1917 Launcher.addDumpLog(TAG,
1918 "Invalid component removed: " + cn, true);
1919 itemsToRemove.add(id);
1920 continue;
1921 } else {
1922 // no special handling necessary for this item
1923 restoredRows.add(id);
1924 restored = false;
1925 }
Sunny Goyalf599ccf2014-07-08 13:01:29 -07001926 } else if (restored) {
1927 // Package is not yet available but might be
1928 // installed later.
Chris Wrenf4d08112014-01-16 18:13:56 -05001929 Launcher.addDumpLog(TAG,
1930 "package not yet restored: " + cn, true);
Sunny Goyal94485362014-09-18 16:13:58 -07001931
1932 if ((promiseType & ShortcutInfo.FLAG_RESTORE_STARTED) != 0) {
1933 // Restore has started once.
Sunny Goyal756adbc2015-04-16 15:20:51 -07001934 } else if (installingPkgs.containsKey(cn.getPackageName())) {
Sunny Goyal94485362014-09-18 16:13:58 -07001935 // App restore has started. Update the flag
1936 promiseType |= ShortcutInfo.FLAG_RESTORE_STARTED;
1937 ContentValues values = new ContentValues();
1938 values.put(LauncherSettings.Favorites.RESTORED,
1939 promiseType);
Sunny Goyalbb3b02f2015-01-15 12:00:14 -08001940 updateItem(id, values);
1941 } else if ((promiseType & ShortcutInfo.FLAG_RESTORED_APP_TYPE) != 0) {
1942 // This is a common app. Try to replace this.
1943 int appType = CommonAppTypeParser.decodeItemTypeFromFlag(promiseType);
1944 CommonAppTypeParser parser = new CommonAppTypeParser(id, appType, context);
1945 if (parser.findDefaultApp()) {
1946 // Default app found. Replace it.
1947 intent = parser.parsedIntent;
1948 cn = intent.getComponent();
1949 ContentValues values = parser.parsedValues;
1950 values.put(LauncherSettings.Favorites.RESTORED, 0);
1951 updateItem(id, values);
1952 restored = false;
1953 itemReplaced = true;
Sunny Goyal94485362014-09-18 16:13:58 -07001954
Sunny Goyalbb3b02f2015-01-15 12:00:14 -08001955 } else if (REMOVE_UNRESTORED_ICONS) {
1956 Launcher.addDumpLog(TAG,
1957 "Unrestored package removed: " + cn, true);
1958 itemsToRemove.add(id);
1959 continue;
1960 }
Sunny Goyal94485362014-09-18 16:13:58 -07001961 } else if (REMOVE_UNRESTORED_ICONS) {
1962 Launcher.addDumpLog(TAG,
1963 "Unrestored package removed: " + cn, true);
1964 itemsToRemove.add(id);
1965 continue;
1966 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07001967 } else if (launcherApps.isAppEnabled(
1968 manager, cn.getPackageName(),
1969 PackageManager.GET_UNINSTALLED_PACKAGES)) {
1970 // Package is present but not available.
1971 allowMissingTarget = true;
1972 disabledState = ShortcutInfo.FLAG_DISABLED_NOT_AVAILABLE;
1973 } else if (!isSdCardReady) {
Sunny Goyalf599ccf2014-07-08 13:01:29 -07001974 // SdCard is not ready yet. Package might get available,
1975 // once it is ready.
1976 Launcher.addDumpLog(TAG, "Invalid package: " + cn
1977 + " (check again later)", true);
1978 HashSet<String> pkgs = sPendingPackages.get(user);
1979 if (pkgs == null) {
Sameer Padala513edae2014-07-29 16:17:08 -07001980 pkgs = new HashSet<String>();
Sunny Goyalf599ccf2014-07-08 13:01:29 -07001981 sPendingPackages.put(user, pkgs);
1982 }
1983 pkgs.add(cn.getPackageName());
1984 allowMissingTarget = true;
1985 // Add the icon on the workspace anyway.
Sunny Goyal1a745e82014-10-02 15:58:31 -07001986
1987 } else {
1988 // Do not wait for external media load anymore.
1989 // Log the invalid package, and remove it
1990 Launcher.addDumpLog(TAG,
1991 "Invalid package removed: " + cn, true);
1992 itemsToRemove.add(id);
1993 continue;
Winson Chungee055712013-07-30 14:46:24 -07001994 }
Sunny Goyal938a53d2014-09-05 03:17:45 -07001995 } else if (cn == null) {
1996 // For shortcuts with no component, keep them as they are
1997 restoredRows.add(id);
1998 restored = false;
Winson Chungee055712013-07-30 14:46:24 -07001999 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002000 } catch (URISyntaxException e) {
Chris Wrenf4d08112014-01-16 18:13:56 -05002001 Launcher.addDumpLog(TAG,
2002 "Invalid uri: " + intentDescription, true);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002003 continue;
2004 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04002005
Sunny Goyal34b65272015-03-11 16:56:52 -07002006 container = c.getInt(containerIndex);
2007 boolean useLowResIcon = container >= 0 &&
2008 c.getInt(rankIndex) >= FolderIcon.NUM_ITEMS_IN_PREVIEW;
2009
Sunny Goyalbb3b02f2015-01-15 12:00:14 -08002010 if (itemReplaced) {
2011 if (user.equals(UserHandleCompat.myUserHandle())) {
Sunny Goyal4fbc3822015-02-18 16:46:50 -08002012 info = getAppShortcutInfo(manager, intent, user, context, null,
Sunny Goyal34b65272015-03-11 16:56:52 -07002013 iconIndex, titleIndex, false, useLowResIcon);
Sunny Goyalbb3b02f2015-01-15 12:00:14 -08002014 } else {
2015 // Don't replace items for other profiles.
2016 itemsToRemove.add(id);
2017 continue;
2018 }
2019 } else if (restored) {
Kenny Guyed131872014-04-30 03:02:21 +01002020 if (user.equals(UserHandleCompat.myUserHandle())) {
2021 Launcher.addDumpLog(TAG,
2022 "constructing info for partially restored package",
2023 true);
Sunny Goyal34b65272015-03-11 16:56:52 -07002024 info = getRestoredItemInfo(c, titleIndex, intent,
Sunny Goyal5c97f512015-05-19 16:03:28 -07002025 promiseType);
Kenny Guyed131872014-04-30 03:02:21 +01002026 intent = getRestoredItemIntent(c, context, intent);
2027 } else {
2028 // Don't restore items for other profiles.
2029 itemsToRemove.add(id);
2030 continue;
2031 }
Chris Wrenf4d08112014-01-16 18:13:56 -05002032 } else if (itemType ==
2033 LauncherSettings.Favorites.ITEM_TYPE_APPLICATION) {
Sunny Goyal4fbc3822015-02-18 16:46:50 -08002034 info = getAppShortcutInfo(manager, intent, user, context, c,
Sunny Goyal34b65272015-03-11 16:56:52 -07002035 iconIndex, titleIndex, allowMissingTarget, useLowResIcon);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002036 } else {
2037 info = getShortcutInfo(c, context, iconTypeIndex,
2038 iconPackageIndex, iconResourceIndex, iconIndex,
2039 titleIndex);
Michael Jurka96879562012-03-22 05:54:33 -07002040
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002041 // App shortcuts that used to be automatically added to Launcher
2042 // didn't always have the correct intent flags set, so do that
2043 // here
2044 if (intent.getAction() != null &&
Michael Jurka9ad00562012-05-14 12:24:22 -07002045 intent.getCategories() != null &&
2046 intent.getAction().equals(Intent.ACTION_MAIN) &&
Michael Jurka96879562012-03-22 05:54:33 -07002047 intent.getCategories().contains(Intent.CATEGORY_LAUNCHER)) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002048 intent.addFlags(
2049 Intent.FLAG_ACTIVITY_NEW_TASK |
2050 Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
2051 }
Michael Jurka96879562012-03-22 05:54:33 -07002052 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04002053
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002054 if (info != null) {
Winson Chungee055712013-07-30 14:46:24 -07002055 info.id = id;
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002056 info.intent = intent;
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002057 info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002058 info.screenId = c.getInt(screenIndex);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002059 info.cellX = c.getInt(cellXIndex);
2060 info.cellY = c.getInt(cellYIndex);
Sunny Goyal08f72612015-01-05 13:41:43 -08002061 info.rank = c.getInt(rankIndex);
Winson Chung5f8afe62013-08-12 16:19:28 -07002062 info.spanX = 1;
2063 info.spanY = 1;
Kenny Guyed131872014-04-30 03:02:21 +01002064 info.intent.putExtra(ItemInfo.EXTRA_PROFILE, serialNumber);
Sunny Goyal1a745e82014-10-02 15:58:31 -07002065 info.isDisabled = disabledState;
2066 if (isSafeMode && !Utilities.isSystemApp(context, intent)) {
2067 info.isDisabled |= ShortcutInfo.FLAG_DISABLED_SAFEMODE;
2068 }
Adam Cohenae4409d2013-11-26 10:34:59 -08002069
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002070 // check & update map of what's occupied
Sunny Goyalfc0fe6b2014-10-16 12:18:37 -07002071 if (!checkItemPlacement(occupied, info)) {
2072 itemsToRemove.add(id);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002073 break;
2074 }
2075
Sunny Goyal756adbc2015-04-16 15:20:51 -07002076 if (restored) {
2077 ComponentName cn = info.getTargetComponent();
2078 if (cn != null) {
2079 Integer progress = installingPkgs.get(cn.getPackageName());
2080 if (progress != null) {
2081 info.setInstallProgress(progress);
2082 } else {
2083 info.status &= ~ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE;
2084 }
2085 }
2086 }
2087
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002088 switch (container) {
2089 case LauncherSettings.Favorites.CONTAINER_DESKTOP:
2090 case LauncherSettings.Favorites.CONTAINER_HOTSEAT:
2091 sBgWorkspaceItems.add(info);
2092 break;
2093 default:
2094 // Item is in a user folder
2095 FolderInfo folderInfo =
2096 findOrMakeFolder(sBgFolders, container);
2097 folderInfo.add(info);
2098 break;
2099 }
2100 sBgItemsIdMap.put(info.id, info);
Winson Chung1323b482013-08-05 12:41:55 -07002101 } else {
2102 throw new RuntimeException("Unexpected null ShortcutInfo");
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002103 }
2104 break;
2105
2106 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
2107 id = c.getLong(idIndex);
2108 FolderInfo folderInfo = findOrMakeFolder(sBgFolders, id);
2109
Sunny Goyala508e4f2015-05-21 09:33:57 -07002110 // Do not trim the folder label, as is was set by the user.
2111 folderInfo.title = c.getString(titleIndex);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002112 folderInfo.id = id;
Joe Onorato9c1289c2009-08-17 11:03:03 -04002113 container = c.getInt(containerIndex);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002114 folderInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002115 folderInfo.screenId = c.getInt(screenIndex);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002116 folderInfo.cellX = c.getInt(cellXIndex);
2117 folderInfo.cellY = c.getInt(cellYIndex);
Winson Chung5f8afe62013-08-12 16:19:28 -07002118 folderInfo.spanX = 1;
2119 folderInfo.spanY = 1;
Sunny Goyal5d85c442015-03-10 13:14:47 -07002120 folderInfo.options = c.getInt(optionsIndex);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002121
Daniel Sandler8802e962010-05-26 16:28:16 -04002122 // check & update map of what's occupied
Sunny Goyalfc0fe6b2014-10-16 12:18:37 -07002123 if (!checkItemPlacement(occupied, folderInfo)) {
2124 itemsToRemove.add(id);
Daniel Sandler8802e962010-05-26 16:28:16 -04002125 break;
2126 }
Winson Chung5f8afe62013-08-12 16:19:28 -07002127
Joe Onorato9c1289c2009-08-17 11:03:03 -04002128 switch (container) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002129 case LauncherSettings.Favorites.CONTAINER_DESKTOP:
2130 case LauncherSettings.Favorites.CONTAINER_HOTSEAT:
2131 sBgWorkspaceItems.add(folderInfo);
2132 break;
Joe Onorato36115782010-06-17 13:28:48 -04002133 }
Joe Onorato17a89222011-02-08 17:26:11 -08002134
Chris Wrenf4d08112014-01-16 18:13:56 -05002135 if (restored) {
2136 // no special handling required for restored folders
2137 restoredRows.add(id);
2138 }
2139
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002140 sBgItemsIdMap.put(folderInfo.id, folderInfo);
2141 sBgFolders.put(folderInfo.id, folderInfo);
2142 break;
2143
2144 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
Adam Cohen59400422014-03-05 18:07:04 -08002145 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002146 // Read all Launcher-specific widget details
Adam Cohen59400422014-03-05 18:07:04 -08002147 boolean customWidget = itemType ==
2148 LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET;
2149
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002150 int appWidgetId = c.getInt(appWidgetIdIndex);
Sunny Goyal7f834d22015-04-21 10:10:23 -07002151 serialNumber = c.getLong(profileIdIndex);
Chris Wrenc3919c02013-09-18 09:48:33 -04002152 String savedProvider = c.getString(appWidgetProviderIndex);
Joe Onorato36115782010-06-17 13:28:48 -04002153 id = c.getLong(idIndex);
Sunny Goyal7f834d22015-04-21 10:10:23 -07002154 user = allUsers.get(serialNumber);
2155 if (user == null) {
2156 itemsToRemove.add(id);
2157 continue;
2158 }
2159
Sunny Goyalff572272014-07-23 13:58:07 -07002160 final ComponentName component =
2161 ComponentName.unflattenFromString(savedProvider);
Joe Onorato36115782010-06-17 13:28:48 -04002162
Sunny Goyal651077b2014-06-30 14:15:31 -07002163 final int restoreStatus = c.getInt(restoredIndex);
Sunny Goyalff572272014-07-23 13:58:07 -07002164 final boolean isIdValid = (restoreStatus &
2165 LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) == 0;
Sunny Goyalff572272014-07-23 13:58:07 -07002166 final boolean wasProviderReady = (restoreStatus &
2167 LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0;
Sunny Goyal651077b2014-06-30 14:15:31 -07002168
Adam Cohen59400422014-03-05 18:07:04 -08002169 final LauncherAppWidgetProviderInfo provider =
2170 LauncherModel.getProviderInfo(context,
Robin Lee26ace122015-03-16 19:41:43 +00002171 ComponentName.unflattenFromString(savedProvider),
Sunny Goyal7f834d22015-04-21 10:10:23 -07002172 user);
Sunny Goyalff572272014-07-23 13:58:07 -07002173
2174 final boolean isProviderReady = isValidProvider(provider);
Adam Cohen59400422014-03-05 18:07:04 -08002175 if (!isSafeMode && !customWidget &&
2176 wasProviderReady && !isProviderReady) {
Sunny Goyal651077b2014-06-30 14:15:31 -07002177 String log = "Deleting widget that isn't installed anymore: "
Sunny Goyalff572272014-07-23 13:58:07 -07002178 + "id=" + id + " appWidgetId=" + appWidgetId;
Adam Cohen59400422014-03-05 18:07:04 -08002179
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002180 Log.e(TAG, log);
Adam Cohen4caf2982013-08-20 18:54:31 -07002181 Launcher.addDumpLog(TAG, log, false);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002182 itemsToRemove.add(id);
2183 } else {
Sunny Goyalff572272014-07-23 13:58:07 -07002184 if (isProviderReady) {
Sunny Goyal651077b2014-06-30 14:15:31 -07002185 appWidgetInfo = new LauncherAppWidgetInfo(appWidgetId,
2186 provider.provider);
Adam Cohen59400422014-03-05 18:07:04 -08002187
Sunny Goyalff572272014-07-23 13:58:07 -07002188 int status = restoreStatus;
2189 if (!wasProviderReady) {
2190 // If provider was not previously ready, update the
2191 // status and UI flag.
2192
2193 // Id would be valid only if the widget restore broadcast was received.
2194 if (isIdValid) {
2195 status = LauncherAppWidgetInfo.RESTORE_COMPLETED;
2196 } else {
2197 status &= ~LauncherAppWidgetInfo
2198 .FLAG_PROVIDER_NOT_READY;
2199 }
2200 }
2201 appWidgetInfo.restoreStatus = status;
Sunny Goyal651077b2014-06-30 14:15:31 -07002202 } else {
2203 Log.v(TAG, "Widget restore pending id=" + id
2204 + " appWidgetId=" + appWidgetId
2205 + " status =" + restoreStatus);
2206 appWidgetInfo = new LauncherAppWidgetInfo(appWidgetId,
Sunny Goyalff572272014-07-23 13:58:07 -07002207 component);
Sunny Goyal651077b2014-06-30 14:15:31 -07002208 appWidgetInfo.restoreStatus = restoreStatus;
Sunny Goyal756adbc2015-04-16 15:20:51 -07002209 Integer installProgress = installingPkgs.get(component.getPackageName());
Sunny Goyal94485362014-09-18 16:13:58 -07002210
2211 if ((restoreStatus & LauncherAppWidgetInfo.FLAG_RESTORE_STARTED) != 0) {
2212 // Restore has started once.
Sunny Goyal756adbc2015-04-16 15:20:51 -07002213 } else if (installProgress != null) {
Sunny Goyal94485362014-09-18 16:13:58 -07002214 // App restore has started. Update the flag
2215 appWidgetInfo.restoreStatus |=
2216 LauncherAppWidgetInfo.FLAG_RESTORE_STARTED;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002217 } else if (REMOVE_UNRESTORED_ICONS && !isSafeMode) {
Sunny Goyal94485362014-09-18 16:13:58 -07002218 Launcher.addDumpLog(TAG,
Sunny Goyalc5fb59f2014-09-25 16:20:38 -07002219 "Unrestored widget removed: " + component, true);
Sunny Goyal94485362014-09-18 16:13:58 -07002220 itemsToRemove.add(id);
2221 continue;
2222 }
Sunny Goyal756adbc2015-04-16 15:20:51 -07002223
2224 appWidgetInfo.installProgress =
2225 installProgress == null ? 0 : installProgress;
Sunny Goyal651077b2014-06-30 14:15:31 -07002226 }
Sunny Goyalff572272014-07-23 13:58:07 -07002227
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002228 appWidgetInfo.id = id;
Adam Cohendcd297f2013-06-18 13:13:40 -07002229 appWidgetInfo.screenId = c.getInt(screenIndex);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002230 appWidgetInfo.cellX = c.getInt(cellXIndex);
2231 appWidgetInfo.cellY = c.getInt(cellYIndex);
2232 appWidgetInfo.spanX = c.getInt(spanXIndex);
2233 appWidgetInfo.spanY = c.getInt(spanYIndex);
Joe Onorato36115782010-06-17 13:28:48 -04002234
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002235 container = c.getInt(containerIndex);
2236 if (container != LauncherSettings.Favorites.CONTAINER_DESKTOP &&
2237 container != LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2238 Log.e(TAG, "Widget found where container != " +
2239 "CONTAINER_DESKTOP nor CONTAINER_HOTSEAT - ignoring!");
2240 continue;
2241 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002242
Adam Cohene25af792013-06-06 23:08:25 -07002243 appWidgetInfo.container = c.getInt(containerIndex);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002244 // check & update map of what's occupied
Sunny Goyalfc0fe6b2014-10-16 12:18:37 -07002245 if (!checkItemPlacement(occupied, appWidgetInfo)) {
2246 itemsToRemove.add(id);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002247 break;
2248 }
Sunny Goyal651077b2014-06-30 14:15:31 -07002249
Adam Cohen59400422014-03-05 18:07:04 -08002250 if (!customWidget) {
2251 String providerName =
2252 appWidgetInfo.providerName.flattenToString();
2253 if (!providerName.equals(savedProvider) ||
2254 (appWidgetInfo.restoreStatus != restoreStatus)) {
2255 ContentValues values = new ContentValues();
2256 values.put(
2257 LauncherSettings.Favorites.APPWIDGET_PROVIDER,
2258 providerName);
2259 values.put(LauncherSettings.Favorites.RESTORED,
2260 appWidgetInfo.restoreStatus);
Sunny Goyalbb3b02f2015-01-15 12:00:14 -08002261 updateItem(id, values);
Adam Cohen59400422014-03-05 18:07:04 -08002262 }
Chris Wrenc3919c02013-09-18 09:48:33 -04002263 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002264 sBgItemsIdMap.put(appWidgetInfo.id, appWidgetInfo);
2265 sBgAppWidgets.add(appWidgetInfo);
2266 }
Joe Onorato36115782010-06-17 13:28:48 -04002267 break;
2268 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002269 } catch (Exception e) {
Dan Sandler295ae182013-12-10 16:05:47 -05002270 Launcher.addDumpLog(TAG, "Desktop items loading interrupted", e, true);
Romain Guy5c16f3e2010-01-12 17:24:58 -08002271 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002272 }
2273 } finally {
Daniel Sandler47b50312013-07-25 13:16:14 -04002274 if (c != null) {
2275 c.close();
2276 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002277 }
2278
Winson Chungba9c37f2013-08-30 14:11:37 -07002279 // Break early if we've stopped loading
2280 if (mStopped) {
Winson Chungba9c37f2013-08-30 14:11:37 -07002281 clearSBgDataStructures();
Sunny Goyal66cfdc22015-02-02 13:01:51 -08002282 return;
Winson Chungba9c37f2013-08-30 14:11:37 -07002283 }
2284
Sunny Goyal1936ec02015-05-12 11:03:04 -07002285 // Remove any empty folder
2286 LongArrayMap<FolderInfo> emptyFolders = sBgFolders.clone();
2287 for (ItemInfo item: sBgItemsIdMap) {
2288 long container = item.container;
2289 if (emptyFolders.containsKey(container)) {
2290 emptyFolders.remove(container);
2291 }
2292 }
2293 for (FolderInfo folder : emptyFolders) {
2294 long folderId = folder.id;
2295 sBgFolders.remove(folderId);
2296 sBgItemsIdMap.remove(folderId);
2297 sBgWorkspaceItems.remove(folder);
2298 itemsToRemove.add(folderId);
2299 }
2300
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002301 if (itemsToRemove.size() > 0) {
2302 ContentProviderClient client = contentResolver.acquireContentProviderClient(
Sunny Goyalc5fb59f2014-09-25 16:20:38 -07002303 contentUri);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002304 // Remove dead items
2305 for (long id : itemsToRemove) {
2306 if (DEBUG_LOADERS) {
2307 Log.d(TAG, "Removed id = " + id);
2308 }
2309 // Don't notify content observers
2310 try {
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002311 client.delete(LauncherSettings.Favorites.getContentUri(id), null, null);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002312 } catch (RemoteException e) {
2313 Log.w(TAG, "Could not remove id = " + id);
2314 }
Romain Guy5c16f3e2010-01-12 17:24:58 -08002315 }
2316 }
2317
Chris Wrenf4d08112014-01-16 18:13:56 -05002318 if (restoredRows.size() > 0) {
2319 ContentProviderClient updater = contentResolver.acquireContentProviderClient(
Sunny Goyalc5fb59f2014-09-25 16:20:38 -07002320 contentUri);
Chris Wrenf4d08112014-01-16 18:13:56 -05002321 // Update restored items that no longer require special handling
2322 try {
2323 StringBuilder selectionBuilder = new StringBuilder();
2324 selectionBuilder.append(LauncherSettings.Favorites._ID);
2325 selectionBuilder.append(" IN (");
2326 selectionBuilder.append(TextUtils.join(", ", restoredRows));
2327 selectionBuilder.append(")");
2328 ContentValues values = new ContentValues();
2329 values.put(LauncherSettings.Favorites.RESTORED, 0);
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002330 updater.update(LauncherSettings.Favorites.CONTENT_URI,
Chris Wrenf4d08112014-01-16 18:13:56 -05002331 values, selectionBuilder.toString(), null);
2332 } catch (RemoteException e) {
2333 Log.w(TAG, "Could not update restored rows");
2334 }
2335 }
2336
Sunny Goyalf599ccf2014-07-08 13:01:29 -07002337 if (!isSdCardReady && !sPendingPackages.isEmpty()) {
2338 context.registerReceiver(new AppsAvailabilityCheck(),
Sunny Goyal05e318d2014-07-29 11:49:35 -07002339 new IntentFilter(StartupReceiver.SYSTEM_READY),
Sunny Goyalf599ccf2014-07-08 13:01:29 -07002340 null, sWorker);
2341 }
2342
Sunny Goyal66cfdc22015-02-02 13:01:51 -08002343 sBgWorkspaceScreens.addAll(loadWorkspaceScreensDb(mContext));
2344 // Log to disk
2345 Launcher.addDumpLog(TAG, "11683562 - sBgWorkspaceScreens: " +
2346 TextUtils.join(", ", sBgWorkspaceScreens), true);
Winson Chung9e6a0a22013-08-27 11:58:12 -07002347
Sunny Goyal66cfdc22015-02-02 13:01:51 -08002348 // Remove any empty screens
2349 ArrayList<Long> unusedScreens = new ArrayList<Long>(sBgWorkspaceScreens);
Sunny Goyale2df0622015-04-24 11:27:00 -07002350 for (ItemInfo item: sBgItemsIdMap) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08002351 long screenId = item.screenId;
2352 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP &&
2353 unusedScreens.contains(screenId)) {
2354 unusedScreens.remove(screenId);
2355 }
2356 }
2357
2358 // If there are any empty screens remove them, and update.
2359 if (unusedScreens.size() != 0) {
2360 // Log to disk
2361 Launcher.addDumpLog(TAG, "11683562 - unusedScreens (to be removed): " +
2362 TextUtils.join(", ", unusedScreens), true);
2363
2364 sBgWorkspaceScreens.removeAll(unusedScreens);
Adam Cohendcd297f2013-06-18 13:13:40 -07002365 updateWorkspaceScreenOrder(context, sBgWorkspaceScreens);
Adam Cohendcd297f2013-06-18 13:13:40 -07002366 }
2367
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002368 if (DEBUG_LOADERS) {
2369 Log.d(TAG, "loaded workspace in " + (SystemClock.uptimeMillis()-t) + "ms");
2370 Log.d(TAG, "workspace layout: ");
Adam Cohendcd297f2013-06-18 13:13:40 -07002371 int nScreens = occupied.size();
Winson Chung892c74d2013-08-22 16:15:50 -07002372 for (int y = 0; y < countY; y++) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002373 String line = "";
Adam Cohendcd297f2013-06-18 13:13:40 -07002374
Sunny Goyale2df0622015-04-24 11:27:00 -07002375 for (int i = 0; i < nScreens; i++) {
2376 long screenId = occupied.keyAt(i);
Winson Chungc9168342013-06-26 14:54:55 -07002377 if (screenId > 0) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002378 line += " | ";
2379 }
Sunny Goyale2df0622015-04-24 11:27:00 -07002380 ItemInfo[][] screen = occupied.valueAt(i);
Winson Chung892c74d2013-08-22 16:15:50 -07002381 for (int x = 0; x < countX; x++) {
Chris Wrenaeff7ea2014-02-14 16:59:24 -05002382 if (x < screen.length && y < screen[x].length) {
2383 line += (screen[x][y] != null) ? "#" : ".";
2384 } else {
2385 line += "!";
2386 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002387 }
Joe Onorato36115782010-06-17 13:28:48 -04002388 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002389 Log.d(TAG, "[ " + line + " ]");
Joe Onorato36115782010-06-17 13:28:48 -04002390 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04002391 }
Joe Onorato36115782010-06-17 13:28:48 -04002392 }
Adam Cohene25af792013-06-06 23:08:25 -07002393 }
2394
Sunny Goyalbb3b02f2015-01-15 12:00:14 -08002395 /**
2396 * Partially updates the item without any notification. Must be called on the worker thread.
2397 */
2398 private void updateItem(long itemId, ContentValues update) {
2399 mContext.getContentResolver().update(
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002400 LauncherSettings.Favorites.CONTENT_URI,
Sunny Goyalbb3b02f2015-01-15 12:00:14 -08002401 update,
2402 BaseColumns._ID + "= ?",
2403 new String[]{Long.toString(itemId)});
2404 }
2405
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002406 /** Filters the set of items who are directly or indirectly (via another container) on the
2407 * specified screen. */
Winson Chung9b9fb962013-11-15 15:39:34 -08002408 private void filterCurrentWorkspaceItems(long currentScreenId,
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002409 ArrayList<ItemInfo> allWorkspaceItems,
2410 ArrayList<ItemInfo> currentScreenItems,
2411 ArrayList<ItemInfo> otherScreenItems) {
Winson Chung2abf94d2012-07-18 18:16:38 -07002412 // Purge any null ItemInfos
2413 Iterator<ItemInfo> iter = allWorkspaceItems.iterator();
2414 while (iter.hasNext()) {
2415 ItemInfo i = iter.next();
2416 if (i == null) {
2417 iter.remove();
2418 }
2419 }
2420
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002421 // Order the set of items by their containers first, this allows use to walk through the
2422 // list sequentially, build up a list of containers that are in the specified screen,
2423 // as well as all items in those containers.
2424 Set<Long> itemsOnScreen = new HashSet<Long>();
2425 Collections.sort(allWorkspaceItems, new Comparator<ItemInfo>() {
2426 @Override
2427 public int compare(ItemInfo lhs, ItemInfo rhs) {
2428 return (int) (lhs.container - rhs.container);
2429 }
2430 });
2431 for (ItemInfo info : allWorkspaceItems) {
2432 if (info.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
Winson Chung9b9fb962013-11-15 15:39:34 -08002433 if (info.screenId == currentScreenId) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002434 currentScreenItems.add(info);
2435 itemsOnScreen.add(info.id);
2436 } else {
2437 otherScreenItems.add(info);
2438 }
2439 } else if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2440 currentScreenItems.add(info);
2441 itemsOnScreen.add(info.id);
2442 } else {
2443 if (itemsOnScreen.contains(info.container)) {
2444 currentScreenItems.add(info);
2445 itemsOnScreen.add(info.id);
2446 } else {
2447 otherScreenItems.add(info);
2448 }
2449 }
2450 }
2451 }
2452
2453 /** Filters the set of widgets which are on the specified screen. */
Winson Chung9b9fb962013-11-15 15:39:34 -08002454 private void filterCurrentAppWidgets(long currentScreenId,
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002455 ArrayList<LauncherAppWidgetInfo> appWidgets,
2456 ArrayList<LauncherAppWidgetInfo> currentScreenWidgets,
2457 ArrayList<LauncherAppWidgetInfo> otherScreenWidgets) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002458
2459 for (LauncherAppWidgetInfo widget : appWidgets) {
Winson Chung2abf94d2012-07-18 18:16:38 -07002460 if (widget == null) continue;
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002461 if (widget.container == LauncherSettings.Favorites.CONTAINER_DESKTOP &&
Winson Chung9b9fb962013-11-15 15:39:34 -08002462 widget.screenId == currentScreenId) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002463 currentScreenWidgets.add(widget);
2464 } else {
2465 otherScreenWidgets.add(widget);
2466 }
2467 }
2468 }
2469
2470 /** Filters the set of folders which are on the specified screen. */
Winson Chung9b9fb962013-11-15 15:39:34 -08002471 private void filterCurrentFolders(long currentScreenId,
Sunny Goyale2df0622015-04-24 11:27:00 -07002472 LongArrayMap<ItemInfo> itemsIdMap,
2473 LongArrayMap<FolderInfo> folders,
2474 LongArrayMap<FolderInfo> currentScreenFolders,
2475 LongArrayMap<FolderInfo> otherScreenFolders) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002476
Sunny Goyale2df0622015-04-24 11:27:00 -07002477 int total = folders.size();
2478 for (int i = 0; i < total; i++) {
2479 long id = folders.keyAt(i);
2480 FolderInfo folder = folders.valueAt(i);
2481
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002482 ItemInfo info = itemsIdMap.get(id);
Winson Chung2abf94d2012-07-18 18:16:38 -07002483 if (info == null || folder == null) continue;
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002484 if (info.container == LauncherSettings.Favorites.CONTAINER_DESKTOP &&
Winson Chung9b9fb962013-11-15 15:39:34 -08002485 info.screenId == currentScreenId) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002486 currentScreenFolders.put(id, folder);
2487 } else {
2488 otherScreenFolders.put(id, folder);
2489 }
2490 }
2491 }
2492
2493 /** Sorts the set of items by hotseat, workspace (spatially from top to bottom, left to
2494 * right) */
2495 private void sortWorkspaceItemsSpatially(ArrayList<ItemInfo> workspaceItems) {
Winson Chung892c74d2013-08-22 16:15:50 -07002496 final LauncherAppState app = LauncherAppState.getInstance();
Adam Cohen2e6da152015-05-06 11:42:25 -07002497 final InvariantDeviceProfile profile = app.getInvariantDeviceProfile();
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002498 // XXX: review this
2499 Collections.sort(workspaceItems, new Comparator<ItemInfo>() {
Winson Chungdb8a8942012-04-03 14:08:41 -07002500 @Override
2501 public int compare(ItemInfo lhs, ItemInfo rhs) {
Adam Cohen2e6da152015-05-06 11:42:25 -07002502 int cellCountX = (int) profile.numColumns;
2503 int cellCountY = (int) profile.numRows;
Winson Chungdb8a8942012-04-03 14:08:41 -07002504 int screenOffset = cellCountX * cellCountY;
2505 int containerOffset = screenOffset * (Launcher.SCREEN_COUNT + 1); // +1 hotseat
Adam Cohendcd297f2013-06-18 13:13:40 -07002506 long lr = (lhs.container * containerOffset + lhs.screenId * screenOffset +
Winson Chungdb8a8942012-04-03 14:08:41 -07002507 lhs.cellY * cellCountX + lhs.cellX);
Adam Cohendcd297f2013-06-18 13:13:40 -07002508 long rr = (rhs.container * containerOffset + rhs.screenId * screenOffset +
Winson Chungdb8a8942012-04-03 14:08:41 -07002509 rhs.cellY * cellCountX + rhs.cellX);
2510 return (int) (lr - rr);
2511 }
2512 });
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002513 }
Winson Chungdb8a8942012-04-03 14:08:41 -07002514
Adam Cohendcd297f2013-06-18 13:13:40 -07002515 private void bindWorkspaceScreens(final Callbacks oldCallbacks,
2516 final ArrayList<Long> orderedScreens) {
Adam Cohendcd297f2013-06-18 13:13:40 -07002517 final Runnable r = new Runnable() {
2518 @Override
2519 public void run() {
2520 Callbacks callbacks = tryGetCallbacks(oldCallbacks);
2521 if (callbacks != null) {
2522 callbacks.bindScreens(orderedScreens);
2523 }
2524 }
2525 };
Sunny Goyald33860f2015-04-23 16:02:20 -07002526 runOnMainThread(r);
Adam Cohendcd297f2013-06-18 13:13:40 -07002527 }
2528
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002529 private void bindWorkspaceItems(final Callbacks oldCallbacks,
2530 final ArrayList<ItemInfo> workspaceItems,
2531 final ArrayList<LauncherAppWidgetInfo> appWidgets,
Sunny Goyale2df0622015-04-24 11:27:00 -07002532 final LongArrayMap<FolderInfo> folders,
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002533 ArrayList<Runnable> deferredBindRunnables) {
Winson Chung603bcb92011-09-02 11:45:39 -07002534
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002535 final boolean postOnMainThread = (deferredBindRunnables != null);
2536
2537 // Bind the workspace items
Winson Chungdb8a8942012-04-03 14:08:41 -07002538 int N = workspaceItems.size();
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002539 for (int i = 0; i < N; i += ITEMS_CHUNK) {
Joe Onorato36115782010-06-17 13:28:48 -04002540 final int start = i;
2541 final int chunkSize = (i+ITEMS_CHUNK <= N) ? ITEMS_CHUNK : (N-i);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002542 final Runnable r = new Runnable() {
2543 @Override
Joe Onorato9c1289c2009-08-17 11:03:03 -04002544 public void run() {
Joe Onoratoc131b742010-03-11 15:45:05 -08002545 Callbacks callbacks = tryGetCallbacks(oldCallbacks);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002546 if (callbacks != null) {
Winson Chung64359a52013-07-08 17:17:08 -07002547 callbacks.bindItems(workspaceItems, start, start+chunkSize,
2548 false);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002549 }
2550 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002551 };
2552 if (postOnMainThread) {
Jason Monka0a7a742014-04-22 09:23:19 -04002553 synchronized (deferredBindRunnables) {
2554 deferredBindRunnables.add(r);
2555 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002556 } else {
Sunny Goyald33860f2015-04-23 16:02:20 -07002557 runOnMainThread(r);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002558 }
Joe Onorato36115782010-06-17 13:28:48 -04002559 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002560
2561 // Bind the folders
2562 if (!folders.isEmpty()) {
2563 final Runnable r = new Runnable() {
2564 public void run() {
2565 Callbacks callbacks = tryGetCallbacks(oldCallbacks);
2566 if (callbacks != null) {
2567 callbacks.bindFolders(folders);
2568 }
2569 }
2570 };
2571 if (postOnMainThread) {
Jason Monka0a7a742014-04-22 09:23:19 -04002572 synchronized (deferredBindRunnables) {
2573 deferredBindRunnables.add(r);
2574 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002575 } else {
Sunny Goyald33860f2015-04-23 16:02:20 -07002576 runOnMainThread(r);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002577 }
2578 }
2579
2580 // Bind the widgets, one at a time
2581 N = appWidgets.size();
2582 for (int i = 0; i < N; i++) {
2583 final LauncherAppWidgetInfo widget = appWidgets.get(i);
2584 final Runnable r = new Runnable() {
2585 public void run() {
2586 Callbacks callbacks = tryGetCallbacks(oldCallbacks);
2587 if (callbacks != null) {
2588 callbacks.bindAppWidget(widget);
2589 }
2590 }
2591 };
2592 if (postOnMainThread) {
2593 deferredBindRunnables.add(r);
2594 } else {
Sunny Goyald33860f2015-04-23 16:02:20 -07002595 runOnMainThread(r);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002596 }
2597 }
2598 }
2599
2600 /**
2601 * Binds all loaded data to actual views on the main thread.
2602 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08002603 private void bindWorkspace(int synchronizeBindPage) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002604 final long t = SystemClock.uptimeMillis();
2605 Runnable r;
2606
2607 // Don't use these two variables in any of the callback runnables.
2608 // Otherwise we hold a reference to them.
2609 final Callbacks oldCallbacks = mCallbacks.get();
2610 if (oldCallbacks == null) {
2611 // This launcher has exited and nobody bothered to tell us. Just bail.
2612 Log.w(TAG, "LoaderTask running with no launcher");
2613 return;
2614 }
2615
Winson Chung9b9fb962013-11-15 15:39:34 -08002616 // Save a copy of all the bg-thread collections
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002617 ArrayList<ItemInfo> workspaceItems = new ArrayList<ItemInfo>();
2618 ArrayList<LauncherAppWidgetInfo> appWidgets =
2619 new ArrayList<LauncherAppWidgetInfo>();
Adam Cohendcd297f2013-06-18 13:13:40 -07002620 ArrayList<Long> orderedScreenIds = new ArrayList<Long>();
Sunny Goyale2df0622015-04-24 11:27:00 -07002621
2622 final LongArrayMap<FolderInfo> folders;
2623 final LongArrayMap<ItemInfo> itemsIdMap;
2624
Winson Chung2abf94d2012-07-18 18:16:38 -07002625 synchronized (sBgLock) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002626 workspaceItems.addAll(sBgWorkspaceItems);
2627 appWidgets.addAll(sBgAppWidgets);
Adam Cohendcd297f2013-06-18 13:13:40 -07002628 orderedScreenIds.addAll(sBgWorkspaceScreens);
Sunny Goyale2df0622015-04-24 11:27:00 -07002629
2630 folders = sBgFolders.clone();
2631 itemsIdMap = sBgItemsIdMap.clone();
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002632 }
2633
Derek Prothro7aff3992013-12-10 14:00:37 -05002634 final boolean isLoadingSynchronously =
2635 synchronizeBindPage != PagedView.INVALID_RESTORE_PAGE;
Adam Cohend8dbb462013-11-27 11:55:48 -08002636 int currScreen = isLoadingSynchronously ? synchronizeBindPage :
Winson Chung9b9fb962013-11-15 15:39:34 -08002637 oldCallbacks.getCurrentWorkspaceScreen();
Adam Cohend8dbb462013-11-27 11:55:48 -08002638 if (currScreen >= orderedScreenIds.size()) {
2639 // There may be no workspace screens (just hotseat items and an empty page).
Derek Prothro7aff3992013-12-10 14:00:37 -05002640 currScreen = PagedView.INVALID_RESTORE_PAGE;
Winson Chung9b9fb962013-11-15 15:39:34 -08002641 }
Adam Cohend8dbb462013-11-27 11:55:48 -08002642 final int currentScreen = currScreen;
Derek Prothro7aff3992013-12-10 14:00:37 -05002643 final long currentScreenId = currentScreen < 0
2644 ? INVALID_SCREEN_ID : orderedScreenIds.get(currentScreen);
Winson Chung9b9fb962013-11-15 15:39:34 -08002645
2646 // Load all the items that are on the current page first (and in the process, unbind
2647 // all the existing workspace items before we call startBinding() below.
2648 unbindWorkspaceItemsOnMainThread();
2649
2650 // Separate the items that are on the current screen, and all the other remaining items
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002651 ArrayList<ItemInfo> currentWorkspaceItems = new ArrayList<ItemInfo>();
2652 ArrayList<ItemInfo> otherWorkspaceItems = new ArrayList<ItemInfo>();
2653 ArrayList<LauncherAppWidgetInfo> currentAppWidgets =
2654 new ArrayList<LauncherAppWidgetInfo>();
2655 ArrayList<LauncherAppWidgetInfo> otherAppWidgets =
2656 new ArrayList<LauncherAppWidgetInfo>();
Sunny Goyale2df0622015-04-24 11:27:00 -07002657 LongArrayMap<FolderInfo> currentFolders = new LongArrayMap<>();
2658 LongArrayMap<FolderInfo> otherFolders = new LongArrayMap<>();
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002659
Winson Chung9b9fb962013-11-15 15:39:34 -08002660 filterCurrentWorkspaceItems(currentScreenId, workspaceItems, currentWorkspaceItems,
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002661 otherWorkspaceItems);
Winson Chung9b9fb962013-11-15 15:39:34 -08002662 filterCurrentAppWidgets(currentScreenId, appWidgets, currentAppWidgets,
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002663 otherAppWidgets);
Winson Chung9b9fb962013-11-15 15:39:34 -08002664 filterCurrentFolders(currentScreenId, itemsIdMap, folders, currentFolders,
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002665 otherFolders);
2666 sortWorkspaceItemsSpatially(currentWorkspaceItems);
2667 sortWorkspaceItemsSpatially(otherWorkspaceItems);
2668
2669 // Tell the workspace that we're about to start binding items
2670 r = new Runnable() {
Joe Onorato36115782010-06-17 13:28:48 -04002671 public void run() {
2672 Callbacks callbacks = tryGetCallbacks(oldCallbacks);
2673 if (callbacks != null) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002674 callbacks.startBinding();
Joe Onorato36115782010-06-17 13:28:48 -04002675 }
2676 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002677 };
Sunny Goyald33860f2015-04-23 16:02:20 -07002678 runOnMainThread(r);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002679
Adam Cohendcd297f2013-06-18 13:13:40 -07002680 bindWorkspaceScreens(oldCallbacks, orderedScreenIds);
2681
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002682 // Load items on the current page
2683 bindWorkspaceItems(oldCallbacks, currentWorkspaceItems, currentAppWidgets,
2684 currentFolders, null);
Adam Cohen1462de32012-07-24 22:34:36 -07002685 if (isLoadingSynchronously) {
2686 r = new Runnable() {
2687 public void run() {
2688 Callbacks callbacks = tryGetCallbacks(oldCallbacks);
Derek Prothro7aff3992013-12-10 14:00:37 -05002689 if (callbacks != null && currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Adam Cohen1462de32012-07-24 22:34:36 -07002690 callbacks.onPageBoundSynchronously(currentScreen);
2691 }
2692 }
2693 };
Sunny Goyald33860f2015-04-23 16:02:20 -07002694 runOnMainThread(r);
Adam Cohen1462de32012-07-24 22:34:36 -07002695 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002696
Winson Chung4a2afa32012-07-19 14:53:05 -07002697 // Load all the remaining pages (if we are loading synchronously, we want to defer this
2698 // work until after the first render)
Jason Monka0a7a742014-04-22 09:23:19 -04002699 synchronized (mDeferredBindRunnables) {
2700 mDeferredBindRunnables.clear();
2701 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002702 bindWorkspaceItems(oldCallbacks, otherWorkspaceItems, otherAppWidgets, otherFolders,
Winson Chung4a2afa32012-07-19 14:53:05 -07002703 (isLoadingSynchronously ? mDeferredBindRunnables : null));
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002704
2705 // Tell the workspace that we're done binding items
2706 r = new Runnable() {
Joe Onorato36115782010-06-17 13:28:48 -04002707 public void run() {
2708 Callbacks callbacks = tryGetCallbacks(oldCallbacks);
2709 if (callbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08002710 callbacks.finishBindingItems();
Joe Onorato36115782010-06-17 13:28:48 -04002711 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002712
Winson Chung98e030b2012-05-07 16:01:11 -07002713 // If we're profiling, ensure this is the last thing in the queue.
Joe Onorato36115782010-06-17 13:28:48 -04002714 if (DEBUG_LOADERS) {
2715 Log.d(TAG, "bound workspace in "
2716 + (SystemClock.uptimeMillis()-t) + "ms");
2717 }
Winson Chung36a62fe2012-05-06 18:04:42 -07002718
2719 mIsLoadingAndBindingWorkspace = false;
Joe Onorato36115782010-06-17 13:28:48 -04002720 }
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002721 };
Winson Chung4a2afa32012-07-19 14:53:05 -07002722 if (isLoadingSynchronously) {
Jason Monka0a7a742014-04-22 09:23:19 -04002723 synchronized (mDeferredBindRunnables) {
2724 mDeferredBindRunnables.add(r);
2725 }
Winson Chung4a2afa32012-07-19 14:53:05 -07002726 } else {
Sunny Goyald33860f2015-04-23 16:02:20 -07002727 runOnMainThread(r);
Winson Chung4a2afa32012-07-19 14:53:05 -07002728 }
Joe Onorato36115782010-06-17 13:28:48 -04002729 }
Joe Onoratocc67f472010-06-08 10:54:30 -07002730
Joe Onorato36115782010-06-17 13:28:48 -04002731 private void loadAndBindAllApps() {
2732 if (DEBUG_LOADERS) {
2733 Log.d(TAG, "loadAndBindAllApps mAllAppsLoaded=" + mAllAppsLoaded);
2734 }
2735 if (!mAllAppsLoaded) {
Winson Chung64359a52013-07-08 17:17:08 -07002736 loadAllApps();
Sunny Goyalf5cd9982015-05-18 15:19:29 -07002737 synchronized (LoaderTask.this) {
2738 if (mStopped) {
2739 return;
2740 }
2741 }
Sunny Goyal75b0f552015-05-20 21:57:06 -07002742 mIconCache.updateDbIcons();
Reena Lee93f824a2011-09-23 17:20:28 -07002743 synchronized (LoaderTask.this) {
2744 if (mStopped) {
2745 return;
2746 }
2747 mAllAppsLoaded = true;
Joe Onoratocc67f472010-06-08 10:54:30 -07002748 }
Joe Onorato36115782010-06-17 13:28:48 -04002749 } else {
2750 onlyBindAllApps();
2751 }
2752 }
Joe Onoratocc67f472010-06-08 10:54:30 -07002753
Joe Onorato36115782010-06-17 13:28:48 -04002754 private void onlyBindAllApps() {
2755 final Callbacks oldCallbacks = mCallbacks.get();
2756 if (oldCallbacks == null) {
2757 // This launcher has exited and nobody bothered to tell us. Just bail.
2758 Log.w(TAG, "LoaderTask running with no launcher (onlyBindAllApps)");
2759 return;
2760 }
2761
2762 // shallow copy
Winson Chungc208ff92012-03-29 17:37:41 -07002763 @SuppressWarnings("unchecked")
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002764 final ArrayList<AppInfo> list
2765 = (ArrayList<AppInfo>) mBgAllAppsList.data.clone();
Hyunyoung Song9110d482015-05-22 14:49:23 -07002766 final WidgetsModel widgetList = mBgWidgetsModel.clone();
Winson Chungc93e5ae2012-07-23 20:48:26 -07002767 Runnable r = new Runnable() {
Joe Onorato36115782010-06-17 13:28:48 -04002768 public void run() {
2769 final long t = SystemClock.uptimeMillis();
2770 final Callbacks callbacks = tryGetCallbacks(oldCallbacks);
2771 if (callbacks != null) {
2772 callbacks.bindAllApplications(list);
Hyunyoung Song9110d482015-05-22 14:49:23 -07002773 callbacks.bindAllPackages(widgetList);
Joe Onorato36115782010-06-17 13:28:48 -04002774 }
2775 if (DEBUG_LOADERS) {
2776 Log.d(TAG, "bound all " + list.size() + " apps from cache in "
2777 + (SystemClock.uptimeMillis()-t) + "ms");
2778 }
2779 }
Winson Chungc93e5ae2012-07-23 20:48:26 -07002780 };
2781 boolean isRunningOnMainThread = !(sWorkerThread.getThreadId() == Process.myTid());
Winson Chung64359a52013-07-08 17:17:08 -07002782 if (isRunningOnMainThread) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07002783 r.run();
2784 } else {
2785 mHandler.post(r);
2786 }
Joe Onorato36115782010-06-17 13:28:48 -04002787 }
2788
Winson Chung64359a52013-07-08 17:17:08 -07002789 private void loadAllApps() {
2790 final long loadTime = DEBUG_LOADERS ? SystemClock.uptimeMillis() : 0;
Joe Onorato36115782010-06-17 13:28:48 -04002791
Joe Onorato36115782010-06-17 13:28:48 -04002792 final Callbacks oldCallbacks = mCallbacks.get();
2793 if (oldCallbacks == null) {
2794 // This launcher has exited and nobody bothered to tell us. Just bail.
Winson Chung64359a52013-07-08 17:17:08 -07002795 Log.w(TAG, "LoaderTask running with no launcher (loadAllApps)");
Joe Onorato36115782010-06-17 13:28:48 -04002796 return;
2797 }
2798
Kenny Guyed131872014-04-30 03:02:21 +01002799 final List<UserHandleCompat> profiles = mUserManager.getUserProfiles();
2800
Winson Chung64359a52013-07-08 17:17:08 -07002801 // Clear the list of apps
2802 mBgAllAppsList.clear();
Kenny Guyed131872014-04-30 03:02:21 +01002803 for (UserHandleCompat user : profiles) {
2804 // Query for the set of apps
2805 final long qiaTime = DEBUG_LOADERS ? SystemClock.uptimeMillis() : 0;
Sunny Goyal756a28a2015-04-23 17:07:55 -07002806 final List<LauncherActivityInfoCompat> apps = mLauncherApps.getActivityList(null, user);
Kenny Guyed131872014-04-30 03:02:21 +01002807 if (DEBUG_LOADERS) {
2808 Log.d(TAG, "getActivityList took "
2809 + (SystemClock.uptimeMillis()-qiaTime) + "ms for user " + user);
2810 Log.d(TAG, "getActivityList got " + apps.size() + " apps for user " + user);
2811 }
2812 // Fail if we don't have any apps
Sunny Goyale0f58d72014-11-10 18:05:31 -08002813 // TODO: Fix this. Only fail for the current user.
Kenny Guyed131872014-04-30 03:02:21 +01002814 if (apps == null || apps.isEmpty()) {
2815 return;
2816 }
Sunny Goyal4fbc3822015-02-18 16:46:50 -08002817
Kenny Guyed131872014-04-30 03:02:21 +01002818 // Create the ApplicationInfos
2819 for (int i = 0; i < apps.size(); i++) {
2820 LauncherActivityInfoCompat app = apps.get(i);
2821 // This builds the icon bitmaps.
Sunny Goyal4fbc3822015-02-18 16:46:50 -08002822 mBgAllAppsList.add(new AppInfo(mContext, app, user, mIconCache));
Kenny Guyed131872014-04-30 03:02:21 +01002823 }
Sunny Goyale0f58d72014-11-10 18:05:31 -08002824
Sunny Goyal756a28a2015-04-23 17:07:55 -07002825 final ManagedProfileHeuristic heuristic = ManagedProfileHeuristic.get(mContext, user);
2826 if (heuristic != null) {
2827 runAfterBindCompletes(new Runnable() {
2828
2829 @Override
2830 public void run() {
2831 heuristic.processUserApps(apps);
2832 }
2833 });
Sunny Goyale0f58d72014-11-10 18:05:31 -08002834 }
Winson Chung64359a52013-07-08 17:17:08 -07002835 }
Bjorn Bringert85f418d2013-09-06 12:50:05 +01002836 // Huh? Shouldn't this be inside the Runnable below?
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002837 final ArrayList<AppInfo> added = mBgAllAppsList.added;
2838 mBgAllAppsList.added = new ArrayList<AppInfo>();
Winson Chung64359a52013-07-08 17:17:08 -07002839
2840 // Post callback on main thread
2841 mHandler.post(new Runnable() {
2842 public void run() {
Hyunyoung Song9892e582015-05-05 10:07:23 -07002843
Winson Chung64359a52013-07-08 17:17:08 -07002844 final long bindTime = SystemClock.uptimeMillis();
Winson Chung11a1a532013-09-13 11:14:45 -07002845 final Callbacks callbacks = tryGetCallbacks(oldCallbacks);
Winson Chung64359a52013-07-08 17:17:08 -07002846 if (callbacks != null) {
2847 callbacks.bindAllApplications(added);
2848 if (DEBUG_LOADERS) {
2849 Log.d(TAG, "bound " + added.size() + " apps in "
2850 + (SystemClock.uptimeMillis() - bindTime) + "ms");
2851 }
2852 } else {
2853 Log.i(TAG, "not binding apps: no Launcher activity");
2854 }
2855 }
2856 });
Sunny Goyal18bf8e22015-04-08 18:13:46 -07002857 // Cleanup any data stored for a deleted user.
2858 ManagedProfileHeuristic.processAllUsers(profiles, mContext);
Winson Chung64359a52013-07-08 17:17:08 -07002859
Hyunyoung Song219d0482015-05-07 12:51:42 -07002860 loadAndBindWidgetsAndShortcuts(mApp.getContext(), tryGetCallbacks(oldCallbacks),
2861 true /* refresh */);
Joe Onorato36115782010-06-17 13:28:48 -04002862 if (DEBUG_LOADERS) {
Winson Chung64359a52013-07-08 17:17:08 -07002863 Log.d(TAG, "Icons processed in "
2864 + (SystemClock.uptimeMillis() - loadTime) + "ms");
Joe Onoratobe386092009-11-17 17:32:16 -08002865 }
2866 }
2867
2868 public void dumpState() {
Winson Chung2abf94d2012-07-18 18:16:38 -07002869 synchronized (sBgLock) {
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002870 Log.d(TAG, "mLoaderTask.mContext=" + mContext);
Winson Chungb8b2a5a2012-07-12 17:55:31 -07002871 Log.d(TAG, "mLoaderTask.mStopped=" + mStopped);
2872 Log.d(TAG, "mLoaderTask.mLoadAndBindStepFinished=" + mLoadAndBindStepFinished);
2873 Log.d(TAG, "mItems size=" + sBgWorkspaceItems.size());
2874 }
Joe Onorato36115782010-06-17 13:28:48 -04002875 }
2876 }
2877
Sunny Goyal75b0f552015-05-20 21:57:06 -07002878 /**
2879 * Called when the icons for packages have been updated in the icon cache.
2880 */
2881 public void onPackageIconsUpdated(HashSet<String> updatedPackages, UserHandleCompat user) {
2882 final Callbacks callbacks = getCallback();
2883 final ArrayList<AppInfo> updatedApps = new ArrayList<>();
2884 final ArrayList<ShortcutInfo> updatedShortcuts = new ArrayList<>();
2885
2886 // If any package icon has changed (app was updated while launcher was dead),
2887 // update the corresponding shortcuts.
2888 synchronized (sBgLock) {
2889 for (ItemInfo info : sBgItemsIdMap) {
2890 if (info instanceof ShortcutInfo && user.equals(info.user)
2891 && info.itemType == LauncherSettings.Favorites.ITEM_TYPE_APPLICATION) {
2892 ShortcutInfo si = (ShortcutInfo) info;
2893 ComponentName cn = si.getTargetComponent();
2894 if (cn != null && updatedPackages.contains(cn.getPackageName())) {
2895 si.updateIcon(mIconCache);
2896 updatedShortcuts.add(si);
2897 }
2898 }
2899 }
2900 mBgAllAppsList.updateIconsAndLabels(updatedPackages, user, updatedApps);
2901 }
2902
2903 if (!updatedShortcuts.isEmpty()) {
2904 final UserHandleCompat userFinal = user;
2905 mHandler.post(new Runnable() {
2906
2907 public void run() {
2908 Callbacks cb = getCallback();
2909 if (cb != null && callbacks == cb) {
2910 cb.bindShortcutsChanged(updatedShortcuts,
2911 new ArrayList<ShortcutInfo>(), userFinal);
2912 }
2913 }
2914 });
2915 }
2916
2917 if (!updatedApps.isEmpty()) {
2918 mHandler.post(new Runnable() {
2919
2920 public void run() {
2921 Callbacks cb = getCallback();
2922 if (cb != null && callbacks == cb) {
2923 cb.bindAppsUpdated(updatedApps);
2924 }
2925 }
2926 });
2927 }
Sunny Goyal091f0ff2015-06-04 15:19:31 -07002928
2929 // Reload widget list. No need to refresh, as we only want to update the icons and labels.
2930 loadAndBindWidgetsAndShortcuts(mApp.getContext(), callbacks, false);
Sunny Goyal75b0f552015-05-20 21:57:06 -07002931 }
2932
Joe Onorato36115782010-06-17 13:28:48 -04002933 void enqueuePackageUpdated(PackageUpdatedTask task) {
Brad Fitzpatrick700889f2010-10-11 09:40:44 -07002934 sWorker.post(task);
Joe Onorato36115782010-06-17 13:28:48 -04002935 }
2936
Adam Cohen091440a2015-03-18 14:16:05 -07002937 @Thunk class AppsAvailabilityCheck extends BroadcastReceiver {
Sunny Goyalf599ccf2014-07-08 13:01:29 -07002938
2939 @Override
2940 public void onReceive(Context context, Intent intent) {
2941 synchronized (sBgLock) {
2942 final LauncherAppsCompat launcherApps = LauncherAppsCompat
2943 .getInstance(mApp.getContext());
Sunny Goyal1a745e82014-10-02 15:58:31 -07002944 final PackageManager manager = context.getPackageManager();
2945 final ArrayList<String> packagesRemoved = new ArrayList<String>();
2946 final ArrayList<String> packagesUnavailable = new ArrayList<String>();
Sunny Goyalf599ccf2014-07-08 13:01:29 -07002947 for (Entry<UserHandleCompat, HashSet<String>> entry : sPendingPackages.entrySet()) {
2948 UserHandleCompat user = entry.getKey();
Sunny Goyal1a745e82014-10-02 15:58:31 -07002949 packagesRemoved.clear();
2950 packagesUnavailable.clear();
Sunny Goyalf599ccf2014-07-08 13:01:29 -07002951 for (String pkg : entry.getValue()) {
2952 if (!launcherApps.isPackageEnabledForProfile(pkg, user)) {
Sunny Goyal1a745e82014-10-02 15:58:31 -07002953 boolean packageOnSdcard = launcherApps.isAppEnabled(
2954 manager, pkg, PackageManager.GET_UNINSTALLED_PACKAGES);
2955 if (packageOnSdcard) {
2956 Launcher.addDumpLog(TAG, "Package found on sd-card: " + pkg, true);
2957 packagesUnavailable.add(pkg);
2958 } else {
2959 Launcher.addDumpLog(TAG, "Package not found: " + pkg, true);
2960 packagesRemoved.add(pkg);
2961 }
Sunny Goyalf599ccf2014-07-08 13:01:29 -07002962 }
2963 }
2964 if (!packagesRemoved.isEmpty()) {
2965 enqueuePackageUpdated(new PackageUpdatedTask(PackageUpdatedTask.OP_REMOVE,
2966 packagesRemoved.toArray(new String[packagesRemoved.size()]), user));
2967 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07002968 if (!packagesUnavailable.isEmpty()) {
2969 enqueuePackageUpdated(new PackageUpdatedTask(PackageUpdatedTask.OP_UNAVAILABLE,
2970 packagesUnavailable.toArray(new String[packagesUnavailable.size()]), user));
2971 }
Sunny Goyalf599ccf2014-07-08 13:01:29 -07002972 }
Sunny Goyal34942622014-08-29 17:20:55 -07002973 sPendingPackages.clear();
Sunny Goyalf599ccf2014-07-08 13:01:29 -07002974 }
2975 }
2976 }
2977
Joe Onorato36115782010-06-17 13:28:48 -04002978 private class PackageUpdatedTask implements Runnable {
2979 int mOp;
2980 String[] mPackages;
Kenny Guyed131872014-04-30 03:02:21 +01002981 UserHandleCompat mUser;
Joe Onorato36115782010-06-17 13:28:48 -04002982
2983 public static final int OP_NONE = 0;
2984 public static final int OP_ADD = 1;
2985 public static final int OP_UPDATE = 2;
2986 public static final int OP_REMOVE = 3; // uninstlled
2987 public static final int OP_UNAVAILABLE = 4; // external media unmounted
2988
2989
Kenny Guyed131872014-04-30 03:02:21 +01002990 public PackageUpdatedTask(int op, String[] packages, UserHandleCompat user) {
Joe Onorato36115782010-06-17 13:28:48 -04002991 mOp = op;
2992 mPackages = packages;
Kenny Guyed131872014-04-30 03:02:21 +01002993 mUser = user;
Joe Onorato36115782010-06-17 13:28:48 -04002994 }
2995
2996 public void run() {
Sunny Goyalc905efc2015-05-06 09:54:53 -07002997 if (!mHasLoaderCompletedOnce) {
2998 // Loader has not yet run.
2999 return;
3000 }
Daniel Sandlercc8befa2013-06-11 14:45:48 -04003001 final Context context = mApp.getContext();
Joe Onorato36115782010-06-17 13:28:48 -04003002
3003 final String[] packages = mPackages;
3004 final int N = packages.length;
3005 switch (mOp) {
Sunny Goyal18bf8e22015-04-08 18:13:46 -07003006 case OP_ADD: {
Joe Onorato36115782010-06-17 13:28:48 -04003007 for (int i=0; i<N; i++) {
3008 if (DEBUG_LOADERS) Log.d(TAG, "mAllAppsList.addPackage " + packages[i]);
Sunny Goyal4fbc3822015-02-18 16:46:50 -08003009 mIconCache.updateIconsForPkg(packages[i], mUser);
Kenny Guyed131872014-04-30 03:02:21 +01003010 mBgAllAppsList.addPackage(context, packages[i], mUser);
Joe Onorato36115782010-06-17 13:28:48 -04003011 }
Sunny Goyale0f58d72014-11-10 18:05:31 -08003012
Sunny Goyal18bf8e22015-04-08 18:13:46 -07003013 ManagedProfileHeuristic heuristic = ManagedProfileHeuristic.get(context, mUser);
3014 if (heuristic != null) {
3015 heuristic.processPackageAdd(mPackages);
Sunny Goyale0f58d72014-11-10 18:05:31 -08003016 }
Joe Onorato36115782010-06-17 13:28:48 -04003017 break;
Sunny Goyal18bf8e22015-04-08 18:13:46 -07003018 }
Joe Onorato36115782010-06-17 13:28:48 -04003019 case OP_UPDATE:
3020 for (int i=0; i<N; i++) {
3021 if (DEBUG_LOADERS) Log.d(TAG, "mAllAppsList.updatePackage " + packages[i]);
Sunny Goyal4fbc3822015-02-18 16:46:50 -08003022 mIconCache.updateIconsForPkg(packages[i], mUser);
Kenny Guyed131872014-04-30 03:02:21 +01003023 mBgAllAppsList.updatePackage(context, packages[i], mUser);
Sunny Goyal5b0e6692015-03-19 14:31:19 -07003024 mApp.getWidgetCache().removePackage(packages[i], mUser);
Joe Onorato36115782010-06-17 13:28:48 -04003025 }
3026 break;
Sunny Goyal18bf8e22015-04-08 18:13:46 -07003027 case OP_REMOVE: {
3028 ManagedProfileHeuristic heuristic = ManagedProfileHeuristic.get(context, mUser);
3029 if (heuristic != null) {
3030 heuristic.processPackageRemoved(mPackages);
Sunny Goyale0f58d72014-11-10 18:05:31 -08003031 }
Joe Onorato36115782010-06-17 13:28:48 -04003032 for (int i=0; i<N; i++) {
3033 if (DEBUG_LOADERS) Log.d(TAG, "mAllAppsList.removePackage " + packages[i]);
Sunny Goyal4fbc3822015-02-18 16:46:50 -08003034 mIconCache.removeIconsForPkg(packages[i], mUser);
3035 }
3036 // Fall through
Sunny Goyal18bf8e22015-04-08 18:13:46 -07003037 }
Sunny Goyal4fbc3822015-02-18 16:46:50 -08003038 case OP_UNAVAILABLE:
3039 for (int i=0; i<N; i++) {
3040 if (DEBUG_LOADERS) Log.d(TAG, "mAllAppsList.removePackage " + packages[i]);
3041 mBgAllAppsList.removePackage(packages[i], mUser);
Sunny Goyal5b0e6692015-03-19 14:31:19 -07003042 mApp.getWidgetCache().removePackage(packages[i], mUser);
Joe Onorato36115782010-06-17 13:28:48 -04003043 }
3044 break;
3045 }
3046
Michael Jurkaeadbfc52013-09-04 00:45:37 +02003047 ArrayList<AppInfo> added = null;
3048 ArrayList<AppInfo> modified = null;
3049 final ArrayList<AppInfo> removedApps = new ArrayList<AppInfo>();
Joe Onorato36115782010-06-17 13:28:48 -04003050
Adam Cohen487f7dd2012-06-28 18:12:10 -07003051 if (mBgAllAppsList.added.size() > 0) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02003052 added = new ArrayList<AppInfo>(mBgAllAppsList.added);
Winson Chung5d55f332012-07-16 20:45:03 -07003053 mBgAllAppsList.added.clear();
Joe Onorato36115782010-06-17 13:28:48 -04003054 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07003055 if (mBgAllAppsList.modified.size() > 0) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02003056 modified = new ArrayList<AppInfo>(mBgAllAppsList.modified);
Winson Chung5d55f332012-07-16 20:45:03 -07003057 mBgAllAppsList.modified.clear();
Joe Onorato36115782010-06-17 13:28:48 -04003058 }
Winson Chung5d55f332012-07-16 20:45:03 -07003059 if (mBgAllAppsList.removed.size() > 0) {
Winson Chung83892cc2013-05-01 16:53:33 -07003060 removedApps.addAll(mBgAllAppsList.removed);
Winson Chung5d55f332012-07-16 20:45:03 -07003061 mBgAllAppsList.removed.clear();
Winson Chungcd810732012-06-18 16:45:43 -07003062 }
3063
Sunny Goyale0f58d72014-11-10 18:05:31 -08003064 final Callbacks callbacks = getCallback();
Joe Onorato36115782010-06-17 13:28:48 -04003065 if (callbacks == null) {
3066 Log.w(TAG, "Nobody to tell about the new app. Launcher is probably loading.");
3067 return;
3068 }
3069
Sunny Goyal4390ace2014-10-13 11:33:11 -07003070 final HashMap<ComponentName, AppInfo> addedOrUpdatedApps =
3071 new HashMap<ComponentName, AppInfo>();
3072
Joe Onorato36115782010-06-17 13:28:48 -04003073 if (added != null) {
Sunny Goyalc9acdd52015-02-26 12:34:42 -08003074 addAppsToAllApps(context, added);
Sunny Goyal4390ace2014-10-13 11:33:11 -07003075 for (AppInfo ai : added) {
3076 addedOrUpdatedApps.put(ai.componentName, ai);
3077 }
Joe Onorato36115782010-06-17 13:28:48 -04003078 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003079
Joe Onorato36115782010-06-17 13:28:48 -04003080 if (modified != null) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02003081 final ArrayList<AppInfo> modifiedFinal = modified;
Sunny Goyal4390ace2014-10-13 11:33:11 -07003082 for (AppInfo ai : modified) {
3083 addedOrUpdatedApps.put(ai.componentName, ai);
Winson Chung64359a52013-07-08 17:17:08 -07003084 }
3085
Joe Onorato36115782010-06-17 13:28:48 -04003086 mHandler.post(new Runnable() {
3087 public void run() {
Sunny Goyale0f58d72014-11-10 18:05:31 -08003088 Callbacks cb = getCallback();
Winson Chungcd2b0142011-06-08 16:02:26 -07003089 if (callbacks == cb && cb != null) {
Joe Onorato36115782010-06-17 13:28:48 -04003090 callbacks.bindAppsUpdated(modifiedFinal);
3091 }
3092 }
3093 });
3094 }
Winson Chung83892cc2013-05-01 16:53:33 -07003095
Sunny Goyal4390ace2014-10-13 11:33:11 -07003096 // Update shortcut infos
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07003097 if (mOp == OP_ADD || mOp == OP_UPDATE) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07003098 final ArrayList<ShortcutInfo> updatedShortcuts = new ArrayList<ShortcutInfo>();
3099 final ArrayList<ShortcutInfo> removedShortcuts = new ArrayList<ShortcutInfo>();
3100 final ArrayList<LauncherAppWidgetInfo> widgets = new ArrayList<LauncherAppWidgetInfo>();
3101
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07003102 HashSet<String> packageSet = new HashSet<String>(Arrays.asList(packages));
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07003103 synchronized (sBgLock) {
Sunny Goyale2df0622015-04-24 11:27:00 -07003104 for (ItemInfo info : sBgItemsIdMap) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07003105 if (info instanceof ShortcutInfo && mUser.equals(info.user)) {
3106 ShortcutInfo si = (ShortcutInfo) info;
Sunny Goyal4390ace2014-10-13 11:33:11 -07003107 boolean infoUpdated = false;
3108 boolean shortcutUpdated = false;
3109
3110 // Update shortcuts which use iconResource.
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07003111 if ((si.iconResource != null)
Sunny Goyal4390ace2014-10-13 11:33:11 -07003112 && packageSet.contains(si.iconResource.packageName)) {
Sunny Goyal53d7ee42015-05-22 12:25:45 -07003113 Bitmap icon = Utilities.createIconBitmap(
3114 si.iconResource.packageName,
3115 si.iconResource.resourceName, context);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07003116 if (icon != null) {
3117 si.setIcon(icon);
3118 si.usingFallbackIcon = false;
Sunny Goyal4390ace2014-10-13 11:33:11 -07003119 infoUpdated = true;
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07003120 }
3121 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07003122
3123 ComponentName cn = si.getTargetComponent();
3124 if (cn != null && packageSet.contains(cn.getPackageName())) {
3125 AppInfo appInfo = addedOrUpdatedApps.get(cn);
3126
3127 if (si.isPromise()) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07003128 if (si.hasStatusFlag(ShortcutInfo.FLAG_AUTOINTALL_ICON)) {
3129 // Auto install icon
3130 PackageManager pm = context.getPackageManager();
3131 ResolveInfo matched = pm.resolveActivity(
3132 new Intent(Intent.ACTION_MAIN)
3133 .setComponent(cn).addCategory(Intent.CATEGORY_LAUNCHER),
3134 PackageManager.MATCH_DEFAULT_ONLY);
3135 if (matched == null) {
3136 // Try to find the best match activity.
3137 Intent intent = pm.getLaunchIntentForPackage(
3138 cn.getPackageName());
3139 if (intent != null) {
3140 cn = intent.getComponent();
3141 appInfo = addedOrUpdatedApps.get(cn);
3142 }
3143
3144 if ((intent == null) || (appInfo == null)) {
3145 removedShortcuts.add(si);
3146 continue;
3147 }
3148 si.promisedIntent = intent;
3149 }
3150 }
3151
3152 // Restore the shortcut.
Sunny Goyalfa401a12015-04-10 13:45:42 -07003153 if (appInfo != null) {
3154 si.flags = appInfo.flags;
3155 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07003156
Sunny Goyal756adbc2015-04-16 15:20:51 -07003157 si.intent = si.promisedIntent;
3158 si.promisedIntent = null;
3159 si.status = ShortcutInfo.DEFAULT;
Sunny Goyal4390ace2014-10-13 11:33:11 -07003160 infoUpdated = true;
3161 si.updateIcon(mIconCache);
3162 }
3163
3164 if (appInfo != null && Intent.ACTION_MAIN.equals(si.intent.getAction())
3165 && si.itemType == LauncherSettings.Favorites.ITEM_TYPE_APPLICATION) {
3166 si.updateIcon(mIconCache);
Winson Chung82b016c2015-05-08 17:00:10 -07003167 si.title = Utilities.trim(appInfo.title);
Sunny Goyal4390ace2014-10-13 11:33:11 -07003168 si.contentDescription = appInfo.contentDescription;
3169 infoUpdated = true;
3170 }
3171
3172 if ((si.isDisabled & ShortcutInfo.FLAG_DISABLED_NOT_AVAILABLE) != 0) {
3173 // Since package was just updated, the target must be available now.
3174 si.isDisabled &= ~ShortcutInfo.FLAG_DISABLED_NOT_AVAILABLE;
3175 shortcutUpdated = true;
3176 }
3177 }
3178
3179 if (infoUpdated || shortcutUpdated) {
3180 updatedShortcuts.add(si);
3181 }
3182 if (infoUpdated) {
3183 updateItemInDatabase(context, si);
3184 }
3185 } else if (info instanceof LauncherAppWidgetInfo) {
3186 LauncherAppWidgetInfo widgetInfo = (LauncherAppWidgetInfo) info;
3187 if (mUser.equals(widgetInfo.user)
3188 && widgetInfo.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY)
3189 && packageSet.contains(widgetInfo.providerName.getPackageName())) {
3190 widgetInfo.restoreStatus &= ~LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY;
3191 widgets.add(widgetInfo);
3192 updateItemInDatabase(context, widgetInfo);
3193 }
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07003194 }
3195 }
3196 }
3197
Sunny Goyal4390ace2014-10-13 11:33:11 -07003198 if (!updatedShortcuts.isEmpty() || !removedShortcuts.isEmpty()) {
3199 mHandler.post(new Runnable() {
3200
3201 public void run() {
Sunny Goyale0f58d72014-11-10 18:05:31 -08003202 Callbacks cb = getCallback();
Sunny Goyal4390ace2014-10-13 11:33:11 -07003203 if (callbacks == cb && cb != null) {
3204 callbacks.bindShortcutsChanged(
3205 updatedShortcuts, removedShortcuts, mUser);
3206 }
3207 }
3208 });
3209 if (!removedShortcuts.isEmpty()) {
3210 deleteItemsFromDatabase(context, removedShortcuts);
3211 }
3212 }
3213 if (!widgets.isEmpty()) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07003214 mHandler.post(new Runnable() {
3215 public void run() {
Sunny Goyale0f58d72014-11-10 18:05:31 -08003216 Callbacks cb = getCallback();
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07003217 if (callbacks == cb && cb != null) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07003218 callbacks.bindWidgetsRestored(widgets);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07003219 }
3220 }
3221 });
3222 }
3223 }
3224
Winson Chungdf95eb12013-10-16 14:57:07 -07003225 final ArrayList<String> removedPackageNames =
3226 new ArrayList<String>();
Sunny Goyal1a745e82014-10-02 15:58:31 -07003227 if (mOp == OP_REMOVE || mOp == OP_UNAVAILABLE) {
Winson Chungdf95eb12013-10-16 14:57:07 -07003228 // Mark all packages in the broadcast to be removed
3229 removedPackageNames.addAll(Arrays.asList(packages));
3230 } else if (mOp == OP_UPDATE) {
3231 // Mark disabled packages in the broadcast to be removed
Winson Chungdf95eb12013-10-16 14:57:07 -07003232 for (int i=0; i<N; i++) {
Kenny Guyed131872014-04-30 03:02:21 +01003233 if (isPackageDisabled(context, packages[i], mUser)) {
Winson Chungdf95eb12013-10-16 14:57:07 -07003234 removedPackageNames.add(packages[i]);
Winson Chung64359a52013-07-08 17:17:08 -07003235 }
3236 }
Winson Chungdf95eb12013-10-16 14:57:07 -07003237 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07003238
Winson Chungdf95eb12013-10-16 14:57:07 -07003239 if (!removedPackageNames.isEmpty() || !removedApps.isEmpty()) {
Sunny Goyal1a745e82014-10-02 15:58:31 -07003240 final int removeReason;
3241 if (mOp == OP_UNAVAILABLE) {
3242 removeReason = ShortcutInfo.FLAG_DISABLED_NOT_AVAILABLE;
3243 } else {
3244 // Remove all the components associated with this package
3245 for (String pn : removedPackageNames) {
3246 deletePackageFromDatabase(context, pn, mUser);
3247 }
3248 // Remove all the specific components
3249 for (AppInfo a : removedApps) {
3250 ArrayList<ItemInfo> infos = getItemInfoForComponentName(a.componentName, mUser);
3251 deleteItemsFromDatabase(context, infos);
3252 }
3253 removeReason = 0;
3254 }
3255
Winson Chungdf95eb12013-10-16 14:57:07 -07003256 // Remove any queued items from the install queue
Sunny Goyale0f58d72014-11-10 18:05:31 -08003257 InstallShortcutReceiver.removeFromInstallQueue(context, removedPackageNames, mUser);
Winson Chungdf95eb12013-10-16 14:57:07 -07003258 // Call the components-removed callback
Joe Onorato36115782010-06-17 13:28:48 -04003259 mHandler.post(new Runnable() {
3260 public void run() {
Sunny Goyale0f58d72014-11-10 18:05:31 -08003261 Callbacks cb = getCallback();
Winson Chungcd2b0142011-06-08 16:02:26 -07003262 if (callbacks == cb && cb != null) {
Sunny Goyal1a745e82014-10-02 15:58:31 -07003263 callbacks.bindComponentsRemoved(
3264 removedPackageNames, removedApps, mUser, removeReason);
Joe Onorato36115782010-06-17 13:28:48 -04003265 }
3266 }
3267 });
Joe Onoratobe386092009-11-17 17:32:16 -08003268 }
Hyunyoung Song227239e2015-05-04 18:17:35 -07003269
3270 // onProvidersChanged method (API >= 17) already refreshed the widget list
3271 loadAndBindWidgetsAndShortcuts(context, callbacks, Build.VERSION.SDK_INT < 17);
3272
Adam Cohen4caf2982013-08-20 18:54:31 -07003273 // Write all the logs to disk
Adam Cohen4caf2982013-08-20 18:54:31 -07003274 mHandler.post(new Runnable() {
3275 public void run() {
Sunny Goyale0f58d72014-11-10 18:05:31 -08003276 Callbacks cb = getCallback();
Adam Cohen4caf2982013-08-20 18:54:31 -07003277 if (callbacks == cb && cb != null) {
Winson Chungede41292013-09-19 16:27:36 -07003278 callbacks.dumpLogsToLocalData();
Adam Cohen4caf2982013-08-20 18:54:31 -07003279 }
3280 }
3281 });
Joe Onorato9c1289c2009-08-17 11:03:03 -04003282 }
3283 }
3284
Hyunyoung Song70a48be2015-03-11 16:36:52 -07003285 public static List<LauncherAppWidgetProviderInfo> getWidgetProviders(Context context,
3286 boolean refresh) {
Adam Cohen59400422014-03-05 18:07:04 -08003287 synchronized (sBgLock) {
Robin Lee26ace122015-03-16 19:41:43 +00003288 if (sBgWidgetProviders == null || refresh) {
3289 sBgWidgetProviders = new HashMap<>();
3290 AppWidgetManagerCompat wm = AppWidgetManagerCompat.getInstance(context);
3291 LauncherAppWidgetProviderInfo info;
Adam Cohen59400422014-03-05 18:07:04 -08003292
Robin Lee26ace122015-03-16 19:41:43 +00003293 List<AppWidgetProviderInfo> widgets = wm.getAllProviders();
3294 for (AppWidgetProviderInfo pInfo : widgets) {
3295 info = LauncherAppWidgetProviderInfo.fromProviderInfo(context, pInfo);
3296 UserHandleCompat user = wm.getUser(info);
3297 sBgWidgetProviders.put(new ComponentKey(info.provider, user), info);
3298 }
3299
3300 Collection<CustomAppWidget> customWidgets = Launcher.getCustomAppWidgets().values();
3301 for (CustomAppWidget widget : customWidgets) {
3302 info = new LauncherAppWidgetProviderInfo(context, widget);
3303 UserHandleCompat user = wm.getUser(info);
3304 sBgWidgetProviders.put(new ComponentKey(info.provider, user), info);
3305 }
Adam Cohen59400422014-03-05 18:07:04 -08003306 }
Adam Cohen59400422014-03-05 18:07:04 -08003307 return new ArrayList<LauncherAppWidgetProviderInfo>(sBgWidgetProviders.values());
3308 }
3309 }
3310
Robin Lee26ace122015-03-16 19:41:43 +00003311 public static LauncherAppWidgetProviderInfo getProviderInfo(Context ctx, ComponentName name,
3312 UserHandleCompat user) {
Adam Cohen59400422014-03-05 18:07:04 -08003313 synchronized (sBgLock) {
3314 if (sBgWidgetProviders == null) {
Hyunyoung Song70a48be2015-03-11 16:36:52 -07003315 getWidgetProviders(ctx, false /* refresh */);
Adam Cohen59400422014-03-05 18:07:04 -08003316 }
Robin Lee26ace122015-03-16 19:41:43 +00003317 return sBgWidgetProviders.get(new ComponentKey(name, user));
Adam Cohen59400422014-03-05 18:07:04 -08003318 }
3319 }
3320
Hyunyoung Song227239e2015-05-04 18:17:35 -07003321 public void loadAndBindWidgetsAndShortcuts(final Context context, final Callbacks callbacks,
3322 final boolean refresh) {
Hyunyoung Song9110d482015-05-22 14:49:23 -07003323
Hyunyoung Songd4af1482015-04-20 20:40:03 -07003324 runOnWorkerThread(new Runnable(){
3325 @Override
3326 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07003327 final WidgetsModel model = createWidgetsModel(context, refresh);
Hyunyoung Songd4af1482015-04-20 20:40:03 -07003328 mHandler.post(new Runnable() {
3329 @Override
3330 public void run() {
3331 Callbacks cb = getCallback();
3332 if (callbacks == cb && cb != null) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07003333 callbacks.bindAllPackages(model);
Hyunyoung Songd4af1482015-04-20 20:40:03 -07003334 }
3335 }
3336 });
Hyunyoung Song9110d482015-05-22 14:49:23 -07003337 mBgWidgetsModel = model;
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003338 // update the Widget entries inside DB on the worker thread.
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07003339 LauncherAppState.getInstance().getWidgetCache().removeObsoletePreviews(
3340 model.getRawList());
Hyunyoung Songd4af1482015-04-20 20:40:03 -07003341 }
3342 });
3343 }
3344
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003345 /**
Hyunyoung Song9110d482015-05-22 14:49:23 -07003346 * Returns a list of ResolveInfos/AppWidgetInfos.
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003347 *
Hyunyoung Song9110d482015-05-22 14:49:23 -07003348 * @see #loadAndBindWidgetsAndShortcuts
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003349 */
Sunny Goyal316490e2015-06-02 09:38:28 -07003350 @Thunk WidgetsModel createWidgetsModel(Context context, boolean refresh) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003351 PackageManager packageManager = context.getPackageManager();
3352 final ArrayList<Object> widgetsAndShortcuts = new ArrayList<Object>();
Hyunyoung Song70a48be2015-03-11 16:36:52 -07003353 widgetsAndShortcuts.addAll(getWidgetProviders(context, refresh));
Michael Jurkac402cd92013-05-20 15:49:32 +02003354 Intent shortcutsIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
3355 widgetsAndShortcuts.addAll(packageManager.queryIntentActivities(shortcutsIntent, 0));
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07003356 WidgetsModel model = new WidgetsModel(context);
3357 model.addWidgetsAndShortcuts(widgetsAndShortcuts);
3358 return model;
Michael Jurkac402cd92013-05-20 15:49:32 +02003359 }
3360
Adam Cohen091440a2015-03-18 14:16:05 -07003361 @Thunk static boolean isPackageDisabled(Context context, String packageName,
Kenny Guyed131872014-04-30 03:02:21 +01003362 UserHandleCompat user) {
3363 final LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(context);
3364 return !launcherApps.isPackageEnabledForProfile(packageName, user);
Winson Chungdf95eb12013-10-16 14:57:07 -07003365 }
Adam Cohen556f6132014-01-15 15:18:08 -08003366
Kenny Guyed131872014-04-30 03:02:21 +01003367 public static boolean isValidPackageActivity(Context context, ComponentName cn,
3368 UserHandleCompat user) {
Winson Chungee055712013-07-30 14:46:24 -07003369 if (cn == null) {
3370 return false;
3371 }
Kenny Guyed131872014-04-30 03:02:21 +01003372 final LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(context);
3373 if (!launcherApps.isPackageEnabledForProfile(cn.getPackageName(), user)) {
Winson Chungdf95eb12013-10-16 14:57:07 -07003374 return false;
3375 }
Kenny Guyed131872014-04-30 03:02:21 +01003376 return launcherApps.isActivityEnabledForProfile(cn, user);
Winson Chungee055712013-07-30 14:46:24 -07003377 }
3378
Adam Cohena28b78e2014-05-20 17:03:04 -07003379 public static boolean isValidPackage(Context context, String packageName,
3380 UserHandleCompat user) {
3381 if (packageName == null) {
3382 return false;
3383 }
3384 final LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(context);
3385 return launcherApps.isPackageEnabledForProfile(packageName, user);
3386 }
3387
Joe Onorato9c1289c2009-08-17 11:03:03 -04003388 /**
Chris Wrenf4d08112014-01-16 18:13:56 -05003389 * Make an ShortcutInfo object for a restored application or shortcut item that points
3390 * to a package that is not yet installed on the system.
3391 */
Sunny Goyal34942622014-08-29 17:20:55 -07003392 public ShortcutInfo getRestoredItemInfo(Cursor cursor, int titleIndex, Intent intent,
Sunny Goyal5c97f512015-05-19 16:03:28 -07003393 int promiseType) {
Chris Wrenf4d08112014-01-16 18:13:56 -05003394 final ShortcutInfo info = new ShortcutInfo();
Kenny Guyed131872014-04-30 03:02:21 +01003395 info.user = UserHandleCompat.myUserHandle();
Sunny Goyal5c97f512015-05-19 16:03:28 -07003396 mIconCache.getTitleAndIcon(info, intent, info.user, false /* useLowResIcon */);
Sunny Goyal34942622014-08-29 17:20:55 -07003397
3398 if ((promiseType & ShortcutInfo.FLAG_RESTORED_ICON) != 0) {
3399 String title = (cursor != null) ? cursor.getString(titleIndex) : null;
3400 if (!TextUtils.isEmpty(title)) {
Winson Chung82b016c2015-05-08 17:00:10 -07003401 info.title = Utilities.trim(title);
Sunny Goyal34942622014-08-29 17:20:55 -07003402 }
Sunny Goyal34942622014-08-29 17:20:55 -07003403 } else if ((promiseType & ShortcutInfo.FLAG_AUTOINTALL_ICON) != 0) {
3404 if (TextUtils.isEmpty(info.title)) {
Winson Chung82b016c2015-05-08 17:00:10 -07003405 info.title = (cursor != null) ? Utilities.trim(cursor.getString(titleIndex)) : "";
Sunny Goyal34942622014-08-29 17:20:55 -07003406 }
Sunny Goyal34942622014-08-29 17:20:55 -07003407 } else {
3408 throw new InvalidParameterException("Invalid restoreType " + promiseType);
3409 }
3410
Winson Chung82b016c2015-05-08 17:00:10 -07003411 info.contentDescription = mUserManager.getBadgedLabelForUser(info.title, info.user);
Chris Wrenf4d08112014-01-16 18:13:56 -05003412 info.itemType = LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT;
Sunny Goyal34942622014-08-29 17:20:55 -07003413 info.promisedIntent = intent;
Sunny Goyal756adbc2015-04-16 15:20:51 -07003414 info.status = promiseType;
Chris Wrenf4d08112014-01-16 18:13:56 -05003415 return info;
3416 }
3417
3418 /**
3419 * Make an Intent object for a restored application or shortcut item that points
3420 * to the market page for the item.
3421 */
Adam Cohen091440a2015-03-18 14:16:05 -07003422 @Thunk Intent getRestoredItemIntent(Cursor c, Context context, Intent intent) {
Chris Wrenf4d08112014-01-16 18:13:56 -05003423 ComponentName componentName = intent.getComponent();
Sunny Goyale7b8cd92014-08-27 14:04:33 -07003424 return getMarketIntent(componentName.getPackageName());
3425 }
3426
3427 static Intent getMarketIntent(String packageName) {
3428 return new Intent(Intent.ACTION_VIEW)
3429 .setData(new Uri.Builder()
Chris Wrenf4d08112014-01-16 18:13:56 -05003430 .scheme("market")
3431 .authority("details")
Sunny Goyale7b8cd92014-08-27 14:04:33 -07003432 .appendQueryParameter("id", packageName)
3433 .build());
Chris Wrenf4d08112014-01-16 18:13:56 -05003434 }
3435
3436 /**
Joe Onorato56d82912010-03-07 14:32:10 -05003437 * Make an ShortcutInfo object for a shortcut that is an application.
3438 *
3439 * If c is not null, then it will be used to fill in missing data like the title and icon.
3440 */
Sunny Goyal4fbc3822015-02-18 16:46:50 -08003441 public ShortcutInfo getAppShortcutInfo(PackageManager manager, Intent intent,
Kenny Guyed131872014-04-30 03:02:21 +01003442 UserHandleCompat user, Context context, Cursor c, int iconIndex, int titleIndex,
Sunny Goyal34b65272015-03-11 16:56:52 -07003443 boolean allowMissingTarget, boolean useLowResIcon) {
Kenny Guyed131872014-04-30 03:02:21 +01003444 if (user == null) {
3445 Log.d(TAG, "Null user found in getShortcutInfo");
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003446 return null;
3447 }
3448
Kenny Guyed131872014-04-30 03:02:21 +01003449 ComponentName componentName = intent.getComponent();
3450 if (componentName == null) {
3451 Log.d(TAG, "Missing component found in getShortcutInfo: " + componentName);
3452 return null;
3453 }
3454
3455 Intent newIntent = new Intent(intent.getAction(), null);
3456 newIntent.addCategory(Intent.CATEGORY_LAUNCHER);
3457 newIntent.setComponent(componentName);
3458 LauncherActivityInfoCompat lai = mLauncherApps.resolveActivity(newIntent, user);
Sunny Goyalf599ccf2014-07-08 13:01:29 -07003459 if ((lai == null) && !allowMissingTarget) {
Kenny Guyed131872014-04-30 03:02:21 +01003460 Log.d(TAG, "Missing activity found in getShortcutInfo: " + componentName);
3461 return null;
3462 }
3463
3464 final ShortcutInfo info = new ShortcutInfo();
Sunny Goyal34b65272015-03-11 16:56:52 -07003465 mIconCache.getTitleAndIcon(info, componentName, lai, user, false, useLowResIcon);
Sunny Goyal4fbc3822015-02-18 16:46:50 -08003466 if (mIconCache.isDefaultIcon(info.getIcon(mIconCache), user) && c != null) {
3467 Bitmap icon = Utilities.createIconBitmap(c, iconIndex, context);
3468 info.setIcon(icon == null ? mIconCache.getDefaultIcon(user) : icon);
Kenny Guyed131872014-04-30 03:02:21 +01003469 }
3470
Joe Onorato56d82912010-03-07 14:32:10 -05003471 // from the db
Sunny Goyal4fbc3822015-02-18 16:46:50 -08003472 if (TextUtils.isEmpty(info.title) && c != null) {
Winson Chung82b016c2015-05-08 17:00:10 -07003473 info.title = Utilities.trim(c.getString(titleIndex));
Joe Onorato56d82912010-03-07 14:32:10 -05003474 }
Sunny Goyal4fbc3822015-02-18 16:46:50 -08003475
Joe Onorato56d82912010-03-07 14:32:10 -05003476 // fall back to the class name of the activity
3477 if (info.title == null) {
3478 info.title = componentName.getClassName();
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003479 }
Sunny Goyal4fbc3822015-02-18 16:46:50 -08003480
Joe Onorato9c1289c2009-08-17 11:03:03 -04003481 info.itemType = LauncherSettings.Favorites.ITEM_TYPE_APPLICATION;
Kenny Guyed131872014-04-30 03:02:21 +01003482 info.user = user;
Winson Chung82b016c2015-05-08 17:00:10 -07003483 info.contentDescription = mUserManager.getBadgedLabelForUser(info.title, info.user);
Sunny Goyalfa401a12015-04-10 13:45:42 -07003484 if (lai != null) {
3485 info.flags = AppInfo.initFlags(lai);
3486 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003487 return info;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003488 }
The Android Open Source Projectbc219c32009-03-09 11:52:14 -07003489
Sunny Goyale2df0622015-04-24 11:27:00 -07003490 static ArrayList<ItemInfo> filterItemInfos(Iterable<ItemInfo> infos,
Winson Chung64359a52013-07-08 17:17:08 -07003491 ItemInfoFilter f) {
3492 HashSet<ItemInfo> filtered = new HashSet<ItemInfo>();
3493 for (ItemInfo i : infos) {
3494 if (i instanceof ShortcutInfo) {
3495 ShortcutInfo info = (ShortcutInfo) i;
Sunny Goyal34942622014-08-29 17:20:55 -07003496 ComponentName cn = info.getTargetComponent();
Winson Chung64359a52013-07-08 17:17:08 -07003497 if (cn != null && f.filterItem(null, info, cn)) {
3498 filtered.add(info);
3499 }
3500 } else if (i instanceof FolderInfo) {
3501 FolderInfo info = (FolderInfo) i;
3502 for (ShortcutInfo s : info.contents) {
Sunny Goyal34942622014-08-29 17:20:55 -07003503 ComponentName cn = s.getTargetComponent();
Winson Chung64359a52013-07-08 17:17:08 -07003504 if (cn != null && f.filterItem(info, s, cn)) {
3505 filtered.add(s);
Winson Chung8a435102012-08-30 17:16:53 -07003506 }
3507 }
Winson Chung64359a52013-07-08 17:17:08 -07003508 } else if (i instanceof LauncherAppWidgetInfo) {
3509 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) i;
3510 ComponentName cn = info.providerName;
3511 if (cn != null && f.filterItem(null, info, cn)) {
3512 filtered.add(info);
3513 }
Winson Chung8a435102012-08-30 17:16:53 -07003514 }
3515 }
Winson Chung64359a52013-07-08 17:17:08 -07003516 return new ArrayList<ItemInfo>(filtered);
3517 }
3518
Adam Cohen091440a2015-03-18 14:16:05 -07003519 @Thunk ArrayList<ItemInfo> getItemInfoForComponentName(final ComponentName cname,
Kenny Guyed131872014-04-30 03:02:21 +01003520 final UserHandleCompat user) {
Winson Chung64359a52013-07-08 17:17:08 -07003521 ItemInfoFilter filter = new ItemInfoFilter() {
3522 @Override
3523 public boolean filterItem(ItemInfo parent, ItemInfo info, ComponentName cn) {
Kenny Guyed131872014-04-30 03:02:21 +01003524 if (info.user == null) {
3525 return cn.equals(cname);
3526 } else {
3527 return cn.equals(cname) && info.user.equals(user);
3528 }
Winson Chung64359a52013-07-08 17:17:08 -07003529 }
3530 };
Sunny Goyale2df0622015-04-24 11:27:00 -07003531 return filterItemInfos(sBgItemsIdMap, filter);
Winson Chung64359a52013-07-08 17:17:08 -07003532 }
3533
Sunny Goyal1a745e82014-10-02 15:58:31 -07003534 /**
Joe Onorato0589f0f2010-02-08 13:44:00 -08003535 * Make an ShortcutInfo object for a shortcut that isn't an application.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003536 */
Adam Cohen091440a2015-03-18 14:16:05 -07003537 @Thunk ShortcutInfo getShortcutInfo(Cursor c, Context context,
Joe Onorato56d82912010-03-07 14:32:10 -05003538 int iconTypeIndex, int iconPackageIndex, int iconResourceIndex, int iconIndex,
3539 int titleIndex) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003540
Joe Onorato56d82912010-03-07 14:32:10 -05003541 Bitmap icon = null;
Michael Jurkac9d95c52011-08-29 14:03:34 -07003542 final ShortcutInfo info = new ShortcutInfo();
Kenny Guyed131872014-04-30 03:02:21 +01003543 // Non-app shortcuts are only supported for current user.
3544 info.user = UserHandleCompat.myUserHandle();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003545 info.itemType = LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003546
Joe Onorato8ddc4fd2010-03-17 09:14:50 -07003547 // TODO: If there's an explicit component and we can't install that, delete it.
3548
Winson Chung82b016c2015-05-08 17:00:10 -07003549 info.title = Utilities.trim(c.getString(titleIndex));
Joe Onorato56d82912010-03-07 14:32:10 -05003550
Joe Onorato9c1289c2009-08-17 11:03:03 -04003551 int iconType = c.getInt(iconTypeIndex);
3552 switch (iconType) {
3553 case LauncherSettings.Favorites.ICON_TYPE_RESOURCE:
3554 String packageName = c.getString(iconPackageIndex);
3555 String resourceName = c.getString(iconResourceIndex);
Joe Onorato56d82912010-03-07 14:32:10 -05003556 info.customIcon = false;
3557 // the resource
Sunny Goyal53d7ee42015-05-22 12:25:45 -07003558 icon = Utilities.createIconBitmap(packageName, resourceName, context);
Joe Onorato56d82912010-03-07 14:32:10 -05003559 // the db
3560 if (icon == null) {
Sunny Goyal4fbc3822015-02-18 16:46:50 -08003561 icon = Utilities.createIconBitmap(c, iconIndex, context);
Joe Onorato56d82912010-03-07 14:32:10 -05003562 }
3563 // the fallback icon
3564 if (icon == null) {
Kenny Guyed131872014-04-30 03:02:21 +01003565 icon = mIconCache.getDefaultIcon(info.user);
Joe Onorato56d82912010-03-07 14:32:10 -05003566 info.usingFallbackIcon = true;
3567 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003568 break;
3569 case LauncherSettings.Favorites.ICON_TYPE_BITMAP:
Sunny Goyal4fbc3822015-02-18 16:46:50 -08003570 icon = Utilities.createIconBitmap(c, iconIndex, context);
Joe Onorato56d82912010-03-07 14:32:10 -05003571 if (icon == null) {
Kenny Guyed131872014-04-30 03:02:21 +01003572 icon = mIconCache.getDefaultIcon(info.user);
Joe Onorato56d82912010-03-07 14:32:10 -05003573 info.customIcon = false;
3574 info.usingFallbackIcon = true;
3575 } else {
3576 info.customIcon = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003577 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003578 break;
3579 default:
Kenny Guyed131872014-04-30 03:02:21 +01003580 icon = mIconCache.getDefaultIcon(info.user);
Joe Onorato56d82912010-03-07 14:32:10 -05003581 info.usingFallbackIcon = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003582 info.customIcon = false;
3583 break;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003584 }
Joe Onoratod8d22da2010-03-11 17:59:11 -08003585 info.setIcon(icon);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003586 return info;
3587 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003588
Sunny Goyal2350bc92014-10-14 16:42:54 -07003589 ShortcutInfo infoFromShortcutIntent(Context context, Intent data) {
Joe Onorato0589f0f2010-02-08 13:44:00 -08003590 Intent intent = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_INTENT);
3591 String name = data.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
3592 Parcelable bitmap = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_ICON);
3593
Adam Cohend9198822011-11-22 16:42:47 -08003594 if (intent == null) {
3595 // If the intent is null, we can't construct a valid ShortcutInfo, so we return null
3596 Log.e(TAG, "Can't construct ShorcutInfo with null intent");
3597 return null;
3598 }
3599
Joe Onorato0589f0f2010-02-08 13:44:00 -08003600 Bitmap icon = null;
Joe Onorato0589f0f2010-02-08 13:44:00 -08003601 boolean customIcon = false;
3602 ShortcutIconResource iconResource = null;
3603
Sunny Goyal2fce90c2014-10-07 12:01:58 -07003604 if (bitmap instanceof Bitmap) {
3605 icon = Utilities.createIconBitmap((Bitmap) bitmap, context);
Joe Onorato0589f0f2010-02-08 13:44:00 -08003606 customIcon = true;
3607 } else {
3608 Parcelable extra = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07003609 if (extra instanceof ShortcutIconResource) {
3610 iconResource = (ShortcutIconResource) extra;
3611 icon = Utilities.createIconBitmap(iconResource.packageName,
Sunny Goyal53d7ee42015-05-22 12:25:45 -07003612 iconResource.resourceName, context);
Joe Onorato0589f0f2010-02-08 13:44:00 -08003613 }
3614 }
3615
Michael Jurkac9d95c52011-08-29 14:03:34 -07003616 final ShortcutInfo info = new ShortcutInfo();
Joe Onorato56d82912010-03-07 14:32:10 -05003617
Kenny Guyed131872014-04-30 03:02:21 +01003618 // Only support intents for current user for now. Intents sent from other
3619 // users wouldn't get here without intent forwarding anyway.
3620 info.user = UserHandleCompat.myUserHandle();
Joe Onorato56d82912010-03-07 14:32:10 -05003621 if (icon == null) {
Sunny Goyal2350bc92014-10-14 16:42:54 -07003622 icon = mIconCache.getDefaultIcon(info.user);
3623 info.usingFallbackIcon = true;
Joe Onorato56d82912010-03-07 14:32:10 -05003624 }
Joe Onorato0589f0f2010-02-08 13:44:00 -08003625 info.setIcon(icon);
Joe Onorato56d82912010-03-07 14:32:10 -05003626
Winson Chung82b016c2015-05-08 17:00:10 -07003627 info.title = Utilities.trim(name);
3628 info.contentDescription = mUserManager.getBadgedLabelForUser(info.title, info.user);
Joe Onorato0589f0f2010-02-08 13:44:00 -08003629 info.intent = intent;
3630 info.customIcon = customIcon;
3631 info.iconResource = iconResource;
3632
3633 return info;
3634 }
3635
Joe Onorato9c1289c2009-08-17 11:03:03 -04003636 /**
Adam Cohendf2cc412011-04-27 16:56:57 -07003637 * Return an existing FolderInfo object if we have encountered this ID previously,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003638 * or make a new one.
3639 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003640 @Thunk static FolderInfo findOrMakeFolder(LongArrayMap<FolderInfo> folders, long id) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003641 // See if a placeholder was created for us already
3642 FolderInfo folderInfo = folders.get(id);
Adam Cohendf2cc412011-04-27 16:56:57 -07003643 if (folderInfo == null) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003644 // No placeholder -- create a new instance
Michael Jurkac9d95c52011-08-29 14:03:34 -07003645 folderInfo = new FolderInfo();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003646 folders.put(id, folderInfo);
3647 }
Adam Cohendf2cc412011-04-27 16:56:57 -07003648 return folderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003649 }
3650
Joe Onoratobe386092009-11-17 17:32:16 -08003651
Sunny Goyal651077b2014-06-30 14:15:31 -07003652 static boolean isValidProvider(AppWidgetProviderInfo provider) {
3653 return (provider != null) && (provider.provider != null)
3654 && (provider.provider.getPackageName() != null);
3655 }
3656
Joe Onoratobe386092009-11-17 17:32:16 -08003657 public void dumpState() {
Joe Onoratobe386092009-11-17 17:32:16 -08003658 Log.d(TAG, "mCallbacks=" + mCallbacks);
Michael Jurkaeadbfc52013-09-04 00:45:37 +02003659 AppInfo.dumpApplicationInfoList(TAG, "mAllAppsList.data", mBgAllAppsList.data);
3660 AppInfo.dumpApplicationInfoList(TAG, "mAllAppsList.added", mBgAllAppsList.added);
3661 AppInfo.dumpApplicationInfoList(TAG, "mAllAppsList.removed", mBgAllAppsList.removed);
3662 AppInfo.dumpApplicationInfoList(TAG, "mAllAppsList.modified", mBgAllAppsList.modified);
Joe Onorato36115782010-06-17 13:28:48 -04003663 if (mLoaderTask != null) {
3664 mLoaderTask.dumpState();
3665 } else {
3666 Log.d(TAG, "mLoaderTask=null");
3667 }
Joe Onoratobe386092009-11-17 17:32:16 -08003668 }
Sunny Goyale0f58d72014-11-10 18:05:31 -08003669
3670 public Callbacks getCallback() {
3671 return mCallbacks != null ? mCallbacks.get() : null;
3672 }
Sunny Goyal18bf8e22015-04-08 18:13:46 -07003673
3674 /**
3675 * @return {@link FolderInfo} if its already loaded.
3676 */
3677 public FolderInfo findFolderById(Long folderId) {
3678 synchronized (sBgLock) {
3679 return sBgFolders.get(folderId);
3680 }
3681 }
Sunny Goyal756adbc2015-04-16 15:20:51 -07003682
3683 /**
3684 * @return the looper for the worker thread which can be used to start background tasks.
3685 */
3686 public static Looper getWorkerLooper() {
3687 return sWorkerThread.getLooper();
3688 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003689}