blob: eed23770ef87f8e428b4fc89a46b65e7a426dc22 [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
Sunny Goyal29947f02017-12-18 13:49:44 -080019import static com.android.launcher3.LauncherAppState.ACTION_FORCE_ROLOAD;
20import static com.android.launcher3.config.FeatureFlags.IS_DOGFOOD_BUILD;
21
Sunny Goyalf599ccf2014-07-08 13:01:29 -070022import android.content.BroadcastReceiver;
Sunny Goyalf599ccf2014-07-08 13:01:29 -070023import android.content.Context;
24import android.content.Intent;
Sunny Goyal6bbf6002019-04-17 18:38:52 -070025import android.content.pm.ShortcutInfo;
Joe Onorato36115782010-06-17 13:28:48 -040026import android.os.Handler;
27import android.os.HandlerThread;
Sunny Goyal756adbc2015-04-16 15:20:51 -070028import android.os.Looper;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080029import android.os.Process;
Sunny Goyal7c74e4a2016-12-15 15:53:17 -080030import android.os.UserHandle;
Winson Chunga90303b2013-11-15 13:05:06 -080031import android.text.TextUtils;
Winson Chungaafa03c2010-06-11 17:34:16 -070032import android.util.Log;
Sunny Goyala474a9b2017-05-04 16:47:11 -070033import android.util.Pair;
Michael Jurka34c2e6c2013-12-13 16:07:45 +010034
Kenny Guyed131872014-04-30 03:02:21 +010035import com.android.launcher3.compat.LauncherAppsCompat;
Sunny Goyale755d462014-07-22 13:48:29 -070036import com.android.launcher3.compat.PackageInstallerCompat.PackageInstallInfo;
Kenny Guyed131872014-04-30 03:02:21 +010037import com.android.launcher3.compat.UserManagerCompat;
Sunny Goyalf840f102018-09-21 14:41:05 -070038import com.android.launcher3.icons.IconCache;
Sunny Goyalc5939392018-12-07 11:43:47 -080039import com.android.launcher3.icons.LauncherIcons;
Sunny Goyalf0ba8b72016-09-09 15:47:55 -070040import com.android.launcher3.model.AddWorkspaceItemsTask;
Sunny Goyal87dcde62019-07-17 20:35:56 -070041import com.android.launcher3.model.AllAppsList;
Sunny Goyale75d9f12018-01-31 11:59:00 -080042import com.android.launcher3.model.BaseModelUpdateTask;
Sunny Goyale9956a72016-09-01 17:24:47 -070043import com.android.launcher3.model.BgDataModel;
Sunny Goyal87dcde62019-07-17 20:35:56 -070044import com.android.launcher3.model.BgDataModel.Callbacks;
Sunny Goyalf0ba8b72016-09-09 15:47:55 -070045import com.android.launcher3.model.CacheDataUpdatedTask;
Sunny Goyalf8d6ed22017-06-01 14:26:38 -070046import com.android.launcher3.model.LoaderResults;
Sunny Goyalb434fde2017-06-06 10:46:59 -070047import com.android.launcher3.model.LoaderTask;
Sunny Goyal43bf11d2017-02-02 13:52:53 -080048import com.android.launcher3.model.ModelWriter;
Sunny Goyalf0ba8b72016-09-09 15:47:55 -070049import com.android.launcher3.model.PackageInstallStateChangedTask;
50import com.android.launcher3.model.PackageUpdatedTask;
51import com.android.launcher3.model.ShortcutsChangedTask;
52import com.android.launcher3.model.UserLockStateChangedTask;
Tony Wickhambfbf7f92016-05-19 11:19:39 -070053import com.android.launcher3.shortcuts.DeepShortcutManager;
Tony Wickham86222d22017-03-29 15:30:43 -070054import com.android.launcher3.util.PackageUserKey;
Sunny Goyalaaf7d1d2016-05-17 13:38:54 -070055import com.android.launcher3.util.Preconditions;
Adam Cohen091440a2015-03-18 14:16:05 -070056import com.android.launcher3.util.Thunk;
Romain Guyedcce092010-03-04 13:03:17 -080057
Hyunyoung Song3c7d9cb2017-01-30 15:11:27 -080058import java.io.FileDescriptor;
59import java.io.PrintWriter;
Michael Jurkac2f801e2011-07-12 14:19:46 -070060import java.lang.ref.WeakReference;
Michael Jurkac2f801e2011-07-12 14:19:46 -070061import java.util.ArrayList;
Winson Chungb8b2a5a2012-07-12 17:55:31 -070062import java.util.HashSet;
Michael Jurkac2f801e2011-07-12 14:19:46 -070063import java.util.List;
Sunny Goyaldd96a5e2017-02-17 11:22:34 -080064import java.util.concurrent.CancellationException;
Sunny Goyal527c7d32015-08-28 15:19:36 -070065import java.util.concurrent.Executor;
Sunny Goyal8c48d8b2019-01-25 15:10:18 -080066import java.util.function.Supplier;
Michael Jurkac2f801e2011-07-12 14:19:46 -070067
Sunny Goyald2303072018-08-14 15:21:45 -070068import androidx.annotation.Nullable;
69
The Android Open Source Project31dd5032009-03-03 19:32:27 -080070/**
71 * Maintains in-memory state of the Launcher. It is expected that there should be only one
72 * LauncherModel object held in a static. Also provide APIs for updating the database state
The Android Open Source Projectbc219c32009-03-09 11:52:14 -070073 * for the Launcher.
The Android Open Source Project31dd5032009-03-03 19:32:27 -080074 */
Kenny Guyed131872014-04-30 03:02:21 +010075public class LauncherModel extends BroadcastReceiver
Kenny Guyc2bd8102014-06-30 12:30:31 +010076 implements LauncherAppsCompat.OnAppsChangedCallbackCompat {
Chris Wrenee523362014-09-09 10:09:02 -040077 private static final boolean DEBUG_RECEIVER = false;
Chris Wrenb358f812014-04-16 13:37:00 -040078
Joe Onorato9c1289c2009-08-17 11:03:03 -040079 static final String TAG = "Launcher.Model";
The Android Open Source Projectf96811c2009-03-18 17:39:48 -070080
Sunny Goyalb265ba72017-02-14 15:03:45 -080081 private final MainThreadExecutor mUiExecutor = new MainThreadExecutor();
Adam Cohen091440a2015-03-18 14:16:05 -070082 @Thunk final LauncherAppState mApp;
83 @Thunk final Object mLock = new Object();
Sunny Goyalb434fde2017-06-06 10:46:59 -070084 @Thunk
85 LoaderTask mLoaderTask;
Adam Cohen091440a2015-03-18 14:16:05 -070086 @Thunk boolean mIsLoaderTaskRunning;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080087
Adam Cohen091440a2015-03-18 14:16:05 -070088 @Thunk static final HandlerThread sWorkerThread = new HandlerThread("launcher-loader");
Sunny Goyal06a07e92018-11-07 16:54:02 -080089 private static final Looper mWorkerLooper;
Brad Fitzpatrick700889f2010-10-11 09:40:44 -070090 static {
91 sWorkerThread.start();
Sunny Goyal06a07e92018-11-07 16:54:02 -080092 mWorkerLooper = sWorkerThread.getLooper();
Brad Fitzpatrick700889f2010-10-11 09:40:44 -070093 }
Sunny Goyal06a07e92018-11-07 16:54:02 -080094 @Thunk static final Handler sWorker = new Handler(mWorkerLooper);
Brad Fitzpatrick700889f2010-10-11 09:40:44 -070095
Sunny Goyaldd96a5e2017-02-17 11:22:34 -080096 // Indicates whether the current model data is valid or not.
97 // We start off with everything not loaded. After that, we assume that
Joe Onoratocc67f472010-06-08 10:54:30 -070098 // our monitoring of the package manager provides all updates and we never
Sunny Goyaldd96a5e2017-02-17 11:22:34 -080099 // need to do a requery. This is only ever touched from the loader thread.
100 private boolean mModelLoaded;
Hyunyoung Song6aa37292017-02-06 10:46:24 -0800101 public boolean isModelLoaded() {
102 synchronized (mLock) {
103 return mModelLoaded && mLoaderTask == null;
104 }
105 }
Joe Onoratocc67f472010-06-08 10:54:30 -0700106
Adam Cohen091440a2015-03-18 14:16:05 -0700107 @Thunk WeakReference<Callbacks> mCallbacks;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800108
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700109 // < only access in worker thread >
Sunny Goyal2e1efb42016-03-03 16:58:55 -0800110 private final AllAppsList mBgAllAppsList;
Sunny Goyal95f3d6b2016-08-10 16:09:29 -0700111
Sunny Goyale9956a72016-09-01 17:24:47 -0700112 /**
113 * All the static data should be accessed on the background thread, A lock should be acquired
114 * on this object when accessing any data from this model.
115 */
116 static final BgDataModel sBgDataModel = new BgDataModel();
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700117
Sunny Goyalc6e97692017-06-02 13:46:55 -0700118 // Runnable to check if the shortcuts permission has changed.
119 private final Runnable mShortcutPermissionCheckRunnable = new Runnable() {
120 @Override
121 public void run() {
122 if (mModelLoaded) {
123 boolean hasShortcutHostPermission =
124 DeepShortcutManager.getInstance(mApp.getContext()).hasHostPermission();
125 if (hasShortcutHostPermission != sBgDataModel.hasShortcutHostPermission) {
126 forceReload();
127 }
128 }
129 }
130 };
Kenny Guyed131872014-04-30 03:02:21 +0100131
Sunny Goyaldde4fd92016-11-21 16:02:39 +0530132 LauncherModel(LauncherAppState app, IconCache iconCache, AppFilter appFilter) {
Daniel Sandlere4f98912013-06-25 15:13:26 -0400133 mApp = app;
Bjorn Bringert1307f632013-10-03 22:31:03 +0100134 mBgAllAppsList = new AllAppsList(iconCache, appFilter);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800135 }
136
Sunny Goyalf0ba8b72016-09-09 15:47:55 -0700137 public void setPackageState(PackageInstallInfo installInfo) {
138 enqueueModelUpdateTask(new PackageInstallStateChangedTask(installInfo));
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500139 }
140
Sunny Goyal756adbc2015-04-16 15:20:51 -0700141 /**
142 * Updates the icons and label of all pending icons for the provided package name.
143 */
144 public void updateSessionDisplayInfo(final String packageName) {
Sunny Goyalf0ba8b72016-09-09 15:47:55 -0700145 HashSet<String> packages = new HashSet<>();
146 packages.add(packageName);
147 enqueueModelUpdateTask(new CacheDataUpdatedTask(
Sunny Goyal7c74e4a2016-12-15 15:53:17 -0800148 CacheDataUpdatedTask.OP_SESSION_UPDATE, Process.myUserHandle(), packages));
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800149 }
150
151 /**
152 * Adds the provided items to the workspace.
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800153 */
Sunny Goyal91498ab2017-10-05 15:57:40 -0700154 public void addAndBindAddedWorkspaceItems(List<Pair<ItemInfo, Object>> itemList) {
Tony Wickham6a71a5b2018-08-21 11:40:23 -0700155 Callbacks callbacks = getCallback();
156 if (callbacks != null) {
157 callbacks.preAddApps();
158 }
Sunny Goyal91498ab2017-10-05 15:57:40 -0700159 enqueueModelUpdateTask(new AddWorkspaceItemsTask(itemList));
Winson Chung64359a52013-07-08 17:17:08 -0700160 }
161
Sunny Goyal605bcf32018-03-02 15:16:12 -0800162 public ModelWriter getWriter(boolean hasVerticalHotseat, boolean verifyChanges) {
163 return new ModelWriter(mApp.getContext(), this, sBgDataModel,
164 hasVerticalHotseat, verifyChanges);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800165 }
166
Joe Onorato9c1289c2009-08-17 11:03:03 -0400167 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -0400168 * Set this as the current Launcher activity object for the loader.
169 */
170 public void initialize(Callbacks callbacks) {
171 synchronized (mLock) {
Sunny Goyalaaf7d1d2016-05-17 13:38:54 -0700172 Preconditions.assertUIThread();
Sunny Goyalaaf7d1d2016-05-17 13:38:54 -0700173 mCallbacks = new WeakReference<>(callbacks);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400174 }
175 }
176
Kenny Guyed131872014-04-30 03:02:21 +0100177 @Override
Sunny Goyal7c74e4a2016-12-15 15:53:17 -0800178 public void onPackageChanged(String packageName, UserHandle user) {
Kenny Guyed131872014-04-30 03:02:21 +0100179 int op = PackageUpdatedTask.OP_UPDATE;
Sunny Goyalf0ba8b72016-09-09 15:47:55 -0700180 enqueueModelUpdateTask(new PackageUpdatedTask(op, user, packageName));
Kenny Guyed131872014-04-30 03:02:21 +0100181 }
182
183 @Override
Sunny Goyal7c74e4a2016-12-15 15:53:17 -0800184 public void onPackageRemoved(String packageName, UserHandle user) {
Sunny Goyalc2936bc2016-09-01 15:50:36 -0700185 onPackagesRemoved(user, packageName);
186 }
187
Sunny Goyal7c74e4a2016-12-15 15:53:17 -0800188 public void onPackagesRemoved(UserHandle user, String... packages) {
Kenny Guyed131872014-04-30 03:02:21 +0100189 int op = PackageUpdatedTask.OP_REMOVE;
Sunny Goyalf0ba8b72016-09-09 15:47:55 -0700190 enqueueModelUpdateTask(new PackageUpdatedTask(op, user, packages));
Kenny Guyed131872014-04-30 03:02:21 +0100191 }
192
193 @Override
Sunny Goyal7c74e4a2016-12-15 15:53:17 -0800194 public void onPackageAdded(String packageName, UserHandle user) {
Kenny Guyed131872014-04-30 03:02:21 +0100195 int op = PackageUpdatedTask.OP_ADD;
Sunny Goyalf0ba8b72016-09-09 15:47:55 -0700196 enqueueModelUpdateTask(new PackageUpdatedTask(op, user, packageName));
Kenny Guyed131872014-04-30 03:02:21 +0100197 }
198
199 @Override
Sunny Goyal7c74e4a2016-12-15 15:53:17 -0800200 public void onPackagesAvailable(String[] packageNames, UserHandle user,
Kenny Guyed131872014-04-30 03:02:21 +0100201 boolean replacing) {
Sunny Goyalf0ba8b72016-09-09 15:47:55 -0700202 enqueueModelUpdateTask(
203 new PackageUpdatedTask(PackageUpdatedTask.OP_UPDATE, user, packageNames));
Kenny Guyed131872014-04-30 03:02:21 +0100204 }
205
206 @Override
Sunny Goyal7c74e4a2016-12-15 15:53:17 -0800207 public void onPackagesUnavailable(String[] packageNames, UserHandle user,
Kenny Guyed131872014-04-30 03:02:21 +0100208 boolean replacing) {
209 if (!replacing) {
Sunny Goyalf0ba8b72016-09-09 15:47:55 -0700210 enqueueModelUpdateTask(new PackageUpdatedTask(
211 PackageUpdatedTask.OP_UNAVAILABLE, user, packageNames));
Kenny Guyed131872014-04-30 03:02:21 +0100212 }
Kenny Guyed131872014-04-30 03:02:21 +0100213 }
214
Kenny Guy44cba692016-01-21 19:50:02 +0000215 @Override
Sunny Goyal7c74e4a2016-12-15 15:53:17 -0800216 public void onPackagesSuspended(String[] packageNames, UserHandle user) {
Sunny Goyalf0ba8b72016-09-09 15:47:55 -0700217 enqueueModelUpdateTask(new PackageUpdatedTask(
218 PackageUpdatedTask.OP_SUSPEND, user, packageNames));
Kenny Guy44cba692016-01-21 19:50:02 +0000219 }
220
221 @Override
Sunny Goyal7c74e4a2016-12-15 15:53:17 -0800222 public void onPackagesUnsuspended(String[] packageNames, UserHandle user) {
Sunny Goyalf0ba8b72016-09-09 15:47:55 -0700223 enqueueModelUpdateTask(new PackageUpdatedTask(
224 PackageUpdatedTask.OP_UNSUSPEND, user, packageNames));
Kenny Guy44cba692016-01-21 19:50:02 +0000225 }
226
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700227 @Override
Sunny Goyal6bbf6002019-04-17 18:38:52 -0700228 public void onShortcutsChanged(String packageName, List<ShortcutInfo> shortcuts,
Sunny Goyal7c74e4a2016-12-15 15:53:17 -0800229 UserHandle user) {
Sunny Goyalf0ba8b72016-09-09 15:47:55 -0700230 enqueueModelUpdateTask(new ShortcutsChangedTask(packageName, shortcuts, user, true));
Sunny Goyal50941fb2016-08-04 12:03:52 -0700231 }
232
Sunny Goyal6bbf6002019-04-17 18:38:52 -0700233 public void updatePinnedShortcuts(String packageName, List<ShortcutInfo> shortcuts,
Sunny Goyal7c74e4a2016-12-15 15:53:17 -0800234 UserHandle user) {
Sunny Goyalf0ba8b72016-09-09 15:47:55 -0700235 enqueueModelUpdateTask(new ShortcutsChangedTask(packageName, shortcuts, user, false));
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700236 }
237
Joe Onorato1d8e7bb2009-10-15 19:49:43 -0700238 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -0400239 * Call from the handler for ACTION_PACKAGE_ADDED, ACTION_PACKAGE_REMOVED and
240 * ACTION_PACKAGE_CHANGED.
241 */
Narayan Kamathcb1a4772011-06-28 13:46:59 +0100242 @Override
Joe Onoratof99f8c12009-10-31 17:27:36 -0400243 public void onReceive(Context context, Intent intent) {
Chris Wrenb358f812014-04-16 13:37:00 -0400244 if (DEBUG_RECEIVER) Log.d(TAG, "onReceive intent=" + intent);
Winson Chungaafa03c2010-06-11 17:34:16 -0700245
Joe Onorato36115782010-06-17 13:28:48 -0400246 final String action = intent.getAction();
Kenny Guyed131872014-04-30 03:02:21 +0100247 if (Intent.ACTION_LOCALE_CHANGED.equals(action)) {
Reena Lee93f824a2011-09-23 17:20:28 -0700248 // If we have changed locale we need to clear out the labels in all apps/workspace.
249 forceReload();
Sunny Goyald3b87ef2016-07-28 12:11:54 -0700250 } else if (Intent.ACTION_MANAGED_PROFILE_ADDED.equals(action)
251 || Intent.ACTION_MANAGED_PROFILE_REMOVED.equals(action)) {
Sunny Goyal823fd502015-08-04 11:40:13 -0700252 UserManagerCompat.getInstance(context).enableAndResetCache();
Sunny Goyal957c13f2015-05-01 13:02:20 -0700253 forceReload();
Sunny Goyald3b87ef2016-07-28 12:11:54 -0700254 } else if (Intent.ACTION_MANAGED_PROFILE_AVAILABLE.equals(action) ||
255 Intent.ACTION_MANAGED_PROFILE_UNAVAILABLE.equals(action) ||
256 Intent.ACTION_MANAGED_PROFILE_UNLOCKED.equals(action)) {
Sunny Goyal7c74e4a2016-12-15 15:53:17 -0800257 UserHandle user = intent.getParcelableExtra(Intent.EXTRA_USER);
Sunny Goyalda891c12016-03-18 18:29:24 -0700258 if (user != null) {
Sunny Goyald3b87ef2016-07-28 12:11:54 -0700259 if (Intent.ACTION_MANAGED_PROFILE_AVAILABLE.equals(action) ||
260 Intent.ACTION_MANAGED_PROFILE_UNAVAILABLE.equals(action)) {
Sunny Goyalf0ba8b72016-09-09 15:47:55 -0700261 enqueueModelUpdateTask(new PackageUpdatedTask(
262 PackageUpdatedTask.OP_USER_AVAILABILITY_CHANGE, user));
Sunny Goyald3b87ef2016-07-28 12:11:54 -0700263 }
264
265 // ACTION_MANAGED_PROFILE_UNAVAILABLE sends the profile back to locked mode, so
266 // we need to run the state change task again.
267 if (Intent.ACTION_MANAGED_PROFILE_UNAVAILABLE.equals(action) ||
268 Intent.ACTION_MANAGED_PROFILE_UNLOCKED.equals(action)) {
Sunny Goyalf0ba8b72016-09-09 15:47:55 -0700269 enqueueModelUpdateTask(new UserLockStateChangedTask(user));
Sunny Goyald3b87ef2016-07-28 12:11:54 -0700270 }
Sunny Goyalda891c12016-03-18 18:29:24 -0700271 }
Sunny Goyal29947f02017-12-18 13:49:44 -0800272 } else if (IS_DOGFOOD_BUILD && ACTION_FORCE_ROLOAD.equals(action)) {
Sunny Goyal3e195d72019-06-19 14:24:38 -0700273 Launcher l = (Launcher) getCallback();
274 l.reload();
Joe Onoratoe9ad59e2010-10-29 17:35:36 -0700275 }
276 }
277
Tonyf80e8932018-12-21 11:58:04 -0800278 public void forceReload() {
279 forceReload(-1);
280 }
281
Sunny Goyaldd96a5e2017-02-17 11:22:34 -0800282 /**
283 * Reloads the workspace items from the DB and re-binds the workspace. This should generally
284 * not be called as DB updates are automatically followed by UI update
Tonyf80e8932018-12-21 11:58:04 -0800285 * @param synchronousBindPage The page to bind first. Can pass -1 to use the current page.
Sunny Goyaldd96a5e2017-02-17 11:22:34 -0800286 */
Tonyf80e8932018-12-21 11:58:04 -0800287 public void forceReload(int synchronousBindPage) {
Sunny Goyaldd96a5e2017-02-17 11:22:34 -0800288 synchronized (mLock) {
289 // Stop any existing loaders first, so they don't set mModelLoaded to true later
Sunny Goyale86f11f2017-06-06 14:33:18 -0700290 stopLoader();
Sunny Goyaldd96a5e2017-02-17 11:22:34 -0800291 mModelLoaded = false;
292 }
Winson Chungf0c6ae02012-03-21 16:10:31 -0700293
Sunny Goyal29947f02017-12-18 13:49:44 -0800294 // Start the loader if launcher is already running, otherwise the loader will run,
295 // the next time launcher starts
Sunny Goyale0f58d72014-11-10 18:05:31 -0800296 Callbacks callbacks = getCallback();
297 if (callbacks != null) {
Tonyf80e8932018-12-21 11:58:04 -0800298 if (synchronousBindPage < 0) {
299 synchronousBindPage = callbacks.getCurrentWorkspaceScreen();
300 }
301 startLoader(synchronousBindPage);
Joe Onoratoe9ad59e2010-10-29 17:35:36 -0700302 }
Joe Onorato36115782010-06-17 13:28:48 -0400303 }
Joe Onoratof99f8c12009-10-31 17:27:36 -0400304
Adam Cohen1a85c582014-09-30 09:48:49 -0700305 public boolean isCurrentCallbacks(Callbacks callbacks) {
306 return (mCallbacks != null && mCallbacks.get() == callbacks);
307 }
308
Sunny Goyalb5b9ad62016-04-02 11:23:39 -0700309 /**
310 * Starts the loader. Tries to bind {@params synchronousBindPage} synchronously if possible.
311 * @return true if the page could be bound synchronously.
312 */
313 public boolean startLoader(int synchronousBindPage) {
Sunny Goyal756adbc2015-04-16 15:20:51 -0700314 // Enable queue before starting loader. It will get disabled in Launcher#finishBindingItems
Sunny Goyala474a9b2017-05-04 16:47:11 -0700315 InstallShortcutReceiver.enableInstallQueue(InstallShortcutReceiver.FLAG_LOADER_RUNNING);
Joe Onorato36115782010-06-17 13:28:48 -0400316 synchronized (mLock) {
Joe Onorato36115782010-06-17 13:28:48 -0400317 // Don't bother to start the thread if we know it's not going to do anything
318 if (mCallbacks != null && mCallbacks.get() != null) {
Sunny Goyal527c7d32015-08-28 15:19:36 -0700319 final Callbacks oldCallbacks = mCallbacks.get();
320 // Clear any pending bind-runnables from the synchronized load process.
Sunny Goyal0e7724c2018-02-22 13:22:21 -0800321 mUiExecutor.execute(oldCallbacks::clearPendingBinds);
Sunny Goyal527c7d32015-08-28 15:19:36 -0700322
Joe Onorato36115782010-06-17 13:28:48 -0400323 // If there is already one running, tell it to stop.
Sunny Goyale86f11f2017-06-06 14:33:18 -0700324 stopLoader();
Sunny Goyalf8d6ed22017-06-01 14:26:38 -0700325 LoaderResults loaderResults = new LoaderResults(mApp, sBgDataModel,
326 mBgAllAppsList, synchronousBindPage, mCallbacks);
Sunny Goyale86f11f2017-06-06 14:33:18 -0700327 if (mModelLoaded && !mIsLoaderTaskRunning) {
Sunny Goyalf8d6ed22017-06-01 14:26:38 -0700328 // Divide the set of loaded items into those that we are binding synchronously,
329 // and everything else that is to be bound normally (asynchronously).
330 loaderResults.bindWorkspace();
331 // For now, continue posting the binding of AllApps as there are other
332 // issues that arise from that.
333 loaderResults.bindAllApps();
334 loaderResults.bindDeepShortcuts();
Sunny Goyalc6e97692017-06-02 13:46:55 -0700335 loaderResults.bindWidgets();
Sunny Goyalb5b9ad62016-04-02 11:23:39 -0700336 return true;
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700337 } else {
Sunny Goyale86f11f2017-06-06 14:33:18 -0700338 startLoaderForResults(loaderResults);
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700339 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400340 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400341 }
Sunny Goyalb5b9ad62016-04-02 11:23:39 -0700342 return false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400343 }
344
Sunny Goyale86f11f2017-06-06 14:33:18 -0700345 /**
346 * If there is already a loader task running, tell it to stop.
347 */
Joe Onorato36115782010-06-17 13:28:48 -0400348 public void stopLoader() {
349 synchronized (mLock) {
Sunny Goyale86f11f2017-06-06 14:33:18 -0700350 LoaderTask oldTask = mLoaderTask;
351 mLoaderTask = null;
352 if (oldTask != null) {
353 oldTask.stopLocked();
Joe Onorato9c1289c2009-08-17 11:03:03 -0400354 }
355 }
Joe Onorato36115782010-06-17 13:28:48 -0400356 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400357
Sunny Goyale86f11f2017-06-06 14:33:18 -0700358 public void startLoaderForResults(LoaderResults results) {
359 synchronized (mLock) {
360 stopLoader();
361 mLoaderTask = new LoaderTask(mApp, mBgAllAppsList, sBgDataModel, results);
Sunny Goyal51f220d2019-05-29 11:05:30 -0700362
363 // Always post the loader task, instead of running directly (even on same thread) so
364 // that we exit any nested synchronized blocks
365 sWorker.post(mLoaderTask);
Sunny Goyale86f11f2017-06-06 14:33:18 -0700366 }
367 }
368
Winson Chungd6519662018-02-16 03:23:51 +0000369 public void startLoaderForResultsIfNotLoaded(LoaderResults results) {
370 synchronized (mLock) {
371 if (!isModelLoaded()) {
372 Log.d(TAG, "Workspace not loaded, loading now");
373 startLoaderForResults(results);
374 }
375 }
376 }
377
Mario Bertschler817afa32017-03-15 11:56:47 -0700378 public void onInstallSessionCreated(final PackageInstallInfo sessionInfo) {
Sunny Goyale86f11f2017-06-06 14:33:18 -0700379 enqueueModelUpdateTask(new BaseModelUpdateTask() {
Mario Bertschler817afa32017-03-15 11:56:47 -0700380 @Override
381 public void execute(LauncherAppState app, BgDataModel dataModel, AllAppsList apps) {
382 apps.addPromiseApp(app.getContext(), sessionInfo);
Sunny Goyal87dcde62019-07-17 20:35:56 -0700383 bindApplicationsIfNeeded();
Mario Bertschler817afa32017-03-15 11:56:47 -0700384 }
385 });
386 }
387
Sunny Goyalc6e97692017-06-02 13:46:55 -0700388 public class LoaderTransaction implements AutoCloseable {
389
390 private final LoaderTask mTask;
391
392 private LoaderTransaction(LoaderTask task) throws CancellationException {
393 synchronized (mLock) {
394 if (mLoaderTask != task) {
395 throw new CancellationException("Loader already stopped");
396 }
397 mTask = task;
398 mIsLoaderTaskRunning = true;
399 mModelLoaded = false;
400 }
401 }
402
403 public void commit() {
404 synchronized (mLock) {
405 // Everything loaded bind the data.
406 mModelLoaded = true;
407 }
408 }
409
410 @Override
411 public void close() {
412 synchronized (mLock) {
413 // If we are still the last one to be scheduled, remove ourselves.
414 if (mLoaderTask == mTask) {
415 mLoaderTask = null;
416 }
417 mIsLoaderTaskRunning = false;
418 }
419 }
420 }
421
422 public LoaderTransaction beginLoader(LoaderTask task) throws CancellationException {
423 return new LoaderTransaction(task);
424 }
425
Joe Onorato36115782010-06-17 13:28:48 -0400426 /**
Sunny Goyal95f3d6b2016-08-10 16:09:29 -0700427 * Refreshes the cached shortcuts if the shortcut permission has changed.
428 * Current implementation simply reloads the workspace, but it can be optimized to
429 * use partial updates similar to {@link UserManagerCompat}
430 */
431 public void refreshShortcutsIfRequired() {
Sunny Goyal8c48d8b2019-01-25 15:10:18 -0800432 sWorker.removeCallbacks(mShortcutPermissionCheckRunnable);
433 sWorker.post(mShortcutPermissionCheckRunnable);
Sunny Goyal95f3d6b2016-08-10 16:09:29 -0700434 }
435
436 /**
Sunny Goyal75b0f552015-05-20 21:57:06 -0700437 * Called when the icons for packages have been updated in the icon cache.
438 */
Sunny Goyal7c74e4a2016-12-15 15:53:17 -0800439 public void onPackageIconsUpdated(HashSet<String> updatedPackages, UserHandle user) {
Sunny Goyal75b0f552015-05-20 21:57:06 -0700440 // If any package icon has changed (app was updated while launcher was dead),
441 // update the corresponding shortcuts.
Sunny Goyalf0ba8b72016-09-09 15:47:55 -0700442 enqueueModelUpdateTask(new CacheDataUpdatedTask(
443 CacheDataUpdatedTask.OP_CACHE_UPDATE, user, updatedPackages));
Sunny Goyal75b0f552015-05-20 21:57:06 -0700444 }
445
Sunny Goyalac8154a2018-09-26 12:00:30 -0700446 /**
447 * Called when the labels for the widgets has updated in the icon cache.
448 */
449 public void onWidgetLabelsUpdated(HashSet<String> updatedPackages, UserHandle user) {
450 enqueueModelUpdateTask(new BaseModelUpdateTask() {
451 @Override
452 public void execute(LauncherAppState app, BgDataModel dataModel, AllAppsList apps) {
453 dataModel.widgetsModel.onPackageIconsUpdated(updatedPackages, user, app);
454 bindUpdatedWidgets(dataModel);
455 }
456 });
457 }
458
Sunny Goyale86f11f2017-06-06 14:33:18 -0700459 public void enqueueModelUpdateTask(ModelUpdateTask task) {
460 task.init(mApp, this, sBgDataModel, mBgAllAppsList, mUiExecutor);
Sunny Goyal51f220d2019-05-29 11:05:30 -0700461
462 if (sWorkerThread.getThreadId() == Process.myTid()) {
463 task.run();
464 } else {
465 // If we are not on the worker thread, then post to the worker handler
466 sWorker.post(task);
467 }
Sunny Goyald3b87ef2016-07-28 12:11:54 -0700468 }
469
Sunny Goyalf0ba8b72016-09-09 15:47:55 -0700470 /**
471 * A task to be executed on the current callbacks on the UI thread.
472 * If there is no current callbacks, the task is ignored.
473 */
474 public interface CallbackTask {
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700475
Sunny Goyalf0ba8b72016-09-09 15:47:55 -0700476 void execute(Callbacks callbacks);
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700477 }
478
Sunny Goyalf0ba8b72016-09-09 15:47:55 -0700479 /**
480 * A runnable which changes/updates the data model of the launcher based on certain events.
481 */
Sunny Goyale86f11f2017-06-06 14:33:18 -0700482 public interface ModelUpdateTask extends Runnable {
Joe Onorato36115782010-06-17 13:28:48 -0400483
Sunny Goyalf0ba8b72016-09-09 15:47:55 -0700484 /**
Sunny Goyale86f11f2017-06-06 14:33:18 -0700485 * Called before the task is posted to initialize the internal state.
Sunny Goyalf0ba8b72016-09-09 15:47:55 -0700486 */
Sunny Goyale86f11f2017-06-06 14:33:18 -0700487 void init(LauncherAppState app, LauncherModel model,
488 BgDataModel dataModel, AllAppsList allAppsList, Executor uiExecutor);
Sunny Goyale0f58d72014-11-10 18:05:31 -0800489
Sunny Goyal2e1efb42016-03-03 16:58:55 -0800490 }
491
Sunny Goyal6bbf6002019-04-17 18:38:52 -0700492 public void updateAndBindWorkspaceItem(WorkspaceItemInfo si, ShortcutInfo info) {
Sunny Goyal95899162019-03-27 16:03:06 -0700493 updateAndBindWorkspaceItem(() -> {
Sunny Goyal83fd25e2018-07-09 16:47:01 -0700494 si.updateFromDeepShortcutInfo(info, mApp.getContext());
495 LauncherIcons li = LauncherIcons.obtain(mApp.getContext());
Hyunyoung Songcda96a52018-10-18 15:05:45 -0700496 si.applyFrom(li.createShortcutIcon(info));
Sunny Goyal83fd25e2018-07-09 16:47:01 -0700497 li.recycle();
498 return si;
Sunny Goyal1b072632017-01-18 11:30:23 -0800499 });
500 }
501
Sunny Goyal10923b32016-07-20 15:42:44 -0700502 /**
Sunny Goyal1cc1c9a2017-01-06 16:32:57 -0800503 * Utility method to update a shortcut on the background thread.
Sunny Goyal10923b32016-07-20 15:42:44 -0700504 */
Sunny Goyal95899162019-03-27 16:03:06 -0700505 public void updateAndBindWorkspaceItem(final Supplier<WorkspaceItemInfo> itemProvider) {
Sunny Goyale86f11f2017-06-06 14:33:18 -0700506 enqueueModelUpdateTask(new BaseModelUpdateTask() {
Sunny Goyal10923b32016-07-20 15:42:44 -0700507 @Override
Sunny Goyalf0ba8b72016-09-09 15:47:55 -0700508 public void execute(LauncherAppState app, BgDataModel dataModel, AllAppsList apps) {
Sunny Goyal95899162019-03-27 16:03:06 -0700509 WorkspaceItemInfo info = itemProvider.get();
Sunny Goyalf266deb2018-06-21 09:59:08 -0700510 getModelWriter().updateItemInDatabase(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700511 ArrayList<WorkspaceItemInfo> update = new ArrayList<>();
Sunny Goyal10923b32016-07-20 15:42:44 -0700512 update.add(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700513 bindUpdatedWorkspaceItems(update);
Sunny Goyal10923b32016-07-20 15:42:44 -0700514 }
515 });
516 }
517
Sunny Goyalc6e97692017-06-02 13:46:55 -0700518 public void refreshAndBindWidgetsAndShortcuts(@Nullable final PackageUserKey packageUser) {
Sunny Goyale86f11f2017-06-06 14:33:18 -0700519 enqueueModelUpdateTask(new BaseModelUpdateTask() {
Sunny Goyal2e1efb42016-03-03 16:58:55 -0800520 @Override
Sunny Goyalc6e97692017-06-02 13:46:55 -0700521 public void execute(LauncherAppState app, BgDataModel dataModel, AllAppsList apps) {
522 dataModel.widgetsModel.update(app, packageUser);
523 bindUpdatedWidgets(dataModel);
Sunny Goyal31860582015-09-18 08:38:57 -0700524 }
Sunny Goyal2e1efb42016-03-03 16:58:55 -0800525 });
Michael Jurkac402cd92013-05-20 15:49:32 +0200526 }
527
Hyunyoung Song3c7d9cb2017-01-30 15:11:27 -0800528 public void dumpState(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
529 if (args.length > 0 && TextUtils.equals(args[0], "--all")) {
530 writer.println(prefix + "All apps list: size=" + mBgAllAppsList.data.size());
531 for (AppInfo info : mBgAllAppsList.data) {
532 writer.println(prefix + " title=\"" + info.title + "\" iconBitmap=" + info.iconBitmap
533 + " componentName=" + info.componentName.getPackageName());
534 }
Joe Onorato36115782010-06-17 13:28:48 -0400535 }
Hyunyoung Song3c7d9cb2017-01-30 15:11:27 -0800536 sBgDataModel.dump(prefix, fd, writer, args);
Joe Onoratobe386092009-11-17 17:32:16 -0800537 }
Sunny Goyale0f58d72014-11-10 18:05:31 -0800538
539 public Callbacks getCallback() {
540 return mCallbacks != null ? mCallbacks.get() : null;
541 }
Sunny Goyal18bf8e22015-04-08 18:13:46 -0700542
543 /**
Sunny Goyal756adbc2015-04-16 15:20:51 -0700544 * @return the looper for the worker thread which can be used to start background tasks.
545 */
546 public static Looper getWorkerLooper() {
Sunny Goyal06a07e92018-11-07 16:54:02 -0800547 return mWorkerLooper;
Sunny Goyal756adbc2015-04-16 15:20:51 -0700548 }
Tony2917a8b2017-07-31 23:29:42 -0700549
550 public static void setWorkerPriority(final int priority) {
551 Process.setThreadPriority(sWorkerThread.getThreadId(), priority);
552 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800553}