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 | |
Sunny Goyal | 3e58eea | 2022-11-14 14:30:07 -0800 | [diff] [blame] | 19 | import static com.android.launcher3.DefaultLayoutParser.RES_PARTNER_DEFAULT_LAYOUT; |
Tracy Zhou | f601872 | 2020-02-06 16:37:16 -0800 | [diff] [blame] | 20 | import static com.android.launcher3.provider.LauncherDbUtils.copyTable; |
Sunny Goyal | 161a214 | 2018-10-29 14:02:20 -0700 | [diff] [blame] | 21 | import static com.android.launcher3.provider.LauncherDbUtils.dropTable; |
| 22 | import static com.android.launcher3.provider.LauncherDbUtils.tableExists; |
| 23 | |
Sunny Goyal | 22ca9ec | 2017-05-18 15:03:13 -0700 | [diff] [blame] | 24 | import android.annotation.TargetApi; |
Mike Cleron | b87bd16 | 2009-10-30 16:36:56 -0700 | [diff] [blame] | 25 | import android.appwidget.AppWidgetManager; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 26 | import android.content.ComponentName; |
Adam Cohen | 228da5a | 2011-07-27 22:23:47 -0700 | [diff] [blame] | 27 | import android.content.ContentProvider; |
Yura | 085c853 | 2014-02-11 15:15:29 +0000 | [diff] [blame] | 28 | import android.content.ContentProviderOperation; |
| 29 | import android.content.ContentProviderResult; |
Adam Cohen | 228da5a | 2011-07-27 22:23:47 -0700 | [diff] [blame] | 30 | import android.content.ContentUris; |
| 31 | import android.content.ContentValues; |
| 32 | import android.content.Context; |
| 33 | import android.content.Intent; |
Yura | 085c853 | 2014-02-11 15:15:29 +0000 | [diff] [blame] | 34 | import android.content.OperationApplicationException; |
Michael Jurka | b85f8a4 | 2012-04-25 15:48:32 -0700 | [diff] [blame] | 35 | import android.content.SharedPreferences; |
Sunny Goyal | c0f03d9 | 2019-03-22 14:13:36 -0700 | [diff] [blame] | 36 | import android.content.pm.ProviderInfo; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 37 | import android.database.Cursor; |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 38 | import android.database.DatabaseUtils; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 39 | import android.database.SQLException; |
Adam Cohen | 228da5a | 2011-07-27 22:23:47 -0700 | [diff] [blame] | 40 | import android.database.sqlite.SQLiteDatabase; |
Adam Cohen | 228da5a | 2011-07-27 22:23:47 -0700 | [diff] [blame] | 41 | import android.database.sqlite.SQLiteQueryBuilder; |
Sunny Goyal | 0b03778 | 2015-04-02 10:27:03 -0700 | [diff] [blame] | 42 | import android.database.sqlite.SQLiteStatement; |
Adam Cohen | 228da5a | 2011-07-27 22:23:47 -0700 | [diff] [blame] | 43 | import android.net.Uri; |
Sunny Goyal | 7779d62 | 2015-06-11 16:18:39 -0700 | [diff] [blame] | 44 | import android.os.Binder; |
Sunny Goyal | 22ca9ec | 2017-05-18 15:03:13 -0700 | [diff] [blame] | 45 | import android.os.Build; |
Sunny Goyal | b2d46ce | 2015-03-26 11:32:11 -0700 | [diff] [blame] | 46 | import android.os.Bundle; |
Sunny Goyal | 7779d62 | 2015-06-11 16:18:39 -0700 | [diff] [blame] | 47 | import android.os.Process; |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 48 | import android.os.UserHandle; |
Sunny Goyal | 337c81f | 2019-12-10 12:19:13 -0800 | [diff] [blame] | 49 | import android.os.UserManager; |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 50 | import android.provider.BaseColumns; |
Sunny Goyal | c0f03d9 | 2019-03-22 14:13:36 -0700 | [diff] [blame] | 51 | import android.provider.Settings; |
Adam Cohen | 228da5a | 2011-07-27 22:23:47 -0700 | [diff] [blame] | 52 | import android.text.TextUtils; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 53 | import android.util.Log; |
Sunny Goyal | c0f03d9 | 2019-03-22 14:13:36 -0700 | [diff] [blame] | 54 | import android.util.Xml; |
Adam Cohen | 228da5a | 2011-07-27 22:23:47 -0700 | [diff] [blame] | 55 | |
Sihua Ma | aa2b872 | 2022-10-25 15:17:58 -0700 | [diff] [blame] | 56 | import androidx.annotation.NonNull; |
| 57 | |
Sunny Goyal | 0fe505b | 2014-08-06 09:55:36 -0700 | [diff] [blame] | 58 | import com.android.launcher3.AutoInstallsLayout.LayoutParserCallback; |
| 59 | import com.android.launcher3.LauncherSettings.Favorites; |
Sunny Goyal | a9e2f5a | 2016-06-10 12:22:04 -0700 | [diff] [blame] | 60 | import com.android.launcher3.config.FeatureFlags; |
Sunny Goyal | fdbef27 | 2017-02-01 12:52:54 -0800 | [diff] [blame] | 61 | import com.android.launcher3.logging.FileLog; |
Sunny Goyal | 05f3088 | 2017-05-03 12:42:18 -0700 | [diff] [blame] | 62 | import com.android.launcher3.model.DbDowngradeHelper; |
Sunny Goyal | 337c81f | 2019-12-10 12:19:13 -0800 | [diff] [blame] | 63 | import com.android.launcher3.pm.UserCache; |
Sunny Goyal | a9e2f5a | 2016-06-10 12:22:04 -0700 | [diff] [blame] | 64 | import com.android.launcher3.provider.LauncherDbUtils; |
Sunny Goyal | dbfc901 | 2017-04-17 16:58:36 -0700 | [diff] [blame] | 65 | import com.android.launcher3.provider.LauncherDbUtils.SQLiteTransaction; |
Sunny Goyal | e8f7d5a | 2016-05-24 11:30:14 -0700 | [diff] [blame] | 66 | import com.android.launcher3.provider.RestoreDbTask; |
Sunny Goyal | c0f03d9 | 2019-03-22 14:13:36 -0700 | [diff] [blame] | 67 | import com.android.launcher3.util.IOUtils; |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 68 | import com.android.launcher3.util.IntArray; |
| 69 | import com.android.launcher3.util.IntSet; |
Sunny Goyal | 19026b2 | 2018-03-09 14:37:37 -0800 | [diff] [blame] | 70 | import com.android.launcher3.util.NoLocaleSQLiteHelper; |
Sunny Goyal | 9dbb27c | 2019-07-17 15:12:56 -0700 | [diff] [blame] | 71 | import com.android.launcher3.util.PackageManagerHelper; |
Sunny Goyal | 3e58eea | 2022-11-14 14:30:07 -0800 | [diff] [blame] | 72 | import com.android.launcher3.util.Partner; |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 73 | import com.android.launcher3.util.Thunk; |
Sihua Ma | 8bbfcb6 | 2022-11-08 16:46:07 -0800 | [diff] [blame] | 74 | import com.android.launcher3.widget.LauncherWidgetHolder; |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 75 | |
Sunny Goyal | c0f03d9 | 2019-03-22 14:13:36 -0700 | [diff] [blame] | 76 | import org.xmlpull.v1.XmlPullParser; |
| 77 | |
Sunny Goyal | 05f3088 | 2017-05-03 12:42:18 -0700 | [diff] [blame] | 78 | import java.io.File; |
Hyunyoung Song | 6aa3729 | 2017-02-06 10:46:24 -0800 | [diff] [blame] | 79 | import java.io.FileDescriptor; |
Sunny Goyal | c0f03d9 | 2019-03-22 14:13:36 -0700 | [diff] [blame] | 80 | import java.io.InputStream; |
Hyunyoung Song | 6aa3729 | 2017-02-06 10:46:24 -0800 | [diff] [blame] | 81 | import java.io.PrintWriter; |
Sunny Goyal | c0f03d9 | 2019-03-22 14:13:36 -0700 | [diff] [blame] | 82 | import java.io.StringReader; |
Mike Cleron | b87bd16 | 2009-10-30 16:36:56 -0700 | [diff] [blame] | 83 | import java.net.URISyntaxException; |
Adam Cohen | 228da5a | 2011-07-27 22:23:47 -0700 | [diff] [blame] | 84 | import java.util.ArrayList; |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 85 | import java.util.Arrays; |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 86 | import java.util.Locale; |
Tracy Zhou | c000045 | 2020-03-17 18:28:38 -0700 | [diff] [blame] | 87 | import java.util.function.Supplier; |
Pinyao Ting | 7fd7e51 | 2022-10-03 17:46:03 -0700 | [diff] [blame] | 88 | import java.util.stream.Collectors; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 89 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 90 | public class LauncherProvider extends ContentProvider { |
Sunny Goyal | c74e419 | 2015-09-08 14:01:03 -0700 | [diff] [blame] | 91 | private static final String TAG = "LauncherProvider"; |
Joe Onorato | a30ce8e | 2009-11-11 08:16:49 -0800 | [diff] [blame] | 92 | private static final boolean LOGD = false; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 93 | |
Sunny Goyal | 05f3088 | 2017-05-03 12:42:18 -0700 | [diff] [blame] | 94 | private static final String DOWNGRADE_SCHEMA_FILE = "downgrade_schema.json"; |
| 95 | |
Sunny Goyal | 3c7d55b | 2017-04-13 12:01:47 -0700 | [diff] [blame] | 96 | /** |
| 97 | * Represents the schema of the database. Changes in scheme need not be backwards compatible. |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 98 | * When increasing the scheme version, ensure that downgrade_schema.json is updated |
Sunny Goyal | 3c7d55b | 2017-04-13 12:01:47 -0700 | [diff] [blame] | 99 | */ |
Alex Chau | e09067c | 2022-01-10 16:13:13 +0000 | [diff] [blame] | 100 | public static final int SCHEMA_VERSION = 31; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 101 | |
Sunny Goyal | 4276e7b | 2018-11-26 23:44:41 -0800 | [diff] [blame] | 102 | public static final String AUTHORITY = BuildConfig.APPLICATION_ID + ".settings"; |
Pinyao Ting | 96186af | 2020-07-20 11:03:39 -0700 | [diff] [blame] | 103 | public static final String KEY_LAYOUT_PROVIDER_AUTHORITY = "KEY_LAYOUT_PROVIDER_AUTHORITY"; |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 104 | |
Schneider Victor-tulias | fb252e7 | 2022-02-10 11:10:21 -0800 | [diff] [blame] | 105 | private static final int TEST_WORKSPACE_LAYOUT_RES_XML = R.xml.default_test_workspace; |
Alex Chau | f8b79d4 | 2022-12-15 13:41:49 +0000 | [diff] [blame] | 106 | private static final int TEST2_WORKSPACE_LAYOUT_RES_XML = R.xml.default_test2_workspace; |
Sebastian Franco | 239ae0a | 2023-03-03 15:56:52 -0800 | [diff] [blame] | 107 | private static final int TAPL_WORKSPACE_LAYOUT_RES_XML = R.xml.default_tapl_test_workspace; |
Schneider Victor-tulias | fb252e7 | 2022-02-10 11:10:21 -0800 | [diff] [blame] | 108 | |
Sunny Goyal | e87e6ab | 2014-11-21 22:42:53 -0800 | [diff] [blame] | 109 | static final String EMPTY_DATABASE_CREATED = "EMPTY_DATABASE_CREATED"; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 110 | |
Sunny Goyal | f076eae | 2016-01-11 12:25:10 -0800 | [diff] [blame] | 111 | protected DatabaseHelper mOpenHelper; |
Pinyao Ting | 96186af | 2020-07-20 11:03:39 -0700 | [diff] [blame] | 112 | protected String mProviderAuthority; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 113 | |
Alex Chau | f8b79d4 | 2022-12-15 13:41:49 +0000 | [diff] [blame] | 114 | private int mDefaultWorkspaceLayoutOverride = 0; |
Schneider Victor-tulias | fb252e7 | 2022-02-10 11:10:21 -0800 | [diff] [blame] | 115 | |
Hyunyoung Song | 6aa3729 | 2017-02-06 10:46:24 -0800 | [diff] [blame] | 116 | /** |
| 117 | * $ adb shell dumpsys activity provider com.android.launcher3 |
| 118 | */ |
| 119 | @Override |
| 120 | public void dump(FileDescriptor fd, PrintWriter writer, String[] args) { |
| 121 | LauncherAppState appState = LauncherAppState.getInstanceNoCreate(); |
| 122 | if (appState == null || !appState.getModel().isModelLoaded()) { |
| 123 | return; |
| 124 | } |
| 125 | appState.getModel().dumpState("", fd, writer, args); |
| 126 | } |
| 127 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 128 | @Override |
| 129 | public boolean onCreate() { |
Zak Cohen | 3eeb41d | 2020-02-14 14:15:13 -0800 | [diff] [blame] | 130 | if (FeatureFlags.IS_STUDIO_BUILD) { |
Sunny Goyal | e26d100 | 2016-06-20 14:52:14 -0700 | [diff] [blame] | 131 | Log.d(TAG, "Launcher process started"); |
| 132 | } |
Sunny Goyal | b5b55c8 | 2016-05-10 12:28:59 -0700 | [diff] [blame] | 133 | |
Sunny Goyal | fdbef27 | 2017-02-01 12:52:54 -0800 | [diff] [blame] | 134 | // The content provider exists for the entire duration of the launcher main process and |
Sunny Goyal | 66f2b35 | 2018-02-09 10:57:12 -0800 | [diff] [blame] | 135 | // is the first component to get created. |
| 136 | MainProcessInitializer.initialize(getContext().getApplicationContext()); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 137 | return true; |
| 138 | } |
| 139 | |
| 140 | @Override |
| 141 | public String getType(Uri uri) { |
| 142 | SqlArguments args = new SqlArguments(uri, null, null); |
| 143 | if (TextUtils.isEmpty(args.where)) { |
| 144 | return "vnd.android.cursor.dir/" + args.table; |
| 145 | } else { |
| 146 | return "vnd.android.cursor.item/" + args.table; |
| 147 | } |
| 148 | } |
| 149 | |
Sunny Goyal | f076eae | 2016-01-11 12:25:10 -0800 | [diff] [blame] | 150 | /** |
| 151 | * Overridden in tests |
| 152 | */ |
| 153 | protected synchronized void createDbIfNotExists() { |
Sunny Goyal | d3849d1 | 2015-10-29 10:28:32 -0700 | [diff] [blame] | 154 | if (mOpenHelper == null) { |
Tracy Zhou | ed5f308 | 2020-04-20 01:13:26 -0700 | [diff] [blame] | 155 | mOpenHelper = DatabaseHelper.createDatabaseHelper( |
| 156 | getContext(), false /* forMigration */); |
Sunny Goyal | e8f7d5a | 2016-05-24 11:30:14 -0700 | [diff] [blame] | 157 | |
Sunny Goyal | 68031ca | 2021-08-02 12:23:44 -0700 | [diff] [blame] | 158 | RestoreDbTask.restoreIfNeeded(getContext(), mOpenHelper); |
Sunny Goyal | d3849d1 | 2015-10-29 10:28:32 -0700 | [diff] [blame] | 159 | } |
| 160 | } |
| 161 | |
Tracy Zhou | c000045 | 2020-03-17 18:28:38 -0700 | [diff] [blame] | 162 | private synchronized boolean prepForMigration(String dbFile, String targetTableName, |
| 163 | Supplier<DatabaseHelper> src, Supplier<DatabaseHelper> dst) { |
| 164 | if (TextUtils.equals(dbFile, mOpenHelper.getDatabaseName())) { |
Alex Chau | 0adc366 | 2022-07-04 13:05:38 +0100 | [diff] [blame] | 165 | Log.e(TAG, "prepForMigration - target db is same as current: " + dbFile); |
Tracy Zhou | 7df93d2 | 2020-01-27 13:44:06 -0800 | [diff] [blame] | 166 | return false; |
| 167 | } |
| 168 | |
Tracy Zhou | c000045 | 2020-03-17 18:28:38 -0700 | [diff] [blame] | 169 | final DatabaseHelper helper = src.get(); |
| 170 | mOpenHelper = dst.get(); |
| 171 | copyTable(helper.getReadableDatabase(), Favorites.TABLE_NAME, |
| 172 | mOpenHelper.getWritableDatabase(), targetTableName, getContext()); |
| 173 | helper.close(); |
Tracy Zhou | 7df93d2 | 2020-01-27 13:44:06 -0800 | [diff] [blame] | 174 | return true; |
| 175 | } |
| 176 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 177 | @Override |
| 178 | public Cursor query(Uri uri, String[] projection, String selection, |
| 179 | String[] selectionArgs, String sortOrder) { |
Sunny Goyal | d3849d1 | 2015-10-29 10:28:32 -0700 | [diff] [blame] | 180 | createDbIfNotExists(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 181 | |
| 182 | SqlArguments args = new SqlArguments(uri, selection, selectionArgs); |
| 183 | SQLiteQueryBuilder qb = new SQLiteQueryBuilder(); |
| 184 | qb.setTables(args.table); |
| 185 | |
Romain Guy | 73b979d | 2009-06-09 12:57:21 -0700 | [diff] [blame] | 186 | SQLiteDatabase db = mOpenHelper.getWritableDatabase(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 187 | Cursor result = qb.query(db, projection, args.where, args.args, null, null, sortOrder); |
Pinyao Ting | 0960b45 | 2020-10-14 11:17:04 -0700 | [diff] [blame] | 188 | final Bundle extra = new Bundle(); |
| 189 | extra.putString(LauncherSettings.Settings.EXTRA_DB_NAME, mOpenHelper.getDatabaseName()); |
| 190 | result.setExtras(extra); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 191 | result.setNotificationUri(getContext().getContentResolver(), uri); |
| 192 | |
| 193 | return result; |
| 194 | } |
| 195 | |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 196 | @Thunk static int dbInsertAndCheck(DatabaseHelper helper, |
Michael Jurka | a8c760d | 2011-04-28 14:59:33 -0700 | [diff] [blame] | 197 | SQLiteDatabase db, String table, String nullColumnHack, ContentValues values) { |
Dan Sandler | d502404 | 2014-01-09 15:01:33 -0500 | [diff] [blame] | 198 | if (values == null) { |
| 199 | throw new RuntimeException("Error: attempting to insert null values"); |
| 200 | } |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 201 | if (!values.containsKey(LauncherSettings.Favorites._ID)) { |
Michael Jurka | a8c760d | 2011-04-28 14:59:33 -0700 | [diff] [blame] | 202 | throw new RuntimeException("Error: attempting to add item without specifying an id"); |
| 203 | } |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 204 | helper.checkId(values); |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 205 | return (int) db.insert(table, nullColumnHack, values); |
Michael Jurka | a8c760d | 2011-04-28 14:59:33 -0700 | [diff] [blame] | 206 | } |
| 207 | |
Sunny Goyal | d106418 | 2015-08-13 12:08:30 -0700 | [diff] [blame] | 208 | private void reloadLauncherIfExternal() { |
Sunny Goyal | 8c48d8b | 2019-01-25 15:10:18 -0800 | [diff] [blame] | 209 | if (Binder.getCallingPid() != Process.myPid()) { |
Sunny Goyal | d106418 | 2015-08-13 12:08:30 -0700 | [diff] [blame] | 210 | LauncherAppState app = LauncherAppState.getInstanceNoCreate(); |
| 211 | if (app != null) { |
Sunny Goyal | dd96a5e | 2017-02-17 11:22:34 -0800 | [diff] [blame] | 212 | app.getModel().forceReload(); |
Sunny Goyal | d106418 | 2015-08-13 12:08:30 -0700 | [diff] [blame] | 213 | } |
| 214 | } |
| 215 | } |
| 216 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 217 | @Override |
| 218 | public Uri insert(Uri uri, ContentValues initialValues) { |
Sunny Goyal | d3849d1 | 2015-10-29 10:28:32 -0700 | [diff] [blame] | 219 | createDbIfNotExists(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 220 | SqlArguments args = new SqlArguments(uri); |
| 221 | |
Sunny Goyal | d106418 | 2015-08-13 12:08:30 -0700 | [diff] [blame] | 222 | // In very limited cases, we support system|signature permission apps to modify the db. |
| 223 | if (Binder.getCallingPid() != Process.myPid()) { |
Sunny Goyal | b5b55c8 | 2016-05-10 12:28:59 -0700 | [diff] [blame] | 224 | if (!initializeExternalAdd(initialValues)) { |
Adam Cohen | a043fa8 | 2014-07-23 14:49:38 -0700 | [diff] [blame] | 225 | return null; |
| 226 | } |
| 227 | } |
| 228 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 229 | SQLiteDatabase db = mOpenHelper.getWritableDatabase(); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 230 | addModifiedTime(initialValues); |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 231 | final int rowId = dbInsertAndCheck(mOpenHelper, db, args.table, null, initialValues); |
Sunny Goyal | e72f3d5 | 2015-03-02 14:24:21 -0800 | [diff] [blame] | 232 | if (rowId < 0) return null; |
Tracy Zhou | 7df93d2 | 2020-01-27 13:44:06 -0800 | [diff] [blame] | 233 | onAddOrDeleteOp(db); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 234 | |
| 235 | uri = ContentUris.withAppendedId(uri, rowId); |
Sunny Goyal | 8c48d8b | 2019-01-25 15:10:18 -0800 | [diff] [blame] | 236 | reloadLauncherIfExternal(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 237 | return uri; |
| 238 | } |
| 239 | |
Sunny Goyal | b5b55c8 | 2016-05-10 12:28:59 -0700 | [diff] [blame] | 240 | private boolean initializeExternalAdd(ContentValues values) { |
| 241 | // 1. Ensure that externally added items have a valid item id |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 242 | int id = mOpenHelper.generateNewItemId(); |
Sunny Goyal | b5b55c8 | 2016-05-10 12:28:59 -0700 | [diff] [blame] | 243 | values.put(LauncherSettings.Favorites._ID, id); |
| 244 | |
| 245 | // 2. In the case of an app widget, and if no app widget id is specified, we |
| 246 | // attempt allocate and bind the widget. |
| 247 | Integer itemType = values.getAsInteger(LauncherSettings.Favorites.ITEM_TYPE); |
| 248 | if (itemType != null && |
| 249 | itemType.intValue() == LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET && |
| 250 | !values.containsKey(LauncherSettings.Favorites.APPWIDGET_ID)) { |
| 251 | |
| 252 | final AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(getContext()); |
| 253 | ComponentName cn = ComponentName.unflattenFromString( |
| 254 | values.getAsString(Favorites.APPWIDGET_PROVIDER)); |
| 255 | |
| 256 | if (cn != null) { |
Sihua Ma | aa2b872 | 2022-10-25 15:17:58 -0700 | [diff] [blame] | 257 | LauncherWidgetHolder widgetHolder = mOpenHelper.newLauncherWidgetHolder(); |
Sunny Goyal | b5b55c8 | 2016-05-10 12:28:59 -0700 | [diff] [blame] | 258 | try { |
Sihua Ma | aa2b872 | 2022-10-25 15:17:58 -0700 | [diff] [blame] | 259 | int appWidgetId = widgetHolder.allocateAppWidgetId(); |
Sunny Goyal | b5b55c8 | 2016-05-10 12:28:59 -0700 | [diff] [blame] | 260 | values.put(LauncherSettings.Favorites.APPWIDGET_ID, appWidgetId); |
| 261 | if (!appWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,cn)) { |
Sihua Ma | aa2b872 | 2022-10-25 15:17:58 -0700 | [diff] [blame] | 262 | widgetHolder.deleteAppWidgetId(appWidgetId); |
Sunny Goyal | b5b55c8 | 2016-05-10 12:28:59 -0700 | [diff] [blame] | 263 | return false; |
| 264 | } |
| 265 | } catch (RuntimeException e) { |
| 266 | Log.e(TAG, "Failed to initialize external widget", e); |
| 267 | return false; |
Sihua Ma | aa2b872 | 2022-10-25 15:17:58 -0700 | [diff] [blame] | 268 | } finally { |
| 269 | // Necessary to destroy the holder to free up possible activity context |
| 270 | widgetHolder.destroy(); |
Sunny Goyal | b5b55c8 | 2016-05-10 12:28:59 -0700 | [diff] [blame] | 271 | } |
| 272 | } else { |
| 273 | return false; |
| 274 | } |
| 275 | } |
| 276 | |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 277 | return true; |
Sunny Goyal | b5b55c8 | 2016-05-10 12:28:59 -0700 | [diff] [blame] | 278 | } |
| 279 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 280 | @Override |
| 281 | public int bulkInsert(Uri uri, ContentValues[] values) { |
Sunny Goyal | d3849d1 | 2015-10-29 10:28:32 -0700 | [diff] [blame] | 282 | createDbIfNotExists(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 283 | SqlArguments args = new SqlArguments(uri); |
| 284 | |
| 285 | SQLiteDatabase db = mOpenHelper.getWritableDatabase(); |
Sunny Goyal | dbfc901 | 2017-04-17 16:58:36 -0700 | [diff] [blame] | 286 | try (SQLiteTransaction t = new SQLiteTransaction(db)) { |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 287 | int numValues = values.length; |
| 288 | for (int i = 0; i < numValues; i++) { |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 289 | addModifiedTime(values[i]); |
Michael Jurka | a8c760d | 2011-04-28 14:59:33 -0700 | [diff] [blame] | 290 | if (dbInsertAndCheck(mOpenHelper, db, args.table, null, values[i]) < 0) { |
| 291 | return 0; |
| 292 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 293 | } |
Tracy Zhou | 7df93d2 | 2020-01-27 13:44:06 -0800 | [diff] [blame] | 294 | onAddOrDeleteOp(db); |
Sunny Goyal | dbfc901 | 2017-04-17 16:58:36 -0700 | [diff] [blame] | 295 | t.commit(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 296 | } |
| 297 | |
Sunny Goyal | d106418 | 2015-08-13 12:08:30 -0700 | [diff] [blame] | 298 | reloadLauncherIfExternal(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 299 | return values.length; |
| 300 | } |
| 301 | |
Sunny Goyal | 161a214 | 2018-10-29 14:02:20 -0700 | [diff] [blame] | 302 | @TargetApi(Build.VERSION_CODES.M) |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 303 | @Override |
Yura | 085c853 | 2014-02-11 15:15:29 +0000 | [diff] [blame] | 304 | public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) |
| 305 | throws OperationApplicationException { |
Sunny Goyal | d3849d1 | 2015-10-29 10:28:32 -0700 | [diff] [blame] | 306 | createDbIfNotExists(); |
Sunny Goyal | dbfc901 | 2017-04-17 16:58:36 -0700 | [diff] [blame] | 307 | try (SQLiteTransaction t = new SQLiteTransaction(mOpenHelper.getWritableDatabase())) { |
Sunny Goyal | 8c48d8b | 2019-01-25 15:10:18 -0800 | [diff] [blame] | 308 | boolean isAddOrDelete = false; |
Sunny Goyal | 161a214 | 2018-10-29 14:02:20 -0700 | [diff] [blame] | 309 | |
| 310 | final int numOperations = operations.size(); |
| 311 | final ContentProviderResult[] results = new ContentProviderResult[numOperations]; |
| 312 | for (int i = 0; i < numOperations; i++) { |
| 313 | ContentProviderOperation op = operations.get(i); |
| 314 | results[i] = op.apply(this, results, i); |
| 315 | |
| 316 | isAddOrDelete |= (op.isInsert() || op.isDelete()) && |
| 317 | results[i].count != null && results[i].count > 0; |
| 318 | } |
| 319 | if (isAddOrDelete) { |
Tracy Zhou | 7df93d2 | 2020-01-27 13:44:06 -0800 | [diff] [blame] | 320 | onAddOrDeleteOp(t.getDb()); |
Sunny Goyal | 161a214 | 2018-10-29 14:02:20 -0700 | [diff] [blame] | 321 | } |
| 322 | |
Sunny Goyal | dbfc901 | 2017-04-17 16:58:36 -0700 | [diff] [blame] | 323 | t.commit(); |
Sunny Goyal | d106418 | 2015-08-13 12:08:30 -0700 | [diff] [blame] | 324 | reloadLauncherIfExternal(); |
Sunny Goyal | 161a214 | 2018-10-29 14:02:20 -0700 | [diff] [blame] | 325 | return results; |
Yura | 085c853 | 2014-02-11 15:15:29 +0000 | [diff] [blame] | 326 | } |
| 327 | } |
| 328 | |
| 329 | @Override |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 330 | public int delete(Uri uri, String selection, String[] selectionArgs) { |
Sunny Goyal | d3849d1 | 2015-10-29 10:28:32 -0700 | [diff] [blame] | 331 | createDbIfNotExists(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 332 | SqlArguments args = new SqlArguments(uri, selection, selectionArgs); |
| 333 | |
| 334 | SQLiteDatabase db = mOpenHelper.getWritableDatabase(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 335 | |
Louis Begin | a9c21c6 | 2016-08-15 15:18:41 -0700 | [diff] [blame] | 336 | if (Binder.getCallingPid() != Process.myPid() |
| 337 | && Favorites.TABLE_NAME.equalsIgnoreCase(args.table)) { |
Sunny Goyal | 55fddc8 | 2017-04-06 15:02:52 -0700 | [diff] [blame] | 338 | mOpenHelper.removeGhostWidgets(mOpenHelper.getWritableDatabase()); |
Louis Begin | a9c21c6 | 2016-08-15 15:18:41 -0700 | [diff] [blame] | 339 | } |
| 340 | int count = db.delete(args.table, args.where, args.args); |
| 341 | if (count > 0) { |
Tracy Zhou | 7df93d2 | 2020-01-27 13:44:06 -0800 | [diff] [blame] | 342 | onAddOrDeleteOp(db); |
Louis Begin | a9c21c6 | 2016-08-15 15:18:41 -0700 | [diff] [blame] | 343 | reloadLauncherIfExternal(); |
| 344 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 345 | return count; |
| 346 | } |
| 347 | |
| 348 | @Override |
| 349 | public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { |
Sunny Goyal | d3849d1 | 2015-10-29 10:28:32 -0700 | [diff] [blame] | 350 | createDbIfNotExists(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 351 | SqlArguments args = new SqlArguments(uri, selection, selectionArgs); |
| 352 | |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 353 | addModifiedTime(values); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 354 | SQLiteDatabase db = mOpenHelper.getWritableDatabase(); |
| 355 | int count = db.update(args.table, values, args.where, args.args); |
Sunny Goyal | d106418 | 2015-08-13 12:08:30 -0700 | [diff] [blame] | 356 | reloadLauncherIfExternal(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 357 | return count; |
| 358 | } |
| 359 | |
Sunny Goyal | 7779d62 | 2015-06-11 16:18:39 -0700 | [diff] [blame] | 360 | @Override |
Tony Wickham | 827cef2 | 2016-03-17 15:39:39 -0700 | [diff] [blame] | 361 | public Bundle call(String method, final String arg, final Bundle extras) { |
Sunny Goyal | 7779d62 | 2015-06-11 16:18:39 -0700 | [diff] [blame] | 362 | if (Binder.getCallingUid() != Process.myUid()) { |
| 363 | return null; |
| 364 | } |
Sunny Goyal | d3849d1 | 2015-10-29 10:28:32 -0700 | [diff] [blame] | 365 | createDbIfNotExists(); |
Sunny Goyal | 7779d62 | 2015-06-11 16:18:39 -0700 | [diff] [blame] | 366 | |
| 367 | switch (method) { |
Sunny Goyal | d249748 | 2015-09-22 18:24:19 -0700 | [diff] [blame] | 368 | case LauncherSettings.Settings.METHOD_CLEAR_EMPTY_DB_FLAG: { |
| 369 | clearFlagEmptyDbCreated(); |
| 370 | return null; |
| 371 | } |
| 372 | case LauncherSettings.Settings.METHOD_DELETE_EMPTY_FOLDERS: { |
| 373 | Bundle result = new Bundle(); |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 374 | result.putIntArray(LauncherSettings.Settings.EXTRA_VALUE, deleteEmptyFolders() |
| 375 | .toArray()); |
Sunny Goyal | d249748 | 2015-09-22 18:24:19 -0700 | [diff] [blame] | 376 | return result; |
| 377 | } |
| 378 | case LauncherSettings.Settings.METHOD_NEW_ITEM_ID: { |
| 379 | Bundle result = new Bundle(); |
Tracy Zhou | 7df93d2 | 2020-01-27 13:44:06 -0800 | [diff] [blame] | 380 | result.putInt(LauncherSettings.Settings.EXTRA_VALUE, |
| 381 | mOpenHelper.generateNewItemId()); |
Sunny Goyal | d249748 | 2015-09-22 18:24:19 -0700 | [diff] [blame] | 382 | return result; |
| 383 | } |
| 384 | case LauncherSettings.Settings.METHOD_NEW_SCREEN_ID: { |
| 385 | Bundle result = new Bundle(); |
Tracy Zhou | 7df93d2 | 2020-01-27 13:44:06 -0800 | [diff] [blame] | 386 | result.putInt(LauncherSettings.Settings.EXTRA_VALUE, |
Andras Kloczl | 953eb80 | 2021-10-15 21:16:48 +0100 | [diff] [blame] | 387 | mOpenHelper.getNewScreenId()); |
Sunny Goyal | d249748 | 2015-09-22 18:24:19 -0700 | [diff] [blame] | 388 | return result; |
| 389 | } |
| 390 | case LauncherSettings.Settings.METHOD_CREATE_EMPTY_DB: { |
Sunny Goyal | e05b08f | 2017-02-23 18:30:22 -0800 | [diff] [blame] | 391 | mOpenHelper.createEmptyDB(mOpenHelper.getWritableDatabase()); |
Sunny Goyal | d249748 | 2015-09-22 18:24:19 -0700 | [diff] [blame] | 392 | return null; |
| 393 | } |
Schneider Victor-tulias | fb252e7 | 2022-02-10 11:10:21 -0800 | [diff] [blame] | 394 | case LauncherSettings.Settings.METHOD_SET_USE_TEST_WORKSPACE_LAYOUT_FLAG: { |
Alex Chau | f8b79d4 | 2022-12-15 13:41:49 +0000 | [diff] [blame] | 395 | switch (arg) { |
| 396 | case LauncherSettings.Settings.ARG_DEFAULT_WORKSPACE_LAYOUT_TEST: |
| 397 | mDefaultWorkspaceLayoutOverride = TEST_WORKSPACE_LAYOUT_RES_XML; |
| 398 | break; |
| 399 | case LauncherSettings.Settings.ARG_DEFAULT_WORKSPACE_LAYOUT_TEST2: |
| 400 | mDefaultWorkspaceLayoutOverride = TEST2_WORKSPACE_LAYOUT_RES_XML; |
| 401 | break; |
Sebastian Franco | 239ae0a | 2023-03-03 15:56:52 -0800 | [diff] [blame] | 402 | case LauncherSettings.Settings.ARG_DEFAULT_WORKSPACE_LAYOUT_TAPL: |
| 403 | mDefaultWorkspaceLayoutOverride = TAPL_WORKSPACE_LAYOUT_RES_XML; |
| 404 | break; |
Alex Chau | f8b79d4 | 2022-12-15 13:41:49 +0000 | [diff] [blame] | 405 | default: |
| 406 | mDefaultWorkspaceLayoutOverride = 0; |
| 407 | break; |
| 408 | } |
Schneider Victor-tulias | fb252e7 | 2022-02-10 11:10:21 -0800 | [diff] [blame] | 409 | return null; |
| 410 | } |
| 411 | case LauncherSettings.Settings.METHOD_CLEAR_USE_TEST_WORKSPACE_LAYOUT_FLAG: { |
Alex Chau | f8b79d4 | 2022-12-15 13:41:49 +0000 | [diff] [blame] | 412 | mDefaultWorkspaceLayoutOverride = 0; |
Schneider Victor-tulias | fb252e7 | 2022-02-10 11:10:21 -0800 | [diff] [blame] | 413 | return null; |
| 414 | } |
Sunny Goyal | d249748 | 2015-09-22 18:24:19 -0700 | [diff] [blame] | 415 | case LauncherSettings.Settings.METHOD_LOAD_DEFAULT_FAVORITES: { |
| 416 | loadDefaultFavoritesIfNecessary(); |
| 417 | return null; |
| 418 | } |
Sunny Goyal | 55fddc8 | 2017-04-06 15:02:52 -0700 | [diff] [blame] | 419 | case LauncherSettings.Settings.METHOD_REMOVE_GHOST_WIDGETS: { |
| 420 | mOpenHelper.removeGhostWidgets(mOpenHelper.getWritableDatabase()); |
| 421 | return null; |
| 422 | } |
Sunny Goyal | 161a214 | 2018-10-29 14:02:20 -0700 | [diff] [blame] | 423 | case LauncherSettings.Settings.METHOD_NEW_TRANSACTION: { |
| 424 | Bundle result = new Bundle(); |
| 425 | result.putBinder(LauncherSettings.Settings.EXTRA_VALUE, |
| 426 | new SQLiteTransaction(mOpenHelper.getWritableDatabase())); |
| 427 | return result; |
| 428 | } |
Samuel Fufa | f667a13 | 2020-05-29 14:47:42 -0700 | [diff] [blame] | 429 | case LauncherSettings.Settings.METHOD_REFRESH_HOTSEAT_RESTORE_TABLE: { |
| 430 | mOpenHelper.mHotseatRestoreTableExists = tableExists( |
| 431 | mOpenHelper.getReadableDatabase(), Favorites.HYBRID_HOTSEAT_BACKUP_TABLE); |
| 432 | return null; |
| 433 | } |
Tracy Zhou | 7df93d2 | 2020-01-27 13:44:06 -0800 | [diff] [blame] | 434 | case LauncherSettings.Settings.METHOD_UPDATE_CURRENT_OPEN_HELPER: { |
Sunny Goyal | 278939f | 2021-07-28 14:35:47 -0700 | [diff] [blame] | 435 | Bundle result = new Bundle(); |
| 436 | result.putBoolean(LauncherSettings.Settings.EXTRA_VALUE, |
| 437 | prepForMigration( |
Alex Chau | fe9a07b | 2022-03-08 21:48:34 +0000 | [diff] [blame] | 438 | arg /* dbFile */, |
Sunny Goyal | 278939f | 2021-07-28 14:35:47 -0700 | [diff] [blame] | 439 | Favorites.TMP_TABLE, |
| 440 | () -> mOpenHelper, |
| 441 | () -> DatabaseHelper.createDatabaseHelper( |
| 442 | getContext(), true /* forMigration */))); |
| 443 | return result; |
Tracy Zhou | c000045 | 2020-03-17 18:28:38 -0700 | [diff] [blame] | 444 | } |
| 445 | case LauncherSettings.Settings.METHOD_PREP_FOR_PREVIEW: { |
Sunny Goyal | 278939f | 2021-07-28 14:35:47 -0700 | [diff] [blame] | 446 | Bundle result = new Bundle(); |
| 447 | result.putBoolean(LauncherSettings.Settings.EXTRA_VALUE, |
| 448 | prepForMigration( |
| 449 | arg /* dbFile */, |
| 450 | Favorites.PREVIEW_TABLE_NAME, |
| 451 | () -> DatabaseHelper.createDatabaseHelper( |
| 452 | getContext(), arg, true /* forMigration */), |
| 453 | () -> mOpenHelper)); |
| 454 | return result; |
Pinyao Ting | 96186af | 2020-07-20 11:03:39 -0700 | [diff] [blame] | 455 | } |
Sunny Goyal | 7779d62 | 2015-06-11 16:18:39 -0700 | [diff] [blame] | 456 | } |
| 457 | return null; |
| 458 | } |
| 459 | |
Tracy Zhou | 7df93d2 | 2020-01-27 13:44:06 -0800 | [diff] [blame] | 460 | private void onAddOrDeleteOp(SQLiteDatabase db) { |
Pinyao Ting | 26c4e23 | 2020-04-15 22:25:06 -0700 | [diff] [blame] | 461 | mOpenHelper.onAddOrDeleteOp(db); |
Tracy Zhou | 7df93d2 | 2020-01-27 13:44:06 -0800 | [diff] [blame] | 462 | } |
| 463 | |
Sunny Goyal | b1622cc | 2015-06-10 16:00:42 -0700 | [diff] [blame] | 464 | /** |
| 465 | * Deletes any empty folder from the DB. |
| 466 | * @return Ids of deleted folders. |
| 467 | */ |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 468 | private IntArray deleteEmptyFolders() { |
Sunny Goyal | b1622cc | 2015-06-10 16:00:42 -0700 | [diff] [blame] | 469 | SQLiteDatabase db = mOpenHelper.getWritableDatabase(); |
Sunny Goyal | dbfc901 | 2017-04-17 16:58:36 -0700 | [diff] [blame] | 470 | try (SQLiteTransaction t = new SQLiteTransaction(db)) { |
Sunny Goyal | b1622cc | 2015-06-10 16:00:42 -0700 | [diff] [blame] | 471 | // Select folders whose id do not match any container value. |
| 472 | String selection = LauncherSettings.Favorites.ITEM_TYPE + " = " |
| 473 | + LauncherSettings.Favorites.ITEM_TYPE_FOLDER + " AND " |
| 474 | + LauncherSettings.Favorites._ID + " NOT IN (SELECT " + |
| 475 | LauncherSettings.Favorites.CONTAINER + " FROM " |
Sunny Goyal | b5b55c8 | 2016-05-10 12:28:59 -0700 | [diff] [blame] | 476 | + Favorites.TABLE_NAME + ")"; |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 477 | |
Alex Chau | ac03843 | 2021-11-04 16:49:59 +0000 | [diff] [blame] | 478 | IntArray folderIds = LauncherDbUtils.queryIntArray(false, db, Favorites.TABLE_NAME, |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 479 | Favorites._ID, selection, null, null); |
Sunny Goyal | d249748 | 2015-09-22 18:24:19 -0700 | [diff] [blame] | 480 | if (!folderIds.isEmpty()) { |
Sunny Goyal | b5b55c8 | 2016-05-10 12:28:59 -0700 | [diff] [blame] | 481 | db.delete(Favorites.TABLE_NAME, Utilities.createDbSelectionQuery( |
Sunny Goyal | b1622cc | 2015-06-10 16:00:42 -0700 | [diff] [blame] | 482 | LauncherSettings.Favorites._ID, folderIds), null); |
| 483 | } |
Sunny Goyal | dbfc901 | 2017-04-17 16:58:36 -0700 | [diff] [blame] | 484 | t.commit(); |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 485 | return folderIds; |
Sunny Goyal | b1622cc | 2015-06-10 16:00:42 -0700 | [diff] [blame] | 486 | } catch (SQLException ex) { |
| 487 | Log.e(TAG, ex.getMessage(), ex); |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 488 | return new IntArray(); |
Sunny Goyal | b1622cc | 2015-06-10 16:00:42 -0700 | [diff] [blame] | 489 | } |
Sunny Goyal | b1622cc | 2015-06-10 16:00:42 -0700 | [diff] [blame] | 490 | } |
| 491 | |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 492 | @Thunk static void addModifiedTime(ContentValues values) { |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 493 | values.put(LauncherSettings.Favorites.MODIFIED, System.currentTimeMillis()); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 494 | } |
| 495 | |
Sunny Goyal | d249748 | 2015-09-22 18:24:19 -0700 | [diff] [blame] | 496 | private void clearFlagEmptyDbCreated() { |
Stefan Andonian | 146701c | 2022-11-10 23:07:40 +0000 | [diff] [blame] | 497 | LauncherPrefs.getPrefs(getContext()).edit() |
Pinyao Ting | 96186af | 2020-07-20 11:03:39 -0700 | [diff] [blame] | 498 | .remove(mOpenHelper.getKey(EMPTY_DATABASE_CREATED)).commit(); |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 499 | } |
| 500 | |
Sunny Goyal | 42de82f | 2014-09-26 22:09:29 -0700 | [diff] [blame] | 501 | /** |
Sunny Goyal | 0fe505b | 2014-08-06 09:55:36 -0700 | [diff] [blame] | 502 | * Loads the default workspace based on the following priority scheme: |
Sunny Goyal | b2d46ce | 2015-03-26 11:32:11 -0700 | [diff] [blame] | 503 | * 1) From the app restrictions |
| 504 | * 2) From a package provided by play store |
| 505 | * 3) From a partner configuration APK, already in the system image |
| 506 | * 4) The default configuration for the particular device |
Brian Muramatsu | 5524b49 | 2012-10-02 16:55:54 -0700 | [diff] [blame] | 507 | */ |
Sunny Goyal | d249748 | 2015-09-22 18:24:19 -0700 | [diff] [blame] | 508 | synchronized private void loadDefaultFavoritesIfNecessary() { |
Stefan Andonian | 146701c | 2022-11-10 23:07:40 +0000 | [diff] [blame] | 509 | SharedPreferences sp = LauncherPrefs.getPrefs(getContext()); |
Adam Cohen | e25af79 | 2013-06-06 23:08:25 -0700 | [diff] [blame] | 510 | |
Pinyao Ting | 96186af | 2020-07-20 11:03:39 -0700 | [diff] [blame] | 511 | if (sp.getBoolean(mOpenHelper.getKey(EMPTY_DATABASE_CREATED), false)) { |
Chris Wren | 5dee7af | 2013-12-20 17:22:11 -0500 | [diff] [blame] | 512 | Log.d(TAG, "loading default workspace"); |
Michael Jurka | 45355c4 | 2012-10-08 13:21:35 +0200 | [diff] [blame] | 513 | |
Sihua Ma | aa2b872 | 2022-10-25 15:17:58 -0700 | [diff] [blame] | 514 | LauncherWidgetHolder widgetHolder = mOpenHelper.newLauncherWidgetHolder(); |
Sihua Ma | cdb3c0a | 2023-02-13 15:12:32 -0800 | [diff] [blame] | 515 | try { |
| 516 | AutoInstallsLayout loader = createWorkspaceLoaderFromAppRestriction(widgetHolder); |
| 517 | if (loader == null) { |
| 518 | loader = AutoInstallsLayout.get(getContext(), widgetHolder, mOpenHelper); |
| 519 | } |
| 520 | if (loader == null) { |
| 521 | final Partner partner = Partner.get(getContext().getPackageManager()); |
| 522 | if (partner != null) { |
| 523 | int workspaceResId = partner.getXmlResId(RES_PARTNER_DEFAULT_LAYOUT); |
| 524 | if (workspaceResId != 0) { |
| 525 | loader = new DefaultLayoutParser(getContext(), widgetHolder, |
| 526 | mOpenHelper, partner.getResources(), workspaceResId); |
| 527 | } |
Sunny Goyal | 0fe505b | 2014-08-06 09:55:36 -0700 | [diff] [blame] | 528 | } |
Adam Cohen | 9b8f51f | 2014-05-30 15:34:09 -0700 | [diff] [blame] | 529 | } |
Sunny Goyal | 0fe505b | 2014-08-06 09:55:36 -0700 | [diff] [blame] | 530 | |
Sihua Ma | cdb3c0a | 2023-02-13 15:12:32 -0800 | [diff] [blame] | 531 | final boolean usingExternallyProvidedLayout = loader != null; |
| 532 | if (loader == null) { |
| 533 | loader = getDefaultLayoutParser(widgetHolder); |
| 534 | } |
Sunny Goyal | c6c8fef | 2015-03-04 09:51:18 -0800 | [diff] [blame] | 535 | |
Sihua Ma | cdb3c0a | 2023-02-13 15:12:32 -0800 | [diff] [blame] | 536 | // There might be some partially restored DB items, due to buggy restore logic in |
| 537 | // previous versions of launcher. |
Sunny Goyal | e05b08f | 2017-02-23 18:30:22 -0800 | [diff] [blame] | 538 | mOpenHelper.createEmptyDB(mOpenHelper.getWritableDatabase()); |
Sihua Ma | cdb3c0a | 2023-02-13 15:12:32 -0800 | [diff] [blame] | 539 | // Populate favorites table with initial favorites |
| 540 | if ((mOpenHelper.loadFavorites(mOpenHelper.getWritableDatabase(), loader) <= 0) |
| 541 | && usingExternallyProvidedLayout) { |
| 542 | // Unable to load external layout. Cleanup and load the internal layout. |
| 543 | mOpenHelper.createEmptyDB(mOpenHelper.getWritableDatabase()); |
| 544 | mOpenHelper.loadFavorites(mOpenHelper.getWritableDatabase(), |
| 545 | getDefaultLayoutParser(widgetHolder)); |
| 546 | } |
| 547 | clearFlagEmptyDbCreated(); |
| 548 | } finally { |
| 549 | widgetHolder.destroy(); |
Sunny Goyal | 9d21968 | 2014-10-23 14:21:02 -0700 | [diff] [blame] | 550 | } |
Michael Jurka | b85f8a4 | 2012-04-25 15:48:32 -0700 | [diff] [blame] | 551 | } |
| 552 | } |
| 553 | |
Sunny Goyal | b2d46ce | 2015-03-26 11:32:11 -0700 | [diff] [blame] | 554 | /** |
| 555 | * Creates workspace loader from an XML resource listed in the app restrictions. |
| 556 | * |
| 557 | * @return the loader if the restrictions are set and the resource exists; null otherwise. |
| 558 | */ |
Sihua Ma | aa2b872 | 2022-10-25 15:17:58 -0700 | [diff] [blame] | 559 | private AutoInstallsLayout createWorkspaceLoaderFromAppRestriction( |
| 560 | LauncherWidgetHolder widgetHolder) { |
Sunny Goyal | b2d46ce | 2015-03-26 11:32:11 -0700 | [diff] [blame] | 561 | Context ctx = getContext(); |
Pinyao Ting | 96186af | 2020-07-20 11:03:39 -0700 | [diff] [blame] | 562 | final String authority; |
| 563 | if (!TextUtils.isEmpty(mProviderAuthority)) { |
| 564 | authority = mProviderAuthority; |
| 565 | } else { |
| 566 | authority = Settings.Secure.getString(ctx.getContentResolver(), |
| 567 | "launcher3.layout.provider"); |
| 568 | } |
Sunny Goyal | c0f03d9 | 2019-03-22 14:13:36 -0700 | [diff] [blame] | 569 | if (TextUtils.isEmpty(authority)) { |
Sunny Goyal | 35ca873 | 2015-04-06 10:45:31 -0700 | [diff] [blame] | 570 | return null; |
| 571 | } |
Sunny Goyal | b2d46ce | 2015-03-26 11:32:11 -0700 | [diff] [blame] | 572 | |
Sunny Goyal | c0f03d9 | 2019-03-22 14:13:36 -0700 | [diff] [blame] | 573 | ProviderInfo pi = ctx.getPackageManager().resolveContentProvider(authority, 0); |
| 574 | if (pi == null) { |
| 575 | Log.e(TAG, "No provider found for authority " + authority); |
| 576 | return null; |
Sunny Goyal | b2d46ce | 2015-03-26 11:32:11 -0700 | [diff] [blame] | 577 | } |
Sunny Goyal | 4b5b0eb | 2019-12-02 17:00:35 -0800 | [diff] [blame] | 578 | Uri uri = getLayoutUri(authority, ctx); |
Sunny Goyal | c0f03d9 | 2019-03-22 14:13:36 -0700 | [diff] [blame] | 579 | try (InputStream in = ctx.getContentResolver().openInputStream(uri)) { |
| 580 | // Read the full xml so that we fail early in case of any IO error. |
| 581 | String layout = new String(IOUtils.toByteArray(in)); |
| 582 | XmlPullParser parser = Xml.newPullParser(); |
| 583 | parser.setInput(new StringReader(layout)); |
| 584 | |
| 585 | Log.d(TAG, "Loading layout from " + authority); |
Sihua Ma | aa2b872 | 2022-10-25 15:17:58 -0700 | [diff] [blame] | 586 | return new AutoInstallsLayout(ctx, widgetHolder, mOpenHelper, |
Sunny Goyal | c0f03d9 | 2019-03-22 14:13:36 -0700 | [diff] [blame] | 587 | ctx.getPackageManager().getResourcesForApplication(pi.applicationInfo), |
| 588 | () -> parser, AutoInstallsLayout.TAG_WORKSPACE); |
| 589 | } catch (Exception e) { |
| 590 | Log.e(TAG, "Error getting layout stream from: " + authority , e); |
| 591 | return null; |
| 592 | } |
Sunny Goyal | b2d46ce | 2015-03-26 11:32:11 -0700 | [diff] [blame] | 593 | } |
| 594 | |
Sunny Goyal | 4b5b0eb | 2019-12-02 17:00:35 -0800 | [diff] [blame] | 595 | public static Uri getLayoutUri(String authority, Context ctx) { |
| 596 | InvariantDeviceProfile grid = LauncherAppState.getIDP(ctx); |
| 597 | return new Uri.Builder().scheme("content").authority(authority).path("launcher_layout") |
| 598 | .appendQueryParameter("version", "1") |
| 599 | .appendQueryParameter("gridWidth", Integer.toString(grid.numColumns)) |
| 600 | .appendQueryParameter("gridHeight", Integer.toString(grid.numRows)) |
Tony Wickham | b87f3cd | 2021-04-07 15:02:37 -0700 | [diff] [blame] | 601 | .appendQueryParameter("hotseatSize", Integer.toString(grid.numDatabaseHotseatIcons)) |
Sunny Goyal | 4b5b0eb | 2019-12-02 17:00:35 -0800 | [diff] [blame] | 602 | .build(); |
| 603 | } |
| 604 | |
Sihua Ma | aa2b872 | 2022-10-25 15:17:58 -0700 | [diff] [blame] | 605 | private DefaultLayoutParser getDefaultLayoutParser(LauncherWidgetHolder widgetHolder) { |
Adam Cohen | 2782449 | 2017-09-22 17:10:55 -0700 | [diff] [blame] | 606 | InvariantDeviceProfile idp = LauncherAppState.getIDP(getContext()); |
Alex Chau | f8b79d4 | 2022-12-15 13:41:49 +0000 | [diff] [blame] | 607 | int defaultLayout = mDefaultWorkspaceLayoutOverride > 0 |
| 608 | ? mDefaultWorkspaceLayoutOverride : idp.defaultLayoutId; |
Adam Cohen | 2782449 | 2017-09-22 17:10:55 -0700 | [diff] [blame] | 609 | |
Sunny Goyal | 337c81f | 2019-12-10 12:19:13 -0800 | [diff] [blame] | 610 | if (getContext().getSystemService(UserManager.class).isDemoUser() |
| 611 | && idp.demoModeLayoutId != 0) { |
Adam Cohen | 2782449 | 2017-09-22 17:10:55 -0700 | [diff] [blame] | 612 | defaultLayout = idp.demoModeLayoutId; |
| 613 | } |
| 614 | |
Sihua Ma | aa2b872 | 2022-10-25 15:17:58 -0700 | [diff] [blame] | 615 | return new DefaultLayoutParser(getContext(), widgetHolder, |
Sunny Goyal | 9d21968 | 2014-10-23 14:21:02 -0700 | [diff] [blame] | 616 | mOpenHelper, getContext().getResources(), defaultLayout); |
| 617 | } |
| 618 | |
Sunny Goyal | d3849d1 | 2015-10-29 10:28:32 -0700 | [diff] [blame] | 619 | /** |
Sunny Goyal | f076eae | 2016-01-11 12:25:10 -0800 | [diff] [blame] | 620 | * The class is subclassed in tests to create an in-memory db. |
| 621 | */ |
Tracy Zhou | 7df93d2 | 2020-01-27 13:44:06 -0800 | [diff] [blame] | 622 | public static class DatabaseHelper extends NoLocaleSQLiteHelper implements |
| 623 | LayoutParserCallback { |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 624 | private final Context mContext; |
Tracy Zhou | ed5f308 | 2020-04-20 01:13:26 -0700 | [diff] [blame] | 625 | private final boolean mForMigration; |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 626 | private int mMaxItemId = -1; |
Samuel Fufa | f667a13 | 2020-05-29 14:47:42 -0700 | [diff] [blame] | 627 | private boolean mHotseatRestoreTableExists; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 628 | |
Tracy Zhou | ed5f308 | 2020-04-20 01:13:26 -0700 | [diff] [blame] | 629 | static DatabaseHelper createDatabaseHelper(Context context, boolean forMigration) { |
| 630 | return createDatabaseHelper(context, null, forMigration); |
Tracy Zhou | c000045 | 2020-03-17 18:28:38 -0700 | [diff] [blame] | 631 | } |
| 632 | |
Tracy Zhou | ed5f308 | 2020-04-20 01:13:26 -0700 | [diff] [blame] | 633 | static DatabaseHelper createDatabaseHelper(Context context, String dbName, |
| 634 | boolean forMigration) { |
Tracy Zhou | c000045 | 2020-03-17 18:28:38 -0700 | [diff] [blame] | 635 | if (dbName == null) { |
Sunny Goyal | 278939f | 2021-07-28 14:35:47 -0700 | [diff] [blame] | 636 | dbName = InvariantDeviceProfile.INSTANCE.get(context).dbFile; |
Tracy Zhou | c000045 | 2020-03-17 18:28:38 -0700 | [diff] [blame] | 637 | } |
Tracy Zhou | ed5f308 | 2020-04-20 01:13:26 -0700 | [diff] [blame] | 638 | DatabaseHelper databaseHelper = new DatabaseHelper(context, dbName, forMigration); |
Sunny Goyal | 6fb929e | 2015-09-23 11:40:53 -0700 | [diff] [blame] | 639 | // Table creation sometimes fails silently, which leads to a crash loop. |
| 640 | // This way, we will try to create a table every time after crash, so the device |
| 641 | // would eventually be able to recover. |
Tracy Zhou | c000045 | 2020-03-17 18:28:38 -0700 | [diff] [blame] | 642 | if (!tableExists(databaseHelper.getReadableDatabase(), Favorites.TABLE_NAME)) { |
Sunny Goyal | 6fb929e | 2015-09-23 11:40:53 -0700 | [diff] [blame] | 643 | Log.e(TAG, "Tables are missing after onCreate has been called. Trying to recreate"); |
| 644 | // This operation is a no-op if the table already exists. |
Tracy Zhou | c000045 | 2020-03-17 18:28:38 -0700 | [diff] [blame] | 645 | databaseHelper.addFavoritesTable(databaseHelper.getWritableDatabase(), true); |
Sunny Goyal | 6fb929e | 2015-09-23 11:40:53 -0700 | [diff] [blame] | 646 | } |
Samuel Fufa | f667a13 | 2020-05-29 14:47:42 -0700 | [diff] [blame] | 647 | databaseHelper.mHotseatRestoreTableExists = tableExists( |
| 648 | databaseHelper.getReadableDatabase(), Favorites.HYBRID_HOTSEAT_BACKUP_TABLE); |
Sunny Goyal | 6fb929e | 2015-09-23 11:40:53 -0700 | [diff] [blame] | 649 | |
Tracy Zhou | c000045 | 2020-03-17 18:28:38 -0700 | [diff] [blame] | 650 | databaseHelper.initIds(); |
| 651 | return databaseHelper; |
Sunny Goyal | 7eab3cc | 2016-03-18 17:42:55 -0700 | [diff] [blame] | 652 | } |
| 653 | |
| 654 | /** |
Sunny Goyal | c190dbf | 2016-05-05 14:37:05 -0700 | [diff] [blame] | 655 | * Constructor used in tests and for restore. |
Sunny Goyal | 7eab3cc | 2016-03-18 17:42:55 -0700 | [diff] [blame] | 656 | */ |
Tracy Zhou | ed5f308 | 2020-04-20 01:13:26 -0700 | [diff] [blame] | 657 | public DatabaseHelper(Context context, String dbName, boolean forMigration) { |
Tracy Zhou | 7df93d2 | 2020-01-27 13:44:06 -0800 | [diff] [blame] | 658 | super(context, dbName, SCHEMA_VERSION); |
Sunny Goyal | 7eab3cc | 2016-03-18 17:42:55 -0700 | [diff] [blame] | 659 | mContext = context; |
Tracy Zhou | ed5f308 | 2020-04-20 01:13:26 -0700 | [diff] [blame] | 660 | mForMigration = forMigration; |
Sunny Goyal | 7eab3cc | 2016-03-18 17:42:55 -0700 | [diff] [blame] | 661 | } |
| 662 | |
| 663 | protected void initIds() { |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 664 | // In the case where neither onCreate nor onUpgrade gets called, we read the maxId from |
| 665 | // the DB here |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 666 | if (mMaxItemId == -1) { |
| 667 | mMaxItemId = initializeMaxItemId(getWritableDatabase()); |
| 668 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 669 | } |
| 670 | |
| 671 | @Override |
| 672 | public void onCreate(SQLiteDatabase db) { |
Joe Onorato | a30ce8e | 2009-11-11 08:16:49 -0800 | [diff] [blame] | 673 | if (LOGD) Log.d(TAG, "creating new launcher database"); |
Michael Jurka | a8c760d | 2011-04-28 14:59:33 -0700 | [diff] [blame] | 674 | |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 675 | mMaxItemId = 1; |
Michael Jurka | a8c760d | 2011-04-28 14:59:33 -0700 | [diff] [blame] | 676 | |
Sunny Goyal | 6fb929e | 2015-09-23 11:40:53 -0700 | [diff] [blame] | 677 | addFavoritesTable(db, false); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 678 | |
Sunny Goyal | e87e6ab | 2014-11-21 22:42:53 -0800 | [diff] [blame] | 679 | // Fresh and clean launcher DB. |
| 680 | mMaxItemId = initializeMaxItemId(db); |
Tracy Zhou | ed5f308 | 2020-04-20 01:13:26 -0700 | [diff] [blame] | 681 | if (!mForMigration) { |
| 682 | onEmptyDbCreated(); |
| 683 | } |
Sunny Goyal | f076eae | 2016-01-11 12:25:10 -0800 | [diff] [blame] | 684 | } |
| 685 | |
Sunny Goyal | 161a214 | 2018-10-29 14:02:20 -0700 | [diff] [blame] | 686 | protected void onAddOrDeleteOp(SQLiteDatabase db) { |
Samuel Fufa | f667a13 | 2020-05-29 14:47:42 -0700 | [diff] [blame] | 687 | if (mHotseatRestoreTableExists) { |
| 688 | dropTable(db, Favorites.HYBRID_HOTSEAT_BACKUP_TABLE); |
| 689 | mHotseatRestoreTableExists = false; |
| 690 | } |
Sunny Goyal | 161a214 | 2018-10-29 14:02:20 -0700 | [diff] [blame] | 691 | } |
| 692 | |
Sunny Goyal | f076eae | 2016-01-11 12:25:10 -0800 | [diff] [blame] | 693 | /** |
Pinyao Ting | 96186af | 2020-07-20 11:03:39 -0700 | [diff] [blame] | 694 | * Re-composite given key in respect to database. If the current db is |
| 695 | * {@link LauncherFiles#LAUNCHER_DB}, return the key as-is. Otherwise append the db name to |
| 696 | * given key. e.g. consider key="EMPTY_DATABASE_CREATED", dbName="minimal.db", the returning |
| 697 | * string will be "EMPTY_DATABASE_CREATED@minimal.db". |
| 698 | */ |
| 699 | String getKey(final String key) { |
| 700 | if (TextUtils.equals(getDatabaseName(), LauncherFiles.LAUNCHER_DB)) { |
| 701 | return key; |
| 702 | } |
| 703 | return key + "@" + getDatabaseName(); |
| 704 | } |
| 705 | |
| 706 | /** |
Sunny Goyal | f076eae | 2016-01-11 12:25:10 -0800 | [diff] [blame] | 707 | * Overriden in tests. |
| 708 | */ |
| 709 | protected void onEmptyDbCreated() { |
| 710 | // Set the flag for empty DB |
Stefan Andonian | 146701c | 2022-11-10 23:07:40 +0000 | [diff] [blame] | 711 | LauncherPrefs.getPrefs(mContext).edit().putBoolean(getKey(EMPTY_DATABASE_CREATED), true) |
Pinyao Ting | 96186af | 2020-07-20 11:03:39 -0700 | [diff] [blame] | 712 | .commit(); |
Sunny Goyal | f076eae | 2016-01-11 12:25:10 -0800 | [diff] [blame] | 713 | } |
| 714 | |
Jon Miranda | 2bc6b93 | 2019-03-07 15:24:46 -0800 | [diff] [blame] | 715 | public long getSerialNumberForUser(UserHandle user) { |
Sunny Goyal | 337c81f | 2019-12-10 12:19:13 -0800 | [diff] [blame] | 716 | return UserCache.INSTANCE.get(mContext).getSerialNumberForUser(user); |
Jon Miranda | 2bc6b93 | 2019-03-07 15:24:46 -0800 | [diff] [blame] | 717 | } |
| 718 | |
Sunny Goyal | e8f7d5a | 2016-05-24 11:30:14 -0700 | [diff] [blame] | 719 | public long getDefaultUserSerial() { |
Jon Miranda | 2bc6b93 | 2019-03-07 15:24:46 -0800 | [diff] [blame] | 720 | return getSerialNumberForUser(Process.myUserHandle()); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 721 | } |
| 722 | |
Sunny Goyal | 6fb929e | 2015-09-23 11:40:53 -0700 | [diff] [blame] | 723 | private void addFavoritesTable(SQLiteDatabase db, boolean optional) { |
Sunny Goyal | c190dbf | 2016-05-05 14:37:05 -0700 | [diff] [blame] | 724 | Favorites.addTableToDb(db, getDefaultUserSerial(), optional); |
Sunny Goyal | 6fb929e | 2015-09-23 11:40:53 -0700 | [diff] [blame] | 725 | } |
| 726 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 727 | @Override |
Sunny Goyal | 3c7d55b | 2017-04-13 12:01:47 -0700 | [diff] [blame] | 728 | public void onOpen(SQLiteDatabase db) { |
| 729 | super.onOpen(db); |
Sunny Goyal | 05f3088 | 2017-05-03 12:42:18 -0700 | [diff] [blame] | 730 | |
| 731 | File schemaFile = mContext.getFileStreamPath(DOWNGRADE_SCHEMA_FILE); |
| 732 | if (!schemaFile.exists()) { |
| 733 | handleOneTimeDataUpgrade(db); |
Sunny Goyal | 3c7d55b | 2017-04-13 12:01:47 -0700 | [diff] [blame] | 734 | } |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 735 | DbDowngradeHelper.updateSchemaFile(schemaFile, SCHEMA_VERSION, mContext); |
Sunny Goyal | 3c7d55b | 2017-04-13 12:01:47 -0700 | [diff] [blame] | 736 | } |
| 737 | |
| 738 | /** |
Sunny Goyal | 05f3088 | 2017-05-03 12:42:18 -0700 | [diff] [blame] | 739 | * One-time data updated before support of onDowngrade was added. This update is backwards |
| 740 | * compatible and can safely be run multiple times. |
| 741 | * Note: No new logic should be added here after release, as the new logic might not get |
| 742 | * executed on an existing device. |
| 743 | * TODO: Move this to db upgrade path, once the downgrade path is released. |
Sunny Goyal | 3c7d55b | 2017-04-13 12:01:47 -0700 | [diff] [blame] | 744 | */ |
Sunny Goyal | 05f3088 | 2017-05-03 12:42:18 -0700 | [diff] [blame] | 745 | protected void handleOneTimeDataUpgrade(SQLiteDatabase db) { |
| 746 | // Remove "profile extra" |
Sunny Goyal | 337c81f | 2019-12-10 12:19:13 -0800 | [diff] [blame] | 747 | UserCache um = UserCache.INSTANCE.get(mContext); |
Sunny Goyal | 05f3088 | 2017-05-03 12:42:18 -0700 | [diff] [blame] | 748 | for (UserHandle user : um.getUserProfiles()) { |
| 749 | long serial = um.getSerialNumberForUser(user); |
| 750 | String sql = "update favorites set intent = replace(intent, " |
| 751 | + "';l.profile=" + serial + ";', ';') where itemType = 0;"; |
| 752 | db.execSQL(sql); |
Sunny Goyal | 3c7d55b | 2017-04-13 12:01:47 -0700 | [diff] [blame] | 753 | } |
| 754 | } |
| 755 | |
| 756 | @Override |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 757 | public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { |
Winson Chung | c763c4e | 2013-07-19 13:49:06 -0700 | [diff] [blame] | 758 | if (LOGD) Log.d(TAG, "onUpgrade triggered: " + oldVersion); |
Sunny Goyal | a2cc624 | 2015-01-14 14:23:02 -0800 | [diff] [blame] | 759 | switch (oldVersion) { |
| 760 | // The version cannot be lower that 12, as Launcher3 never supported a lower |
Sunny Goyal | e87e6ab | 2014-11-21 22:42:53 -0800 | [diff] [blame] | 761 | // version of the DB. |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 762 | case 12: |
| 763 | // No-op |
Sunny Goyal | a2cc624 | 2015-01-14 14:23:02 -0800 | [diff] [blame] | 764 | case 13: { |
Sunny Goyal | dbfc901 | 2017-04-17 16:58:36 -0700 | [diff] [blame] | 765 | try (SQLiteTransaction t = new SQLiteTransaction(db)) { |
Sunny Goyal | a2cc624 | 2015-01-14 14:23:02 -0800 | [diff] [blame] | 766 | // Insert new column for holding widget provider name |
| 767 | db.execSQL("ALTER TABLE favorites " + |
| 768 | "ADD COLUMN appWidgetProvider TEXT;"); |
Sunny Goyal | dbfc901 | 2017-04-17 16:58:36 -0700 | [diff] [blame] | 769 | t.commit(); |
Sunny Goyal | a2cc624 | 2015-01-14 14:23:02 -0800 | [diff] [blame] | 770 | } catch (SQLException ex) { |
| 771 | Log.e(TAG, ex.getMessage(), ex); |
| 772 | // Old version remains, which means we wipe old data |
| 773 | break; |
Sunny Goyal | a2cc624 | 2015-01-14 14:23:02 -0800 | [diff] [blame] | 774 | } |
| 775 | } |
| 776 | case 14: { |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 777 | if (!addIntegerColumn(db, Favorites.MODIFIED, 0)) { |
Sunny Goyal | a2cc624 | 2015-01-14 14:23:02 -0800 | [diff] [blame] | 778 | // Old version remains, which means we wipe old data |
| 779 | break; |
Sunny Goyal | a2cc624 | 2015-01-14 14:23:02 -0800 | [diff] [blame] | 780 | } |
| 781 | } |
| 782 | case 15: { |
Sunny Goyal | 5d85c44 | 2015-03-10 13:14:47 -0700 | [diff] [blame] | 783 | if (!addIntegerColumn(db, Favorites.RESTORED, 0)) { |
Sunny Goyal | a2cc624 | 2015-01-14 14:23:02 -0800 | [diff] [blame] | 784 | // Old version remains, which means we wipe old data |
| 785 | break; |
Sunny Goyal | a2cc624 | 2015-01-14 14:23:02 -0800 | [diff] [blame] | 786 | } |
| 787 | } |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 788 | case 16: |
Sunny Goyal | 10629b0 | 2016-09-01 12:50:11 -0700 | [diff] [blame] | 789 | // No-op |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 790 | case 17: |
Sunny Goyal | a2cc624 | 2015-01-14 14:23:02 -0800 | [diff] [blame] | 791 | // No-op |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 792 | case 18: |
| 793 | // No-op |
Sunny Goyal | a2cc624 | 2015-01-14 14:23:02 -0800 | [diff] [blame] | 794 | case 19: { |
| 795 | // Add userId column |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 796 | if (!addIntegerColumn(db, Favorites.PROFILE_ID, getDefaultUserSerial())) { |
Sunny Goyal | a2cc624 | 2015-01-14 14:23:02 -0800 | [diff] [blame] | 797 | // Old version remains, which means we wipe old data |
| 798 | break; |
| 799 | } |
| 800 | } |
| 801 | case 20: |
| 802 | if (!updateFolderItemsRank(db, true)) { |
| 803 | break; |
| 804 | } |
Sunny Goyal | d2f3819 | 2015-02-25 10:46:34 -0800 | [diff] [blame] | 805 | case 21: |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 806 | // No-op |
Sunny Goyal | d2f3819 | 2015-02-25 10:46:34 -0800 | [diff] [blame] | 807 | case 22: { |
Sunny Goyal | 5d85c44 | 2015-03-10 13:14:47 -0700 | [diff] [blame] | 808 | if (!addIntegerColumn(db, Favorites.OPTIONS, 0)) { |
| 809 | // Old version remains, which means we wipe old data |
| 810 | break; |
| 811 | } |
| 812 | } |
Sunny Goyal | 0b03778 | 2015-04-02 10:27:03 -0700 | [diff] [blame] | 813 | case 23: |
Sunny Goyal | 5c97f51 | 2015-05-19 16:03:28 -0700 | [diff] [blame] | 814 | // No-op |
Sunny Goyal | e2fba6c | 2015-05-12 10:39:59 -0700 | [diff] [blame] | 815 | case 24: |
Tony Mak | 1b6826c | 2018-02-27 15:06:12 +0000 | [diff] [blame] | 816 | // No-op |
Sunny Goyal | 5c97f51 | 2015-05-19 16:03:28 -0700 | [diff] [blame] | 817 | case 25: |
| 818 | convertShortcutsToLauncherActivities(db); |
Sunny Goyal | a9e2f5a | 2016-06-10 12:22:04 -0700 | [diff] [blame] | 819 | case 26: |
Sunny Goyal | 278939f | 2021-07-28 14:35:47 -0700 | [diff] [blame] | 820 | // QSB was moved to the grid. Ignore overlapping items |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 821 | case 27: { |
| 822 | // Update the favorites table so that the screen ids are ordered based on |
| 823 | // workspace page rank. |
Alex Chau | ac03843 | 2021-11-04 16:49:59 +0000 | [diff] [blame] | 824 | IntArray finalScreens = LauncherDbUtils.queryIntArray(false, db, |
| 825 | "workspaceScreens", BaseColumns._ID, null, null, "screenRank"); |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 826 | int[] original = finalScreens.toArray(); |
| 827 | Arrays.sort(original); |
| 828 | String updatemap = ""; |
| 829 | for (int i = 0; i < original.length; i++) { |
| 830 | if (finalScreens.get(i) != original[i]) { |
| 831 | updatemap += String.format(Locale.ENGLISH, " WHEN %1$s=%2$d THEN %3$d", |
| 832 | Favorites.SCREEN, finalScreens.get(i), original[i]); |
| 833 | } |
| 834 | } |
| 835 | if (!TextUtils.isEmpty(updatemap)) { |
| 836 | String query = String.format(Locale.ENGLISH, |
| 837 | "UPDATE %1$s SET %2$s=CASE %3$s ELSE %2$s END WHERE %4$s = %5$d", |
| 838 | Favorites.TABLE_NAME, Favorites.SCREEN, updatemap, |
| 839 | Favorites.CONTAINER, Favorites.CONTAINER_DESKTOP); |
| 840 | db.execSQL(query); |
| 841 | } |
Sunny Goyal | 161a214 | 2018-10-29 14:02:20 -0700 | [diff] [blame] | 842 | dropTable(db, "workspaceScreens"); |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 843 | } |
Yogisha Dixit | 658c5da | 2021-05-24 23:23:15 +0100 | [diff] [blame] | 844 | case 28: { |
| 845 | boolean columnAdded = addIntegerColumn( |
| 846 | db, Favorites.APPWIDGET_SOURCE, Favorites.CONTAINER_UNKNOWN); |
| 847 | if (!columnAdded) { |
| 848 | // Old version remains, which means we wipe old data |
| 849 | break; |
| 850 | } |
| 851 | } |
| 852 | case 29: { |
Andras Kloczl | 929e3a2 | 2021-09-06 03:30:30 +0100 | [diff] [blame] | 853 | // Remove widget panel related leftover workspace items |
| 854 | db.delete(Favorites.TABLE_NAME, Utilities.createDbSelectionQuery( |
| 855 | Favorites.SCREEN, IntArray.wrap(-777, -778)), null); |
| 856 | } |
| 857 | case 30: { |
Alex Chau | e09067c | 2022-01-10 16:13:13 +0000 | [diff] [blame] | 858 | if (FeatureFlags.QSB_ON_FIRST_SCREEN) { |
| 859 | // Clean up first row in screen 0 as it might contain junk data. |
| 860 | Log.d(TAG, "Cleaning up first row"); |
| 861 | db.delete(Favorites.TABLE_NAME, |
| 862 | String.format(Locale.ENGLISH, |
| 863 | "%1$s = %2$d AND %3$s = %4$d AND %5$s = %6$d", |
| 864 | Favorites.SCREEN, 0, |
| 865 | Favorites.CONTAINER, Favorites.CONTAINER_DESKTOP, |
| 866 | Favorites.CELLY, 0), null); |
| 867 | } |
| 868 | return; |
| 869 | } |
| 870 | case 31: { |
Sunny Goyal | a2cc624 | 2015-01-14 14:23:02 -0800 | [diff] [blame] | 871 | // DB Upgraded successfully |
| 872 | return; |
Yogisha Dixit | 658c5da | 2021-05-24 23:23:15 +0100 | [diff] [blame] | 873 | } |
Chris Wren | d5e66bf | 2013-09-16 14:02:29 -0400 | [diff] [blame] | 874 | } |
| 875 | |
Sunny Goyal | a2cc624 | 2015-01-14 14:23:02 -0800 | [diff] [blame] | 876 | // DB was not upgraded |
| 877 | Log.w(TAG, "Destroying all old data."); |
| 878 | createEmptyDB(db); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 879 | } |
Romain Guy | 7eb9e5e | 2009-12-02 20:10:07 -0800 | [diff] [blame] | 880 | |
Adam Cohen | 9b1d062 | 2014-05-21 19:01:57 -0700 | [diff] [blame] | 881 | @Override |
| 882 | public void onDowngrade(SQLiteDatabase db, int oldVersion, int newVersion) { |
Sunny Goyal | 05f3088 | 2017-05-03 12:42:18 -0700 | [diff] [blame] | 883 | try { |
| 884 | DbDowngradeHelper.parse(mContext.getFileStreamPath(DOWNGRADE_SCHEMA_FILE)) |
| 885 | .onDowngrade(db, oldVersion, newVersion); |
| 886 | } catch (Exception e) { |
| 887 | Log.d(TAG, "Unable to downgrade from: " + oldVersion + " to " + newVersion + |
| 888 | ". Wiping databse.", e); |
| 889 | createEmptyDB(db); |
Sunny Goyal | 3c7d55b | 2017-04-13 12:01:47 -0700 | [diff] [blame] | 890 | } |
Sunny Goyal | 42de82f | 2014-09-26 22:09:29 -0700 | [diff] [blame] | 891 | } |
Adam Cohen | 9b1d062 | 2014-05-21 19:01:57 -0700 | [diff] [blame] | 892 | |
Sunny Goyal | 42de82f | 2014-09-26 22:09:29 -0700 | [diff] [blame] | 893 | /** |
| 894 | * Clears all the data for a fresh start. |
| 895 | */ |
| 896 | public void createEmptyDB(SQLiteDatabase db) { |
Sunny Goyal | dbfc901 | 2017-04-17 16:58:36 -0700 | [diff] [blame] | 897 | try (SQLiteTransaction t = new SQLiteTransaction(db)) { |
Sunny Goyal | 161a214 | 2018-10-29 14:02:20 -0700 | [diff] [blame] | 898 | dropTable(db, Favorites.TABLE_NAME); |
| 899 | dropTable(db, "workspaceScreens"); |
Sunny Goyal | e05b08f | 2017-02-23 18:30:22 -0800 | [diff] [blame] | 900 | onCreate(db); |
Sunny Goyal | dbfc901 | 2017-04-17 16:58:36 -0700 | [diff] [blame] | 901 | t.commit(); |
Sunny Goyal | e05b08f | 2017-02-23 18:30:22 -0800 | [diff] [blame] | 902 | } |
Adam Cohen | 9b1d062 | 2014-05-21 19:01:57 -0700 | [diff] [blame] | 903 | } |
| 904 | |
Sunny Goyal | d2f3819 | 2015-02-25 10:46:34 -0800 | [diff] [blame] | 905 | /** |
Sunny Goyal | 55fddc8 | 2017-04-06 15:02:52 -0700 | [diff] [blame] | 906 | * Removes widgets which are registered to the Launcher's host, but are not present |
| 907 | * in our model. |
| 908 | */ |
| 909 | public void removeGhostWidgets(SQLiteDatabase db) { |
| 910 | // Get all existing widget ids. |
Sihua Ma | aa2b872 | 2022-10-25 15:17:58 -0700 | [diff] [blame] | 911 | final LauncherWidgetHolder holder = newLauncherWidgetHolder(); |
Sunny Goyal | 55fddc8 | 2017-04-06 15:02:52 -0700 | [diff] [blame] | 912 | try { |
Sihua Ma | aa2b872 | 2022-10-25 15:17:58 -0700 | [diff] [blame] | 913 | final int[] allWidgets; |
| 914 | try { |
| 915 | // Although the method was defined in O, it has existed since the beginning of |
| 916 | // time, so it might work on older platforms as well. |
| 917 | allWidgets = holder.getAppWidgetIds(); |
| 918 | } catch (IncompatibleClassChangeError e) { |
| 919 | Log.e(TAG, "getAppWidgetIds not supported", e); |
Sihua Ma | aa2b872 | 2022-10-25 15:17:58 -0700 | [diff] [blame] | 920 | return; |
| 921 | } |
| 922 | final IntSet validWidgets = IntSet.wrap(LauncherDbUtils.queryIntArray(false, db, |
| 923 | Favorites.TABLE_NAME, Favorites.APPWIDGET_ID, |
| 924 | "itemType=" + Favorites.ITEM_TYPE_APPWIDGET, null, null)); |
| 925 | boolean isAnyWidgetRemoved = false; |
| 926 | for (int widgetId : allWidgets) { |
| 927 | if (!validWidgets.contains(widgetId)) { |
| 928 | try { |
| 929 | FileLog.d(TAG, "Deleting invalid widget " + widgetId); |
| 930 | holder.deleteAppWidgetId(widgetId); |
| 931 | isAnyWidgetRemoved = true; |
| 932 | } catch (RuntimeException e) { |
| 933 | // Ignore |
| 934 | } |
Sunny Goyal | dbfc901 | 2017-04-17 16:58:36 -0700 | [diff] [blame] | 935 | } |
| 936 | } |
Sihua Ma | aa2b872 | 2022-10-25 15:17:58 -0700 | [diff] [blame] | 937 | if (isAnyWidgetRemoved) { |
| 938 | final String allWidgetsIds = Arrays.stream(allWidgets).mapToObj(String::valueOf) |
| 939 | .collect(Collectors.joining(",", "[", "]")); |
| 940 | final String validWidgetsIds = Arrays.stream( |
| 941 | validWidgets.getArray().toArray()).mapToObj(String::valueOf) |
| 942 | .collect(Collectors.joining(",", "[", "]")); |
| 943 | FileLog.d(TAG, "One or more widgets was removed. db_path=" + db.getPath() |
| 944 | + " allWidgetsIds=" + allWidgetsIds |
| 945 | + ", validWidgetsIds=" + validWidgetsIds); |
| 946 | } |
| 947 | } finally { |
| 948 | holder.destroy(); |
Pinyao Ting | 7fd7e51 | 2022-10-03 17:46:03 -0700 | [diff] [blame] | 949 | } |
Sunny Goyal | 55fddc8 | 2017-04-06 15:02:52 -0700 | [diff] [blame] | 950 | } |
| 951 | |
| 952 | /** |
Sunny Goyal | 0b03778 | 2015-04-02 10:27:03 -0700 | [diff] [blame] | 953 | * Replaces all shortcuts of type {@link Favorites#ITEM_TYPE_SHORTCUT} which have a valid |
| 954 | * launcher activity target with {@link Favorites#ITEM_TYPE_APPLICATION}. |
| 955 | */ |
Sunny Goyal | 316490e | 2015-06-02 09:38:28 -0700 | [diff] [blame] | 956 | @Thunk void convertShortcutsToLauncherActivities(SQLiteDatabase db) { |
Sunny Goyal | dbfc901 | 2017-04-17 16:58:36 -0700 | [diff] [blame] | 957 | try (SQLiteTransaction t = new SQLiteTransaction(db); |
| 958 | // Only consider the primary user as other users can't have a shortcut. |
| 959 | Cursor c = db.query(Favorites.TABLE_NAME, |
| 960 | new String[] { Favorites._ID, Favorites.INTENT}, |
| 961 | "itemType=" + Favorites.ITEM_TYPE_SHORTCUT + |
| 962 | " AND profileId=" + getDefaultUserSerial(), |
| 963 | null, null, null, null); |
| 964 | SQLiteStatement updateStmt = db.compileStatement("UPDATE favorites SET itemType=" |
| 965 | + Favorites.ITEM_TYPE_APPLICATION + " WHERE _id=?") |
| 966 | ) { |
Sunny Goyal | 0b03778 | 2015-04-02 10:27:03 -0700 | [diff] [blame] | 967 | final int idIndex = c.getColumnIndexOrThrow(Favorites._ID); |
| 968 | final int intentIndex = c.getColumnIndexOrThrow(Favorites.INTENT); |
| 969 | |
| 970 | while (c.moveToNext()) { |
| 971 | String intentDescription = c.getString(intentIndex); |
| 972 | Intent intent; |
| 973 | try { |
| 974 | intent = Intent.parseUri(intentDescription, 0); |
| 975 | } catch (URISyntaxException e) { |
| 976 | Log.e(TAG, "Unable to parse intent", e); |
| 977 | continue; |
| 978 | } |
| 979 | |
Sunny Goyal | 9dbb27c | 2019-07-17 15:12:56 -0700 | [diff] [blame] | 980 | if (!PackageManagerHelper.isLauncherAppTarget(intent)) { |
Sunny Goyal | 0b03778 | 2015-04-02 10:27:03 -0700 | [diff] [blame] | 981 | continue; |
| 982 | } |
| 983 | |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 984 | int id = c.getInt(idIndex); |
Sunny Goyal | 0b03778 | 2015-04-02 10:27:03 -0700 | [diff] [blame] | 985 | updateStmt.bindLong(1, id); |
Sunny Goyal | c22841b | 2015-07-13 19:59:50 -0700 | [diff] [blame] | 986 | updateStmt.executeUpdateDelete(); |
Sunny Goyal | 0b03778 | 2015-04-02 10:27:03 -0700 | [diff] [blame] | 987 | } |
Sunny Goyal | dbfc901 | 2017-04-17 16:58:36 -0700 | [diff] [blame] | 988 | t.commit(); |
Sunny Goyal | 0b03778 | 2015-04-02 10:27:03 -0700 | [diff] [blame] | 989 | } catch (SQLException ex) { |
| 990 | Log.w(TAG, "Error deduping shortcuts", ex); |
Sunny Goyal | 0b03778 | 2015-04-02 10:27:03 -0700 | [diff] [blame] | 991 | } |
| 992 | } |
| 993 | |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 994 | @Thunk boolean updateFolderItemsRank(SQLiteDatabase db, boolean addRankColumn) { |
Sunny Goyal | dbfc901 | 2017-04-17 16:58:36 -0700 | [diff] [blame] | 995 | try (SQLiteTransaction t = new SQLiteTransaction(db)) { |
Sunny Goyal | 08f7261 | 2015-01-05 13:41:43 -0800 | [diff] [blame] | 996 | if (addRankColumn) { |
| 997 | // Insert new column for holding rank |
| 998 | db.execSQL("ALTER TABLE favorites ADD COLUMN rank INTEGER NOT NULL DEFAULT 0;"); |
| 999 | } |
| 1000 | |
| 1001 | // Get a map for folder ID to folder width |
| 1002 | Cursor c = db.rawQuery("SELECT container, MAX(cellX) FROM favorites" |
| 1003 | + " WHERE container IN (SELECT _id FROM favorites WHERE itemType = ?)" |
| 1004 | + " GROUP BY container;", |
| 1005 | new String[] {Integer.toString(LauncherSettings.Favorites.ITEM_TYPE_FOLDER)}); |
| 1006 | |
| 1007 | while (c.moveToNext()) { |
Sunny Goyal | c87775d | 2015-02-10 19:52:36 -0800 | [diff] [blame] | 1008 | db.execSQL("UPDATE favorites SET rank=cellX+(cellY*?) WHERE " |
| 1009 | + "container=? AND cellX IS NOT NULL AND cellY IS NOT NULL;", |
Sunny Goyal | 08f7261 | 2015-01-05 13:41:43 -0800 | [diff] [blame] | 1010 | new Object[] {c.getLong(1) + 1, c.getLong(0)}); |
| 1011 | } |
| 1012 | |
| 1013 | c.close(); |
Sunny Goyal | dbfc901 | 2017-04-17 16:58:36 -0700 | [diff] [blame] | 1014 | t.commit(); |
Sunny Goyal | 08f7261 | 2015-01-05 13:41:43 -0800 | [diff] [blame] | 1015 | } catch (SQLException ex) { |
| 1016 | // Old version remains, which means we wipe old data |
| 1017 | Log.e(TAG, ex.getMessage(), ex); |
| 1018 | return false; |
Sunny Goyal | 08f7261 | 2015-01-05 13:41:43 -0800 | [diff] [blame] | 1019 | } |
| 1020 | return true; |
| 1021 | } |
| 1022 | |
Sunny Goyal | 5d85c44 | 2015-03-10 13:14:47 -0700 | [diff] [blame] | 1023 | private boolean addIntegerColumn(SQLiteDatabase db, String columnName, long defaultValue) { |
Sunny Goyal | dbfc901 | 2017-04-17 16:58:36 -0700 | [diff] [blame] | 1024 | try (SQLiteTransaction t = new SQLiteTransaction(db)) { |
Sunny Goyal | 5d85c44 | 2015-03-10 13:14:47 -0700 | [diff] [blame] | 1025 | db.execSQL("ALTER TABLE favorites ADD COLUMN " |
| 1026 | + columnName + " INTEGER NOT NULL DEFAULT " + defaultValue + ";"); |
Sunny Goyal | dbfc901 | 2017-04-17 16:58:36 -0700 | [diff] [blame] | 1027 | t.commit(); |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 1028 | } catch (SQLException ex) { |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 1029 | Log.e(TAG, ex.getMessage(), ex); |
| 1030 | return false; |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 1031 | } |
| 1032 | return true; |
| 1033 | } |
| 1034 | |
Michael Jurka | a8c760d | 2011-04-28 14:59:33 -0700 | [diff] [blame] | 1035 | // Generates a new ID to use for an object in your database. This method should be only |
| 1036 | // called from the main UI thread. As an exception, we do call it when we call the |
| 1037 | // constructor from the worker thread; however, this doesn't extend until after the |
| 1038 | // constructor is called, and we only pass a reference to LauncherProvider to LauncherApp |
| 1039 | // after that point |
Sunny Goyal | 0fe505b | 2014-08-06 09:55:36 -0700 | [diff] [blame] | 1040 | @Override |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 1041 | public int generateNewItemId() { |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 1042 | if (mMaxItemId < 0) { |
| 1043 | throw new RuntimeException("Error: max item id was not initialized"); |
Michael Jurka | a8c760d | 2011-04-28 14:59:33 -0700 | [diff] [blame] | 1044 | } |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 1045 | mMaxItemId += 1; |
| 1046 | return mMaxItemId; |
Michael Jurka | a8c760d | 2011-04-28 14:59:33 -0700 | [diff] [blame] | 1047 | } |
| 1048 | |
Sihua Ma | aa2b872 | 2022-10-25 15:17:58 -0700 | [diff] [blame] | 1049 | /** |
| 1050 | * @return A new {@link LauncherWidgetHolder} based on the current context |
| 1051 | */ |
| 1052 | @NonNull |
| 1053 | public LauncherWidgetHolder newLauncherWidgetHolder() { |
Sihua Ma | 1db8bc2 | 2022-11-08 17:13:13 -0800 | [diff] [blame] | 1054 | return LauncherWidgetHolder.newInstance(mContext); |
Sunny Goyal | 55fddc8 | 2017-04-06 15:02:52 -0700 | [diff] [blame] | 1055 | } |
| 1056 | |
Sunny Goyal | 0fe505b | 2014-08-06 09:55:36 -0700 | [diff] [blame] | 1057 | @Override |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 1058 | public int insertAndCheck(SQLiteDatabase db, ContentValues values) { |
Sunny Goyal | b5b55c8 | 2016-05-10 12:28:59 -0700 | [diff] [blame] | 1059 | return dbInsertAndCheck(this, db, Favorites.TABLE_NAME, null, values); |
Sunny Goyal | 0fe505b | 2014-08-06 09:55:36 -0700 | [diff] [blame] | 1060 | } |
| 1061 | |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 1062 | public void checkId(ContentValues values) { |
| 1063 | int id = values.getAsInteger(Favorites._ID); |
| 1064 | mMaxItemId = Math.max(id, mMaxItemId); |
Chris Wren | 5dee7af | 2013-12-20 17:22:11 -0500 | [diff] [blame] | 1065 | } |
| 1066 | |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 1067 | private int initializeMaxItemId(SQLiteDatabase db) { |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 1068 | return getMaxId(db, "SELECT MAX(%1$s) FROM %2$s", Favorites._ID, Favorites.TABLE_NAME); |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 1069 | } |
| 1070 | |
Andras Kloczl | 953eb80 | 2021-10-15 21:16:48 +0100 | [diff] [blame] | 1071 | // Returns a new ID to use for an workspace screen in your database that is greater than all |
| 1072 | // existing screen IDs. |
| 1073 | private int getNewScreenId() { |
| 1074 | return getMaxId(getWritableDatabase(), |
| 1075 | "SELECT MAX(%1$s) FROM %2$s WHERE %3$s = %4$d AND %1$s >= 0", |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 1076 | Favorites.SCREEN, Favorites.TABLE_NAME, Favorites.CONTAINER, |
Andras Kloczl | 953eb80 | 2021-10-15 21:16:48 +0100 | [diff] [blame] | 1077 | Favorites.CONTAINER_DESKTOP) + 1; |
Adam Cohen | 7ec3bbf | 2014-07-31 00:09:45 -0700 | [diff] [blame] | 1078 | } |
| 1079 | |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 1080 | @Thunk int loadFavorites(SQLiteDatabase db, AutoInstallsLayout loader) { |
Sunny Goyal | 0fe505b | 2014-08-06 09:55:36 -0700 | [diff] [blame] | 1081 | // TODO: Use multiple loaders with fall-back and transaction. |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 1082 | int count = loader.loadLayout(db, new IntArray()); |
Adam Cohen | 71483f4 | 2014-05-15 14:04:01 -0700 | [diff] [blame] | 1083 | |
| 1084 | // Ensure that the max ids are initialized |
| 1085 | mMaxItemId = initializeMaxItemId(db); |
Adam Cohen | 71483f4 | 2014-05-15 14:04:01 -0700 | [diff] [blame] | 1086 | return count; |
| 1087 | } |
Mike Cleron | b87bd16 | 2009-10-30 16:36:56 -0700 | [diff] [blame] | 1088 | } |
Daniel Lehmann | c3a8040 | 2012-04-23 21:35:11 -0700 | [diff] [blame] | 1089 | |
Sunny Goyal | fe4e4b9 | 2015-03-04 10:43:45 -0800 | [diff] [blame] | 1090 | /** |
| 1091 | * @return the max _id in the provided table. |
| 1092 | */ |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 1093 | @Thunk static int getMaxId(SQLiteDatabase db, String query, Object... args) { |
Pinyao Ting | 0646dde | 2020-11-24 11:35:24 -0800 | [diff] [blame] | 1094 | int max = 0; |
| 1095 | try (SQLiteStatement prog = db.compileStatement( |
| 1096 | String.format(Locale.ENGLISH, query, args))) { |
| 1097 | max = (int) DatabaseUtils.longForQuery(prog, null); |
| 1098 | if (max < 0) { |
| 1099 | throw new RuntimeException("Error: could not query max id"); |
| 1100 | } |
| 1101 | } catch (IllegalArgumentException exception) { |
| 1102 | String message = exception.getMessage(); |
| 1103 | if (message.contains("re-open") && message.contains("already-closed")) { |
| 1104 | // Don't crash trying to end a transaction an an already closed DB. See b/173162852. |
| 1105 | } else { |
| 1106 | throw exception; |
| 1107 | } |
Sunny Goyal | fe4e4b9 | 2015-03-04 10:43:45 -0800 | [diff] [blame] | 1108 | } |
Sunny Goyal | c593939 | 2018-12-07 11:43:47 -0800 | [diff] [blame] | 1109 | return max; |
Sunny Goyal | fe4e4b9 | 2015-03-04 10:43:45 -0800 | [diff] [blame] | 1110 | } |
| 1111 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1112 | static class SqlArguments { |
| 1113 | public final String table; |
| 1114 | public final String where; |
| 1115 | public final String[] args; |
| 1116 | |
| 1117 | SqlArguments(Uri url, String where, String[] args) { |
| 1118 | if (url.getPathSegments().size() == 1) { |
| 1119 | this.table = url.getPathSegments().get(0); |
| 1120 | this.where = where; |
| 1121 | this.args = args; |
| 1122 | } else if (url.getPathSegments().size() != 2) { |
| 1123 | throw new IllegalArgumentException("Invalid URI: " + url); |
| 1124 | } else if (!TextUtils.isEmpty(where)) { |
| 1125 | throw new UnsupportedOperationException("WHERE clause not supported: " + url); |
| 1126 | } else { |
| 1127 | this.table = url.getPathSegments().get(0); |
Daniel Lehmann | c3a8040 | 2012-04-23 21:35:11 -0700 | [diff] [blame] | 1128 | this.where = "_id=" + ContentUris.parseId(url); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1129 | this.args = null; |
| 1130 | } |
| 1131 | } |
| 1132 | |
| 1133 | SqlArguments(Uri url) { |
| 1134 | if (url.getPathSegments().size() == 1) { |
| 1135 | table = url.getPathSegments().get(0); |
| 1136 | where = null; |
| 1137 | args = null; |
| 1138 | } else { |
| 1139 | throw new IllegalArgumentException("Invalid URI: " + url); |
| 1140 | } |
| 1141 | } |
| 1142 | } |
Adam Cohen | 7296097 | 2014-01-15 18:13:55 -0800 | [diff] [blame] | 1143 | } |