blob: eee5627816c8728fa1fd5793b059685d962cb51a [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 Goyalb2d46ce2015-03-26 11:32:11 -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 Goyalb2d46ce2015-03-26 11:32:11 -070042import android.os.Build;
43import 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 Goyalb2d46ce2015-03-26 11:32:11 -070048import android.os.UserManager;
Adam Cohen228da5a2011-07-27 22:23:47 -070049import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080050import android.util.Log;
Adam Cohen228da5a2011-07-27 22:23:47 -070051
Sunny Goyal0fe505b2014-08-06 09:55:36 -070052import com.android.launcher3.AutoInstallsLayout.LayoutParserCallback;
53import com.android.launcher3.LauncherSettings.Favorites;
Sunny Goyalb5b55c82016-05-10 12:28:59 -070054import com.android.launcher3.LauncherSettings.WorkspaceScreens;
Kenny Guyed131872014-04-30 03:02:21 +010055import com.android.launcher3.compat.UserHandleCompat;
56import com.android.launcher3.compat.UserManagerCompat;
Sunny Goyala9e2f5a2016-06-10 12:22:04 -070057import com.android.launcher3.config.FeatureFlags;
Chris Wrene523e702013-10-09 10:36:55 -040058import com.android.launcher3.config.ProviderConfig;
Tony Wickham827cef22016-03-17 15:39:39 -070059import com.android.launcher3.dynamicui.ExtractionUtils;
Sunny Goyala9e2f5a2016-06-10 12:22:04 -070060import com.android.launcher3.provider.LauncherDbUtils;
Sunny Goyale8f7d5a2016-05-24 11:30:14 -070061import com.android.launcher3.provider.RestoreDbTask;
Sunny Goyale2fba6c2015-05-12 10:39:59 -070062import com.android.launcher3.util.ManagedProfileHeuristic;
Sunny Goyalbf67f3b2016-03-15 15:30:11 -070063import com.android.launcher3.util.NoLocaleSqliteContext;
Sunny Goyalb5b55c82016-05-10 12:28:59 -070064import com.android.launcher3.util.Preconditions;
Adam Cohen091440a2015-03-18 14:16:05 -070065import com.android.launcher3.util.Thunk;
Michael Jurka8b805b12012-04-18 14:23:14 -070066
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;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080070
The Android Open Source Project31dd5032009-03-03 19:32:27 -080071public class LauncherProvider extends ContentProvider {
Sunny Goyalc74e4192015-09-08 14:01:03 -070072 private static final String TAG = "LauncherProvider";
Joe Onoratoa30ce8e2009-11-11 08:16:49 -080073 private static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080074
Sunny Goyala9e2f5a2016-06-10 12:22:04 -070075 private static final int DATABASE_VERSION = 27;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080076
Sunny Goyale5bb7052015-07-27 14:36:07 -070077 public static final String AUTHORITY = ProviderConfig.AUTHORITY;
Winson Chung3d503fb2011-07-13 17:25:49 -070078
Sunny Goyale87e6ab2014-11-21 22:42:53 -080079 static final String EMPTY_DATABASE_CREATED = "EMPTY_DATABASE_CREATED";
The Android Open Source Project31dd5032009-03-03 19:32:27 -080080
Sunny Goyalb2d46ce2015-03-26 11:32:11 -070081 private static final String RESTRICTION_PACKAGE_NAME = "workspace.configuration.package.name";
82
Sunny Goyalb5b55c82016-05-10 12:28:59 -070083 private final ChangeListenerWrapper mListenerWrapper = new ChangeListenerWrapper();
84 private Handler mListenerHandler;
85
Sunny Goyalf076eae2016-01-11 12:25:10 -080086 protected DatabaseHelper mOpenHelper;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080087
88 @Override
89 public boolean onCreate() {
Sunny Goyale26d1002016-06-20 14:52:14 -070090 if (ProviderConfig.IS_DOGFOOD_BUILD) {
91 Log.d(TAG, "Launcher process started");
92 }
Sunny Goyalb5b55c82016-05-10 12:28:59 -070093 mListenerHandler = new Handler(mListenerWrapper);
94
Daniel Sandlere4f98912013-06-25 15:13:26 -040095 LauncherAppState.setLauncherProvider(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080096 return true;
97 }
98
Sunny Goyald3849d12015-10-29 10:28:32 -070099 /**
100 * Sets a provider listener.
101 */
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700102 public void setLauncherProviderChangeListener(LauncherProviderChangeListener listener) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700103 Preconditions.assertUIThread();
104 mListenerWrapper.mListener = listener;
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700105 }
106
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800107 @Override
108 public String getType(Uri uri) {
109 SqlArguments args = new SqlArguments(uri, null, null);
110 if (TextUtils.isEmpty(args.where)) {
111 return "vnd.android.cursor.dir/" + args.table;
112 } else {
113 return "vnd.android.cursor.item/" + args.table;
114 }
115 }
116
Sunny Goyalf076eae2016-01-11 12:25:10 -0800117 /**
118 * Overridden in tests
119 */
120 protected synchronized void createDbIfNotExists() {
Sunny Goyald3849d12015-10-29 10:28:32 -0700121 if (mOpenHelper == null) {
Sunny Goyale26d1002016-06-20 14:52:14 -0700122 if (LauncherAppState.PROFILE_STARTUP) {
123 Trace.beginSection("Opening workspace DB");
124 }
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700125 mOpenHelper = new DatabaseHelper(getContext(), mListenerHandler);
Sunny Goyale8f7d5a2016-05-24 11:30:14 -0700126
127 if (RestoreDbTask.isPending(getContext())) {
128 if (!RestoreDbTask.performRestore(mOpenHelper)) {
129 mOpenHelper.createEmptyDB(mOpenHelper.getWritableDatabase());
130 }
131 // Set is pending to false irrespective of the result, so that it doesn't get
132 // executed again.
133 RestoreDbTask.setPending(getContext(), false);
134 }
Sunny Goyale26d1002016-06-20 14:52:14 -0700135
136 if (LauncherAppState.PROFILE_STARTUP) {
137 Trace.endSection();
138 }
Sunny Goyald3849d12015-10-29 10:28:32 -0700139 }
140 }
141
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800142 @Override
143 public Cursor query(Uri uri, String[] projection, String selection,
144 String[] selectionArgs, String sortOrder) {
Sunny Goyald3849d12015-10-29 10:28:32 -0700145 createDbIfNotExists();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800146
147 SqlArguments args = new SqlArguments(uri, selection, selectionArgs);
148 SQLiteQueryBuilder qb = new SQLiteQueryBuilder();
149 qb.setTables(args.table);
150
Romain Guy73b979d2009-06-09 12:57:21 -0700151 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800152 Cursor result = qb.query(db, projection, args.where, args.args, null, null, sortOrder);
153 result.setNotificationUri(getContext().getContentResolver(), uri);
154
155 return result;
156 }
157
Adam Cohen091440a2015-03-18 14:16:05 -0700158 @Thunk static long dbInsertAndCheck(DatabaseHelper helper,
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700159 SQLiteDatabase db, String table, String nullColumnHack, ContentValues values) {
Dan Sandlerd5024042014-01-09 15:01:33 -0500160 if (values == null) {
161 throw new RuntimeException("Error: attempting to insert null values");
162 }
Adam Cohen71483f42014-05-15 14:04:01 -0700163 if (!values.containsKey(LauncherSettings.ChangeLogColumns._ID)) {
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700164 throw new RuntimeException("Error: attempting to add item without specifying an id");
165 }
Chris Wren5dee7af2013-12-20 17:22:11 -0500166 helper.checkId(table, values);
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700167 return db.insert(table, nullColumnHack, values);
168 }
169
Sunny Goyald1064182015-08-13 12:08:30 -0700170 private void reloadLauncherIfExternal() {
Sunny Goyalc74e4192015-09-08 14:01:03 -0700171 if (Utilities.ATLEAST_MARSHMALLOW && Binder.getCallingPid() != Process.myPid()) {
Sunny Goyald1064182015-08-13 12:08:30 -0700172 LauncherAppState app = LauncherAppState.getInstanceNoCreate();
173 if (app != null) {
174 app.reloadWorkspace();
175 }
176 }
177 }
178
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800179 @Override
180 public Uri insert(Uri uri, ContentValues initialValues) {
Sunny Goyald3849d12015-10-29 10:28:32 -0700181 createDbIfNotExists();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800182 SqlArguments args = new SqlArguments(uri);
183
Sunny Goyald1064182015-08-13 12:08:30 -0700184 // In very limited cases, we support system|signature permission apps to modify the db.
185 if (Binder.getCallingPid() != Process.myPid()) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700186 if (!initializeExternalAdd(initialValues)) {
Adam Cohena043fa82014-07-23 14:49:38 -0700187 return null;
188 }
189 }
190
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800191 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
Chris Wren1ada10d2013-09-13 18:01:38 -0400192 addModifiedTime(initialValues);
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700193 final long rowId = dbInsertAndCheck(mOpenHelper, db, args.table, null, initialValues);
Sunny Goyale72f3d52015-03-02 14:24:21 -0800194 if (rowId < 0) return null;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800195
196 uri = ContentUris.withAppendedId(uri, rowId);
Sunny Goyal1d4a2df2015-03-30 11:11:46 -0700197 notifyListeners();
198
Sunny Goyalc74e4192015-09-08 14:01:03 -0700199 if (Utilities.ATLEAST_MARSHMALLOW) {
200 reloadLauncherIfExternal();
201 } else {
202 // Deprecated behavior to support legacy devices which rely on provider callbacks.
203 LauncherAppState app = LauncherAppState.getInstanceNoCreate();
204 if (app != null && "true".equals(uri.getQueryParameter("isExternalAdd"))) {
205 app.reloadWorkspace();
206 }
207
208 String notify = uri.getQueryParameter("notify");
209 if (notify == null || "true".equals(notify)) {
210 getContext().getContentResolver().notifyChange(uri, null);
211 }
212 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800213 return uri;
214 }
215
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700216 private boolean initializeExternalAdd(ContentValues values) {
217 // 1. Ensure that externally added items have a valid item id
218 long id = mOpenHelper.generateNewItemId();
219 values.put(LauncherSettings.Favorites._ID, id);
220
221 // 2. In the case of an app widget, and if no app widget id is specified, we
222 // attempt allocate and bind the widget.
223 Integer itemType = values.getAsInteger(LauncherSettings.Favorites.ITEM_TYPE);
224 if (itemType != null &&
225 itemType.intValue() == LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET &&
226 !values.containsKey(LauncherSettings.Favorites.APPWIDGET_ID)) {
227
228 final AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(getContext());
229 ComponentName cn = ComponentName.unflattenFromString(
230 values.getAsString(Favorites.APPWIDGET_PROVIDER));
231
232 if (cn != null) {
233 try {
234 int appWidgetId = new AppWidgetHost(getContext(), Launcher.APPWIDGET_HOST_ID)
235 .allocateAppWidgetId();
236 values.put(LauncherSettings.Favorites.APPWIDGET_ID, appWidgetId);
237 if (!appWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,cn)) {
238 return false;
239 }
240 } catch (RuntimeException e) {
241 Log.e(TAG, "Failed to initialize external widget", e);
242 return false;
243 }
244 } else {
245 return false;
246 }
247 }
248
249 // Add screen id if not present
250 long screenId = values.getAsLong(LauncherSettings.Favorites.SCREEN);
251 SQLiteStatement stmp = null;
252 try {
253 stmp = mOpenHelper.getWritableDatabase().compileStatement(
254 "INSERT OR IGNORE INTO workspaceScreens (_id, screenRank) " +
255 "select ?, (ifnull(MAX(screenRank), -1)+1) from workspaceScreens");
256 stmp.bindLong(1, screenId);
257
258 ContentValues valuesInserted = new ContentValues();
259 valuesInserted.put(LauncherSettings.BaseLauncherColumns._ID, stmp.executeInsert());
260 mOpenHelper.checkId(WorkspaceScreens.TABLE_NAME, valuesInserted);
261 return true;
262 } catch (Exception e) {
263 return false;
264 } finally {
265 Utilities.closeSilently(stmp);
266 }
267 }
268
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800269 @Override
270 public int bulkInsert(Uri uri, ContentValues[] values) {
Sunny Goyald3849d12015-10-29 10:28:32 -0700271 createDbIfNotExists();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800272 SqlArguments args = new SqlArguments(uri);
273
274 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
275 db.beginTransaction();
276 try {
277 int numValues = values.length;
278 for (int i = 0; i < numValues; i++) {
Chris Wren1ada10d2013-09-13 18:01:38 -0400279 addModifiedTime(values[i]);
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700280 if (dbInsertAndCheck(mOpenHelper, db, args.table, null, values[i]) < 0) {
281 return 0;
282 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800283 }
284 db.setTransactionSuccessful();
285 } finally {
286 db.endTransaction();
287 }
288
Sunny Goyal1d4a2df2015-03-30 11:11:46 -0700289 notifyListeners();
Sunny Goyald1064182015-08-13 12:08:30 -0700290 reloadLauncherIfExternal();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800291 return values.length;
292 }
293
294 @Override
Yura085c8532014-02-11 15:15:29 +0000295 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations)
296 throws OperationApplicationException {
Sunny Goyald3849d12015-10-29 10:28:32 -0700297 createDbIfNotExists();
Yura085c8532014-02-11 15:15:29 +0000298 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
299 db.beginTransaction();
300 try {
301 ContentProviderResult[] result = super.applyBatch(operations);
302 db.setTransactionSuccessful();
Sunny Goyald1064182015-08-13 12:08:30 -0700303 reloadLauncherIfExternal();
Yura085c8532014-02-11 15:15:29 +0000304 return result;
305 } finally {
306 db.endTransaction();
307 }
308 }
309
310 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800311 public int delete(Uri uri, String selection, String[] selectionArgs) {
Sunny Goyald3849d12015-10-29 10:28:32 -0700312 createDbIfNotExists();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800313 SqlArguments args = new SqlArguments(uri, selection, selectionArgs);
314
315 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
316 int count = db.delete(args.table, args.where, args.args);
Sunny Goyal1d4a2df2015-03-30 11:11:46 -0700317 if (count > 0) notifyListeners();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800318
Sunny Goyald1064182015-08-13 12:08:30 -0700319 reloadLauncherIfExternal();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800320 return count;
321 }
322
323 @Override
324 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
Sunny Goyald3849d12015-10-29 10:28:32 -0700325 createDbIfNotExists();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800326 SqlArguments args = new SqlArguments(uri, selection, selectionArgs);
327
Chris Wren1ada10d2013-09-13 18:01:38 -0400328 addModifiedTime(values);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800329 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
330 int count = db.update(args.table, values, args.where, args.args);
Sunny Goyal1d4a2df2015-03-30 11:11:46 -0700331 if (count > 0) notifyListeners();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800332
Sunny Goyald1064182015-08-13 12:08:30 -0700333 reloadLauncherIfExternal();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800334 return count;
335 }
336
Sunny Goyal7779d622015-06-11 16:18:39 -0700337 @Override
Tony Wickham827cef22016-03-17 15:39:39 -0700338 public Bundle call(String method, final String arg, final Bundle extras) {
Sunny Goyal7779d622015-06-11 16:18:39 -0700339 if (Binder.getCallingUid() != Process.myUid()) {
340 return null;
341 }
Sunny Goyald3849d12015-10-29 10:28:32 -0700342 createDbIfNotExists();
Sunny Goyal7779d622015-06-11 16:18:39 -0700343
344 switch (method) {
Tony Wickham827cef22016-03-17 15:39:39 -0700345 case LauncherSettings.Settings.METHOD_SET_EXTRACTED_COLORS_AND_WALLPAPER_ID: {
346 String extractedColors = extras.getString(
347 LauncherSettings.Settings.EXTRA_EXTRACTED_COLORS);
348 int wallpaperId = extras.getInt(LauncherSettings.Settings.EXTRA_WALLPAPER_ID);
349 Utilities.getPrefs(getContext()).edit()
350 .putString(ExtractionUtils.EXTRACTED_COLORS_PREFERENCE_KEY, extractedColors)
351 .putInt(ExtractionUtils.WALLPAPER_ID_PREFERENCE_KEY, wallpaperId)
352 .apply();
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700353 mListenerHandler.sendEmptyMessage(ChangeListenerWrapper.MSG_EXTRACTED_COLORS_CHANGED);
Tony Wickham827cef22016-03-17 15:39:39 -0700354 Bundle result = new Bundle();
355 result.putString(LauncherSettings.Settings.EXTRA_VALUE, extractedColors);
356 return result;
357 }
Sunny Goyald2497482015-09-22 18:24:19 -0700358 case LauncherSettings.Settings.METHOD_CLEAR_EMPTY_DB_FLAG: {
359 clearFlagEmptyDbCreated();
360 return null;
361 }
Sunny Goyala5c8a9e2016-07-08 08:32:44 -0700362 case LauncherSettings.Settings.METHOD_WAS_EMPTY_DB_CREATED : {
363 Bundle result = new Bundle();
364 result.putBoolean(LauncherSettings.Settings.EXTRA_VALUE,
365 Utilities.getPrefs(getContext()).getBoolean(EMPTY_DATABASE_CREATED, false));
366 return result;
367 }
Sunny Goyald2497482015-09-22 18:24:19 -0700368 case LauncherSettings.Settings.METHOD_DELETE_EMPTY_FOLDERS: {
369 Bundle result = new Bundle();
370 result.putSerializable(LauncherSettings.Settings.EXTRA_VALUE, deleteEmptyFolders());
371 return result;
372 }
373 case LauncherSettings.Settings.METHOD_NEW_ITEM_ID: {
374 Bundle result = new Bundle();
375 result.putLong(LauncherSettings.Settings.EXTRA_VALUE, mOpenHelper.generateNewItemId());
376 return result;
377 }
378 case LauncherSettings.Settings.METHOD_NEW_SCREEN_ID: {
379 Bundle result = new Bundle();
380 result.putLong(LauncherSettings.Settings.EXTRA_VALUE, mOpenHelper.generateNewScreenId());
381 return result;
382 }
383 case LauncherSettings.Settings.METHOD_CREATE_EMPTY_DB: {
384 createEmptyDB();
385 return null;
386 }
387 case LauncherSettings.Settings.METHOD_LOAD_DEFAULT_FAVORITES: {
388 loadDefaultFavoritesIfNecessary();
389 return null;
390 }
Sunny Goyald2497482015-09-22 18:24:19 -0700391 case LauncherSettings.Settings.METHOD_DELETE_DB: {
Sunny Goyalaefc0c42015-12-10 17:46:12 -0800392 // Are you sure? (y/n)
393 mOpenHelper.createEmptyDB(mOpenHelper.getWritableDatabase());
Sunny Goyald2497482015-09-22 18:24:19 -0700394 return null;
395 }
Sunny Goyal7779d622015-06-11 16:18:39 -0700396 }
397 return null;
398 }
399
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700400 /**
401 * Deletes any empty folder from the DB.
402 * @return Ids of deleted folders.
403 */
Sunny Goyald2497482015-09-22 18:24:19 -0700404 private ArrayList<Long> deleteEmptyFolders() {
405 ArrayList<Long> folderIds = new ArrayList<>();
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700406 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
407 db.beginTransaction();
408 try {
409 // Select folders whose id do not match any container value.
410 String selection = LauncherSettings.Favorites.ITEM_TYPE + " = "
411 + LauncherSettings.Favorites.ITEM_TYPE_FOLDER + " AND "
412 + LauncherSettings.Favorites._ID + " NOT IN (SELECT " +
413 LauncherSettings.Favorites.CONTAINER + " FROM "
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700414 + Favorites.TABLE_NAME + ")";
415 Cursor c = db.query(Favorites.TABLE_NAME,
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700416 new String[] {LauncherSettings.Favorites._ID},
417 selection, null, null, null, null);
418 while (c.moveToNext()) {
419 folderIds.add(c.getLong(0));
420 }
421 c.close();
Sunny Goyald2497482015-09-22 18:24:19 -0700422 if (!folderIds.isEmpty()) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700423 db.delete(Favorites.TABLE_NAME, Utilities.createDbSelectionQuery(
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700424 LauncherSettings.Favorites._ID, folderIds), null);
425 }
426 db.setTransactionSuccessful();
427 } catch (SQLException ex) {
428 Log.e(TAG, ex.getMessage(), ex);
429 folderIds.clear();
430 } finally {
431 db.endTransaction();
432 }
433 return folderIds;
434 }
435
Sunny Goyalf076eae2016-01-11 12:25:10 -0800436 /**
437 * Overridden in tests
438 */
439 protected void notifyListeners() {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700440 mListenerHandler.sendEmptyMessage(ChangeListenerWrapper.MSG_LAUNCHER_PROVIDER_CHANGED);
Chris Wren1ada10d2013-09-13 18:01:38 -0400441 }
442
Adam Cohen091440a2015-03-18 14:16:05 -0700443 @Thunk static void addModifiedTime(ContentValues values) {
Chris Wren1ada10d2013-09-13 18:01:38 -0400444 values.put(LauncherSettings.ChangeLogColumns.MODIFIED, System.currentTimeMillis());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800445 }
446
Brian Muramatsu5524b492012-10-02 16:55:54 -0700447 /**
Sunny Goyal42de82f2014-09-26 22:09:29 -0700448 * Clears all the data for a fresh start.
449 */
Sunny Goyald2497482015-09-22 18:24:19 -0700450 synchronized private void createEmptyDB() {
Sunny Goyal42de82f2014-09-26 22:09:29 -0700451 mOpenHelper.createEmptyDB(mOpenHelper.getWritableDatabase());
452 }
453
Sunny Goyald2497482015-09-22 18:24:19 -0700454 private void clearFlagEmptyDbCreated() {
Sunny Goyalf7258242015-10-19 16:59:07 -0700455 Utilities.getPrefs(getContext()).edit().remove(EMPTY_DATABASE_CREATED).commit();
Sunny Goyal33d44382014-10-16 09:24:19 -0700456 }
457
Sunny Goyal42de82f2014-09-26 22:09:29 -0700458 /**
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700459 * Loads the default workspace based on the following priority scheme:
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700460 * 1) From the app restrictions
461 * 2) From a package provided by play store
462 * 3) From a partner configuration APK, already in the system image
463 * 4) The default configuration for the particular device
Brian Muramatsu5524b492012-10-02 16:55:54 -0700464 */
Sunny Goyald2497482015-09-22 18:24:19 -0700465 synchronized private void loadDefaultFavoritesIfNecessary() {
Sunny Goyalf7258242015-10-19 16:59:07 -0700466 SharedPreferences sp = Utilities.getPrefs(getContext());
Adam Cohene25af792013-06-06 23:08:25 -0700467
Winson Chungc763c4e2013-07-19 13:49:06 -0700468 if (sp.getBoolean(EMPTY_DATABASE_CREATED, false)) {
Chris Wren5dee7af2013-12-20 17:22:11 -0500469 Log.d(TAG, "loading default workspace");
Michael Jurka45355c42012-10-08 13:21:35 +0200470
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700471 AppWidgetHost widgetHost = new AppWidgetHost(getContext(), Launcher.APPWIDGET_HOST_ID);
472 AutoInstallsLayout loader = createWorkspaceLoaderFromAppRestriction(widgetHost);
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700473 if (loader == null) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700474 loader = AutoInstallsLayout.get(getContext(),widgetHost, mOpenHelper);
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700475 }
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700476 if (loader == null) {
Adam Cohen9b8f51f2014-05-30 15:34:09 -0700477 final Partner partner = Partner.get(getContext().getPackageManager());
478 if (partner != null && partner.hasDefaultLayout()) {
479 final Resources partnerRes = partner.getResources();
Adam Cohen4ae96ce2014-08-29 15:05:48 -0700480 int workspaceResId = partnerRes.getIdentifier(Partner.RES_DEFAULT_LAYOUT,
Adam Cohen9b8f51f2014-05-30 15:34:09 -0700481 "xml", partner.getPackageName());
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700482 if (workspaceResId != 0) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700483 loader = new DefaultLayoutParser(getContext(), widgetHost,
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700484 mOpenHelper, partnerRes, workspaceResId);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700485 }
Adam Cohen9b8f51f2014-05-30 15:34:09 -0700486 }
487 }
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700488
Sunny Goyal9d219682014-10-23 14:21:02 -0700489 final boolean usingExternallyProvidedLayout = loader != null;
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700490 if (loader == null) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700491 loader = getDefaultLayoutParser(widgetHost);
Brian Muramatsu5524b492012-10-02 16:55:54 -0700492 }
Sunny Goyalc6c8fef2015-03-04 09:51:18 -0800493
494 // There might be some partially restored DB items, due to buggy restore logic in
495 // previous versions of launcher.
496 createEmptyDB();
Michael Jurkab85f8a42012-04-25 15:48:32 -0700497 // Populate favorites table with initial favorites
Sunny Goyal9d219682014-10-23 14:21:02 -0700498 if ((mOpenHelper.loadFavorites(mOpenHelper.getWritableDatabase(), loader) <= 0)
499 && usingExternallyProvidedLayout) {
500 // Unable to load external layout. Cleanup and load the internal layout.
501 createEmptyDB();
502 mOpenHelper.loadFavorites(mOpenHelper.getWritableDatabase(),
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700503 getDefaultLayoutParser(widgetHost));
Sunny Goyal9d219682014-10-23 14:21:02 -0700504 }
Sunny Goyal33d44382014-10-16 09:24:19 -0700505 clearFlagEmptyDbCreated();
Michael Jurkab85f8a42012-04-25 15:48:32 -0700506 }
507 }
508
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700509 /**
510 * Creates workspace loader from an XML resource listed in the app restrictions.
511 *
512 * @return the loader if the restrictions are set and the resource exists; null otherwise.
513 */
514 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700515 private AutoInstallsLayout createWorkspaceLoaderFromAppRestriction(AppWidgetHost widgetHost) {
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700516 // UserManager.getApplicationRestrictions() requires minSdkVersion >= 18
Sunny Goyal9fc953b2015-08-17 12:24:25 -0700517 if (!Utilities.ATLEAST_JB_MR2) {
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700518 return null;
519 }
520
521 Context ctx = getContext();
522 UserManager um = (UserManager) ctx.getSystemService(Context.USER_SERVICE);
523 Bundle bundle = um.getApplicationRestrictions(ctx.getPackageName());
Sunny Goyal35ca8732015-04-06 10:45:31 -0700524 if (bundle == null) {
525 return null;
526 }
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700527
Sunny Goyal35ca8732015-04-06 10:45:31 -0700528 String packageName = bundle.getString(RESTRICTION_PACKAGE_NAME);
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700529 if (packageName != null) {
530 try {
531 Resources targetResources = ctx.getPackageManager()
532 .getResourcesForApplication(packageName);
533 return AutoInstallsLayout.get(ctx, packageName, targetResources,
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700534 widgetHost, mOpenHelper);
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700535 } catch (NameNotFoundException e) {
536 Log.e(TAG, "Target package for restricted profile not found", e);
537 return null;
538 }
539 }
540 return null;
541 }
542
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700543 private DefaultLayoutParser getDefaultLayoutParser(AppWidgetHost widgetHost) {
Sunny Goyal9d219682014-10-23 14:21:02 -0700544 int defaultLayout = LauncherAppState.getInstance()
Adam Cohen2e6da152015-05-06 11:42:25 -0700545 .getInvariantDeviceProfile().defaultLayoutId;
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700546 return new DefaultLayoutParser(getContext(), widgetHost,
Sunny Goyal9d219682014-10-23 14:21:02 -0700547 mOpenHelper, getContext().getResources(), defaultLayout);
548 }
549
Sunny Goyald3849d12015-10-29 10:28:32 -0700550 /**
Sunny Goyalf076eae2016-01-11 12:25:10 -0800551 * The class is subclassed in tests to create an in-memory db.
552 */
Sunny Goyalc190dbf2016-05-05 14:37:05 -0700553 public static class DatabaseHelper extends SQLiteOpenHelper implements LayoutParserCallback {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700554 private final Handler mWidgetHostResetHandler;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800555 private final Context mContext;
Adam Cohendcd297f2013-06-18 13:13:40 -0700556 private long mMaxItemId = -1;
557 private long mMaxScreenId = -1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800558
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700559 DatabaseHelper(Context context, Handler widgetHostResetHandler) {
560 this(context, widgetHostResetHandler, LauncherFiles.LAUNCHER_DB);
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700561 // Table creation sometimes fails silently, which leads to a crash loop.
562 // This way, we will try to create a table every time after crash, so the device
563 // would eventually be able to recover.
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700564 if (!tableExists(Favorites.TABLE_NAME) || !tableExists(WorkspaceScreens.TABLE_NAME)) {
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700565 Log.e(TAG, "Tables are missing after onCreate has been called. Trying to recreate");
566 // This operation is a no-op if the table already exists.
567 addFavoritesTable(getWritableDatabase(), true);
568 addWorkspacesTable(getWritableDatabase(), true);
569 }
570
Sunny Goyal7eab3cc2016-03-18 17:42:55 -0700571 initIds();
572 }
573
574 /**
Sunny Goyalc190dbf2016-05-05 14:37:05 -0700575 * Constructor used in tests and for restore.
Sunny Goyal7eab3cc2016-03-18 17:42:55 -0700576 */
577 public DatabaseHelper(
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700578 Context context, Handler widgetHostResetHandler, String tableName) {
Sunny Goyal7eab3cc2016-03-18 17:42:55 -0700579 super(new NoLocaleSqliteContext(context), tableName, null, DATABASE_VERSION);
580 mContext = context;
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700581 mWidgetHostResetHandler = widgetHostResetHandler;
Sunny Goyal7eab3cc2016-03-18 17:42:55 -0700582 }
583
584 protected void initIds() {
Winson Chung3d503fb2011-07-13 17:25:49 -0700585 // In the case where neither onCreate nor onUpgrade gets called, we read the maxId from
586 // the DB here
Adam Cohendcd297f2013-06-18 13:13:40 -0700587 if (mMaxItemId == -1) {
588 mMaxItemId = initializeMaxItemId(getWritableDatabase());
589 }
590 if (mMaxScreenId == -1) {
591 mMaxScreenId = initializeMaxScreenId(getWritableDatabase());
Winson Chung3d503fb2011-07-13 17:25:49 -0700592 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800593 }
594
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700595 private boolean tableExists(String tableName) {
596 Cursor c = getReadableDatabase().query(
597 true, "sqlite_master", new String[] {"tbl_name"},
598 "tbl_name = ?", new String[] {tableName},
599 null, null, null, null, null);
600 try {
601 return c.getCount() > 0;
602 } finally {
603 c.close();
604 }
605 }
606
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800607 @Override
608 public void onCreate(SQLiteDatabase db) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800609 if (LOGD) Log.d(TAG, "creating new launcher database");
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700610
Adam Cohendcd297f2013-06-18 13:13:40 -0700611 mMaxItemId = 1;
612 mMaxScreenId = 0;
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700613
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700614 addFavoritesTable(db, false);
615 addWorkspacesTable(db, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800616
Sunny Goyale87e6ab2014-11-21 22:42:53 -0800617 // Fresh and clean launcher DB.
618 mMaxItemId = initializeMaxItemId(db);
Sunny Goyalf076eae2016-01-11 12:25:10 -0800619 onEmptyDbCreated();
620 }
621
622 /**
623 * Overriden in tests.
624 */
625 protected void onEmptyDbCreated() {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700626 // Database was just created, so wipe any previous widgets
627 if (mWidgetHostResetHandler != null) {
628 new AppWidgetHost(mContext, Launcher.APPWIDGET_HOST_ID).deleteHost();
Sunny Goyalda4fe1a2016-05-26 16:05:17 -0700629 mWidgetHostResetHandler.sendMessage(Message.obtain(
630 mWidgetHostResetHandler,
631 ChangeListenerWrapper.MSG_APP_WIDGET_HOST_RESET,
632 mContext
633 ));
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700634 }
635
Sunny Goyalf076eae2016-01-11 12:25:10 -0800636 // Set the flag for empty DB
637 Utilities.getPrefs(mContext).edit().putBoolean(EMPTY_DATABASE_CREATED, true).commit();
Sunny Goyale2fba6c2015-05-12 10:39:59 -0700638
639 // When a new DB is created, remove all previously stored managed profile information.
Sunny Goyalf076eae2016-01-11 12:25:10 -0800640 ManagedProfileHeuristic.processAllUsers(Collections.<UserHandleCompat>emptyList(),
641 mContext);
642 }
643
Sunny Goyale8f7d5a2016-05-24 11:30:14 -0700644 public long getDefaultUserSerial() {
Sunny Goyalf076eae2016-01-11 12:25:10 -0800645 return UserManagerCompat.getInstance(mContext).getSerialNumberForUser(
646 UserHandleCompat.myUserHandle());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800647 }
648
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700649 private void addFavoritesTable(SQLiteDatabase db, boolean optional) {
Sunny Goyalc190dbf2016-05-05 14:37:05 -0700650 Favorites.addTableToDb(db, getDefaultUserSerial(), optional);
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700651 }
652
653 private void addWorkspacesTable(SQLiteDatabase db, boolean optional) {
654 String ifNotExists = optional ? " IF NOT EXISTS " : "";
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700655 db.execSQL("CREATE TABLE " + ifNotExists + WorkspaceScreens.TABLE_NAME + " (" +
Sunny Goyald2f38192015-02-25 10:46:34 -0800656 LauncherSettings.WorkspaceScreens._ID + " INTEGER PRIMARY KEY," +
Chris Wren1ada10d2013-09-13 18:01:38 -0400657 LauncherSettings.WorkspaceScreens.SCREEN_RANK + " INTEGER," +
658 LauncherSettings.ChangeLogColumns.MODIFIED + " INTEGER NOT NULL DEFAULT 0" +
Adam Cohendcd297f2013-06-18 13:13:40 -0700659 ");");
660 }
661
Adam Cohen119285e2014-04-02 16:59:08 -0700662 private void removeOrphanedItems(SQLiteDatabase db) {
Adam Cohenf9c14de2014-04-17 18:20:45 -0700663 // Delete items directly on the workspace who's screen id doesn't exist
664 // "DELETE FROM favorites WHERE screen NOT IN (SELECT _id FROM workspaceScreens)
665 // AND container = -100"
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700666 String removeOrphanedDesktopItems = "DELETE FROM " + Favorites.TABLE_NAME +
Adam Cohenf9c14de2014-04-17 18:20:45 -0700667 " WHERE " +
Adam Cohen119285e2014-04-02 16:59:08 -0700668 LauncherSettings.Favorites.SCREEN + " NOT IN (SELECT " +
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700669 LauncherSettings.WorkspaceScreens._ID + " FROM " + WorkspaceScreens.TABLE_NAME + ")" +
Adam Cohenf9c14de2014-04-17 18:20:45 -0700670 " AND " +
671 LauncherSettings.Favorites.CONTAINER + " = " +
672 LauncherSettings.Favorites.CONTAINER_DESKTOP;
673 db.execSQL(removeOrphanedDesktopItems);
674
675 // Delete items contained in folders which no longer exist (after above statement)
676 // "DELETE FROM favorites WHERE container <> -100 AND container <> -101 AND container
677 // NOT IN (SELECT _id FROM favorites WHERE itemType = 2)"
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700678 String removeOrphanedFolderItems = "DELETE FROM " + Favorites.TABLE_NAME +
Adam Cohenf9c14de2014-04-17 18:20:45 -0700679 " WHERE " +
680 LauncherSettings.Favorites.CONTAINER + " <> " +
681 LauncherSettings.Favorites.CONTAINER_DESKTOP +
682 " AND "
683 + LauncherSettings.Favorites.CONTAINER + " <> " +
684 LauncherSettings.Favorites.CONTAINER_HOTSEAT +
685 " AND "
686 + LauncherSettings.Favorites.CONTAINER + " NOT IN (SELECT " +
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700687 LauncherSettings.Favorites._ID + " FROM " + Favorites.TABLE_NAME +
Adam Cohenf9c14de2014-04-17 18:20:45 -0700688 " WHERE " + LauncherSettings.Favorites.ITEM_TYPE + " = " +
689 LauncherSettings.Favorites.ITEM_TYPE_FOLDER + ")";
690 db.execSQL(removeOrphanedFolderItems);
Adam Cohen119285e2014-04-02 16:59:08 -0700691 }
692
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800693 @Override
694 public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
Winson Chungc763c4e2013-07-19 13:49:06 -0700695 if (LOGD) Log.d(TAG, "onUpgrade triggered: " + oldVersion);
Sunny Goyala2cc6242015-01-14 14:23:02 -0800696 switch (oldVersion) {
697 // The version cannot be lower that 12, as Launcher3 never supported a lower
Sunny Goyale87e6ab2014-11-21 22:42:53 -0800698 // version of the DB.
Sunny Goyala2cc6242015-01-14 14:23:02 -0800699 case 12: {
700 // With the new shrink-wrapped and re-orderable workspaces, it makes sense
701 // to persist workspace screens and their relative order.
702 mMaxScreenId = 0;
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700703 addWorkspacesTable(db, false);
Sunny Goyala2cc6242015-01-14 14:23:02 -0800704 }
705 case 13: {
706 db.beginTransaction();
707 try {
708 // Insert new column for holding widget provider name
709 db.execSQL("ALTER TABLE favorites " +
710 "ADD COLUMN appWidgetProvider TEXT;");
711 db.setTransactionSuccessful();
712 } catch (SQLException ex) {
713 Log.e(TAG, ex.getMessage(), ex);
714 // Old version remains, which means we wipe old data
715 break;
716 } finally {
717 db.endTransaction();
718 }
719 }
720 case 14: {
721 db.beginTransaction();
722 try {
723 // Insert new column for holding update timestamp
724 db.execSQL("ALTER TABLE favorites " +
725 "ADD COLUMN modified INTEGER NOT NULL DEFAULT 0;");
726 db.execSQL("ALTER TABLE workspaceScreens " +
727 "ADD COLUMN modified INTEGER NOT NULL DEFAULT 0;");
728 db.setTransactionSuccessful();
729 } catch (SQLException ex) {
730 Log.e(TAG, ex.getMessage(), ex);
731 // Old version remains, which means we wipe old data
732 break;
733 } finally {
734 db.endTransaction();
735 }
736 }
737 case 15: {
Sunny Goyal5d85c442015-03-10 13:14:47 -0700738 if (!addIntegerColumn(db, Favorites.RESTORED, 0)) {
Sunny Goyala2cc6242015-01-14 14:23:02 -0800739 // Old version remains, which means we wipe old data
740 break;
Sunny Goyala2cc6242015-01-14 14:23:02 -0800741 }
742 }
743 case 16: {
744 // We use the db version upgrade here to identify users who may not have seen
745 // clings yet (because they weren't available), but for whom the clings are now
746 // available (tablet users). Because one of the possible cling flows (migration)
747 // is very destructive (wipes out workspaces), we want to prevent this from showing
748 // until clear data. We do so by marking that the clings have been shown.
Sunny Goyald8043982015-12-17 22:23:02 -0800749 LauncherClings.markFirstRunClingDismissed(mContext);
Sunny Goyala2cc6242015-01-14 14:23:02 -0800750 }
751 case 17: {
752 // No-op
753 }
754 case 18: {
755 // Due to a data loss bug, some users may have items associated with screen ids
756 // which no longer exist. Since this can cause other problems, and since the user
757 // will never see these items anyway, we use database upgrade as an opportunity to
758 // clean things up.
759 removeOrphanedItems(db);
760 }
761 case 19: {
762 // Add userId column
763 if (!addProfileColumn(db)) {
764 // Old version remains, which means we wipe old data
765 break;
766 }
767 }
768 case 20:
769 if (!updateFolderItemsRank(db, true)) {
770 break;
771 }
Sunny Goyald2f38192015-02-25 10:46:34 -0800772 case 21:
773 // Recreate workspace table with screen id a primary key
774 if (!recreateWorkspaceTable(db)) {
775 break;
776 }
777 case 22: {
Sunny Goyal5d85c442015-03-10 13:14:47 -0700778 if (!addIntegerColumn(db, Favorites.OPTIONS, 0)) {
779 // Old version remains, which means we wipe old data
780 break;
781 }
782 }
Sunny Goyal0b037782015-04-02 10:27:03 -0700783 case 23:
Sunny Goyal5c97f512015-05-19 16:03:28 -0700784 // No-op
Sunny Goyale2fba6c2015-05-12 10:39:59 -0700785 case 24:
786 ManagedProfileHeuristic.markExistingUsersForNoFolderCreation(mContext);
Sunny Goyal5c97f512015-05-19 16:03:28 -0700787 case 25:
788 convertShortcutsToLauncherActivities(db);
Sunny Goyala9e2f5a2016-06-10 12:22:04 -0700789 case 26:
790 // QSB was moved to the grid. Clear the first row on screen 0.
791 if (FeatureFlags.QSB_ON_FIRST_SCREEN &&
792 !LauncherDbUtils.prepareScreenZeroToHostQsb(db)) {
793 break;
794 }
795 case 27: {
Sunny Goyala2cc6242015-01-14 14:23:02 -0800796 // DB Upgraded successfully
797 return;
Chris Wrend5e66bf2013-09-16 14:02:29 -0400798 }
799 }
800
Sunny Goyala2cc6242015-01-14 14:23:02 -0800801 // DB was not upgraded
802 Log.w(TAG, "Destroying all old data.");
803 createEmptyDB(db);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800804 }
Romain Guy7eb9e5e2009-12-02 20:10:07 -0800805
Adam Cohen9b1d0622014-05-21 19:01:57 -0700806 @Override
807 public void onDowngrade(SQLiteDatabase db, int oldVersion, int newVersion) {
808 // This shouldn't happen -- throw our hands up in the air and start over.
809 Log.w(TAG, "Database version downgrade from: " + oldVersion + " to " + newVersion +
810 ". Wiping databse.");
Sunny Goyal42de82f2014-09-26 22:09:29 -0700811 createEmptyDB(db);
812 }
Adam Cohen9b1d0622014-05-21 19:01:57 -0700813
Sunny Goyal42de82f2014-09-26 22:09:29 -0700814 /**
815 * Clears all the data for a fresh start.
816 */
817 public void createEmptyDB(SQLiteDatabase db) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700818 db.execSQL("DROP TABLE IF EXISTS " + Favorites.TABLE_NAME);
819 db.execSQL("DROP TABLE IF EXISTS " + WorkspaceScreens.TABLE_NAME);
Adam Cohen9b1d0622014-05-21 19:01:57 -0700820 onCreate(db);
821 }
822
Sunny Goyald2f38192015-02-25 10:46:34 -0800823 /**
Sunny Goyal0b037782015-04-02 10:27:03 -0700824 * Replaces all shortcuts of type {@link Favorites#ITEM_TYPE_SHORTCUT} which have a valid
825 * launcher activity target with {@link Favorites#ITEM_TYPE_APPLICATION}.
826 */
Sunny Goyal316490e2015-06-02 09:38:28 -0700827 @Thunk void convertShortcutsToLauncherActivities(SQLiteDatabase db) {
Sunny Goyal0b037782015-04-02 10:27:03 -0700828 db.beginTransaction();
829 Cursor c = null;
830 SQLiteStatement updateStmt = null;
831
832 try {
833 // Only consider the primary user as other users can't have a shortcut.
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700834 long userSerial = getDefaultUserSerial();
835 c = db.query(Favorites.TABLE_NAME, new String[] {
Sunny Goyal0b037782015-04-02 10:27:03 -0700836 Favorites._ID,
837 Favorites.INTENT,
838 }, "itemType=" + Favorites.ITEM_TYPE_SHORTCUT + " AND profileId=" + userSerial,
839 null, null, null, null);
840
841 updateStmt = db.compileStatement("UPDATE favorites SET itemType="
842 + Favorites.ITEM_TYPE_APPLICATION + " WHERE _id=?");
843
844 final int idIndex = c.getColumnIndexOrThrow(Favorites._ID);
845 final int intentIndex = c.getColumnIndexOrThrow(Favorites.INTENT);
846
847 while (c.moveToNext()) {
848 String intentDescription = c.getString(intentIndex);
849 Intent intent;
850 try {
851 intent = Intent.parseUri(intentDescription, 0);
852 } catch (URISyntaxException e) {
853 Log.e(TAG, "Unable to parse intent", e);
854 continue;
855 }
856
Sunny Goyal4e5cc642015-06-25 16:37:44 -0700857 if (!Utilities.isLauncherAppTarget(intent)) {
Sunny Goyal0b037782015-04-02 10:27:03 -0700858 continue;
859 }
860
861 long id = c.getLong(idIndex);
862 updateStmt.bindLong(1, id);
Sunny Goyalc22841b2015-07-13 19:59:50 -0700863 updateStmt.executeUpdateDelete();
Sunny Goyal0b037782015-04-02 10:27:03 -0700864 }
865 db.setTransactionSuccessful();
866 } catch (SQLException ex) {
867 Log.w(TAG, "Error deduping shortcuts", ex);
868 } finally {
869 db.endTransaction();
870 if (c != null) {
871 c.close();
872 }
873 if (updateStmt != null) {
874 updateStmt.close();
875 }
876 }
877 }
878
879 /**
Sunny Goyald2f38192015-02-25 10:46:34 -0800880 * Recreates workspace table and migrates data to the new table.
881 */
882 public boolean recreateWorkspaceTable(SQLiteDatabase db) {
883 db.beginTransaction();
884 try {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700885 Cursor c = db.query(WorkspaceScreens.TABLE_NAME,
Sunny Goyald2f38192015-02-25 10:46:34 -0800886 new String[] {LauncherSettings.WorkspaceScreens._ID},
887 null, null, null, null,
888 LauncherSettings.WorkspaceScreens.SCREEN_RANK);
889 ArrayList<Long> sortedIDs = new ArrayList<Long>();
890 long maxId = 0;
891 try {
892 while (c.moveToNext()) {
893 Long id = c.getLong(0);
894 if (!sortedIDs.contains(id)) {
895 sortedIDs.add(id);
896 maxId = Math.max(maxId, id);
897 }
898 }
899 } finally {
900 c.close();
901 }
902
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700903 db.execSQL("DROP TABLE IF EXISTS " + WorkspaceScreens.TABLE_NAME);
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700904 addWorkspacesTable(db, false);
Sunny Goyald2f38192015-02-25 10:46:34 -0800905
906 // Add all screen ids back
907 int total = sortedIDs.size();
908 for (int i = 0; i < total; i++) {
909 ContentValues values = new ContentValues();
910 values.put(LauncherSettings.WorkspaceScreens._ID, sortedIDs.get(i));
911 values.put(LauncherSettings.WorkspaceScreens.SCREEN_RANK, i);
912 addModifiedTime(values);
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700913 db.insertOrThrow(WorkspaceScreens.TABLE_NAME, null, values);
Sunny Goyald2f38192015-02-25 10:46:34 -0800914 }
915 db.setTransactionSuccessful();
916 mMaxScreenId = maxId;
917 } catch (SQLException ex) {
918 // Old version remains, which means we wipe old data
919 Log.e(TAG, ex.getMessage(), ex);
920 return false;
921 } finally {
922 db.endTransaction();
923 }
924 return true;
925 }
926
Adam Cohen091440a2015-03-18 14:16:05 -0700927 @Thunk boolean updateFolderItemsRank(SQLiteDatabase db, boolean addRankColumn) {
Sunny Goyal08f72612015-01-05 13:41:43 -0800928 db.beginTransaction();
929 try {
930 if (addRankColumn) {
931 // Insert new column for holding rank
932 db.execSQL("ALTER TABLE favorites ADD COLUMN rank INTEGER NOT NULL DEFAULT 0;");
933 }
934
935 // Get a map for folder ID to folder width
936 Cursor c = db.rawQuery("SELECT container, MAX(cellX) FROM favorites"
937 + " WHERE container IN (SELECT _id FROM favorites WHERE itemType = ?)"
938 + " GROUP BY container;",
939 new String[] {Integer.toString(LauncherSettings.Favorites.ITEM_TYPE_FOLDER)});
940
941 while (c.moveToNext()) {
Sunny Goyalc87775d2015-02-10 19:52:36 -0800942 db.execSQL("UPDATE favorites SET rank=cellX+(cellY*?) WHERE "
943 + "container=? AND cellX IS NOT NULL AND cellY IS NOT NULL;",
Sunny Goyal08f72612015-01-05 13:41:43 -0800944 new Object[] {c.getLong(1) + 1, c.getLong(0)});
945 }
946
947 c.close();
948 db.setTransactionSuccessful();
949 } catch (SQLException ex) {
950 // Old version remains, which means we wipe old data
951 Log.e(TAG, ex.getMessage(), ex);
952 return false;
953 } finally {
954 db.endTransaction();
955 }
956 return true;
957 }
958
Kenny Guyed131872014-04-30 03:02:21 +0100959 private boolean addProfileColumn(SQLiteDatabase db) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700960 return addIntegerColumn(db, Favorites.PROFILE_ID, getDefaultUserSerial());
Sunny Goyal5d85c442015-03-10 13:14:47 -0700961 }
962
963 private boolean addIntegerColumn(SQLiteDatabase db, String columnName, long defaultValue) {
Kenny Guyed131872014-04-30 03:02:21 +0100964 db.beginTransaction();
965 try {
Sunny Goyal5d85c442015-03-10 13:14:47 -0700966 db.execSQL("ALTER TABLE favorites ADD COLUMN "
967 + columnName + " INTEGER NOT NULL DEFAULT " + defaultValue + ";");
Kenny Guyed131872014-04-30 03:02:21 +0100968 db.setTransactionSuccessful();
969 } catch (SQLException ex) {
Kenny Guyed131872014-04-30 03:02:21 +0100970 Log.e(TAG, ex.getMessage(), ex);
971 return false;
972 } finally {
973 db.endTransaction();
974 }
975 return true;
976 }
977
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700978 // Generates a new ID to use for an object in your database. This method should be only
979 // called from the main UI thread. As an exception, we do call it when we call the
980 // constructor from the worker thread; however, this doesn't extend until after the
981 // constructor is called, and we only pass a reference to LauncherProvider to LauncherApp
982 // after that point
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700983 @Override
Adam Cohendcd297f2013-06-18 13:13:40 -0700984 public long generateNewItemId() {
985 if (mMaxItemId < 0) {
986 throw new RuntimeException("Error: max item id was not initialized");
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700987 }
Adam Cohendcd297f2013-06-18 13:13:40 -0700988 mMaxItemId += 1;
989 return mMaxItemId;
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700990 }
991
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700992 @Override
993 public long insertAndCheck(SQLiteDatabase db, ContentValues values) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700994 return dbInsertAndCheck(this, db, Favorites.TABLE_NAME, null, values);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700995 }
996
Chris Wren5dee7af2013-12-20 17:22:11 -0500997 public void checkId(String table, ContentValues values) {
998 long id = values.getAsLong(LauncherSettings.BaseLauncherColumns._ID);
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700999 if (table == WorkspaceScreens.TABLE_NAME) {
Chris Wren5dee7af2013-12-20 17:22:11 -05001000 mMaxScreenId = Math.max(id, mMaxScreenId);
1001 } else {
1002 mMaxItemId = Math.max(id, mMaxItemId);
1003 }
1004 }
1005
Adam Cohendcd297f2013-06-18 13:13:40 -07001006 private long initializeMaxItemId(SQLiteDatabase db) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001007 return getMaxId(db, Favorites.TABLE_NAME);
Adam Cohendcd297f2013-06-18 13:13:40 -07001008 }
1009
1010 // Generates a new ID to use for an workspace screen in your database. This method
1011 // should be only called from the main UI thread. As an exception, we do call it when we
1012 // call the constructor from the worker thread; however, this doesn't extend until after the
1013 // constructor is called, and we only pass a reference to LauncherProvider to LauncherApp
1014 // after that point
1015 public long generateNewScreenId() {
1016 if (mMaxScreenId < 0) {
1017 throw new RuntimeException("Error: max screen id was not initialized");
1018 }
1019 mMaxScreenId += 1;
1020 return mMaxScreenId;
1021 }
1022
Adam Cohendcd297f2013-06-18 13:13:40 -07001023 private long initializeMaxScreenId(SQLiteDatabase db) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001024 return getMaxId(db, WorkspaceScreens.TABLE_NAME);
Adam Cohen7ec3bbf2014-07-31 00:09:45 -07001025 }
1026
Adam Cohen091440a2015-03-18 14:16:05 -07001027 @Thunk int loadFavorites(SQLiteDatabase db, AutoInstallsLayout loader) {
Adam Cohen71483f42014-05-15 14:04:01 -07001028 ArrayList<Long> screenIds = new ArrayList<Long>();
Sunny Goyal0fe505b2014-08-06 09:55:36 -07001029 // TODO: Use multiple loaders with fall-back and transaction.
1030 int count = loader.loadLayout(db, screenIds);
Adam Cohen71483f42014-05-15 14:04:01 -07001031
1032 // Add the screens specified by the items above
1033 Collections.sort(screenIds);
1034 int rank = 0;
1035 ContentValues values = new ContentValues();
1036 for (Long id : screenIds) {
1037 values.clear();
1038 values.put(LauncherSettings.WorkspaceScreens._ID, id);
1039 values.put(LauncherSettings.WorkspaceScreens.SCREEN_RANK, rank);
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001040 if (dbInsertAndCheck(this, db, WorkspaceScreens.TABLE_NAME, null, values) < 0) {
Adam Cohen71483f42014-05-15 14:04:01 -07001041 throw new RuntimeException("Failed initialize screen table"
1042 + "from default layout");
1043 }
1044 rank++;
1045 }
1046
1047 // Ensure that the max ids are initialized
1048 mMaxItemId = initializeMaxItemId(db);
1049 mMaxScreenId = initializeMaxScreenId(db);
Adam Cohen7ec3bbf2014-07-31 00:09:45 -07001050
Adam Cohen71483f42014-05-15 14:04:01 -07001051 return count;
1052 }
Mike Cleronb87bd162009-10-30 16:36:56 -07001053 }
Daniel Lehmannc3a80402012-04-23 21:35:11 -07001054
Sunny Goyalfe4e4b92015-03-04 10:43:45 -08001055 /**
1056 * @return the max _id in the provided table.
1057 */
Adam Cohen091440a2015-03-18 14:16:05 -07001058 @Thunk static long getMaxId(SQLiteDatabase db, String table) {
Sunny Goyalfe4e4b92015-03-04 10:43:45 -08001059 Cursor c = db.rawQuery("SELECT MAX(_id) FROM " + table, null);
1060 // get the result
1061 long id = -1;
1062 if (c != null && c.moveToNext()) {
1063 id = c.getLong(0);
1064 }
1065 if (c != null) {
1066 c.close();
1067 }
1068
1069 if (id == -1) {
1070 throw new RuntimeException("Error: could not query max id in " + table);
1071 }
1072
1073 return id;
1074 }
1075
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001076 static class SqlArguments {
1077 public final String table;
1078 public final String where;
1079 public final String[] args;
1080
1081 SqlArguments(Uri url, String where, String[] args) {
1082 if (url.getPathSegments().size() == 1) {
1083 this.table = url.getPathSegments().get(0);
1084 this.where = where;
1085 this.args = args;
1086 } else if (url.getPathSegments().size() != 2) {
1087 throw new IllegalArgumentException("Invalid URI: " + url);
1088 } else if (!TextUtils.isEmpty(where)) {
1089 throw new UnsupportedOperationException("WHERE clause not supported: " + url);
1090 } else {
1091 this.table = url.getPathSegments().get(0);
Daniel Lehmannc3a80402012-04-23 21:35:11 -07001092 this.where = "_id=" + ContentUris.parseId(url);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001093 this.args = null;
1094 }
1095 }
1096
1097 SqlArguments(Uri url) {
1098 if (url.getPathSegments().size() == 1) {
1099 table = url.getPathSegments().get(0);
1100 where = null;
1101 args = null;
1102 } else {
1103 throw new IllegalArgumentException("Invalid URI: " + url);
1104 }
1105 }
1106 }
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001107
1108 private static class ChangeListenerWrapper implements Handler.Callback {
1109
1110 private static final int MSG_LAUNCHER_PROVIDER_CHANGED = 1;
1111 private static final int MSG_EXTRACTED_COLORS_CHANGED = 2;
1112 private static final int MSG_APP_WIDGET_HOST_RESET = 3;
1113
1114 private LauncherProviderChangeListener mListener;
1115
1116 @Override
1117 public boolean handleMessage(Message msg) {
1118 if (mListener != null) {
1119 switch (msg.what) {
1120 case MSG_LAUNCHER_PROVIDER_CHANGED:
1121 mListener.onLauncherProviderChange();
1122 break;
1123 case MSG_EXTRACTED_COLORS_CHANGED:
1124 mListener.onExtractedColorsChanged();
1125 break;
1126 case MSG_APP_WIDGET_HOST_RESET:
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07001127 Context context = (Context) msg.obj;
1128 if (context != null) {
1129 context.sendBroadcast(new Intent(Launcher.ACTION_APPWIDGET_HOST_RESET)
1130 .setPackage(context.getPackageName()));
1131 }
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001132 break;
1133 }
1134 }
1135 return true;
1136 }
1137 }
Adam Cohen72960972014-01-15 18:13:55 -08001138}