blob: a699c328480bce1293459187a595a2e81a68adb8 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Tracy Zhou7df93d22020-01-27 13:44:06 -080019import static com.android.launcher3.config.FeatureFlags.MULTI_DB_GRID_MIRATION_ALGO;
Tracy Zhouf6018722020-02-06 16:37:16 -080020import static com.android.launcher3.provider.LauncherDbUtils.copyTable;
Sunny Goyal161a2142018-10-29 14:02:20 -070021import static com.android.launcher3.provider.LauncherDbUtils.dropTable;
22import static com.android.launcher3.provider.LauncherDbUtils.tableExists;
Pinyao Tingad5f2402019-12-10 14:56:34 -080023import static com.android.launcher3.util.Executors.MODEL_EXECUTOR;
Sunny Goyal161a2142018-10-29 14:02:20 -070024
Sunny Goyal22ca9ec2017-05-18 15:03:13 -070025import android.annotation.TargetApi;
Jon Miranda2bc6b932019-03-07 15:24:46 -080026import android.app.backup.BackupManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -070027import android.appwidget.AppWidgetHost;
Mike Cleronb87bd162009-10-30 16:36:56 -070028import android.appwidget.AppWidgetManager;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080029import android.content.ComponentName;
Adam Cohen228da5a2011-07-27 22:23:47 -070030import android.content.ContentProvider;
Yura085c8532014-02-11 15:15:29 +000031import android.content.ContentProviderOperation;
32import android.content.ContentProviderResult;
Adam Cohen228da5a2011-07-27 22:23:47 -070033import android.content.ContentUris;
34import android.content.ContentValues;
35import android.content.Context;
36import android.content.Intent;
Yura085c8532014-02-11 15:15:29 +000037import android.content.OperationApplicationException;
Michael Jurkab85f8a42012-04-25 15:48:32 -070038import android.content.SharedPreferences;
Sunny Goyalc0f03d92019-03-22 14:13:36 -070039import android.content.pm.ProviderInfo;
Adam Cohen228da5a2011-07-27 22:23:47 -070040import android.content.res.Resources;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.database.Cursor;
Sunny Goyalc5939392018-12-07 11:43:47 -080042import android.database.DatabaseUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080043import android.database.SQLException;
Adam Cohen228da5a2011-07-27 22:23:47 -070044import android.database.sqlite.SQLiteDatabase;
Adam Cohen228da5a2011-07-27 22:23:47 -070045import android.database.sqlite.SQLiteQueryBuilder;
Sunny Goyal0b037782015-04-02 10:27:03 -070046import android.database.sqlite.SQLiteStatement;
Adam Cohen228da5a2011-07-27 22:23:47 -070047import android.net.Uri;
Sunny Goyal7779d622015-06-11 16:18:39 -070048import android.os.Binder;
Sunny Goyal22ca9ec2017-05-18 15:03:13 -070049import android.os.Build;
Sunny Goyalb2d46ce2015-03-26 11:32:11 -070050import android.os.Bundle;
Pinyao Tingad5f2402019-12-10 14:56:34 -080051import android.os.Handler;
Sunny Goyal7779d622015-06-11 16:18:39 -070052import android.os.Process;
Sunny Goyal7c74e4a2016-12-15 15:53:17 -080053import android.os.UserHandle;
Sunny Goyal337c81f2019-12-10 12:19:13 -080054import android.os.UserManager;
Sunny Goyalc5939392018-12-07 11:43:47 -080055import android.provider.BaseColumns;
Sunny Goyalc0f03d92019-03-22 14:13:36 -070056import android.provider.Settings;
Adam Cohen228da5a2011-07-27 22:23:47 -070057import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080058import android.util.Log;
Sunny Goyalc0f03d92019-03-22 14:13:36 -070059import android.util.Xml;
Adam Cohen228da5a2011-07-27 22:23:47 -070060
Sunny Goyal0fe505b2014-08-06 09:55:36 -070061import com.android.launcher3.AutoInstallsLayout.LayoutParserCallback;
62import com.android.launcher3.LauncherSettings.Favorites;
Sunny Goyala9e2f5a2016-06-10 12:22:04 -070063import com.android.launcher3.config.FeatureFlags;
Sunny Goyalfdbef272017-02-01 12:52:54 -080064import com.android.launcher3.logging.FileLog;
Sunny Goyal05f30882017-05-03 12:42:18 -070065import com.android.launcher3.model.DbDowngradeHelper;
Sunny Goyal337c81f2019-12-10 12:19:13 -080066import com.android.launcher3.pm.UserCache;
Sunny Goyala9e2f5a2016-06-10 12:22:04 -070067import com.android.launcher3.provider.LauncherDbUtils;
Sunny Goyaldbfc9012017-04-17 16:58:36 -070068import com.android.launcher3.provider.LauncherDbUtils.SQLiteTransaction;
Sunny Goyale8f7d5a2016-05-24 11:30:14 -070069import com.android.launcher3.provider.RestoreDbTask;
Sunny Goyalc0f03d92019-03-22 14:13:36 -070070import com.android.launcher3.util.IOUtils;
Sunny Goyalefb7e842018-10-04 15:11:00 -070071import com.android.launcher3.util.IntArray;
72import com.android.launcher3.util.IntSet;
Sunny Goyal19026b22018-03-09 14:37:37 -080073import com.android.launcher3.util.NoLocaleSQLiteHelper;
Sunny Goyal9dbb27c2019-07-17 15:12:56 -070074import com.android.launcher3.util.PackageManagerHelper;
Adam Cohen091440a2015-03-18 14:16:05 -070075import com.android.launcher3.util.Thunk;
Michael Jurka8b805b12012-04-18 14:23:14 -070076
Sunny Goyalc0f03d92019-03-22 14:13:36 -070077import org.xmlpull.v1.XmlPullParser;
78
Sunny Goyal05f30882017-05-03 12:42:18 -070079import java.io.File;
Hyunyoung Song6aa37292017-02-06 10:46:24 -080080import java.io.FileDescriptor;
Sunny Goyalc0f03d92019-03-22 14:13:36 -070081import java.io.InputStream;
Hyunyoung Song6aa37292017-02-06 10:46:24 -080082import java.io.PrintWriter;
Sunny Goyalc0f03d92019-03-22 14:13:36 -070083import java.io.StringReader;
Mike Cleronb87bd162009-10-30 16:36:56 -070084import java.net.URISyntaxException;
Adam Cohen228da5a2011-07-27 22:23:47 -070085import java.util.ArrayList;
Sunny Goyalefb7e842018-10-04 15:11:00 -070086import java.util.Arrays;
Sunny Goyalc5939392018-12-07 11:43:47 -080087import java.util.Locale;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080088
The Android Open Source Project31dd5032009-03-03 19:32:27 -080089public class LauncherProvider extends ContentProvider {
Sunny Goyalc74e4192015-09-08 14:01:03 -070090 private static final String TAG = "LauncherProvider";
Joe Onoratoa30ce8e2009-11-11 08:16:49 -080091 private static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080092
Sunny Goyal05f30882017-05-03 12:42:18 -070093 private static final String DOWNGRADE_SCHEMA_FILE = "downgrade_schema.json";
Pinyao Tingad5f2402019-12-10 14:56:34 -080094 private static final String TOKEN_RESTORE_BACKUP_TABLE = "restore_backup_table";
95 private static final long RESTORE_BACKUP_TABLE_DELAY = 60000;
Sunny Goyal05f30882017-05-03 12:42:18 -070096
Sunny Goyal3c7d55b2017-04-13 12:01:47 -070097 /**
98 * Represents the schema of the database. Changes in scheme need not be backwards compatible.
Sunny Goyalc5939392018-12-07 11:43:47 -080099 * When increasing the scheme version, ensure that downgrade_schema.json is updated
Sunny Goyal3c7d55b2017-04-13 12:01:47 -0700100 */
Sunny Goyalc5939392018-12-07 11:43:47 -0800101 public static final int SCHEMA_VERSION = 28;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800102
Sunny Goyal4276e7b2018-11-26 23:44:41 -0800103 public static final String AUTHORITY = BuildConfig.APPLICATION_ID + ".settings";
Winson Chung3d503fb2011-07-13 17:25:49 -0700104
Sunny Goyale87e6ab2014-11-21 22:42:53 -0800105 static final String EMPTY_DATABASE_CREATED = "EMPTY_DATABASE_CREATED";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800106
Sunny Goyalf076eae2016-01-11 12:25:10 -0800107 protected DatabaseHelper mOpenHelper;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800108
Hyunyoung Song6aa37292017-02-06 10:46:24 -0800109 /**
110 * $ adb shell dumpsys activity provider com.android.launcher3
111 */
112 @Override
113 public void dump(FileDescriptor fd, PrintWriter writer, String[] args) {
114 LauncherAppState appState = LauncherAppState.getInstanceNoCreate();
115 if (appState == null || !appState.getModel().isModelLoaded()) {
116 return;
117 }
118 appState.getModel().dumpState("", fd, writer, args);
119 }
120
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800121 @Override
122 public boolean onCreate() {
Zak Cohen3eeb41d2020-02-14 14:15:13 -0800123 if (FeatureFlags.IS_STUDIO_BUILD) {
Sunny Goyale26d1002016-06-20 14:52:14 -0700124 Log.d(TAG, "Launcher process started");
125 }
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700126
Sunny Goyalfdbef272017-02-01 12:52:54 -0800127 // The content provider exists for the entire duration of the launcher main process and
Sunny Goyal66f2b352018-02-09 10:57:12 -0800128 // is the first component to get created.
129 MainProcessInitializer.initialize(getContext().getApplicationContext());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800130 return true;
131 }
132
133 @Override
134 public String getType(Uri uri) {
135 SqlArguments args = new SqlArguments(uri, null, null);
136 if (TextUtils.isEmpty(args.where)) {
137 return "vnd.android.cursor.dir/" + args.table;
138 } else {
139 return "vnd.android.cursor.item/" + args.table;
140 }
141 }
142
Sunny Goyalf076eae2016-01-11 12:25:10 -0800143 /**
144 * Overridden in tests
145 */
146 protected synchronized void createDbIfNotExists() {
Sunny Goyald3849d12015-10-29 10:28:32 -0700147 if (mOpenHelper == null) {
Sunny Goyal01615a62019-09-20 12:00:07 -0700148 mOpenHelper = new DatabaseHelper(getContext());
Sunny Goyale8f7d5a2016-05-24 11:30:14 -0700149
150 if (RestoreDbTask.isPending(getContext())) {
Jon Mirandac7206ca2019-05-13 14:57:50 -0700151 if (!RestoreDbTask.performRestore(getContext(), mOpenHelper,
152 new BackupManager(getContext()))) {
Sunny Goyale8f7d5a2016-05-24 11:30:14 -0700153 mOpenHelper.createEmptyDB(mOpenHelper.getWritableDatabase());
154 }
155 // Set is pending to false irrespective of the result, so that it doesn't get
156 // executed again.
157 RestoreDbTask.setPending(getContext(), false);
158 }
Sunny Goyald3849d12015-10-29 10:28:32 -0700159 }
160 }
161
Tracy Zhou7df93d22020-01-27 13:44:06 -0800162 private synchronized boolean updateCurrentOpenHelper() {
163 final InvariantDeviceProfile idp = InvariantDeviceProfile.INSTANCE.get(getContext());
164 if (TextUtils.equals(idp.dbFile, mOpenHelper.getDatabaseName())) {
165 return false;
166 }
167
Tracy Zhouf6018722020-02-06 16:37:16 -0800168 DatabaseHelper oldHelper = mOpenHelper;
Tracy Zhou7df93d22020-01-27 13:44:06 -0800169 mOpenHelper = new DatabaseHelper(getContext());
Tracy Zhouf6018722020-02-06 16:37:16 -0800170 copyTable(oldHelper.getReadableDatabase(), Favorites.TABLE_NAME,
171 mOpenHelper.getWritableDatabase(), Favorites.TMP_TABLE, getContext());
172 oldHelper.close();
Tracy Zhou7df93d22020-01-27 13:44:06 -0800173 return true;
174 }
175
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800176 @Override
177 public Cursor query(Uri uri, String[] projection, String selection,
178 String[] selectionArgs, String sortOrder) {
Sunny Goyald3849d12015-10-29 10:28:32 -0700179 createDbIfNotExists();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800180
181 SqlArguments args = new SqlArguments(uri, selection, selectionArgs);
182 SQLiteQueryBuilder qb = new SQLiteQueryBuilder();
183 qb.setTables(args.table);
184
Romain Guy73b979d2009-06-09 12:57:21 -0700185 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800186 Cursor result = qb.query(db, projection, args.where, args.args, null, null, sortOrder);
187 result.setNotificationUri(getContext().getContentResolver(), uri);
188
189 return result;
190 }
191
Sunny Goyalefb7e842018-10-04 15:11:00 -0700192 @Thunk static int dbInsertAndCheck(DatabaseHelper helper,
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700193 SQLiteDatabase db, String table, String nullColumnHack, ContentValues values) {
Dan Sandlerd5024042014-01-09 15:01:33 -0500194 if (values == null) {
195 throw new RuntimeException("Error: attempting to insert null values");
196 }
Sunny Goyalc5939392018-12-07 11:43:47 -0800197 if (!values.containsKey(LauncherSettings.Favorites._ID)) {
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700198 throw new RuntimeException("Error: attempting to add item without specifying an id");
199 }
Sunny Goyalc5939392018-12-07 11:43:47 -0800200 helper.checkId(values);
Sunny Goyalefb7e842018-10-04 15:11:00 -0700201 return (int) db.insert(table, nullColumnHack, values);
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700202 }
203
Sunny Goyald1064182015-08-13 12:08:30 -0700204 private void reloadLauncherIfExternal() {
Sunny Goyal8c48d8b2019-01-25 15:10:18 -0800205 if (Binder.getCallingPid() != Process.myPid()) {
Sunny Goyald1064182015-08-13 12:08:30 -0700206 LauncherAppState app = LauncherAppState.getInstanceNoCreate();
207 if (app != null) {
Sunny Goyaldd96a5e2017-02-17 11:22:34 -0800208 app.getModel().forceReload();
Sunny Goyald1064182015-08-13 12:08:30 -0700209 }
210 }
211 }
212
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800213 @Override
214 public Uri insert(Uri uri, ContentValues initialValues) {
Sunny Goyald3849d12015-10-29 10:28:32 -0700215 createDbIfNotExists();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800216 SqlArguments args = new SqlArguments(uri);
217
Sunny Goyald1064182015-08-13 12:08:30 -0700218 // In very limited cases, we support system|signature permission apps to modify the db.
219 if (Binder.getCallingPid() != Process.myPid()) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700220 if (!initializeExternalAdd(initialValues)) {
Adam Cohena043fa82014-07-23 14:49:38 -0700221 return null;
222 }
223 }
224
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800225 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
Chris Wren1ada10d2013-09-13 18:01:38 -0400226 addModifiedTime(initialValues);
Sunny Goyalefb7e842018-10-04 15:11:00 -0700227 final int rowId = dbInsertAndCheck(mOpenHelper, db, args.table, null, initialValues);
Sunny Goyale72f3d52015-03-02 14:24:21 -0800228 if (rowId < 0) return null;
Tracy Zhou7df93d22020-01-27 13:44:06 -0800229 onAddOrDeleteOp(db);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800230
231 uri = ContentUris.withAppendedId(uri, rowId);
Sunny Goyal8c48d8b2019-01-25 15:10:18 -0800232 reloadLauncherIfExternal();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800233 return uri;
234 }
235
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700236 private boolean initializeExternalAdd(ContentValues values) {
237 // 1. Ensure that externally added items have a valid item id
Sunny Goyalefb7e842018-10-04 15:11:00 -0700238 int id = mOpenHelper.generateNewItemId();
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700239 values.put(LauncherSettings.Favorites._ID, id);
240
241 // 2. In the case of an app widget, and if no app widget id is specified, we
242 // attempt allocate and bind the widget.
243 Integer itemType = values.getAsInteger(LauncherSettings.Favorites.ITEM_TYPE);
244 if (itemType != null &&
245 itemType.intValue() == LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET &&
246 !values.containsKey(LauncherSettings.Favorites.APPWIDGET_ID)) {
247
248 final AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(getContext());
249 ComponentName cn = ComponentName.unflattenFromString(
250 values.getAsString(Favorites.APPWIDGET_PROVIDER));
251
252 if (cn != null) {
253 try {
Sunny Goyal55fddc82017-04-06 15:02:52 -0700254 AppWidgetHost widgetHost = mOpenHelper.newLauncherWidgetHost();
255 int appWidgetId = widgetHost.allocateAppWidgetId();
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700256 values.put(LauncherSettings.Favorites.APPWIDGET_ID, appWidgetId);
257 if (!appWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,cn)) {
Sunny Goyal55fddc82017-04-06 15:02:52 -0700258 widgetHost.deleteAppWidgetId(appWidgetId);
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700259 return false;
260 }
261 } catch (RuntimeException e) {
262 Log.e(TAG, "Failed to initialize external widget", e);
263 return false;
264 }
265 } else {
266 return false;
267 }
268 }
269
Sunny Goyalc5939392018-12-07 11:43:47 -0800270 return true;
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700271 }
272
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800273 @Override
274 public int bulkInsert(Uri uri, ContentValues[] values) {
Sunny Goyald3849d12015-10-29 10:28:32 -0700275 createDbIfNotExists();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800276 SqlArguments args = new SqlArguments(uri);
277
278 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700279 try (SQLiteTransaction t = new SQLiteTransaction(db)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800280 int numValues = values.length;
281 for (int i = 0; i < numValues; i++) {
Chris Wren1ada10d2013-09-13 18:01:38 -0400282 addModifiedTime(values[i]);
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700283 if (dbInsertAndCheck(mOpenHelper, db, args.table, null, values[i]) < 0) {
284 return 0;
285 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800286 }
Tracy Zhou7df93d22020-01-27 13:44:06 -0800287 onAddOrDeleteOp(db);
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700288 t.commit();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800289 }
290
Sunny Goyald1064182015-08-13 12:08:30 -0700291 reloadLauncherIfExternal();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800292 return values.length;
293 }
294
Sunny Goyal161a2142018-10-29 14:02:20 -0700295 @TargetApi(Build.VERSION_CODES.M)
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800296 @Override
Yura085c8532014-02-11 15:15:29 +0000297 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations)
298 throws OperationApplicationException {
Sunny Goyald3849d12015-10-29 10:28:32 -0700299 createDbIfNotExists();
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700300 try (SQLiteTransaction t = new SQLiteTransaction(mOpenHelper.getWritableDatabase())) {
Sunny Goyal8c48d8b2019-01-25 15:10:18 -0800301 boolean isAddOrDelete = false;
Sunny Goyal161a2142018-10-29 14:02:20 -0700302
303 final int numOperations = operations.size();
304 final ContentProviderResult[] results = new ContentProviderResult[numOperations];
305 for (int i = 0; i < numOperations; i++) {
306 ContentProviderOperation op = operations.get(i);
307 results[i] = op.apply(this, results, i);
308
309 isAddOrDelete |= (op.isInsert() || op.isDelete()) &&
310 results[i].count != null && results[i].count > 0;
311 }
312 if (isAddOrDelete) {
Tracy Zhou7df93d22020-01-27 13:44:06 -0800313 onAddOrDeleteOp(t.getDb());
Sunny Goyal161a2142018-10-29 14:02:20 -0700314 }
315
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700316 t.commit();
Sunny Goyald1064182015-08-13 12:08:30 -0700317 reloadLauncherIfExternal();
Sunny Goyal161a2142018-10-29 14:02:20 -0700318 return results;
Yura085c8532014-02-11 15:15:29 +0000319 }
320 }
321
322 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800323 public int delete(Uri uri, String selection, String[] selectionArgs) {
Sunny Goyald3849d12015-10-29 10:28:32 -0700324 createDbIfNotExists();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800325 SqlArguments args = new SqlArguments(uri, selection, selectionArgs);
326
327 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800328
Louis Begina9c21c62016-08-15 15:18:41 -0700329 if (Binder.getCallingPid() != Process.myPid()
330 && Favorites.TABLE_NAME.equalsIgnoreCase(args.table)) {
Sunny Goyal55fddc82017-04-06 15:02:52 -0700331 mOpenHelper.removeGhostWidgets(mOpenHelper.getWritableDatabase());
Louis Begina9c21c62016-08-15 15:18:41 -0700332 }
333 int count = db.delete(args.table, args.where, args.args);
334 if (count > 0) {
Tracy Zhou7df93d22020-01-27 13:44:06 -0800335 onAddOrDeleteOp(db);
Louis Begina9c21c62016-08-15 15:18:41 -0700336 reloadLauncherIfExternal();
337 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800338 return count;
339 }
340
341 @Override
342 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
Sunny Goyald3849d12015-10-29 10:28:32 -0700343 createDbIfNotExists();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800344 SqlArguments args = new SqlArguments(uri, selection, selectionArgs);
345
Chris Wren1ada10d2013-09-13 18:01:38 -0400346 addModifiedTime(values);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800347 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
348 int count = db.update(args.table, values, args.where, args.args);
Sunny Goyald1064182015-08-13 12:08:30 -0700349 reloadLauncherIfExternal();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800350 return count;
351 }
352
Sunny Goyal7779d622015-06-11 16:18:39 -0700353 @Override
Tony Wickham827cef22016-03-17 15:39:39 -0700354 public Bundle call(String method, final String arg, final Bundle extras) {
Sunny Goyal7779d622015-06-11 16:18:39 -0700355 if (Binder.getCallingUid() != Process.myUid()) {
356 return null;
357 }
Sunny Goyald3849d12015-10-29 10:28:32 -0700358 createDbIfNotExists();
Sunny Goyal7779d622015-06-11 16:18:39 -0700359
360 switch (method) {
Sunny Goyald2497482015-09-22 18:24:19 -0700361 case LauncherSettings.Settings.METHOD_CLEAR_EMPTY_DB_FLAG: {
362 clearFlagEmptyDbCreated();
363 return null;
364 }
Sunny Goyala5c8a9e2016-07-08 08:32:44 -0700365 case LauncherSettings.Settings.METHOD_WAS_EMPTY_DB_CREATED : {
366 Bundle result = new Bundle();
367 result.putBoolean(LauncherSettings.Settings.EXTRA_VALUE,
368 Utilities.getPrefs(getContext()).getBoolean(EMPTY_DATABASE_CREATED, false));
369 return result;
370 }
Sunny Goyald2497482015-09-22 18:24:19 -0700371 case LauncherSettings.Settings.METHOD_DELETE_EMPTY_FOLDERS: {
372 Bundle result = new Bundle();
Sunny Goyalefb7e842018-10-04 15:11:00 -0700373 result.putIntArray(LauncherSettings.Settings.EXTRA_VALUE, deleteEmptyFolders()
374 .toArray());
Sunny Goyald2497482015-09-22 18:24:19 -0700375 return result;
376 }
377 case LauncherSettings.Settings.METHOD_NEW_ITEM_ID: {
378 Bundle result = new Bundle();
Tracy Zhou7df93d22020-01-27 13:44:06 -0800379 result.putInt(LauncherSettings.Settings.EXTRA_VALUE,
380 mOpenHelper.generateNewItemId());
Sunny Goyald2497482015-09-22 18:24:19 -0700381 return result;
382 }
383 case LauncherSettings.Settings.METHOD_NEW_SCREEN_ID: {
384 Bundle result = new Bundle();
Tracy Zhou7df93d22020-01-27 13:44:06 -0800385 result.putInt(LauncherSettings.Settings.EXTRA_VALUE,
386 mOpenHelper.generateNewScreenId());
Sunny Goyald2497482015-09-22 18:24:19 -0700387 return result;
388 }
389 case LauncherSettings.Settings.METHOD_CREATE_EMPTY_DB: {
Sunny Goyale05b08f2017-02-23 18:30:22 -0800390 mOpenHelper.createEmptyDB(mOpenHelper.getWritableDatabase());
Sunny Goyald2497482015-09-22 18:24:19 -0700391 return null;
392 }
393 case LauncherSettings.Settings.METHOD_LOAD_DEFAULT_FAVORITES: {
394 loadDefaultFavoritesIfNecessary();
395 return null;
396 }
Sunny Goyal55fddc82017-04-06 15:02:52 -0700397 case LauncherSettings.Settings.METHOD_REMOVE_GHOST_WIDGETS: {
398 mOpenHelper.removeGhostWidgets(mOpenHelper.getWritableDatabase());
399 return null;
400 }
Sunny Goyal161a2142018-10-29 14:02:20 -0700401 case LauncherSettings.Settings.METHOD_NEW_TRANSACTION: {
402 Bundle result = new Bundle();
403 result.putBinder(LauncherSettings.Settings.EXTRA_VALUE,
404 new SQLiteTransaction(mOpenHelper.getWritableDatabase()));
405 return result;
406 }
407 case LauncherSettings.Settings.METHOD_REFRESH_BACKUP_TABLE: {
Tracy Zhou7df93d22020-01-27 13:44:06 -0800408 // TODO(pinyaoting): Update the behavior here.
409 if (!MULTI_DB_GRID_MIRATION_ALGO.get()) {
410 mOpenHelper.mBackupTableExists =
411 tableExists(mOpenHelper.getReadableDatabase(),
412 Favorites.BACKUP_TABLE_NAME);
413 }
Sunny Goyal161a2142018-10-29 14:02:20 -0700414 return null;
415 }
Pinyao Tingba9c5572019-09-24 14:25:46 -0700416 case LauncherSettings.Settings.METHOD_RESTORE_BACKUP_TABLE: {
Pinyao Tingad5f2402019-12-10 14:56:34 -0800417 final Handler handler = MODEL_EXECUTOR.getHandler();
418 handler.removeCallbacksAndMessages(TOKEN_RESTORE_BACKUP_TABLE);
419 handler.postDelayed(() -> RestoreDbTask.restoreIfPossible(
420 getContext(), mOpenHelper, new BackupManager(getContext())),
421 TOKEN_RESTORE_BACKUP_TABLE, RESTORE_BACKUP_TABLE_DELAY);
Pinyao Tingba9c5572019-09-24 14:25:46 -0700422 return null;
423 }
Tracy Zhou7df93d22020-01-27 13:44:06 -0800424 case LauncherSettings.Settings.METHOD_UPDATE_CURRENT_OPEN_HELPER: {
425 if (MULTI_DB_GRID_MIRATION_ALGO.get()) {
426 Bundle result = new Bundle();
427 result.putBoolean(LauncherSettings.Settings.EXTRA_VALUE,
428 updateCurrentOpenHelper());
429 return result;
430 }
431 }
Sunny Goyal7779d622015-06-11 16:18:39 -0700432 }
433 return null;
434 }
435
Tracy Zhou7df93d22020-01-27 13:44:06 -0800436 private void onAddOrDeleteOp(SQLiteDatabase db) {
437 if (MULTI_DB_GRID_MIRATION_ALGO.get()) {
438 // TODO(pingyaoting): Implement the behavior here.
439 } else {
440 mOpenHelper.onAddOrDeleteOp(db);
441 }
442 }
443
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700444 /**
445 * Deletes any empty folder from the DB.
446 * @return Ids of deleted folders.
447 */
Sunny Goyalefb7e842018-10-04 15:11:00 -0700448 private IntArray deleteEmptyFolders() {
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700449 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700450 try (SQLiteTransaction t = new SQLiteTransaction(db)) {
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700451 // Select folders whose id do not match any container value.
452 String selection = LauncherSettings.Favorites.ITEM_TYPE + " = "
453 + LauncherSettings.Favorites.ITEM_TYPE_FOLDER + " AND "
454 + LauncherSettings.Favorites._ID + " NOT IN (SELECT " +
455 LauncherSettings.Favorites.CONTAINER + " FROM "
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700456 + Favorites.TABLE_NAME + ")";
Sunny Goyalc5939392018-12-07 11:43:47 -0800457
458 IntArray folderIds = LauncherDbUtils.queryIntArray(db, Favorites.TABLE_NAME,
459 Favorites._ID, selection, null, null);
Sunny Goyald2497482015-09-22 18:24:19 -0700460 if (!folderIds.isEmpty()) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700461 db.delete(Favorites.TABLE_NAME, Utilities.createDbSelectionQuery(
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700462 LauncherSettings.Favorites._ID, folderIds), null);
463 }
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700464 t.commit();
Sunny Goyalc5939392018-12-07 11:43:47 -0800465 return folderIds;
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700466 } catch (SQLException ex) {
467 Log.e(TAG, ex.getMessage(), ex);
Sunny Goyalc5939392018-12-07 11:43:47 -0800468 return new IntArray();
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700469 }
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700470 }
471
Adam Cohen091440a2015-03-18 14:16:05 -0700472 @Thunk static void addModifiedTime(ContentValues values) {
Sunny Goyalc5939392018-12-07 11:43:47 -0800473 values.put(LauncherSettings.Favorites.MODIFIED, System.currentTimeMillis());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800474 }
475
Sunny Goyald2497482015-09-22 18:24:19 -0700476 private void clearFlagEmptyDbCreated() {
Sunny Goyalf7258242015-10-19 16:59:07 -0700477 Utilities.getPrefs(getContext()).edit().remove(EMPTY_DATABASE_CREATED).commit();
Sunny Goyal33d44382014-10-16 09:24:19 -0700478 }
479
Sunny Goyal42de82f2014-09-26 22:09:29 -0700480 /**
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700481 * Loads the default workspace based on the following priority scheme:
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700482 * 1) From the app restrictions
483 * 2) From a package provided by play store
484 * 3) From a partner configuration APK, already in the system image
485 * 4) The default configuration for the particular device
Brian Muramatsu5524b492012-10-02 16:55:54 -0700486 */
Sunny Goyald2497482015-09-22 18:24:19 -0700487 synchronized private void loadDefaultFavoritesIfNecessary() {
Sunny Goyalf7258242015-10-19 16:59:07 -0700488 SharedPreferences sp = Utilities.getPrefs(getContext());
Adam Cohene25af792013-06-06 23:08:25 -0700489
Winson Chungc763c4e2013-07-19 13:49:06 -0700490 if (sp.getBoolean(EMPTY_DATABASE_CREATED, false)) {
Chris Wren5dee7af2013-12-20 17:22:11 -0500491 Log.d(TAG, "loading default workspace");
Michael Jurka45355c42012-10-08 13:21:35 +0200492
Sunny Goyal55fddc82017-04-06 15:02:52 -0700493 AppWidgetHost widgetHost = mOpenHelper.newLauncherWidgetHost();
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700494 AutoInstallsLayout loader = createWorkspaceLoaderFromAppRestriction(widgetHost);
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700495 if (loader == null) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700496 loader = AutoInstallsLayout.get(getContext(),widgetHost, mOpenHelper);
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700497 }
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700498 if (loader == null) {
Adam Cohen9b8f51f2014-05-30 15:34:09 -0700499 final Partner partner = Partner.get(getContext().getPackageManager());
500 if (partner != null && partner.hasDefaultLayout()) {
501 final Resources partnerRes = partner.getResources();
Adam Cohen4ae96ce2014-08-29 15:05:48 -0700502 int workspaceResId = partnerRes.getIdentifier(Partner.RES_DEFAULT_LAYOUT,
Adam Cohen9b8f51f2014-05-30 15:34:09 -0700503 "xml", partner.getPackageName());
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700504 if (workspaceResId != 0) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700505 loader = new DefaultLayoutParser(getContext(), widgetHost,
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700506 mOpenHelper, partnerRes, workspaceResId);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700507 }
Adam Cohen9b8f51f2014-05-30 15:34:09 -0700508 }
509 }
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700510
Sunny Goyal9d219682014-10-23 14:21:02 -0700511 final boolean usingExternallyProvidedLayout = loader != null;
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700512 if (loader == null) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700513 loader = getDefaultLayoutParser(widgetHost);
Brian Muramatsu5524b492012-10-02 16:55:54 -0700514 }
Sunny Goyalc6c8fef2015-03-04 09:51:18 -0800515
516 // There might be some partially restored DB items, due to buggy restore logic in
517 // previous versions of launcher.
Sunny Goyale05b08f2017-02-23 18:30:22 -0800518 mOpenHelper.createEmptyDB(mOpenHelper.getWritableDatabase());
Michael Jurkab85f8a42012-04-25 15:48:32 -0700519 // Populate favorites table with initial favorites
Sunny Goyal9d219682014-10-23 14:21:02 -0700520 if ((mOpenHelper.loadFavorites(mOpenHelper.getWritableDatabase(), loader) <= 0)
521 && usingExternallyProvidedLayout) {
522 // Unable to load external layout. Cleanup and load the internal layout.
Sunny Goyale05b08f2017-02-23 18:30:22 -0800523 mOpenHelper.createEmptyDB(mOpenHelper.getWritableDatabase());
Sunny Goyal9d219682014-10-23 14:21:02 -0700524 mOpenHelper.loadFavorites(mOpenHelper.getWritableDatabase(),
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700525 getDefaultLayoutParser(widgetHost));
Sunny Goyal9d219682014-10-23 14:21:02 -0700526 }
Sunny Goyal33d44382014-10-16 09:24:19 -0700527 clearFlagEmptyDbCreated();
Michael Jurkab85f8a42012-04-25 15:48:32 -0700528 }
529 }
530
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700531 /**
532 * Creates workspace loader from an XML resource listed in the app restrictions.
533 *
534 * @return the loader if the restrictions are set and the resource exists; null otherwise.
535 */
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700536 private AutoInstallsLayout createWorkspaceLoaderFromAppRestriction(AppWidgetHost widgetHost) {
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700537 Context ctx = getContext();
Sunny Goyalc0f03d92019-03-22 14:13:36 -0700538 String authority = Settings.Secure.getString(ctx.getContentResolver(),
539 "launcher3.layout.provider");
540 if (TextUtils.isEmpty(authority)) {
Sunny Goyal35ca8732015-04-06 10:45:31 -0700541 return null;
542 }
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700543
Sunny Goyalc0f03d92019-03-22 14:13:36 -0700544 ProviderInfo pi = ctx.getPackageManager().resolveContentProvider(authority, 0);
545 if (pi == null) {
546 Log.e(TAG, "No provider found for authority " + authority);
547 return null;
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700548 }
Sunny Goyal4b5b0eb2019-12-02 17:00:35 -0800549 Uri uri = getLayoutUri(authority, ctx);
Sunny Goyalc0f03d92019-03-22 14:13:36 -0700550 try (InputStream in = ctx.getContentResolver().openInputStream(uri)) {
551 // Read the full xml so that we fail early in case of any IO error.
552 String layout = new String(IOUtils.toByteArray(in));
553 XmlPullParser parser = Xml.newPullParser();
554 parser.setInput(new StringReader(layout));
555
556 Log.d(TAG, "Loading layout from " + authority);
557 return new AutoInstallsLayout(ctx, widgetHost, mOpenHelper,
558 ctx.getPackageManager().getResourcesForApplication(pi.applicationInfo),
559 () -> parser, AutoInstallsLayout.TAG_WORKSPACE);
560 } catch (Exception e) {
561 Log.e(TAG, "Error getting layout stream from: " + authority , e);
562 return null;
563 }
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700564 }
565
Sunny Goyal4b5b0eb2019-12-02 17:00:35 -0800566 public static Uri getLayoutUri(String authority, Context ctx) {
567 InvariantDeviceProfile grid = LauncherAppState.getIDP(ctx);
568 return new Uri.Builder().scheme("content").authority(authority).path("launcher_layout")
569 .appendQueryParameter("version", "1")
570 .appendQueryParameter("gridWidth", Integer.toString(grid.numColumns))
571 .appendQueryParameter("gridHeight", Integer.toString(grid.numRows))
572 .appendQueryParameter("hotseatSize", Integer.toString(grid.numHotseatIcons))
573 .build();
574 }
575
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700576 private DefaultLayoutParser getDefaultLayoutParser(AppWidgetHost widgetHost) {
Adam Cohen27824492017-09-22 17:10:55 -0700577 InvariantDeviceProfile idp = LauncherAppState.getIDP(getContext());
578 int defaultLayout = idp.defaultLayoutId;
579
Sunny Goyal337c81f2019-12-10 12:19:13 -0800580 if (getContext().getSystemService(UserManager.class).isDemoUser()
581 && idp.demoModeLayoutId != 0) {
Adam Cohen27824492017-09-22 17:10:55 -0700582 defaultLayout = idp.demoModeLayoutId;
583 }
584
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700585 return new DefaultLayoutParser(getContext(), widgetHost,
Sunny Goyal9d219682014-10-23 14:21:02 -0700586 mOpenHelper, getContext().getResources(), defaultLayout);
587 }
588
Sunny Goyald3849d12015-10-29 10:28:32 -0700589 /**
Sunny Goyalf076eae2016-01-11 12:25:10 -0800590 * The class is subclassed in tests to create an in-memory db.
591 */
Tracy Zhou7df93d22020-01-27 13:44:06 -0800592 public static class DatabaseHelper extends NoLocaleSQLiteHelper implements
593 LayoutParserCallback {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800594 private final Context mContext;
Sunny Goyalefb7e842018-10-04 15:11:00 -0700595 private int mMaxItemId = -1;
596 private int mMaxScreenId = -1;
Sunny Goyal161a2142018-10-29 14:02:20 -0700597 private boolean mBackupTableExists;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800598
Sunny Goyal01615a62019-09-20 12:00:07 -0700599 DatabaseHelper(Context context) {
Tracy Zhou7df93d22020-01-27 13:44:06 -0800600 this(context, MULTI_DB_GRID_MIRATION_ALGO.get() ? InvariantDeviceProfile.INSTANCE.get(
601 context).dbFile : LauncherFiles.LAUNCHER_DB);
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700602 // Table creation sometimes fails silently, which leads to a crash loop.
603 // This way, we will try to create a table every time after crash, so the device
604 // would eventually be able to recover.
Sunny Goyal161a2142018-10-29 14:02:20 -0700605 if (!tableExists(getReadableDatabase(), Favorites.TABLE_NAME)) {
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700606 Log.e(TAG, "Tables are missing after onCreate has been called. Trying to recreate");
607 // This operation is a no-op if the table already exists.
608 addFavoritesTable(getWritableDatabase(), true);
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700609 }
Tracy Zhou7df93d22020-01-27 13:44:06 -0800610 if (!MULTI_DB_GRID_MIRATION_ALGO.get()) {
611 mBackupTableExists = tableExists(getReadableDatabase(),
612 Favorites.BACKUP_TABLE_NAME);
613 }
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700614
Sunny Goyal7eab3cc2016-03-18 17:42:55 -0700615 initIds();
616 }
617
618 /**
Sunny Goyalc190dbf2016-05-05 14:37:05 -0700619 * Constructor used in tests and for restore.
Sunny Goyal7eab3cc2016-03-18 17:42:55 -0700620 */
Tracy Zhou7df93d22020-01-27 13:44:06 -0800621 public DatabaseHelper(Context context, String dbName) {
622 super(context, dbName, SCHEMA_VERSION);
Sunny Goyal7eab3cc2016-03-18 17:42:55 -0700623 mContext = context;
Sunny Goyal7eab3cc2016-03-18 17:42:55 -0700624 }
625
626 protected void initIds() {
Winson Chung3d503fb2011-07-13 17:25:49 -0700627 // In the case where neither onCreate nor onUpgrade gets called, we read the maxId from
628 // the DB here
Adam Cohendcd297f2013-06-18 13:13:40 -0700629 if (mMaxItemId == -1) {
630 mMaxItemId = initializeMaxItemId(getWritableDatabase());
631 }
632 if (mMaxScreenId == -1) {
633 mMaxScreenId = initializeMaxScreenId(getWritableDatabase());
Winson Chung3d503fb2011-07-13 17:25:49 -0700634 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800635 }
636
637 @Override
638 public void onCreate(SQLiteDatabase db) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800639 if (LOGD) Log.d(TAG, "creating new launcher database");
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700640
Adam Cohendcd297f2013-06-18 13:13:40 -0700641 mMaxItemId = 1;
642 mMaxScreenId = 0;
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700643
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700644 addFavoritesTable(db, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800645
Sunny Goyale87e6ab2014-11-21 22:42:53 -0800646 // Fresh and clean launcher DB.
647 mMaxItemId = initializeMaxItemId(db);
Sunny Goyalf076eae2016-01-11 12:25:10 -0800648 onEmptyDbCreated();
649 }
650
Sunny Goyal161a2142018-10-29 14:02:20 -0700651 protected void onAddOrDeleteOp(SQLiteDatabase db) {
Tracy Zhou7df93d22020-01-27 13:44:06 -0800652 if (!MULTI_DB_GRID_MIRATION_ALGO.get() && mBackupTableExists) {
Sunny Goyal161a2142018-10-29 14:02:20 -0700653 dropTable(db, Favorites.BACKUP_TABLE_NAME);
654 mBackupTableExists = false;
655 }
656 }
657
Sunny Goyalf076eae2016-01-11 12:25:10 -0800658 /**
659 * Overriden in tests.
660 */
661 protected void onEmptyDbCreated() {
662 // Set the flag for empty DB
663 Utilities.getPrefs(mContext).edit().putBoolean(EMPTY_DATABASE_CREATED, true).commit();
Sunny Goyalf076eae2016-01-11 12:25:10 -0800664 }
665
Jon Miranda2bc6b932019-03-07 15:24:46 -0800666 public long getSerialNumberForUser(UserHandle user) {
Sunny Goyal337c81f2019-12-10 12:19:13 -0800667 return UserCache.INSTANCE.get(mContext).getSerialNumberForUser(user);
Jon Miranda2bc6b932019-03-07 15:24:46 -0800668 }
669
Sunny Goyale8f7d5a2016-05-24 11:30:14 -0700670 public long getDefaultUserSerial() {
Jon Miranda2bc6b932019-03-07 15:24:46 -0800671 return getSerialNumberForUser(Process.myUserHandle());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800672 }
673
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700674 private void addFavoritesTable(SQLiteDatabase db, boolean optional) {
Sunny Goyalc190dbf2016-05-05 14:37:05 -0700675 Favorites.addTableToDb(db, getDefaultUserSerial(), optional);
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700676 }
677
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800678 @Override
Sunny Goyal3c7d55b2017-04-13 12:01:47 -0700679 public void onOpen(SQLiteDatabase db) {
680 super.onOpen(db);
Sunny Goyal05f30882017-05-03 12:42:18 -0700681
682 File schemaFile = mContext.getFileStreamPath(DOWNGRADE_SCHEMA_FILE);
683 if (!schemaFile.exists()) {
684 handleOneTimeDataUpgrade(db);
Sunny Goyal3c7d55b2017-04-13 12:01:47 -0700685 }
Sunny Goyalc5939392018-12-07 11:43:47 -0800686 DbDowngradeHelper.updateSchemaFile(schemaFile, SCHEMA_VERSION, mContext);
Sunny Goyal3c7d55b2017-04-13 12:01:47 -0700687 }
688
689 /**
Sunny Goyal05f30882017-05-03 12:42:18 -0700690 * One-time data updated before support of onDowngrade was added. This update is backwards
691 * compatible and can safely be run multiple times.
692 * Note: No new logic should be added here after release, as the new logic might not get
693 * executed on an existing device.
694 * TODO: Move this to db upgrade path, once the downgrade path is released.
Sunny Goyal3c7d55b2017-04-13 12:01:47 -0700695 */
Sunny Goyal05f30882017-05-03 12:42:18 -0700696 protected void handleOneTimeDataUpgrade(SQLiteDatabase db) {
697 // Remove "profile extra"
Sunny Goyal337c81f2019-12-10 12:19:13 -0800698 UserCache um = UserCache.INSTANCE.get(mContext);
Sunny Goyal05f30882017-05-03 12:42:18 -0700699 for (UserHandle user : um.getUserProfiles()) {
700 long serial = um.getSerialNumberForUser(user);
701 String sql = "update favorites set intent = replace(intent, "
702 + "';l.profile=" + serial + ";', ';') where itemType = 0;";
703 db.execSQL(sql);
Sunny Goyal3c7d55b2017-04-13 12:01:47 -0700704 }
705 }
706
707 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800708 public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
Winson Chungc763c4e2013-07-19 13:49:06 -0700709 if (LOGD) Log.d(TAG, "onUpgrade triggered: " + oldVersion);
Sunny Goyala2cc6242015-01-14 14:23:02 -0800710 switch (oldVersion) {
711 // The version cannot be lower that 12, as Launcher3 never supported a lower
Sunny Goyale87e6ab2014-11-21 22:42:53 -0800712 // version of the DB.
Sunny Goyalc5939392018-12-07 11:43:47 -0800713 case 12:
714 // No-op
Sunny Goyala2cc6242015-01-14 14:23:02 -0800715 case 13: {
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700716 try (SQLiteTransaction t = new SQLiteTransaction(db)) {
Sunny Goyala2cc6242015-01-14 14:23:02 -0800717 // Insert new column for holding widget provider name
718 db.execSQL("ALTER TABLE favorites " +
719 "ADD COLUMN appWidgetProvider TEXT;");
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700720 t.commit();
Sunny Goyala2cc6242015-01-14 14:23:02 -0800721 } catch (SQLException ex) {
722 Log.e(TAG, ex.getMessage(), ex);
723 // Old version remains, which means we wipe old data
724 break;
Sunny Goyala2cc6242015-01-14 14:23:02 -0800725 }
726 }
727 case 14: {
Sunny Goyalc5939392018-12-07 11:43:47 -0800728 if (!addIntegerColumn(db, Favorites.MODIFIED, 0)) {
Sunny Goyala2cc6242015-01-14 14:23:02 -0800729 // Old version remains, which means we wipe old data
730 break;
Sunny Goyala2cc6242015-01-14 14:23:02 -0800731 }
732 }
733 case 15: {
Sunny Goyal5d85c442015-03-10 13:14:47 -0700734 if (!addIntegerColumn(db, Favorites.RESTORED, 0)) {
Sunny Goyala2cc6242015-01-14 14:23:02 -0800735 // Old version remains, which means we wipe old data
736 break;
Sunny Goyala2cc6242015-01-14 14:23:02 -0800737 }
738 }
Sunny Goyalc5939392018-12-07 11:43:47 -0800739 case 16:
Sunny Goyal10629b02016-09-01 12:50:11 -0700740 // No-op
Sunny Goyalc5939392018-12-07 11:43:47 -0800741 case 17:
Sunny Goyala2cc6242015-01-14 14:23:02 -0800742 // No-op
Sunny Goyalc5939392018-12-07 11:43:47 -0800743 case 18:
744 // No-op
Sunny Goyala2cc6242015-01-14 14:23:02 -0800745 case 19: {
746 // Add userId column
Sunny Goyalc5939392018-12-07 11:43:47 -0800747 if (!addIntegerColumn(db, Favorites.PROFILE_ID, getDefaultUserSerial())) {
Sunny Goyala2cc6242015-01-14 14:23:02 -0800748 // Old version remains, which means we wipe old data
749 break;
750 }
751 }
752 case 20:
753 if (!updateFolderItemsRank(db, true)) {
754 break;
755 }
Sunny Goyald2f38192015-02-25 10:46:34 -0800756 case 21:
Sunny Goyalc5939392018-12-07 11:43:47 -0800757 // No-op
Sunny Goyald2f38192015-02-25 10:46:34 -0800758 case 22: {
Sunny Goyal5d85c442015-03-10 13:14:47 -0700759 if (!addIntegerColumn(db, Favorites.OPTIONS, 0)) {
760 // Old version remains, which means we wipe old data
761 break;
762 }
763 }
Sunny Goyal0b037782015-04-02 10:27:03 -0700764 case 23:
Sunny Goyal5c97f512015-05-19 16:03:28 -0700765 // No-op
Sunny Goyale2fba6c2015-05-12 10:39:59 -0700766 case 24:
Tony Mak1b6826c2018-02-27 15:06:12 +0000767 // No-op
Sunny Goyal5c97f512015-05-19 16:03:28 -0700768 case 25:
769 convertShortcutsToLauncherActivities(db);
Sunny Goyala9e2f5a2016-06-10 12:22:04 -0700770 case 26:
771 // QSB was moved to the grid. Clear the first row on screen 0.
Jon Miranda7143ba62019-03-15 09:00:05 -0700772 if (FeatureFlags.QSB_ON_FIRST_SCREEN &&
Sunny Goyal8ad02b82016-12-29 13:31:43 -0800773 !LauncherDbUtils.prepareScreenZeroToHostQsb(mContext, db)) {
Sunny Goyala9e2f5a2016-06-10 12:22:04 -0700774 break;
775 }
Sunny Goyalc5939392018-12-07 11:43:47 -0800776 case 27: {
777 // Update the favorites table so that the screen ids are ordered based on
778 // workspace page rank.
779 IntArray finalScreens = LauncherDbUtils.queryIntArray(db, "workspaceScreens",
780 BaseColumns._ID, null, null, "screenRank");
781 int[] original = finalScreens.toArray();
782 Arrays.sort(original);
783 String updatemap = "";
784 for (int i = 0; i < original.length; i++) {
785 if (finalScreens.get(i) != original[i]) {
786 updatemap += String.format(Locale.ENGLISH, " WHEN %1$s=%2$d THEN %3$d",
787 Favorites.SCREEN, finalScreens.get(i), original[i]);
788 }
789 }
790 if (!TextUtils.isEmpty(updatemap)) {
791 String query = String.format(Locale.ENGLISH,
792 "UPDATE %1$s SET %2$s=CASE %3$s ELSE %2$s END WHERE %4$s = %5$d",
793 Favorites.TABLE_NAME, Favorites.SCREEN, updatemap,
794 Favorites.CONTAINER, Favorites.CONTAINER_DESKTOP);
795 db.execSQL(query);
796 }
Sunny Goyal161a2142018-10-29 14:02:20 -0700797 dropTable(db, "workspaceScreens");
Sunny Goyalc5939392018-12-07 11:43:47 -0800798 }
799 case 28:
Sunny Goyala2cc6242015-01-14 14:23:02 -0800800 // DB Upgraded successfully
801 return;
Chris Wrend5e66bf2013-09-16 14:02:29 -0400802 }
803
Sunny Goyala2cc6242015-01-14 14:23:02 -0800804 // DB was not upgraded
805 Log.w(TAG, "Destroying all old data.");
806 createEmptyDB(db);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800807 }
Romain Guy7eb9e5e2009-12-02 20:10:07 -0800808
Adam Cohen9b1d0622014-05-21 19:01:57 -0700809 @Override
810 public void onDowngrade(SQLiteDatabase db, int oldVersion, int newVersion) {
Sunny Goyal05f30882017-05-03 12:42:18 -0700811 try {
812 DbDowngradeHelper.parse(mContext.getFileStreamPath(DOWNGRADE_SCHEMA_FILE))
813 .onDowngrade(db, oldVersion, newVersion);
814 } catch (Exception e) {
815 Log.d(TAG, "Unable to downgrade from: " + oldVersion + " to " + newVersion +
816 ". Wiping databse.", e);
817 createEmptyDB(db);
Sunny Goyal3c7d55b2017-04-13 12:01:47 -0700818 }
Sunny Goyal42de82f2014-09-26 22:09:29 -0700819 }
Adam Cohen9b1d0622014-05-21 19:01:57 -0700820
Sunny Goyal42de82f2014-09-26 22:09:29 -0700821 /**
822 * Clears all the data for a fresh start.
823 */
824 public void createEmptyDB(SQLiteDatabase db) {
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700825 try (SQLiteTransaction t = new SQLiteTransaction(db)) {
Sunny Goyal161a2142018-10-29 14:02:20 -0700826 dropTable(db, Favorites.TABLE_NAME);
827 dropTable(db, "workspaceScreens");
Sunny Goyale05b08f2017-02-23 18:30:22 -0800828 onCreate(db);
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700829 t.commit();
Sunny Goyale05b08f2017-02-23 18:30:22 -0800830 }
Adam Cohen9b1d0622014-05-21 19:01:57 -0700831 }
832
Sunny Goyald2f38192015-02-25 10:46:34 -0800833 /**
Sunny Goyal55fddc82017-04-06 15:02:52 -0700834 * Removes widgets which are registered to the Launcher's host, but are not present
835 * in our model.
836 */
Sunny Goyal22ca9ec2017-05-18 15:03:13 -0700837 @TargetApi(Build.VERSION_CODES.O)
Sunny Goyal55fddc82017-04-06 15:02:52 -0700838 public void removeGhostWidgets(SQLiteDatabase db) {
839 // Get all existing widget ids.
840 final AppWidgetHost host = newLauncherWidgetHost();
841 final int[] allWidgets;
842 try {
Sunny Goyal22ca9ec2017-05-18 15:03:13 -0700843 // Although the method was defined in O, it has existed since the beginning of time,
844 // so it might work on older platforms as well.
845 allWidgets = host.getAppWidgetIds();
846 } catch (IncompatibleClassChangeError e) {
Sunny Goyal55fddc82017-04-06 15:02:52 -0700847 Log.e(TAG, "getAppWidgetIds not supported", e);
848 return;
849 }
Sunny Goyalc5939392018-12-07 11:43:47 -0800850 final IntSet validWidgets = IntSet.wrap(LauncherDbUtils.queryIntArray(db,
851 Favorites.TABLE_NAME, Favorites.APPWIDGET_ID,
852 "itemType=" + Favorites.ITEM_TYPE_APPWIDGET, null, null));
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700853 for (int widgetId : allWidgets) {
854 if (!validWidgets.contains(widgetId)) {
855 try {
856 FileLog.d(TAG, "Deleting invalid widget " + widgetId);
857 host.deleteAppWidgetId(widgetId);
858 } catch (RuntimeException e) {
859 // Ignore
860 }
861 }
Sunny Goyal55fddc82017-04-06 15:02:52 -0700862 }
863 }
864
865 /**
Sunny Goyal0b037782015-04-02 10:27:03 -0700866 * Replaces all shortcuts of type {@link Favorites#ITEM_TYPE_SHORTCUT} which have a valid
867 * launcher activity target with {@link Favorites#ITEM_TYPE_APPLICATION}.
868 */
Sunny Goyal316490e2015-06-02 09:38:28 -0700869 @Thunk void convertShortcutsToLauncherActivities(SQLiteDatabase db) {
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700870 try (SQLiteTransaction t = new SQLiteTransaction(db);
871 // Only consider the primary user as other users can't have a shortcut.
872 Cursor c = db.query(Favorites.TABLE_NAME,
873 new String[] { Favorites._ID, Favorites.INTENT},
874 "itemType=" + Favorites.ITEM_TYPE_SHORTCUT +
875 " AND profileId=" + getDefaultUserSerial(),
876 null, null, null, null);
877 SQLiteStatement updateStmt = db.compileStatement("UPDATE favorites SET itemType="
878 + Favorites.ITEM_TYPE_APPLICATION + " WHERE _id=?")
879 ) {
Sunny Goyal0b037782015-04-02 10:27:03 -0700880 final int idIndex = c.getColumnIndexOrThrow(Favorites._ID);
881 final int intentIndex = c.getColumnIndexOrThrow(Favorites.INTENT);
882
883 while (c.moveToNext()) {
884 String intentDescription = c.getString(intentIndex);
885 Intent intent;
886 try {
887 intent = Intent.parseUri(intentDescription, 0);
888 } catch (URISyntaxException e) {
889 Log.e(TAG, "Unable to parse intent", e);
890 continue;
891 }
892
Sunny Goyal9dbb27c2019-07-17 15:12:56 -0700893 if (!PackageManagerHelper.isLauncherAppTarget(intent)) {
Sunny Goyal0b037782015-04-02 10:27:03 -0700894 continue;
895 }
896
Sunny Goyalefb7e842018-10-04 15:11:00 -0700897 int id = c.getInt(idIndex);
Sunny Goyal0b037782015-04-02 10:27:03 -0700898 updateStmt.bindLong(1, id);
Sunny Goyalc22841b2015-07-13 19:59:50 -0700899 updateStmt.executeUpdateDelete();
Sunny Goyal0b037782015-04-02 10:27:03 -0700900 }
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700901 t.commit();
Sunny Goyal0b037782015-04-02 10:27:03 -0700902 } catch (SQLException ex) {
903 Log.w(TAG, "Error deduping shortcuts", ex);
Sunny Goyal0b037782015-04-02 10:27:03 -0700904 }
905 }
906
Adam Cohen091440a2015-03-18 14:16:05 -0700907 @Thunk boolean updateFolderItemsRank(SQLiteDatabase db, boolean addRankColumn) {
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700908 try (SQLiteTransaction t = new SQLiteTransaction(db)) {
Sunny Goyal08f72612015-01-05 13:41:43 -0800909 if (addRankColumn) {
910 // Insert new column for holding rank
911 db.execSQL("ALTER TABLE favorites ADD COLUMN rank INTEGER NOT NULL DEFAULT 0;");
912 }
913
914 // Get a map for folder ID to folder width
915 Cursor c = db.rawQuery("SELECT container, MAX(cellX) FROM favorites"
916 + " WHERE container IN (SELECT _id FROM favorites WHERE itemType = ?)"
917 + " GROUP BY container;",
918 new String[] {Integer.toString(LauncherSettings.Favorites.ITEM_TYPE_FOLDER)});
919
920 while (c.moveToNext()) {
Sunny Goyalc87775d2015-02-10 19:52:36 -0800921 db.execSQL("UPDATE favorites SET rank=cellX+(cellY*?) WHERE "
922 + "container=? AND cellX IS NOT NULL AND cellY IS NOT NULL;",
Sunny Goyal08f72612015-01-05 13:41:43 -0800923 new Object[] {c.getLong(1) + 1, c.getLong(0)});
924 }
925
926 c.close();
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700927 t.commit();
Sunny Goyal08f72612015-01-05 13:41:43 -0800928 } catch (SQLException ex) {
929 // Old version remains, which means we wipe old data
930 Log.e(TAG, ex.getMessage(), ex);
931 return false;
Sunny Goyal08f72612015-01-05 13:41:43 -0800932 }
933 return true;
934 }
935
Sunny Goyal5d85c442015-03-10 13:14:47 -0700936 private boolean addIntegerColumn(SQLiteDatabase db, String columnName, long defaultValue) {
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700937 try (SQLiteTransaction t = new SQLiteTransaction(db)) {
Sunny Goyal5d85c442015-03-10 13:14:47 -0700938 db.execSQL("ALTER TABLE favorites ADD COLUMN "
939 + columnName + " INTEGER NOT NULL DEFAULT " + defaultValue + ";");
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700940 t.commit();
Kenny Guyed131872014-04-30 03:02:21 +0100941 } catch (SQLException ex) {
Kenny Guyed131872014-04-30 03:02:21 +0100942 Log.e(TAG, ex.getMessage(), ex);
943 return false;
Kenny Guyed131872014-04-30 03:02:21 +0100944 }
945 return true;
946 }
947
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700948 // Generates a new ID to use for an object in your database. This method should be only
949 // called from the main UI thread. As an exception, we do call it when we call the
950 // constructor from the worker thread; however, this doesn't extend until after the
951 // constructor is called, and we only pass a reference to LauncherProvider to LauncherApp
952 // after that point
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700953 @Override
Sunny Goyalefb7e842018-10-04 15:11:00 -0700954 public int generateNewItemId() {
Adam Cohendcd297f2013-06-18 13:13:40 -0700955 if (mMaxItemId < 0) {
956 throw new RuntimeException("Error: max item id was not initialized");
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700957 }
Adam Cohendcd297f2013-06-18 13:13:40 -0700958 mMaxItemId += 1;
959 return mMaxItemId;
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700960 }
961
Sunny Goyal55fddc82017-04-06 15:02:52 -0700962 public AppWidgetHost newLauncherWidgetHost() {
Sunny Goyal64a75aa2017-07-03 13:50:52 -0700963 return new LauncherAppWidgetHost(mContext);
Sunny Goyal55fddc82017-04-06 15:02:52 -0700964 }
965
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700966 @Override
Sunny Goyalefb7e842018-10-04 15:11:00 -0700967 public int insertAndCheck(SQLiteDatabase db, ContentValues values) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700968 return dbInsertAndCheck(this, db, Favorites.TABLE_NAME, null, values);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700969 }
970
Sunny Goyalc5939392018-12-07 11:43:47 -0800971 public void checkId(ContentValues values) {
972 int id = values.getAsInteger(Favorites._ID);
973 mMaxItemId = Math.max(id, mMaxItemId);
974
975 Integer screen = values.getAsInteger(Favorites.SCREEN);
976 Integer container = values.getAsInteger(Favorites.CONTAINER);
977 if (screen != null && container != null
978 && container.intValue() == Favorites.CONTAINER_DESKTOP) {
979 mMaxScreenId = Math.max(screen, mMaxScreenId);
Chris Wren5dee7af2013-12-20 17:22:11 -0500980 }
981 }
982
Sunny Goyalefb7e842018-10-04 15:11:00 -0700983 private int initializeMaxItemId(SQLiteDatabase db) {
Sunny Goyalc5939392018-12-07 11:43:47 -0800984 return getMaxId(db, "SELECT MAX(%1$s) FROM %2$s", Favorites._ID, Favorites.TABLE_NAME);
Adam Cohendcd297f2013-06-18 13:13:40 -0700985 }
986
987 // Generates a new ID to use for an workspace screen in your database. This method
988 // should be only called from the main UI thread. As an exception, we do call it when we
989 // call the constructor from the worker thread; however, this doesn't extend until after the
990 // constructor is called, and we only pass a reference to LauncherProvider to LauncherApp
991 // after that point
Sunny Goyalefb7e842018-10-04 15:11:00 -0700992 public int generateNewScreenId() {
Adam Cohendcd297f2013-06-18 13:13:40 -0700993 if (mMaxScreenId < 0) {
994 throw new RuntimeException("Error: max screen id was not initialized");
995 }
996 mMaxScreenId += 1;
997 return mMaxScreenId;
998 }
999
Sunny Goyalefb7e842018-10-04 15:11:00 -07001000 private int initializeMaxScreenId(SQLiteDatabase db) {
Sunny Goyalc5939392018-12-07 11:43:47 -08001001 return getMaxId(db, "SELECT MAX(%1$s) FROM %2$s WHERE %3$s = %4$d",
1002 Favorites.SCREEN, Favorites.TABLE_NAME, Favorites.CONTAINER,
1003 Favorites.CONTAINER_DESKTOP);
Adam Cohen7ec3bbf2014-07-31 00:09:45 -07001004 }
1005
Adam Cohen091440a2015-03-18 14:16:05 -07001006 @Thunk int loadFavorites(SQLiteDatabase db, AutoInstallsLayout loader) {
Sunny Goyal0fe505b2014-08-06 09:55:36 -07001007 // TODO: Use multiple loaders with fall-back and transaction.
Sunny Goyalc5939392018-12-07 11:43:47 -08001008 int count = loader.loadLayout(db, new IntArray());
Adam Cohen71483f42014-05-15 14:04:01 -07001009
1010 // Ensure that the max ids are initialized
1011 mMaxItemId = initializeMaxItemId(db);
1012 mMaxScreenId = initializeMaxScreenId(db);
1013 return count;
1014 }
Mike Cleronb87bd162009-10-30 16:36:56 -07001015 }
Daniel Lehmannc3a80402012-04-23 21:35:11 -07001016
Sunny Goyalfe4e4b92015-03-04 10:43:45 -08001017 /**
1018 * @return the max _id in the provided table.
1019 */
Sunny Goyalc5939392018-12-07 11:43:47 -08001020 @Thunk static int getMaxId(SQLiteDatabase db, String query, Object... args) {
1021 int max = (int) DatabaseUtils.longForQuery(db,
1022 String.format(Locale.ENGLISH, query, args),
1023 null);
1024 if (max < 0) {
1025 throw new RuntimeException("Error: could not query max id");
Sunny Goyalfe4e4b92015-03-04 10:43:45 -08001026 }
Sunny Goyalc5939392018-12-07 11:43:47 -08001027 return max;
Sunny Goyalfe4e4b92015-03-04 10:43:45 -08001028 }
1029
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001030 static class SqlArguments {
1031 public final String table;
1032 public final String where;
1033 public final String[] args;
1034
1035 SqlArguments(Uri url, String where, String[] args) {
1036 if (url.getPathSegments().size() == 1) {
1037 this.table = url.getPathSegments().get(0);
1038 this.where = where;
1039 this.args = args;
1040 } else if (url.getPathSegments().size() != 2) {
1041 throw new IllegalArgumentException("Invalid URI: " + url);
1042 } else if (!TextUtils.isEmpty(where)) {
1043 throw new UnsupportedOperationException("WHERE clause not supported: " + url);
1044 } else {
1045 this.table = url.getPathSegments().get(0);
Daniel Lehmannc3a80402012-04-23 21:35:11 -07001046 this.where = "_id=" + ContentUris.parseId(url);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001047 this.args = null;
1048 }
1049 }
1050
1051 SqlArguments(Uri url) {
1052 if (url.getPathSegments().size() == 1) {
1053 table = url.getPathSegments().get(0);
1054 where = null;
1055 args = null;
1056 } else {
1057 throw new IllegalArgumentException("Invalid URI: " + url);
1058 }
1059 }
1060 }
Adam Cohen72960972014-01-15 18:13:55 -08001061}