The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1 | /* |
| 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 Sandler | 325dc23 | 2013-06-05 22:57:57 -0400 | [diff] [blame] | 17 | package com.android.launcher3; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 18 | |
Romain Guy | 629de3e | 2010-01-13 12:20:59 -0800 | [diff] [blame] | 19 | import android.appwidget.AppWidgetProviderInfo; |
Sunny Goyal | f599ccf | 2014-07-08 13:01:29 -0700 | [diff] [blame] | 20 | import android.content.BroadcastReceiver; |
| 21 | import android.content.ComponentName; |
Sunny Goyal | f599ccf | 2014-07-08 13:01:29 -0700 | [diff] [blame] | 22 | import android.content.ContentProviderOperation; |
| 23 | import android.content.ContentResolver; |
| 24 | import android.content.ContentValues; |
| 25 | import android.content.Context; |
| 26 | import android.content.Intent; |
Sunny Goyal | f599ccf | 2014-07-08 13:01:29 -0700 | [diff] [blame] | 27 | import android.content.IntentFilter; |
Sunny Goyal | 3e9be43 | 2017-01-05 15:22:41 -0800 | [diff] [blame] | 28 | import android.content.pm.LauncherActivityInfo; |
Mario Bertschler | 817afa3 | 2017-03-15 11:56:47 -0700 | [diff] [blame] | 29 | import android.content.pm.PackageInstaller; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 30 | import android.net.Uri; |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 31 | import android.os.Handler; |
| 32 | import android.os.HandlerThread; |
Sunny Goyal | 756adbc | 2015-04-16 15:20:51 -0700 | [diff] [blame] | 33 | import android.os.Looper; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 34 | import android.os.Process; |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 35 | import android.os.SystemClock; |
Sunny Goyal | e26d100 | 2016-06-20 14:52:14 -0700 | [diff] [blame] | 36 | import android.os.Trace; |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 37 | import android.os.UserHandle; |
Tony Wickham | 86222d2 | 2017-03-29 15:30:43 -0700 | [diff] [blame] | 38 | import android.support.annotation.Nullable; |
Winson Chung | a90303b | 2013-11-15 13:05:06 -0800 | [diff] [blame] | 39 | import android.text.TextUtils; |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 40 | import android.util.Log; |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 41 | import android.util.LongSparseArray; |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 42 | import android.util.MutableInt; |
Michael Jurka | 34c2e6c | 2013-12-13 16:07:45 +0100 | [diff] [blame] | 43 | |
Sunny Goyal | ffe83f1 | 2014-08-14 17:39:34 -0700 | [diff] [blame] | 44 | import com.android.launcher3.compat.AppWidgetManagerCompat; |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 45 | import com.android.launcher3.compat.LauncherAppsCompat; |
Sunny Goyal | 3494262 | 2014-08-29 17:20:55 -0700 | [diff] [blame] | 46 | import com.android.launcher3.compat.PackageInstallerCompat; |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 47 | import com.android.launcher3.compat.PackageInstallerCompat.PackageInstallInfo; |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 48 | import com.android.launcher3.compat.UserManagerCompat; |
Sunny Goyal | 3d706ad | 2017-03-06 16:56:39 -0800 | [diff] [blame] | 49 | import com.android.launcher3.config.FeatureFlags; |
Tony Wickham | 827cef2 | 2016-03-17 15:39:39 -0700 | [diff] [blame] | 50 | import com.android.launcher3.dynamicui.ExtractionUtils; |
Sunny Goyal | 2611943 | 2016-02-18 22:09:23 +0000 | [diff] [blame] | 51 | import com.android.launcher3.folder.Folder; |
| 52 | import com.android.launcher3.folder.FolderIcon; |
Jon Miranda | 655ec42 | 2017-02-07 11:40:22 -0800 | [diff] [blame] | 53 | import com.android.launcher3.folder.FolderIconPreviewVerifier; |
Sunny Goyal | 1b07263 | 2017-01-18 11:30:23 -0800 | [diff] [blame] | 54 | import com.android.launcher3.graphics.LauncherIcons; |
Sunny Goyal | 1acb9e9 | 2016-05-16 12:41:09 -0700 | [diff] [blame] | 55 | import com.android.launcher3.logging.FileLog; |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 56 | import com.android.launcher3.model.AddWorkspaceItemsTask; |
Sunny Goyal | e9956a7 | 2016-09-01 17:24:47 -0700 | [diff] [blame] | 57 | import com.android.launcher3.model.BgDataModel; |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 58 | import com.android.launcher3.model.CacheDataUpdatedTask; |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 59 | import com.android.launcher3.model.ExtendedModelTask; |
Sunny Goyal | f862a26 | 2015-12-14 14:27:38 -0800 | [diff] [blame] | 60 | import com.android.launcher3.model.GridSizeMigrationTask; |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 61 | import com.android.launcher3.model.LoaderCursor; |
Sunny Goyal | 43bf11d | 2017-02-02 13:52:53 -0800 | [diff] [blame] | 62 | import com.android.launcher3.model.ModelWriter; |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 63 | import com.android.launcher3.model.PackageInstallStateChangedTask; |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 64 | import com.android.launcher3.model.PackageItemInfo; |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 65 | import com.android.launcher3.model.PackageUpdatedTask; |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 66 | import com.android.launcher3.model.SdCardAvailableReceiver; |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 67 | import com.android.launcher3.model.ShortcutsChangedTask; |
| 68 | import com.android.launcher3.model.UserLockStateChangedTask; |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 69 | import com.android.launcher3.model.WidgetItem; |
Hyunyoung Song | 2bd3d7d | 2015-05-21 13:04:53 -0700 | [diff] [blame] | 70 | import com.android.launcher3.model.WidgetsModel; |
Sunny Goyal | a5c8a9e | 2016-07-08 08:32:44 -0700 | [diff] [blame] | 71 | import com.android.launcher3.provider.ImportDataTask; |
Sunny Goyal | a9e2f5a | 2016-06-10 12:22:04 -0700 | [diff] [blame] | 72 | import com.android.launcher3.provider.LauncherDbUtils; |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 73 | import com.android.launcher3.shortcuts.DeepShortcutManager; |
| 74 | import com.android.launcher3.shortcuts.ShortcutInfoCompat; |
| 75 | import com.android.launcher3.shortcuts.ShortcutKey; |
Robin Lee | 26ace12 | 2015-03-16 19:41:43 +0000 | [diff] [blame] | 76 | import com.android.launcher3.util.ComponentKey; |
Sunny Goyal | b265ba7 | 2017-02-14 15:03:45 -0800 | [diff] [blame] | 77 | import com.android.launcher3.util.LooperIdleLock; |
Sunny Goyal | 18bf8e2 | 2015-04-08 18:13:46 -0700 | [diff] [blame] | 78 | import com.android.launcher3.util.ManagedProfileHeuristic; |
Tony Wickham | d82a39d | 2016-07-01 15:44:13 -0700 | [diff] [blame] | 79 | import com.android.launcher3.util.MultiHashMap; |
Sunny Goyal | d09c370 | 2016-04-06 16:18:20 -0700 | [diff] [blame] | 80 | import com.android.launcher3.util.PackageManagerHelper; |
Tony Wickham | 86222d2 | 2017-03-29 15:30:43 -0700 | [diff] [blame] | 81 | import com.android.launcher3.util.PackageUserKey; |
Sunny Goyal | aaf7d1d | 2016-05-17 13:38:54 -0700 | [diff] [blame] | 82 | import com.android.launcher3.util.Preconditions; |
Sunny Goyal | 2bcbe13 | 2016-11-16 09:23:42 -0800 | [diff] [blame] | 83 | import com.android.launcher3.util.Provider; |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 84 | import com.android.launcher3.util.Thunk; |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 85 | import com.android.launcher3.util.ViewOnDrawExecutor; |
Romain Guy | edcce09 | 2010-03-04 13:03:17 -0800 | [diff] [blame] | 86 | |
Hyunyoung Song | 3c7d9cb | 2017-01-30 15:11:27 -0800 | [diff] [blame] | 87 | import java.io.FileDescriptor; |
| 88 | import java.io.PrintWriter; |
Michael Jurka | c2f801e | 2011-07-12 14:19:46 -0700 | [diff] [blame] | 89 | import java.lang.ref.WeakReference; |
Michael Jurka | c2f801e | 2011-07-12 14:19:46 -0700 | [diff] [blame] | 90 | import java.util.ArrayList; |
| 91 | import java.util.Collections; |
| 92 | import java.util.Comparator; |
| 93 | import java.util.HashMap; |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 94 | import java.util.HashSet; |
Winson Chung | 2abf94d | 2012-07-18 18:16:38 -0700 | [diff] [blame] | 95 | import java.util.Iterator; |
Michael Jurka | c2f801e | 2011-07-12 14:19:46 -0700 | [diff] [blame] | 96 | import java.util.List; |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 97 | import java.util.Map; |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 98 | import java.util.Set; |
Sunny Goyal | dd96a5e | 2017-02-17 11:22:34 -0800 | [diff] [blame] | 99 | import java.util.concurrent.CancellationException; |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 100 | import java.util.concurrent.Executor; |
Michael Jurka | c2f801e | 2011-07-12 14:19:46 -0700 | [diff] [blame] | 101 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 102 | /** |
| 103 | * Maintains in-memory state of the Launcher. It is expected that there should be only one |
| 104 | * LauncherModel object held in a static. Also provide APIs for updating the database state |
The Android Open Source Project | bc219c3 | 2009-03-09 11:52:14 -0700 | [diff] [blame] | 105 | * for the Launcher. |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 106 | */ |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 107 | public class LauncherModel extends BroadcastReceiver |
Kenny Guy | c2bd810 | 2014-06-30 12:30:31 +0100 | [diff] [blame] | 108 | implements LauncherAppsCompat.OnAppsChangedCallbackCompat { |
Joe Onorato | a30ce8e | 2009-11-11 08:16:49 -0800 | [diff] [blame] | 109 | static final boolean DEBUG_LOADERS = false; |
Chris Wren | ee52336 | 2014-09-09 10:09:02 -0400 | [diff] [blame] | 110 | private static final boolean DEBUG_RECEIVER = false; |
Chris Wren | b358f81 | 2014-04-16 13:37:00 -0400 | [diff] [blame] | 111 | |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 112 | static final String TAG = "Launcher.Model"; |
The Android Open Source Project | f96811c | 2009-03-18 17:39:48 -0700 | [diff] [blame] | 113 | |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 114 | private static final int ITEMS_CHUNK = 6; // batch size for the workspace icons |
Derek Prothro | 7aff399 | 2013-12-10 14:00:37 -0500 | [diff] [blame] | 115 | private static final long INVALID_SCREEN_ID = -1L; |
Winson Chung | a694524 | 2014-01-08 14:04:34 -0800 | [diff] [blame] | 116 | |
Sunny Goyal | b265ba7 | 2017-02-14 15:03:45 -0800 | [diff] [blame] | 117 | private final MainThreadExecutor mUiExecutor = new MainThreadExecutor(); |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 118 | @Thunk final LauncherAppState mApp; |
| 119 | @Thunk final Object mLock = new Object(); |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 120 | @Thunk LoaderTask mLoaderTask; |
| 121 | @Thunk boolean mIsLoaderTaskRunning; |
Sunny Goyal | 756a28a | 2015-04-23 17:07:55 -0700 | [diff] [blame] | 122 | @Thunk boolean mHasLoaderCompletedOnce; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 123 | |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 124 | @Thunk static final HandlerThread sWorkerThread = new HandlerThread("launcher-loader"); |
Brad Fitzpatrick | 700889f | 2010-10-11 09:40:44 -0700 | [diff] [blame] | 125 | static { |
| 126 | sWorkerThread.start(); |
| 127 | } |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 128 | @Thunk static final Handler sWorker = new Handler(sWorkerThread.getLooper()); |
Brad Fitzpatrick | 700889f | 2010-10-11 09:40:44 -0700 | [diff] [blame] | 129 | |
Sunny Goyal | dd96a5e | 2017-02-17 11:22:34 -0800 | [diff] [blame] | 130 | // Indicates whether the current model data is valid or not. |
| 131 | // We start off with everything not loaded. After that, we assume that |
Joe Onorato | cc67f47 | 2010-06-08 10:54:30 -0700 | [diff] [blame] | 132 | // our monitoring of the package manager provides all updates and we never |
Sunny Goyal | dd96a5e | 2017-02-17 11:22:34 -0800 | [diff] [blame] | 133 | // need to do a requery. This is only ever touched from the loader thread. |
| 134 | private boolean mModelLoaded; |
Hyunyoung Song | 6aa3729 | 2017-02-06 10:46:24 -0800 | [diff] [blame] | 135 | public boolean isModelLoaded() { |
| 136 | synchronized (mLock) { |
| 137 | return mModelLoaded && mLoaderTask == null; |
| 138 | } |
| 139 | } |
Joe Onorato | cc67f47 | 2010-06-08 10:54:30 -0700 | [diff] [blame] | 140 | |
Sunny Goyal | 756a28a | 2015-04-23 17:07:55 -0700 | [diff] [blame] | 141 | /** |
| 142 | * Set of runnables to be called on the background thread after the workspace binding |
| 143 | * is complete. |
| 144 | */ |
| 145 | static final ArrayList<Runnable> mBindCompleteRunnables = new ArrayList<Runnable>(); |
| 146 | |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 147 | @Thunk WeakReference<Callbacks> mCallbacks; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 148 | |
Michael Jurka | a8c760d | 2011-04-28 14:59:33 -0700 | [diff] [blame] | 149 | // < only access in worker thread > |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 150 | private final AllAppsList mBgAllAppsList; |
Hyunyoung Song | 9110d48 | 2015-05-22 14:49:23 -0700 | [diff] [blame] | 151 | // Entire list of widgets. |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 152 | private final WidgetsModel mBgWidgetsModel; |
Joe Onorato | 0589f0f | 2010-02-08 13:44:00 -0800 | [diff] [blame] | 153 | |
Sunny Goyal | 95f3d6b | 2016-08-10 16:09:29 -0700 | [diff] [blame] | 154 | private boolean mHasShortcutHostPermission; |
| 155 | // Runnable to check if the shortcuts permission has changed. |
| 156 | private final Runnable mShortcutPermissionCheckRunnable = new Runnable() { |
| 157 | @Override |
| 158 | public void run() { |
Sunny Goyal | dd96a5e | 2017-02-17 11:22:34 -0800 | [diff] [blame] | 159 | if (mModelLoaded) { |
Sunny Goyal | dde4fd9 | 2016-11-21 16:02:39 +0530 | [diff] [blame] | 160 | boolean hasShortcutHostPermission = |
| 161 | DeepShortcutManager.getInstance(mApp.getContext()).hasHostPermission(); |
Sunny Goyal | 95f3d6b | 2016-08-10 16:09:29 -0700 | [diff] [blame] | 162 | if (hasShortcutHostPermission != mHasShortcutHostPermission) { |
Sunny Goyal | dd96a5e | 2017-02-17 11:22:34 -0800 | [diff] [blame] | 163 | forceReload(); |
Sunny Goyal | 95f3d6b | 2016-08-10 16:09:29 -0700 | [diff] [blame] | 164 | } |
| 165 | } |
| 166 | } |
| 167 | }; |
| 168 | |
Sunny Goyal | e9956a7 | 2016-09-01 17:24:47 -0700 | [diff] [blame] | 169 | /** |
| 170 | * All the static data should be accessed on the background thread, A lock should be acquired |
| 171 | * on this object when accessing any data from this model. |
| 172 | */ |
| 173 | static final BgDataModel sBgDataModel = new BgDataModel(); |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 174 | |
Michael Jurka | a8c760d | 2011-04-28 14:59:33 -0700 | [diff] [blame] | 175 | // </ only access in worker thread > |
| 176 | |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 177 | private final IconCache mIconCache; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 178 | |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 179 | private final LauncherAppsCompat mLauncherApps; |
| 180 | private final UserManagerCompat mUserManager; |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 181 | |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 182 | public interface Callbacks { |
Joe Onorato | ef2efcf | 2010-10-27 13:21:00 -0700 | [diff] [blame] | 183 | public boolean setLoadOnResume(); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 184 | public int getCurrentWorkspaceScreen(); |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 185 | public void clearPendingBinds(); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 186 | public void startBinding(); |
Winson Chung | 64359a5 | 2013-07-08 17:17:08 -0700 | [diff] [blame] | 187 | public void bindItems(ArrayList<ItemInfo> shortcuts, int start, int end, |
| 188 | boolean forceAnimateIcons); |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 189 | public void bindScreens(ArrayList<Long> orderedScreenIds); |
Sunny Goyal | b5b9ad6 | 2016-04-02 11:23:39 -0700 | [diff] [blame] | 190 | public void finishFirstPageBind(ViewOnDrawExecutor executor); |
Sunny Goyal | 66cfdc2 | 2015-02-02 13:01:51 -0800 | [diff] [blame] | 191 | public void finishBindingItems(); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 192 | public void bindAppWidget(LauncherAppWidgetInfo info); |
Michael Jurka | eadbfc5 | 2013-09-04 00:45:37 +0200 | [diff] [blame] | 193 | public void bindAllApplications(ArrayList<AppInfo> apps); |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 194 | public void bindAppsAdded(ArrayList<Long> newScreens, |
| 195 | ArrayList<ItemInfo> addNotAnimated, |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 196 | ArrayList<ItemInfo> addAnimated, |
| 197 | ArrayList<AppInfo> addedApps); |
Michael Jurka | eadbfc5 | 2013-09-04 00:45:37 +0200 | [diff] [blame] | 198 | public void bindAppsUpdated(ArrayList<AppInfo> apps); |
Mario Bertschler | 08ffaae | 2017-03-20 11:30:27 -0700 | [diff] [blame] | 199 | public void bindPromiseAppProgressUpdated(PromiseAppInfo app); |
Sunny Goyal | 4390ace | 2014-10-13 11:33:11 -0700 | [diff] [blame] | 200 | public void bindShortcutsChanged(ArrayList<ShortcutInfo> updated, |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 201 | ArrayList<ShortcutInfo> removed, UserHandle user); |
Sunny Goyal | 4390ace | 2014-10-13 11:33:11 -0700 | [diff] [blame] | 202 | public void bindWidgetsRestored(ArrayList<LauncherAppWidgetInfo> widgets); |
Sunny Goyal | 756adbc | 2015-04-16 15:20:51 -0700 | [diff] [blame] | 203 | public void bindRestoreItemsChange(HashSet<ItemInfo> updates); |
Sunny Goyal | 3bbbabc | 2016-03-15 09:16:30 -0700 | [diff] [blame] | 204 | public void bindWorkspaceComponentsRemoved( |
| 205 | HashSet<String> packageNames, HashSet<ComponentName> components, |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 206 | UserHandle user); |
Sunny Goyal | 3bbbabc | 2016-03-15 09:16:30 -0700 | [diff] [blame] | 207 | public void bindAppInfosRemoved(ArrayList<AppInfo> appInfos); |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 208 | public void notifyWidgetProvidersChanged(); |
Sunny Goyal | d164b7f | 2016-10-12 20:49:31 -0700 | [diff] [blame] | 209 | public void bindAllWidgets(MultiHashMap<PackageItemInfo, WidgetItem> widgets); |
Adam Cohen | 1462de3 | 2012-07-24 22:34:36 -0700 | [diff] [blame] | 210 | public void onPageBoundSynchronously(int page); |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 211 | public void executeOnNextDraw(ViewOnDrawExecutor executor); |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 212 | public void bindDeepShortcutMap(MultiHashMap<ComponentKey, String> deepShortcutMap); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 213 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 214 | |
Sunny Goyal | dde4fd9 | 2016-11-21 16:02:39 +0530 | [diff] [blame] | 215 | LauncherModel(LauncherAppState app, IconCache iconCache, AppFilter appFilter) { |
Winson Chung | a694524 | 2014-01-08 14:04:34 -0800 | [diff] [blame] | 216 | Context context = app.getContext(); |
Daniel Sandler | e4f9891 | 2013-06-25 15:13:26 -0400 | [diff] [blame] | 217 | mApp = app; |
Bjorn Bringert | 1307f63 | 2013-10-03 22:31:03 +0100 | [diff] [blame] | 218 | mBgAllAppsList = new AllAppsList(iconCache, appFilter); |
Sunny Goyal | d164b7f | 2016-10-12 20:49:31 -0700 | [diff] [blame] | 219 | mBgWidgetsModel = new WidgetsModel(iconCache, appFilter); |
Joe Onorato | 0589f0f | 2010-02-08 13:44:00 -0800 | [diff] [blame] | 220 | mIconCache = iconCache; |
| 221 | |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 222 | mLauncherApps = LauncherAppsCompat.getInstance(context); |
| 223 | mUserManager = UserManagerCompat.getInstance(context); |
Joe Onorato | 0589f0f | 2010-02-08 13:44:00 -0800 | [diff] [blame] | 224 | } |
| 225 | |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 226 | /** Runs the specified runnable immediately if called from the worker thread, otherwise it is |
| 227 | * posted on the worker thread handler. */ |
Tony Wickham | 80f5787 | 2016-06-29 18:12:15 -0700 | [diff] [blame] | 228 | private static void runOnWorkerThread(Runnable r) { |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 229 | if (sWorkerThread.getThreadId() == Process.myTid()) { |
| 230 | r.run(); |
| 231 | } else { |
| 232 | // If we are not on the worker thread, then post to the worker handler |
| 233 | sWorker.post(r); |
| 234 | } |
| 235 | } |
| 236 | |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 237 | public void setPackageState(PackageInstallInfo installInfo) { |
| 238 | enqueueModelUpdateTask(new PackageInstallStateChangedTask(installInfo)); |
Chris Wren | aeff7ea | 2014-02-14 16:59:24 -0500 | [diff] [blame] | 239 | } |
| 240 | |
Sunny Goyal | 756adbc | 2015-04-16 15:20:51 -0700 | [diff] [blame] | 241 | /** |
| 242 | * Updates the icons and label of all pending icons for the provided package name. |
| 243 | */ |
| 244 | public void updateSessionDisplayInfo(final String packageName) { |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 245 | HashSet<String> packages = new HashSet<>(); |
| 246 | packages.add(packageName); |
| 247 | enqueueModelUpdateTask(new CacheDataUpdatedTask( |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 248 | CacheDataUpdatedTask.OP_SESSION_UPDATE, Process.myUserHandle(), packages)); |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 249 | } |
| 250 | |
| 251 | /** |
| 252 | * Adds the provided items to the workspace. |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 253 | */ |
Sunny Goyal | 2bcbe13 | 2016-11-16 09:23:42 -0800 | [diff] [blame] | 254 | public void addAndBindAddedWorkspaceItems(List<ItemInfo> workspaceApps) { |
| 255 | addAndBindAddedWorkspaceItems(Provider.of(workspaceApps)); |
| 256 | } |
| 257 | |
| 258 | /** |
| 259 | * Adds the provided items to the workspace. |
| 260 | */ |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 261 | public void addAndBindAddedWorkspaceItems( |
Sunny Goyal | 2bcbe13 | 2016-11-16 09:23:42 -0800 | [diff] [blame] | 262 | Provider<List<ItemInfo>> appsProvider) { |
| 263 | enqueueModelUpdateTask(new AddWorkspaceItemsTask(appsProvider)); |
Winson Chung | 64359a5 | 2013-07-08 17:17:08 -0700 | [diff] [blame] | 264 | } |
| 265 | |
Sunny Goyal | 43bf11d | 2017-02-02 13:52:53 -0800 | [diff] [blame] | 266 | public ModelWriter getWriter(boolean hasVerticalHotseat) { |
| 267 | return new ModelWriter(mApp.getContext(), sBgDataModel, hasVerticalHotseat); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 268 | } |
| 269 | |
Michael Jurka | b2ae8ac | 2012-09-21 12:06:06 -0700 | [diff] [blame] | 270 | static void checkItemInfoLocked( |
| 271 | final long itemId, final ItemInfo item, StackTraceElement[] stackTrace) { |
Sunny Goyal | e9956a7 | 2016-09-01 17:24:47 -0700 | [diff] [blame] | 272 | ItemInfo modelItem = sBgDataModel.itemsIdMap.get(itemId); |
Michael Jurka | b2ae8ac | 2012-09-21 12:06:06 -0700 | [diff] [blame] | 273 | if (modelItem != null && item != modelItem) { |
| 274 | // check all the data is consistent |
| 275 | if (modelItem instanceof ShortcutInfo && item instanceof ShortcutInfo) { |
| 276 | ShortcutInfo modelShortcut = (ShortcutInfo) modelItem; |
| 277 | ShortcutInfo shortcut = (ShortcutInfo) item; |
| 278 | if (modelShortcut.title.toString().equals(shortcut.title.toString()) && |
| 279 | modelShortcut.intent.filterEquals(shortcut.intent) && |
| 280 | modelShortcut.id == shortcut.id && |
| 281 | modelShortcut.itemType == shortcut.itemType && |
| 282 | modelShortcut.container == shortcut.container && |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 283 | modelShortcut.screenId == shortcut.screenId && |
Michael Jurka | b2ae8ac | 2012-09-21 12:06:06 -0700 | [diff] [blame] | 284 | modelShortcut.cellX == shortcut.cellX && |
| 285 | modelShortcut.cellY == shortcut.cellY && |
| 286 | modelShortcut.spanX == shortcut.spanX && |
Sunny Goyal | aa8ef11 | 2015-06-12 20:04:41 -0700 | [diff] [blame] | 287 | modelShortcut.spanY == shortcut.spanY) { |
Michael Jurka | b2ae8ac | 2012-09-21 12:06:06 -0700 | [diff] [blame] | 288 | // For all intents and purposes, this is the same object |
| 289 | return; |
| 290 | } |
| 291 | } |
| 292 | |
| 293 | // the modelItem needs to match up perfectly with item if our model is |
| 294 | // to be consistent with the database-- for now, just require |
| 295 | // modelItem == item or the equality check above |
| 296 | String msg = "item: " + ((item != null) ? item.toString() : "null") + |
| 297 | "modelItem: " + |
| 298 | ((modelItem != null) ? modelItem.toString() : "null") + |
| 299 | "Error: ItemInfo passed to checkItemInfo doesn't match original"; |
| 300 | RuntimeException e = new RuntimeException(msg); |
| 301 | if (stackTrace != null) { |
| 302 | e.setStackTrace(stackTrace); |
| 303 | } |
Adam Cohen | b9ada65 | 2013-11-08 08:25:08 -0800 | [diff] [blame] | 304 | throw e; |
Michael Jurka | b2ae8ac | 2012-09-21 12:06:06 -0700 | [diff] [blame] | 305 | } |
| 306 | } |
| 307 | |
Michael Jurka | 816474f | 2012-06-25 14:49:02 -0700 | [diff] [blame] | 308 | static void checkItemInfo(final ItemInfo item) { |
| 309 | final StackTraceElement[] stackTrace = new Throwable().getStackTrace(); |
| 310 | final long itemId = item.id; |
| 311 | Runnable r = new Runnable() { |
Michael Jurka | b2ae8ac | 2012-09-21 12:06:06 -0700 | [diff] [blame] | 312 | public void run() { |
Sunny Goyal | e9956a7 | 2016-09-01 17:24:47 -0700 | [diff] [blame] | 313 | synchronized (sBgDataModel) { |
Michael Jurka | b2ae8ac | 2012-09-21 12:06:06 -0700 | [diff] [blame] | 314 | checkItemInfoLocked(itemId, item, stackTrace); |
Michael Jurka | 816474f | 2012-06-25 14:49:02 -0700 | [diff] [blame] | 315 | } |
Michael Jurka | b2ae8ac | 2012-09-21 12:06:06 -0700 | [diff] [blame] | 316 | } |
| 317 | }; |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 318 | runOnWorkerThread(r); |
Michael Jurka | 816474f | 2012-06-25 14:49:02 -0700 | [diff] [blame] | 319 | } |
| 320 | |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 321 | /** |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 322 | * Update the order of the workspace screens in the database. The array list contains |
| 323 | * a list of screen ids in the order that they should appear. |
| 324 | */ |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 325 | public static void updateWorkspaceScreenOrder(Context context, final ArrayList<Long> screens) { |
Winson Chung | 64359a5 | 2013-07-08 17:17:08 -0700 | [diff] [blame] | 326 | final ArrayList<Long> screensCopy = new ArrayList<Long>(screens); |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 327 | final ContentResolver cr = context.getContentResolver(); |
| 328 | final Uri uri = LauncherSettings.WorkspaceScreens.CONTENT_URI; |
| 329 | |
| 330 | // Remove any negative screen ids -- these aren't persisted |
Winson Chung | 64359a5 | 2013-07-08 17:17:08 -0700 | [diff] [blame] | 331 | Iterator<Long> iter = screensCopy.iterator(); |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 332 | while (iter.hasNext()) { |
| 333 | long id = iter.next(); |
| 334 | if (id < 0) { |
| 335 | iter.remove(); |
| 336 | } |
| 337 | } |
| 338 | |
| 339 | Runnable r = new Runnable() { |
| 340 | @Override |
| 341 | public void run() { |
Yura | 085c853 | 2014-02-11 15:15:29 +0000 | [diff] [blame] | 342 | ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>(); |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 343 | // Clear the table |
Yura | 085c853 | 2014-02-11 15:15:29 +0000 | [diff] [blame] | 344 | ops.add(ContentProviderOperation.newDelete(uri).build()); |
Winson Chung | 76828c8 | 2013-08-19 15:43:29 -0700 | [diff] [blame] | 345 | int count = screensCopy.size(); |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 346 | for (int i = 0; i < count; i++) { |
| 347 | ContentValues v = new ContentValues(); |
Winson Chung | 76828c8 | 2013-08-19 15:43:29 -0700 | [diff] [blame] | 348 | long screenId = screensCopy.get(i); |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 349 | v.put(LauncherSettings.WorkspaceScreens._ID, screenId); |
| 350 | v.put(LauncherSettings.WorkspaceScreens.SCREEN_RANK, i); |
Yura | 085c853 | 2014-02-11 15:15:29 +0000 | [diff] [blame] | 351 | ops.add(ContentProviderOperation.newInsert(uri).withValues(v).build()); |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 352 | } |
Yura | 085c853 | 2014-02-11 15:15:29 +0000 | [diff] [blame] | 353 | |
| 354 | try { |
| 355 | cr.applyBatch(LauncherProvider.AUTHORITY, ops); |
| 356 | } catch (Exception ex) { |
| 357 | throw new RuntimeException(ex); |
| 358 | } |
Winson Chung | 9e6a0a2 | 2013-08-27 11:58:12 -0700 | [diff] [blame] | 359 | |
Sunny Goyal | e9956a7 | 2016-09-01 17:24:47 -0700 | [diff] [blame] | 360 | synchronized (sBgDataModel) { |
| 361 | sBgDataModel.workspaceScreens.clear(); |
| 362 | sBgDataModel.workspaceScreens.addAll(screensCopy); |
Adam Cohen | 4caf298 | 2013-08-20 18:54:31 -0700 | [diff] [blame] | 363 | } |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 364 | } |
| 365 | }; |
| 366 | runOnWorkerThread(r); |
| 367 | } |
| 368 | |
| 369 | /** |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 370 | * Set this as the current Launcher activity object for the loader. |
| 371 | */ |
| 372 | public void initialize(Callbacks callbacks) { |
| 373 | synchronized (mLock) { |
Sunny Goyal | aaf7d1d | 2016-05-17 13:38:54 -0700 | [diff] [blame] | 374 | Preconditions.assertUIThread(); |
Sunny Goyal | aaf7d1d | 2016-05-17 13:38:54 -0700 | [diff] [blame] | 375 | mCallbacks = new WeakReference<>(callbacks); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 376 | } |
| 377 | } |
| 378 | |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 379 | @Override |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 380 | public void onPackageChanged(String packageName, UserHandle user) { |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 381 | int op = PackageUpdatedTask.OP_UPDATE; |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 382 | enqueueModelUpdateTask(new PackageUpdatedTask(op, user, packageName)); |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 383 | } |
| 384 | |
| 385 | @Override |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 386 | public void onPackageRemoved(String packageName, UserHandle user) { |
Sunny Goyal | c2936bc | 2016-09-01 15:50:36 -0700 | [diff] [blame] | 387 | onPackagesRemoved(user, packageName); |
| 388 | } |
| 389 | |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 390 | public void onPackagesRemoved(UserHandle user, String... packages) { |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 391 | int op = PackageUpdatedTask.OP_REMOVE; |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 392 | enqueueModelUpdateTask(new PackageUpdatedTask(op, user, packages)); |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 393 | } |
| 394 | |
| 395 | @Override |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 396 | public void onPackageAdded(String packageName, UserHandle user) { |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 397 | int op = PackageUpdatedTask.OP_ADD; |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 398 | enqueueModelUpdateTask(new PackageUpdatedTask(op, user, packageName)); |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 399 | } |
| 400 | |
| 401 | @Override |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 402 | public void onPackagesAvailable(String[] packageNames, UserHandle user, |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 403 | boolean replacing) { |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 404 | enqueueModelUpdateTask( |
| 405 | new PackageUpdatedTask(PackageUpdatedTask.OP_UPDATE, user, packageNames)); |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 406 | } |
| 407 | |
| 408 | @Override |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 409 | public void onPackagesUnavailable(String[] packageNames, UserHandle user, |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 410 | boolean replacing) { |
| 411 | if (!replacing) { |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 412 | enqueueModelUpdateTask(new PackageUpdatedTask( |
| 413 | PackageUpdatedTask.OP_UNAVAILABLE, user, packageNames)); |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 414 | } |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 415 | } |
| 416 | |
Kenny Guy | 44cba69 | 2016-01-21 19:50:02 +0000 | [diff] [blame] | 417 | @Override |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 418 | public void onPackagesSuspended(String[] packageNames, UserHandle user) { |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 419 | enqueueModelUpdateTask(new PackageUpdatedTask( |
| 420 | PackageUpdatedTask.OP_SUSPEND, user, packageNames)); |
Kenny Guy | 44cba69 | 2016-01-21 19:50:02 +0000 | [diff] [blame] | 421 | } |
| 422 | |
| 423 | @Override |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 424 | public void onPackagesUnsuspended(String[] packageNames, UserHandle user) { |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 425 | enqueueModelUpdateTask(new PackageUpdatedTask( |
| 426 | PackageUpdatedTask.OP_UNSUSPEND, user, packageNames)); |
Kenny Guy | 44cba69 | 2016-01-21 19:50:02 +0000 | [diff] [blame] | 427 | } |
| 428 | |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 429 | @Override |
| 430 | public void onShortcutsChanged(String packageName, List<ShortcutInfoCompat> shortcuts, |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 431 | UserHandle user) { |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 432 | enqueueModelUpdateTask(new ShortcutsChangedTask(packageName, shortcuts, user, true)); |
Sunny Goyal | 50941fb | 2016-08-04 12:03:52 -0700 | [diff] [blame] | 433 | } |
| 434 | |
| 435 | public void updatePinnedShortcuts(String packageName, List<ShortcutInfoCompat> shortcuts, |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 436 | UserHandle user) { |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 437 | enqueueModelUpdateTask(new ShortcutsChangedTask(packageName, shortcuts, user, false)); |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 438 | } |
| 439 | |
Joe Onorato | 1d8e7bb | 2009-10-15 19:49:43 -0700 | [diff] [blame] | 440 | /** |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 441 | * Call from the handler for ACTION_PACKAGE_ADDED, ACTION_PACKAGE_REMOVED and |
| 442 | * ACTION_PACKAGE_CHANGED. |
| 443 | */ |
Narayan Kamath | cb1a477 | 2011-06-28 13:46:59 +0100 | [diff] [blame] | 444 | @Override |
Joe Onorato | f99f8c1 | 2009-10-31 17:27:36 -0400 | [diff] [blame] | 445 | public void onReceive(Context context, Intent intent) { |
Chris Wren | b358f81 | 2014-04-16 13:37:00 -0400 | [diff] [blame] | 446 | if (DEBUG_RECEIVER) Log.d(TAG, "onReceive intent=" + intent); |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 447 | |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 448 | final String action = intent.getAction(); |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 449 | if (Intent.ACTION_LOCALE_CHANGED.equals(action)) { |
Reena Lee | 93f824a | 2011-09-23 17:20:28 -0700 | [diff] [blame] | 450 | // If we have changed locale we need to clear out the labels in all apps/workspace. |
| 451 | forceReload(); |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 452 | } else if (Intent.ACTION_MANAGED_PROFILE_ADDED.equals(action) |
| 453 | || Intent.ACTION_MANAGED_PROFILE_REMOVED.equals(action)) { |
Sunny Goyal | 823fd50 | 2015-08-04 11:40:13 -0700 | [diff] [blame] | 454 | UserManagerCompat.getInstance(context).enableAndResetCache(); |
Sunny Goyal | 957c13f | 2015-05-01 13:02:20 -0700 | [diff] [blame] | 455 | forceReload(); |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 456 | } else if (Intent.ACTION_MANAGED_PROFILE_AVAILABLE.equals(action) || |
| 457 | Intent.ACTION_MANAGED_PROFILE_UNAVAILABLE.equals(action) || |
| 458 | Intent.ACTION_MANAGED_PROFILE_UNLOCKED.equals(action)) { |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 459 | UserHandle user = intent.getParcelableExtra(Intent.EXTRA_USER); |
Sunny Goyal | da891c1 | 2016-03-18 18:29:24 -0700 | [diff] [blame] | 460 | if (user != null) { |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 461 | if (Intent.ACTION_MANAGED_PROFILE_AVAILABLE.equals(action) || |
| 462 | Intent.ACTION_MANAGED_PROFILE_UNAVAILABLE.equals(action)) { |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 463 | enqueueModelUpdateTask(new PackageUpdatedTask( |
| 464 | PackageUpdatedTask.OP_USER_AVAILABILITY_CHANGE, user)); |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 465 | } |
| 466 | |
| 467 | // ACTION_MANAGED_PROFILE_UNAVAILABLE sends the profile back to locked mode, so |
| 468 | // we need to run the state change task again. |
| 469 | if (Intent.ACTION_MANAGED_PROFILE_UNAVAILABLE.equals(action) || |
| 470 | Intent.ACTION_MANAGED_PROFILE_UNLOCKED.equals(action)) { |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 471 | enqueueModelUpdateTask(new UserLockStateChangedTask(user)); |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 472 | } |
Sunny Goyal | da891c1 | 2016-03-18 18:29:24 -0700 | [diff] [blame] | 473 | } |
Tony Wickham | 827cef2 | 2016-03-17 15:39:39 -0700 | [diff] [blame] | 474 | } else if (Intent.ACTION_WALLPAPER_CHANGED.equals(action)) { |
| 475 | ExtractionUtils.startColorExtractionServiceIfNecessary(context); |
Joe Onorato | e9ad59e | 2010-10-29 17:35:36 -0700 | [diff] [blame] | 476 | } |
| 477 | } |
| 478 | |
Sunny Goyal | dd96a5e | 2017-02-17 11:22:34 -0800 | [diff] [blame] | 479 | /** |
| 480 | * Reloads the workspace items from the DB and re-binds the workspace. This should generally |
| 481 | * not be called as DB updates are automatically followed by UI update |
| 482 | */ |
| 483 | public void forceReload() { |
| 484 | synchronized (mLock) { |
| 485 | // Stop any existing loaders first, so they don't set mModelLoaded to true later |
| 486 | stopLoaderLocked(); |
| 487 | mModelLoaded = false; |
| 488 | } |
Winson Chung | f0c6ae0 | 2012-03-21 16:10:31 -0700 | [diff] [blame] | 489 | |
Reena Lee | 93f824a | 2011-09-23 17:20:28 -0700 | [diff] [blame] | 490 | // Do this here because if the launcher activity is running it will be restarted. |
| 491 | // If it's not running startLoaderFromBackground will merely tell it that it needs |
| 492 | // to reload. |
| 493 | startLoaderFromBackground(); |
| 494 | } |
| 495 | |
Joe Onorato | e9ad59e | 2010-10-29 17:35:36 -0700 | [diff] [blame] | 496 | /** |
| 497 | * When the launcher is in the background, it's possible for it to miss paired |
| 498 | * configuration changes. So whenever we trigger the loader from the background |
| 499 | * tell the launcher that it needs to re-run the loader when it comes back instead |
| 500 | * of doing it now. |
| 501 | */ |
| 502 | public void startLoaderFromBackground() { |
Sunny Goyal | e0f58d7 | 2014-11-10 18:05:31 -0800 | [diff] [blame] | 503 | Callbacks callbacks = getCallback(); |
| 504 | if (callbacks != null) { |
| 505 | // Only actually run the loader if they're not paused. |
| 506 | if (!callbacks.setLoadOnResume()) { |
Sunny Goyal | 93f878c | 2016-03-30 17:31:24 -0700 | [diff] [blame] | 507 | startLoader(callbacks.getCurrentWorkspaceScreen()); |
Joe Onorato | e9ad59e | 2010-10-29 17:35:36 -0700 | [diff] [blame] | 508 | } |
| 509 | } |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 510 | } |
Joe Onorato | f99f8c1 | 2009-10-31 17:27:36 -0400 | [diff] [blame] | 511 | |
Sunny Goyal | 2bba4c3 | 2015-05-18 15:42:48 -0700 | [diff] [blame] | 512 | /** |
| 513 | * If there is already a loader task running, tell it to stop. |
| 514 | */ |
| 515 | private void stopLoaderLocked() { |
Reena Lee | 93f824a | 2011-09-23 17:20:28 -0700 | [diff] [blame] | 516 | LoaderTask oldTask = mLoaderTask; |
| 517 | if (oldTask != null) { |
Reena Lee | 93f824a | 2011-09-23 17:20:28 -0700 | [diff] [blame] | 518 | oldTask.stopLocked(); |
| 519 | } |
Reena Lee | 93f824a | 2011-09-23 17:20:28 -0700 | [diff] [blame] | 520 | } |
| 521 | |
Adam Cohen | 1a85c58 | 2014-09-30 09:48:49 -0700 | [diff] [blame] | 522 | public boolean isCurrentCallbacks(Callbacks callbacks) { |
| 523 | return (mCallbacks != null && mCallbacks.get() == callbacks); |
| 524 | } |
| 525 | |
Sunny Goyal | b5b9ad6 | 2016-04-02 11:23:39 -0700 | [diff] [blame] | 526 | /** |
| 527 | * Starts the loader. Tries to bind {@params synchronousBindPage} synchronously if possible. |
| 528 | * @return true if the page could be bound synchronously. |
| 529 | */ |
| 530 | public boolean startLoader(int synchronousBindPage) { |
Sunny Goyal | 756adbc | 2015-04-16 15:20:51 -0700 | [diff] [blame] | 531 | // Enable queue before starting loader. It will get disabled in Launcher#finishBindingItems |
| 532 | InstallShortcutReceiver.enableInstallQueue(); |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 533 | synchronized (mLock) { |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 534 | // Don't bother to start the thread if we know it's not going to do anything |
| 535 | if (mCallbacks != null && mCallbacks.get() != null) { |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 536 | final Callbacks oldCallbacks = mCallbacks.get(); |
| 537 | // Clear any pending bind-runnables from the synchronized load process. |
Sunny Goyal | b265ba7 | 2017-02-14 15:03:45 -0800 | [diff] [blame] | 538 | mUiExecutor.execute(new Runnable() { |
| 539 | public void run() { |
| 540 | oldCallbacks.clearPendingBinds(); |
| 541 | } |
| 542 | }); |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 543 | |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 544 | // If there is already one running, tell it to stop. |
Sunny Goyal | 2bba4c3 | 2015-05-18 15:42:48 -0700 | [diff] [blame] | 545 | stopLoaderLocked(); |
Sunny Goyal | ded0fdb | 2016-05-23 15:55:41 -0700 | [diff] [blame] | 546 | mLoaderTask = new LoaderTask(mApp.getContext(), synchronousBindPage); |
Sunny Goyal | dd96a5e | 2017-02-17 11:22:34 -0800 | [diff] [blame] | 547 | if (synchronousBindPage != PagedView.INVALID_RESTORE_PAGE |
| 548 | && mModelLoaded && !mIsLoaderTaskRunning) { |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 549 | mLoaderTask.runBindSynchronousPage(synchronousBindPage); |
Sunny Goyal | b5b9ad6 | 2016-04-02 11:23:39 -0700 | [diff] [blame] | 550 | return true; |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 551 | } else { |
| 552 | sWorkerThread.setPriority(Thread.NORM_PRIORITY); |
| 553 | sWorker.post(mLoaderTask); |
| 554 | } |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 555 | } |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 556 | } |
Sunny Goyal | b5b9ad6 | 2016-04-02 11:23:39 -0700 | [diff] [blame] | 557 | return false; |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 558 | } |
| 559 | |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 560 | public void stopLoader() { |
| 561 | synchronized (mLock) { |
| 562 | if (mLoaderTask != null) { |
| 563 | mLoaderTask.stopLocked(); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 564 | } |
| 565 | } |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 566 | } |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 567 | |
Sunny Goyal | c1b7c2e | 2015-01-16 16:19:04 -0800 | [diff] [blame] | 568 | /** |
| 569 | * Loads the workspace screen ids in an ordered list. |
| 570 | */ |
Sunny Goyal | e5bb705 | 2015-07-27 14:36:07 -0700 | [diff] [blame] | 571 | public static ArrayList<Long> loadWorkspaceScreensDb(Context context) { |
Winson Chung | 76828c8 | 2013-08-19 15:43:29 -0700 | [diff] [blame] | 572 | final ContentResolver contentResolver = context.getContentResolver(); |
| 573 | final Uri screensUri = LauncherSettings.WorkspaceScreens.CONTENT_URI; |
Winson Chung | 76828c8 | 2013-08-19 15:43:29 -0700 | [diff] [blame] | 574 | |
Sunny Goyal | c1b7c2e | 2015-01-16 16:19:04 -0800 | [diff] [blame] | 575 | // Get screens ordered by rank. |
Sunny Goyal | a9e2f5a | 2016-06-10 12:22:04 -0700 | [diff] [blame] | 576 | return LauncherDbUtils.getScreenIdsFromCursor(contentResolver.query( |
| 577 | screensUri, null, null, null, LauncherSettings.WorkspaceScreens.SCREEN_RANK)); |
Winson Chung | 76828c8 | 2013-08-19 15:43:29 -0700 | [diff] [blame] | 578 | } |
| 579 | |
Mario Bertschler | 817afa3 | 2017-03-15 11:56:47 -0700 | [diff] [blame] | 580 | public void onInstallSessionCreated(final PackageInstallInfo sessionInfo) { |
| 581 | enqueueModelUpdateTask(new ExtendedModelTask() { |
| 582 | @Override |
| 583 | public void execute(LauncherAppState app, BgDataModel dataModel, AllAppsList apps) { |
| 584 | apps.addPromiseApp(app.getContext(), sessionInfo); |
| 585 | if (!apps.added.isEmpty()) { |
| 586 | final ArrayList<AppInfo> arrayList = new ArrayList<>(apps.added); |
| 587 | apps.added.clear(); |
| 588 | scheduleCallbackTask(new CallbackTask() { |
| 589 | @Override |
| 590 | public void execute(Callbacks callbacks) { |
| 591 | callbacks.bindAppsAdded(null, null, null, arrayList); |
| 592 | } |
| 593 | }); |
| 594 | } |
| 595 | } |
| 596 | }); |
| 597 | } |
| 598 | |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 599 | /** |
| 600 | * Runnable for the thread that loads the contents of the launcher: |
| 601 | * - workspace icons |
| 602 | * - widgets |
| 603 | * - all apps icons |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 604 | * - deep shortcuts within apps |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 605 | */ |
| 606 | private class LoaderTask implements Runnable { |
| 607 | private Context mContext; |
Sunny Goyal | 93f878c | 2016-03-30 17:31:24 -0700 | [diff] [blame] | 608 | private int mPageToBindFirst; |
| 609 | |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 610 | @Thunk boolean mIsLoadingAndBindingWorkspace; |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 611 | private boolean mStopped; |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 612 | |
Sunny Goyal | ded0fdb | 2016-05-23 15:55:41 -0700 | [diff] [blame] | 613 | LoaderTask(Context context, int pageToBindFirst) { |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 614 | mContext = context; |
Sunny Goyal | 93f878c | 2016-03-30 17:31:24 -0700 | [diff] [blame] | 615 | mPageToBindFirst = pageToBindFirst; |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 616 | } |
| 617 | |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 618 | private void waitForIdle() { |
| 619 | // Wait until the either we're stopped or the other threads are done. |
| 620 | // This way we don't start loading all apps until the workspace has settled |
| 621 | // down. |
| 622 | synchronized (LoaderTask.this) { |
Sunny Goyal | b265ba7 | 2017-02-14 15:03:45 -0800 | [diff] [blame] | 623 | LooperIdleLock idleLock = new LooperIdleLock(this, Looper.getMainLooper()); |
| 624 | // Just in case mFlushingWorkerThread changes but we aren't woken up, |
| 625 | // wait no longer than 1sec at a time |
| 626 | while (!mStopped && idleLock.awaitLocked(1000)); |
Daniel Sandler | 843e860 | 2010-06-07 14:59:01 -0400 | [diff] [blame] | 627 | } |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 628 | } |
Daniel Sandler | 843e860 | 2010-06-07 14:59:01 -0400 | [diff] [blame] | 629 | |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 630 | void runBindSynchronousPage(int synchronousBindPage) { |
Derek Prothro | 7aff399 | 2013-12-10 14:00:37 -0500 | [diff] [blame] | 631 | if (synchronousBindPage == PagedView.INVALID_RESTORE_PAGE) { |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 632 | // Ensure that we have a valid page index to load synchronously |
| 633 | throw new RuntimeException("Should not call runBindSynchronousPage() without " + |
| 634 | "valid page index"); |
| 635 | } |
Sunny Goyal | dd96a5e | 2017-02-17 11:22:34 -0800 | [diff] [blame] | 636 | if (!mModelLoaded) { |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 637 | // Ensure that we don't try and bind a specified page when the pages have not been |
| 638 | // loaded already (we should load everything asynchronously in that case) |
| 639 | throw new RuntimeException("Expecting AllApps and Workspace to be loaded"); |
| 640 | } |
| 641 | synchronized (mLock) { |
| 642 | if (mIsLoaderTaskRunning) { |
| 643 | // Ensure that we are never running the background loading at this point since |
| 644 | // we also touch the background collections |
| 645 | throw new RuntimeException("Error! Background loading is already running"); |
| 646 | } |
| 647 | } |
| 648 | |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 649 | // Divide the set of loaded items into those that we are binding synchronously, and |
| 650 | // everything else that is to be bound normally (asynchronously). |
Sunny Goyal | 66cfdc2 | 2015-02-02 13:01:51 -0800 | [diff] [blame] | 651 | bindWorkspace(synchronousBindPage); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 652 | // XXX: For now, continue posting the binding of AllApps as there are other issues that |
| 653 | // arise from that. |
| 654 | onlyBindAllApps(); |
Tony Wickham | 80f5787 | 2016-06-29 18:12:15 -0700 | [diff] [blame] | 655 | |
| 656 | bindDeepShortcuts(); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 657 | } |
| 658 | |
Sunny Goyal | dd96a5e | 2017-02-17 11:22:34 -0800 | [diff] [blame] | 659 | private void verifyNotStopped() throws CancellationException { |
| 660 | synchronized (LoaderTask.this) { |
| 661 | if (mStopped) { |
| 662 | throw new CancellationException("Loader stopped"); |
| 663 | } |
| 664 | } |
| 665 | } |
| 666 | |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 667 | public void run() { |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 668 | synchronized (mLock) { |
Sunny Goyal | f5cd998 | 2015-05-18 15:19:29 -0700 | [diff] [blame] | 669 | if (mStopped) { |
| 670 | return; |
| 671 | } |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 672 | mIsLoaderTaskRunning = true; |
| 673 | } |
Daniel Sandler | 843e860 | 2010-06-07 14:59:01 -0400 | [diff] [blame] | 674 | |
Sunny Goyal | dd96a5e | 2017-02-17 11:22:34 -0800 | [diff] [blame] | 675 | try { |
Sunny Goyal | b265ba7 | 2017-02-14 15:03:45 -0800 | [diff] [blame] | 676 | long now = 0; |
Sunny Goyal | dd96a5e | 2017-02-17 11:22:34 -0800 | [diff] [blame] | 677 | if (DEBUG_LOADERS) Log.d(TAG, "step 1.1: loading workspace"); |
| 678 | // Set to false in bindWorkspace() |
| 679 | mIsLoadingAndBindingWorkspace = true; |
| 680 | loadWorkspace(); |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 681 | |
Sunny Goyal | dd96a5e | 2017-02-17 11:22:34 -0800 | [diff] [blame] | 682 | verifyNotStopped(); |
| 683 | if (DEBUG_LOADERS) Log.d(TAG, "step 1.2: bind workspace workspace"); |
| 684 | bindWorkspace(mPageToBindFirst); |
| 685 | |
| 686 | // Take a break |
Sunny Goyal | b265ba7 | 2017-02-14 15:03:45 -0800 | [diff] [blame] | 687 | if (DEBUG_LOADERS) { |
| 688 | Log.d(TAG, "step 1 completed, wait for idle"); |
| 689 | now = SystemClock.uptimeMillis(); |
| 690 | } |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 691 | waitForIdle(); |
Sunny Goyal | b265ba7 | 2017-02-14 15:03:45 -0800 | [diff] [blame] | 692 | if (DEBUG_LOADERS) Log.d(TAG, "Waited " + (SystemClock.uptimeMillis() - now) + "ms"); |
Sunny Goyal | dd96a5e | 2017-02-17 11:22:34 -0800 | [diff] [blame] | 693 | verifyNotStopped(); |
Daniel Sandler | 843e860 | 2010-06-07 14:59:01 -0400 | [diff] [blame] | 694 | |
| 695 | // second step |
Sunny Goyal | dd96a5e | 2017-02-17 11:22:34 -0800 | [diff] [blame] | 696 | if (DEBUG_LOADERS) Log.d(TAG, "step 2.1: loading all apps"); |
| 697 | loadAllApps(); |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 698 | |
Sunny Goyal | dd96a5e | 2017-02-17 11:22:34 -0800 | [diff] [blame] | 699 | verifyNotStopped(); |
| 700 | if (DEBUG_LOADERS) Log.d(TAG, "step 2.2: Update icon cache"); |
| 701 | updateIconCache(); |
| 702 | |
| 703 | // Take a break |
Sunny Goyal | b265ba7 | 2017-02-14 15:03:45 -0800 | [diff] [blame] | 704 | if (DEBUG_LOADERS) { |
| 705 | Log.d(TAG, "step 2 completed, wait for idle"); |
| 706 | now = SystemClock.uptimeMillis(); |
| 707 | } |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 708 | waitForIdle(); |
Sunny Goyal | b265ba7 | 2017-02-14 15:03:45 -0800 | [diff] [blame] | 709 | if (DEBUG_LOADERS) Log.d(TAG, "Waited " + (SystemClock.uptimeMillis() - now) + "ms"); |
Sunny Goyal | dd96a5e | 2017-02-17 11:22:34 -0800 | [diff] [blame] | 710 | verifyNotStopped(); |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 711 | |
| 712 | // third step |
Sunny Goyal | dd96a5e | 2017-02-17 11:22:34 -0800 | [diff] [blame] | 713 | if (DEBUG_LOADERS) Log.d(TAG, "step 3.1: loading deep shortcuts"); |
| 714 | loadDeepShortcuts(); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 715 | |
Sunny Goyal | dd96a5e | 2017-02-17 11:22:34 -0800 | [diff] [blame] | 716 | verifyNotStopped(); |
| 717 | if (DEBUG_LOADERS) Log.d(TAG, "step 3.2: bind deep shortcuts"); |
| 718 | bindDeepShortcuts(); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 719 | |
Tony Wickham | a7e1c1c | 2017-04-13 16:24:38 -0700 | [diff] [blame] | 720 | // Take a break |
| 721 | if (DEBUG_LOADERS) Log.d(TAG, "step 3 completed, wait for idle"); |
| 722 | waitForIdle(); |
| 723 | verifyNotStopped(); |
| 724 | |
| 725 | // fourth step |
| 726 | if (DEBUG_LOADERS) Log.d(TAG, "step 4.1: loading widgets"); |
| 727 | refreshAndBindWidgetsAndShortcuts(getCallback(), false /* bindFirst */, |
| 728 | null /* packageUser */); |
| 729 | |
Sunny Goyal | dd96a5e | 2017-02-17 11:22:34 -0800 | [diff] [blame] | 730 | synchronized (mLock) { |
| 731 | // Everything loaded bind the data. |
| 732 | mModelLoaded = true; |
| 733 | mHasLoaderCompletedOnce = true; |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 734 | } |
Sunny Goyal | dd96a5e | 2017-02-17 11:22:34 -0800 | [diff] [blame] | 735 | } catch (CancellationException e) { |
| 736 | // Loader stopped, ignore |
| 737 | } finally { |
| 738 | // Clear out this reference, otherwise we end up holding it until all of the |
| 739 | // callback runnables are done. |
| 740 | mContext = null; |
| 741 | |
| 742 | synchronized (mLock) { |
| 743 | // If we are still the last one to be scheduled, remove ourselves. |
| 744 | if (mLoaderTask == this) { |
| 745 | mLoaderTask = null; |
| 746 | } |
| 747 | mIsLoaderTaskRunning = false; |
| 748 | } |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 749 | } |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 750 | } |
| 751 | |
| 752 | public void stopLocked() { |
| 753 | synchronized (LoaderTask.this) { |
| 754 | mStopped = true; |
| 755 | this.notify(); |
| 756 | } |
| 757 | } |
| 758 | |
| 759 | /** |
| 760 | * Gets the callbacks object. If we've been stopped, or if the launcher object |
| 761 | * has somehow been garbage collected, return null instead. Pass in the Callbacks |
| 762 | * object that was around when the deferred message was scheduled, and if there's |
| 763 | * a new Callbacks object around then also return null. This will save us from |
| 764 | * calling onto it with data that will be ignored. |
| 765 | */ |
| 766 | Callbacks tryGetCallbacks(Callbacks oldCallbacks) { |
| 767 | synchronized (mLock) { |
| 768 | if (mStopped) { |
| 769 | return null; |
Daniel Sandler | 8802e96 | 2010-05-26 16:28:16 -0400 | [diff] [blame] | 770 | } |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 771 | |
| 772 | if (mCallbacks == null) { |
| 773 | return null; |
Daniel Sandler | 8802e96 | 2010-05-26 16:28:16 -0400 | [diff] [blame] | 774 | } |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 775 | |
| 776 | final Callbacks callbacks = mCallbacks.get(); |
| 777 | if (callbacks != oldCallbacks) { |
| 778 | return null; |
| 779 | } |
| 780 | if (callbacks == null) { |
| 781 | Log.w(TAG, "no mCallbacks"); |
| 782 | return null; |
| 783 | } |
| 784 | |
| 785 | return callbacks; |
| 786 | } |
| 787 | } |
| 788 | |
Sunny Goyal | 66cfdc2 | 2015-02-02 13:01:51 -0800 | [diff] [blame] | 789 | private void loadWorkspace() { |
Sunny Goyal | e26d100 | 2016-06-20 14:52:14 -0700 | [diff] [blame] | 790 | if (LauncherAppState.PROFILE_STARTUP) { |
| 791 | Trace.beginSection("Loading Workspace"); |
| 792 | } |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 793 | |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 794 | final Context context = mContext; |
| 795 | final ContentResolver contentResolver = context.getContentResolver(); |
Sunny Goyal | 342e466 | 2017-02-02 15:21:08 -0800 | [diff] [blame] | 796 | final PackageManagerHelper pmHelper = new PackageManagerHelper(context); |
| 797 | final boolean isSafeMode = pmHelper.isSafeMode(); |
Sunny Goyal | f599ccf | 2014-07-08 13:01:29 -0700 | [diff] [blame] | 798 | final LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(context); |
Sunny Goyal | dde4fd9 | 2016-11-21 16:02:39 +0530 | [diff] [blame] | 799 | final DeepShortcutManager shortcutManager = DeepShortcutManager.getInstance(context); |
Sunny Goyal | 25aba0a | 2015-07-16 15:07:47 -0700 | [diff] [blame] | 800 | final boolean isSdCardReady = Utilities.isBootCompleted(); |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 801 | final MultiHashMap<UserHandle, String> pendingPackages = new MultiHashMap<>(); |
Joe Onorato | 3c2f7e1 | 2009-10-31 19:17:31 -0400 | [diff] [blame] | 802 | |
Sunny Goyal | ded0fdb | 2016-05-23 15:55:41 -0700 | [diff] [blame] | 803 | boolean clearDb = false; |
Sunny Goyal | a5c8a9e | 2016-07-08 08:32:44 -0700 | [diff] [blame] | 804 | try { |
| 805 | ImportDataTask.performImportIfPossible(context); |
| 806 | } catch (Exception e) { |
| 807 | // Migration failed. Clear workspace. |
| 808 | clearDb = true; |
| 809 | } |
| 810 | |
| 811 | if (!clearDb && GridSizeMigrationTask.ENABLED && |
Sunny Goyal | f076eae | 2016-01-11 12:25:10 -0800 | [diff] [blame] | 812 | !GridSizeMigrationTask.migrateGridIfNeeded(mContext)) { |
| 813 | // Migration failed. Clear workspace. |
Sunny Goyal | ded0fdb | 2016-05-23 15:55:41 -0700 | [diff] [blame] | 814 | clearDb = true; |
Sunny Goyal | e5bb705 | 2015-07-27 14:36:07 -0700 | [diff] [blame] | 815 | } |
| 816 | |
Sunny Goyal | ded0fdb | 2016-05-23 15:55:41 -0700 | [diff] [blame] | 817 | if (clearDb) { |
Sunny Goyal | a136545 | 2015-10-01 15:46:24 -0700 | [diff] [blame] | 818 | Log.d(TAG, "loadWorkspace: resetting launcher database"); |
Sunny Goyal | d249748 | 2015-09-22 18:24:19 -0700 | [diff] [blame] | 819 | LauncherSettings.Settings.call(contentResolver, |
Sunny Goyal | e05b08f | 2017-02-23 18:30:22 -0800 | [diff] [blame] | 820 | LauncherSettings.Settings.METHOD_CREATE_EMPTY_DB); |
Dan Sandler | d502404 | 2014-01-09 15:01:33 -0500 | [diff] [blame] | 821 | } |
| 822 | |
Sunny Goyal | ded0fdb | 2016-05-23 15:55:41 -0700 | [diff] [blame] | 823 | Log.d(TAG, "loadWorkspace: loading default favorites"); |
| 824 | LauncherSettings.Settings.call(contentResolver, |
| 825 | LauncherSettings.Settings.METHOD_LOAD_DEFAULT_FAVORITES); |
Adam Cohen | e25af79 | 2013-06-06 23:08:25 -0700 | [diff] [blame] | 826 | |
Sunny Goyal | e9956a7 | 2016-09-01 17:24:47 -0700 | [diff] [blame] | 827 | synchronized (sBgDataModel) { |
| 828 | sBgDataModel.clear(); |
| 829 | |
Sunny Goyal | 756adbc | 2015-04-16 15:20:51 -0700 | [diff] [blame] | 830 | final HashMap<String, Integer> installingPkgs = PackageInstallerCompat |
Sunny Goyal | 9448536 | 2014-09-18 16:13:58 -0700 | [diff] [blame] | 831 | .getInstance(mContext).updateAndGetActiveSessionCache(); |
Sunny Goyal | e9956a7 | 2016-09-01 17:24:47 -0700 | [diff] [blame] | 832 | sBgDataModel.workspaceScreens.addAll(loadWorkspaceScreensDb(mContext)); |
Romain Guy | 5c16f3e | 2010-01-12 17:24:58 -0800 | [diff] [blame] | 833 | |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 834 | Map<ShortcutKey, ShortcutInfoCompat> shortcutKeyToPinnedShortcuts = new HashMap<>(); |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 835 | final LoaderCursor c = new LoaderCursor(contentResolver.query( |
| 836 | LauncherSettings.Favorites.CONTENT_URI, null, null, null, null), mApp); |
Daniel Sandler | 8802e96 | 2010-05-26 16:28:16 -0400 | [diff] [blame] | 837 | |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 838 | HashMap<ComponentKey, AppWidgetProviderInfo> widgetProvidersMap = null; |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 839 | |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 840 | try { |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 841 | final int appWidgetIdIndex = c.getColumnIndexOrThrow( |
| 842 | LauncherSettings.Favorites.APPWIDGET_ID); |
Chris Wren | c3919c0 | 2013-09-18 09:48:33 -0400 | [diff] [blame] | 843 | final int appWidgetProviderIndex = c.getColumnIndexOrThrow( |
| 844 | LauncherSettings.Favorites.APPWIDGET_PROVIDER); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 845 | final int spanXIndex = c.getColumnIndexOrThrow |
| 846 | (LauncherSettings.Favorites.SPANX); |
| 847 | final int spanYIndex = c.getColumnIndexOrThrow( |
| 848 | LauncherSettings.Favorites.SPANY); |
Sunny Goyal | 08f7261 | 2015-01-05 13:41:43 -0800 | [diff] [blame] | 849 | final int rankIndex = c.getColumnIndexOrThrow( |
| 850 | LauncherSettings.Favorites.RANK); |
Sunny Goyal | 5d85c44 | 2015-03-10 13:14:47 -0700 | [diff] [blame] | 851 | final int optionsIndex = c.getColumnIndexOrThrow( |
| 852 | LauncherSettings.Favorites.OPTIONS); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 853 | |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 854 | final LongSparseArray<UserHandle> allUsers = c.allUsers; |
Kenny Guy | ff05f43 | 2016-01-22 17:48:29 +0000 | [diff] [blame] | 855 | final LongSparseArray<Boolean> quietMode = new LongSparseArray<>(); |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 856 | final LongSparseArray<Boolean> unlockedUsers = new LongSparseArray<>(); |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 857 | for (UserHandle user : mUserManager.getUserProfiles()) { |
Kenny Guy | ff05f43 | 2016-01-22 17:48:29 +0000 | [diff] [blame] | 858 | long serialNo = mUserManager.getSerialNumberForUser(user); |
| 859 | allUsers.put(serialNo, user); |
| 860 | quietMode.put(serialNo, mUserManager.isQuietModeEnabled(user)); |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 861 | |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 862 | boolean userUnlocked = mUserManager.isUserUnlocked(user); |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 863 | |
| 864 | // We can only query for shortcuts when the user is unlocked. |
| 865 | if (userUnlocked) { |
Sunny Goyal | 49f4f03 | 2016-08-01 15:45:49 -0700 | [diff] [blame] | 866 | List<ShortcutInfoCompat> pinnedShortcuts = |
Sunny Goyal | dde4fd9 | 2016-11-21 16:02:39 +0530 | [diff] [blame] | 867 | shortcutManager.queryForPinnedShortcuts(null, user); |
| 868 | if (shortcutManager.wasLastCallSuccess()) { |
Sunny Goyal | 49f4f03 | 2016-08-01 15:45:49 -0700 | [diff] [blame] | 869 | for (ShortcutInfoCompat shortcut : pinnedShortcuts) { |
| 870 | shortcutKeyToPinnedShortcuts.put(ShortcutKey.fromInfo(shortcut), |
| 871 | shortcut); |
| 872 | } |
| 873 | } else { |
| 874 | // Shortcut manager can fail due to some race condition when the |
| 875 | // lock state changes too frequently. For the purpose of the loading |
| 876 | // shortcuts, consider the user is still locked. |
| 877 | userUnlocked = false; |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 878 | } |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 879 | } |
Sunny Goyal | 49f4f03 | 2016-08-01 15:45:49 -0700 | [diff] [blame] | 880 | unlockedUsers.put(serialNo, userUnlocked); |
Sunny Goyal | 7f834d2 | 2015-04-21 10:10:23 -0700 | [diff] [blame] | 881 | } |
| 882 | |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 883 | ShortcutInfo info; |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 884 | LauncherAppWidgetInfo appWidgetInfo; |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 885 | Intent intent; |
Sunny Goyal | 81e4491 | 2017-01-14 15:05:14 -0800 | [diff] [blame] | 886 | String targetPkg; |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 887 | |
Jon Miranda | 529af30 | 2017-02-28 14:18:54 -0800 | [diff] [blame] | 888 | FolderIconPreviewVerifier verifier = |
| 889 | new FolderIconPreviewVerifier(mApp.getInvariantDeviceProfile()); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 890 | while (!mStopped && c.moveToNext()) { |
| 891 | try { |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 892 | if (c.user == null) { |
| 893 | // User has been deleted, remove the item. |
| 894 | c.markDeleted("User has been deleted"); |
| 895 | continue; |
| 896 | } |
| 897 | |
Sunny Goyal | f599ccf | 2014-07-08 13:01:29 -0700 | [diff] [blame] | 898 | boolean allowMissingTarget = false; |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 899 | switch (c.itemType) { |
Sunny Goyal | 81e4491 | 2017-01-14 15:05:14 -0800 | [diff] [blame] | 900 | case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT: |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 901 | case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION: |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 902 | case LauncherSettings.Favorites.ITEM_TYPE_DEEP_SHORTCUT: |
Sunny Goyal | 81e4491 | 2017-01-14 15:05:14 -0800 | [diff] [blame] | 903 | intent = c.parseIntent(); |
| 904 | if (intent == null) { |
| 905 | c.markDeleted("Invalid or null intent"); |
| 906 | continue; |
| 907 | } |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 908 | |
Sunny Goyal | 81e4491 | 2017-01-14 15:05:14 -0800 | [diff] [blame] | 909 | int disabledState = quietMode.get(c.serialNumber) ? |
| 910 | ShortcutInfo.FLAG_DISABLED_QUIET_USER : 0; |
| 911 | ComponentName cn = intent.getComponent(); |
| 912 | targetPkg = cn == null ? intent.getPackage() : cn.getPackageName(); |
Sunny Goyal | f599ccf | 2014-07-08 13:01:29 -0700 | [diff] [blame] | 913 | |
Sunny Goyal | 81e4491 | 2017-01-14 15:05:14 -0800 | [diff] [blame] | 914 | if (!Process.myUserHandle().equals(c.user)) { |
| 915 | if (c.itemType == LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT) { |
| 916 | c.markDeleted("Legacy shortcuts are only allowed for default user"); |
| 917 | continue; |
| 918 | } else if (c.restoreFlag != 0) { |
| 919 | // Don't restore items for other profiles. |
| 920 | c.markDeleted("Restore from managed profile not supported"); |
| 921 | continue; |
| 922 | } |
| 923 | } |
| 924 | if (TextUtils.isEmpty(targetPkg) && |
| 925 | c.itemType != LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT) { |
| 926 | c.markDeleted("Only legacy shortcuts can have null package"); |
| 927 | continue; |
| 928 | } |
Sunny Goyal | 3494262 | 2014-08-29 17:20:55 -0700 | [diff] [blame] | 929 | |
Sunny Goyal | 81e4491 | 2017-01-14 15:05:14 -0800 | [diff] [blame] | 930 | // If there is no target package, its an implicit intent |
| 931 | // (legacy shortcut) which is always valid |
| 932 | boolean validTarget = TextUtils.isEmpty(targetPkg) || |
| 933 | launcherApps.isPackageEnabledForProfile(targetPkg, c.user); |
Sunny Goyal | 9448536 | 2014-09-18 16:13:58 -0700 | [diff] [blame] | 934 | |
Sunny Goyal | 81e4491 | 2017-01-14 15:05:14 -0800 | [diff] [blame] | 935 | if (cn != null && validTarget) { |
| 936 | // If the apk is present and the shortcut points to a specific |
| 937 | // component. |
| 938 | |
| 939 | // If the component is already present |
| 940 | if (launcherApps.isActivityEnabledForProfile(cn, c.user)) { |
| 941 | // no special handling necessary for this item |
| 942 | c.markRestored(); |
| 943 | } else { |
Mario Bertschler | c06af33 | 2017-03-28 12:23:22 -0700 | [diff] [blame] | 944 | if (c.hasRestoreFlag(ShortcutInfo.FLAG_AUTOINSTALL_ICON)) { |
Sunny Goyal | 81e4491 | 2017-01-14 15:05:14 -0800 | [diff] [blame] | 945 | // We allow auto install apps to have their intent |
| 946 | // updated after an install. |
Sunny Goyal | 342e466 | 2017-02-02 15:21:08 -0800 | [diff] [blame] | 947 | intent = pmHelper.getAppLaunchIntent(targetPkg, c.user); |
Sunny Goyal | 81e4491 | 2017-01-14 15:05:14 -0800 | [diff] [blame] | 948 | if (intent != null) { |
| 949 | c.restoreFlag = 0; |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 950 | c.updater().put( |
Sunny Goyal | 81e4491 | 2017-01-14 15:05:14 -0800 | [diff] [blame] | 951 | LauncherSettings.Favorites.INTENT, |
| 952 | intent.toUri(0)).commit(); |
| 953 | cn = intent.getComponent(); |
Sunny Goyal | b05a00a | 2016-08-29 10:06:57 -0700 | [diff] [blame] | 954 | } else { |
Sunny Goyal | 81e4491 | 2017-01-14 15:05:14 -0800 | [diff] [blame] | 955 | c.markDeleted("Unable to find a launch target"); |
Sunny Goyal | 9448536 | 2014-09-18 16:13:58 -0700 | [diff] [blame] | 956 | continue; |
| 957 | } |
Sunny Goyal | 1a745e8 | 2014-10-02 15:58:31 -0700 | [diff] [blame] | 958 | } else { |
Sunny Goyal | 81e4491 | 2017-01-14 15:05:14 -0800 | [diff] [blame] | 959 | // The app is installed but the component is no |
| 960 | // longer available. |
| 961 | c.markDeleted("Invalid component removed: " + cn); |
Sunny Goyal | 1a745e8 | 2014-10-02 15:58:31 -0700 | [diff] [blame] | 962 | continue; |
Winson Chung | ee05571 | 2013-07-30 14:46:24 -0700 | [diff] [blame] | 963 | } |
Winson Chung | ee05571 | 2013-07-30 14:46:24 -0700 | [diff] [blame] | 964 | } |
Sunny Goyal | 81e4491 | 2017-01-14 15:05:14 -0800 | [diff] [blame] | 965 | } |
| 966 | // else if cn == null => can't infer much, leave it |
| 967 | // else if !validPkg => could be restored icon or missing sd-card |
| 968 | |
| 969 | if (!TextUtils.isEmpty(targetPkg) && !validTarget) { |
| 970 | // Points to a valid app (superset of cn != null) but the apk |
| 971 | // is not available. |
| 972 | |
| 973 | if (c.restoreFlag != 0) { |
| 974 | // Package is not yet available but might be |
| 975 | // installed later. |
| 976 | FileLog.d(TAG, "package not yet restored: " + targetPkg); |
| 977 | |
| 978 | if (c.hasRestoreFlag(ShortcutInfo.FLAG_RESTORE_STARTED)) { |
| 979 | // Restore has started once. |
| 980 | } else if (installingPkgs.containsKey(targetPkg)) { |
| 981 | // App restore has started. Update the flag |
| 982 | c.restoreFlag |= ShortcutInfo.FLAG_RESTORE_STARTED; |
| 983 | c.updater().commit(); |
| 984 | } else { |
| 985 | c.markDeleted("Unrestored app removed: " + targetPkg); |
| 986 | continue; |
| 987 | } |
Sunny Goyal | ad2e91a | 2017-02-28 15:14:58 -0800 | [diff] [blame] | 988 | } else if (pmHelper.isAppOnSdcard(targetPkg, c.user)) { |
Sunny Goyal | 81e4491 | 2017-01-14 15:05:14 -0800 | [diff] [blame] | 989 | // Package is present but not available. |
| 990 | disabledState |= ShortcutInfo.FLAG_DISABLED_NOT_AVAILABLE; |
| 991 | // Add the icon on the workspace anyway. |
| 992 | allowMissingTarget = true; |
| 993 | } else if (!isSdCardReady) { |
| 994 | // SdCard is not ready yet. Package might get available, |
| 995 | // once it is ready. |
| 996 | Log.d(TAG, "Missing pkg, will check later: " + targetPkg); |
| 997 | pendingPackages.addToList(c.user, targetPkg); |
| 998 | // Add the icon on the workspace anyway. |
| 999 | allowMissingTarget = true; |
| 1000 | } else { |
| 1001 | // Do not wait for external media load anymore. |
| 1002 | c.markDeleted("Invalid package removed: " + targetPkg); |
| 1003 | continue; |
| 1004 | } |
| 1005 | } |
| 1006 | |
| 1007 | if (validTarget) { |
| 1008 | // The shortcut points to a valid target (either no target |
| 1009 | // or something which is ready to be used) |
| 1010 | c.markRestored(); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1011 | } |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 1012 | |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1013 | boolean useLowResIcon = !c.isOnWorkspaceOrHotseat() && |
Jon Miranda | 529af30 | 2017-02-28 14:18:54 -0800 | [diff] [blame] | 1014 | !verifier.isItemInPreview(c.getInt(rankIndex)); |
Sunny Goyal | 34b6527 | 2015-03-11 16:56:52 -0700 | [diff] [blame] | 1015 | |
Sunny Goyal | c1ad0ce | 2017-01-11 14:33:38 -0800 | [diff] [blame] | 1016 | if (c.restoreFlag != 0) { |
Sunny Goyal | 81e4491 | 2017-01-14 15:05:14 -0800 | [diff] [blame] | 1017 | // Already verified above that user is same as default user |
| 1018 | info = c.getRestoredItemInfo(intent); |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1019 | } else if (c.itemType == |
Chris Wren | f4d0811 | 2014-01-16 18:13:56 -0500 | [diff] [blame] | 1020 | LauncherSettings.Favorites.ITEM_TYPE_APPLICATION) { |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1021 | info = c.getAppShortcutInfo( |
| 1022 | intent, allowMissingTarget, useLowResIcon); |
| 1023 | } else if (c.itemType == |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 1024 | LauncherSettings.Favorites.ITEM_TYPE_DEEP_SHORTCUT) { |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 1025 | |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1026 | ShortcutKey key = ShortcutKey.fromIntent(intent, c.user); |
| 1027 | if (unlockedUsers.get(c.serialNumber)) { |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 1028 | ShortcutInfoCompat pinnedShortcut = |
| 1029 | shortcutKeyToPinnedShortcuts.get(key); |
| 1030 | if (pinnedShortcut == null) { |
| 1031 | // The shortcut is no longer valid. |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1032 | c.markDeleted("Pinned shortcut not found"); |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 1033 | continue; |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 1034 | } |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 1035 | info = new ShortcutInfo(pinnedShortcut, context); |
Sunny Goyal | 1b07263 | 2017-01-18 11:30:23 -0800 | [diff] [blame] | 1036 | info.iconBitmap = LauncherIcons |
| 1037 | .createShortcutIcon(pinnedShortcut, context); |
Charles He | 3ff9047 | 2017-02-15 12:22:56 +0000 | [diff] [blame] | 1038 | if (pmHelper.isAppSuspended( |
Sunny Goyal | ad2e91a | 2017-02-28 15:14:58 -0800 | [diff] [blame] | 1039 | pinnedShortcut.getPackage(), info.user)) { |
Charles He | 3ff9047 | 2017-02-15 12:22:56 +0000 | [diff] [blame] | 1040 | info.isDisabled |= ShortcutInfo.FLAG_DISABLED_SUSPENDED; |
| 1041 | } |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 1042 | intent = info.intent; |
| 1043 | } else { |
| 1044 | // Create a shortcut info in disabled mode for now. |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1045 | info = c.loadSimpleShortcut(); |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 1046 | info.isDisabled |= ShortcutInfo.FLAG_DISABLED_LOCKED_USER; |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 1047 | } |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 1048 | } else { // item type == ITEM_TYPE_SHORTCUT |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1049 | info = c.loadSimpleShortcut(); |
Michael Jurka | 9687956 | 2012-03-22 05:54:33 -0700 | [diff] [blame] | 1050 | |
Sunny Goyal | d09c370 | 2016-04-06 16:18:20 -0700 | [diff] [blame] | 1051 | // Shortcuts are only available on the primary profile |
Sunny Goyal | ad2e91a | 2017-02-28 15:14:58 -0800 | [diff] [blame] | 1052 | if (pmHelper.isAppSuspended(targetPkg, c.user)) { |
Sunny Goyal | d09c370 | 2016-04-06 16:18:20 -0700 | [diff] [blame] | 1053 | disabledState |= ShortcutInfo.FLAG_DISABLED_SUSPENDED; |
| 1054 | } |
| 1055 | |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1056 | // App shortcuts that used to be automatically added to Launcher |
| 1057 | // didn't always have the correct intent flags set, so do that |
| 1058 | // here |
| 1059 | if (intent.getAction() != null && |
Michael Jurka | 9ad0056 | 2012-05-14 12:24:22 -0700 | [diff] [blame] | 1060 | intent.getCategories() != null && |
| 1061 | intent.getAction().equals(Intent.ACTION_MAIN) && |
Michael Jurka | 9687956 | 2012-03-22 05:54:33 -0700 | [diff] [blame] | 1062 | intent.getCategories().contains(Intent.CATEGORY_LAUNCHER)) { |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1063 | intent.addFlags( |
| 1064 | Intent.FLAG_ACTIVITY_NEW_TASK | |
| 1065 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED); |
| 1066 | } |
Michael Jurka | 9687956 | 2012-03-22 05:54:33 -0700 | [diff] [blame] | 1067 | } |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 1068 | |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1069 | if (info != null) { |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1070 | c.applyCommonProperties(info); |
| 1071 | |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1072 | info.intent = intent; |
Sunny Goyal | 08f7261 | 2015-01-05 13:41:43 -0800 | [diff] [blame] | 1073 | info.rank = c.getInt(rankIndex); |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 1074 | info.spanX = 1; |
| 1075 | info.spanY = 1; |
Sunny Goyal | d09c370 | 2016-04-06 16:18:20 -0700 | [diff] [blame] | 1076 | info.isDisabled |= disabledState; |
Sunny Goyal | 1a745e8 | 2014-10-02 15:58:31 -0700 | [diff] [blame] | 1077 | if (isSafeMode && !Utilities.isSystemApp(context, intent)) { |
| 1078 | info.isDisabled |= ShortcutInfo.FLAG_DISABLED_SAFEMODE; |
| 1079 | } |
Adam Cohen | ae4409d | 2013-11-26 10:34:59 -0800 | [diff] [blame] | 1080 | |
Sunny Goyal | 81e4491 | 2017-01-14 15:05:14 -0800 | [diff] [blame] | 1081 | if (c.restoreFlag != 0 && !TextUtils.isEmpty(targetPkg)) { |
| 1082 | Integer progress = installingPkgs.get(targetPkg); |
| 1083 | if (progress != null) { |
| 1084 | info.setInstallProgress(progress); |
| 1085 | } else { |
| 1086 | info.status &= ~ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE; |
Sunny Goyal | 756adbc | 2015-04-16 15:20:51 -0700 | [diff] [blame] | 1087 | } |
| 1088 | } |
| 1089 | |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1090 | c.checkAndAddItem(info, sBgDataModel); |
Winson Chung | 1323b48 | 2013-08-05 12:41:55 -0700 | [diff] [blame] | 1091 | } else { |
| 1092 | throw new RuntimeException("Unexpected null ShortcutInfo"); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1093 | } |
| 1094 | break; |
| 1095 | |
| 1096 | case LauncherSettings.Favorites.ITEM_TYPE_FOLDER: |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1097 | FolderInfo folderInfo = sBgDataModel.findOrMakeFolder(c.id); |
| 1098 | c.applyCommonProperties(folderInfo); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1099 | |
Sunny Goyal | a508e4f | 2015-05-21 09:33:57 -0700 | [diff] [blame] | 1100 | // Do not trim the folder label, as is was set by the user. |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1101 | folderInfo.title = c.getString(c.titleIndex); |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 1102 | folderInfo.spanX = 1; |
| 1103 | folderInfo.spanY = 1; |
Sunny Goyal | 5d85c44 | 2015-03-10 13:14:47 -0700 | [diff] [blame] | 1104 | folderInfo.options = c.getInt(optionsIndex); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 1105 | |
Sunny Goyal | c1ad0ce | 2017-01-11 14:33:38 -0800 | [diff] [blame] | 1106 | // no special handling required for restored folders |
| 1107 | c.markRestored(); |
Chris Wren | f4d0811 | 2014-01-16 18:13:56 -0500 | [diff] [blame] | 1108 | |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1109 | c.checkAndAddItem(folderInfo, sBgDataModel); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1110 | break; |
| 1111 | |
| 1112 | case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET: |
Adam Cohen | 5940042 | 2014-03-05 18:07:04 -0800 | [diff] [blame] | 1113 | case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET: |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1114 | // Read all Launcher-specific widget details |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1115 | boolean customWidget = c.itemType == |
Adam Cohen | 5940042 | 2014-03-05 18:07:04 -0800 | [diff] [blame] | 1116 | LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET; |
| 1117 | |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1118 | int appWidgetId = c.getInt(appWidgetIdIndex); |
Chris Wren | c3919c0 | 2013-09-18 09:48:33 -0400 | [diff] [blame] | 1119 | String savedProvider = c.getString(appWidgetProviderIndex); |
Sunny Goyal | 7f834d2 | 2015-04-21 10:10:23 -0700 | [diff] [blame] | 1120 | |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 1121 | final ComponentName component = |
| 1122 | ComponentName.unflattenFromString(savedProvider); |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1123 | |
Sunny Goyal | c1ad0ce | 2017-01-11 14:33:38 -0800 | [diff] [blame] | 1124 | final boolean isIdValid = !c.hasRestoreFlag( |
| 1125 | LauncherAppWidgetInfo.FLAG_ID_NOT_VALID); |
| 1126 | final boolean wasProviderReady = !c.hasRestoreFlag( |
| 1127 | LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY); |
Sunny Goyal | 651077b | 2014-06-30 14:15:31 -0700 | [diff] [blame] | 1128 | |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 1129 | if (widgetProvidersMap == null) { |
| 1130 | widgetProvidersMap = AppWidgetManagerCompat |
| 1131 | .getInstance(mContext).getAllProvidersMap(); |
| 1132 | } |
| 1133 | final AppWidgetProviderInfo provider = widgetProvidersMap.get( |
| 1134 | new ComponentKey( |
Robin Lee | 26ace12 | 2015-03-16 19:41:43 +0000 | [diff] [blame] | 1135 | ComponentName.unflattenFromString(savedProvider), |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1136 | c.user)); |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 1137 | |
| 1138 | final boolean isProviderReady = isValidProvider(provider); |
Adam Cohen | 5940042 | 2014-03-05 18:07:04 -0800 | [diff] [blame] | 1139 | if (!isSafeMode && !customWidget && |
| 1140 | wasProviderReady && !isProviderReady) { |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1141 | c.markDeleted( |
| 1142 | "Deleting widget that isn't installed anymore: " |
Sunny Goyal | a136545 | 2015-10-01 15:46:24 -0700 | [diff] [blame] | 1143 | + provider); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1144 | } else { |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 1145 | if (isProviderReady) { |
Sunny Goyal | 651077b | 2014-06-30 14:15:31 -0700 | [diff] [blame] | 1146 | appWidgetInfo = new LauncherAppWidgetInfo(appWidgetId, |
| 1147 | provider.provider); |
Adam Cohen | 5940042 | 2014-03-05 18:07:04 -0800 | [diff] [blame] | 1148 | |
Sunny Goyal | 53f9672 | 2015-07-13 19:54:53 -0700 | [diff] [blame] | 1149 | // The provider is available. So the widget is either |
| 1150 | // available or not available. We do not need to track |
| 1151 | // any future restore updates. |
Sunny Goyal | c1ad0ce | 2017-01-11 14:33:38 -0800 | [diff] [blame] | 1152 | int status = c.restoreFlag & |
Sunny Goyal | 53f9672 | 2015-07-13 19:54:53 -0700 | [diff] [blame] | 1153 | ~LauncherAppWidgetInfo.FLAG_RESTORE_STARTED; |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 1154 | if (!wasProviderReady) { |
| 1155 | // If provider was not previously ready, update the |
| 1156 | // status and UI flag. |
| 1157 | |
| 1158 | // Id would be valid only if the widget restore broadcast was received. |
| 1159 | if (isIdValid) { |
Sunny Goyal | 86df138 | 2016-08-10 15:03:22 -0700 | [diff] [blame] | 1160 | status |= LauncherAppWidgetInfo.FLAG_UI_NOT_READY; |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 1161 | } else { |
| 1162 | status &= ~LauncherAppWidgetInfo |
| 1163 | .FLAG_PROVIDER_NOT_READY; |
| 1164 | } |
| 1165 | } |
| 1166 | appWidgetInfo.restoreStatus = status; |
Sunny Goyal | 651077b | 2014-06-30 14:15:31 -0700 | [diff] [blame] | 1167 | } else { |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1168 | Log.v(TAG, "Widget restore pending id=" + c.id |
Sunny Goyal | 651077b | 2014-06-30 14:15:31 -0700 | [diff] [blame] | 1169 | + " appWidgetId=" + appWidgetId |
Sunny Goyal | c1ad0ce | 2017-01-11 14:33:38 -0800 | [diff] [blame] | 1170 | + " status =" + c.restoreFlag); |
Sunny Goyal | 651077b | 2014-06-30 14:15:31 -0700 | [diff] [blame] | 1171 | appWidgetInfo = new LauncherAppWidgetInfo(appWidgetId, |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 1172 | component); |
Sunny Goyal | c1ad0ce | 2017-01-11 14:33:38 -0800 | [diff] [blame] | 1173 | appWidgetInfo.restoreStatus = c.restoreFlag; |
Sunny Goyal | 756adbc | 2015-04-16 15:20:51 -0700 | [diff] [blame] | 1174 | Integer installProgress = installingPkgs.get(component.getPackageName()); |
Sunny Goyal | 9448536 | 2014-09-18 16:13:58 -0700 | [diff] [blame] | 1175 | |
Sunny Goyal | c1ad0ce | 2017-01-11 14:33:38 -0800 | [diff] [blame] | 1176 | if (c.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_RESTORE_STARTED)) { |
Sunny Goyal | 9448536 | 2014-09-18 16:13:58 -0700 | [diff] [blame] | 1177 | // Restore has started once. |
Sunny Goyal | 756adbc | 2015-04-16 15:20:51 -0700 | [diff] [blame] | 1178 | } else if (installProgress != null) { |
Sunny Goyal | 9448536 | 2014-09-18 16:13:58 -0700 | [diff] [blame] | 1179 | // App restore has started. Update the flag |
| 1180 | appWidgetInfo.restoreStatus |= |
| 1181 | LauncherAppWidgetInfo.FLAG_RESTORE_STARTED; |
Sunny Goyal | b05a00a | 2016-08-29 10:06:57 -0700 | [diff] [blame] | 1182 | } else if (!isSafeMode) { |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1183 | c.markDeleted("Unrestored widget removed: " + component); |
Sunny Goyal | 9448536 | 2014-09-18 16:13:58 -0700 | [diff] [blame] | 1184 | continue; |
| 1185 | } |
Sunny Goyal | 756adbc | 2015-04-16 15:20:51 -0700 | [diff] [blame] | 1186 | |
| 1187 | appWidgetInfo.installProgress = |
| 1188 | installProgress == null ? 0 : installProgress; |
Sunny Goyal | 651077b | 2014-06-30 14:15:31 -0700 | [diff] [blame] | 1189 | } |
Sunny Goyal | 86df138 | 2016-08-10 15:03:22 -0700 | [diff] [blame] | 1190 | if (appWidgetInfo.hasRestoreFlag( |
| 1191 | LauncherAppWidgetInfo.FLAG_DIRECT_CONFIG)) { |
Sunny Goyal | 81e4491 | 2017-01-14 15:05:14 -0800 | [diff] [blame] | 1192 | appWidgetInfo.bindOptions = c.parseIntent(); |
Sunny Goyal | 86df138 | 2016-08-10 15:03:22 -0700 | [diff] [blame] | 1193 | } |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 1194 | |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1195 | c.applyCommonProperties(appWidgetInfo); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1196 | appWidgetInfo.spanX = c.getInt(spanXIndex); |
| 1197 | appWidgetInfo.spanY = c.getInt(spanYIndex); |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1198 | appWidgetInfo.user = c.user; |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1199 | |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1200 | if (!c.isOnWorkspaceOrHotseat()) { |
| 1201 | c.markDeleted("Widget found where container != " + |
Sunny Goyal | 41cdc8d | 2015-09-04 12:53:04 -0700 | [diff] [blame] | 1202 | "CONTAINER_DESKTOP nor CONTAINER_HOTSEAT - ignoring!"); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1203 | continue; |
| 1204 | } |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1205 | |
Adam Cohen | 5940042 | 2014-03-05 18:07:04 -0800 | [diff] [blame] | 1206 | if (!customWidget) { |
| 1207 | String providerName = |
| 1208 | appWidgetInfo.providerName.flattenToString(); |
| 1209 | if (!providerName.equals(savedProvider) || |
Sunny Goyal | c1ad0ce | 2017-01-11 14:33:38 -0800 | [diff] [blame] | 1210 | (appWidgetInfo.restoreStatus != c.restoreFlag)) { |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1211 | c.updater() |
| 1212 | .put(LauncherSettings.Favorites.APPWIDGET_PROVIDER, |
| 1213 | providerName) |
| 1214 | .put(LauncherSettings.Favorites.RESTORED, |
| 1215 | appWidgetInfo.restoreStatus) |
| 1216 | .commit(); |
Adam Cohen | 5940042 | 2014-03-05 18:07:04 -0800 | [diff] [blame] | 1217 | } |
Chris Wren | c3919c0 | 2013-09-18 09:48:33 -0400 | [diff] [blame] | 1218 | } |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1219 | c.checkAndAddItem(appWidgetInfo, sBgDataModel); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1220 | } |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1221 | break; |
| 1222 | } |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1223 | } catch (Exception e) { |
Sunny Goyal | a136545 | 2015-10-01 15:46:24 -0700 | [diff] [blame] | 1224 | Log.e(TAG, "Desktop items loading interrupted", e); |
Romain Guy | 5c16f3e | 2010-01-12 17:24:58 -0800 | [diff] [blame] | 1225 | } |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1226 | } |
| 1227 | } finally { |
Sunny Goyal | 713edfc | 2016-05-06 09:58:34 -0700 | [diff] [blame] | 1228 | Utilities.closeSilently(c); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1229 | } |
| 1230 | |
Winson Chung | ba9c37f | 2013-08-30 14:11:37 -0700 | [diff] [blame] | 1231 | // Break early if we've stopped loading |
| 1232 | if (mStopped) { |
Sunny Goyal | e9956a7 | 2016-09-01 17:24:47 -0700 | [diff] [blame] | 1233 | sBgDataModel.clear(); |
Sunny Goyal | 66cfdc2 | 2015-02-02 13:01:51 -0800 | [diff] [blame] | 1234 | return; |
Winson Chung | ba9c37f | 2013-08-30 14:11:37 -0700 | [diff] [blame] | 1235 | } |
| 1236 | |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1237 | // Remove dead items |
| 1238 | if (c.commitDeleted()) { |
Sunny Goyal | b1622cc | 2015-06-10 16:00:42 -0700 | [diff] [blame] | 1239 | // Remove any empty folder |
Sunny Goyal | d249748 | 2015-09-22 18:24:19 -0700 | [diff] [blame] | 1240 | ArrayList<Long> deletedFolderIds = (ArrayList<Long>) LauncherSettings.Settings |
| 1241 | .call(contentResolver, |
| 1242 | LauncherSettings.Settings.METHOD_DELETE_EMPTY_FOLDERS) |
| 1243 | .getSerializable(LauncherSettings.Settings.EXTRA_VALUE); |
| 1244 | for (long folderId : deletedFolderIds) { |
Sunny Goyal | e9956a7 | 2016-09-01 17:24:47 -0700 | [diff] [blame] | 1245 | sBgDataModel.workspaceItems.remove(sBgDataModel.folders.get(folderId)); |
| 1246 | sBgDataModel.folders.remove(folderId); |
| 1247 | sBgDataModel.itemsIdMap.remove(folderId); |
Romain Guy | 5c16f3e | 2010-01-12 17:24:58 -0800 | [diff] [blame] | 1248 | } |
Sunny Goyal | 55fddc8 | 2017-04-06 15:02:52 -0700 | [diff] [blame] | 1249 | |
| 1250 | // Remove any ghost widgets |
| 1251 | LauncherSettings.Settings.call(contentResolver, |
| 1252 | LauncherSettings.Settings.METHOD_REMOVE_GHOST_WIDGETS); |
Romain Guy | 5c16f3e | 2010-01-12 17:24:58 -0800 | [diff] [blame] | 1253 | } |
| 1254 | |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 1255 | // Unpin shortcuts that don't exist on the workspace. |
Sunny Goyal | f75baa9 | 2016-11-22 03:23:51 +0530 | [diff] [blame] | 1256 | HashSet<ShortcutKey> pendingShortcuts = |
| 1257 | InstallShortcutReceiver.getPendingShortcuts(context); |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 1258 | for (ShortcutKey key : shortcutKeyToPinnedShortcuts.keySet()) { |
Sunny Goyal | e9956a7 | 2016-09-01 17:24:47 -0700 | [diff] [blame] | 1259 | MutableInt numTimesPinned = sBgDataModel.pinnedShortcutCounts.get(key); |
Sunny Goyal | f75baa9 | 2016-11-22 03:23:51 +0530 | [diff] [blame] | 1260 | if ((numTimesPinned == null || numTimesPinned.value == 0) |
| 1261 | && !pendingShortcuts.contains(key)) { |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 1262 | // Shortcut is pinned but doesn't exist on the workspace; unpin it. |
Sunny Goyal | dde4fd9 | 2016-11-21 16:02:39 +0530 | [diff] [blame] | 1263 | shortcutManager.unpinShortcut(key); |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 1264 | } |
| 1265 | } |
| 1266 | |
Jon Miranda | 655ec42 | 2017-02-07 11:40:22 -0800 | [diff] [blame] | 1267 | FolderIconPreviewVerifier verifier = |
| 1268 | new FolderIconPreviewVerifier(mApp.getInvariantDeviceProfile()); |
| 1269 | // Sort the folder items and make sure all items in the preview are high resolution. |
Sunny Goyal | e9956a7 | 2016-09-01 17:24:47 -0700 | [diff] [blame] | 1270 | for (FolderInfo folder : sBgDataModel.folders) { |
Sunny Goyal | 317698b | 2015-07-29 11:45:41 -0700 | [diff] [blame] | 1271 | Collections.sort(folder.contents, Folder.ITEM_POS_COMPARATOR); |
Jon Miranda | 655ec42 | 2017-02-07 11:40:22 -0800 | [diff] [blame] | 1272 | verifier.setFolderInfo(folder); |
| 1273 | |
| 1274 | int numItemsInPreview = 0; |
Sunny Goyal | 317698b | 2015-07-29 11:45:41 -0700 | [diff] [blame] | 1275 | for (ShortcutInfo info : folder.contents) { |
Jon Miranda | 655ec42 | 2017-02-07 11:40:22 -0800 | [diff] [blame] | 1276 | if (info.usingLowResIcon |
| 1277 | && info.itemType == LauncherSettings.Favorites.ITEM_TYPE_APPLICATION |
| 1278 | && verifier.isItemInPreview(info.rank)) { |
Sunny Goyal | 3fe4a14 | 2016-12-15 17:40:07 -0800 | [diff] [blame] | 1279 | mIconCache.getTitleAndIcon(info, false); |
Jon Miranda | 655ec42 | 2017-02-07 11:40:22 -0800 | [diff] [blame] | 1280 | numItemsInPreview++; |
Sunny Goyal | 317698b | 2015-07-29 11:45:41 -0700 | [diff] [blame] | 1281 | } |
Jon Miranda | 655ec42 | 2017-02-07 11:40:22 -0800 | [diff] [blame] | 1282 | |
| 1283 | if (numItemsInPreview >= FolderIcon.NUM_ITEMS_IN_PREVIEW) { |
Sunny Goyal | 317698b | 2015-07-29 11:45:41 -0700 | [diff] [blame] | 1284 | break; |
| 1285 | } |
| 1286 | } |
| 1287 | } |
| 1288 | |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1289 | c.commitRestoredItems(); |
Sunny Goyal | c2936bc | 2016-09-01 15:50:36 -0700 | [diff] [blame] | 1290 | if (!isSdCardReady && !pendingPackages.isEmpty()) { |
| 1291 | context.registerReceiver( |
| 1292 | new SdCardAvailableReceiver( |
| 1293 | LauncherModel.this, mContext, pendingPackages), |
Sunny Goyal | 25aba0a | 2015-07-16 15:07:47 -0700 | [diff] [blame] | 1294 | new IntentFilter(Intent.ACTION_BOOT_COMPLETED), |
Sunny Goyal | c2936bc | 2016-09-01 15:50:36 -0700 | [diff] [blame] | 1295 | null, |
| 1296 | sWorker); |
Sunny Goyal | f599ccf | 2014-07-08 13:01:29 -0700 | [diff] [blame] | 1297 | } |
| 1298 | |
Sunny Goyal | 66cfdc2 | 2015-02-02 13:01:51 -0800 | [diff] [blame] | 1299 | // Remove any empty screens |
Sunny Goyal | aaf86fe | 2017-01-05 21:50:27 -0800 | [diff] [blame] | 1300 | ArrayList<Long> unusedScreens = new ArrayList<>(sBgDataModel.workspaceScreens); |
Sunny Goyal | e9956a7 | 2016-09-01 17:24:47 -0700 | [diff] [blame] | 1301 | for (ItemInfo item: sBgDataModel.itemsIdMap) { |
Sunny Goyal | 66cfdc2 | 2015-02-02 13:01:51 -0800 | [diff] [blame] | 1302 | long screenId = item.screenId; |
| 1303 | if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP && |
| 1304 | unusedScreens.contains(screenId)) { |
| 1305 | unusedScreens.remove(screenId); |
| 1306 | } |
| 1307 | } |
| 1308 | |
| 1309 | // If there are any empty screens remove them, and update. |
| 1310 | if (unusedScreens.size() != 0) { |
Sunny Goyal | e9956a7 | 2016-09-01 17:24:47 -0700 | [diff] [blame] | 1311 | sBgDataModel.workspaceScreens.removeAll(unusedScreens); |
| 1312 | updateWorkspaceScreenOrder(context, sBgDataModel.workspaceScreens); |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 1313 | } |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1314 | } |
Sunny Goyal | e26d100 | 2016-06-20 14:52:14 -0700 | [diff] [blame] | 1315 | if (LauncherAppState.PROFILE_STARTUP) { |
| 1316 | Trace.endSection(); |
| 1317 | } |
Adam Cohen | e25af79 | 2013-06-06 23:08:25 -0700 | [diff] [blame] | 1318 | } |
| 1319 | |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1320 | /** Filters the set of items who are directly or indirectly (via another container) on the |
| 1321 | * specified screen. */ |
Winson Chung | 9b9fb96 | 2013-11-15 15:39:34 -0800 | [diff] [blame] | 1322 | private void filterCurrentWorkspaceItems(long currentScreenId, |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1323 | ArrayList<ItemInfo> allWorkspaceItems, |
| 1324 | ArrayList<ItemInfo> currentScreenItems, |
| 1325 | ArrayList<ItemInfo> otherScreenItems) { |
Winson Chung | 2abf94d | 2012-07-18 18:16:38 -0700 | [diff] [blame] | 1326 | // Purge any null ItemInfos |
| 1327 | Iterator<ItemInfo> iter = allWorkspaceItems.iterator(); |
| 1328 | while (iter.hasNext()) { |
| 1329 | ItemInfo i = iter.next(); |
| 1330 | if (i == null) { |
| 1331 | iter.remove(); |
| 1332 | } |
| 1333 | } |
| 1334 | |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1335 | // Order the set of items by their containers first, this allows use to walk through the |
| 1336 | // list sequentially, build up a list of containers that are in the specified screen, |
| 1337 | // as well as all items in those containers. |
| 1338 | Set<Long> itemsOnScreen = new HashSet<Long>(); |
| 1339 | Collections.sort(allWorkspaceItems, new Comparator<ItemInfo>() { |
| 1340 | @Override |
| 1341 | public int compare(ItemInfo lhs, ItemInfo rhs) { |
Winson | 12fb9fc | 2015-10-01 15:34:08 -0700 | [diff] [blame] | 1342 | return Utilities.longCompare(lhs.container, rhs.container); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1343 | } |
| 1344 | }); |
| 1345 | for (ItemInfo info : allWorkspaceItems) { |
| 1346 | if (info.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) { |
Winson Chung | 9b9fb96 | 2013-11-15 15:39:34 -0800 | [diff] [blame] | 1347 | if (info.screenId == currentScreenId) { |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1348 | currentScreenItems.add(info); |
| 1349 | itemsOnScreen.add(info.id); |
| 1350 | } else { |
| 1351 | otherScreenItems.add(info); |
| 1352 | } |
| 1353 | } else if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) { |
| 1354 | currentScreenItems.add(info); |
| 1355 | itemsOnScreen.add(info.id); |
| 1356 | } else { |
| 1357 | if (itemsOnScreen.contains(info.container)) { |
| 1358 | currentScreenItems.add(info); |
| 1359 | itemsOnScreen.add(info.id); |
| 1360 | } else { |
| 1361 | otherScreenItems.add(info); |
| 1362 | } |
| 1363 | } |
| 1364 | } |
| 1365 | } |
| 1366 | |
| 1367 | /** Filters the set of widgets which are on the specified screen. */ |
Winson Chung | 9b9fb96 | 2013-11-15 15:39:34 -0800 | [diff] [blame] | 1368 | private void filterCurrentAppWidgets(long currentScreenId, |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1369 | ArrayList<LauncherAppWidgetInfo> appWidgets, |
| 1370 | ArrayList<LauncherAppWidgetInfo> currentScreenWidgets, |
| 1371 | ArrayList<LauncherAppWidgetInfo> otherScreenWidgets) { |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1372 | |
| 1373 | for (LauncherAppWidgetInfo widget : appWidgets) { |
Winson Chung | 2abf94d | 2012-07-18 18:16:38 -0700 | [diff] [blame] | 1374 | if (widget == null) continue; |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1375 | if (widget.container == LauncherSettings.Favorites.CONTAINER_DESKTOP && |
Winson Chung | 9b9fb96 | 2013-11-15 15:39:34 -0800 | [diff] [blame] | 1376 | widget.screenId == currentScreenId) { |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1377 | currentScreenWidgets.add(widget); |
| 1378 | } else { |
| 1379 | otherScreenWidgets.add(widget); |
| 1380 | } |
| 1381 | } |
| 1382 | } |
| 1383 | |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1384 | /** Sorts the set of items by hotseat, workspace (spatially from top to bottom, left to |
| 1385 | * right) */ |
| 1386 | private void sortWorkspaceItemsSpatially(ArrayList<ItemInfo> workspaceItems) { |
Sunny Goyal | 87f784c | 2017-01-11 10:48:34 -0800 | [diff] [blame] | 1387 | final InvariantDeviceProfile profile = mApp.getInvariantDeviceProfile(); |
Winson Chung | 882a52e | 2015-07-08 14:32:26 -0700 | [diff] [blame] | 1388 | final int screenCols = profile.numColumns; |
| 1389 | final int screenCellCount = profile.numColumns * profile.numRows; |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1390 | Collections.sort(workspaceItems, new Comparator<ItemInfo>() { |
Winson Chung | db8a894 | 2012-04-03 14:08:41 -0700 | [diff] [blame] | 1391 | @Override |
| 1392 | public int compare(ItemInfo lhs, ItemInfo rhs) { |
Winson Chung | 882a52e | 2015-07-08 14:32:26 -0700 | [diff] [blame] | 1393 | if (lhs.container == rhs.container) { |
| 1394 | // Within containers, order by their spatial position in that container |
| 1395 | switch ((int) lhs.container) { |
| 1396 | case LauncherSettings.Favorites.CONTAINER_DESKTOP: { |
| 1397 | long lr = (lhs.screenId * screenCellCount + |
| 1398 | lhs.cellY * screenCols + lhs.cellX); |
| 1399 | long rr = (rhs.screenId * screenCellCount + |
| 1400 | rhs.cellY * screenCols + rhs.cellX); |
Winson | 722e856 | 2015-10-07 13:04:30 -0700 | [diff] [blame] | 1401 | return Utilities.longCompare(lr, rr); |
Winson Chung | 882a52e | 2015-07-08 14:32:26 -0700 | [diff] [blame] | 1402 | } |
| 1403 | case LauncherSettings.Favorites.CONTAINER_HOTSEAT: { |
| 1404 | // We currently use the screen id as the rank |
Winson | 722e856 | 2015-10-07 13:04:30 -0700 | [diff] [blame] | 1405 | return Utilities.longCompare(lhs.screenId, rhs.screenId); |
Winson Chung | 882a52e | 2015-07-08 14:32:26 -0700 | [diff] [blame] | 1406 | } |
| 1407 | default: |
Sunny Goyal | 3d706ad | 2017-03-06 16:56:39 -0800 | [diff] [blame] | 1408 | if (FeatureFlags.IS_DOGFOOD_BUILD) { |
Winson Chung | 882a52e | 2015-07-08 14:32:26 -0700 | [diff] [blame] | 1409 | throw new RuntimeException("Unexpected container type when " + |
| 1410 | "sorting workspace items."); |
| 1411 | } |
| 1412 | return 0; |
| 1413 | } |
| 1414 | } else { |
| 1415 | // Between containers, order by hotseat, desktop |
Winson | 722e856 | 2015-10-07 13:04:30 -0700 | [diff] [blame] | 1416 | return Utilities.longCompare(lhs.container, rhs.container); |
Winson Chung | 882a52e | 2015-07-08 14:32:26 -0700 | [diff] [blame] | 1417 | } |
Winson Chung | db8a894 | 2012-04-03 14:08:41 -0700 | [diff] [blame] | 1418 | } |
| 1419 | }); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1420 | } |
Winson Chung | db8a894 | 2012-04-03 14:08:41 -0700 | [diff] [blame] | 1421 | |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 1422 | private void bindWorkspaceScreens(final Callbacks oldCallbacks, |
| 1423 | final ArrayList<Long> orderedScreens) { |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 1424 | final Runnable r = new Runnable() { |
| 1425 | @Override |
| 1426 | public void run() { |
| 1427 | Callbacks callbacks = tryGetCallbacks(oldCallbacks); |
| 1428 | if (callbacks != null) { |
| 1429 | callbacks.bindScreens(orderedScreens); |
| 1430 | } |
| 1431 | } |
| 1432 | }; |
Sunny Goyal | b265ba7 | 2017-02-14 15:03:45 -0800 | [diff] [blame] | 1433 | mUiExecutor.execute(r); |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 1434 | } |
| 1435 | |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1436 | private void bindWorkspaceItems(final Callbacks oldCallbacks, |
| 1437 | final ArrayList<ItemInfo> workspaceItems, |
| 1438 | final ArrayList<LauncherAppWidgetInfo> appWidgets, |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 1439 | final Executor executor) { |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1440 | |
| 1441 | // Bind the workspace items |
Winson Chung | db8a894 | 2012-04-03 14:08:41 -0700 | [diff] [blame] | 1442 | int N = workspaceItems.size(); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1443 | for (int i = 0; i < N; i += ITEMS_CHUNK) { |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1444 | final int start = i; |
| 1445 | final int chunkSize = (i+ITEMS_CHUNK <= N) ? ITEMS_CHUNK : (N-i); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1446 | final Runnable r = new Runnable() { |
| 1447 | @Override |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 1448 | public void run() { |
Joe Onorato | c131b74 | 2010-03-11 15:45:05 -0800 | [diff] [blame] | 1449 | Callbacks callbacks = tryGetCallbacks(oldCallbacks); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 1450 | if (callbacks != null) { |
Winson Chung | 64359a5 | 2013-07-08 17:17:08 -0700 | [diff] [blame] | 1451 | callbacks.bindItems(workspaceItems, start, start+chunkSize, |
| 1452 | false); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 1453 | } |
| 1454 | } |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1455 | }; |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 1456 | executor.execute(r); |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1457 | } |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1458 | |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1459 | // Bind the widgets, one at a time |
| 1460 | N = appWidgets.size(); |
| 1461 | for (int i = 0; i < N; i++) { |
| 1462 | final LauncherAppWidgetInfo widget = appWidgets.get(i); |
| 1463 | final Runnable r = new Runnable() { |
| 1464 | public void run() { |
| 1465 | Callbacks callbacks = tryGetCallbacks(oldCallbacks); |
| 1466 | if (callbacks != null) { |
| 1467 | callbacks.bindAppWidget(widget); |
| 1468 | } |
| 1469 | } |
| 1470 | }; |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 1471 | executor.execute(r); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1472 | } |
| 1473 | } |
| 1474 | |
| 1475 | /** |
| 1476 | * Binds all loaded data to actual views on the main thread. |
| 1477 | */ |
Sunny Goyal | 66cfdc2 | 2015-02-02 13:01:51 -0800 | [diff] [blame] | 1478 | private void bindWorkspace(int synchronizeBindPage) { |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1479 | final long t = SystemClock.uptimeMillis(); |
| 1480 | Runnable r; |
| 1481 | |
| 1482 | // Don't use these two variables in any of the callback runnables. |
| 1483 | // Otherwise we hold a reference to them. |
| 1484 | final Callbacks oldCallbacks = mCallbacks.get(); |
| 1485 | if (oldCallbacks == null) { |
| 1486 | // This launcher has exited and nobody bothered to tell us. Just bail. |
| 1487 | Log.w(TAG, "LoaderTask running with no launcher"); |
| 1488 | return; |
| 1489 | } |
| 1490 | |
Winson Chung | 9b9fb96 | 2013-11-15 15:39:34 -0800 | [diff] [blame] | 1491 | // Save a copy of all the bg-thread collections |
Sunny Goyal | 44c0643 | 2016-04-02 10:56:02 -0700 | [diff] [blame] | 1492 | ArrayList<ItemInfo> workspaceItems = new ArrayList<>(); |
| 1493 | ArrayList<LauncherAppWidgetInfo> appWidgets = new ArrayList<>(); |
| 1494 | ArrayList<Long> orderedScreenIds = new ArrayList<>(); |
Sunny Goyal | e2df062 | 2015-04-24 11:27:00 -0700 | [diff] [blame] | 1495 | |
Sunny Goyal | e9956a7 | 2016-09-01 17:24:47 -0700 | [diff] [blame] | 1496 | synchronized (sBgDataModel) { |
| 1497 | workspaceItems.addAll(sBgDataModel.workspaceItems); |
| 1498 | appWidgets.addAll(sBgDataModel.appWidgets); |
| 1499 | orderedScreenIds.addAll(sBgDataModel.workspaceScreens); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1500 | } |
| 1501 | |
Sunny Goyal | b5b9ad6 | 2016-04-02 11:23:39 -0700 | [diff] [blame] | 1502 | final int currentScreen; |
| 1503 | { |
| 1504 | int currScreen = synchronizeBindPage != PagedView.INVALID_RESTORE_PAGE |
| 1505 | ? synchronizeBindPage : oldCallbacks.getCurrentWorkspaceScreen(); |
| 1506 | if (currScreen >= orderedScreenIds.size()) { |
| 1507 | // There may be no workspace screens (just hotseat items and an empty page). |
| 1508 | currScreen = PagedView.INVALID_RESTORE_PAGE; |
| 1509 | } |
| 1510 | currentScreen = currScreen; |
Winson Chung | 9b9fb96 | 2013-11-15 15:39:34 -0800 | [diff] [blame] | 1511 | } |
Sunny Goyal | b5b9ad6 | 2016-04-02 11:23:39 -0700 | [diff] [blame] | 1512 | final boolean validFirstPage = currentScreen >= 0; |
| 1513 | final long currentScreenId = |
| 1514 | validFirstPage ? orderedScreenIds.get(currentScreen) : INVALID_SCREEN_ID; |
Winson Chung | 9b9fb96 | 2013-11-15 15:39:34 -0800 | [diff] [blame] | 1515 | |
Winson Chung | 9b9fb96 | 2013-11-15 15:39:34 -0800 | [diff] [blame] | 1516 | // Separate the items that are on the current screen, and all the other remaining items |
Sunny Goyal | 44c0643 | 2016-04-02 10:56:02 -0700 | [diff] [blame] | 1517 | ArrayList<ItemInfo> currentWorkspaceItems = new ArrayList<>(); |
| 1518 | ArrayList<ItemInfo> otherWorkspaceItems = new ArrayList<>(); |
| 1519 | ArrayList<LauncherAppWidgetInfo> currentAppWidgets = new ArrayList<>(); |
| 1520 | ArrayList<LauncherAppWidgetInfo> otherAppWidgets = new ArrayList<>(); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1521 | |
Winson Chung | 9b9fb96 | 2013-11-15 15:39:34 -0800 | [diff] [blame] | 1522 | filterCurrentWorkspaceItems(currentScreenId, workspaceItems, currentWorkspaceItems, |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1523 | otherWorkspaceItems); |
Winson Chung | 9b9fb96 | 2013-11-15 15:39:34 -0800 | [diff] [blame] | 1524 | filterCurrentAppWidgets(currentScreenId, appWidgets, currentAppWidgets, |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1525 | otherAppWidgets); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1526 | sortWorkspaceItemsSpatially(currentWorkspaceItems); |
| 1527 | sortWorkspaceItemsSpatially(otherWorkspaceItems); |
| 1528 | |
| 1529 | // Tell the workspace that we're about to start binding items |
| 1530 | r = new Runnable() { |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1531 | public void run() { |
| 1532 | Callbacks callbacks = tryGetCallbacks(oldCallbacks); |
| 1533 | if (callbacks != null) { |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 1534 | callbacks.clearPendingBinds(); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1535 | callbacks.startBinding(); |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1536 | } |
| 1537 | } |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1538 | }; |
Sunny Goyal | b265ba7 | 2017-02-14 15:03:45 -0800 | [diff] [blame] | 1539 | mUiExecutor.execute(r); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1540 | |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 1541 | bindWorkspaceScreens(oldCallbacks, orderedScreenIds); |
| 1542 | |
Sunny Goyal | b265ba7 | 2017-02-14 15:03:45 -0800 | [diff] [blame] | 1543 | Executor mainExecutor = mUiExecutor; |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 1544 | // Load items on the current page. |
Sunny Goyal | 44c0643 | 2016-04-02 10:56:02 -0700 | [diff] [blame] | 1545 | bindWorkspaceItems(oldCallbacks, currentWorkspaceItems, currentAppWidgets, mainExecutor); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1546 | |
Sunny Goyal | b5b9ad6 | 2016-04-02 11:23:39 -0700 | [diff] [blame] | 1547 | // In case of validFirstPage, only bind the first screen, and defer binding the |
| 1548 | // remaining screens after first onDraw (and an optional the fade animation whichever |
| 1549 | // happens later). |
| 1550 | // This ensures that the first screen is immediately visible (eg. during rotation) |
| 1551 | // In case of !validFirstPage, bind all pages one after other. |
| 1552 | final Executor deferredExecutor = |
Sunny Goyal | b265ba7 | 2017-02-14 15:03:45 -0800 | [diff] [blame] | 1553 | validFirstPage ? new ViewOnDrawExecutor(mUiExecutor) : mainExecutor; |
Sunny Goyal | b5b9ad6 | 2016-04-02 11:23:39 -0700 | [diff] [blame] | 1554 | |
| 1555 | mainExecutor.execute(new Runnable() { |
| 1556 | @Override |
| 1557 | public void run() { |
| 1558 | Callbacks callbacks = tryGetCallbacks(oldCallbacks); |
| 1559 | if (callbacks != null) { |
| 1560 | callbacks.finishFirstPageBind( |
| 1561 | validFirstPage ? (ViewOnDrawExecutor) deferredExecutor : null); |
| 1562 | } |
| 1563 | } |
| 1564 | }); |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 1565 | |
Sunny Goyal | 44c0643 | 2016-04-02 10:56:02 -0700 | [diff] [blame] | 1566 | bindWorkspaceItems(oldCallbacks, otherWorkspaceItems, otherAppWidgets, deferredExecutor); |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1567 | |
| 1568 | // Tell the workspace that we're done binding items |
| 1569 | r = new Runnable() { |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1570 | public void run() { |
| 1571 | Callbacks callbacks = tryGetCallbacks(oldCallbacks); |
| 1572 | if (callbacks != null) { |
Sunny Goyal | 66cfdc2 | 2015-02-02 13:01:51 -0800 | [diff] [blame] | 1573 | callbacks.finishBindingItems(); |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1574 | } |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1575 | |
Sunny Goyal | 639e906 | 2015-08-19 19:17:06 -0700 | [diff] [blame] | 1576 | mIsLoadingAndBindingWorkspace = false; |
| 1577 | |
| 1578 | // Run all the bind complete runnables after workspace is bound. |
| 1579 | if (!mBindCompleteRunnables.isEmpty()) { |
| 1580 | synchronized (mBindCompleteRunnables) { |
| 1581 | for (final Runnable r : mBindCompleteRunnables) { |
| 1582 | runOnWorkerThread(r); |
| 1583 | } |
| 1584 | mBindCompleteRunnables.clear(); |
| 1585 | } |
| 1586 | } |
| 1587 | |
Winson Chung | 98e030b | 2012-05-07 16:01:11 -0700 | [diff] [blame] | 1588 | // If we're profiling, ensure this is the last thing in the queue. |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1589 | if (DEBUG_LOADERS) { |
| 1590 | Log.d(TAG, "bound workspace in " |
| 1591 | + (SystemClock.uptimeMillis()-t) + "ms"); |
| 1592 | } |
Winson Chung | 36a62fe | 2012-05-06 18:04:42 -0700 | [diff] [blame] | 1593 | |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1594 | } |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 1595 | }; |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 1596 | deferredExecutor.execute(r); |
| 1597 | |
Sunny Goyal | b5b9ad6 | 2016-04-02 11:23:39 -0700 | [diff] [blame] | 1598 | if (validFirstPage) { |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 1599 | r = new Runnable() { |
| 1600 | public void run() { |
| 1601 | Callbacks callbacks = tryGetCallbacks(oldCallbacks); |
| 1602 | if (callbacks != null) { |
| 1603 | // We are loading synchronously, which means, some of the pages will be |
| 1604 | // bound after first draw. Inform the callbacks that page binding is |
| 1605 | // not complete, and schedule the remaining pages. |
| 1606 | if (currentScreen != PagedView.INVALID_RESTORE_PAGE) { |
| 1607 | callbacks.onPageBoundSynchronously(currentScreen); |
| 1608 | } |
| 1609 | callbacks.executeOnNextDraw((ViewOnDrawExecutor) deferredExecutor); |
| 1610 | } |
| 1611 | } |
| 1612 | }; |
Sunny Goyal | b265ba7 | 2017-02-14 15:03:45 -0800 | [diff] [blame] | 1613 | mUiExecutor.execute(r); |
Winson Chung | 4a2afa3 | 2012-07-19 14:53:05 -0700 | [diff] [blame] | 1614 | } |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1615 | } |
Joe Onorato | cc67f47 | 2010-06-08 10:54:30 -0700 | [diff] [blame] | 1616 | |
Sunny Goyal | 4e5cc64 | 2015-06-25 16:37:44 -0700 | [diff] [blame] | 1617 | private void updateIconCache() { |
| 1618 | // Ignore packages which have a promise icon. |
| 1619 | HashSet<String> packagesToIgnore = new HashSet<>(); |
Sunny Goyal | e9956a7 | 2016-09-01 17:24:47 -0700 | [diff] [blame] | 1620 | synchronized (sBgDataModel) { |
| 1621 | for (ItemInfo info : sBgDataModel.itemsIdMap) { |
Sunny Goyal | 4e5cc64 | 2015-06-25 16:37:44 -0700 | [diff] [blame] | 1622 | if (info instanceof ShortcutInfo) { |
| 1623 | ShortcutInfo si = (ShortcutInfo) info; |
| 1624 | if (si.isPromise() && si.getTargetComponent() != null) { |
| 1625 | packagesToIgnore.add(si.getTargetComponent().getPackageName()); |
| 1626 | } |
| 1627 | } else if (info instanceof LauncherAppWidgetInfo) { |
| 1628 | LauncherAppWidgetInfo lawi = (LauncherAppWidgetInfo) info; |
| 1629 | if (lawi.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY)) { |
| 1630 | packagesToIgnore.add(lawi.providerName.getPackageName()); |
| 1631 | } |
| 1632 | } |
| 1633 | } |
| 1634 | } |
| 1635 | mIconCache.updateDbIcons(packagesToIgnore); |
| 1636 | } |
| 1637 | |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1638 | private void onlyBindAllApps() { |
| 1639 | final Callbacks oldCallbacks = mCallbacks.get(); |
| 1640 | if (oldCallbacks == null) { |
| 1641 | // This launcher has exited and nobody bothered to tell us. Just bail. |
| 1642 | Log.w(TAG, "LoaderTask running with no launcher (onlyBindAllApps)"); |
| 1643 | return; |
| 1644 | } |
| 1645 | |
| 1646 | // shallow copy |
Winson Chung | c208ff9 | 2012-03-29 17:37:41 -0700 | [diff] [blame] | 1647 | @SuppressWarnings("unchecked") |
Michael Jurka | eadbfc5 | 2013-09-04 00:45:37 +0200 | [diff] [blame] | 1648 | final ArrayList<AppInfo> list |
| 1649 | = (ArrayList<AppInfo>) mBgAllAppsList.data.clone(); |
Winson Chung | c93e5ae | 2012-07-23 20:48:26 -0700 | [diff] [blame] | 1650 | Runnable r = new Runnable() { |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1651 | public void run() { |
| 1652 | final long t = SystemClock.uptimeMillis(); |
| 1653 | final Callbacks callbacks = tryGetCallbacks(oldCallbacks); |
| 1654 | if (callbacks != null) { |
| 1655 | callbacks.bindAllApplications(list); |
| 1656 | } |
| 1657 | if (DEBUG_LOADERS) { |
| 1658 | Log.d(TAG, "bound all " + list.size() + " apps from cache in " |
Hyunyoung Song | 747a5bc | 2016-02-08 11:31:33 -0800 | [diff] [blame] | 1659 | + (SystemClock.uptimeMillis() - t) + "ms"); |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1660 | } |
| 1661 | } |
Winson Chung | c93e5ae | 2012-07-23 20:48:26 -0700 | [diff] [blame] | 1662 | }; |
Sunny Goyal | b265ba7 | 2017-02-14 15:03:45 -0800 | [diff] [blame] | 1663 | mUiExecutor.execute(r); |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1664 | } |
| 1665 | |
Winson Chung | 64359a5 | 2013-07-08 17:17:08 -0700 | [diff] [blame] | 1666 | private void loadAllApps() { |
| 1667 | final long loadTime = DEBUG_LOADERS ? SystemClock.uptimeMillis() : 0; |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1668 | |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1669 | final Callbacks oldCallbacks = mCallbacks.get(); |
| 1670 | if (oldCallbacks == null) { |
| 1671 | // This launcher has exited and nobody bothered to tell us. Just bail. |
Winson Chung | 64359a5 | 2013-07-08 17:17:08 -0700 | [diff] [blame] | 1672 | Log.w(TAG, "LoaderTask running with no launcher (loadAllApps)"); |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1673 | return; |
| 1674 | } |
| 1675 | |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 1676 | final List<UserHandle> profiles = mUserManager.getUserProfiles(); |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 1677 | |
Winson Chung | 64359a5 | 2013-07-08 17:17:08 -0700 | [diff] [blame] | 1678 | // Clear the list of apps |
| 1679 | mBgAllAppsList.clear(); |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 1680 | for (UserHandle user : profiles) { |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 1681 | // Query for the set of apps |
| 1682 | final long qiaTime = DEBUG_LOADERS ? SystemClock.uptimeMillis() : 0; |
Sunny Goyal | 3e9be43 | 2017-01-05 15:22:41 -0800 | [diff] [blame] | 1683 | final List<LauncherActivityInfo> apps = mLauncherApps.getActivityList(null, user); |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 1684 | if (DEBUG_LOADERS) { |
| 1685 | Log.d(TAG, "getActivityList took " |
| 1686 | + (SystemClock.uptimeMillis()-qiaTime) + "ms for user " + user); |
| 1687 | Log.d(TAG, "getActivityList got " + apps.size() + " apps for user " + user); |
| 1688 | } |
| 1689 | // Fail if we don't have any apps |
Sunny Goyal | e0f58d7 | 2014-11-10 18:05:31 -0800 | [diff] [blame] | 1690 | // TODO: Fix this. Only fail for the current user. |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 1691 | if (apps == null || apps.isEmpty()) { |
| 1692 | return; |
| 1693 | } |
Kenny Guy | ff05f43 | 2016-01-22 17:48:29 +0000 | [diff] [blame] | 1694 | boolean quietMode = mUserManager.isQuietModeEnabled(user); |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 1695 | // Create the ApplicationInfos |
| 1696 | for (int i = 0; i < apps.size(); i++) { |
Sunny Goyal | 3e9be43 | 2017-01-05 15:22:41 -0800 | [diff] [blame] | 1697 | LauncherActivityInfo app = apps.get(i); |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 1698 | // This builds the icon bitmaps. |
Sunny Goyal | 24bb66a | 2017-03-21 15:12:01 -0700 | [diff] [blame] | 1699 | mBgAllAppsList.add(new AppInfo(app, user, quietMode), app); |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 1700 | } |
Sunny Goyal | e0f58d7 | 2014-11-10 18:05:31 -0800 | [diff] [blame] | 1701 | |
Sunny Goyal | 756a28a | 2015-04-23 17:07:55 -0700 | [diff] [blame] | 1702 | final ManagedProfileHeuristic heuristic = ManagedProfileHeuristic.get(mContext, user); |
| 1703 | if (heuristic != null) { |
Sunny Goyal | 639e906 | 2015-08-19 19:17:06 -0700 | [diff] [blame] | 1704 | final Runnable r = new Runnable() { |
Sunny Goyal | 756a28a | 2015-04-23 17:07:55 -0700 | [diff] [blame] | 1705 | |
| 1706 | @Override |
| 1707 | public void run() { |
| 1708 | heuristic.processUserApps(apps); |
| 1709 | } |
Sunny Goyal | 639e906 | 2015-08-19 19:17:06 -0700 | [diff] [blame] | 1710 | }; |
Sunny Goyal | b265ba7 | 2017-02-14 15:03:45 -0800 | [diff] [blame] | 1711 | mUiExecutor.execute(new Runnable() { |
Sunny Goyal | 639e906 | 2015-08-19 19:17:06 -0700 | [diff] [blame] | 1712 | |
Sunny Goyal | b265ba7 | 2017-02-14 15:03:45 -0800 | [diff] [blame] | 1713 | @Override |
| 1714 | public void run() { |
| 1715 | // Check isLoadingWorkspace on the UI thread, as it is updated on |
| 1716 | // the UI thread. |
| 1717 | if (mIsLoadingAndBindingWorkspace) { |
| 1718 | synchronized (mBindCompleteRunnables) { |
| 1719 | mBindCompleteRunnables.add(r); |
| 1720 | } |
| 1721 | } else { |
| 1722 | runOnWorkerThread(r); |
| 1723 | } |
| 1724 | } |
| 1725 | }); |
Sunny Goyal | e0f58d7 | 2014-11-10 18:05:31 -0800 | [diff] [blame] | 1726 | } |
Winson Chung | 64359a5 | 2013-07-08 17:17:08 -0700 | [diff] [blame] | 1727 | } |
Mario Bertschler | 817afa3 | 2017-03-15 11:56:47 -0700 | [diff] [blame] | 1728 | |
| 1729 | if (FeatureFlags.LAUNCHER3_PROMISE_APPS_IN_ALL_APPS) { |
| 1730 | // get all active sessions and add them to the all apps list |
| 1731 | PackageInstallerCompat installer = PackageInstallerCompat.getInstance(mContext); |
| 1732 | for (PackageInstaller.SessionInfo info : installer.getAllVerifiedSessions()) { |
| 1733 | mBgAllAppsList.addPromiseApp(mContext, |
| 1734 | PackageInstallInfo.fromInstallingState(info)); |
| 1735 | } |
| 1736 | } |
| 1737 | |
Bjorn Bringert | 85f418d | 2013-09-06 12:50:05 +0100 | [diff] [blame] | 1738 | // Huh? Shouldn't this be inside the Runnable below? |
Michael Jurka | eadbfc5 | 2013-09-04 00:45:37 +0200 | [diff] [blame] | 1739 | final ArrayList<AppInfo> added = mBgAllAppsList.added; |
| 1740 | mBgAllAppsList.added = new ArrayList<AppInfo>(); |
Winson Chung | 64359a5 | 2013-07-08 17:17:08 -0700 | [diff] [blame] | 1741 | |
Mario Bertschler | 817afa3 | 2017-03-15 11:56:47 -0700 | [diff] [blame] | 1742 | |
Winson Chung | 64359a5 | 2013-07-08 17:17:08 -0700 | [diff] [blame] | 1743 | // Post callback on main thread |
Sunny Goyal | b265ba7 | 2017-02-14 15:03:45 -0800 | [diff] [blame] | 1744 | mUiExecutor.execute(new Runnable() { |
Winson Chung | 64359a5 | 2013-07-08 17:17:08 -0700 | [diff] [blame] | 1745 | public void run() { |
Hyunyoung Song | 9892e58 | 2015-05-05 10:07:23 -0700 | [diff] [blame] | 1746 | |
Winson Chung | 64359a5 | 2013-07-08 17:17:08 -0700 | [diff] [blame] | 1747 | final long bindTime = SystemClock.uptimeMillis(); |
Winson Chung | 11a1a53 | 2013-09-13 11:14:45 -0700 | [diff] [blame] | 1748 | final Callbacks callbacks = tryGetCallbacks(oldCallbacks); |
Winson Chung | 64359a5 | 2013-07-08 17:17:08 -0700 | [diff] [blame] | 1749 | if (callbacks != null) { |
| 1750 | callbacks.bindAllApplications(added); |
| 1751 | if (DEBUG_LOADERS) { |
| 1752 | Log.d(TAG, "bound " + added.size() + " apps in " |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 1753 | + (SystemClock.uptimeMillis() - bindTime) + "ms"); |
Winson Chung | 64359a5 | 2013-07-08 17:17:08 -0700 | [diff] [blame] | 1754 | } |
| 1755 | } else { |
| 1756 | Log.i(TAG, "not binding apps: no Launcher activity"); |
| 1757 | } |
| 1758 | } |
| 1759 | }); |
Sunny Goyal | 18bf8e2 | 2015-04-08 18:13:46 -0700 | [diff] [blame] | 1760 | // Cleanup any data stored for a deleted user. |
| 1761 | ManagedProfileHeuristic.processAllUsers(profiles, mContext); |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1762 | if (DEBUG_LOADERS) { |
Winson Chung | 64359a5 | 2013-07-08 17:17:08 -0700 | [diff] [blame] | 1763 | Log.d(TAG, "Icons processed in " |
| 1764 | + (SystemClock.uptimeMillis() - loadTime) + "ms"); |
Joe Onorato | be38609 | 2009-11-17 17:32:16 -0800 | [diff] [blame] | 1765 | } |
| 1766 | } |
| 1767 | |
Sunny Goyal | dd96a5e | 2017-02-17 11:22:34 -0800 | [diff] [blame] | 1768 | private void loadDeepShortcuts() { |
| 1769 | if (!mModelLoaded) { |
Sunny Goyal | 8e0e1d7 | 2016-10-10 10:41:41 -0700 | [diff] [blame] | 1770 | sBgDataModel.deepShortcutMap.clear(); |
Sunny Goyal | dde4fd9 | 2016-11-21 16:02:39 +0530 | [diff] [blame] | 1771 | DeepShortcutManager shortcutManager = DeepShortcutManager.getInstance(mContext); |
| 1772 | mHasShortcutHostPermission = shortcutManager.hasHostPermission(); |
Sunny Goyal | 95f3d6b | 2016-08-10 16:09:29 -0700 | [diff] [blame] | 1773 | if (mHasShortcutHostPermission) { |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 1774 | for (UserHandle user : mUserManager.getUserProfiles()) { |
Sunny Goyal | 95f3d6b | 2016-08-10 16:09:29 -0700 | [diff] [blame] | 1775 | if (mUserManager.isUserUnlocked(user)) { |
Sunny Goyal | dde4fd9 | 2016-11-21 16:02:39 +0530 | [diff] [blame] | 1776 | List<ShortcutInfoCompat> shortcuts = |
| 1777 | shortcutManager.queryForAllShortcuts(user); |
Sunny Goyal | 8e0e1d7 | 2016-10-10 10:41:41 -0700 | [diff] [blame] | 1778 | sBgDataModel.updateDeepShortcutMap(null, user, shortcuts); |
Sunny Goyal | 95f3d6b | 2016-08-10 16:09:29 -0700 | [diff] [blame] | 1779 | } |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 1780 | } |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 1781 | } |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 1782 | } |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 1783 | } |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1784 | } |
| 1785 | |
Tony Wickham | 80f5787 | 2016-06-29 18:12:15 -0700 | [diff] [blame] | 1786 | public void bindDeepShortcuts() { |
Sunny Goyal | 8e0e1d7 | 2016-10-10 10:41:41 -0700 | [diff] [blame] | 1787 | final MultiHashMap<ComponentKey, String> shortcutMapCopy = |
| 1788 | sBgDataModel.deepShortcutMap.clone(); |
Tony Wickham | 80f5787 | 2016-06-29 18:12:15 -0700 | [diff] [blame] | 1789 | Runnable r = new Runnable() { |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 1790 | @Override |
| 1791 | public void run() { |
| 1792 | Callbacks callbacks = getCallback(); |
| 1793 | if (callbacks != null) { |
| 1794 | callbacks.bindDeepShortcutMap(shortcutMapCopy); |
| 1795 | } |
| 1796 | } |
Tony Wickham | 80f5787 | 2016-06-29 18:12:15 -0700 | [diff] [blame] | 1797 | }; |
Sunny Goyal | b265ba7 | 2017-02-14 15:03:45 -0800 | [diff] [blame] | 1798 | mUiExecutor.execute(r); |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 1799 | } |
| 1800 | |
Sunny Goyal | 75b0f55 | 2015-05-20 21:57:06 -0700 | [diff] [blame] | 1801 | /** |
Sunny Goyal | 95f3d6b | 2016-08-10 16:09:29 -0700 | [diff] [blame] | 1802 | * Refreshes the cached shortcuts if the shortcut permission has changed. |
| 1803 | * Current implementation simply reloads the workspace, but it can be optimized to |
| 1804 | * use partial updates similar to {@link UserManagerCompat} |
| 1805 | */ |
| 1806 | public void refreshShortcutsIfRequired() { |
Sunny Goyal | f5e3744 | 2016-11-02 10:31:24 -0700 | [diff] [blame] | 1807 | if (Utilities.ATLEAST_NOUGAT_MR1) { |
Sunny Goyal | 95f3d6b | 2016-08-10 16:09:29 -0700 | [diff] [blame] | 1808 | sWorker.removeCallbacks(mShortcutPermissionCheckRunnable); |
| 1809 | sWorker.post(mShortcutPermissionCheckRunnable); |
| 1810 | } |
| 1811 | } |
| 1812 | |
| 1813 | /** |
Sunny Goyal | 75b0f55 | 2015-05-20 21:57:06 -0700 | [diff] [blame] | 1814 | * Called when the icons for packages have been updated in the icon cache. |
| 1815 | */ |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 1816 | public void onPackageIconsUpdated(HashSet<String> updatedPackages, UserHandle user) { |
Sunny Goyal | 75b0f55 | 2015-05-20 21:57:06 -0700 | [diff] [blame] | 1817 | // If any package icon has changed (app was updated while launcher was dead), |
| 1818 | // update the corresponding shortcuts. |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 1819 | enqueueModelUpdateTask(new CacheDataUpdatedTask( |
| 1820 | CacheDataUpdatedTask.OP_CACHE_UPDATE, user, updatedPackages)); |
Sunny Goyal | 75b0f55 | 2015-05-20 21:57:06 -0700 | [diff] [blame] | 1821 | } |
| 1822 | |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 1823 | void enqueueModelUpdateTask(BaseModelUpdateTask task) { |
Jon Miranda | f28629a | 2017-02-23 15:12:42 -0800 | [diff] [blame] | 1824 | if (!mModelLoaded && mLoaderTask == null) { |
| 1825 | if (DEBUG_LOADERS) { |
| 1826 | Log.d(TAG, "enqueueModelUpdateTask Ignoring task since loader is pending=" + task); |
| 1827 | } |
| 1828 | return; |
| 1829 | } |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 1830 | task.init(this); |
| 1831 | runOnWorkerThread(task); |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 1832 | } |
| 1833 | |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 1834 | /** |
| 1835 | * A task to be executed on the current callbacks on the UI thread. |
| 1836 | * If there is no current callbacks, the task is ignored. |
| 1837 | */ |
| 1838 | public interface CallbackTask { |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 1839 | |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 1840 | void execute(Callbacks callbacks); |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 1841 | } |
| 1842 | |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 1843 | /** |
| 1844 | * A runnable which changes/updates the data model of the launcher based on certain events. |
| 1845 | */ |
| 1846 | public static abstract class BaseModelUpdateTask implements Runnable { |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1847 | |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 1848 | private LauncherModel mModel; |
Sunny Goyal | b265ba7 | 2017-02-14 15:03:45 -0800 | [diff] [blame] | 1849 | private Executor mUiExecutor; |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1850 | |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 1851 | /* package private */ |
| 1852 | void init(LauncherModel model) { |
| 1853 | mModel = model; |
Sunny Goyal | b265ba7 | 2017-02-14 15:03:45 -0800 | [diff] [blame] | 1854 | mUiExecutor = mModel.mUiExecutor; |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1855 | } |
| 1856 | |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 1857 | @Override |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1858 | public void run() { |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 1859 | if (!mModel.mHasLoaderCompletedOnce) { |
Sunny Goyal | c905efc | 2015-05-06 09:54:53 -0700 | [diff] [blame] | 1860 | // Loader has not yet run. |
| 1861 | return; |
| 1862 | } |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 1863 | execute(mModel.mApp, sBgDataModel, mModel.mBgAllAppsList); |
| 1864 | } |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1865 | |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 1866 | /** |
| 1867 | * Execute the actual task. Called on the worker thread. |
| 1868 | */ |
| 1869 | public abstract void execute( |
| 1870 | LauncherAppState app, BgDataModel dataModel, AllAppsList apps); |
Sunny Goyal | e0f58d7 | 2014-11-10 18:05:31 -0800 | [diff] [blame] | 1871 | |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 1872 | /** |
| 1873 | * Schedules a {@param task} to be executed on the current callbacks. |
| 1874 | */ |
| 1875 | public final void scheduleCallbackTask(final CallbackTask task) { |
| 1876 | final Callbacks callbacks = mModel.getCallback(); |
Sunny Goyal | b265ba7 | 2017-02-14 15:03:45 -0800 | [diff] [blame] | 1877 | mUiExecutor.execute(new Runnable() { |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 1878 | public void run() { |
| 1879 | Callbacks cb = mModel.getCallback(); |
| 1880 | if (callbacks == cb && cb != null) { |
| 1881 | task.execute(callbacks); |
Sunny Goyal | b50cc8c | 2014-10-06 16:23:56 -0700 | [diff] [blame] | 1882 | } |
| 1883 | } |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 1884 | }); |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 1885 | } |
Sunny Goyal | 43bf11d | 2017-02-02 13:52:53 -0800 | [diff] [blame] | 1886 | |
| 1887 | public ModelWriter getModelWriter() { |
| 1888 | // Updates from model task, do not deal with icon position in hotseat. |
| 1889 | return mModel.getWriter(false /* hasVerticalHotseat */); |
| 1890 | } |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 1891 | } |
| 1892 | |
Sunny Goyal | 1b07263 | 2017-01-18 11:30:23 -0800 | [diff] [blame] | 1893 | public void updateAndBindShortcutInfo(final ShortcutInfo si, final ShortcutInfoCompat info) { |
| 1894 | updateAndBindShortcutInfo(new Provider<ShortcutInfo>() { |
| 1895 | @Override |
| 1896 | public ShortcutInfo get() { |
| 1897 | si.updateFromDeepShortcutInfo(info, mApp.getContext()); |
| 1898 | si.iconBitmap = LauncherIcons.createShortcutIcon(info, mApp.getContext()); |
| 1899 | return si; |
| 1900 | } |
| 1901 | }); |
| 1902 | } |
| 1903 | |
Sunny Goyal | 10923b3 | 2016-07-20 15:42:44 -0700 | [diff] [blame] | 1904 | /** |
Sunny Goyal | 1cc1c9a | 2017-01-06 16:32:57 -0800 | [diff] [blame] | 1905 | * Utility method to update a shortcut on the background thread. |
Sunny Goyal | 10923b3 | 2016-07-20 15:42:44 -0700 | [diff] [blame] | 1906 | */ |
Sunny Goyal | 1cc1c9a | 2017-01-06 16:32:57 -0800 | [diff] [blame] | 1907 | public void updateAndBindShortcutInfo(final Provider<ShortcutInfo> shortcutProvider) { |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 1908 | enqueueModelUpdateTask(new ExtendedModelTask() { |
Sunny Goyal | 10923b3 | 2016-07-20 15:42:44 -0700 | [diff] [blame] | 1909 | @Override |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 1910 | public void execute(LauncherAppState app, BgDataModel dataModel, AllAppsList apps) { |
Sunny Goyal | 1cc1c9a | 2017-01-06 16:32:57 -0800 | [diff] [blame] | 1911 | ShortcutInfo info = shortcutProvider.get(); |
Sunny Goyal | f0ba8b7 | 2016-09-09 15:47:55 -0700 | [diff] [blame] | 1912 | ArrayList<ShortcutInfo> update = new ArrayList<>(); |
Sunny Goyal | 10923b3 | 2016-07-20 15:42:44 -0700 | [diff] [blame] | 1913 | update.add(info); |
Sunny Goyal | 1cc1c9a | 2017-01-06 16:32:57 -0800 | [diff] [blame] | 1914 | bindUpdatedShortcuts(update, info.user); |
Sunny Goyal | 10923b3 | 2016-07-20 15:42:44 -0700 | [diff] [blame] | 1915 | } |
| 1916 | }); |
| 1917 | } |
| 1918 | |
Sunny Goyal | d164b7f | 2016-10-12 20:49:31 -0700 | [diff] [blame] | 1919 | private void bindWidgetsModel(final Callbacks callbacks) { |
| 1920 | final MultiHashMap<PackageItemInfo, WidgetItem> widgets |
| 1921 | = mBgWidgetsModel.getWidgetsMap().clone(); |
Sunny Goyal | b265ba7 | 2017-02-14 15:03:45 -0800 | [diff] [blame] | 1922 | mUiExecutor.execute(new Runnable() { |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 1923 | @Override |
| 1924 | public void run() { |
| 1925 | Callbacks cb = getCallback(); |
| 1926 | if (callbacks == cb && cb != null) { |
Sunny Goyal | d164b7f | 2016-10-12 20:49:31 -0700 | [diff] [blame] | 1927 | callbacks.bindAllWidgets(widgets); |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 1928 | } |
Hyunyoung Song | d4af148 | 2015-04-20 20:40:03 -0700 | [diff] [blame] | 1929 | } |
| 1930 | }); |
| 1931 | } |
| 1932 | |
Tony Wickham | 86222d2 | 2017-03-29 15:30:43 -0700 | [diff] [blame] | 1933 | public void refreshAndBindWidgetsAndShortcuts(final Callbacks callbacks, |
| 1934 | final boolean bindFirst, @Nullable final PackageUserKey packageUser) { |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 1935 | runOnWorkerThread(new Runnable() { |
| 1936 | @Override |
| 1937 | public void run() { |
| 1938 | if (bindFirst && !mBgWidgetsModel.isEmpty()) { |
Sunny Goyal | d164b7f | 2016-10-12 20:49:31 -0700 | [diff] [blame] | 1939 | bindWidgetsModel(callbacks); |
Sunny Goyal | 3186058 | 2015-09-18 08:38:57 -0700 | [diff] [blame] | 1940 | } |
Tony Wickham | 86222d2 | 2017-03-29 15:30:43 -0700 | [diff] [blame] | 1941 | ArrayList<WidgetItem> widgets = mBgWidgetsModel.update( |
| 1942 | mApp.getContext(), packageUser); |
Sunny Goyal | d164b7f | 2016-10-12 20:49:31 -0700 | [diff] [blame] | 1943 | bindWidgetsModel(callbacks); |
| 1944 | |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 1945 | // update the Widget entries inside DB on the worker thread. |
Tony Wickham | 86222d2 | 2017-03-29 15:30:43 -0700 | [diff] [blame] | 1946 | mApp.getWidgetCache().removeObsoletePreviews(widgets, packageUser); |
Sunny Goyal | 3186058 | 2015-09-18 08:38:57 -0700 | [diff] [blame] | 1947 | } |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 1948 | }); |
Michael Jurka | c402cd9 | 2013-05-20 15:49:32 +0200 | [diff] [blame] | 1949 | } |
| 1950 | |
Sunny Goyal | 651077b | 2014-06-30 14:15:31 -0700 | [diff] [blame] | 1951 | static boolean isValidProvider(AppWidgetProviderInfo provider) { |
| 1952 | return (provider != null) && (provider.provider != null) |
| 1953 | && (provider.provider.getPackageName() != null); |
| 1954 | } |
| 1955 | |
Hyunyoung Song | 3c7d9cb | 2017-01-30 15:11:27 -0800 | [diff] [blame] | 1956 | public void dumpState(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { |
| 1957 | if (args.length > 0 && TextUtils.equals(args[0], "--all")) { |
| 1958 | writer.println(prefix + "All apps list: size=" + mBgAllAppsList.data.size()); |
| 1959 | for (AppInfo info : mBgAllAppsList.data) { |
| 1960 | writer.println(prefix + " title=\"" + info.title + "\" iconBitmap=" + info.iconBitmap |
| 1961 | + " componentName=" + info.componentName.getPackageName()); |
| 1962 | } |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 1963 | } |
Hyunyoung Song | 3c7d9cb | 2017-01-30 15:11:27 -0800 | [diff] [blame] | 1964 | sBgDataModel.dump(prefix, fd, writer, args); |
Joe Onorato | be38609 | 2009-11-17 17:32:16 -0800 | [diff] [blame] | 1965 | } |
Sunny Goyal | e0f58d7 | 2014-11-10 18:05:31 -0800 | [diff] [blame] | 1966 | |
| 1967 | public Callbacks getCallback() { |
| 1968 | return mCallbacks != null ? mCallbacks.get() : null; |
| 1969 | } |
Sunny Goyal | 18bf8e2 | 2015-04-08 18:13:46 -0700 | [diff] [blame] | 1970 | |
| 1971 | /** |
| 1972 | * @return {@link FolderInfo} if its already loaded. |
| 1973 | */ |
| 1974 | public FolderInfo findFolderById(Long folderId) { |
Sunny Goyal | e9956a7 | 2016-09-01 17:24:47 -0700 | [diff] [blame] | 1975 | synchronized (sBgDataModel) { |
| 1976 | return sBgDataModel.folders.get(folderId); |
Sunny Goyal | 18bf8e2 | 2015-04-08 18:13:46 -0700 | [diff] [blame] | 1977 | } |
| 1978 | } |
Sunny Goyal | 756adbc | 2015-04-16 15:20:51 -0700 | [diff] [blame] | 1979 | |
| 1980 | /** |
| 1981 | * @return the looper for the worker thread which can be used to start background tasks. |
| 1982 | */ |
| 1983 | public static Looper getWorkerLooper() { |
| 1984 | return sWorkerThread.getLooper(); |
| 1985 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1986 | } |