blob: a79df0daf364e8c830651c9237792db338b1eecc [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 }
362 case LauncherSettings.Settings.METHOD_DELETE_EMPTY_FOLDERS: {
363 Bundle result = new Bundle();
364 result.putSerializable(LauncherSettings.Settings.EXTRA_VALUE, deleteEmptyFolders());
365 return result;
366 }
367 case LauncherSettings.Settings.METHOD_NEW_ITEM_ID: {
368 Bundle result = new Bundle();
369 result.putLong(LauncherSettings.Settings.EXTRA_VALUE, mOpenHelper.generateNewItemId());
370 return result;
371 }
372 case LauncherSettings.Settings.METHOD_NEW_SCREEN_ID: {
373 Bundle result = new Bundle();
374 result.putLong(LauncherSettings.Settings.EXTRA_VALUE, mOpenHelper.generateNewScreenId());
375 return result;
376 }
377 case LauncherSettings.Settings.METHOD_CREATE_EMPTY_DB: {
378 createEmptyDB();
379 return null;
380 }
381 case LauncherSettings.Settings.METHOD_LOAD_DEFAULT_FAVORITES: {
382 loadDefaultFavoritesIfNecessary();
383 return null;
384 }
Sunny Goyald2497482015-09-22 18:24:19 -0700385 case LauncherSettings.Settings.METHOD_DELETE_DB: {
Sunny Goyalaefc0c42015-12-10 17:46:12 -0800386 // Are you sure? (y/n)
387 mOpenHelper.createEmptyDB(mOpenHelper.getWritableDatabase());
Sunny Goyald2497482015-09-22 18:24:19 -0700388 return null;
389 }
Sunny Goyal7779d622015-06-11 16:18:39 -0700390 }
391 return null;
392 }
393
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700394 /**
395 * Deletes any empty folder from the DB.
396 * @return Ids of deleted folders.
397 */
Sunny Goyald2497482015-09-22 18:24:19 -0700398 private ArrayList<Long> deleteEmptyFolders() {
399 ArrayList<Long> folderIds = new ArrayList<>();
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700400 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
401 db.beginTransaction();
402 try {
403 // Select folders whose id do not match any container value.
404 String selection = LauncherSettings.Favorites.ITEM_TYPE + " = "
405 + LauncherSettings.Favorites.ITEM_TYPE_FOLDER + " AND "
406 + LauncherSettings.Favorites._ID + " NOT IN (SELECT " +
407 LauncherSettings.Favorites.CONTAINER + " FROM "
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700408 + Favorites.TABLE_NAME + ")";
409 Cursor c = db.query(Favorites.TABLE_NAME,
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700410 new String[] {LauncherSettings.Favorites._ID},
411 selection, null, null, null, null);
412 while (c.moveToNext()) {
413 folderIds.add(c.getLong(0));
414 }
415 c.close();
Sunny Goyald2497482015-09-22 18:24:19 -0700416 if (!folderIds.isEmpty()) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700417 db.delete(Favorites.TABLE_NAME, Utilities.createDbSelectionQuery(
Sunny Goyalb1622cc2015-06-10 16:00:42 -0700418 LauncherSettings.Favorites._ID, folderIds), null);
419 }
420 db.setTransactionSuccessful();
421 } catch (SQLException ex) {
422 Log.e(TAG, ex.getMessage(), ex);
423 folderIds.clear();
424 } finally {
425 db.endTransaction();
426 }
427 return folderIds;
428 }
429
Sunny Goyalf076eae2016-01-11 12:25:10 -0800430 /**
431 * Overridden in tests
432 */
433 protected void notifyListeners() {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700434 mListenerHandler.sendEmptyMessage(ChangeListenerWrapper.MSG_LAUNCHER_PROVIDER_CHANGED);
Chris Wren1ada10d2013-09-13 18:01:38 -0400435 }
436
Adam Cohen091440a2015-03-18 14:16:05 -0700437 @Thunk static void addModifiedTime(ContentValues values) {
Chris Wren1ada10d2013-09-13 18:01:38 -0400438 values.put(LauncherSettings.ChangeLogColumns.MODIFIED, System.currentTimeMillis());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800439 }
440
Brian Muramatsu5524b492012-10-02 16:55:54 -0700441 /**
Sunny Goyal42de82f2014-09-26 22:09:29 -0700442 * Clears all the data for a fresh start.
443 */
Sunny Goyald2497482015-09-22 18:24:19 -0700444 synchronized private void createEmptyDB() {
Sunny Goyal42de82f2014-09-26 22:09:29 -0700445 mOpenHelper.createEmptyDB(mOpenHelper.getWritableDatabase());
446 }
447
Sunny Goyald2497482015-09-22 18:24:19 -0700448 private void clearFlagEmptyDbCreated() {
Sunny Goyalf7258242015-10-19 16:59:07 -0700449 Utilities.getPrefs(getContext()).edit().remove(EMPTY_DATABASE_CREATED).commit();
Sunny Goyal33d44382014-10-16 09:24:19 -0700450 }
451
Sunny Goyal42de82f2014-09-26 22:09:29 -0700452 /**
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700453 * Loads the default workspace based on the following priority scheme:
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700454 * 1) From the app restrictions
455 * 2) From a package provided by play store
456 * 3) From a partner configuration APK, already in the system image
457 * 4) The default configuration for the particular device
Brian Muramatsu5524b492012-10-02 16:55:54 -0700458 */
Sunny Goyald2497482015-09-22 18:24:19 -0700459 synchronized private void loadDefaultFavoritesIfNecessary() {
Sunny Goyalf7258242015-10-19 16:59:07 -0700460 SharedPreferences sp = Utilities.getPrefs(getContext());
Adam Cohene25af792013-06-06 23:08:25 -0700461
Winson Chungc763c4e2013-07-19 13:49:06 -0700462 if (sp.getBoolean(EMPTY_DATABASE_CREATED, false)) {
Chris Wren5dee7af2013-12-20 17:22:11 -0500463 Log.d(TAG, "loading default workspace");
Michael Jurka45355c42012-10-08 13:21:35 +0200464
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700465 AppWidgetHost widgetHost = new AppWidgetHost(getContext(), Launcher.APPWIDGET_HOST_ID);
466 AutoInstallsLayout loader = createWorkspaceLoaderFromAppRestriction(widgetHost);
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700467 if (loader == null) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700468 loader = AutoInstallsLayout.get(getContext(),widgetHost, mOpenHelper);
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700469 }
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700470 if (loader == null) {
Adam Cohen9b8f51f2014-05-30 15:34:09 -0700471 final Partner partner = Partner.get(getContext().getPackageManager());
472 if (partner != null && partner.hasDefaultLayout()) {
473 final Resources partnerRes = partner.getResources();
Adam Cohen4ae96ce2014-08-29 15:05:48 -0700474 int workspaceResId = partnerRes.getIdentifier(Partner.RES_DEFAULT_LAYOUT,
Adam Cohen9b8f51f2014-05-30 15:34:09 -0700475 "xml", partner.getPackageName());
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700476 if (workspaceResId != 0) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700477 loader = new DefaultLayoutParser(getContext(), widgetHost,
Sunny Goyal3a5a9d12014-10-01 15:33:41 -0700478 mOpenHelper, partnerRes, workspaceResId);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700479 }
Adam Cohen9b8f51f2014-05-30 15:34:09 -0700480 }
481 }
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700482
Sunny Goyal9d219682014-10-23 14:21:02 -0700483 final boolean usingExternallyProvidedLayout = loader != null;
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700484 if (loader == null) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700485 loader = getDefaultLayoutParser(widgetHost);
Brian Muramatsu5524b492012-10-02 16:55:54 -0700486 }
Sunny Goyalc6c8fef2015-03-04 09:51:18 -0800487
488 // There might be some partially restored DB items, due to buggy restore logic in
489 // previous versions of launcher.
490 createEmptyDB();
Michael Jurkab85f8a42012-04-25 15:48:32 -0700491 // Populate favorites table with initial favorites
Sunny Goyal9d219682014-10-23 14:21:02 -0700492 if ((mOpenHelper.loadFavorites(mOpenHelper.getWritableDatabase(), loader) <= 0)
493 && usingExternallyProvidedLayout) {
494 // Unable to load external layout. Cleanup and load the internal layout.
495 createEmptyDB();
496 mOpenHelper.loadFavorites(mOpenHelper.getWritableDatabase(),
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700497 getDefaultLayoutParser(widgetHost));
Sunny Goyal9d219682014-10-23 14:21:02 -0700498 }
Sunny Goyal33d44382014-10-16 09:24:19 -0700499 clearFlagEmptyDbCreated();
Michael Jurkab85f8a42012-04-25 15:48:32 -0700500 }
501 }
502
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700503 /**
504 * Creates workspace loader from an XML resource listed in the app restrictions.
505 *
506 * @return the loader if the restrictions are set and the resource exists; null otherwise.
507 */
508 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700509 private AutoInstallsLayout createWorkspaceLoaderFromAppRestriction(AppWidgetHost widgetHost) {
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700510 // UserManager.getApplicationRestrictions() requires minSdkVersion >= 18
Sunny Goyal9fc953b2015-08-17 12:24:25 -0700511 if (!Utilities.ATLEAST_JB_MR2) {
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700512 return null;
513 }
514
515 Context ctx = getContext();
516 UserManager um = (UserManager) ctx.getSystemService(Context.USER_SERVICE);
517 Bundle bundle = um.getApplicationRestrictions(ctx.getPackageName());
Sunny Goyal35ca8732015-04-06 10:45:31 -0700518 if (bundle == null) {
519 return null;
520 }
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700521
Sunny Goyal35ca8732015-04-06 10:45:31 -0700522 String packageName = bundle.getString(RESTRICTION_PACKAGE_NAME);
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700523 if (packageName != null) {
524 try {
525 Resources targetResources = ctx.getPackageManager()
526 .getResourcesForApplication(packageName);
527 return AutoInstallsLayout.get(ctx, packageName, targetResources,
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700528 widgetHost, mOpenHelper);
Sunny Goyalb2d46ce2015-03-26 11:32:11 -0700529 } catch (NameNotFoundException e) {
530 Log.e(TAG, "Target package for restricted profile not found", e);
531 return null;
532 }
533 }
534 return null;
535 }
536
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700537 private DefaultLayoutParser getDefaultLayoutParser(AppWidgetHost widgetHost) {
Sunny Goyal9d219682014-10-23 14:21:02 -0700538 int defaultLayout = LauncherAppState.getInstance()
Adam Cohen2e6da152015-05-06 11:42:25 -0700539 .getInvariantDeviceProfile().defaultLayoutId;
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700540 return new DefaultLayoutParser(getContext(), widgetHost,
Sunny Goyal9d219682014-10-23 14:21:02 -0700541 mOpenHelper, getContext().getResources(), defaultLayout);
542 }
543
Sunny Goyald3849d12015-10-29 10:28:32 -0700544 /**
Sunny Goyalf076eae2016-01-11 12:25:10 -0800545 * The class is subclassed in tests to create an in-memory db.
546 */
Sunny Goyalc190dbf2016-05-05 14:37:05 -0700547 public static class DatabaseHelper extends SQLiteOpenHelper implements LayoutParserCallback {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700548 private final Handler mWidgetHostResetHandler;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800549 private final Context mContext;
Adam Cohendcd297f2013-06-18 13:13:40 -0700550 private long mMaxItemId = -1;
551 private long mMaxScreenId = -1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800552
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700553 DatabaseHelper(Context context, Handler widgetHostResetHandler) {
554 this(context, widgetHostResetHandler, LauncherFiles.LAUNCHER_DB);
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700555 // Table creation sometimes fails silently, which leads to a crash loop.
556 // This way, we will try to create a table every time after crash, so the device
557 // would eventually be able to recover.
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700558 if (!tableExists(Favorites.TABLE_NAME) || !tableExists(WorkspaceScreens.TABLE_NAME)) {
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700559 Log.e(TAG, "Tables are missing after onCreate has been called. Trying to recreate");
560 // This operation is a no-op if the table already exists.
561 addFavoritesTable(getWritableDatabase(), true);
562 addWorkspacesTable(getWritableDatabase(), true);
563 }
564
Sunny Goyal7eab3cc2016-03-18 17:42:55 -0700565 initIds();
566 }
567
568 /**
Sunny Goyalc190dbf2016-05-05 14:37:05 -0700569 * Constructor used in tests and for restore.
Sunny Goyal7eab3cc2016-03-18 17:42:55 -0700570 */
571 public DatabaseHelper(
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700572 Context context, Handler widgetHostResetHandler, String tableName) {
Sunny Goyal7eab3cc2016-03-18 17:42:55 -0700573 super(new NoLocaleSqliteContext(context), tableName, null, DATABASE_VERSION);
574 mContext = context;
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700575 mWidgetHostResetHandler = widgetHostResetHandler;
Sunny Goyal7eab3cc2016-03-18 17:42:55 -0700576 }
577
578 protected void initIds() {
Winson Chung3d503fb2011-07-13 17:25:49 -0700579 // In the case where neither onCreate nor onUpgrade gets called, we read the maxId from
580 // the DB here
Adam Cohendcd297f2013-06-18 13:13:40 -0700581 if (mMaxItemId == -1) {
582 mMaxItemId = initializeMaxItemId(getWritableDatabase());
583 }
584 if (mMaxScreenId == -1) {
585 mMaxScreenId = initializeMaxScreenId(getWritableDatabase());
Winson Chung3d503fb2011-07-13 17:25:49 -0700586 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800587 }
588
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700589 private boolean tableExists(String tableName) {
590 Cursor c = getReadableDatabase().query(
591 true, "sqlite_master", new String[] {"tbl_name"},
592 "tbl_name = ?", new String[] {tableName},
593 null, null, null, null, null);
594 try {
595 return c.getCount() > 0;
596 } finally {
597 c.close();
598 }
599 }
600
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800601 @Override
602 public void onCreate(SQLiteDatabase db) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800603 if (LOGD) Log.d(TAG, "creating new launcher database");
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700604
Adam Cohendcd297f2013-06-18 13:13:40 -0700605 mMaxItemId = 1;
606 mMaxScreenId = 0;
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700607
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700608 addFavoritesTable(db, false);
609 addWorkspacesTable(db, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800610
Sunny Goyale87e6ab2014-11-21 22:42:53 -0800611 // Fresh and clean launcher DB.
612 mMaxItemId = initializeMaxItemId(db);
Sunny Goyalf076eae2016-01-11 12:25:10 -0800613 onEmptyDbCreated();
614 }
615
616 /**
617 * Overriden in tests.
618 */
619 protected void onEmptyDbCreated() {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700620 // Database was just created, so wipe any previous widgets
621 if (mWidgetHostResetHandler != null) {
622 new AppWidgetHost(mContext, Launcher.APPWIDGET_HOST_ID).deleteHost();
Sunny Goyalda4fe1a2016-05-26 16:05:17 -0700623 mWidgetHostResetHandler.sendMessage(Message.obtain(
624 mWidgetHostResetHandler,
625 ChangeListenerWrapper.MSG_APP_WIDGET_HOST_RESET,
626 mContext
627 ));
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700628 }
629
Sunny Goyalf076eae2016-01-11 12:25:10 -0800630 // Set the flag for empty DB
631 Utilities.getPrefs(mContext).edit().putBoolean(EMPTY_DATABASE_CREATED, true).commit();
Sunny Goyale2fba6c2015-05-12 10:39:59 -0700632
633 // When a new DB is created, remove all previously stored managed profile information.
Sunny Goyalf076eae2016-01-11 12:25:10 -0800634 ManagedProfileHeuristic.processAllUsers(Collections.<UserHandleCompat>emptyList(),
635 mContext);
636 }
637
Sunny Goyale8f7d5a2016-05-24 11:30:14 -0700638 public long getDefaultUserSerial() {
Sunny Goyalf076eae2016-01-11 12:25:10 -0800639 return UserManagerCompat.getInstance(mContext).getSerialNumberForUser(
640 UserHandleCompat.myUserHandle());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800641 }
642
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700643 private void addFavoritesTable(SQLiteDatabase db, boolean optional) {
Sunny Goyalc190dbf2016-05-05 14:37:05 -0700644 Favorites.addTableToDb(db, getDefaultUserSerial(), optional);
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700645 }
646
647 private void addWorkspacesTable(SQLiteDatabase db, boolean optional) {
648 String ifNotExists = optional ? " IF NOT EXISTS " : "";
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700649 db.execSQL("CREATE TABLE " + ifNotExists + WorkspaceScreens.TABLE_NAME + " (" +
Sunny Goyald2f38192015-02-25 10:46:34 -0800650 LauncherSettings.WorkspaceScreens._ID + " INTEGER PRIMARY KEY," +
Chris Wren1ada10d2013-09-13 18:01:38 -0400651 LauncherSettings.WorkspaceScreens.SCREEN_RANK + " INTEGER," +
652 LauncherSettings.ChangeLogColumns.MODIFIED + " INTEGER NOT NULL DEFAULT 0" +
Adam Cohendcd297f2013-06-18 13:13:40 -0700653 ");");
654 }
655
Adam Cohen119285e2014-04-02 16:59:08 -0700656 private void removeOrphanedItems(SQLiteDatabase db) {
Adam Cohenf9c14de2014-04-17 18:20:45 -0700657 // Delete items directly on the workspace who's screen id doesn't exist
658 // "DELETE FROM favorites WHERE screen NOT IN (SELECT _id FROM workspaceScreens)
659 // AND container = -100"
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700660 String removeOrphanedDesktopItems = "DELETE FROM " + Favorites.TABLE_NAME +
Adam Cohenf9c14de2014-04-17 18:20:45 -0700661 " WHERE " +
Adam Cohen119285e2014-04-02 16:59:08 -0700662 LauncherSettings.Favorites.SCREEN + " NOT IN (SELECT " +
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700663 LauncherSettings.WorkspaceScreens._ID + " FROM " + WorkspaceScreens.TABLE_NAME + ")" +
Adam Cohenf9c14de2014-04-17 18:20:45 -0700664 " AND " +
665 LauncherSettings.Favorites.CONTAINER + " = " +
666 LauncherSettings.Favorites.CONTAINER_DESKTOP;
667 db.execSQL(removeOrphanedDesktopItems);
668
669 // Delete items contained in folders which no longer exist (after above statement)
670 // "DELETE FROM favorites WHERE container <> -100 AND container <> -101 AND container
671 // NOT IN (SELECT _id FROM favorites WHERE itemType = 2)"
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700672 String removeOrphanedFolderItems = "DELETE FROM " + Favorites.TABLE_NAME +
Adam Cohenf9c14de2014-04-17 18:20:45 -0700673 " WHERE " +
674 LauncherSettings.Favorites.CONTAINER + " <> " +
675 LauncherSettings.Favorites.CONTAINER_DESKTOP +
676 " AND "
677 + LauncherSettings.Favorites.CONTAINER + " <> " +
678 LauncherSettings.Favorites.CONTAINER_HOTSEAT +
679 " AND "
680 + LauncherSettings.Favorites.CONTAINER + " NOT IN (SELECT " +
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700681 LauncherSettings.Favorites._ID + " FROM " + Favorites.TABLE_NAME +
Adam Cohenf9c14de2014-04-17 18:20:45 -0700682 " WHERE " + LauncherSettings.Favorites.ITEM_TYPE + " = " +
683 LauncherSettings.Favorites.ITEM_TYPE_FOLDER + ")";
684 db.execSQL(removeOrphanedFolderItems);
Adam Cohen119285e2014-04-02 16:59:08 -0700685 }
686
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800687 @Override
688 public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
Winson Chungc763c4e2013-07-19 13:49:06 -0700689 if (LOGD) Log.d(TAG, "onUpgrade triggered: " + oldVersion);
Sunny Goyala2cc6242015-01-14 14:23:02 -0800690 switch (oldVersion) {
691 // The version cannot be lower that 12, as Launcher3 never supported a lower
Sunny Goyale87e6ab2014-11-21 22:42:53 -0800692 // version of the DB.
Sunny Goyala2cc6242015-01-14 14:23:02 -0800693 case 12: {
694 // With the new shrink-wrapped and re-orderable workspaces, it makes sense
695 // to persist workspace screens and their relative order.
696 mMaxScreenId = 0;
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700697 addWorkspacesTable(db, false);
Sunny Goyala2cc6242015-01-14 14:23:02 -0800698 }
699 case 13: {
700 db.beginTransaction();
701 try {
702 // Insert new column for holding widget provider name
703 db.execSQL("ALTER TABLE favorites " +
704 "ADD COLUMN appWidgetProvider TEXT;");
705 db.setTransactionSuccessful();
706 } catch (SQLException ex) {
707 Log.e(TAG, ex.getMessage(), ex);
708 // Old version remains, which means we wipe old data
709 break;
710 } finally {
711 db.endTransaction();
712 }
713 }
714 case 14: {
715 db.beginTransaction();
716 try {
717 // Insert new column for holding update timestamp
718 db.execSQL("ALTER TABLE favorites " +
719 "ADD COLUMN modified INTEGER NOT NULL DEFAULT 0;");
720 db.execSQL("ALTER TABLE workspaceScreens " +
721 "ADD COLUMN modified INTEGER NOT NULL DEFAULT 0;");
722 db.setTransactionSuccessful();
723 } catch (SQLException ex) {
724 Log.e(TAG, ex.getMessage(), ex);
725 // Old version remains, which means we wipe old data
726 break;
727 } finally {
728 db.endTransaction();
729 }
730 }
731 case 15: {
Sunny Goyal5d85c442015-03-10 13:14:47 -0700732 if (!addIntegerColumn(db, Favorites.RESTORED, 0)) {
Sunny Goyala2cc6242015-01-14 14:23:02 -0800733 // Old version remains, which means we wipe old data
734 break;
Sunny Goyala2cc6242015-01-14 14:23:02 -0800735 }
736 }
737 case 16: {
738 // We use the db version upgrade here to identify users who may not have seen
739 // clings yet (because they weren't available), but for whom the clings are now
740 // available (tablet users). Because one of the possible cling flows (migration)
741 // is very destructive (wipes out workspaces), we want to prevent this from showing
742 // until clear data. We do so by marking that the clings have been shown.
Sunny Goyald8043982015-12-17 22:23:02 -0800743 LauncherClings.markFirstRunClingDismissed(mContext);
Sunny Goyala2cc6242015-01-14 14:23:02 -0800744 }
745 case 17: {
746 // No-op
747 }
748 case 18: {
749 // Due to a data loss bug, some users may have items associated with screen ids
750 // which no longer exist. Since this can cause other problems, and since the user
751 // will never see these items anyway, we use database upgrade as an opportunity to
752 // clean things up.
753 removeOrphanedItems(db);
754 }
755 case 19: {
756 // Add userId column
757 if (!addProfileColumn(db)) {
758 // Old version remains, which means we wipe old data
759 break;
760 }
761 }
762 case 20:
763 if (!updateFolderItemsRank(db, true)) {
764 break;
765 }
Sunny Goyald2f38192015-02-25 10:46:34 -0800766 case 21:
767 // Recreate workspace table with screen id a primary key
768 if (!recreateWorkspaceTable(db)) {
769 break;
770 }
771 case 22: {
Sunny Goyal5d85c442015-03-10 13:14:47 -0700772 if (!addIntegerColumn(db, Favorites.OPTIONS, 0)) {
773 // Old version remains, which means we wipe old data
774 break;
775 }
776 }
Sunny Goyal0b037782015-04-02 10:27:03 -0700777 case 23:
Sunny Goyal5c97f512015-05-19 16:03:28 -0700778 // No-op
Sunny Goyale2fba6c2015-05-12 10:39:59 -0700779 case 24:
780 ManagedProfileHeuristic.markExistingUsersForNoFolderCreation(mContext);
Sunny Goyal5c97f512015-05-19 16:03:28 -0700781 case 25:
782 convertShortcutsToLauncherActivities(db);
Sunny Goyala9e2f5a2016-06-10 12:22:04 -0700783 case 26:
784 // QSB was moved to the grid. Clear the first row on screen 0.
785 if (FeatureFlags.QSB_ON_FIRST_SCREEN &&
786 !LauncherDbUtils.prepareScreenZeroToHostQsb(db)) {
787 break;
788 }
789 case 27: {
Sunny Goyala2cc6242015-01-14 14:23:02 -0800790 // DB Upgraded successfully
791 return;
Chris Wrend5e66bf2013-09-16 14:02:29 -0400792 }
793 }
794
Sunny Goyala2cc6242015-01-14 14:23:02 -0800795 // DB was not upgraded
796 Log.w(TAG, "Destroying all old data.");
797 createEmptyDB(db);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800798 }
Romain Guy7eb9e5e2009-12-02 20:10:07 -0800799
Adam Cohen9b1d0622014-05-21 19:01:57 -0700800 @Override
801 public void onDowngrade(SQLiteDatabase db, int oldVersion, int newVersion) {
802 // This shouldn't happen -- throw our hands up in the air and start over.
803 Log.w(TAG, "Database version downgrade from: " + oldVersion + " to " + newVersion +
804 ". Wiping databse.");
Sunny Goyal42de82f2014-09-26 22:09:29 -0700805 createEmptyDB(db);
806 }
Adam Cohen9b1d0622014-05-21 19:01:57 -0700807
Sunny Goyal42de82f2014-09-26 22:09:29 -0700808 /**
809 * Clears all the data for a fresh start.
810 */
811 public void createEmptyDB(SQLiteDatabase db) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700812 db.execSQL("DROP TABLE IF EXISTS " + Favorites.TABLE_NAME);
813 db.execSQL("DROP TABLE IF EXISTS " + WorkspaceScreens.TABLE_NAME);
Adam Cohen9b1d0622014-05-21 19:01:57 -0700814 onCreate(db);
815 }
816
Sunny Goyald2f38192015-02-25 10:46:34 -0800817 /**
Sunny Goyal0b037782015-04-02 10:27:03 -0700818 * Replaces all shortcuts of type {@link Favorites#ITEM_TYPE_SHORTCUT} which have a valid
819 * launcher activity target with {@link Favorites#ITEM_TYPE_APPLICATION}.
820 */
Sunny Goyal316490e2015-06-02 09:38:28 -0700821 @Thunk void convertShortcutsToLauncherActivities(SQLiteDatabase db) {
Sunny Goyal0b037782015-04-02 10:27:03 -0700822 db.beginTransaction();
823 Cursor c = null;
824 SQLiteStatement updateStmt = null;
825
826 try {
827 // Only consider the primary user as other users can't have a shortcut.
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700828 long userSerial = getDefaultUserSerial();
829 c = db.query(Favorites.TABLE_NAME, new String[] {
Sunny Goyal0b037782015-04-02 10:27:03 -0700830 Favorites._ID,
831 Favorites.INTENT,
832 }, "itemType=" + Favorites.ITEM_TYPE_SHORTCUT + " AND profileId=" + userSerial,
833 null, null, null, null);
834
835 updateStmt = db.compileStatement("UPDATE favorites SET itemType="
836 + Favorites.ITEM_TYPE_APPLICATION + " WHERE _id=?");
837
838 final int idIndex = c.getColumnIndexOrThrow(Favorites._ID);
839 final int intentIndex = c.getColumnIndexOrThrow(Favorites.INTENT);
840
841 while (c.moveToNext()) {
842 String intentDescription = c.getString(intentIndex);
843 Intent intent;
844 try {
845 intent = Intent.parseUri(intentDescription, 0);
846 } catch (URISyntaxException e) {
847 Log.e(TAG, "Unable to parse intent", e);
848 continue;
849 }
850
Sunny Goyal4e5cc642015-06-25 16:37:44 -0700851 if (!Utilities.isLauncherAppTarget(intent)) {
Sunny Goyal0b037782015-04-02 10:27:03 -0700852 continue;
853 }
854
855 long id = c.getLong(idIndex);
856 updateStmt.bindLong(1, id);
Sunny Goyalc22841b2015-07-13 19:59:50 -0700857 updateStmt.executeUpdateDelete();
Sunny Goyal0b037782015-04-02 10:27:03 -0700858 }
859 db.setTransactionSuccessful();
860 } catch (SQLException ex) {
861 Log.w(TAG, "Error deduping shortcuts", ex);
862 } finally {
863 db.endTransaction();
864 if (c != null) {
865 c.close();
866 }
867 if (updateStmt != null) {
868 updateStmt.close();
869 }
870 }
871 }
872
873 /**
Sunny Goyald2f38192015-02-25 10:46:34 -0800874 * Recreates workspace table and migrates data to the new table.
875 */
876 public boolean recreateWorkspaceTable(SQLiteDatabase db) {
877 db.beginTransaction();
878 try {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700879 Cursor c = db.query(WorkspaceScreens.TABLE_NAME,
Sunny Goyald2f38192015-02-25 10:46:34 -0800880 new String[] {LauncherSettings.WorkspaceScreens._ID},
881 null, null, null, null,
882 LauncherSettings.WorkspaceScreens.SCREEN_RANK);
883 ArrayList<Long> sortedIDs = new ArrayList<Long>();
884 long maxId = 0;
885 try {
886 while (c.moveToNext()) {
887 Long id = c.getLong(0);
888 if (!sortedIDs.contains(id)) {
889 sortedIDs.add(id);
890 maxId = Math.max(maxId, id);
891 }
892 }
893 } finally {
894 c.close();
895 }
896
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700897 db.execSQL("DROP TABLE IF EXISTS " + WorkspaceScreens.TABLE_NAME);
Sunny Goyal6fb929e2015-09-23 11:40:53 -0700898 addWorkspacesTable(db, false);
Sunny Goyald2f38192015-02-25 10:46:34 -0800899
900 // Add all screen ids back
901 int total = sortedIDs.size();
902 for (int i = 0; i < total; i++) {
903 ContentValues values = new ContentValues();
904 values.put(LauncherSettings.WorkspaceScreens._ID, sortedIDs.get(i));
905 values.put(LauncherSettings.WorkspaceScreens.SCREEN_RANK, i);
906 addModifiedTime(values);
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700907 db.insertOrThrow(WorkspaceScreens.TABLE_NAME, null, values);
Sunny Goyald2f38192015-02-25 10:46:34 -0800908 }
909 db.setTransactionSuccessful();
910 mMaxScreenId = maxId;
911 } catch (SQLException ex) {
912 // Old version remains, which means we wipe old data
913 Log.e(TAG, ex.getMessage(), ex);
914 return false;
915 } finally {
916 db.endTransaction();
917 }
918 return true;
919 }
920
Adam Cohen091440a2015-03-18 14:16:05 -0700921 @Thunk boolean updateFolderItemsRank(SQLiteDatabase db, boolean addRankColumn) {
Sunny Goyal08f72612015-01-05 13:41:43 -0800922 db.beginTransaction();
923 try {
924 if (addRankColumn) {
925 // Insert new column for holding rank
926 db.execSQL("ALTER TABLE favorites ADD COLUMN rank INTEGER NOT NULL DEFAULT 0;");
927 }
928
929 // Get a map for folder ID to folder width
930 Cursor c = db.rawQuery("SELECT container, MAX(cellX) FROM favorites"
931 + " WHERE container IN (SELECT _id FROM favorites WHERE itemType = ?)"
932 + " GROUP BY container;",
933 new String[] {Integer.toString(LauncherSettings.Favorites.ITEM_TYPE_FOLDER)});
934
935 while (c.moveToNext()) {
Sunny Goyalc87775d2015-02-10 19:52:36 -0800936 db.execSQL("UPDATE favorites SET rank=cellX+(cellY*?) WHERE "
937 + "container=? AND cellX IS NOT NULL AND cellY IS NOT NULL;",
Sunny Goyal08f72612015-01-05 13:41:43 -0800938 new Object[] {c.getLong(1) + 1, c.getLong(0)});
939 }
940
941 c.close();
942 db.setTransactionSuccessful();
943 } catch (SQLException ex) {
944 // Old version remains, which means we wipe old data
945 Log.e(TAG, ex.getMessage(), ex);
946 return false;
947 } finally {
948 db.endTransaction();
949 }
950 return true;
951 }
952
Kenny Guyed131872014-04-30 03:02:21 +0100953 private boolean addProfileColumn(SQLiteDatabase db) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700954 return addIntegerColumn(db, Favorites.PROFILE_ID, getDefaultUserSerial());
Sunny Goyal5d85c442015-03-10 13:14:47 -0700955 }
956
957 private boolean addIntegerColumn(SQLiteDatabase db, String columnName, long defaultValue) {
Kenny Guyed131872014-04-30 03:02:21 +0100958 db.beginTransaction();
959 try {
Sunny Goyal5d85c442015-03-10 13:14:47 -0700960 db.execSQL("ALTER TABLE favorites ADD COLUMN "
961 + columnName + " INTEGER NOT NULL DEFAULT " + defaultValue + ";");
Kenny Guyed131872014-04-30 03:02:21 +0100962 db.setTransactionSuccessful();
963 } catch (SQLException ex) {
Kenny Guyed131872014-04-30 03:02:21 +0100964 Log.e(TAG, ex.getMessage(), ex);
965 return false;
966 } finally {
967 db.endTransaction();
968 }
969 return true;
970 }
971
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700972 // Generates a new ID to use for an object in your database. This method should be only
973 // called from the main UI thread. As an exception, we do call it when we call the
974 // constructor from the worker thread; however, this doesn't extend until after the
975 // constructor is called, and we only pass a reference to LauncherProvider to LauncherApp
976 // after that point
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700977 @Override
Adam Cohendcd297f2013-06-18 13:13:40 -0700978 public long generateNewItemId() {
979 if (mMaxItemId < 0) {
980 throw new RuntimeException("Error: max item id was not initialized");
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700981 }
Adam Cohendcd297f2013-06-18 13:13:40 -0700982 mMaxItemId += 1;
983 return mMaxItemId;
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700984 }
985
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700986 @Override
987 public long insertAndCheck(SQLiteDatabase db, ContentValues values) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700988 return dbInsertAndCheck(this, db, Favorites.TABLE_NAME, null, values);
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700989 }
990
Chris Wren5dee7af2013-12-20 17:22:11 -0500991 public void checkId(String table, ContentValues values) {
992 long id = values.getAsLong(LauncherSettings.BaseLauncherColumns._ID);
Sunny Goyalb5b55c82016-05-10 12:28:59 -0700993 if (table == WorkspaceScreens.TABLE_NAME) {
Chris Wren5dee7af2013-12-20 17:22:11 -0500994 mMaxScreenId = Math.max(id, mMaxScreenId);
995 } else {
996 mMaxItemId = Math.max(id, mMaxItemId);
997 }
998 }
999
Adam Cohendcd297f2013-06-18 13:13:40 -07001000 private long initializeMaxItemId(SQLiteDatabase db) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001001 return getMaxId(db, Favorites.TABLE_NAME);
Adam Cohendcd297f2013-06-18 13:13:40 -07001002 }
1003
1004 // Generates a new ID to use for an workspace screen in your database. This method
1005 // should be only called from the main UI thread. As an exception, we do call it when we
1006 // call the constructor from the worker thread; however, this doesn't extend until after the
1007 // constructor is called, and we only pass a reference to LauncherProvider to LauncherApp
1008 // after that point
1009 public long generateNewScreenId() {
1010 if (mMaxScreenId < 0) {
1011 throw new RuntimeException("Error: max screen id was not initialized");
1012 }
1013 mMaxScreenId += 1;
1014 return mMaxScreenId;
1015 }
1016
Adam Cohendcd297f2013-06-18 13:13:40 -07001017 private long initializeMaxScreenId(SQLiteDatabase db) {
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001018 return getMaxId(db, WorkspaceScreens.TABLE_NAME);
Adam Cohen7ec3bbf2014-07-31 00:09:45 -07001019 }
1020
Adam Cohen091440a2015-03-18 14:16:05 -07001021 @Thunk int loadFavorites(SQLiteDatabase db, AutoInstallsLayout loader) {
Adam Cohen71483f42014-05-15 14:04:01 -07001022 ArrayList<Long> screenIds = new ArrayList<Long>();
Sunny Goyal0fe505b2014-08-06 09:55:36 -07001023 // TODO: Use multiple loaders with fall-back and transaction.
1024 int count = loader.loadLayout(db, screenIds);
Adam Cohen71483f42014-05-15 14:04:01 -07001025
1026 // Add the screens specified by the items above
1027 Collections.sort(screenIds);
1028 int rank = 0;
1029 ContentValues values = new ContentValues();
1030 for (Long id : screenIds) {
1031 values.clear();
1032 values.put(LauncherSettings.WorkspaceScreens._ID, id);
1033 values.put(LauncherSettings.WorkspaceScreens.SCREEN_RANK, rank);
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001034 if (dbInsertAndCheck(this, db, WorkspaceScreens.TABLE_NAME, null, values) < 0) {
Adam Cohen71483f42014-05-15 14:04:01 -07001035 throw new RuntimeException("Failed initialize screen table"
1036 + "from default layout");
1037 }
1038 rank++;
1039 }
1040
1041 // Ensure that the max ids are initialized
1042 mMaxItemId = initializeMaxItemId(db);
1043 mMaxScreenId = initializeMaxScreenId(db);
Adam Cohen7ec3bbf2014-07-31 00:09:45 -07001044
Adam Cohen71483f42014-05-15 14:04:01 -07001045 return count;
1046 }
Mike Cleronb87bd162009-10-30 16:36:56 -07001047 }
Daniel Lehmannc3a80402012-04-23 21:35:11 -07001048
Sunny Goyalfe4e4b92015-03-04 10:43:45 -08001049 /**
1050 * @return the max _id in the provided table.
1051 */
Adam Cohen091440a2015-03-18 14:16:05 -07001052 @Thunk static long getMaxId(SQLiteDatabase db, String table) {
Sunny Goyalfe4e4b92015-03-04 10:43:45 -08001053 Cursor c = db.rawQuery("SELECT MAX(_id) FROM " + table, null);
1054 // get the result
1055 long id = -1;
1056 if (c != null && c.moveToNext()) {
1057 id = c.getLong(0);
1058 }
1059 if (c != null) {
1060 c.close();
1061 }
1062
1063 if (id == -1) {
1064 throw new RuntimeException("Error: could not query max id in " + table);
1065 }
1066
1067 return id;
1068 }
1069
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001070 static class SqlArguments {
1071 public final String table;
1072 public final String where;
1073 public final String[] args;
1074
1075 SqlArguments(Uri url, String where, String[] args) {
1076 if (url.getPathSegments().size() == 1) {
1077 this.table = url.getPathSegments().get(0);
1078 this.where = where;
1079 this.args = args;
1080 } else if (url.getPathSegments().size() != 2) {
1081 throw new IllegalArgumentException("Invalid URI: " + url);
1082 } else if (!TextUtils.isEmpty(where)) {
1083 throw new UnsupportedOperationException("WHERE clause not supported: " + url);
1084 } else {
1085 this.table = url.getPathSegments().get(0);
Daniel Lehmannc3a80402012-04-23 21:35:11 -07001086 this.where = "_id=" + ContentUris.parseId(url);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001087 this.args = null;
1088 }
1089 }
1090
1091 SqlArguments(Uri url) {
1092 if (url.getPathSegments().size() == 1) {
1093 table = url.getPathSegments().get(0);
1094 where = null;
1095 args = null;
1096 } else {
1097 throw new IllegalArgumentException("Invalid URI: " + url);
1098 }
1099 }
1100 }
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001101
1102 private static class ChangeListenerWrapper implements Handler.Callback {
1103
1104 private static final int MSG_LAUNCHER_PROVIDER_CHANGED = 1;
1105 private static final int MSG_EXTRACTED_COLORS_CHANGED = 2;
1106 private static final int MSG_APP_WIDGET_HOST_RESET = 3;
1107
1108 private LauncherProviderChangeListener mListener;
1109
1110 @Override
1111 public boolean handleMessage(Message msg) {
1112 if (mListener != null) {
1113 switch (msg.what) {
1114 case MSG_LAUNCHER_PROVIDER_CHANGED:
1115 mListener.onLauncherProviderChange();
1116 break;
1117 case MSG_EXTRACTED_COLORS_CHANGED:
1118 mListener.onExtractedColorsChanged();
1119 break;
1120 case MSG_APP_WIDGET_HOST_RESET:
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07001121 Context context = (Context) msg.obj;
1122 if (context != null) {
1123 context.sendBroadcast(new Intent(Launcher.ACTION_APPWIDGET_HOST_RESET)
1124 .setPackage(context.getPackageName()));
1125 }
Sunny Goyalb5b55c82016-05-10 12:28:59 -07001126 break;
1127 }
1128 }
1129 return true;
1130 }
1131 }
Adam Cohen72960972014-01-15 18:13:55 -08001132}