blob: b83ddb9273e74289f40c0ce9a4c26e38b30ead93 [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
The Android Open Source Project7376fae2009-03-11 12:11:58 -070019import android.appwidget.AppWidgetHost;
Mike Cleronb87bd162009-10-30 16:36:56 -070020import android.appwidget.AppWidgetManager;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080021import android.content.ComponentName;
Adam Cohen228da5a2011-07-27 22:23:47 -070022import android.content.ContentProvider;
Yura085c8532014-02-11 15:15:29 +000023import android.content.ContentProviderOperation;
24import android.content.ContentProviderResult;
Adam Cohen228da5a2011-07-27 22:23:47 -070025import android.content.ContentUris;
26import android.content.ContentValues;
27import android.content.Context;
28import android.content.Intent;
Yura085c8532014-02-11 15:15:29 +000029import android.content.OperationApplicationException;
Michael Jurkab85f8a42012-04-25 15:48:32 -070030import android.content.SharedPreferences;
Sunny Goyalb2d46ce2015-03-26 11:32:11 -070031import android.content.pm.PackageManager.NameNotFoundException;
Adam Cohen228da5a2011-07-27 22:23:47 -070032import android.content.res.Resources;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080033import android.database.Cursor;
34import android.database.SQLException;
Adam Cohen228da5a2011-07-27 22:23:47 -070035import android.database.sqlite.SQLiteDatabase;
36import android.database.sqlite.SQLiteOpenHelper;
37import android.database.sqlite.SQLiteQueryBuilder;
Sunny Goyal0b037782015-04-02 10:27:03 -070038import android.database.sqlite.SQLiteStatement;
Adam Cohen228da5a2011-07-27 22:23:47 -070039import android.net.Uri;
Sunny Goyal7779d622015-06-11 16:18:39 -070040import android.os.Binder;
Sunny Goyalb2d46ce2015-03-26 11:32:11 -070041import android.os.Bundle;
Sunny Goyalb5b55c82016-05-10 12:28:59 -070042import android.os.Handler;
43import android.os.Message;
Sunny Goyal7779d622015-06-11 16:18:39 -070044import android.os.Process;
Sunny Goyale26d1002016-06-20 14:52:14 -070045import android.os.Trace;
Sunny Goyal7c74e4a2016-12-15 15:53:17 -080046import android.os.UserHandle;
Sunny Goyalb2d46ce2015-03-26 11:32:11 -070047import android.os.UserManager;
Adam Cohen228da5a2011-07-27 22:23:47 -070048import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080049import android.util.Log;
Adam Cohen228da5a2011-07-27 22:23:47 -070050
Sunny Goyal0fe505b2014-08-06 09:55:36 -070051import com.android.launcher3.AutoInstallsLayout.LayoutParserCallback;
52import com.android.launcher3.LauncherSettings.Favorites;
Sunny Goyalb5b55c82016-05-10 12:28:59 -070053import com.android.launcher3.LauncherSettings.WorkspaceScreens;
Kenny Guyed131872014-04-30 03:02:21 +010054import com.android.launcher3.compat.UserManagerCompat;
Sunny Goyala9e2f5a2016-06-10 12:22:04 -070055import com.android.launcher3.config.FeatureFlags;
Tony Wickham827cef22016-03-17 15:39:39 -070056import com.android.launcher3.dynamicui.ExtractionUtils;
Sunny Goyalfdbef272017-02-01 12:52:54 -080057import com.android.launcher3.logging.FileLog;
Sunny Goyala9e2f5a2016-06-10 12:22:04 -070058import com.android.launcher3.provider.LauncherDbUtils;
Sunny Goyale8f7d5a2016-05-24 11:30:14 -070059import com.android.launcher3.provider.RestoreDbTask;
Sunny Goyale2fba6c2015-05-12 10:39:59 -070060import com.android.launcher3.util.ManagedProfileHeuristic;
Sunny Goyalbf67f3b2016-03-15 15:30:11 -070061import com.android.launcher3.util.NoLocaleSqliteContext;
Sunny Goyalb5b55c82016-05-10 12:28:59 -070062import com.android.launcher3.util.Preconditions;
Adam Cohen091440a2015-03-18 14:16:05 -070063import com.android.launcher3.util.Thunk;
Michael Jurka8b805b12012-04-18 14:23:14 -070064
Hyunyoung Song6aa37292017-02-06 10:46:24 -080065import java.io.FileDescriptor;
66import java.io.PrintWriter;
Mike Cleronb87bd162009-10-30 16:36:56 -070067import java.net.URISyntaxException;
Adam Cohen228da5a2011-07-27 22:23:47 -070068import java.util.ArrayList;
Adam Cohen71483f42014-05-15 14:04:01 -070069import java.util.Collections;
Louis Begina9c21c62016-08-15 15:18:41 -070070import java.util.Locale;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080071
The Android Open Source Project31dd5032009-03-03 19:32:27 -080072public class LauncherProvider extends ContentProvider {
Sunny Goyalc74e4192015-09-08 14:01:03 -070073 private static final String TAG = "LauncherProvider";
Joe Onoratoa30ce8e2009-11-11 08:16:49 -080074 private static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080075
Sunny Goyala9e2f5a2016-06-10 12:22:04 -070076 private static final int DATABASE_VERSION = 27;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080077
Sunny Goyal3d706ad2017-03-06 16:56:39 -080078 public static final String AUTHORITY = (BuildConfig.APPLICATION_ID + ".settings").intern();
Winson Chung3d503fb2011-07-13 17:25:49 -070079
Sunny Goyale87e6ab2014-11-21 22:42:53 -080080 static final String EMPTY_DATABASE_CREATED = "EMPTY_DATABASE_CREATED";
The Android Open Source Project31dd5032009-03-03 19:32:27 -080081
Sunny Goyalb2d46ce2015-03-26 11:32:11 -070082 private static final String RESTRICTION_PACKAGE_NAME = "workspace.configuration.package.name";
83
Sunny Goyalb5b55c82016-05-10 12:28:59 -070084 private final ChangeListenerWrapper mListenerWrapper = new ChangeListenerWrapper();
85 private Handler mListenerHandler;
86
Sunny Goyalf076eae2016-01-11 12:25:10 -080087 protected DatabaseHelper mOpenHelper;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080088
Hyunyoung Song6aa37292017-02-06 10:46:24 -080089 /**
90 * $ adb shell dumpsys activity provider com.android.launcher3
91 */
92 @Override
93 public void dump(FileDescriptor fd, PrintWriter writer, String[] args) {
94 LauncherAppState appState = LauncherAppState.getInstanceNoCreate();
95 if (appState == null || !appState.getModel().isModelLoaded()) {
96 return;
97 }
98 appState.getModel().dumpState("", fd, writer, args);
99 }
100
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800101 @Override
102 public boolean onCreate() {
Sunny Goyal3d706ad2017-03-06 16:56:39 -0800103 if (FeatureFlags.IS_DOGFOOD_BUILD) {
Sunny Goyale26d1002016-06-20 14:52:14 -0700104 Log.d(TAG, "Launcher process started");
105 }
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700106 mListenerHandler = new Handler(mListenerWrapper);
107
Sunny Goyalfdbef272017-02-01 12:52:54 -0800108 // The content provider exists for the entire duration of the launcher main process and
109 // is the first component to get created. Initializing FileLog here ensures that it's
110 // always available in the main process.
111 FileLog.setDir(getContext().getApplicationContext().getFilesDir());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800112 return true;
113 }
114
Sunny Goyald3849d12015-10-29 10:28:32 -0700115 /**
116 * Sets a provider listener.
117 */
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700118 public void setLauncherProviderChangeListener(LauncherProviderChangeListener listener) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700119 Preconditions.assertUIThread();
120 mListenerWrapper.mListener = listener;
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700121 }
122
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800123 @Override
124 public String getType(Uri uri) {
125 SqlArguments args = new SqlArguments(uri, null, null);
126 if (TextUtils.isEmpty(args.where)) {
127 return "vnd.android.cursor.dir/" + args.table;
128 } else {
129 return "vnd.android.cursor.item/" + args.table;
130 }
131 }
132
Sunny Goyalf076eae2016-01-11 12:25:10 -0800133 /**
134 * Overridden in tests
135 */
136 protected synchronized void createDbIfNotExists() {
Sunny Goyald3849d12015-10-29 10:28:32 -0700137 if (mOpenHelper == null) {
Sunny Goyale26d1002016-06-20 14:52:14 -0700138 if (LauncherAppState.PROFILE_STARTUP) {
139 Trace.beginSection("Opening workspace DB");
140 }
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700141 mOpenHelper = new DatabaseHelper(getContext(), mListenerHandler);
Sunny Goyale8f7d5a2016-05-24 11:30:14 -0700142
143 if (RestoreDbTask.isPending(getContext())) {
144 if (!RestoreDbTask.performRestore(mOpenHelper)) {
145 mOpenHelper.createEmptyDB(mOpenHelper.getWritableDatabase());
146 }
147 // Set is pending to false irrespective of the result, so that it doesn't get
148 // executed again.
149 RestoreDbTask.setPending(getContext(), false);
150 }
Sunny Goyale26d1002016-06-20 14:52:14 -0700151
152 if (LauncherAppState.PROFILE_STARTUP) {
153 Trace.endSection();
154 }
Sunny Goyald3849d12015-10-29 10:28:32 -0700155 }
156 }
157
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800158 @Override
159 public Cursor query(Uri uri, String[] projection, String selection,
160 String[] selectionArgs, String sortOrder) {
Sunny Goyald3849d12015-10-29 10:28:32 -0700161 createDbIfNotExists();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800162
163 SqlArguments args = new SqlArguments(uri, selection, selectionArgs);
164 SQLiteQueryBuilder qb = new SQLiteQueryBuilder();
165 qb.setTables(args.table);
166
Romain Guy73b979d2009-06-09 12:57:21 -0700167 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800168 Cursor result = qb.query(db, projection, args.where, args.args, null, null, sortOrder);
169 result.setNotificationUri(getContext().getContentResolver(), uri);
170
171 return result;
172 }
173
Adam Cohen091440a2015-03-18 14:16:05 -0700174 @Thunk static long dbInsertAndCheck(DatabaseHelper helper,
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700175 SQLiteDatabase db, String table, String nullColumnHack, ContentValues values) {
Dan Sandlerd5024042014-01-09 15:01:33 -0500176 if (values == null) {
177 throw new RuntimeException("Error: attempting to insert null values");
178 }
Adam Cohen71483f42014-05-15 14:04:01 -0700179 if (!values.containsKey(LauncherSettings.ChangeLogColumns._ID)) {
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700180 throw new RuntimeException("Error: attempting to add item without specifying an id");
181 }
Chris Wren5dee7af2013-12-20 17:22:11 -0500182 helper.checkId(table, values);
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700183 return db.insert(table, nullColumnHack, values);
184 }
185
Sunny Goyald1064182015-08-13 12:08:30 -0700186 private void reloadLauncherIfExternal() {
Sunny Goyalc74e4192015-09-08 14:01:03 -0700187 if (Utilities.ATLEAST_MARSHMALLOW && Binder.getCallingPid() != Process.myPid()) {
Sunny Goyald1064182015-08-13 12:08:30 -0700188 LauncherAppState app = LauncherAppState.getInstanceNoCreate();
189 if (app != null) {
Sunny Goyaldd96a5e2017-02-17 11:22:34 -0800190 app.getModel().forceReload();
Sunny Goyald1064182015-08-13 12:08:30 -0700191 }
192 }
193 }
194
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800195 @Override
196 public Uri insert(Uri uri, ContentValues initialValues) {
Sunny Goyald3849d12015-10-29 10:28:32 -0700197 createDbIfNotExists();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800198 SqlArguments args = new SqlArguments(uri);
199
Sunny Goyald1064182015-08-13 12:08:30 -0700200 // In very limited cases, we support system|signature permission apps to modify the db.
201 if (Binder.getCallingPid() != Process.myPid()) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700202 if (!initializeExternalAdd(initialValues)) {
Adam Cohena043fa82014-07-23 14:49:38 -0700203 return null;
204 }
205 }
206
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800207 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
Chris Wren1ada10d2013-09-13 18:01:38 -0400208 addModifiedTime(initialValues);
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700209 final long rowId = dbInsertAndCheck(mOpenHelper, db, args.table, null, initialValues);
Sunny Goyale72f3d52015-03-02 14:24:21 -0800210 if (rowId < 0) return null;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800211
212 uri = ContentUris.withAppendedId(uri, rowId);
Sunny Goyal1d4a2df2015-03-30 11:11:46 -0700213 notifyListeners();
214
Sunny Goyalc74e4192015-09-08 14:01:03 -0700215 if (Utilities.ATLEAST_MARSHMALLOW) {
216 reloadLauncherIfExternal();
217 } else {
218 // Deprecated behavior to support legacy devices which rely on provider callbacks.
219 LauncherAppState app = LauncherAppState.getInstanceNoCreate();
220 if (app != null && "true".equals(uri.getQueryParameter("isExternalAdd"))) {
Sunny Goyaldd96a5e2017-02-17 11:22:34 -0800221 app.getModel().forceReload();
Sunny Goyalc74e4192015-09-08 14:01:03 -0700222 }
223
224 String notify = uri.getQueryParameter("notify");
225 if (notify == null || "true".equals(notify)) {
226 getContext().getContentResolver().notifyChange(uri, null);
227 }
228 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800229 return uri;
230 }
231
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700232 private boolean initializeExternalAdd(ContentValues values) {
233 // 1. Ensure that externally added items have a valid item id
234 long id = mOpenHelper.generateNewItemId();
235 values.put(LauncherSettings.Favorites._ID, id);
236
237 // 2. In the case of an app widget, and if no app widget id is specified, we
238 // attempt allocate and bind the widget.
239 Integer itemType = values.getAsInteger(LauncherSettings.Favorites.ITEM_TYPE);
240 if (itemType != null &&
241 itemType.intValue() == LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET &&
242 !values.containsKey(LauncherSettings.Favorites.APPWIDGET_ID)) {
243
244 final AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(getContext());
245 ComponentName cn = ComponentName.unflattenFromString(
246 values.getAsString(Favorites.APPWIDGET_PROVIDER));
247
248 if (cn != null) {
249 try {
250 int appWidgetId = new AppWidgetHost(getContext(), Launcher.APPWIDGET_HOST_ID)
251 .allocateAppWidgetId();
252 values.put(LauncherSettings.Favorites.APPWIDGET_ID, appWidgetId);
253 if (!appWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,cn)) {
254 return false;
255 }
256 } catch (RuntimeException e) {
257 Log.e(TAG, "Failed to initialize external widget", e);
258 return false;
259 }
260 } else {
261 return false;
262 }
263 }
264
265 // Add screen id if not present
266 long screenId = values.getAsLong(LauncherSettings.Favorites.SCREEN);
267 SQLiteStatement stmp = null;
268 try {
269 stmp = mOpenHelper.getWritableDatabase().compileStatement(
270 "INSERT OR IGNORE INTO workspaceScreens (_id, screenRank) " +
271 "select ?, (ifnull(MAX(screenRank), -1)+1) from workspaceScreens");
272 stmp.bindLong(1, screenId);
273
274 ContentValues valuesInserted = new ContentValues();
275 valuesInserted.put(LauncherSettings.BaseLauncherColumns._ID, stmp.executeInsert());
276 mOpenHelper.checkId(WorkspaceScreens.TABLE_NAME, valuesInserted);
277 return true;
278 } catch (Exception e) {
279 return false;
280 } finally {
281 Utilities.closeSilently(stmp);
282 }
283 }
284
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800285 @Override
286 public int bulkInsert(Uri uri, ContentValues[] values) {
Sunny Goyald3849d12015-10-29 10:28:32 -0700287 createDbIfNotExists();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800288 SqlArguments args = new SqlArguments(uri);
289
290 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
291 db.beginTransaction();
292 try {
293 int numValues = values.length;
294 for (int i = 0; i < numValues; i++) {
Chris Wren1ada10d2013-09-13 18:01:38 -0400295 addModifiedTime(values[i]);
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700296 if (dbInsertAndCheck(mOpenHelper, db, args.table, null, values[i]) < 0) {
297 return 0;
298 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800299 }
300 db.setTransactionSuccessful();
301 } finally {
302 db.endTransaction();
303 }
304
Sunny Goyal1d4a2df2015-03-30 11:11:46 -0700305 notifyListeners();
Sunny Goyald1064182015-08-13 12:08:30 -0700306 reloadLauncherIfExternal();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800307 return values.length;
308 }
309
310 @Override
Yura085c8532014-02-11 15:15:29 +0000311 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations)
312 throws OperationApplicationException {
Sunny Goyald3849d12015-10-29 10:28:32 -0700313 createDbIfNotExists();
Yura085c8532014-02-11 15:15:29 +0000314 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
315 db.beginTransaction();
316 try {
317 ContentProviderResult[] result = super.applyBatch(operations);
318 db.setTransactionSuccessful();
Sunny Goyald1064182015-08-13 12:08:30 -0700319 reloadLauncherIfExternal();
Yura085c8532014-02-11 15:15:29 +0000320 return result;
321 } finally {
322 db.endTransaction();
323 }
324 }
325
326 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800327 public int delete(Uri uri, String selection, String[] selectionArgs) {
Sunny Goyald3849d12015-10-29 10:28:32 -0700328 createDbIfNotExists();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800329 SqlArguments args = new SqlArguments(uri, selection, selectionArgs);
330
331 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800332
Louis Begina9c21c62016-08-15 15:18:41 -0700333 if (Binder.getCallingPid() != Process.myPid()
334 && Favorites.TABLE_NAME.equalsIgnoreCase(args.table)) {
335 String widgetSelection = TextUtils.isEmpty(args.where) ? "1=1" : args.where;
336 widgetSelection = String.format(Locale.ENGLISH, "%1$s = %2$d AND ( %3$s )",
337 Favorites.ITEM_TYPE, Favorites.ITEM_TYPE_APPWIDGET, widgetSelection);
338 try (Cursor c = db.query(Favorites.TABLE_NAME, new String[] { Favorites.APPWIDGET_ID },
339 widgetSelection, args.args, null, null, null)) {
340 AppWidgetHost host = new AppWidgetHost(getContext(), Launcher.APPWIDGET_HOST_ID);
341 while (c.moveToNext()) {
342 int widgetId = c.getInt(0);
343 if (widgetId != AppWidgetManager.INVALID_APPWIDGET_ID) {
344 try {
345 host.deleteAppWidgetId(widgetId);
346 } catch (RuntimeException e) {
347 Log.e(TAG, "Error deleting widget id " + widgetId, e);
348 }
349 }
350 }
351 }
352 }
353 int count = db.delete(args.table, args.where, args.args);
354 if (count > 0) {
355 notifyListeners();
356 reloadLauncherIfExternal();
357 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800358 return count;
359 }
360
361 @Override
362 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
Sunny Goyald3849d12015-10-29 10:28:32 -0700363 createDbIfNotExists();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800364 SqlArguments args = new SqlArguments(uri, selection, selectionArgs);
365
Chris Wren1ada10d2013-09-13 18:01:38 -0400366 addModifiedTime(values);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800367 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
368 int count = db.update(args.table, values, args.where, args.args);
Sunny Goyal1d4a2df2015-03-30 11:11:46 -0700369 if (count > 0) notifyListeners();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800370
Sunny Goyald1064182015-08-13 12:08:30 -0700371 reloadLauncherIfExternal();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800372 return count;
373 }
374
Sunny Goyal7779d622015-06-11 16:18:39 -0700375 @Override
Tony Wickham827cef22016-03-17 15:39:39 -0700376 public Bundle call(String method, final String arg, final Bundle extras) {
Sunny Goyal7779d622015-06-11 16:18:39 -0700377 if (Binder.getCallingUid() != Process.myUid()) {
378 return null;
379 }
Sunny Goyald3849d12015-10-29 10:28:32 -0700380 createDbIfNotExists();
Sunny Goyal7779d622015-06-11 16:18:39 -0700381
382 switch (method) {
Tony Wickham827cef22016-03-17 15:39:39 -0700383 case LauncherSettings.Settings.METHOD_SET_EXTRACTED_COLORS_AND_WALLPAPER_ID: {
384 String extractedColors = extras.getString(
385 LauncherSettings.Settings.EXTRA_EXTRACTED_COLORS);
386 int wallpaperId = extras.getInt(LauncherSettings.Settings.EXTRA_WALLPAPER_ID);
387 Utilities.getPrefs(getContext()).edit()
388 .putString(ExtractionUtils.EXTRACTED_COLORS_PREFERENCE_KEY, extractedColors)
389 .putInt(ExtractionUtils.WALLPAPER_ID_PREFERENCE_KEY, wallpaperId)
390 .apply();
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700391 mListenerHandler.sendEmptyMessage(ChangeListenerWrapper.MSG_EXTRACTED_COLORS_CHANGED);
Tony Wickham827cef22016-03-17 15:39:39 -0700392 Bundle result = new Bundle();
393 result.putString(LauncherSettings.Settings.EXTRA_VALUE, extractedColors);
394 return result;
395 }
Sunny Goyald2497482015-09-22 18:24:19 -0700396 case LauncherSettings.Settings.METHOD_CLEAR_EMPTY_DB_FLAG: {
397 clearFlagEmptyDbCreated();
398 return null;
399 }
Sunny Goyala5c8a9e2016-07-08 08:32:44 -0700400 case LauncherSettings.Settings.METHOD_WAS_EMPTY_DB_CREATED : {
401 Bundle result = new Bundle();
402 result.putBoolean(LauncherSettings.Settings.EXTRA_VALUE,
403 Utilities.getPrefs(getContext()).getBoolean(EMPTY_DATABASE_CREATED, false));
404 return result;
405 }
Sunny Goyald2497482015-09-22 18:24:19 -0700406 case LauncherSettings.Settings.METHOD_DELETE_EMPTY_FOLDERS: {
407 Bundle result = new Bundle();
408 result.putSerializable(LauncherSettings.Settings.EXTRA_VALUE, deleteEmptyFolders());
409 return result;
410 }
411 case LauncherSettings.Settings.METHOD_NEW_ITEM_ID: {
412 Bundle result = new Bundle();
413 result.putLong(LauncherSettings.Settings.EXTRA_VALUE, mOpenHelper.generateNewItemId());
414 return result;
415 }
416 case LauncherSettings.Settings.METHOD_NEW_SCREEN_ID: {
417 Bundle result = new Bundle();
418 result.putLong(LauncherSettings.Settings.EXTRA_VALUE, mOpenHelper.generateNewScreenId());
419 return result;
420 }
421 case LauncherSettings.Settings.METHOD_CREATE_EMPTY_DB: {
Sunny Goyale05b08f2017-02-23 18:30:22 -0800422 mOpenHelper.createEmptyDB(mOpenHelper.getWritableDatabase());
Sunny Goyald2497482015-09-22 18:24:19 -0700423 return null;
424 }
425 case LauncherSettings.Settings.METHOD_LOAD_DEFAULT_FAVORITES: {
426 loadDefaultFavoritesIfNecessary();
427 return null;
428 }
Sunny Goyal7779d622015-06-11 16:18:39 -0700429 }
430 return null;
431 }
432
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700433 /**
434 * Deletes any empty folder from the DB.
435 * @return Ids of deleted folders.
436 */
Sunny Goyald2497482015-09-22 18:24:19 -0700437 private ArrayList<Long> deleteEmptyFolders() {
438 ArrayList<Long> folderIds = new ArrayList<>();
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700439 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
440 db.beginTransaction();
441 try {
442 // Select folders whose id do not match any container value.
443 String selection = LauncherSettings.Favorites.ITEM_TYPE + " = "
444 + LauncherSettings.Favorites.ITEM_TYPE_FOLDER + " AND "
445 + LauncherSettings.Favorites._ID + " NOT IN (SELECT " +
446 LauncherSettings.Favorites.CONTAINER + " FROM "
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700447 + Favorites.TABLE_NAME + ")";
448 Cursor c = db.query(Favorites.TABLE_NAME,
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700449 new String[] {LauncherSettings.Favorites._ID},
450 selection, null, null, null, null);
451 while (c.moveToNext()) {
452 folderIds.add(c.getLong(0));
453 }
454 c.close();
Sunny Goyald2497482015-09-22 18:24:19 -0700455 if (!folderIds.isEmpty()) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700456 db.delete(Favorites.TABLE_NAME, Utilities.createDbSelectionQuery(
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700457 LauncherSettings.Favorites._ID, folderIds), null);
458 }
459 db.setTransactionSuccessful();
460 } catch (SQLException ex) {
461 Log.e(TAG, ex.getMessage(), ex);
462 folderIds.clear();
463 } finally {
464 db.endTransaction();
465 }
466 return folderIds;
467 }
468
Sunny Goyalf076eae2016-01-11 12:25:10 -0800469 /**
470 * Overridden in tests
471 */
472 protected void notifyListeners() {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700473 mListenerHandler.sendEmptyMessage(ChangeListenerWrapper.MSG_LAUNCHER_PROVIDER_CHANGED);
Chris Wren1ada10d2013-09-13 18:01:38 -0400474 }
475
Adam Cohen091440a2015-03-18 14:16:05 -0700476 @Thunk static void addModifiedTime(ContentValues values) {
Chris Wren1ada10d2013-09-13 18:01:38 -0400477 values.put(LauncherSettings.ChangeLogColumns.MODIFIED, System.currentTimeMillis());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800478 }
479
Sunny Goyald2497482015-09-22 18:24:19 -0700480 private void clearFlagEmptyDbCreated() {
Sunny Goyalf7258242015-10-19 16:59:07 -0700481 Utilities.getPrefs(getContext()).edit().remove(EMPTY_DATABASE_CREATED).commit();
Sunny Goyal33d44382014-10-16 09:24:19 -0700482 }
483
Sunny Goyal42de82f2014-09-26 22:09:29 -0700484 /**
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700485 * Loads the default workspace based on the following priority scheme:
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700486 * 1) From the app restrictions
487 * 2) From a package provided by play store
488 * 3) From a partner configuration APK, already in the system image
489 * 4) The default configuration for the particular device
Brian Muramatsu5524b492012-10-02 16:55:54 -0700490 */
Sunny Goyald2497482015-09-22 18:24:19 -0700491 synchronized private void loadDefaultFavoritesIfNecessary() {
Sunny Goyalf7258242015-10-19 16:59:07 -0700492 SharedPreferences sp = Utilities.getPrefs(getContext());
Adam Cohene25af792013-06-06 23:08:25 -0700493
Winson Chungc763c4e2013-07-19 13:49:06 -0700494 if (sp.getBoolean(EMPTY_DATABASE_CREATED, false)) {
Chris Wren5dee7af2013-12-20 17:22:11 -0500495 Log.d(TAG, "loading default workspace");
Michael Jurka45355c42012-10-08 13:21:35 +0200496
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700497 AppWidgetHost widgetHost = new AppWidgetHost(getContext(), Launcher.APPWIDGET_HOST_ID);
498 AutoInstallsLayout loader = createWorkspaceLoaderFromAppRestriction(widgetHost);
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700499 if (loader == null) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700500 loader = AutoInstallsLayout.get(getContext(),widgetHost, mOpenHelper);
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700501 }
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700502 if (loader == null) {
Adam Cohen9b8f51f2014-05-30 15:34:09 -0700503 final Partner partner = Partner.get(getContext().getPackageManager());
504 if (partner != null && partner.hasDefaultLayout()) {
505 final Resources partnerRes = partner.getResources();
Adam Cohen4ae96ce2014-08-29 15:05:48 -0700506 int workspaceResId = partnerRes.getIdentifier(Partner.RES_DEFAULT_LAYOUT,
Adam Cohen9b8f51f2014-05-30 15:34:09 -0700507 "xml", partner.getPackageName());
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700508 if (workspaceResId != 0) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700509 loader = new DefaultLayoutParser(getContext(), widgetHost,
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700510 mOpenHelper, partnerRes, workspaceResId);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700511 }
Adam Cohen9b8f51f2014-05-30 15:34:09 -0700512 }
513 }
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700514
Sunny Goyal9d219682014-10-23 14:21:02 -0700515 final boolean usingExternallyProvidedLayout = loader != null;
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700516 if (loader == null) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700517 loader = getDefaultLayoutParser(widgetHost);
Brian Muramatsu5524b492012-10-02 16:55:54 -0700518 }
Sunny Goyalc6c8fef2015-03-04 09:51:18 -0800519
520 // There might be some partially restored DB items, due to buggy restore logic in
521 // previous versions of launcher.
Sunny Goyale05b08f2017-02-23 18:30:22 -0800522 mOpenHelper.createEmptyDB(mOpenHelper.getWritableDatabase());
Michael Jurkab85f8a42012-04-25 15:48:32 -0700523 // Populate favorites table with initial favorites
Sunny Goyal9d219682014-10-23 14:21:02 -0700524 if ((mOpenHelper.loadFavorites(mOpenHelper.getWritableDatabase(), loader) <= 0)
525 && usingExternallyProvidedLayout) {
526 // Unable to load external layout. Cleanup and load the internal layout.
Sunny Goyale05b08f2017-02-23 18:30:22 -0800527 mOpenHelper.createEmptyDB(mOpenHelper.getWritableDatabase());
Sunny Goyal9d219682014-10-23 14:21:02 -0700528 mOpenHelper.loadFavorites(mOpenHelper.getWritableDatabase(),
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700529 getDefaultLayoutParser(widgetHost));
Sunny Goyal9d219682014-10-23 14:21:02 -0700530 }
Sunny Goyal33d44382014-10-16 09:24:19 -0700531 clearFlagEmptyDbCreated();
Michael Jurkab85f8a42012-04-25 15:48:32 -0700532 }
533 }
534
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700535 /**
536 * Creates workspace loader from an XML resource listed in the app restrictions.
537 *
538 * @return the loader if the restrictions are set and the resource exists; null otherwise.
539 */
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700540 private AutoInstallsLayout createWorkspaceLoaderFromAppRestriction(AppWidgetHost widgetHost) {
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700541 Context ctx = getContext();
542 UserManager um = (UserManager) ctx.getSystemService(Context.USER_SERVICE);
543 Bundle bundle = um.getApplicationRestrictions(ctx.getPackageName());
Sunny Goyal35ca8732015-04-06 10:45:31 -0700544 if (bundle == null) {
545 return null;
546 }
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700547
Sunny Goyal35ca8732015-04-06 10:45:31 -0700548 String packageName = bundle.getString(RESTRICTION_PACKAGE_NAME);
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700549 if (packageName != null) {
550 try {
551 Resources targetResources = ctx.getPackageManager()
552 .getResourcesForApplication(packageName);
553 return AutoInstallsLayout.get(ctx, packageName, targetResources,
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700554 widgetHost, mOpenHelper);
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700555 } catch (NameNotFoundException e) {
556 Log.e(TAG, "Target package for restricted profile not found", e);
557 return null;
558 }
559 }
560 return null;
561 }
562
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700563 private DefaultLayoutParser getDefaultLayoutParser(AppWidgetHost widgetHost) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800564 int defaultLayout = LauncherAppState.getIDP(getContext()).defaultLayoutId;
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700565 return new DefaultLayoutParser(getContext(), widgetHost,
Sunny Goyal9d219682014-10-23 14:21:02 -0700566 mOpenHelper, getContext().getResources(), defaultLayout);
567 }
568
Sunny Goyald3849d12015-10-29 10:28:32 -0700569 /**
Sunny Goyalf076eae2016-01-11 12:25:10 -0800570 * The class is subclassed in tests to create an in-memory db.
571 */
Sunny Goyalc190dbf2016-05-05 14:37:05 -0700572 public static class DatabaseHelper extends SQLiteOpenHelper implements LayoutParserCallback {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700573 private final Handler mWidgetHostResetHandler;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800574 private final Context mContext;
Adam Cohendcd297f2013-06-18 13:13:40 -0700575 private long mMaxItemId = -1;
576 private long mMaxScreenId = -1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800577
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700578 DatabaseHelper(Context context, Handler widgetHostResetHandler) {
579 this(context, widgetHostResetHandler, LauncherFiles.LAUNCHER_DB);
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700580 // Table creation sometimes fails silently, which leads to a crash loop.
581 // This way, we will try to create a table every time after crash, so the device
582 // would eventually be able to recover.
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700583 if (!tableExists(Favorites.TABLE_NAME) || !tableExists(WorkspaceScreens.TABLE_NAME)) {
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700584 Log.e(TAG, "Tables are missing after onCreate has been called. Trying to recreate");
585 // This operation is a no-op if the table already exists.
586 addFavoritesTable(getWritableDatabase(), true);
587 addWorkspacesTable(getWritableDatabase(), true);
588 }
589
Sunny Goyal7eab3cc2016-03-18 17:42:55 -0700590 initIds();
591 }
592
593 /**
Sunny Goyalc190dbf2016-05-05 14:37:05 -0700594 * Constructor used in tests and for restore.
Sunny Goyal7eab3cc2016-03-18 17:42:55 -0700595 */
596 public DatabaseHelper(
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700597 Context context, Handler widgetHostResetHandler, String tableName) {
Sunny Goyal7eab3cc2016-03-18 17:42:55 -0700598 super(new NoLocaleSqliteContext(context), tableName, null, DATABASE_VERSION);
599 mContext = context;
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700600 mWidgetHostResetHandler = widgetHostResetHandler;
Sunny Goyal7eab3cc2016-03-18 17:42:55 -0700601 }
602
603 protected void initIds() {
Winson Chung3d503fb2011-07-13 17:25:49 -0700604 // In the case where neither onCreate nor onUpgrade gets called, we read the maxId from
605 // the DB here
Adam Cohendcd297f2013-06-18 13:13:40 -0700606 if (mMaxItemId == -1) {
607 mMaxItemId = initializeMaxItemId(getWritableDatabase());
608 }
609 if (mMaxScreenId == -1) {
610 mMaxScreenId = initializeMaxScreenId(getWritableDatabase());
Winson Chung3d503fb2011-07-13 17:25:49 -0700611 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800612 }
613
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700614 private boolean tableExists(String tableName) {
615 Cursor c = getReadableDatabase().query(
616 true, "sqlite_master", new String[] {"tbl_name"},
617 "tbl_name = ?", new String[] {tableName},
618 null, null, null, null, null);
619 try {
620 return c.getCount() > 0;
621 } finally {
622 c.close();
623 }
624 }
625
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800626 @Override
627 public void onCreate(SQLiteDatabase db) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800628 if (LOGD) Log.d(TAG, "creating new launcher database");
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700629
Adam Cohendcd297f2013-06-18 13:13:40 -0700630 mMaxItemId = 1;
631 mMaxScreenId = 0;
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700632
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700633 addFavoritesTable(db, false);
634 addWorkspacesTable(db, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800635
Sunny Goyale87e6ab2014-11-21 22:42:53 -0800636 // Fresh and clean launcher DB.
637 mMaxItemId = initializeMaxItemId(db);
Sunny Goyalf076eae2016-01-11 12:25:10 -0800638 onEmptyDbCreated();
639 }
640
641 /**
642 * Overriden in tests.
643 */
644 protected void onEmptyDbCreated() {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700645 // Database was just created, so wipe any previous widgets
646 if (mWidgetHostResetHandler != null) {
647 new AppWidgetHost(mContext, Launcher.APPWIDGET_HOST_ID).deleteHost();
Sunny Goyal2e013ea2016-10-07 16:17:19 -0700648 mWidgetHostResetHandler.sendEmptyMessage(
Sunny Goyal72db9af2016-11-29 07:25:49 +0530649 ChangeListenerWrapper.MSG_APP_WIDGET_HOST_RESET);
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700650 }
651
Sunny Goyalf076eae2016-01-11 12:25:10 -0800652 // Set the flag for empty DB
653 Utilities.getPrefs(mContext).edit().putBoolean(EMPTY_DATABASE_CREATED, true).commit();
Sunny Goyale2fba6c2015-05-12 10:39:59 -0700654
655 // When a new DB is created, remove all previously stored managed profile information.
Sunny Goyal7c74e4a2016-12-15 15:53:17 -0800656 ManagedProfileHeuristic.processAllUsers(Collections.<UserHandle>emptyList(),
Sunny Goyalf076eae2016-01-11 12:25:10 -0800657 mContext);
658 }
659
Sunny Goyale8f7d5a2016-05-24 11:30:14 -0700660 public long getDefaultUserSerial() {
Sunny Goyalf076eae2016-01-11 12:25:10 -0800661 return UserManagerCompat.getInstance(mContext).getSerialNumberForUser(
Sunny Goyal7c74e4a2016-12-15 15:53:17 -0800662 Process.myUserHandle());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800663 }
664
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700665 private void addFavoritesTable(SQLiteDatabase db, boolean optional) {
Sunny Goyalc190dbf2016-05-05 14:37:05 -0700666 Favorites.addTableToDb(db, getDefaultUserSerial(), optional);
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700667 }
668
669 private void addWorkspacesTable(SQLiteDatabase db, boolean optional) {
670 String ifNotExists = optional ? " IF NOT EXISTS " : "";
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700671 db.execSQL("CREATE TABLE " + ifNotExists + WorkspaceScreens.TABLE_NAME + " (" +
Sunny Goyald2f38192015-02-25 10:46:34 -0800672 LauncherSettings.WorkspaceScreens._ID + " INTEGER PRIMARY KEY," +
Chris Wren1ada10d2013-09-13 18:01:38 -0400673 LauncherSettings.WorkspaceScreens.SCREEN_RANK + " INTEGER," +
674 LauncherSettings.ChangeLogColumns.MODIFIED + " INTEGER NOT NULL DEFAULT 0" +
Adam Cohendcd297f2013-06-18 13:13:40 -0700675 ");");
676 }
677
Adam Cohen119285e2014-04-02 16:59:08 -0700678 private void removeOrphanedItems(SQLiteDatabase db) {
Adam Cohenf9c14de2014-04-17 18:20:45 -0700679 // Delete items directly on the workspace who's screen id doesn't exist
680 // "DELETE FROM favorites WHERE screen NOT IN (SELECT _id FROM workspaceScreens)
681 // AND container = -100"
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700682 String removeOrphanedDesktopItems = "DELETE FROM " + Favorites.TABLE_NAME +
Adam Cohenf9c14de2014-04-17 18:20:45 -0700683 " WHERE " +
Adam Cohen119285e2014-04-02 16:59:08 -0700684 LauncherSettings.Favorites.SCREEN + " NOT IN (SELECT " +
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700685 LauncherSettings.WorkspaceScreens._ID + " FROM " + WorkspaceScreens.TABLE_NAME + ")" +
Adam Cohenf9c14de2014-04-17 18:20:45 -0700686 " AND " +
687 LauncherSettings.Favorites.CONTAINER + " = " +
688 LauncherSettings.Favorites.CONTAINER_DESKTOP;
689 db.execSQL(removeOrphanedDesktopItems);
690
691 // Delete items contained in folders which no longer exist (after above statement)
692 // "DELETE FROM favorites WHERE container <> -100 AND container <> -101 AND container
693 // NOT IN (SELECT _id FROM favorites WHERE itemType = 2)"
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700694 String removeOrphanedFolderItems = "DELETE FROM " + Favorites.TABLE_NAME +
Adam Cohenf9c14de2014-04-17 18:20:45 -0700695 " WHERE " +
696 LauncherSettings.Favorites.CONTAINER + " <> " +
697 LauncherSettings.Favorites.CONTAINER_DESKTOP +
698 " AND "
699 + LauncherSettings.Favorites.CONTAINER + " <> " +
700 LauncherSettings.Favorites.CONTAINER_HOTSEAT +
701 " AND "
702 + LauncherSettings.Favorites.CONTAINER + " NOT IN (SELECT " +
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700703 LauncherSettings.Favorites._ID + " FROM " + Favorites.TABLE_NAME +
Adam Cohenf9c14de2014-04-17 18:20:45 -0700704 " WHERE " + LauncherSettings.Favorites.ITEM_TYPE + " = " +
705 LauncherSettings.Favorites.ITEM_TYPE_FOLDER + ")";
706 db.execSQL(removeOrphanedFolderItems);
Adam Cohen119285e2014-04-02 16:59:08 -0700707 }
708
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800709 @Override
710 public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
Winson Chungc763c4e2013-07-19 13:49:06 -0700711 if (LOGD) Log.d(TAG, "onUpgrade triggered: " + oldVersion);
Sunny Goyala2cc6242015-01-14 14:23:02 -0800712 switch (oldVersion) {
713 // The version cannot be lower that 12, as Launcher3 never supported a lower
Sunny Goyale87e6ab2014-11-21 22:42:53 -0800714 // version of the DB.
Sunny Goyala2cc6242015-01-14 14:23:02 -0800715 case 12: {
716 // With the new shrink-wrapped and re-orderable workspaces, it makes sense
717 // to persist workspace screens and their relative order.
718 mMaxScreenId = 0;
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700719 addWorkspacesTable(db, false);
Sunny Goyala2cc6242015-01-14 14:23:02 -0800720 }
721 case 13: {
722 db.beginTransaction();
723 try {
724 // Insert new column for holding widget provider name
725 db.execSQL("ALTER TABLE favorites " +
726 "ADD COLUMN appWidgetProvider TEXT;");
727 db.setTransactionSuccessful();
728 } catch (SQLException ex) {
729 Log.e(TAG, ex.getMessage(), ex);
730 // Old version remains, which means we wipe old data
731 break;
732 } finally {
733 db.endTransaction();
734 }
735 }
736 case 14: {
737 db.beginTransaction();
738 try {
739 // Insert new column for holding update timestamp
740 db.execSQL("ALTER TABLE favorites " +
741 "ADD COLUMN modified INTEGER NOT NULL DEFAULT 0;");
742 db.execSQL("ALTER TABLE workspaceScreens " +
743 "ADD COLUMN modified INTEGER NOT NULL DEFAULT 0;");
744 db.setTransactionSuccessful();
745 } catch (SQLException ex) {
746 Log.e(TAG, ex.getMessage(), ex);
747 // Old version remains, which means we wipe old data
748 break;
749 } finally {
750 db.endTransaction();
751 }
752 }
753 case 15: {
Sunny Goyal5d85c442015-03-10 13:14:47 -0700754 if (!addIntegerColumn(db, Favorites.RESTORED, 0)) {
Sunny Goyala2cc6242015-01-14 14:23:02 -0800755 // Old version remains, which means we wipe old data
756 break;
Sunny Goyala2cc6242015-01-14 14:23:02 -0800757 }
758 }
759 case 16: {
Sunny Goyal10629b02016-09-01 12:50:11 -0700760 // No-op
Sunny Goyala2cc6242015-01-14 14:23:02 -0800761 }
762 case 17: {
763 // No-op
764 }
765 case 18: {
766 // Due to a data loss bug, some users may have items associated with screen ids
767 // which no longer exist. Since this can cause other problems, and since the user
768 // will never see these items anyway, we use database upgrade as an opportunity to
769 // clean things up.
770 removeOrphanedItems(db);
771 }
772 case 19: {
773 // Add userId column
774 if (!addProfileColumn(db)) {
775 // Old version remains, which means we wipe old data
776 break;
777 }
778 }
779 case 20:
780 if (!updateFolderItemsRank(db, true)) {
781 break;
782 }
Sunny Goyald2f38192015-02-25 10:46:34 -0800783 case 21:
784 // Recreate workspace table with screen id a primary key
785 if (!recreateWorkspaceTable(db)) {
786 break;
787 }
788 case 22: {
Sunny Goyal5d85c442015-03-10 13:14:47 -0700789 if (!addIntegerColumn(db, Favorites.OPTIONS, 0)) {
790 // Old version remains, which means we wipe old data
791 break;
792 }
793 }
Sunny Goyal0b037782015-04-02 10:27:03 -0700794 case 23:
Sunny Goyal5c97f512015-05-19 16:03:28 -0700795 // No-op
Sunny Goyale2fba6c2015-05-12 10:39:59 -0700796 case 24:
797 ManagedProfileHeuristic.markExistingUsersForNoFolderCreation(mContext);
Sunny Goyal5c97f512015-05-19 16:03:28 -0700798 case 25:
799 convertShortcutsToLauncherActivities(db);
Sunny Goyala9e2f5a2016-06-10 12:22:04 -0700800 case 26:
801 // QSB was moved to the grid. Clear the first row on screen 0.
802 if (FeatureFlags.QSB_ON_FIRST_SCREEN &&
Sunny Goyal8ad02b82016-12-29 13:31:43 -0800803 !LauncherDbUtils.prepareScreenZeroToHostQsb(mContext, db)) {
Sunny Goyala9e2f5a2016-06-10 12:22:04 -0700804 break;
805 }
806 case 27: {
Sunny Goyala2cc6242015-01-14 14:23:02 -0800807 // DB Upgraded successfully
808 return;
Chris Wrend5e66bf2013-09-16 14:02:29 -0400809 }
810 }
811
Sunny Goyala2cc6242015-01-14 14:23:02 -0800812 // DB was not upgraded
813 Log.w(TAG, "Destroying all old data.");
814 createEmptyDB(db);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800815 }
Romain Guy7eb9e5e2009-12-02 20:10:07 -0800816
Adam Cohen9b1d0622014-05-21 19:01:57 -0700817 @Override
818 public void onDowngrade(SQLiteDatabase db, int oldVersion, int newVersion) {
819 // This shouldn't happen -- throw our hands up in the air and start over.
820 Log.w(TAG, "Database version downgrade from: " + oldVersion + " to " + newVersion +
821 ". Wiping databse.");
Sunny Goyal42de82f2014-09-26 22:09:29 -0700822 createEmptyDB(db);
823 }
Adam Cohen9b1d0622014-05-21 19:01:57 -0700824
Sunny Goyal42de82f2014-09-26 22:09:29 -0700825 /**
826 * Clears all the data for a fresh start.
827 */
828 public void createEmptyDB(SQLiteDatabase db) {
Sunny Goyale05b08f2017-02-23 18:30:22 -0800829 db.beginTransaction();
830 try {
831 db.execSQL("DROP TABLE IF EXISTS " + Favorites.TABLE_NAME);
832 db.execSQL("DROP TABLE IF EXISTS " + WorkspaceScreens.TABLE_NAME);
833 onCreate(db);
834 db.setTransactionSuccessful();
835 } finally {
836 db.endTransaction();
837 }
Adam Cohen9b1d0622014-05-21 19:01:57 -0700838 }
839
Sunny Goyald2f38192015-02-25 10:46:34 -0800840 /**
Sunny Goyal0b037782015-04-02 10:27:03 -0700841 * Replaces all shortcuts of type {@link Favorites#ITEM_TYPE_SHORTCUT} which have a valid
842 * launcher activity target with {@link Favorites#ITEM_TYPE_APPLICATION}.
843 */
Sunny Goyal316490e2015-06-02 09:38:28 -0700844 @Thunk void convertShortcutsToLauncherActivities(SQLiteDatabase db) {
Sunny Goyal0b037782015-04-02 10:27:03 -0700845 db.beginTransaction();
846 Cursor c = null;
847 SQLiteStatement updateStmt = null;
848
849 try {
850 // Only consider the primary user as other users can't have a shortcut.
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700851 long userSerial = getDefaultUserSerial();
852 c = db.query(Favorites.TABLE_NAME, new String[] {
Sunny Goyal0b037782015-04-02 10:27:03 -0700853 Favorites._ID,
854 Favorites.INTENT,
855 }, "itemType=" + Favorites.ITEM_TYPE_SHORTCUT + " AND profileId=" + userSerial,
856 null, null, null, null);
857
858 updateStmt = db.compileStatement("UPDATE favorites SET itemType="
859 + Favorites.ITEM_TYPE_APPLICATION + " WHERE _id=?");
860
861 final int idIndex = c.getColumnIndexOrThrow(Favorites._ID);
862 final int intentIndex = c.getColumnIndexOrThrow(Favorites.INTENT);
863
864 while (c.moveToNext()) {
865 String intentDescription = c.getString(intentIndex);
866 Intent intent;
867 try {
868 intent = Intent.parseUri(intentDescription, 0);
869 } catch (URISyntaxException e) {
870 Log.e(TAG, "Unable to parse intent", e);
871 continue;
872 }
873
Sunny Goyal4e5cc642015-06-25 16:37:44 -0700874 if (!Utilities.isLauncherAppTarget(intent)) {
Sunny Goyal0b037782015-04-02 10:27:03 -0700875 continue;
876 }
877
878 long id = c.getLong(idIndex);
879 updateStmt.bindLong(1, id);
Sunny Goyalc22841b2015-07-13 19:59:50 -0700880 updateStmt.executeUpdateDelete();
Sunny Goyal0b037782015-04-02 10:27:03 -0700881 }
882 db.setTransactionSuccessful();
883 } catch (SQLException ex) {
884 Log.w(TAG, "Error deduping shortcuts", ex);
885 } finally {
886 db.endTransaction();
887 if (c != null) {
888 c.close();
889 }
890 if (updateStmt != null) {
891 updateStmt.close();
892 }
893 }
894 }
895
896 /**
Sunny Goyald2f38192015-02-25 10:46:34 -0800897 * Recreates workspace table and migrates data to the new table.
898 */
899 public boolean recreateWorkspaceTable(SQLiteDatabase db) {
900 db.beginTransaction();
901 try {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700902 Cursor c = db.query(WorkspaceScreens.TABLE_NAME,
Sunny Goyald2f38192015-02-25 10:46:34 -0800903 new String[] {LauncherSettings.WorkspaceScreens._ID},
904 null, null, null, null,
905 LauncherSettings.WorkspaceScreens.SCREEN_RANK);
906 ArrayList<Long> sortedIDs = new ArrayList<Long>();
907 long maxId = 0;
908 try {
909 while (c.moveToNext()) {
910 Long id = c.getLong(0);
911 if (!sortedIDs.contains(id)) {
912 sortedIDs.add(id);
913 maxId = Math.max(maxId, id);
914 }
915 }
916 } finally {
917 c.close();
918 }
919
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700920 db.execSQL("DROP TABLE IF EXISTS " + WorkspaceScreens.TABLE_NAME);
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700921 addWorkspacesTable(db, false);
Sunny Goyald2f38192015-02-25 10:46:34 -0800922
923 // Add all screen ids back
924 int total = sortedIDs.size();
925 for (int i = 0; i < total; i++) {
926 ContentValues values = new ContentValues();
927 values.put(LauncherSettings.WorkspaceScreens._ID, sortedIDs.get(i));
928 values.put(LauncherSettings.WorkspaceScreens.SCREEN_RANK, i);
929 addModifiedTime(values);
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700930 db.insertOrThrow(WorkspaceScreens.TABLE_NAME, null, values);
Sunny Goyald2f38192015-02-25 10:46:34 -0800931 }
932 db.setTransactionSuccessful();
933 mMaxScreenId = maxId;
934 } catch (SQLException ex) {
935 // Old version remains, which means we wipe old data
936 Log.e(TAG, ex.getMessage(), ex);
937 return false;
938 } finally {
939 db.endTransaction();
940 }
941 return true;
942 }
943
Adam Cohen091440a2015-03-18 14:16:05 -0700944 @Thunk boolean updateFolderItemsRank(SQLiteDatabase db, boolean addRankColumn) {
Sunny Goyal08f72612015-01-05 13:41:43 -0800945 db.beginTransaction();
946 try {
947 if (addRankColumn) {
948 // Insert new column for holding rank
949 db.execSQL("ALTER TABLE favorites ADD COLUMN rank INTEGER NOT NULL DEFAULT 0;");
950 }
951
952 // Get a map for folder ID to folder width
953 Cursor c = db.rawQuery("SELECT container, MAX(cellX) FROM favorites"
954 + " WHERE container IN (SELECT _id FROM favorites WHERE itemType = ?)"
955 + " GROUP BY container;",
956 new String[] {Integer.toString(LauncherSettings.Favorites.ITEM_TYPE_FOLDER)});
957
958 while (c.moveToNext()) {
Sunny Goyalc87775d2015-02-10 19:52:36 -0800959 db.execSQL("UPDATE favorites SET rank=cellX+(cellY*?) WHERE "
960 + "container=? AND cellX IS NOT NULL AND cellY IS NOT NULL;",
Sunny Goyal08f72612015-01-05 13:41:43 -0800961 new Object[] {c.getLong(1) + 1, c.getLong(0)});
962 }
963
964 c.close();
965 db.setTransactionSuccessful();
966 } catch (SQLException ex) {
967 // Old version remains, which means we wipe old data
968 Log.e(TAG, ex.getMessage(), ex);
969 return false;
970 } finally {
971 db.endTransaction();
972 }
973 return true;
974 }
975
Kenny Guyed131872014-04-30 03:02:21 +0100976 private boolean addProfileColumn(SQLiteDatabase db) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700977 return addIntegerColumn(db, Favorites.PROFILE_ID, getDefaultUserSerial());
Sunny Goyal5d85c442015-03-10 13:14:47 -0700978 }
979
980 private boolean addIntegerColumn(SQLiteDatabase db, String columnName, long defaultValue) {
Kenny Guyed131872014-04-30 03:02:21 +0100981 db.beginTransaction();
982 try {
Sunny Goyal5d85c442015-03-10 13:14:47 -0700983 db.execSQL("ALTER TABLE favorites ADD COLUMN "
984 + columnName + " INTEGER NOT NULL DEFAULT " + defaultValue + ";");
Kenny Guyed131872014-04-30 03:02:21 +0100985 db.setTransactionSuccessful();
986 } catch (SQLException ex) {
Kenny Guyed131872014-04-30 03:02:21 +0100987 Log.e(TAG, ex.getMessage(), ex);
988 return false;
989 } finally {
990 db.endTransaction();
991 }
992 return true;
993 }
994
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700995 // Generates a new ID to use for an object in your database. This method should be only
996 // called from the main UI thread. As an exception, we do call it when we call the
997 // constructor from the worker thread; however, this doesn't extend until after the
998 // constructor is called, and we only pass a reference to LauncherProvider to LauncherApp
999 // after that point
Sunny Goyal0fe505b2014-08-06 09:55:36 -07001000 @Override
Adam Cohendcd297f2013-06-18 13:13:40 -07001001 public long generateNewItemId() {
1002 if (mMaxItemId < 0) {
1003 throw new RuntimeException("Error: max item id was not initialized");
Michael Jurkaa8c760d2011-04-28 14:59:33 -07001004 }
Adam Cohendcd297f2013-06-18 13:13:40 -07001005 mMaxItemId += 1;
1006 return mMaxItemId;
Michael Jurkaa8c760d2011-04-28 14:59:33 -07001007 }
1008
Sunny Goyal0fe505b2014-08-06 09:55:36 -07001009 @Override
1010 public long insertAndCheck(SQLiteDatabase db, ContentValues values) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001011 return dbInsertAndCheck(this, db, Favorites.TABLE_NAME, null, values);
Sunny Goyal0fe505b2014-08-06 09:55:36 -07001012 }
1013
Chris Wren5dee7af2013-12-20 17:22:11 -05001014 public void checkId(String table, ContentValues values) {
1015 long id = values.getAsLong(LauncherSettings.BaseLauncherColumns._ID);
Sunny Goyal8e0e1d72016-10-10 10:41:41 -07001016 if (WorkspaceScreens.TABLE_NAME.equals(table)) {
Chris Wren5dee7af2013-12-20 17:22:11 -05001017 mMaxScreenId = Math.max(id, mMaxScreenId);
1018 } else {
1019 mMaxItemId = Math.max(id, mMaxItemId);
1020 }
1021 }
1022
Adam Cohendcd297f2013-06-18 13:13:40 -07001023 private long initializeMaxItemId(SQLiteDatabase db) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001024 return getMaxId(db, Favorites.TABLE_NAME);
Adam Cohendcd297f2013-06-18 13:13:40 -07001025 }
1026
1027 // Generates a new ID to use for an workspace screen in your database. This method
1028 // should be only called from the main UI thread. As an exception, we do call it when we
1029 // call the constructor from the worker thread; however, this doesn't extend until after the
1030 // constructor is called, and we only pass a reference to LauncherProvider to LauncherApp
1031 // after that point
1032 public long generateNewScreenId() {
1033 if (mMaxScreenId < 0) {
1034 throw new RuntimeException("Error: max screen id was not initialized");
1035 }
1036 mMaxScreenId += 1;
1037 return mMaxScreenId;
1038 }
1039
Adam Cohendcd297f2013-06-18 13:13:40 -07001040 private long initializeMaxScreenId(SQLiteDatabase db) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001041 return getMaxId(db, WorkspaceScreens.TABLE_NAME);
Adam Cohen7ec3bbf2014-07-31 00:09:45 -07001042 }
1043
Adam Cohen091440a2015-03-18 14:16:05 -07001044 @Thunk int loadFavorites(SQLiteDatabase db, AutoInstallsLayout loader) {
Adam Cohen71483f42014-05-15 14:04:01 -07001045 ArrayList<Long> screenIds = new ArrayList<Long>();
Sunny Goyal0fe505b2014-08-06 09:55:36 -07001046 // TODO: Use multiple loaders with fall-back and transaction.
1047 int count = loader.loadLayout(db, screenIds);
Adam Cohen71483f42014-05-15 14:04:01 -07001048
1049 // Add the screens specified by the items above
1050 Collections.sort(screenIds);
1051 int rank = 0;
1052 ContentValues values = new ContentValues();
1053 for (Long id : screenIds) {
1054 values.clear();
1055 values.put(LauncherSettings.WorkspaceScreens._ID, id);
1056 values.put(LauncherSettings.WorkspaceScreens.SCREEN_RANK, rank);
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001057 if (dbInsertAndCheck(this, db, WorkspaceScreens.TABLE_NAME, null, values) < 0) {
Adam Cohen71483f42014-05-15 14:04:01 -07001058 throw new RuntimeException("Failed initialize screen table"
1059 + "from default layout");
1060 }
1061 rank++;
1062 }
1063
1064 // Ensure that the max ids are initialized
1065 mMaxItemId = initializeMaxItemId(db);
1066 mMaxScreenId = initializeMaxScreenId(db);
Adam Cohen7ec3bbf2014-07-31 00:09:45 -07001067
Adam Cohen71483f42014-05-15 14:04:01 -07001068 return count;
1069 }
Mike Cleronb87bd162009-10-30 16:36:56 -07001070 }
Daniel Lehmannc3a80402012-04-23 21:35:11 -07001071
Sunny Goyalfe4e4b92015-03-04 10:43:45 -08001072 /**
1073 * @return the max _id in the provided table.
1074 */
Adam Cohen091440a2015-03-18 14:16:05 -07001075 @Thunk static long getMaxId(SQLiteDatabase db, String table) {
Sunny Goyalfe4e4b92015-03-04 10:43:45 -08001076 Cursor c = db.rawQuery("SELECT MAX(_id) FROM " + table, null);
1077 // get the result
1078 long id = -1;
1079 if (c != null && c.moveToNext()) {
1080 id = c.getLong(0);
1081 }
1082 if (c != null) {
1083 c.close();
1084 }
1085
1086 if (id == -1) {
1087 throw new RuntimeException("Error: could not query max id in " + table);
1088 }
1089
1090 return id;
1091 }
1092
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001093 static class SqlArguments {
1094 public final String table;
1095 public final String where;
1096 public final String[] args;
1097
1098 SqlArguments(Uri url, String where, String[] args) {
1099 if (url.getPathSegments().size() == 1) {
1100 this.table = url.getPathSegments().get(0);
1101 this.where = where;
1102 this.args = args;
1103 } else if (url.getPathSegments().size() != 2) {
1104 throw new IllegalArgumentException("Invalid URI: " + url);
1105 } else if (!TextUtils.isEmpty(where)) {
1106 throw new UnsupportedOperationException("WHERE clause not supported: " + url);
1107 } else {
1108 this.table = url.getPathSegments().get(0);
Daniel Lehmannc3a80402012-04-23 21:35:11 -07001109 this.where = "_id=" + ContentUris.parseId(url);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001110 this.args = null;
1111 }
1112 }
1113
1114 SqlArguments(Uri url) {
1115 if (url.getPathSegments().size() == 1) {
1116 table = url.getPathSegments().get(0);
1117 where = null;
1118 args = null;
1119 } else {
1120 throw new IllegalArgumentException("Invalid URI: " + url);
1121 }
1122 }
1123 }
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001124
1125 private static class ChangeListenerWrapper implements Handler.Callback {
1126
1127 private static final int MSG_LAUNCHER_PROVIDER_CHANGED = 1;
1128 private static final int MSG_EXTRACTED_COLORS_CHANGED = 2;
1129 private static final int MSG_APP_WIDGET_HOST_RESET = 3;
1130
1131 private LauncherProviderChangeListener mListener;
1132
1133 @Override
1134 public boolean handleMessage(Message msg) {
1135 if (mListener != null) {
1136 switch (msg.what) {
1137 case MSG_LAUNCHER_PROVIDER_CHANGED:
Sunny Goyal2e013ea2016-10-07 16:17:19 -07001138 mListener.onLauncherProviderChanged();
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001139 break;
1140 case MSG_EXTRACTED_COLORS_CHANGED:
1141 mListener.onExtractedColorsChanged();
1142 break;
1143 case MSG_APP_WIDGET_HOST_RESET:
Sunny Goyal2e013ea2016-10-07 16:17:19 -07001144 mListener.onAppWidgetHostReset();
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001145 break;
1146 }
1147 }
1148 return true;
1149 }
1150 }
Adam Cohen72960972014-01-15 18:13:55 -08001151}