blob: 4813571f540c57c5acaa4f9a2f35f11314066536 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Sunny Goyal22ca9ec2017-05-18 15:03:13 -070019import android.annotation.TargetApi;
The Android Open Source Project7376fae2009-03-11 12:11:58 -070020import android.appwidget.AppWidgetHost;
Mike Cleronb87bd162009-10-30 16:36:56 -070021import android.appwidget.AppWidgetManager;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080022import android.content.ComponentName;
Adam Cohen228da5a2011-07-27 22:23:47 -070023import android.content.ContentProvider;
Yura085c8532014-02-11 15:15:29 +000024import android.content.ContentProviderOperation;
25import android.content.ContentProviderResult;
Adam Cohen228da5a2011-07-27 22:23:47 -070026import android.content.ContentUris;
27import android.content.ContentValues;
28import android.content.Context;
29import android.content.Intent;
Yura085c8532014-02-11 15:15:29 +000030import android.content.OperationApplicationException;
Michael Jurkab85f8a42012-04-25 15:48:32 -070031import android.content.SharedPreferences;
Sunny Goyalb2d46ce2015-03-26 11:32:11 -070032import android.content.pm.PackageManager.NameNotFoundException;
Adam Cohen228da5a2011-07-27 22:23:47 -070033import android.content.res.Resources;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080034import android.database.Cursor;
35import android.database.SQLException;
Adam Cohen228da5a2011-07-27 22:23:47 -070036import android.database.sqlite.SQLiteDatabase;
37import android.database.sqlite.SQLiteOpenHelper;
38import android.database.sqlite.SQLiteQueryBuilder;
Sunny Goyal0b037782015-04-02 10:27:03 -070039import android.database.sqlite.SQLiteStatement;
Adam Cohen228da5a2011-07-27 22:23:47 -070040import android.net.Uri;
Sunny Goyal7779d622015-06-11 16:18:39 -070041import android.os.Binder;
Sunny Goyal22ca9ec2017-05-18 15:03:13 -070042import android.os.Build;
Sunny Goyalb2d46ce2015-03-26 11:32:11 -070043import android.os.Bundle;
Sunny Goyalb5b55c82016-05-10 12:28:59 -070044import android.os.Handler;
45import android.os.Message;
Sunny Goyal7779d622015-06-11 16:18:39 -070046import android.os.Process;
Sunny Goyale26d1002016-06-20 14:52:14 -070047import android.os.Trace;
Sunny Goyal7c74e4a2016-12-15 15:53:17 -080048import android.os.UserHandle;
Sunny Goyalb2d46ce2015-03-26 11:32:11 -070049import android.os.UserManager;
Adam Cohen228da5a2011-07-27 22:23:47 -070050import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080051import android.util.Log;
Adam Cohen228da5a2011-07-27 22:23:47 -070052
Sunny Goyal0fe505b2014-08-06 09:55:36 -070053import com.android.launcher3.AutoInstallsLayout.LayoutParserCallback;
54import com.android.launcher3.LauncherSettings.Favorites;
Sunny Goyalb5b55c82016-05-10 12:28:59 -070055import com.android.launcher3.LauncherSettings.WorkspaceScreens;
Kenny Guyed131872014-04-30 03:02:21 +010056import com.android.launcher3.compat.UserManagerCompat;
Sunny Goyala9e2f5a2016-06-10 12:22:04 -070057import com.android.launcher3.config.FeatureFlags;
Tony Wickham827cef22016-03-17 15:39:39 -070058import com.android.launcher3.dynamicui.ExtractionUtils;
Sunny Goyalca187462017-03-31 20:09:34 -070059import com.android.launcher3.graphics.IconShapeOverride;
Sunny Goyalfdbef272017-02-01 12:52:54 -080060import com.android.launcher3.logging.FileLog;
Sunny Goyal05f30882017-05-03 12:42:18 -070061import com.android.launcher3.model.DbDowngradeHelper;
Sunny Goyala9e2f5a2016-06-10 12:22:04 -070062import com.android.launcher3.provider.LauncherDbUtils;
Sunny Goyaldbfc9012017-04-17 16:58:36 -070063import com.android.launcher3.provider.LauncherDbUtils.SQLiteTransaction;
Sunny Goyale8f7d5a2016-05-24 11:30:14 -070064import com.android.launcher3.provider.RestoreDbTask;
Sunny Goyale2fba6c2015-05-12 10:39:59 -070065import com.android.launcher3.util.ManagedProfileHeuristic;
Sunny Goyalbf67f3b2016-03-15 15:30:11 -070066import com.android.launcher3.util.NoLocaleSqliteContext;
Sunny Goyalb5b55c82016-05-10 12:28:59 -070067import com.android.launcher3.util.Preconditions;
Adam Cohen091440a2015-03-18 14:16:05 -070068import com.android.launcher3.util.Thunk;
Michael Jurka8b805b12012-04-18 14:23:14 -070069
Sunny Goyal05f30882017-05-03 12:42:18 -070070import java.io.File;
Hyunyoung Song6aa37292017-02-06 10:46:24 -080071import java.io.FileDescriptor;
72import java.io.PrintWriter;
Mike Cleronb87bd162009-10-30 16:36:56 -070073import java.net.URISyntaxException;
Adam Cohen228da5a2011-07-27 22:23:47 -070074import java.util.ArrayList;
Adam Cohen71483f42014-05-15 14:04:01 -070075import java.util.Collections;
Sunny Goyal55fddc82017-04-06 15:02:52 -070076import java.util.HashSet;
Sunny Goyaldbfc9012017-04-17 16:58:36 -070077import java.util.LinkedHashSet;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080078
The Android Open Source Project31dd5032009-03-03 19:32:27 -080079public class LauncherProvider extends ContentProvider {
Sunny Goyalc74e4192015-09-08 14:01:03 -070080 private static final String TAG = "LauncherProvider";
Joe Onoratoa30ce8e2009-11-11 08:16:49 -080081 private static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080082
Sunny Goyal05f30882017-05-03 12:42:18 -070083 private static final String DOWNGRADE_SCHEMA_FILE = "downgrade_schema.json";
84
Sunny Goyal3c7d55b2017-04-13 12:01:47 -070085 /**
86 * Represents the schema of the database. Changes in scheme need not be backwards compatible.
87 */
Sunny Goyal05f30882017-05-03 12:42:18 -070088 public static final int SCHEMA_VERSION = 27;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080089
Sunny Goyal3d706ad2017-03-06 16:56:39 -080090 public static final String AUTHORITY = (BuildConfig.APPLICATION_ID + ".settings").intern();
Winson Chung3d503fb2011-07-13 17:25:49 -070091
Sunny Goyale87e6ab2014-11-21 22:42:53 -080092 static final String EMPTY_DATABASE_CREATED = "EMPTY_DATABASE_CREATED";
The Android Open Source Project31dd5032009-03-03 19:32:27 -080093
Sunny Goyalb2d46ce2015-03-26 11:32:11 -070094 private static final String RESTRICTION_PACKAGE_NAME = "workspace.configuration.package.name";
95
Sunny Goyalb5b55c82016-05-10 12:28:59 -070096 private final ChangeListenerWrapper mListenerWrapper = new ChangeListenerWrapper();
97 private Handler mListenerHandler;
98
Sunny Goyalf076eae2016-01-11 12:25:10 -080099 protected DatabaseHelper mOpenHelper;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800100
Hyunyoung Song6aa37292017-02-06 10:46:24 -0800101 /**
102 * $ adb shell dumpsys activity provider com.android.launcher3
103 */
104 @Override
105 public void dump(FileDescriptor fd, PrintWriter writer, String[] args) {
106 LauncherAppState appState = LauncherAppState.getInstanceNoCreate();
107 if (appState == null || !appState.getModel().isModelLoaded()) {
108 return;
109 }
110 appState.getModel().dumpState("", fd, writer, args);
111 }
112
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800113 @Override
114 public boolean onCreate() {
Sunny Goyal3d706ad2017-03-06 16:56:39 -0800115 if (FeatureFlags.IS_DOGFOOD_BUILD) {
Sunny Goyale26d1002016-06-20 14:52:14 -0700116 Log.d(TAG, "Launcher process started");
117 }
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700118 mListenerHandler = new Handler(mListenerWrapper);
119
Sunny Goyalfdbef272017-02-01 12:52:54 -0800120 // The content provider exists for the entire duration of the launcher main process and
121 // is the first component to get created. Initializing FileLog here ensures that it's
122 // always available in the main process.
123 FileLog.setDir(getContext().getApplicationContext().getFilesDir());
Sunny Goyalca187462017-03-31 20:09:34 -0700124 IconShapeOverride.apply(getContext());
Sunny Goyal3e443a22017-04-10 10:49:01 -0700125 SessionCommitReceiver.applyDefaultUserPrefs(getContext());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800126 return true;
127 }
128
Sunny Goyald3849d12015-10-29 10:28:32 -0700129 /**
130 * Sets a provider listener.
131 */
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700132 public void setLauncherProviderChangeListener(LauncherProviderChangeListener listener) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700133 Preconditions.assertUIThread();
134 mListenerWrapper.mListener = listener;
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700135 }
136
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800137 @Override
138 public String getType(Uri uri) {
139 SqlArguments args = new SqlArguments(uri, null, null);
140 if (TextUtils.isEmpty(args.where)) {
141 return "vnd.android.cursor.dir/" + args.table;
142 } else {
143 return "vnd.android.cursor.item/" + args.table;
144 }
145 }
146
Sunny Goyalf076eae2016-01-11 12:25:10 -0800147 /**
148 * Overridden in tests
149 */
150 protected synchronized void createDbIfNotExists() {
Sunny Goyald3849d12015-10-29 10:28:32 -0700151 if (mOpenHelper == null) {
Sunny Goyale26d1002016-06-20 14:52:14 -0700152 if (LauncherAppState.PROFILE_STARTUP) {
153 Trace.beginSection("Opening workspace DB");
154 }
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700155 mOpenHelper = new DatabaseHelper(getContext(), mListenerHandler);
Sunny Goyale8f7d5a2016-05-24 11:30:14 -0700156
157 if (RestoreDbTask.isPending(getContext())) {
158 if (!RestoreDbTask.performRestore(mOpenHelper)) {
159 mOpenHelper.createEmptyDB(mOpenHelper.getWritableDatabase());
160 }
161 // Set is pending to false irrespective of the result, so that it doesn't get
162 // executed again.
163 RestoreDbTask.setPending(getContext(), false);
164 }
Sunny Goyale26d1002016-06-20 14:52:14 -0700165
166 if (LauncherAppState.PROFILE_STARTUP) {
167 Trace.endSection();
168 }
Sunny Goyald3849d12015-10-29 10:28:32 -0700169 }
170 }
171
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800172 @Override
173 public Cursor query(Uri uri, String[] projection, String selection,
174 String[] selectionArgs, String sortOrder) {
Sunny Goyald3849d12015-10-29 10:28:32 -0700175 createDbIfNotExists();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800176
177 SqlArguments args = new SqlArguments(uri, selection, selectionArgs);
178 SQLiteQueryBuilder qb = new SQLiteQueryBuilder();
179 qb.setTables(args.table);
180
Romain Guy73b979d2009-06-09 12:57:21 -0700181 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800182 Cursor result = qb.query(db, projection, args.where, args.args, null, null, sortOrder);
183 result.setNotificationUri(getContext().getContentResolver(), uri);
184
185 return result;
186 }
187
Adam Cohen091440a2015-03-18 14:16:05 -0700188 @Thunk static long dbInsertAndCheck(DatabaseHelper helper,
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700189 SQLiteDatabase db, String table, String nullColumnHack, ContentValues values) {
Dan Sandlerd5024042014-01-09 15:01:33 -0500190 if (values == null) {
191 throw new RuntimeException("Error: attempting to insert null values");
192 }
Adam Cohen71483f42014-05-15 14:04:01 -0700193 if (!values.containsKey(LauncherSettings.ChangeLogColumns._ID)) {
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700194 throw new RuntimeException("Error: attempting to add item without specifying an id");
195 }
Chris Wren5dee7af2013-12-20 17:22:11 -0500196 helper.checkId(table, values);
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700197 return db.insert(table, nullColumnHack, values);
198 }
199
Sunny Goyald1064182015-08-13 12:08:30 -0700200 private void reloadLauncherIfExternal() {
Sunny Goyalc74e4192015-09-08 14:01:03 -0700201 if (Utilities.ATLEAST_MARSHMALLOW && Binder.getCallingPid() != Process.myPid()) {
Sunny Goyald1064182015-08-13 12:08:30 -0700202 LauncherAppState app = LauncherAppState.getInstanceNoCreate();
203 if (app != null) {
Sunny Goyaldd96a5e2017-02-17 11:22:34 -0800204 app.getModel().forceReload();
Sunny Goyald1064182015-08-13 12:08:30 -0700205 }
206 }
207 }
208
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800209 @Override
210 public Uri insert(Uri uri, ContentValues initialValues) {
Sunny Goyald3849d12015-10-29 10:28:32 -0700211 createDbIfNotExists();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800212 SqlArguments args = new SqlArguments(uri);
213
Sunny Goyald1064182015-08-13 12:08:30 -0700214 // In very limited cases, we support system|signature permission apps to modify the db.
215 if (Binder.getCallingPid() != Process.myPid()) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700216 if (!initializeExternalAdd(initialValues)) {
Adam Cohena043fa82014-07-23 14:49:38 -0700217 return null;
218 }
219 }
220
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800221 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
Chris Wren1ada10d2013-09-13 18:01:38 -0400222 addModifiedTime(initialValues);
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700223 final long rowId = dbInsertAndCheck(mOpenHelper, db, args.table, null, initialValues);
Sunny Goyale72f3d52015-03-02 14:24:21 -0800224 if (rowId < 0) return null;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800225
226 uri = ContentUris.withAppendedId(uri, rowId);
Sunny Goyal1d4a2df2015-03-30 11:11:46 -0700227 notifyListeners();
228
Sunny Goyalc74e4192015-09-08 14:01:03 -0700229 if (Utilities.ATLEAST_MARSHMALLOW) {
230 reloadLauncherIfExternal();
231 } else {
232 // Deprecated behavior to support legacy devices which rely on provider callbacks.
233 LauncherAppState app = LauncherAppState.getInstanceNoCreate();
234 if (app != null && "true".equals(uri.getQueryParameter("isExternalAdd"))) {
Sunny Goyaldd96a5e2017-02-17 11:22:34 -0800235 app.getModel().forceReload();
Sunny Goyalc74e4192015-09-08 14:01:03 -0700236 }
237
238 String notify = uri.getQueryParameter("notify");
239 if (notify == null || "true".equals(notify)) {
240 getContext().getContentResolver().notifyChange(uri, null);
241 }
242 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800243 return uri;
244 }
245
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700246 private boolean initializeExternalAdd(ContentValues values) {
247 // 1. Ensure that externally added items have a valid item id
248 long id = mOpenHelper.generateNewItemId();
249 values.put(LauncherSettings.Favorites._ID, id);
250
251 // 2. In the case of an app widget, and if no app widget id is specified, we
252 // attempt allocate and bind the widget.
253 Integer itemType = values.getAsInteger(LauncherSettings.Favorites.ITEM_TYPE);
254 if (itemType != null &&
255 itemType.intValue() == LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET &&
256 !values.containsKey(LauncherSettings.Favorites.APPWIDGET_ID)) {
257
258 final AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(getContext());
259 ComponentName cn = ComponentName.unflattenFromString(
260 values.getAsString(Favorites.APPWIDGET_PROVIDER));
261
262 if (cn != null) {
263 try {
Sunny Goyal55fddc82017-04-06 15:02:52 -0700264 AppWidgetHost widgetHost = mOpenHelper.newLauncherWidgetHost();
265 int appWidgetId = widgetHost.allocateAppWidgetId();
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700266 values.put(LauncherSettings.Favorites.APPWIDGET_ID, appWidgetId);
267 if (!appWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,cn)) {
Sunny Goyal55fddc82017-04-06 15:02:52 -0700268 widgetHost.deleteAppWidgetId(appWidgetId);
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700269 return false;
270 }
271 } catch (RuntimeException e) {
272 Log.e(TAG, "Failed to initialize external widget", e);
273 return false;
274 }
275 } else {
276 return false;
277 }
278 }
279
280 // Add screen id if not present
281 long screenId = values.getAsLong(LauncherSettings.Favorites.SCREEN);
282 SQLiteStatement stmp = null;
283 try {
284 stmp = mOpenHelper.getWritableDatabase().compileStatement(
285 "INSERT OR IGNORE INTO workspaceScreens (_id, screenRank) " +
286 "select ?, (ifnull(MAX(screenRank), -1)+1) from workspaceScreens");
287 stmp.bindLong(1, screenId);
288
289 ContentValues valuesInserted = new ContentValues();
290 valuesInserted.put(LauncherSettings.BaseLauncherColumns._ID, stmp.executeInsert());
291 mOpenHelper.checkId(WorkspaceScreens.TABLE_NAME, valuesInserted);
292 return true;
293 } catch (Exception e) {
294 return false;
295 } finally {
296 Utilities.closeSilently(stmp);
297 }
298 }
299
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800300 @Override
301 public int bulkInsert(Uri uri, ContentValues[] values) {
Sunny Goyald3849d12015-10-29 10:28:32 -0700302 createDbIfNotExists();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800303 SqlArguments args = new SqlArguments(uri);
304
305 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700306 try (SQLiteTransaction t = new SQLiteTransaction(db)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800307 int numValues = values.length;
308 for (int i = 0; i < numValues; i++) {
Chris Wren1ada10d2013-09-13 18:01:38 -0400309 addModifiedTime(values[i]);
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700310 if (dbInsertAndCheck(mOpenHelper, db, args.table, null, values[i]) < 0) {
311 return 0;
312 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800313 }
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700314 t.commit();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800315 }
316
Sunny Goyal1d4a2df2015-03-30 11:11:46 -0700317 notifyListeners();
Sunny Goyald1064182015-08-13 12:08:30 -0700318 reloadLauncherIfExternal();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800319 return values.length;
320 }
321
322 @Override
Yura085c8532014-02-11 15:15:29 +0000323 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations)
324 throws OperationApplicationException {
Sunny Goyald3849d12015-10-29 10:28:32 -0700325 createDbIfNotExists();
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700326 try (SQLiteTransaction t = new SQLiteTransaction(mOpenHelper.getWritableDatabase())) {
Yura085c8532014-02-11 15:15:29 +0000327 ContentProviderResult[] result = super.applyBatch(operations);
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700328 t.commit();
Sunny Goyald1064182015-08-13 12:08:30 -0700329 reloadLauncherIfExternal();
Yura085c8532014-02-11 15:15:29 +0000330 return result;
Yura085c8532014-02-11 15:15:29 +0000331 }
332 }
333
334 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800335 public int delete(Uri uri, String selection, String[] selectionArgs) {
Sunny Goyald3849d12015-10-29 10:28:32 -0700336 createDbIfNotExists();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800337 SqlArguments args = new SqlArguments(uri, selection, selectionArgs);
338
339 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800340
Louis Begina9c21c62016-08-15 15:18:41 -0700341 if (Binder.getCallingPid() != Process.myPid()
342 && Favorites.TABLE_NAME.equalsIgnoreCase(args.table)) {
Sunny Goyal55fddc82017-04-06 15:02:52 -0700343 mOpenHelper.removeGhostWidgets(mOpenHelper.getWritableDatabase());
Louis Begina9c21c62016-08-15 15:18:41 -0700344 }
345 int count = db.delete(args.table, args.where, args.args);
346 if (count > 0) {
347 notifyListeners();
348 reloadLauncherIfExternal();
349 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800350 return count;
351 }
352
353 @Override
354 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
Sunny Goyald3849d12015-10-29 10:28:32 -0700355 createDbIfNotExists();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800356 SqlArguments args = new SqlArguments(uri, selection, selectionArgs);
357
Chris Wren1ada10d2013-09-13 18:01:38 -0400358 addModifiedTime(values);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800359 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
360 int count = db.update(args.table, values, args.where, args.args);
Sunny Goyal1d4a2df2015-03-30 11:11:46 -0700361 if (count > 0) notifyListeners();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800362
Sunny Goyald1064182015-08-13 12:08:30 -0700363 reloadLauncherIfExternal();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800364 return count;
365 }
366
Sunny Goyal7779d622015-06-11 16:18:39 -0700367 @Override
Tony Wickham827cef22016-03-17 15:39:39 -0700368 public Bundle call(String method, final String arg, final Bundle extras) {
Sunny Goyal7779d622015-06-11 16:18:39 -0700369 if (Binder.getCallingUid() != Process.myUid()) {
370 return null;
371 }
Sunny Goyald3849d12015-10-29 10:28:32 -0700372 createDbIfNotExists();
Sunny Goyal7779d622015-06-11 16:18:39 -0700373
374 switch (method) {
Tony Wickham827cef22016-03-17 15:39:39 -0700375 case LauncherSettings.Settings.METHOD_SET_EXTRACTED_COLORS_AND_WALLPAPER_ID: {
376 String extractedColors = extras.getString(
377 LauncherSettings.Settings.EXTRA_EXTRACTED_COLORS);
378 int wallpaperId = extras.getInt(LauncherSettings.Settings.EXTRA_WALLPAPER_ID);
379 Utilities.getPrefs(getContext()).edit()
380 .putString(ExtractionUtils.EXTRACTED_COLORS_PREFERENCE_KEY, extractedColors)
381 .putInt(ExtractionUtils.WALLPAPER_ID_PREFERENCE_KEY, wallpaperId)
382 .apply();
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700383 mListenerHandler.sendEmptyMessage(ChangeListenerWrapper.MSG_EXTRACTED_COLORS_CHANGED);
Tony Wickham827cef22016-03-17 15:39:39 -0700384 Bundle result = new Bundle();
385 result.putString(LauncherSettings.Settings.EXTRA_VALUE, extractedColors);
386 return result;
387 }
Sunny Goyald2497482015-09-22 18:24:19 -0700388 case LauncherSettings.Settings.METHOD_CLEAR_EMPTY_DB_FLAG: {
389 clearFlagEmptyDbCreated();
390 return null;
391 }
Sunny Goyala5c8a9e2016-07-08 08:32:44 -0700392 case LauncherSettings.Settings.METHOD_WAS_EMPTY_DB_CREATED : {
393 Bundle result = new Bundle();
394 result.putBoolean(LauncherSettings.Settings.EXTRA_VALUE,
395 Utilities.getPrefs(getContext()).getBoolean(EMPTY_DATABASE_CREATED, false));
396 return result;
397 }
Sunny Goyald2497482015-09-22 18:24:19 -0700398 case LauncherSettings.Settings.METHOD_DELETE_EMPTY_FOLDERS: {
399 Bundle result = new Bundle();
400 result.putSerializable(LauncherSettings.Settings.EXTRA_VALUE, deleteEmptyFolders());
401 return result;
402 }
403 case LauncherSettings.Settings.METHOD_NEW_ITEM_ID: {
404 Bundle result = new Bundle();
405 result.putLong(LauncherSettings.Settings.EXTRA_VALUE, mOpenHelper.generateNewItemId());
406 return result;
407 }
408 case LauncherSettings.Settings.METHOD_NEW_SCREEN_ID: {
409 Bundle result = new Bundle();
410 result.putLong(LauncherSettings.Settings.EXTRA_VALUE, mOpenHelper.generateNewScreenId());
411 return result;
412 }
413 case LauncherSettings.Settings.METHOD_CREATE_EMPTY_DB: {
Sunny Goyale05b08f2017-02-23 18:30:22 -0800414 mOpenHelper.createEmptyDB(mOpenHelper.getWritableDatabase());
Sunny Goyald2497482015-09-22 18:24:19 -0700415 return null;
416 }
417 case LauncherSettings.Settings.METHOD_LOAD_DEFAULT_FAVORITES: {
418 loadDefaultFavoritesIfNecessary();
419 return null;
420 }
Sunny Goyal55fddc82017-04-06 15:02:52 -0700421 case LauncherSettings.Settings.METHOD_REMOVE_GHOST_WIDGETS: {
422 mOpenHelper.removeGhostWidgets(mOpenHelper.getWritableDatabase());
423 return null;
424 }
Sunny Goyal7779d622015-06-11 16:18:39 -0700425 }
426 return null;
427 }
428
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700429 /**
430 * Deletes any empty folder from the DB.
431 * @return Ids of deleted folders.
432 */
Sunny Goyald2497482015-09-22 18:24:19 -0700433 private ArrayList<Long> deleteEmptyFolders() {
434 ArrayList<Long> folderIds = new ArrayList<>();
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700435 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700436 try (SQLiteTransaction t = new SQLiteTransaction(db)) {
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700437 // Select folders whose id do not match any container value.
438 String selection = LauncherSettings.Favorites.ITEM_TYPE + " = "
439 + LauncherSettings.Favorites.ITEM_TYPE_FOLDER + " AND "
440 + LauncherSettings.Favorites._ID + " NOT IN (SELECT " +
441 LauncherSettings.Favorites.CONTAINER + " FROM "
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700442 + Favorites.TABLE_NAME + ")";
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700443 try (Cursor c = db.query(Favorites.TABLE_NAME,
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700444 new String[] {LauncherSettings.Favorites._ID},
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700445 selection, null, null, null, null)) {
446 LauncherDbUtils.iterateCursor(c, 0, folderIds);
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700447 }
Sunny Goyald2497482015-09-22 18:24:19 -0700448 if (!folderIds.isEmpty()) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700449 db.delete(Favorites.TABLE_NAME, Utilities.createDbSelectionQuery(
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700450 LauncherSettings.Favorites._ID, folderIds), null);
451 }
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700452 t.commit();
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700453 } catch (SQLException ex) {
454 Log.e(TAG, ex.getMessage(), ex);
455 folderIds.clear();
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700456 }
457 return folderIds;
458 }
459
Sunny Goyalf076eae2016-01-11 12:25:10 -0800460 /**
461 * Overridden in tests
462 */
463 protected void notifyListeners() {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700464 mListenerHandler.sendEmptyMessage(ChangeListenerWrapper.MSG_LAUNCHER_PROVIDER_CHANGED);
Chris Wren1ada10d2013-09-13 18:01:38 -0400465 }
466
Adam Cohen091440a2015-03-18 14:16:05 -0700467 @Thunk static void addModifiedTime(ContentValues values) {
Chris Wren1ada10d2013-09-13 18:01:38 -0400468 values.put(LauncherSettings.ChangeLogColumns.MODIFIED, System.currentTimeMillis());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800469 }
470
Sunny Goyald2497482015-09-22 18:24:19 -0700471 private void clearFlagEmptyDbCreated() {
Sunny Goyalf7258242015-10-19 16:59:07 -0700472 Utilities.getPrefs(getContext()).edit().remove(EMPTY_DATABASE_CREATED).commit();
Sunny Goyal33d44382014-10-16 09:24:19 -0700473 }
474
Sunny Goyal42de82f2014-09-26 22:09:29 -0700475 /**
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700476 * Loads the default workspace based on the following priority scheme:
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700477 * 1) From the app restrictions
478 * 2) From a package provided by play store
479 * 3) From a partner configuration APK, already in the system image
480 * 4) The default configuration for the particular device
Brian Muramatsu5524b492012-10-02 16:55:54 -0700481 */
Sunny Goyald2497482015-09-22 18:24:19 -0700482 synchronized private void loadDefaultFavoritesIfNecessary() {
Sunny Goyalf7258242015-10-19 16:59:07 -0700483 SharedPreferences sp = Utilities.getPrefs(getContext());
Adam Cohene25af792013-06-06 23:08:25 -0700484
Winson Chungc763c4e2013-07-19 13:49:06 -0700485 if (sp.getBoolean(EMPTY_DATABASE_CREATED, false)) {
Chris Wren5dee7af2013-12-20 17:22:11 -0500486 Log.d(TAG, "loading default workspace");
Michael Jurka45355c42012-10-08 13:21:35 +0200487
Sunny Goyal55fddc82017-04-06 15:02:52 -0700488 AppWidgetHost widgetHost = mOpenHelper.newLauncherWidgetHost();
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700489 AutoInstallsLayout loader = createWorkspaceLoaderFromAppRestriction(widgetHost);
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700490 if (loader == null) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700491 loader = AutoInstallsLayout.get(getContext(),widgetHost, mOpenHelper);
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700492 }
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700493 if (loader == null) {
Adam Cohen9b8f51f2014-05-30 15:34:09 -0700494 final Partner partner = Partner.get(getContext().getPackageManager());
495 if (partner != null && partner.hasDefaultLayout()) {
496 final Resources partnerRes = partner.getResources();
Adam Cohen4ae96ce2014-08-29 15:05:48 -0700497 int workspaceResId = partnerRes.getIdentifier(Partner.RES_DEFAULT_LAYOUT,
Adam Cohen9b8f51f2014-05-30 15:34:09 -0700498 "xml", partner.getPackageName());
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700499 if (workspaceResId != 0) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700500 loader = new DefaultLayoutParser(getContext(), widgetHost,
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700501 mOpenHelper, partnerRes, workspaceResId);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700502 }
Adam Cohen9b8f51f2014-05-30 15:34:09 -0700503 }
504 }
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700505
Sunny Goyal9d219682014-10-23 14:21:02 -0700506 final boolean usingExternallyProvidedLayout = loader != null;
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700507 if (loader == null) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700508 loader = getDefaultLayoutParser(widgetHost);
Brian Muramatsu5524b492012-10-02 16:55:54 -0700509 }
Sunny Goyalc6c8fef2015-03-04 09:51:18 -0800510
511 // There might be some partially restored DB items, due to buggy restore logic in
512 // previous versions of launcher.
Sunny Goyale05b08f2017-02-23 18:30:22 -0800513 mOpenHelper.createEmptyDB(mOpenHelper.getWritableDatabase());
Michael Jurkab85f8a42012-04-25 15:48:32 -0700514 // Populate favorites table with initial favorites
Sunny Goyal9d219682014-10-23 14:21:02 -0700515 if ((mOpenHelper.loadFavorites(mOpenHelper.getWritableDatabase(), loader) <= 0)
516 && usingExternallyProvidedLayout) {
517 // Unable to load external layout. Cleanup and load the internal layout.
Sunny Goyale05b08f2017-02-23 18:30:22 -0800518 mOpenHelper.createEmptyDB(mOpenHelper.getWritableDatabase());
Sunny Goyal9d219682014-10-23 14:21:02 -0700519 mOpenHelper.loadFavorites(mOpenHelper.getWritableDatabase(),
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700520 getDefaultLayoutParser(widgetHost));
Sunny Goyal9d219682014-10-23 14:21:02 -0700521 }
Sunny Goyal33d44382014-10-16 09:24:19 -0700522 clearFlagEmptyDbCreated();
Michael Jurkab85f8a42012-04-25 15:48:32 -0700523 }
524 }
525
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700526 /**
527 * Creates workspace loader from an XML resource listed in the app restrictions.
528 *
529 * @return the loader if the restrictions are set and the resource exists; null otherwise.
530 */
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700531 private AutoInstallsLayout createWorkspaceLoaderFromAppRestriction(AppWidgetHost widgetHost) {
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700532 Context ctx = getContext();
533 UserManager um = (UserManager) ctx.getSystemService(Context.USER_SERVICE);
534 Bundle bundle = um.getApplicationRestrictions(ctx.getPackageName());
Sunny Goyal35ca8732015-04-06 10:45:31 -0700535 if (bundle == null) {
536 return null;
537 }
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700538
Sunny Goyal35ca8732015-04-06 10:45:31 -0700539 String packageName = bundle.getString(RESTRICTION_PACKAGE_NAME);
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700540 if (packageName != null) {
541 try {
542 Resources targetResources = ctx.getPackageManager()
543 .getResourcesForApplication(packageName);
544 return AutoInstallsLayout.get(ctx, packageName, targetResources,
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700545 widgetHost, mOpenHelper);
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700546 } catch (NameNotFoundException e) {
547 Log.e(TAG, "Target package for restricted profile not found", e);
548 return null;
549 }
550 }
551 return null;
552 }
553
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700554 private DefaultLayoutParser getDefaultLayoutParser(AppWidgetHost widgetHost) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800555 int defaultLayout = LauncherAppState.getIDP(getContext()).defaultLayoutId;
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700556 return new DefaultLayoutParser(getContext(), widgetHost,
Sunny Goyal9d219682014-10-23 14:21:02 -0700557 mOpenHelper, getContext().getResources(), defaultLayout);
558 }
559
Sunny Goyald3849d12015-10-29 10:28:32 -0700560 /**
Sunny Goyalf076eae2016-01-11 12:25:10 -0800561 * The class is subclassed in tests to create an in-memory db.
562 */
Sunny Goyalc190dbf2016-05-05 14:37:05 -0700563 public static class DatabaseHelper extends SQLiteOpenHelper implements LayoutParserCallback {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700564 private final Handler mWidgetHostResetHandler;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800565 private final Context mContext;
Adam Cohendcd297f2013-06-18 13:13:40 -0700566 private long mMaxItemId = -1;
567 private long mMaxScreenId = -1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800568
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700569 DatabaseHelper(Context context, Handler widgetHostResetHandler) {
570 this(context, widgetHostResetHandler, LauncherFiles.LAUNCHER_DB);
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700571 // Table creation sometimes fails silently, which leads to a crash loop.
572 // This way, we will try to create a table every time after crash, so the device
573 // would eventually be able to recover.
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700574 if (!tableExists(Favorites.TABLE_NAME) || !tableExists(WorkspaceScreens.TABLE_NAME)) {
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700575 Log.e(TAG, "Tables are missing after onCreate has been called. Trying to recreate");
576 // This operation is a no-op if the table already exists.
577 addFavoritesTable(getWritableDatabase(), true);
578 addWorkspacesTable(getWritableDatabase(), true);
579 }
580
Sunny Goyal7eab3cc2016-03-18 17:42:55 -0700581 initIds();
582 }
583
584 /**
Sunny Goyalc190dbf2016-05-05 14:37:05 -0700585 * Constructor used in tests and for restore.
Sunny Goyal7eab3cc2016-03-18 17:42:55 -0700586 */
587 public DatabaseHelper(
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700588 Context context, Handler widgetHostResetHandler, String tableName) {
Sunny Goyal3c7d55b2017-04-13 12:01:47 -0700589 super(new NoLocaleSqliteContext(context), tableName, null, SCHEMA_VERSION);
Sunny Goyal7eab3cc2016-03-18 17:42:55 -0700590 mContext = context;
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700591 mWidgetHostResetHandler = widgetHostResetHandler;
Sunny Goyal7eab3cc2016-03-18 17:42:55 -0700592 }
593
594 protected void initIds() {
Winson Chung3d503fb2011-07-13 17:25:49 -0700595 // In the case where neither onCreate nor onUpgrade gets called, we read the maxId from
596 // the DB here
Adam Cohendcd297f2013-06-18 13:13:40 -0700597 if (mMaxItemId == -1) {
598 mMaxItemId = initializeMaxItemId(getWritableDatabase());
599 }
600 if (mMaxScreenId == -1) {
601 mMaxScreenId = initializeMaxScreenId(getWritableDatabase());
Winson Chung3d503fb2011-07-13 17:25:49 -0700602 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800603 }
604
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700605 private boolean tableExists(String tableName) {
606 Cursor c = getReadableDatabase().query(
607 true, "sqlite_master", new String[] {"tbl_name"},
608 "tbl_name = ?", new String[] {tableName},
609 null, null, null, null, null);
610 try {
611 return c.getCount() > 0;
612 } finally {
613 c.close();
614 }
615 }
616
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800617 @Override
618 public void onCreate(SQLiteDatabase db) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800619 if (LOGD) Log.d(TAG, "creating new launcher database");
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700620
Adam Cohendcd297f2013-06-18 13:13:40 -0700621 mMaxItemId = 1;
622 mMaxScreenId = 0;
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700623
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700624 addFavoritesTable(db, false);
625 addWorkspacesTable(db, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800626
Sunny Goyale87e6ab2014-11-21 22:42:53 -0800627 // Fresh and clean launcher DB.
628 mMaxItemId = initializeMaxItemId(db);
Sunny Goyalf076eae2016-01-11 12:25:10 -0800629 onEmptyDbCreated();
630 }
631
632 /**
633 * Overriden in tests.
634 */
635 protected void onEmptyDbCreated() {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700636 // Database was just created, so wipe any previous widgets
637 if (mWidgetHostResetHandler != null) {
Sunny Goyal55fddc82017-04-06 15:02:52 -0700638 newLauncherWidgetHost().deleteHost();
Sunny Goyal2e013ea2016-10-07 16:17:19 -0700639 mWidgetHostResetHandler.sendEmptyMessage(
Sunny Goyal72db9af2016-11-29 07:25:49 +0530640 ChangeListenerWrapper.MSG_APP_WIDGET_HOST_RESET);
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700641 }
642
Sunny Goyalf076eae2016-01-11 12:25:10 -0800643 // Set the flag for empty DB
644 Utilities.getPrefs(mContext).edit().putBoolean(EMPTY_DATABASE_CREATED, true).commit();
Sunny Goyale2fba6c2015-05-12 10:39:59 -0700645
646 // When a new DB is created, remove all previously stored managed profile information.
Sunny Goyal7c74e4a2016-12-15 15:53:17 -0800647 ManagedProfileHeuristic.processAllUsers(Collections.<UserHandle>emptyList(),
Sunny Goyalf076eae2016-01-11 12:25:10 -0800648 mContext);
649 }
650
Sunny Goyale8f7d5a2016-05-24 11:30:14 -0700651 public long getDefaultUserSerial() {
Sunny Goyalf076eae2016-01-11 12:25:10 -0800652 return UserManagerCompat.getInstance(mContext).getSerialNumberForUser(
Sunny Goyal7c74e4a2016-12-15 15:53:17 -0800653 Process.myUserHandle());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800654 }
655
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700656 private void addFavoritesTable(SQLiteDatabase db, boolean optional) {
Sunny Goyalc190dbf2016-05-05 14:37:05 -0700657 Favorites.addTableToDb(db, getDefaultUserSerial(), optional);
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700658 }
659
660 private void addWorkspacesTable(SQLiteDatabase db, boolean optional) {
661 String ifNotExists = optional ? " IF NOT EXISTS " : "";
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700662 db.execSQL("CREATE TABLE " + ifNotExists + WorkspaceScreens.TABLE_NAME + " (" +
Sunny Goyald2f38192015-02-25 10:46:34 -0800663 LauncherSettings.WorkspaceScreens._ID + " INTEGER PRIMARY KEY," +
Chris Wren1ada10d2013-09-13 18:01:38 -0400664 LauncherSettings.WorkspaceScreens.SCREEN_RANK + " INTEGER," +
665 LauncherSettings.ChangeLogColumns.MODIFIED + " INTEGER NOT NULL DEFAULT 0" +
Adam Cohendcd297f2013-06-18 13:13:40 -0700666 ");");
667 }
668
Adam Cohen119285e2014-04-02 16:59:08 -0700669 private void removeOrphanedItems(SQLiteDatabase db) {
Adam Cohenf9c14de2014-04-17 18:20:45 -0700670 // Delete items directly on the workspace who's screen id doesn't exist
671 // "DELETE FROM favorites WHERE screen NOT IN (SELECT _id FROM workspaceScreens)
672 // AND container = -100"
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700673 String removeOrphanedDesktopItems = "DELETE FROM " + Favorites.TABLE_NAME +
Adam Cohenf9c14de2014-04-17 18:20:45 -0700674 " WHERE " +
Adam Cohen119285e2014-04-02 16:59:08 -0700675 LauncherSettings.Favorites.SCREEN + " NOT IN (SELECT " +
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700676 LauncherSettings.WorkspaceScreens._ID + " FROM " + WorkspaceScreens.TABLE_NAME + ")" +
Adam Cohenf9c14de2014-04-17 18:20:45 -0700677 " AND " +
678 LauncherSettings.Favorites.CONTAINER + " = " +
679 LauncherSettings.Favorites.CONTAINER_DESKTOP;
680 db.execSQL(removeOrphanedDesktopItems);
681
682 // Delete items contained in folders which no longer exist (after above statement)
683 // "DELETE FROM favorites WHERE container <> -100 AND container <> -101 AND container
684 // NOT IN (SELECT _id FROM favorites WHERE itemType = 2)"
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700685 String removeOrphanedFolderItems = "DELETE FROM " + Favorites.TABLE_NAME +
Adam Cohenf9c14de2014-04-17 18:20:45 -0700686 " WHERE " +
687 LauncherSettings.Favorites.CONTAINER + " <> " +
688 LauncherSettings.Favorites.CONTAINER_DESKTOP +
689 " AND "
690 + LauncherSettings.Favorites.CONTAINER + " <> " +
691 LauncherSettings.Favorites.CONTAINER_HOTSEAT +
692 " AND "
693 + LauncherSettings.Favorites.CONTAINER + " NOT IN (SELECT " +
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700694 LauncherSettings.Favorites._ID + " FROM " + Favorites.TABLE_NAME +
Adam Cohenf9c14de2014-04-17 18:20:45 -0700695 " WHERE " + LauncherSettings.Favorites.ITEM_TYPE + " = " +
696 LauncherSettings.Favorites.ITEM_TYPE_FOLDER + ")";
697 db.execSQL(removeOrphanedFolderItems);
Adam Cohen119285e2014-04-02 16:59:08 -0700698 }
699
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800700 @Override
Sunny Goyal3c7d55b2017-04-13 12:01:47 -0700701 public void onOpen(SQLiteDatabase db) {
702 super.onOpen(db);
Sunny Goyal05f30882017-05-03 12:42:18 -0700703
704 File schemaFile = mContext.getFileStreamPath(DOWNGRADE_SCHEMA_FILE);
705 if (!schemaFile.exists()) {
706 handleOneTimeDataUpgrade(db);
Sunny Goyal3c7d55b2017-04-13 12:01:47 -0700707 }
Sunny Goyal05f30882017-05-03 12:42:18 -0700708 DbDowngradeHelper.updateSchemaFile(schemaFile, SCHEMA_VERSION, mContext,
709 R.raw.downgrade_schema);
Sunny Goyal3c7d55b2017-04-13 12:01:47 -0700710 }
711
712 /**
Sunny Goyal05f30882017-05-03 12:42:18 -0700713 * One-time data updated before support of onDowngrade was added. This update is backwards
714 * compatible and can safely be run multiple times.
715 * Note: No new logic should be added here after release, as the new logic might not get
716 * executed on an existing device.
717 * TODO: Move this to db upgrade path, once the downgrade path is released.
Sunny Goyal3c7d55b2017-04-13 12:01:47 -0700718 */
Sunny Goyal05f30882017-05-03 12:42:18 -0700719 protected void handleOneTimeDataUpgrade(SQLiteDatabase db) {
720 // Remove "profile extra"
721 UserManagerCompat um = UserManagerCompat.getInstance(mContext);
722 for (UserHandle user : um.getUserProfiles()) {
723 long serial = um.getSerialNumberForUser(user);
724 String sql = "update favorites set intent = replace(intent, "
725 + "';l.profile=" + serial + ";', ';') where itemType = 0;";
726 db.execSQL(sql);
Sunny Goyal3c7d55b2017-04-13 12:01:47 -0700727 }
728 }
729
730 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800731 public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
Winson Chungc763c4e2013-07-19 13:49:06 -0700732 if (LOGD) Log.d(TAG, "onUpgrade triggered: " + oldVersion);
Sunny Goyala2cc6242015-01-14 14:23:02 -0800733 switch (oldVersion) {
734 // The version cannot be lower that 12, as Launcher3 never supported a lower
Sunny Goyale87e6ab2014-11-21 22:42:53 -0800735 // version of the DB.
Sunny Goyala2cc6242015-01-14 14:23:02 -0800736 case 12: {
737 // With the new shrink-wrapped and re-orderable workspaces, it makes sense
738 // to persist workspace screens and their relative order.
739 mMaxScreenId = 0;
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700740 addWorkspacesTable(db, false);
Sunny Goyala2cc6242015-01-14 14:23:02 -0800741 }
742 case 13: {
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700743 try (SQLiteTransaction t = new SQLiteTransaction(db)) {
Sunny Goyala2cc6242015-01-14 14:23:02 -0800744 // Insert new column for holding widget provider name
745 db.execSQL("ALTER TABLE favorites " +
746 "ADD COLUMN appWidgetProvider TEXT;");
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700747 t.commit();
Sunny Goyala2cc6242015-01-14 14:23:02 -0800748 } catch (SQLException ex) {
749 Log.e(TAG, ex.getMessage(), ex);
750 // Old version remains, which means we wipe old data
751 break;
Sunny Goyala2cc6242015-01-14 14:23:02 -0800752 }
753 }
754 case 14: {
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700755 try (SQLiteTransaction t = new SQLiteTransaction(db)) {
Sunny Goyala2cc6242015-01-14 14:23:02 -0800756 // Insert new column for holding update timestamp
757 db.execSQL("ALTER TABLE favorites " +
758 "ADD COLUMN modified INTEGER NOT NULL DEFAULT 0;");
759 db.execSQL("ALTER TABLE workspaceScreens " +
760 "ADD COLUMN modified INTEGER NOT NULL DEFAULT 0;");
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700761 t.commit();
Sunny Goyala2cc6242015-01-14 14:23:02 -0800762 } catch (SQLException ex) {
763 Log.e(TAG, ex.getMessage(), ex);
764 // Old version remains, which means we wipe old data
765 break;
Sunny Goyala2cc6242015-01-14 14:23:02 -0800766 }
767 }
768 case 15: {
Sunny Goyal5d85c442015-03-10 13:14:47 -0700769 if (!addIntegerColumn(db, Favorites.RESTORED, 0)) {
Sunny Goyala2cc6242015-01-14 14:23:02 -0800770 // Old version remains, which means we wipe old data
771 break;
Sunny Goyala2cc6242015-01-14 14:23:02 -0800772 }
773 }
774 case 16: {
Sunny Goyal10629b02016-09-01 12:50:11 -0700775 // No-op
Sunny Goyala2cc6242015-01-14 14:23:02 -0800776 }
777 case 17: {
778 // No-op
779 }
780 case 18: {
781 // Due to a data loss bug, some users may have items associated with screen ids
782 // which no longer exist. Since this can cause other problems, and since the user
783 // will never see these items anyway, we use database upgrade as an opportunity to
784 // clean things up.
785 removeOrphanedItems(db);
786 }
787 case 19: {
788 // Add userId column
789 if (!addProfileColumn(db)) {
790 // Old version remains, which means we wipe old data
791 break;
792 }
793 }
794 case 20:
795 if (!updateFolderItemsRank(db, true)) {
796 break;
797 }
Sunny Goyald2f38192015-02-25 10:46:34 -0800798 case 21:
799 // Recreate workspace table with screen id a primary key
800 if (!recreateWorkspaceTable(db)) {
801 break;
802 }
803 case 22: {
Sunny Goyal5d85c442015-03-10 13:14:47 -0700804 if (!addIntegerColumn(db, Favorites.OPTIONS, 0)) {
805 // Old version remains, which means we wipe old data
806 break;
807 }
808 }
Sunny Goyal0b037782015-04-02 10:27:03 -0700809 case 23:
Sunny Goyal5c97f512015-05-19 16:03:28 -0700810 // No-op
Sunny Goyale2fba6c2015-05-12 10:39:59 -0700811 case 24:
812 ManagedProfileHeuristic.markExistingUsersForNoFolderCreation(mContext);
Sunny Goyal5c97f512015-05-19 16:03:28 -0700813 case 25:
814 convertShortcutsToLauncherActivities(db);
Sunny Goyala9e2f5a2016-06-10 12:22:04 -0700815 case 26:
816 // QSB was moved to the grid. Clear the first row on screen 0.
817 if (FeatureFlags.QSB_ON_FIRST_SCREEN &&
Sunny Goyal8ad02b82016-12-29 13:31:43 -0800818 !LauncherDbUtils.prepareScreenZeroToHostQsb(mContext, db)) {
Sunny Goyala9e2f5a2016-06-10 12:22:04 -0700819 break;
820 }
Sunny Goyal3c7d55b2017-04-13 12:01:47 -0700821 case 27:
Sunny Goyala2cc6242015-01-14 14:23:02 -0800822 // DB Upgraded successfully
823 return;
Chris Wrend5e66bf2013-09-16 14:02:29 -0400824 }
825
Sunny Goyala2cc6242015-01-14 14:23:02 -0800826 // DB was not upgraded
827 Log.w(TAG, "Destroying all old data.");
828 createEmptyDB(db);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800829 }
Romain Guy7eb9e5e2009-12-02 20:10:07 -0800830
Adam Cohen9b1d0622014-05-21 19:01:57 -0700831 @Override
832 public void onDowngrade(SQLiteDatabase db, int oldVersion, int newVersion) {
Sunny Goyal05f30882017-05-03 12:42:18 -0700833 try {
834 DbDowngradeHelper.parse(mContext.getFileStreamPath(DOWNGRADE_SCHEMA_FILE))
835 .onDowngrade(db, oldVersion, newVersion);
836 } catch (Exception e) {
837 Log.d(TAG, "Unable to downgrade from: " + oldVersion + " to " + newVersion +
838 ". Wiping databse.", e);
839 createEmptyDB(db);
Sunny Goyal3c7d55b2017-04-13 12:01:47 -0700840 }
Sunny Goyal42de82f2014-09-26 22:09:29 -0700841 }
Adam Cohen9b1d0622014-05-21 19:01:57 -0700842
Sunny Goyal42de82f2014-09-26 22:09:29 -0700843 /**
844 * Clears all the data for a fresh start.
845 */
846 public void createEmptyDB(SQLiteDatabase db) {
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700847 try (SQLiteTransaction t = new SQLiteTransaction(db)) {
Sunny Goyale05b08f2017-02-23 18:30:22 -0800848 db.execSQL("DROP TABLE IF EXISTS " + Favorites.TABLE_NAME);
849 db.execSQL("DROP TABLE IF EXISTS " + WorkspaceScreens.TABLE_NAME);
850 onCreate(db);
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700851 t.commit();
Sunny Goyale05b08f2017-02-23 18:30:22 -0800852 }
Adam Cohen9b1d0622014-05-21 19:01:57 -0700853 }
854
Sunny Goyald2f38192015-02-25 10:46:34 -0800855 /**
Sunny Goyal55fddc82017-04-06 15:02:52 -0700856 * Removes widgets which are registered to the Launcher's host, but are not present
857 * in our model.
858 */
Sunny Goyal22ca9ec2017-05-18 15:03:13 -0700859 @TargetApi(Build.VERSION_CODES.O)
Sunny Goyal55fddc82017-04-06 15:02:52 -0700860 public void removeGhostWidgets(SQLiteDatabase db) {
861 // Get all existing widget ids.
862 final AppWidgetHost host = newLauncherWidgetHost();
863 final int[] allWidgets;
864 try {
Sunny Goyal22ca9ec2017-05-18 15:03:13 -0700865 // Although the method was defined in O, it has existed since the beginning of time,
866 // so it might work on older platforms as well.
867 allWidgets = host.getAppWidgetIds();
868 } catch (IncompatibleClassChangeError e) {
Sunny Goyal55fddc82017-04-06 15:02:52 -0700869 Log.e(TAG, "getAppWidgetIds not supported", e);
870 return;
871 }
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700872 final HashSet<Integer> validWidgets = new HashSet<>();
873 try (Cursor c = db.query(Favorites.TABLE_NAME,
874 new String[] {Favorites.APPWIDGET_ID },
875 "itemType=" + Favorites.ITEM_TYPE_APPWIDGET, null, null, null, null)) {
Sunny Goyal55fddc82017-04-06 15:02:52 -0700876 while (c.moveToNext()) {
877 validWidgets.add(c.getInt(0));
878 }
Sunny Goyal55fddc82017-04-06 15:02:52 -0700879 } catch (SQLException ex) {
880 Log.w(TAG, "Error getting widgets list", ex);
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700881 return;
882 }
883 for (int widgetId : allWidgets) {
884 if (!validWidgets.contains(widgetId)) {
885 try {
886 FileLog.d(TAG, "Deleting invalid widget " + widgetId);
887 host.deleteAppWidgetId(widgetId);
888 } catch (RuntimeException e) {
889 // Ignore
890 }
891 }
Sunny Goyal55fddc82017-04-06 15:02:52 -0700892 }
893 }
894
895 /**
Sunny Goyal0b037782015-04-02 10:27:03 -0700896 * Replaces all shortcuts of type {@link Favorites#ITEM_TYPE_SHORTCUT} which have a valid
897 * launcher activity target with {@link Favorites#ITEM_TYPE_APPLICATION}.
898 */
Sunny Goyal316490e2015-06-02 09:38:28 -0700899 @Thunk void convertShortcutsToLauncherActivities(SQLiteDatabase db) {
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700900 try (SQLiteTransaction t = new SQLiteTransaction(db);
901 // Only consider the primary user as other users can't have a shortcut.
902 Cursor c = db.query(Favorites.TABLE_NAME,
903 new String[] { Favorites._ID, Favorites.INTENT},
904 "itemType=" + Favorites.ITEM_TYPE_SHORTCUT +
905 " AND profileId=" + getDefaultUserSerial(),
906 null, null, null, null);
907 SQLiteStatement updateStmt = db.compileStatement("UPDATE favorites SET itemType="
908 + Favorites.ITEM_TYPE_APPLICATION + " WHERE _id=?")
909 ) {
Sunny Goyal0b037782015-04-02 10:27:03 -0700910 final int idIndex = c.getColumnIndexOrThrow(Favorites._ID);
911 final int intentIndex = c.getColumnIndexOrThrow(Favorites.INTENT);
912
913 while (c.moveToNext()) {
914 String intentDescription = c.getString(intentIndex);
915 Intent intent;
916 try {
917 intent = Intent.parseUri(intentDescription, 0);
918 } catch (URISyntaxException e) {
919 Log.e(TAG, "Unable to parse intent", e);
920 continue;
921 }
922
Sunny Goyal4e5cc642015-06-25 16:37:44 -0700923 if (!Utilities.isLauncherAppTarget(intent)) {
Sunny Goyal0b037782015-04-02 10:27:03 -0700924 continue;
925 }
926
927 long id = c.getLong(idIndex);
928 updateStmt.bindLong(1, id);
Sunny Goyalc22841b2015-07-13 19:59:50 -0700929 updateStmt.executeUpdateDelete();
Sunny Goyal0b037782015-04-02 10:27:03 -0700930 }
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700931 t.commit();
Sunny Goyal0b037782015-04-02 10:27:03 -0700932 } catch (SQLException ex) {
933 Log.w(TAG, "Error deduping shortcuts", ex);
Sunny Goyal0b037782015-04-02 10:27:03 -0700934 }
935 }
936
937 /**
Sunny Goyald2f38192015-02-25 10:46:34 -0800938 * Recreates workspace table and migrates data to the new table.
939 */
940 public boolean recreateWorkspaceTable(SQLiteDatabase db) {
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700941 try (SQLiteTransaction t = new SQLiteTransaction(db)) {
942 final ArrayList<Long> sortedIDs;
943
944 try (Cursor c = db.query(WorkspaceScreens.TABLE_NAME,
Sunny Goyald2f38192015-02-25 10:46:34 -0800945 new String[] {LauncherSettings.WorkspaceScreens._ID},
946 null, null, null, null,
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700947 LauncherSettings.WorkspaceScreens.SCREEN_RANK)) {
948 // Use LinkedHashSet so that ordering is preserved
949 sortedIDs = new ArrayList<>(
950 LauncherDbUtils.iterateCursor(c, 0, new LinkedHashSet<Long>()));
Sunny Goyald2f38192015-02-25 10:46:34 -0800951 }
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700952 db.execSQL("DROP TABLE IF EXISTS " + WorkspaceScreens.TABLE_NAME);
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700953 addWorkspacesTable(db, false);
Sunny Goyald2f38192015-02-25 10:46:34 -0800954
955 // Add all screen ids back
956 int total = sortedIDs.size();
957 for (int i = 0; i < total; i++) {
958 ContentValues values = new ContentValues();
959 values.put(LauncherSettings.WorkspaceScreens._ID, sortedIDs.get(i));
960 values.put(LauncherSettings.WorkspaceScreens.SCREEN_RANK, i);
961 addModifiedTime(values);
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700962 db.insertOrThrow(WorkspaceScreens.TABLE_NAME, null, values);
Sunny Goyald2f38192015-02-25 10:46:34 -0800963 }
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700964 t.commit();
965 mMaxScreenId = sortedIDs.isEmpty() ? 0 : Collections.max(sortedIDs);
Sunny Goyald2f38192015-02-25 10:46:34 -0800966 } catch (SQLException ex) {
967 // Old version remains, which means we wipe old data
968 Log.e(TAG, ex.getMessage(), ex);
969 return false;
Sunny Goyald2f38192015-02-25 10:46:34 -0800970 }
971 return true;
972 }
973
Adam Cohen091440a2015-03-18 14:16:05 -0700974 @Thunk boolean updateFolderItemsRank(SQLiteDatabase db, boolean addRankColumn) {
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700975 try (SQLiteTransaction t = new SQLiteTransaction(db)) {
Sunny Goyal08f72612015-01-05 13:41:43 -0800976 if (addRankColumn) {
977 // Insert new column for holding rank
978 db.execSQL("ALTER TABLE favorites ADD COLUMN rank INTEGER NOT NULL DEFAULT 0;");
979 }
980
981 // Get a map for folder ID to folder width
982 Cursor c = db.rawQuery("SELECT container, MAX(cellX) FROM favorites"
983 + " WHERE container IN (SELECT _id FROM favorites WHERE itemType = ?)"
984 + " GROUP BY container;",
985 new String[] {Integer.toString(LauncherSettings.Favorites.ITEM_TYPE_FOLDER)});
986
987 while (c.moveToNext()) {
Sunny Goyalc87775d2015-02-10 19:52:36 -0800988 db.execSQL("UPDATE favorites SET rank=cellX+(cellY*?) WHERE "
989 + "container=? AND cellX IS NOT NULL AND cellY IS NOT NULL;",
Sunny Goyal08f72612015-01-05 13:41:43 -0800990 new Object[] {c.getLong(1) + 1, c.getLong(0)});
991 }
992
993 c.close();
Sunny Goyaldbfc9012017-04-17 16:58:36 -0700994 t.commit();
Sunny Goyal08f72612015-01-05 13:41:43 -0800995 } catch (SQLException ex) {
996 // Old version remains, which means we wipe old data
997 Log.e(TAG, ex.getMessage(), ex);
998 return false;
Sunny Goyal08f72612015-01-05 13:41:43 -0800999 }
1000 return true;
1001 }
1002
Kenny Guyed131872014-04-30 03:02:21 +01001003 private boolean addProfileColumn(SQLiteDatabase db) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001004 return addIntegerColumn(db, Favorites.PROFILE_ID, getDefaultUserSerial());
Sunny Goyal5d85c442015-03-10 13:14:47 -07001005 }
1006
1007 private boolean addIntegerColumn(SQLiteDatabase db, String columnName, long defaultValue) {
Sunny Goyaldbfc9012017-04-17 16:58:36 -07001008 try (SQLiteTransaction t = new SQLiteTransaction(db)) {
Sunny Goyal5d85c442015-03-10 13:14:47 -07001009 db.execSQL("ALTER TABLE favorites ADD COLUMN "
1010 + columnName + " INTEGER NOT NULL DEFAULT " + defaultValue + ";");
Sunny Goyaldbfc9012017-04-17 16:58:36 -07001011 t.commit();
Kenny Guyed131872014-04-30 03:02:21 +01001012 } catch (SQLException ex) {
Kenny Guyed131872014-04-30 03:02:21 +01001013 Log.e(TAG, ex.getMessage(), ex);
1014 return false;
Kenny Guyed131872014-04-30 03:02:21 +01001015 }
1016 return true;
1017 }
1018
Michael Jurkaa8c760d2011-04-28 14:59:33 -07001019 // Generates a new ID to use for an object in your database. This method should be only
1020 // called from the main UI thread. As an exception, we do call it when we call the
1021 // constructor from the worker thread; however, this doesn't extend until after the
1022 // constructor is called, and we only pass a reference to LauncherProvider to LauncherApp
1023 // after that point
Sunny Goyal0fe505b2014-08-06 09:55:36 -07001024 @Override
Adam Cohendcd297f2013-06-18 13:13:40 -07001025 public long generateNewItemId() {
1026 if (mMaxItemId < 0) {
1027 throw new RuntimeException("Error: max item id was not initialized");
Michael Jurkaa8c760d2011-04-28 14:59:33 -07001028 }
Adam Cohendcd297f2013-06-18 13:13:40 -07001029 mMaxItemId += 1;
1030 return mMaxItemId;
Michael Jurkaa8c760d2011-04-28 14:59:33 -07001031 }
1032
Sunny Goyal55fddc82017-04-06 15:02:52 -07001033 public AppWidgetHost newLauncherWidgetHost() {
1034 return new AppWidgetHost(mContext, Launcher.APPWIDGET_HOST_ID);
1035 }
1036
Sunny Goyal0fe505b2014-08-06 09:55:36 -07001037 @Override
1038 public long insertAndCheck(SQLiteDatabase db, ContentValues values) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001039 return dbInsertAndCheck(this, db, Favorites.TABLE_NAME, null, values);
Sunny Goyal0fe505b2014-08-06 09:55:36 -07001040 }
1041
Chris Wren5dee7af2013-12-20 17:22:11 -05001042 public void checkId(String table, ContentValues values) {
1043 long id = values.getAsLong(LauncherSettings.BaseLauncherColumns._ID);
Sunny Goyal8e0e1d72016-10-10 10:41:41 -07001044 if (WorkspaceScreens.TABLE_NAME.equals(table)) {
Chris Wren5dee7af2013-12-20 17:22:11 -05001045 mMaxScreenId = Math.max(id, mMaxScreenId);
1046 } else {
1047 mMaxItemId = Math.max(id, mMaxItemId);
1048 }
1049 }
1050
Adam Cohendcd297f2013-06-18 13:13:40 -07001051 private long initializeMaxItemId(SQLiteDatabase db) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001052 return getMaxId(db, Favorites.TABLE_NAME);
Adam Cohendcd297f2013-06-18 13:13:40 -07001053 }
1054
1055 // Generates a new ID to use for an workspace screen in your database. This method
1056 // should be only called from the main UI thread. As an exception, we do call it when we
1057 // call the constructor from the worker thread; however, this doesn't extend until after the
1058 // constructor is called, and we only pass a reference to LauncherProvider to LauncherApp
1059 // after that point
1060 public long generateNewScreenId() {
1061 if (mMaxScreenId < 0) {
1062 throw new RuntimeException("Error: max screen id was not initialized");
1063 }
1064 mMaxScreenId += 1;
1065 return mMaxScreenId;
1066 }
1067
Adam Cohendcd297f2013-06-18 13:13:40 -07001068 private long initializeMaxScreenId(SQLiteDatabase db) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001069 return getMaxId(db, WorkspaceScreens.TABLE_NAME);
Adam Cohen7ec3bbf2014-07-31 00:09:45 -07001070 }
1071
Adam Cohen091440a2015-03-18 14:16:05 -07001072 @Thunk int loadFavorites(SQLiteDatabase db, AutoInstallsLayout loader) {
Adam Cohen71483f42014-05-15 14:04:01 -07001073 ArrayList<Long> screenIds = new ArrayList<Long>();
Sunny Goyal0fe505b2014-08-06 09:55:36 -07001074 // TODO: Use multiple loaders with fall-back and transaction.
1075 int count = loader.loadLayout(db, screenIds);
Adam Cohen71483f42014-05-15 14:04:01 -07001076
1077 // Add the screens specified by the items above
1078 Collections.sort(screenIds);
1079 int rank = 0;
1080 ContentValues values = new ContentValues();
1081 for (Long id : screenIds) {
1082 values.clear();
1083 values.put(LauncherSettings.WorkspaceScreens._ID, id);
1084 values.put(LauncherSettings.WorkspaceScreens.SCREEN_RANK, rank);
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001085 if (dbInsertAndCheck(this, db, WorkspaceScreens.TABLE_NAME, null, values) < 0) {
Adam Cohen71483f42014-05-15 14:04:01 -07001086 throw new RuntimeException("Failed initialize screen table"
1087 + "from default layout");
1088 }
1089 rank++;
1090 }
1091
1092 // Ensure that the max ids are initialized
1093 mMaxItemId = initializeMaxItemId(db);
1094 mMaxScreenId = initializeMaxScreenId(db);
Adam Cohen7ec3bbf2014-07-31 00:09:45 -07001095
Adam Cohen71483f42014-05-15 14:04:01 -07001096 return count;
1097 }
Mike Cleronb87bd162009-10-30 16:36:56 -07001098 }
Daniel Lehmannc3a80402012-04-23 21:35:11 -07001099
Sunny Goyalfe4e4b92015-03-04 10:43:45 -08001100 /**
1101 * @return the max _id in the provided table.
1102 */
Adam Cohen091440a2015-03-18 14:16:05 -07001103 @Thunk static long getMaxId(SQLiteDatabase db, String table) {
Sunny Goyalfe4e4b92015-03-04 10:43:45 -08001104 Cursor c = db.rawQuery("SELECT MAX(_id) FROM " + table, null);
1105 // get the result
1106 long id = -1;
1107 if (c != null && c.moveToNext()) {
1108 id = c.getLong(0);
1109 }
1110 if (c != null) {
1111 c.close();
1112 }
1113
1114 if (id == -1) {
1115 throw new RuntimeException("Error: could not query max id in " + table);
1116 }
1117
1118 return id;
1119 }
1120
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001121 static class SqlArguments {
1122 public final String table;
1123 public final String where;
1124 public final String[] args;
1125
1126 SqlArguments(Uri url, String where, String[] args) {
1127 if (url.getPathSegments().size() == 1) {
1128 this.table = url.getPathSegments().get(0);
1129 this.where = where;
1130 this.args = args;
1131 } else if (url.getPathSegments().size() != 2) {
1132 throw new IllegalArgumentException("Invalid URI: " + url);
1133 } else if (!TextUtils.isEmpty(where)) {
1134 throw new UnsupportedOperationException("WHERE clause not supported: " + url);
1135 } else {
1136 this.table = url.getPathSegments().get(0);
Daniel Lehmannc3a80402012-04-23 21:35:11 -07001137 this.where = "_id=" + ContentUris.parseId(url);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001138 this.args = null;
1139 }
1140 }
1141
1142 SqlArguments(Uri url) {
1143 if (url.getPathSegments().size() == 1) {
1144 table = url.getPathSegments().get(0);
1145 where = null;
1146 args = null;
1147 } else {
1148 throw new IllegalArgumentException("Invalid URI: " + url);
1149 }
1150 }
1151 }
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001152
1153 private static class ChangeListenerWrapper implements Handler.Callback {
1154
1155 private static final int MSG_LAUNCHER_PROVIDER_CHANGED = 1;
1156 private static final int MSG_EXTRACTED_COLORS_CHANGED = 2;
1157 private static final int MSG_APP_WIDGET_HOST_RESET = 3;
1158
1159 private LauncherProviderChangeListener mListener;
1160
1161 @Override
1162 public boolean handleMessage(Message msg) {
1163 if (mListener != null) {
1164 switch (msg.what) {
1165 case MSG_LAUNCHER_PROVIDER_CHANGED:
Sunny Goyal2e013ea2016-10-07 16:17:19 -07001166 mListener.onLauncherProviderChanged();
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001167 break;
1168 case MSG_EXTRACTED_COLORS_CHANGED:
1169 mListener.onExtractedColorsChanged();
1170 break;
1171 case MSG_APP_WIDGET_HOST_RESET:
Sunny Goyal2e013ea2016-10-07 16:17:19 -07001172 mListener.onAppWidgetHostReset();
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001173 break;
1174 }
1175 }
1176 return true;
1177 }
1178 }
Adam Cohen72960972014-01-15 18:13:55 -08001179}