blob: 4b27837c4a9ab68e8b292d2c7fef7741ed15e9d7 [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
Bjorn Bringertcd8fec02010-01-14 13:26:43 +000019import android.app.SearchManager;
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;
Bjorn Bringertcd8fec02010-01-14 13:26:43 +000022import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080023import android.content.ComponentName;
Adam Cohen228da5a2011-07-27 22:23:47 -070024import android.content.ContentProvider;
Yura085c8532014-02-11 15:15:29 +000025import android.content.ContentProviderOperation;
26import android.content.ContentProviderResult;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080027import android.content.ContentResolver;
Adam Cohen228da5a2011-07-27 22:23:47 -070028import android.content.ContentUris;
29import android.content.ContentValues;
30import android.content.Context;
31import android.content.Intent;
Yura085c8532014-02-11 15:15:29 +000032import android.content.OperationApplicationException;
Michael Jurkab85f8a42012-04-25 15:48:32 -070033import android.content.SharedPreferences;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080034import android.content.pm.ActivityInfo;
Jason Monk41314972014-03-03 16:11:30 -050035import android.content.pm.ApplicationInfo;
Adam Cohen228da5a2011-07-27 22:23:47 -070036import android.content.pm.PackageManager;
Jason Monk41314972014-03-03 16:11:30 -050037import android.content.pm.ResolveInfo;
Adam Cohen228da5a2011-07-27 22:23:47 -070038import android.content.res.Resources;
Adam Cohen228da5a2011-07-27 22:23:47 -070039import android.content.res.XmlResourceParser;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080040import android.database.Cursor;
41import android.database.SQLException;
Adam Cohen228da5a2011-07-27 22:23:47 -070042import android.database.sqlite.SQLiteDatabase;
43import android.database.sqlite.SQLiteOpenHelper;
44import android.database.sqlite.SQLiteQueryBuilder;
45import android.database.sqlite.SQLiteStatement;
Joe Onorato0589f0f2010-02-08 13:44:00 -080046import android.graphics.Bitmap;
47import android.graphics.BitmapFactory;
Adam Cohen228da5a2011-07-27 22:23:47 -070048import android.net.Uri;
Winson Chungb3302ae2012-05-01 10:19:14 -070049import android.os.Bundle;
Adam Cohen228da5a2011-07-27 22:23:47 -070050import android.provider.Settings;
51import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080052import android.util.Log;
Dan Sandlerab5fa3a2014-03-06 23:48:04 -050053import android.util.SparseArray;
Adam Cohen228da5a2011-07-27 22:23:47 -070054
Sunny Goyal0fe505b2014-08-06 09:55:36 -070055import com.android.launcher3.AutoInstallsLayout.LayoutParserCallback;
56import com.android.launcher3.LauncherSettings.Favorites;
Kenny Guyed131872014-04-30 03:02:21 +010057import com.android.launcher3.compat.UserHandleCompat;
58import com.android.launcher3.compat.UserManagerCompat;
Chris Wrene523e702013-10-09 10:36:55 -040059import com.android.launcher3.config.ProviderConfig;
Michael Jurka8b805b12012-04-18 14:23:14 -070060
61import org.xmlpull.v1.XmlPullParser;
62import org.xmlpull.v1.XmlPullParserException;
63
Dan Sandlerd5024042014-01-09 15:01:33 -050064import java.io.File;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080065import java.io.IOException;
Mike Cleronb87bd162009-10-30 16:36:56 -070066import java.net.URISyntaxException;
Adam Cohen228da5a2011-07-27 22:23:47 -070067import java.util.ArrayList;
Adam Cohen71483f42014-05-15 14:04:01 -070068import java.util.Collections;
Dan Sandlerd5024042014-01-09 15:01:33 -050069import java.util.HashSet;
Bjorn Bringertcd8fec02010-01-14 13:26:43 +000070import java.util.List;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080071
The Android Open Source Project31dd5032009-03-03 19:32:27 -080072public class LauncherProvider extends ContentProvider {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -080073 private static final String TAG = "Launcher.LauncherProvider";
74 private static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080075
Kenny Guyed131872014-04-30 03:02:21 +010076 private static final int DATABASE_VERSION = 20;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080077
Adam Cohene25af792013-06-06 23:08:25 -070078 static final String OLD_AUTHORITY = "com.android.launcher2.settings";
Chris Wrene523e702013-10-09 10:36:55 -040079 static final String AUTHORITY = ProviderConfig.AUTHORITY;
Winson Chung3d503fb2011-07-13 17:25:49 -070080
Dan Sandlerf0b8dac2013-11-19 12:21:25 -050081 // Should we attempt to load anything from the com.android.launcher2 provider?
Dan Sandlerd5024042014-01-09 15:01:33 -050082 static final boolean IMPORT_LAUNCHER2_DATABASE = false;
Dan Sandlerf0b8dac2013-11-19 12:21:25 -050083
The Android Open Source Project31dd5032009-03-03 19:32:27 -080084 static final String TABLE_FAVORITES = "favorites";
Adam Cohendcd297f2013-06-18 13:13:40 -070085 static final String TABLE_WORKSPACE_SCREENS = "workspaceScreens";
The Android Open Source Project31dd5032009-03-03 19:32:27 -080086 static final String PARAMETER_NOTIFY = "notify";
Winson Chungc763c4e2013-07-19 13:49:06 -070087 static final String UPGRADED_FROM_OLD_DATABASE =
88 "UPGRADED_FROM_OLD_DATABASE";
89 static final String EMPTY_DATABASE_CREATED =
90 "EMPTY_DATABASE_CREATED";
The Android Open Source Project31dd5032009-03-03 19:32:27 -080091
Winson Chungb3302ae2012-05-01 10:19:14 -070092 private static final String ACTION_APPWIDGET_DEFAULT_WORKSPACE_CONFIGURE =
Adam Cohene25af792013-06-06 23:08:25 -070093 "com.android.launcher.action.APPWIDGET_DEFAULT_WORKSPACE_CONFIGURE";
Winson Chungb3302ae2012-05-01 10:19:14 -070094
Adam Cohena043fa82014-07-23 14:49:38 -070095 private static final String URI_PARAM_IS_EXTERNAL_ADD = "isExternalAdd";
96
Anjali Koppal67e7cae2014-03-13 12:14:12 -070097 private LauncherProviderChangeListener mListener;
98
Jeffrey Sharkey2bbcae12009-03-31 14:37:57 -070099 /**
Romain Guy73b979d2009-06-09 12:57:21 -0700100 * {@link Uri} triggered at any registered {@link android.database.ContentObserver} when
Jeffrey Sharkey2bbcae12009-03-31 14:37:57 -0700101 * {@link AppWidgetHost#deleteHost()} is called during database creation.
102 * Use this to recall {@link AppWidgetHost#startListening()} if needed.
103 */
104 static final Uri CONTENT_APPWIDGET_RESET_URI =
105 Uri.parse("content://" + AUTHORITY + "/appWidgetReset");
Daniel Lehmannc3a80402012-04-23 21:35:11 -0700106
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700107 private DatabaseHelper mOpenHelper;
Winson Chungc763c4e2013-07-19 13:49:06 -0700108 private static boolean sJustLoadedFromOldDb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800109
110 @Override
111 public boolean onCreate() {
Daniel Sandlere4f98912013-06-25 15:13:26 -0400112 final Context context = getContext();
113 mOpenHelper = new DatabaseHelper(context);
114 LauncherAppState.setLauncherProvider(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800115 return true;
116 }
117
Winson Chung0b560dd2014-01-21 13:00:26 -0800118 public boolean wasNewDbCreated() {
119 return mOpenHelper.wasNewDbCreated();
120 }
121
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700122 public void setLauncherProviderChangeListener(LauncherProviderChangeListener listener) {
123 mListener = listener;
124 }
125
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800126 @Override
127 public String getType(Uri uri) {
128 SqlArguments args = new SqlArguments(uri, null, null);
129 if (TextUtils.isEmpty(args.where)) {
130 return "vnd.android.cursor.dir/" + args.table;
131 } else {
132 return "vnd.android.cursor.item/" + args.table;
133 }
134 }
135
136 @Override
137 public Cursor query(Uri uri, String[] projection, String selection,
138 String[] selectionArgs, String sortOrder) {
139
140 SqlArguments args = new SqlArguments(uri, selection, selectionArgs);
141 SQLiteQueryBuilder qb = new SQLiteQueryBuilder();
142 qb.setTables(args.table);
143
Romain Guy73b979d2009-06-09 12:57:21 -0700144 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800145 Cursor result = qb.query(db, projection, args.where, args.args, null, null, sortOrder);
146 result.setNotificationUri(getContext().getContentResolver(), uri);
147
148 return result;
149 }
150
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700151 private static long dbInsertAndCheck(DatabaseHelper helper,
152 SQLiteDatabase db, String table, String nullColumnHack, ContentValues values) {
Dan Sandlerd5024042014-01-09 15:01:33 -0500153 if (values == null) {
154 throw new RuntimeException("Error: attempting to insert null values");
155 }
Adam Cohen71483f42014-05-15 14:04:01 -0700156 if (!values.containsKey(LauncherSettings.ChangeLogColumns._ID)) {
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700157 throw new RuntimeException("Error: attempting to add item without specifying an id");
158 }
Chris Wren5dee7af2013-12-20 17:22:11 -0500159 helper.checkId(table, values);
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700160 return db.insert(table, nullColumnHack, values);
161 }
162
Adam Cohen228da5a2011-07-27 22:23:47 -0700163 private static void deleteId(SQLiteDatabase db, long id) {
164 Uri uri = LauncherSettings.Favorites.getContentUri(id, false);
165 SqlArguments args = new SqlArguments(uri, null, null);
166 db.delete(args.table, args.where, args.args);
167 }
168
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800169 @Override
170 public Uri insert(Uri uri, ContentValues initialValues) {
171 SqlArguments args = new SqlArguments(uri);
172
Adam Cohena043fa82014-07-23 14:49:38 -0700173 // In very limited cases, we support system|signature permission apps to add to the db
174 String externalAdd = uri.getQueryParameter(URI_PARAM_IS_EXTERNAL_ADD);
175 if (externalAdd != null && "true".equals(externalAdd)) {
176 if (!mOpenHelper.initializeExternalAdd(initialValues)) {
177 return null;
178 }
179 }
180
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800181 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
Chris Wren1ada10d2013-09-13 18:01:38 -0400182 addModifiedTime(initialValues);
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700183 final long rowId = dbInsertAndCheck(mOpenHelper, db, args.table, null, initialValues);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800184 if (rowId <= 0) return null;
185
186 uri = ContentUris.withAppendedId(uri, rowId);
187 sendNotify(uri);
188
189 return uri;
190 }
191
Adam Cohena043fa82014-07-23 14:49:38 -0700192
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800193 @Override
194 public int bulkInsert(Uri uri, ContentValues[] values) {
195 SqlArguments args = new SqlArguments(uri);
196
197 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
198 db.beginTransaction();
199 try {
200 int numValues = values.length;
201 for (int i = 0; i < numValues; i++) {
Chris Wren1ada10d2013-09-13 18:01:38 -0400202 addModifiedTime(values[i]);
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700203 if (dbInsertAndCheck(mOpenHelper, db, args.table, null, values[i]) < 0) {
204 return 0;
205 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800206 }
207 db.setTransactionSuccessful();
208 } finally {
209 db.endTransaction();
210 }
211
212 sendNotify(uri);
213 return values.length;
214 }
215
216 @Override
Yura085c8532014-02-11 15:15:29 +0000217 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations)
218 throws OperationApplicationException {
219 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
220 db.beginTransaction();
221 try {
222 ContentProviderResult[] result = super.applyBatch(operations);
223 db.setTransactionSuccessful();
224 return result;
225 } finally {
226 db.endTransaction();
227 }
228 }
229
230 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800231 public int delete(Uri uri, String selection, String[] selectionArgs) {
232 SqlArguments args = new SqlArguments(uri, selection, selectionArgs);
233
234 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
235 int count = db.delete(args.table, args.where, args.args);
236 if (count > 0) sendNotify(uri);
237
238 return count;
239 }
240
241 @Override
242 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
243 SqlArguments args = new SqlArguments(uri, selection, selectionArgs);
244
Chris Wren1ada10d2013-09-13 18:01:38 -0400245 addModifiedTime(values);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800246 SQLiteDatabase db = mOpenHelper.getWritableDatabase();
247 int count = db.update(args.table, values, args.where, args.args);
248 if (count > 0) sendNotify(uri);
249
250 return count;
251 }
252
253 private void sendNotify(Uri uri) {
254 String notify = uri.getQueryParameter(PARAMETER_NOTIFY);
255 if (notify == null || "true".equals(notify)) {
256 getContext().getContentResolver().notifyChange(uri, null);
257 }
Chris Wren1ada10d2013-09-13 18:01:38 -0400258
259 // always notify the backup agent
Chris Wren92aa4232013-10-04 11:29:36 -0400260 LauncherBackupAgentHelper.dataChanged(getContext());
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700261 if (mListener != null) {
262 mListener.onLauncherProviderChange();
263 }
Chris Wren1ada10d2013-09-13 18:01:38 -0400264 }
265
266 private void addModifiedTime(ContentValues values) {
267 values.put(LauncherSettings.ChangeLogColumns.MODIFIED, System.currentTimeMillis());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800268 }
269
Adam Cohendcd297f2013-06-18 13:13:40 -0700270 public long generateNewItemId() {
271 return mOpenHelper.generateNewItemId();
272 }
273
Winson Chungc763c4e2013-07-19 13:49:06 -0700274 public void updateMaxItemId(long id) {
275 mOpenHelper.updateMaxItemId(id);
276 }
277
Adam Cohendcd297f2013-06-18 13:13:40 -0700278 public long generateNewScreenId() {
279 return mOpenHelper.generateNewScreenId();
280 }
281
282 // This is only required one time while loading the workspace during the
283 // upgrade path, and should never be called from anywhere else.
284 public void updateMaxScreenId(long maxScreenId) {
285 mOpenHelper.updateMaxScreenId(maxScreenId);
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700286 }
287
Brian Muramatsu5524b492012-10-02 16:55:54 -0700288 /**
Adam Cohene25af792013-06-06 23:08:25 -0700289 * @param Should we load the old db for upgrade? first run only.
290 */
Winson Chungc763c4e2013-07-19 13:49:06 -0700291 synchronized public boolean justLoadedOldDb() {
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400292 String spKey = LauncherAppState.getSharedPreferencesKey();
Adam Cohene25af792013-06-06 23:08:25 -0700293 SharedPreferences sp = getContext().getSharedPreferences(spKey, Context.MODE_PRIVATE);
294
Winson Chungc763c4e2013-07-19 13:49:06 -0700295 boolean loadedOldDb = false || sJustLoadedFromOldDb;
Adam Cohendcd297f2013-06-18 13:13:40 -0700296
Winson Chungc763c4e2013-07-19 13:49:06 -0700297 sJustLoadedFromOldDb = false;
298 if (sp.getBoolean(UPGRADED_FROM_OLD_DATABASE, false)) {
Adam Cohene25af792013-06-06 23:08:25 -0700299
300 SharedPreferences.Editor editor = sp.edit();
Winson Chungc763c4e2013-07-19 13:49:06 -0700301 editor.remove(UPGRADED_FROM_OLD_DATABASE);
Adam Cohene25af792013-06-06 23:08:25 -0700302 editor.commit();
Winson Chungc763c4e2013-07-19 13:49:06 -0700303 loadedOldDb = true;
Adam Cohene25af792013-06-06 23:08:25 -0700304 }
Winson Chungc763c4e2013-07-19 13:49:06 -0700305 return loadedOldDb;
Adam Cohene25af792013-06-06 23:08:25 -0700306 }
307
308 /**
Sunny Goyal42de82f2014-09-26 22:09:29 -0700309 * Clears all the data for a fresh start.
310 */
311 synchronized public void createEmptyDB() {
312 mOpenHelper.createEmptyDB(mOpenHelper.getWritableDatabase());
313 }
314
315 /**
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700316 * Loads the default workspace based on the following priority scheme:
317 * 1) From a package provided by play store
318 * 2) From a partner configuration APK, already in the system image
319 * 3) The default configuration for the particular device
Brian Muramatsu5524b492012-10-02 16:55:54 -0700320 */
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700321 synchronized public void loadDefaultFavoritesIfNecessary() {
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400322 String spKey = LauncherAppState.getSharedPreferencesKey();
Michael Jurkab85f8a42012-04-25 15:48:32 -0700323 SharedPreferences sp = getContext().getSharedPreferences(spKey, Context.MODE_PRIVATE);
Adam Cohene25af792013-06-06 23:08:25 -0700324
Winson Chungc763c4e2013-07-19 13:49:06 -0700325 if (sp.getBoolean(EMPTY_DATABASE_CREATED, false)) {
Chris Wren5dee7af2013-12-20 17:22:11 -0500326 Log.d(TAG, "loading default workspace");
Michael Jurka45355c42012-10-08 13:21:35 +0200327
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700328 WorkspaceLoader loader = AutoInstallsLayout.get(getContext(),
329 mOpenHelper.mAppWidgetHost, mOpenHelper);
330
331 if (loader == null) {
Adam Cohen9b8f51f2014-05-30 15:34:09 -0700332 final Partner partner = Partner.get(getContext().getPackageManager());
333 if (partner != null && partner.hasDefaultLayout()) {
334 final Resources partnerRes = partner.getResources();
Adam Cohen4ae96ce2014-08-29 15:05:48 -0700335 int workspaceResId = partnerRes.getIdentifier(Partner.RES_DEFAULT_LAYOUT,
Adam Cohen9b8f51f2014-05-30 15:34:09 -0700336 "xml", partner.getPackageName());
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700337 if (workspaceResId != 0) {
338 loader = new SimpleWorkspaceLoader(mOpenHelper, partnerRes, workspaceResId);
339 }
Adam Cohen9b8f51f2014-05-30 15:34:09 -0700340 }
341 }
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700342
343 if (loader == null) {
344 loader = new SimpleWorkspaceLoader(mOpenHelper, getContext().getResources(),
345 getDefaultWorkspaceResourceId());
Brian Muramatsu5524b492012-10-02 16:55:54 -0700346 }
347
Michael Jurkab85f8a42012-04-25 15:48:32 -0700348 // Populate favorites table with initial favorites
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700349 SharedPreferences.Editor editor = sp.edit().remove(EMPTY_DATABASE_CREATED);
350 mOpenHelper.loadFavorites(mOpenHelper.getWritableDatabase(), loader);
Michael Jurkab85f8a42012-04-25 15:48:32 -0700351 editor.commit();
352 }
353 }
354
Dan Sandlerd5024042014-01-09 15:01:33 -0500355 public void migrateLauncher2Shortcuts() {
356 mOpenHelper.migrateLauncher2Shortcuts(mOpenHelper.getWritableDatabase(),
Jason Monk0bfcceb2014-03-21 15:42:06 -0400357 Uri.parse(getContext().getString(R.string.old_launcher_provider_uri)));
Dan Sandlerd5024042014-01-09 15:01:33 -0500358 }
359
Nilesh Agrawalda41ea62013-12-09 14:17:49 -0800360 private static int getDefaultWorkspaceResourceId() {
Winson Chungbe876472014-05-14 14:15:20 -0700361 LauncherAppState app = LauncherAppState.getInstance();
362 DeviceProfile grid = app.getDynamicGrid().getDeviceProfile();
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -0800363 if (LauncherAppState.isDisableAllApps()) {
Winson Chungbe876472014-05-14 14:15:20 -0700364 return grid.defaultNoAllAppsLayoutId;
Nilesh Agrawalda41ea62013-12-09 14:17:49 -0800365 } else {
Winson Chungbe876472014-05-14 14:15:20 -0700366 return grid.defaultLayoutId;
Nilesh Agrawalda41ea62013-12-09 14:17:49 -0800367 }
368 }
369
Winson Chungc763c4e2013-07-19 13:49:06 -0700370 private static interface ContentValuesCallback {
371 public void onRow(ContentValues values);
372 }
373
Adam Cohen6dbe0492013-12-02 17:00:14 -0800374 private static boolean shouldImportLauncher2Database(Context context) {
375 boolean isTablet = context.getResources().getBoolean(R.bool.is_tablet);
376
377 // We don't import the old databse for tablets, as the grid size has changed.
378 return !isTablet && IMPORT_LAUNCHER2_DATABASE;
379 }
380
Dan Sandlerd5024042014-01-09 15:01:33 -0500381 public void deleteDatabase() {
382 // Are you sure? (y/n)
383 final SQLiteDatabase db = mOpenHelper.getWritableDatabase();
Dan Sandler2b471742014-01-21 14:14:41 -0500384 final File dbFile = new File(db.getPath());
Dan Sandlerd5024042014-01-09 15:01:33 -0500385 mOpenHelper.close();
Dan Sandler2b471742014-01-21 14:14:41 -0500386 if (dbFile.exists()) {
387 SQLiteDatabase.deleteDatabase(dbFile);
388 }
Dan Sandlerd5024042014-01-09 15:01:33 -0500389 mOpenHelper = new DatabaseHelper(getContext());
390 }
391
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700392 private static class DatabaseHelper extends SQLiteOpenHelper implements LayoutParserCallback {
Jason Monk41314972014-03-03 16:11:30 -0500393 private static final String TAG_RESOLVE = "resolve";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800394 private static final String TAG_FAVORITES = "favorites";
395 private static final String TAG_FAVORITE = "favorite";
Mike Cleronb87bd162009-10-30 16:36:56 -0700396 private static final String TAG_APPWIDGET = "appwidget";
397 private static final String TAG_SHORTCUT = "shortcut";
Adam Cohen228da5a2011-07-27 22:23:47 -0700398 private static final String TAG_FOLDER = "folder";
Jeff Sharkey5aeef582014-04-14 13:26:42 -0700399 private static final String TAG_PARTNER_FOLDER = "partner-folder";
Winson Chungb3302ae2012-05-01 10:19:14 -0700400 private static final String TAG_EXTRA = "extra";
Daniel Sandler57dac262013-10-03 13:28:36 -0400401 private static final String TAG_INCLUDE = "include";
Winson Chung3d503fb2011-07-13 17:25:49 -0700402
Adam Cohen9b8f51f2014-05-30 15:34:09 -0700403 // Style attrs -- "Favorite"
Jeff Sharkey5aeef582014-04-14 13:26:42 -0700404 private static final String ATTR_CLASS_NAME = "className";
Adam Cohen9b8f51f2014-05-30 15:34:09 -0700405 private static final String ATTR_PACKAGE_NAME = "packageName";
406 private static final String ATTR_CONTAINER = "container";
407 private static final String ATTR_SCREEN = "screen";
408 private static final String ATTR_X = "x";
409 private static final String ATTR_Y = "y";
410 private static final String ATTR_SPAN_X = "spanX";
411 private static final String ATTR_SPAN_Y = "spanY";
412 private static final String ATTR_ICON = "icon";
413 private static final String ATTR_TITLE = "title";
414 private static final String ATTR_URI = "uri";
415
416 // Style attrs -- "Include"
417 private static final String ATTR_WORKSPACE = "workspace";
418
419 // Style attrs -- "Extra"
420 private static final String ATTR_KEY = "key";
421 private static final String ATTR_VALUE = "value";
Jeff Sharkey5aeef582014-04-14 13:26:42 -0700422
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800423 private final Context mContext;
Jeff Sharkey5aeef582014-04-14 13:26:42 -0700424 private final PackageManager mPackageManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700425 private final AppWidgetHost mAppWidgetHost;
Adam Cohendcd297f2013-06-18 13:13:40 -0700426 private long mMaxItemId = -1;
427 private long mMaxScreenId = -1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800428
Winson Chung0b560dd2014-01-21 13:00:26 -0800429 private boolean mNewDbCreated = false;
430
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800431 DatabaseHelper(Context context) {
Helena Josol4fbbb3e2014-10-06 16:06:46 +0100432 super(context, LauncherFiles.LAUNCHER_DB, null, DATABASE_VERSION);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800433 mContext = context;
Jeff Sharkey5aeef582014-04-14 13:26:42 -0700434 mPackageManager = context.getPackageManager();
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700435 mAppWidgetHost = new AppWidgetHost(context, Launcher.APPWIDGET_HOST_ID);
Winson Chung3d503fb2011-07-13 17:25:49 -0700436
437 // In the case where neither onCreate nor onUpgrade gets called, we read the maxId from
438 // the DB here
Adam Cohendcd297f2013-06-18 13:13:40 -0700439 if (mMaxItemId == -1) {
440 mMaxItemId = initializeMaxItemId(getWritableDatabase());
441 }
442 if (mMaxScreenId == -1) {
443 mMaxScreenId = initializeMaxScreenId(getWritableDatabase());
Winson Chung3d503fb2011-07-13 17:25:49 -0700444 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800445 }
446
Winson Chung0b560dd2014-01-21 13:00:26 -0800447 public boolean wasNewDbCreated() {
448 return mNewDbCreated;
449 }
450
Jeffrey Sharkey2bbcae12009-03-31 14:37:57 -0700451 /**
452 * Send notification that we've deleted the {@link AppWidgetHost},
453 * probably as part of the initial database creation. The receiver may
454 * want to re-call {@link AppWidgetHost#startListening()} to ensure
455 * callbacks are correctly set.
456 */
457 private void sendAppWidgetResetNotify() {
458 final ContentResolver resolver = mContext.getContentResolver();
459 resolver.notifyChange(CONTENT_APPWIDGET_RESET_URI, null);
460 }
461
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800462 @Override
463 public void onCreate(SQLiteDatabase db) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800464 if (LOGD) Log.d(TAG, "creating new launcher database");
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700465
Adam Cohendcd297f2013-06-18 13:13:40 -0700466 mMaxItemId = 1;
467 mMaxScreenId = 0;
Winson Chung0b560dd2014-01-21 13:00:26 -0800468 mNewDbCreated = true;
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700469
Kenny Guyed131872014-04-30 03:02:21 +0100470 UserManagerCompat userManager = UserManagerCompat.getInstance(mContext);
471 long userSerialNumber = userManager.getSerialNumberForUser(
472 UserHandleCompat.myUserHandle());
473
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800474 db.execSQL("CREATE TABLE favorites (" +
475 "_id INTEGER PRIMARY KEY," +
476 "title TEXT," +
477 "intent TEXT," +
478 "container INTEGER," +
479 "screen INTEGER," +
480 "cellX INTEGER," +
481 "cellY INTEGER," +
482 "spanX INTEGER," +
483 "spanY INTEGER," +
484 "itemType INTEGER," +
The Android Open Source Projectca9475f2009-03-13 13:04:24 -0700485 "appWidgetId INTEGER NOT NULL DEFAULT -1," +
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800486 "isShortcut INTEGER," +
487 "iconType INTEGER," +
488 "iconPackage TEXT," +
489 "iconResource TEXT," +
490 "icon BLOB," +
491 "uri TEXT," +
Chris Wrend5e66bf2013-09-16 14:02:29 -0400492 "displayMode INTEGER," +
Chris Wren1ada10d2013-09-13 18:01:38 -0400493 "appWidgetProvider TEXT," +
Chris Wrenf4d08112014-01-16 18:13:56 -0500494 "modified INTEGER NOT NULL DEFAULT 0," +
Kenny Guyed131872014-04-30 03:02:21 +0100495 "restored INTEGER NOT NULL DEFAULT 0," +
496 "profileId INTEGER DEFAULT " + userSerialNumber +
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800497 ");");
Adam Cohendcd297f2013-06-18 13:13:40 -0700498 addWorkspacesTable(db);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800499
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700500 // Database was just created, so wipe any previous widgets
501 if (mAppWidgetHost != null) {
502 mAppWidgetHost.deleteHost();
Jeffrey Sharkey2bbcae12009-03-31 14:37:57 -0700503 sendAppWidgetResetNotify();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800504 }
Winson Chung3d503fb2011-07-13 17:25:49 -0700505
Adam Cohen6dbe0492013-12-02 17:00:14 -0800506 if (shouldImportLauncher2Database(mContext)) {
Dan Sandlerf0b8dac2013-11-19 12:21:25 -0500507 // Try converting the old database
508 ContentValuesCallback permuteScreensCb = new ContentValuesCallback() {
509 public void onRow(ContentValues values) {
510 int container = values.getAsInteger(LauncherSettings.Favorites.CONTAINER);
511 if (container == Favorites.CONTAINER_DESKTOP) {
512 int screen = values.getAsInteger(LauncherSettings.Favorites.SCREEN);
513 screen = (int) upgradeLauncherDb_permuteScreens(screen);
514 values.put(LauncherSettings.Favorites.SCREEN, screen);
515 }
516 }
517 };
518 Uri uri = Uri.parse("content://" + Settings.AUTHORITY +
519 "/old_favorites?notify=true");
520 if (!convertDatabase(db, uri, permuteScreensCb, true)) {
521 // Try and upgrade from the Launcher2 db
Jason Monk0bfcceb2014-03-21 15:42:06 -0400522 uri = Uri.parse(mContext.getString(R.string.old_launcher_provider_uri));
Dan Sandlerf0b8dac2013-11-19 12:21:25 -0500523 if (!convertDatabase(db, uri, permuteScreensCb, false)) {
524 // If we fail, then set a flag to load the default workspace
525 setFlagEmptyDbCreated();
526 return;
Winson Chungc763c4e2013-07-19 13:49:06 -0700527 }
528 }
Dan Sandlerf0b8dac2013-11-19 12:21:25 -0500529 // Right now, in non-default workspace cases, we want to run the final
530 // upgrade code (ie. to fix workspace screen indices -> ids, etc.), so
531 // set that flag too.
532 setFlagJustLoadedOldDb();
533 } else {
534 // Fresh and clean launcher DB.
535 mMaxItemId = initializeMaxItemId(db);
536 setFlagEmptyDbCreated();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800537 }
538 }
539
Adam Cohendcd297f2013-06-18 13:13:40 -0700540 private void addWorkspacesTable(SQLiteDatabase db) {
541 db.execSQL("CREATE TABLE " + TABLE_WORKSPACE_SCREENS + " (" +
542 LauncherSettings.WorkspaceScreens._ID + " INTEGER," +
Chris Wren1ada10d2013-09-13 18:01:38 -0400543 LauncherSettings.WorkspaceScreens.SCREEN_RANK + " INTEGER," +
544 LauncherSettings.ChangeLogColumns.MODIFIED + " INTEGER NOT NULL DEFAULT 0" +
Adam Cohendcd297f2013-06-18 13:13:40 -0700545 ");");
546 }
547
Adam Cohen119285e2014-04-02 16:59:08 -0700548 private void removeOrphanedItems(SQLiteDatabase db) {
Adam Cohenf9c14de2014-04-17 18:20:45 -0700549 // Delete items directly on the workspace who's screen id doesn't exist
550 // "DELETE FROM favorites WHERE screen NOT IN (SELECT _id FROM workspaceScreens)
551 // AND container = -100"
552 String removeOrphanedDesktopItems = "DELETE FROM " + TABLE_FAVORITES +
553 " WHERE " +
Adam Cohen119285e2014-04-02 16:59:08 -0700554 LauncherSettings.Favorites.SCREEN + " NOT IN (SELECT " +
Adam Cohenf9c14de2014-04-17 18:20:45 -0700555 LauncherSettings.WorkspaceScreens._ID + " FROM " + TABLE_WORKSPACE_SCREENS + ")" +
556 " AND " +
557 LauncherSettings.Favorites.CONTAINER + " = " +
558 LauncherSettings.Favorites.CONTAINER_DESKTOP;
559 db.execSQL(removeOrphanedDesktopItems);
560
561 // Delete items contained in folders which no longer exist (after above statement)
562 // "DELETE FROM favorites WHERE container <> -100 AND container <> -101 AND container
563 // NOT IN (SELECT _id FROM favorites WHERE itemType = 2)"
564 String removeOrphanedFolderItems = "DELETE FROM " + TABLE_FAVORITES +
565 " WHERE " +
566 LauncherSettings.Favorites.CONTAINER + " <> " +
567 LauncherSettings.Favorites.CONTAINER_DESKTOP +
568 " AND "
569 + LauncherSettings.Favorites.CONTAINER + " <> " +
570 LauncherSettings.Favorites.CONTAINER_HOTSEAT +
571 " AND "
572 + LauncherSettings.Favorites.CONTAINER + " NOT IN (SELECT " +
573 LauncherSettings.Favorites._ID + " FROM " + TABLE_FAVORITES +
574 " WHERE " + LauncherSettings.Favorites.ITEM_TYPE + " = " +
575 LauncherSettings.Favorites.ITEM_TYPE_FOLDER + ")";
576 db.execSQL(removeOrphanedFolderItems);
Adam Cohen119285e2014-04-02 16:59:08 -0700577 }
578
Winson Chungc763c4e2013-07-19 13:49:06 -0700579 private void setFlagJustLoadedOldDb() {
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400580 String spKey = LauncherAppState.getSharedPreferencesKey();
Michael Jurkab85f8a42012-04-25 15:48:32 -0700581 SharedPreferences sp = mContext.getSharedPreferences(spKey, Context.MODE_PRIVATE);
582 SharedPreferences.Editor editor = sp.edit();
Winson Chungc763c4e2013-07-19 13:49:06 -0700583 editor.putBoolean(UPGRADED_FROM_OLD_DATABASE, true);
584 editor.putBoolean(EMPTY_DATABASE_CREATED, false);
Michael Jurkab85f8a42012-04-25 15:48:32 -0700585 editor.commit();
586 }
587
Winson Chungc763c4e2013-07-19 13:49:06 -0700588 private void setFlagEmptyDbCreated() {
589 String spKey = LauncherAppState.getSharedPreferencesKey();
590 SharedPreferences sp = mContext.getSharedPreferences(spKey, Context.MODE_PRIVATE);
591 SharedPreferences.Editor editor = sp.edit();
592 editor.putBoolean(EMPTY_DATABASE_CREATED, true);
593 editor.putBoolean(UPGRADED_FROM_OLD_DATABASE, false);
594 editor.commit();
595 }
596
597 // We rearrange the screens from the old launcher
598 // 12345 -> 34512
599 private long upgradeLauncherDb_permuteScreens(long screen) {
600 if (screen >= 2) {
601 return screen - 2;
602 } else {
603 return screen + 3;
604 }
605 }
606
607 private boolean convertDatabase(SQLiteDatabase db, Uri uri,
608 ContentValuesCallback cb, boolean deleteRows) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800609 if (LOGD) Log.d(TAG, "converting database from an older format, but not onUpgrade");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800610 boolean converted = false;
611
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800612 final ContentResolver resolver = mContext.getContentResolver();
613 Cursor cursor = null;
614
615 try {
616 cursor = resolver.query(uri, null, null, null, null);
617 } catch (Exception e) {
Michael Jurkaa8c760d2011-04-28 14:59:33 -0700618 // Ignore
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800619 }
620
621 // We already have a favorites database in the old provider
Winson Chungc763c4e2013-07-19 13:49:06 -0700622 if (cursor != null) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800623 try {
Winson Chungc763c4e2013-07-19 13:49:06 -0700624 if (cursor.getCount() > 0) {
625 converted = copyFromCursor(db, cursor, cb) > 0;
626 if (converted && deleteRows) {
627 resolver.delete(uri, null, null);
628 }
629 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800630 } finally {
631 cursor.close();
632 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800633 }
Daniel Lehmannc3a80402012-04-23 21:35:11 -0700634
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800635 if (converted) {
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700636 // Convert widgets from this import into widgets
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800637 if (LOGD) Log.d(TAG, "converted and now triggering widget upgrade");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800638 convertWidgets(db);
Winson Chungc763c4e2013-07-19 13:49:06 -0700639
640 // Update max item id
641 mMaxItemId = initializeMaxItemId(db);
642 if (LOGD) Log.d(TAG, "mMaxItemId: " + mMaxItemId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800643 }
644
645 return converted;
646 }
647
Winson Chungc763c4e2013-07-19 13:49:06 -0700648 private int copyFromCursor(SQLiteDatabase db, Cursor c, ContentValuesCallback cb) {
Romain Guy73b979d2009-06-09 12:57:21 -0700649 final int idIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites._ID);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800650 final int intentIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.INTENT);
651 final int titleIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.TITLE);
652 final int iconTypeIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON_TYPE);
653 final int iconIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON);
654 final int iconPackageIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON_PACKAGE);
655 final int iconResourceIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON_RESOURCE);
656 final int containerIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CONTAINER);
657 final int itemTypeIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ITEM_TYPE);
658 final int screenIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.SCREEN);
659 final int cellXIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CELLX);
660 final int cellYIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CELLY);
661 final int uriIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.URI);
662 final int displayModeIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.DISPLAY_MODE);
663
664 ContentValues[] rows = new ContentValues[c.getCount()];
665 int i = 0;
666 while (c.moveToNext()) {
667 ContentValues values = new ContentValues(c.getColumnCount());
Romain Guy73b979d2009-06-09 12:57:21 -0700668 values.put(LauncherSettings.Favorites._ID, c.getLong(idIndex));
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800669 values.put(LauncherSettings.Favorites.INTENT, c.getString(intentIndex));
670 values.put(LauncherSettings.Favorites.TITLE, c.getString(titleIndex));
671 values.put(LauncherSettings.Favorites.ICON_TYPE, c.getInt(iconTypeIndex));
672 values.put(LauncherSettings.Favorites.ICON, c.getBlob(iconIndex));
673 values.put(LauncherSettings.Favorites.ICON_PACKAGE, c.getString(iconPackageIndex));
674 values.put(LauncherSettings.Favorites.ICON_RESOURCE, c.getString(iconResourceIndex));
675 values.put(LauncherSettings.Favorites.CONTAINER, c.getInt(containerIndex));
676 values.put(LauncherSettings.Favorites.ITEM_TYPE, c.getInt(itemTypeIndex));
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700677 values.put(LauncherSettings.Favorites.APPWIDGET_ID, -1);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800678 values.put(LauncherSettings.Favorites.SCREEN, c.getInt(screenIndex));
679 values.put(LauncherSettings.Favorites.CELLX, c.getInt(cellXIndex));
680 values.put(LauncherSettings.Favorites.CELLY, c.getInt(cellYIndex));
681 values.put(LauncherSettings.Favorites.URI, c.getString(uriIndex));
682 values.put(LauncherSettings.Favorites.DISPLAY_MODE, c.getInt(displayModeIndex));
Winson Chungc763c4e2013-07-19 13:49:06 -0700683 if (cb != null) {
684 cb.onRow(values);
685 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800686 rows[i++] = values;
687 }
688
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800689 int total = 0;
Winson Chungc763c4e2013-07-19 13:49:06 -0700690 if (i > 0) {
691 db.beginTransaction();
692 try {
693 int numValues = rows.length;
694 for (i = 0; i < numValues; i++) {
695 if (dbInsertAndCheck(this, db, TABLE_FAVORITES, null, rows[i]) < 0) {
696 return 0;
697 } else {
698 total++;
699 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800700 }
Winson Chungc763c4e2013-07-19 13:49:06 -0700701 db.setTransactionSuccessful();
702 } finally {
703 db.endTransaction();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800704 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800705 }
706
707 return total;
708 }
709
710 @Override
711 public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
Winson Chungc763c4e2013-07-19 13:49:06 -0700712 if (LOGD) Log.d(TAG, "onUpgrade triggered: " + oldVersion);
Daniel Lehmannc3a80402012-04-23 21:35:11 -0700713
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800714 int version = oldVersion;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -0700715 if (version < 3) {
716 // upgrade 1,2 -> 3 added appWidgetId column
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800717 db.beginTransaction();
718 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700719 // Insert new column for holding appWidgetIds
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800720 db.execSQL("ALTER TABLE favorites " +
The Android Open Source Projectca9475f2009-03-13 13:04:24 -0700721 "ADD COLUMN appWidgetId INTEGER NOT NULL DEFAULT -1;");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800722 db.setTransactionSuccessful();
The Android Open Source Projectca9475f2009-03-13 13:04:24 -0700723 version = 3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800724 } catch (SQLException ex) {
725 // Old version remains, which means we wipe old data
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800726 Log.e(TAG, ex.getMessage(), ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800727 } finally {
728 db.endTransaction();
729 }
Daniel Lehmannc3a80402012-04-23 21:35:11 -0700730
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800731 // Convert existing widgets only if table upgrade was successful
The Android Open Source Projectca9475f2009-03-13 13:04:24 -0700732 if (version == 3) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800733 convertWidgets(db);
734 }
735 }
Romain Guy73b979d2009-06-09 12:57:21 -0700736
737 if (version < 4) {
Romain Guy7eb9e5e2009-12-02 20:10:07 -0800738 version = 4;
Romain Guy73b979d2009-06-09 12:57:21 -0700739 }
Daniel Lehmannc3a80402012-04-23 21:35:11 -0700740
Romain Guy509cd6a2010-03-23 15:10:56 -0700741 // Where's version 5?
742 // - Donut and sholes on 2.0 shipped with version 4 of launcher1.
Daniel Sandler325dc232013-06-05 22:57:57 -0400743 // - Passion shipped on 2.1 with version 6 of launcher3
Romain Guy509cd6a2010-03-23 15:10:56 -0700744 // - Sholes shipped on 2.1r1 (aka Mr. 3) with version 5 of launcher 1
745 // but version 5 on there was the updateContactsShortcuts change
746 // which was version 6 in launcher 2 (first shipped on passion 2.1r1).
747 // The updateContactsShortcuts change is idempotent, so running it twice
748 // is okay so we'll do that when upgrading the devices that shipped with it.
749 if (version < 6) {
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800750 // We went from 3 to 5 screens. Move everything 1 to the right
751 db.beginTransaction();
752 try {
753 db.execSQL("UPDATE favorites SET screen=(screen + 1);");
754 db.setTransactionSuccessful();
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800755 } catch (SQLException ex) {
756 // Old version remains, which means we wipe old data
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800757 Log.e(TAG, ex.getMessage(), ex);
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800758 } finally {
759 db.endTransaction();
760 }
Daniel Lehmannc3a80402012-04-23 21:35:11 -0700761
Romain Guy509cd6a2010-03-23 15:10:56 -0700762 // We added the fast track.
Romain Guy7eb9e5e2009-12-02 20:10:07 -0800763 if (updateContactsShortcuts(db)) {
764 version = 6;
765 }
766 }
Bjorn Bringert7984c942009-12-09 15:38:25 +0000767
768 if (version < 7) {
769 // Version 7 gets rid of the special search widget.
770 convertWidgets(db);
771 version = 7;
772 }
773
Joe Onorato0589f0f2010-02-08 13:44:00 -0800774 if (version < 8) {
775 // Version 8 (froyo) has the icons all normalized. This should
776 // already be the case in practice, but we now rely on it and don't
777 // resample the images each time.
778 normalizeIcons(db);
779 version = 8;
780 }
781
Winson Chung3d503fb2011-07-13 17:25:49 -0700782 if (version < 9) {
783 // The max id is not yet set at this point (onUpgrade is triggered in the ctor
784 // before it gets a change to get set, so we need to read it here when we use it)
Adam Cohendcd297f2013-06-18 13:13:40 -0700785 if (mMaxItemId == -1) {
786 mMaxItemId = initializeMaxItemId(db);
Winson Chung3d503fb2011-07-13 17:25:49 -0700787 }
788
789 // Add default hotseat icons
Sunny Goyal0fe505b2014-08-06 09:55:36 -0700790 loadFavorites(db, new SimpleWorkspaceLoader(this, mContext.getResources(),
791 R.xml.update_workspace));
Winson Chung3d503fb2011-07-13 17:25:49 -0700792 version = 9;
793 }
794
Daniel Lehmannd02402c2012-05-14 18:30:53 -0700795 // We bumped the version three time during JB, once to update the launch flags, once to
796 // update the override for the default launch animation and once to set the mimetype
797 // to improve startup performance
798 if (version < 12) {
Daniel Lehmannc3a80402012-04-23 21:35:11 -0700799 // Contact shortcuts need a different set of flags to be launched now
800 // The updateContactsShortcuts change is idempotent, so we can keep using it like
801 // back in the Donut days
802 updateContactsShortcuts(db);
Daniel Lehmannd02402c2012-05-14 18:30:53 -0700803 version = 12;
Daniel Lehmannc3a80402012-04-23 21:35:11 -0700804 }
805
Adam Cohendcd297f2013-06-18 13:13:40 -0700806 if (version < 13) {
807 // With the new shrink-wrapped and re-orderable workspaces, it makes sense
808 // to persist workspace screens and their relative order.
809 mMaxScreenId = 0;
810
811 // This will never happen in the wild, but when we switch to using workspace
812 // screen ids, redo the import from old launcher.
Winson Chungc763c4e2013-07-19 13:49:06 -0700813 sJustLoadedFromOldDb = true;
Adam Cohendcd297f2013-06-18 13:13:40 -0700814
815 addWorkspacesTable(db);
816 version = 13;
817 }
818
Chris Wrend5e66bf2013-09-16 14:02:29 -0400819 if (version < 14) {
820 db.beginTransaction();
821 try {
822 // Insert new column for holding widget provider name
823 db.execSQL("ALTER TABLE favorites " +
824 "ADD COLUMN appWidgetProvider TEXT;");
825 db.setTransactionSuccessful();
826 version = 14;
827 } catch (SQLException ex) {
828 // Old version remains, which means we wipe old data
829 Log.e(TAG, ex.getMessage(), ex);
830 } finally {
831 db.endTransaction();
832 }
833 }
834
Chris Wren1ada10d2013-09-13 18:01:38 -0400835 if (version < 15) {
836 db.beginTransaction();
837 try {
838 // Insert new column for holding update timestamp
839 db.execSQL("ALTER TABLE favorites " +
840 "ADD COLUMN modified INTEGER NOT NULL DEFAULT 0;");
841 db.execSQL("ALTER TABLE workspaceScreens " +
842 "ADD COLUMN modified INTEGER NOT NULL DEFAULT 0;");
843 db.setTransactionSuccessful();
844 version = 15;
845 } catch (SQLException ex) {
846 // Old version remains, which means we wipe old data
847 Log.e(TAG, ex.getMessage(), ex);
848 } finally {
849 db.endTransaction();
850 }
851 }
852
Chris Wrenf4d08112014-01-16 18:13:56 -0500853
854 if (version < 16) {
855 db.beginTransaction();
856 try {
857 // Insert new column for holding restore status
858 db.execSQL("ALTER TABLE favorites " +
859 "ADD COLUMN restored INTEGER NOT NULL DEFAULT 0;");
860 db.setTransactionSuccessful();
861 version = 16;
862 } catch (SQLException ex) {
863 // Old version remains, which means we wipe old data
864 Log.e(TAG, ex.getMessage(), ex);
865 } finally {
866 db.endTransaction();
867 }
868 }
869
Adam Cohen71e03b92014-02-21 14:09:53 -0800870 if (version < 17) {
871 // We use the db version upgrade here to identify users who may not have seen
872 // clings yet (because they weren't available), but for whom the clings are now
873 // available (tablet users). Because one of the possible cling flows (migration)
874 // is very destructive (wipes out workspaces), we want to prevent this from showing
875 // until clear data. We do so by marking that the clings have been shown.
876 LauncherClings.synchonouslyMarkFirstRunClingDismissed(mContext);
877 version = 17;
878 }
879
Adam Cohen119285e2014-04-02 16:59:08 -0700880 if (version < 18) {
Adam Cohenf9c14de2014-04-17 18:20:45 -0700881 // No-op
882 version = 18;
883 }
884
885 if (version < 19) {
Adam Cohen119285e2014-04-02 16:59:08 -0700886 // Due to a data loss bug, some users may have items associated with screen ids
887 // which no longer exist. Since this can cause other problems, and since the user
888 // will never see these items anyway, we use database upgrade as an opportunity to
889 // clean things up.
Adam Cohenf9c14de2014-04-17 18:20:45 -0700890 removeOrphanedItems(db);
891 version = 19;
Adam Cohen119285e2014-04-02 16:59:08 -0700892 }
893
Kenny Guyed131872014-04-30 03:02:21 +0100894 if (version < 20) {
895 // Add userId column
896 if (addProfileColumn(db)) {
897 version = 20;
898 }
899 // else old version remains, which means we wipe old data
900 }
901
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800902 if (version != DATABASE_VERSION) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800903 Log.w(TAG, "Destroying all old data.");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800904 db.execSQL("DROP TABLE IF EXISTS " + TABLE_FAVORITES);
Adam Cohendcd297f2013-06-18 13:13:40 -0700905 db.execSQL("DROP TABLE IF EXISTS " + TABLE_WORKSPACE_SCREENS);
906
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800907 onCreate(db);
908 }
909 }
Romain Guy7eb9e5e2009-12-02 20:10:07 -0800910
Adam Cohen9b1d0622014-05-21 19:01:57 -0700911 @Override
912 public void onDowngrade(SQLiteDatabase db, int oldVersion, int newVersion) {
913 // This shouldn't happen -- throw our hands up in the air and start over.
914 Log.w(TAG, "Database version downgrade from: " + oldVersion + " to " + newVersion +
915 ". Wiping databse.");
Sunny Goyal42de82f2014-09-26 22:09:29 -0700916 createEmptyDB(db);
917 }
Adam Cohen9b1d0622014-05-21 19:01:57 -0700918
Sunny Goyal42de82f2014-09-26 22:09:29 -0700919
920 /**
921 * Clears all the data for a fresh start.
922 */
923 public void createEmptyDB(SQLiteDatabase db) {
Adam Cohen9b1d0622014-05-21 19:01:57 -0700924 db.execSQL("DROP TABLE IF EXISTS " + TABLE_FAVORITES);
925 db.execSQL("DROP TABLE IF EXISTS " + TABLE_WORKSPACE_SCREENS);
926 onCreate(db);
927 }
928
Kenny Guyed131872014-04-30 03:02:21 +0100929 private boolean addProfileColumn(SQLiteDatabase db) {
930 db.beginTransaction();
931 try {
932 UserManagerCompat userManager = UserManagerCompat.getInstance(mContext);
933 // Default to the serial number of this user, for older
934 // shortcuts.
935 long userSerialNumber = userManager.getSerialNumberForUser(
936 UserHandleCompat.myUserHandle());
937 // Insert new column for holding user serial number
938 db.execSQL("ALTER TABLE favorites " +
939 "ADD COLUMN profileId INTEGER DEFAULT "
940 + userSerialNumber + ";");
941 db.setTransactionSuccessful();
942 } catch (SQLException ex) {
943 // Old version remains, which means we wipe old data
944 Log.e(TAG, ex.getMessage(), ex);
945 return false;
946 } finally {
947 db.endTransaction();
948 }
949 return true;
950 }
951
Romain Guy7eb9e5e2009-12-02 20:10:07 -0800952 private boolean updateContactsShortcuts(SQLiteDatabase db) {
Romain Guy7eb9e5e2009-12-02 20:10:07 -0800953 final String selectWhere = buildOrWhereString(Favorites.ITEM_TYPE,
954 new int[] { Favorites.ITEM_TYPE_SHORTCUT });
955
Daniel Lehmannc3a80402012-04-23 21:35:11 -0700956 Cursor c = null;
957 final String actionQuickContact = "com.android.contacts.action.QUICK_CONTACT";
Romain Guy7eb9e5e2009-12-02 20:10:07 -0800958 db.beginTransaction();
959 try {
960 // Select and iterate through each matching widget
Daniel Lehmannc3a80402012-04-23 21:35:11 -0700961 c = db.query(TABLE_FAVORITES,
962 new String[] { Favorites._ID, Favorites.INTENT },
Romain Guy7eb9e5e2009-12-02 20:10:07 -0800963 selectWhere, null, null, null, null);
Daniel Lehmannc3a80402012-04-23 21:35:11 -0700964 if (c == null) return false;
965
Romain Guy7eb9e5e2009-12-02 20:10:07 -0800966 if (LOGD) Log.d(TAG, "found upgrade cursor count=" + c.getCount());
Daniel Lehmannc3a80402012-04-23 21:35:11 -0700967
Romain Guy7eb9e5e2009-12-02 20:10:07 -0800968 final int idIndex = c.getColumnIndex(Favorites._ID);
969 final int intentIndex = c.getColumnIndex(Favorites.INTENT);
Daniel Lehmannc3a80402012-04-23 21:35:11 -0700970
971 while (c.moveToNext()) {
Romain Guy7eb9e5e2009-12-02 20:10:07 -0800972 long favoriteId = c.getLong(idIndex);
973 final String intentUri = c.getString(intentIndex);
974 if (intentUri != null) {
975 try {
Daniel Lehmannc3a80402012-04-23 21:35:11 -0700976 final Intent intent = Intent.parseUri(intentUri, 0);
Romain Guy7eb9e5e2009-12-02 20:10:07 -0800977 android.util.Log.d("Home", intent.toString());
978 final Uri uri = intent.getData();
Daniel Lehmannc3a80402012-04-23 21:35:11 -0700979 if (uri != null) {
980 final String data = uri.toString();
981 if ((Intent.ACTION_VIEW.equals(intent.getAction()) ||
982 actionQuickContact.equals(intent.getAction())) &&
983 (data.startsWith("content://contacts/people/") ||
984 data.startsWith("content://com.android.contacts/" +
985 "contacts/lookup/"))) {
Romain Guy7eb9e5e2009-12-02 20:10:07 -0800986
Daniel Lehmannc3a80402012-04-23 21:35:11 -0700987 final Intent newIntent = new Intent(actionQuickContact);
988 // When starting from the launcher, start in a new, cleared task
989 // CLEAR_WHEN_TASK_RESET cannot reset the root of a task, so we
990 // clear the whole thing preemptively here since
991 // QuickContactActivity will finish itself when launching other
992 // detail activities.
993 newIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
994 Intent.FLAG_ACTIVITY_CLEAR_TASK);
Winson Chung2672ff92012-05-04 16:22:30 -0700995 newIntent.putExtra(
996 Launcher.INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION, true);
Daniel Lehmannc3a80402012-04-23 21:35:11 -0700997 newIntent.setData(uri);
Daniel Lehmannd02402c2012-05-14 18:30:53 -0700998 // Determine the type and also put that in the shortcut
999 // (that can speed up launch a bit)
1000 newIntent.setDataAndType(uri, newIntent.resolveType(mContext));
Romain Guy7eb9e5e2009-12-02 20:10:07 -08001001
Daniel Lehmannc3a80402012-04-23 21:35:11 -07001002 final ContentValues values = new ContentValues();
1003 values.put(LauncherSettings.Favorites.INTENT,
1004 newIntent.toUri(0));
1005
1006 String updateWhere = Favorites._ID + "=" + favoriteId;
1007 db.update(TABLE_FAVORITES, values, updateWhere, null);
1008 }
Romain Guy7eb9e5e2009-12-02 20:10:07 -08001009 }
1010 } catch (RuntimeException ex) {
1011 Log.e(TAG, "Problem upgrading shortcut", ex);
1012 } catch (URISyntaxException e) {
Daniel Lehmannc3a80402012-04-23 21:35:11 -07001013 Log.e(TAG, "Problem upgrading shortcut", e);
Romain Guy7eb9e5e2009-12-02 20:10:07 -08001014 }
1015 }
1016 }
Daniel Lehmannc3a80402012-04-23 21:35:11 -07001017
Romain Guy7eb9e5e2009-12-02 20:10:07 -08001018 db.setTransactionSuccessful();
1019 } catch (SQLException ex) {
1020 Log.w(TAG, "Problem while upgrading contacts", ex);
1021 return false;
1022 } finally {
1023 db.endTransaction();
1024 if (c != null) {
1025 c.close();
1026 }
1027 }
1028
1029 return true;
1030 }
1031
Joe Onorato0589f0f2010-02-08 13:44:00 -08001032 private void normalizeIcons(SQLiteDatabase db) {
1033 Log.d(TAG, "normalizing icons");
1034
Joe Onorato346e1292010-02-18 10:34:24 -05001035 db.beginTransaction();
Joe Onorato0589f0f2010-02-08 13:44:00 -08001036 Cursor c = null;
Joe Onorato9690b392010-03-23 17:34:37 -04001037 SQLiteStatement update = null;
Joe Onorato0589f0f2010-02-08 13:44:00 -08001038 try {
1039 boolean logged = false;
Joe Onorato9690b392010-03-23 17:34:37 -04001040 update = db.compileStatement("UPDATE favorites "
Jeff Hamiltoneaf77d62010-02-13 00:08:17 -06001041 + "SET icon=? WHERE _id=?");
Joe Onorato0589f0f2010-02-08 13:44:00 -08001042
1043 c = db.rawQuery("SELECT _id, icon FROM favorites WHERE iconType=" +
1044 Favorites.ICON_TYPE_BITMAP, null);
1045
1046 final int idIndex = c.getColumnIndexOrThrow(Favorites._ID);
1047 final int iconIndex = c.getColumnIndexOrThrow(Favorites.ICON);
1048
1049 while (c.moveToNext()) {
1050 long id = c.getLong(idIndex);
1051 byte[] data = c.getBlob(iconIndex);
1052 try {
1053 Bitmap bitmap = Utilities.resampleIconBitmap(
1054 BitmapFactory.decodeByteArray(data, 0, data.length),
1055 mContext);
1056 if (bitmap != null) {
1057 update.bindLong(1, id);
1058 data = ItemInfo.flattenBitmap(bitmap);
1059 if (data != null) {
1060 update.bindBlob(2, data);
1061 update.execute();
1062 }
1063 bitmap.recycle();
Joe Onorato0589f0f2010-02-08 13:44:00 -08001064 }
1065 } catch (Exception e) {
1066 if (!logged) {
1067 Log.e(TAG, "Failed normalizing icon " + id, e);
1068 } else {
1069 Log.e(TAG, "Also failed normalizing icon " + id);
1070 }
1071 logged = true;
1072 }
1073 }
Bjorn Bringert3a928e42010-02-19 11:15:40 +00001074 db.setTransactionSuccessful();
Joe Onorato0589f0f2010-02-08 13:44:00 -08001075 } catch (SQLException ex) {
1076 Log.w(TAG, "Problem while allocating appWidgetIds for existing widgets", ex);
1077 } finally {
1078 db.endTransaction();
Joe Onorato9690b392010-03-23 17:34:37 -04001079 if (update != null) {
1080 update.close();
1081 }
Joe Onorato0589f0f2010-02-08 13:44:00 -08001082 if (c != null) {
1083 c.close();
1084 }
1085 }
Michael Jurkaa8c760d2011-04-28 14:59:33 -07001086 }
1087
1088 // Generates a new ID to use for an object in your database. This method should be only
1089 // called from the main UI thread. As an exception, we do call it when we call the
1090 // constructor from the worker thread; however, this doesn't extend until after the
1091 // constructor is called, and we only pass a reference to LauncherProvider to LauncherApp
1092 // after that point
Sunny Goyal0fe505b2014-08-06 09:55:36 -07001093 @Override
Adam Cohendcd297f2013-06-18 13:13:40 -07001094 public long generateNewItemId() {
1095 if (mMaxItemId < 0) {
1096 throw new RuntimeException("Error: max item id was not initialized");
Michael Jurkaa8c760d2011-04-28 14:59:33 -07001097 }
Adam Cohendcd297f2013-06-18 13:13:40 -07001098 mMaxItemId += 1;
1099 return mMaxItemId;
Michael Jurkaa8c760d2011-04-28 14:59:33 -07001100 }
1101
Sunny Goyal0fe505b2014-08-06 09:55:36 -07001102 @Override
1103 public long insertAndCheck(SQLiteDatabase db, ContentValues values) {
1104 return dbInsertAndCheck(this, db, TABLE_FAVORITES, null, values);
1105 }
1106
Winson Chungc763c4e2013-07-19 13:49:06 -07001107 public void updateMaxItemId(long id) {
1108 mMaxItemId = id + 1;
1109 }
1110
Chris Wren5dee7af2013-12-20 17:22:11 -05001111 public void checkId(String table, ContentValues values) {
1112 long id = values.getAsLong(LauncherSettings.BaseLauncherColumns._ID);
1113 if (table == LauncherProvider.TABLE_WORKSPACE_SCREENS) {
1114 mMaxScreenId = Math.max(id, mMaxScreenId);
1115 } else {
1116 mMaxItemId = Math.max(id, mMaxItemId);
1117 }
1118 }
1119
Adam Cohendcd297f2013-06-18 13:13:40 -07001120 private long initializeMaxItemId(SQLiteDatabase db) {
Michael Jurkaa8c760d2011-04-28 14:59:33 -07001121 Cursor c = db.rawQuery("SELECT MAX(_id) FROM favorites", null);
1122
1123 // get the result
1124 final int maxIdIndex = 0;
1125 long id = -1;
1126 if (c != null && c.moveToNext()) {
1127 id = c.getLong(maxIdIndex);
1128 }
Michael Jurka5130e402011-10-13 04:55:35 -07001129 if (c != null) {
1130 c.close();
1131 }
Michael Jurkaa8c760d2011-04-28 14:59:33 -07001132
1133 if (id == -1) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001134 throw new RuntimeException("Error: could not query max item id");
1135 }
1136
1137 return id;
1138 }
1139
1140 // Generates a new ID to use for an workspace screen in your database. This method
1141 // should be only called from the main UI thread. As an exception, we do call it when we
1142 // call the constructor from the worker thread; however, this doesn't extend until after the
1143 // constructor is called, and we only pass a reference to LauncherProvider to LauncherApp
1144 // after that point
1145 public long generateNewScreenId() {
1146 if (mMaxScreenId < 0) {
1147 throw new RuntimeException("Error: max screen id was not initialized");
1148 }
1149 mMaxScreenId += 1;
Winson Chunga90303b2013-11-15 13:05:06 -08001150 // Log to disk
1151 Launcher.addDumpLog(TAG, "11683562 - generateNewScreenId(): " + mMaxScreenId, true);
Adam Cohendcd297f2013-06-18 13:13:40 -07001152 return mMaxScreenId;
1153 }
1154
1155 public void updateMaxScreenId(long maxScreenId) {
Winson Chunga90303b2013-11-15 13:05:06 -08001156 // Log to disk
1157 Launcher.addDumpLog(TAG, "11683562 - updateMaxScreenId(): " + maxScreenId, true);
Adam Cohendcd297f2013-06-18 13:13:40 -07001158 mMaxScreenId = maxScreenId;
1159 }
1160
1161 private long initializeMaxScreenId(SQLiteDatabase db) {
1162 Cursor c = db.rawQuery("SELECT MAX(" + LauncherSettings.WorkspaceScreens._ID + ") FROM " + TABLE_WORKSPACE_SCREENS, null);
1163
1164 // get the result
1165 final int maxIdIndex = 0;
1166 long id = -1;
1167 if (c != null && c.moveToNext()) {
1168 id = c.getLong(maxIdIndex);
1169 }
1170 if (c != null) {
1171 c.close();
1172 }
1173
1174 if (id == -1) {
1175 throw new RuntimeException("Error: could not query max screen id");
Michael Jurkaa8c760d2011-04-28 14:59:33 -07001176 }
1177
Winson Chunga90303b2013-11-15 13:05:06 -08001178 // Log to disk
1179 Launcher.addDumpLog(TAG, "11683562 - initializeMaxScreenId(): " + id, true);
Michael Jurkaa8c760d2011-04-28 14:59:33 -07001180 return id;
Joe Onorato0589f0f2010-02-08 13:44:00 -08001181 }
1182
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001183 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001184 * Upgrade existing clock and photo frame widgets into their new widget
Bjorn Bringert93c45762009-12-16 13:19:47 +00001185 * equivalents.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001186 */
1187 private void convertWidgets(SQLiteDatabase db) {
Bjorn Bringert34251342009-12-15 13:33:11 +00001188 final AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(mContext);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001189 final int[] bindSources = new int[] {
1190 Favorites.ITEM_TYPE_WIDGET_CLOCK,
1191 Favorites.ITEM_TYPE_WIDGET_PHOTO_FRAME,
Bjorn Bringert7984c942009-12-09 15:38:25 +00001192 Favorites.ITEM_TYPE_WIDGET_SEARCH,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001193 };
Bjorn Bringert7984c942009-12-09 15:38:25 +00001194
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001195 final String selectWhere = buildOrWhereString(Favorites.ITEM_TYPE, bindSources);
Daniel Lehmannc3a80402012-04-23 21:35:11 -07001196
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001197 Cursor c = null;
Daniel Lehmannc3a80402012-04-23 21:35:11 -07001198
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001199 db.beginTransaction();
1200 try {
1201 // Select and iterate through each matching widget
Bjorn Bringert7984c942009-12-09 15:38:25 +00001202 c = db.query(TABLE_FAVORITES, new String[] { Favorites._ID, Favorites.ITEM_TYPE },
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001203 selectWhere, null, null, null, null);
Daniel Lehmannc3a80402012-04-23 21:35:11 -07001204
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001205 if (LOGD) Log.d(TAG, "found upgrade cursor count=" + c.getCount());
Daniel Lehmannc3a80402012-04-23 21:35:11 -07001206
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001207 final ContentValues values = new ContentValues();
1208 while (c != null && c.moveToNext()) {
1209 long favoriteId = c.getLong(0);
Bjorn Bringert7984c942009-12-09 15:38:25 +00001210 int favoriteType = c.getInt(1);
1211
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001212 // Allocate and update database with new appWidgetId
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001213 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001214 int appWidgetId = mAppWidgetHost.allocateAppWidgetId();
Daniel Lehmannc3a80402012-04-23 21:35:11 -07001215
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001216 if (LOGD) {
1217 Log.d(TAG, "allocated appWidgetId=" + appWidgetId
1218 + " for favoriteId=" + favoriteId);
1219 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001220 values.clear();
Bjorn Bringert7984c942009-12-09 15:38:25 +00001221 values.put(Favorites.ITEM_TYPE, Favorites.ITEM_TYPE_APPWIDGET);
1222 values.put(Favorites.APPWIDGET_ID, appWidgetId);
1223
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001224 // Original widgets might not have valid spans when upgrading
Bjorn Bringert7984c942009-12-09 15:38:25 +00001225 if (favoriteType == Favorites.ITEM_TYPE_WIDGET_SEARCH) {
1226 values.put(LauncherSettings.Favorites.SPANX, 4);
1227 values.put(LauncherSettings.Favorites.SPANY, 1);
1228 } else {
1229 values.put(LauncherSettings.Favorites.SPANX, 2);
1230 values.put(LauncherSettings.Favorites.SPANY, 2);
1231 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001232
1233 String updateWhere = Favorites._ID + "=" + favoriteId;
1234 db.update(TABLE_FAVORITES, values, updateWhere, null);
Bjorn Bringert34251342009-12-15 13:33:11 +00001235
Bjorn Bringert34251342009-12-15 13:33:11 +00001236 if (favoriteType == Favorites.ITEM_TYPE_WIDGET_CLOCK) {
Michael Jurka8b805b12012-04-18 14:23:14 -07001237 // TODO: check return value
1238 appWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,
Bjorn Bringert34251342009-12-15 13:33:11 +00001239 new ComponentName("com.android.alarmclock",
1240 "com.android.alarmclock.AnalogAppWidgetProvider"));
1241 } else if (favoriteType == Favorites.ITEM_TYPE_WIDGET_PHOTO_FRAME) {
Michael Jurka8b805b12012-04-18 14:23:14 -07001242 // TODO: check return value
1243 appWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,
Bjorn Bringert34251342009-12-15 13:33:11 +00001244 new ComponentName("com.android.camera",
1245 "com.android.camera.PhotoAppWidgetProvider"));
1246 } else if (favoriteType == Favorites.ITEM_TYPE_WIDGET_SEARCH) {
Michael Jurka8b805b12012-04-18 14:23:14 -07001247 // TODO: check return value
1248 appWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,
Bjorn Bringertcd8fec02010-01-14 13:26:43 +00001249 getSearchWidgetProvider());
Bjorn Bringert34251342009-12-15 13:33:11 +00001250 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001251 } catch (RuntimeException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001252 Log.e(TAG, "Problem allocating appWidgetId", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001253 }
1254 }
Daniel Lehmannc3a80402012-04-23 21:35:11 -07001255
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001256 db.setTransactionSuccessful();
1257 } catch (SQLException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001258 Log.w(TAG, "Problem while allocating appWidgetIds for existing widgets", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001259 } finally {
1260 db.endTransaction();
1261 if (c != null) {
1262 c.close();
1263 }
1264 }
Winson Chungc763c4e2013-07-19 13:49:06 -07001265
1266 // Update max item id
1267 mMaxItemId = initializeMaxItemId(db);
1268 if (LOGD) Log.d(TAG, "mMaxItemId: " + mMaxItemId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001269 }
1270
Adam Cohena043fa82014-07-23 14:49:38 -07001271 private boolean initializeExternalAdd(ContentValues values) {
1272 // 1. Ensure that externally added items have a valid item id
1273 long id = generateNewItemId();
1274 values.put(LauncherSettings.Favorites._ID, id);
1275
1276 // 2. In the case of an app widget, and if no app widget id is specified, we
1277 // attempt allocate and bind the widget.
1278 Integer itemType = values.getAsInteger(LauncherSettings.Favorites.ITEM_TYPE);
1279 if (itemType != null &&
1280 itemType.intValue() == LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET &&
1281 !values.containsKey(LauncherSettings.Favorites.APPWIDGET_ID)) {
1282
1283 final AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(mContext);
1284 ComponentName cn = ComponentName.unflattenFromString(
1285 values.getAsString(Favorites.APPWIDGET_PROVIDER));
1286
1287 if (cn != null) {
1288 try {
1289 int appWidgetId = mAppWidgetHost.allocateAppWidgetId();
Adam Cohen3ed316a2014-07-23 18:21:20 -07001290 values.put(LauncherSettings.Favorites.APPWIDGET_ID, appWidgetId);
1291 if (appWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,cn)) {
1292 return true;
Adam Cohena043fa82014-07-23 14:49:38 -07001293 }
1294 } catch (RuntimeException e) {
1295 Log.e(TAG, "Failed to initialize external widget", e);
Adam Cohena043fa82014-07-23 14:49:38 -07001296 }
1297 }
Adam Cohen3ed316a2014-07-23 18:21:20 -07001298 return false;
Adam Cohena043fa82014-07-23 14:49:38 -07001299 }
Adam Cohen7ec3bbf2014-07-31 00:09:45 -07001300
1301 // Add screen id if not present
1302 long screenId = values.getAsLong(LauncherSettings.Favorites.SCREEN);
1303 if (!addScreenIdIfNecessary(screenId)) {
1304 return false;
1305 }
Adam Cohena043fa82014-07-23 14:49:38 -07001306 return true;
1307 }
1308
Adam Cohen7ec3bbf2014-07-31 00:09:45 -07001309 // Returns true of screen id exists, or if successfully added
1310 private boolean addScreenIdIfNecessary(long screenId) {
1311 if (!hasScreenId(screenId)) {
1312 int rank = getMaxScreenRank() + 1;
1313
1314 ContentValues v = new ContentValues();
1315 v.put(LauncherSettings.WorkspaceScreens._ID, screenId);
1316 v.put(LauncherSettings.WorkspaceScreens.SCREEN_RANK, rank);
1317 if (dbInsertAndCheck(this, getWritableDatabase(),
1318 TABLE_WORKSPACE_SCREENS, null, v) < 0) {
1319 return false;
1320 }
1321 }
1322 return true;
1323 }
1324
1325 private boolean hasScreenId(long screenId) {
1326 SQLiteDatabase db = getWritableDatabase();
1327 Cursor c = db.rawQuery("SELECT * FROM " + TABLE_WORKSPACE_SCREENS + " WHERE "
1328 + LauncherSettings.WorkspaceScreens._ID + " = " + screenId, null);
1329 if (c != null) {
1330 int count = c.getCount();
1331 c.close();
1332 return count > 0;
1333 } else {
1334 return false;
1335 }
1336 }
1337
1338 private int getMaxScreenRank() {
1339 SQLiteDatabase db = getWritableDatabase();
1340 Cursor c = db.rawQuery("SELECT MAX(" + LauncherSettings.WorkspaceScreens.SCREEN_RANK
1341 + ") FROM " + TABLE_WORKSPACE_SCREENS, null);
1342
1343 // get the result
1344 final int maxRankIndex = 0;
1345 int rank = -1;
1346 if (c != null && c.moveToNext()) {
1347 rank = c.getInt(maxRankIndex);
1348 }
1349 if (c != null) {
1350 c.close();
1351 }
1352
1353 return rank;
1354 }
1355
Michael Jurka8b805b12012-04-18 14:23:14 -07001356 private static final void beginDocument(XmlPullParser parser, String firstElementName)
1357 throws XmlPullParserException, IOException {
1358 int type;
Michael Jurka9bc8eba2012-05-21 20:36:44 -07001359 while ((type = parser.next()) != XmlPullParser.START_TAG
1360 && type != XmlPullParser.END_DOCUMENT) {
Michael Jurka8b805b12012-04-18 14:23:14 -07001361 ;
1362 }
1363
Michael Jurka9bc8eba2012-05-21 20:36:44 -07001364 if (type != XmlPullParser.START_TAG) {
Michael Jurka8b805b12012-04-18 14:23:14 -07001365 throw new XmlPullParserException("No start tag found");
1366 }
1367
1368 if (!parser.getName().equals(firstElementName)) {
1369 throw new XmlPullParserException("Unexpected start tag: found " + parser.getName() +
1370 ", expected " + firstElementName);
1371 }
1372 }
1373
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001374 private static Intent buildMainIntent() {
1375 Intent intent = new Intent(Intent.ACTION_MAIN, null);
1376 intent.addCategory(Intent.CATEGORY_LAUNCHER);
1377 return intent;
1378 }
1379
Sunny Goyal0fe505b2014-08-06 09:55:36 -07001380 private int loadFavorites(SQLiteDatabase db, WorkspaceLoader loader) {
Adam Cohen71483f42014-05-15 14:04:01 -07001381 ArrayList<Long> screenIds = new ArrayList<Long>();
Sunny Goyal0fe505b2014-08-06 09:55:36 -07001382 // TODO: Use multiple loaders with fall-back and transaction.
1383 int count = loader.loadLayout(db, screenIds);
Adam Cohen71483f42014-05-15 14:04:01 -07001384
1385 // Add the screens specified by the items above
1386 Collections.sort(screenIds);
1387 int rank = 0;
1388 ContentValues values = new ContentValues();
1389 for (Long id : screenIds) {
1390 values.clear();
1391 values.put(LauncherSettings.WorkspaceScreens._ID, id);
1392 values.put(LauncherSettings.WorkspaceScreens.SCREEN_RANK, rank);
1393 if (dbInsertAndCheck(this, db, TABLE_WORKSPACE_SCREENS, null, values) < 0) {
1394 throw new RuntimeException("Failed initialize screen table"
1395 + "from default layout");
1396 }
1397 rank++;
1398 }
1399
1400 // Ensure that the max ids are initialized
1401 mMaxItemId = initializeMaxItemId(db);
1402 mMaxScreenId = initializeMaxScreenId(db);
Adam Cohen7ec3bbf2014-07-31 00:09:45 -07001403
Adam Cohen71483f42014-05-15 14:04:01 -07001404 return count;
1405 }
1406
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001407 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001408 * Loads the default set of favorite packages from an xml file.
1409 *
1410 * @param db The database to write the values into
Winson Chung3d503fb2011-07-13 17:25:49 -07001411 * @param filterContainerId The specific container id of items to load
Adam Cohen71483f42014-05-15 14:04:01 -07001412 * @param the set of screenIds which are used by the favorites
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001413 */
Adam Cohen9b8f51f2014-05-30 15:34:09 -07001414 private int loadFavoritesRecursive(SQLiteDatabase db, Resources res, int workspaceResourceId,
Adam Cohen71483f42014-05-15 14:04:01 -07001415 ArrayList<Long> screenIds) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001416
Adam Cohen71483f42014-05-15 14:04:01 -07001417 ContentValues values = new ContentValues();
Daniel Sandler57dac262013-10-03 13:28:36 -04001418 if (LOGD) Log.v(TAG, String.format("Loading favorites from resid=0x%08x", workspaceResourceId));
1419
Adam Cohen71483f42014-05-15 14:04:01 -07001420 int count = 0;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001421 try {
Adam Cohen9b8f51f2014-05-30 15:34:09 -07001422 XmlResourceParser parser = res.getXml(workspaceResourceId);
Michael Jurka8b805b12012-04-18 14:23:14 -07001423 beginDocument(parser, TAG_FAVORITES);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001424
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07001425 final int depth = parser.getDepth();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001426
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07001427 int type;
1428 while (((type = parser.next()) != XmlPullParser.END_TAG ||
1429 parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
1430
1431 if (type != XmlPullParser.START_TAG) {
1432 continue;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001433 }
1434
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07001435 boolean added = false;
1436 final String name = parser.getName();
1437
Daniel Sandler57dac262013-10-03 13:28:36 -04001438 if (TAG_INCLUDE.equals(name)) {
Daniel Sandler57dac262013-10-03 13:28:36 -04001439
Adam Cohen9b8f51f2014-05-30 15:34:09 -07001440 final int resId = getAttributeResourceValue(parser, ATTR_WORKSPACE, 0);
Daniel Sandler57dac262013-10-03 13:28:36 -04001441
1442 if (LOGD) Log.v(TAG, String.format(("%" + (2*(depth+1)) + "s<include workspace=%08x>"),
1443 "", resId));
1444
1445 if (resId != 0 && resId != workspaceResourceId) {
1446 // recursively load some more favorites, why not?
Adam Cohen9b8f51f2014-05-30 15:34:09 -07001447 count += loadFavoritesRecursive(db, res, resId, screenIds);
Daniel Sandler57dac262013-10-03 13:28:36 -04001448 added = false;
Daniel Sandler57dac262013-10-03 13:28:36 -04001449 } else {
1450 Log.w(TAG, String.format("Skipping <include workspace=0x%08x>", resId));
1451 }
1452
Daniel Sandler57dac262013-10-03 13:28:36 -04001453 if (LOGD) Log.v(TAG, String.format(("%" + (2*(depth+1)) + "s</include>"), ""));
1454 continue;
1455 }
1456
1457 // Assuming it's a <favorite> at this point
Winson Chung3d503fb2011-07-13 17:25:49 -07001458 long container = LauncherSettings.Favorites.CONTAINER_DESKTOP;
Adam Cohen9b8f51f2014-05-30 15:34:09 -07001459 String strContainer = getAttributeValue(parser, ATTR_CONTAINER);
1460 if (strContainer != null) {
1461 container = Long.valueOf(strContainer);
Winson Chung3d503fb2011-07-13 17:25:49 -07001462 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07001463
Adam Cohen9b8f51f2014-05-30 15:34:09 -07001464 String screen = getAttributeValue(parser, ATTR_SCREEN);
1465 String x = getAttributeValue(parser, ATTR_X);
1466 String y = getAttributeValue(parser, ATTR_Y);
Winson Chung6d092682011-11-16 18:43:26 -08001467
Winson Chung6d092682011-11-16 18:43:26 -08001468 values.clear();
1469 values.put(LauncherSettings.Favorites.CONTAINER, container);
1470 values.put(LauncherSettings.Favorites.SCREEN, screen);
1471 values.put(LauncherSettings.Favorites.CELLX, x);
1472 values.put(LauncherSettings.Favorites.CELLY, y);
1473
Daniel Sandler57dac262013-10-03 13:28:36 -04001474 if (LOGD) {
Adam Cohen9b8f51f2014-05-30 15:34:09 -07001475 final String title = getAttributeValue(parser, ATTR_TITLE);
1476 final String pkg = getAttributeValue(parser, ATTR_PACKAGE_NAME);
Daniel Sandler57dac262013-10-03 13:28:36 -04001477 final String something = title != null ? title : pkg;
1478 Log.v(TAG, String.format(
1479 ("%" + (2*(depth+1)) + "s<%s%s c=%d s=%s x=%s y=%s>"),
1480 "", name,
1481 (something == null ? "" : (" \"" + something + "\"")),
1482 container, screen, x, y));
1483 }
1484
Winson Chung6d092682011-11-16 18:43:26 -08001485 if (TAG_FAVORITE.equals(name)) {
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001486 long id = addAppShortcut(db, values, parser);
Winson Chung6d092682011-11-16 18:43:26 -08001487 added = id >= 0;
Winson Chung6d092682011-11-16 18:43:26 -08001488 } else if (TAG_APPWIDGET.equals(name)) {
Adam Cohen9b8f51f2014-05-30 15:34:09 -07001489 added = addAppWidget(parser, type, db, values);
Winson Chung6d092682011-11-16 18:43:26 -08001490 } else if (TAG_SHORTCUT.equals(name)) {
Adam Cohen9b8f51f2014-05-30 15:34:09 -07001491 long id = addUriShortcut(db, values, res, parser);
Winson Chung6d092682011-11-16 18:43:26 -08001492 added = id >= 0;
Jason Monk41314972014-03-03 16:11:30 -05001493 } else if (TAG_RESOLVE.equals(name)) {
1494 // This looks through the contained favorites (or meta-favorites) and
1495 // attempts to add them as shortcuts in the fallback group's location
1496 // until one is added successfully.
1497 added = false;
1498 final int groupDepth = parser.getDepth();
1499 while ((type = parser.next()) != XmlPullParser.END_TAG ||
1500 parser.getDepth() > groupDepth) {
1501 if (type != XmlPullParser.START_TAG) {
1502 continue;
1503 }
1504 final String fallback_item_name = parser.getName();
Jason Monk41314972014-03-03 16:11:30 -05001505 if (!added) {
1506 if (TAG_FAVORITE.equals(fallback_item_name)) {
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001507 final long id = addAppShortcut(db, values, parser);
Jason Monk41314972014-03-03 16:11:30 -05001508 added = id >= 0;
1509 } else {
Adam Cohen9b8f51f2014-05-30 15:34:09 -07001510 Log.e(TAG, "Fallback groups can contain only favorites, found "
1511 + fallback_item_name);
Jason Monk41314972014-03-03 16:11:30 -05001512 }
1513 }
Jason Monk41314972014-03-03 16:11:30 -05001514 }
Winson Chung6d092682011-11-16 18:43:26 -08001515 } else if (TAG_FOLDER.equals(name)) {
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001516 // Folder contents are nested in this XML file
Adam Cohen43f3ca02014-07-25 13:24:09 -07001517 added = loadFolder(db, values, res, parser);
Winson Chung3d503fb2011-07-13 17:25:49 -07001518
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001519 } else if (TAG_PARTNER_FOLDER.equals(name)) {
1520 // Folder contents come from an external XML resource
1521 final Partner partner = Partner.get(mPackageManager);
1522 if (partner != null) {
1523 final Resources partnerRes = partner.getResources();
Adam Cohen4ae96ce2014-08-29 15:05:48 -07001524 final int resId = partnerRes.getIdentifier(Partner.RES_FOLDER,
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001525 "xml", partner.getPackageName());
1526 if (resId != 0) {
1527 final XmlResourceParser partnerParser = partnerRes.getXml(resId);
1528 beginDocument(partnerParser, TAG_FOLDER);
1529 added = loadFolder(db, values, partnerRes, partnerParser);
Winson Chung6d092682011-11-16 18:43:26 -08001530 }
Winson Chung3d503fb2011-07-13 17:25:49 -07001531 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001532 }
Adam Cohen71483f42014-05-15 14:04:01 -07001533 if (added) {
1534 long screenId = Long.parseLong(screen);
1535 // Keep track of the set of screens which need to be added to the db.
1536 if (!screenIds.contains(screenId) &&
1537 container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
1538 screenIds.add(screenId);
1539 }
1540 count++;
1541 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001542 }
1543 } catch (XmlPullParserException e) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001544 Log.w(TAG, "Got exception parsing favorites.", e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001545 } catch (IOException e) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001546 Log.w(TAG, "Got exception parsing favorites.", e);
Winson Chung3d503fb2011-07-13 17:25:49 -07001547 } catch (RuntimeException e) {
1548 Log.w(TAG, "Got exception parsing favorites.", e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001549 }
Adam Cohen71483f42014-05-15 14:04:01 -07001550 return count;
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07001551 }
1552
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001553 /**
1554 * Parse folder starting at current {@link XmlPullParser} location.
1555 */
1556 private boolean loadFolder(SQLiteDatabase db, ContentValues values, Resources res,
1557 XmlResourceParser parser) throws IOException, XmlPullParserException {
1558 final String title;
1559 final int titleResId = getAttributeResourceValue(parser, ATTR_TITLE, 0);
1560 if (titleResId != 0) {
1561 title = res.getString(titleResId);
1562 } else {
1563 title = mContext.getResources().getString(R.string.folder_name);
1564 }
1565
1566 values.put(LauncherSettings.Favorites.TITLE, title);
1567 long folderId = addFolder(db, values);
1568 boolean added = folderId >= 0;
1569
1570 ArrayList<Long> folderItems = new ArrayList<Long>();
1571
1572 int type;
1573 int folderDepth = parser.getDepth();
1574 while ((type = parser.next()) != XmlPullParser.END_TAG ||
1575 parser.getDepth() > folderDepth) {
1576 if (type != XmlPullParser.START_TAG) {
1577 continue;
1578 }
1579 final String tag = parser.getName();
1580
1581 final ContentValues childValues = new ContentValues();
1582 childValues.put(LauncherSettings.Favorites.CONTAINER, folderId);
1583
1584 if (LOGD) {
1585 final String pkg = getAttributeValue(parser, ATTR_PACKAGE_NAME);
1586 final String uri = getAttributeValue(parser, ATTR_URI);
1587 Log.v(TAG, String.format(("%" + (2*(folderDepth+1)) + "s<%s \"%s\">"), "",
1588 tag, uri != null ? uri : pkg));
1589 }
1590
1591 if (TAG_FAVORITE.equals(tag) && folderId >= 0) {
1592 final long id = addAppShortcut(db, childValues, parser);
1593 if (id >= 0) {
1594 folderItems.add(id);
1595 }
1596 } else if (TAG_SHORTCUT.equals(tag) && folderId >= 0) {
1597 final long id = addUriShortcut(db, childValues, res, parser);
1598 if (id >= 0) {
1599 folderItems.add(id);
1600 }
1601 } else {
1602 throw new RuntimeException("Folders can contain only shortcuts");
1603 }
1604 }
1605
1606 // We can only have folders with >= 2 items, so we need to remove the
1607 // folder and clean up if less than 2 items were included, or some
1608 // failed to add, and less than 2 were actually added
1609 if (folderItems.size() < 2 && folderId >= 0) {
1610 // Delete the folder
1611 deleteId(db, folderId);
1612
1613 // If we have a single item, promote it to where the folder
1614 // would have been.
1615 if (folderItems.size() == 1) {
1616 final ContentValues childValues = new ContentValues();
1617 copyInteger(values, childValues, LauncherSettings.Favorites.CONTAINER);
1618 copyInteger(values, childValues, LauncherSettings.Favorites.SCREEN);
1619 copyInteger(values, childValues, LauncherSettings.Favorites.CELLX);
1620 copyInteger(values, childValues, LauncherSettings.Favorites.CELLY);
1621
1622 final long id = folderItems.get(0);
1623 db.update(TABLE_FAVORITES, childValues,
1624 LauncherSettings.Favorites._ID + "=" + id, null);
1625 } else {
1626 added = false;
1627 }
1628 }
1629 return added;
1630 }
1631
Jason Monk41314972014-03-03 16:11:30 -05001632 // A meta shortcut attempts to resolve an intent specified as a URI in the XML, if a
1633 // logical choice for what shortcut should be used for that intent exists, then it is
1634 // added. Otherwise add nothing.
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001635 private long addAppShortcutByUri(SQLiteDatabase db, ContentValues values,
1636 String intentUri) {
Jason Monk41314972014-03-03 16:11:30 -05001637 Intent metaIntent;
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07001638 try {
Jason Monk41314972014-03-03 16:11:30 -05001639 metaIntent = Intent.parseUri(intentUri, 0);
1640 } catch (URISyntaxException e) {
1641 Log.e(TAG, "Unable to add meta-favorite: " + intentUri, e);
1642 return -1;
1643 }
1644
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001645 ResolveInfo resolved = mPackageManager.resolveActivity(metaIntent,
Jason Monk41314972014-03-03 16:11:30 -05001646 PackageManager.MATCH_DEFAULT_ONLY);
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001647 final List<ResolveInfo> appList = mPackageManager.queryIntentActivities(
Jason Monk41314972014-03-03 16:11:30 -05001648 metaIntent, PackageManager.MATCH_DEFAULT_ONLY);
1649
1650 // Verify that the result is an app and not just the resolver dialog asking which
1651 // app to use.
1652 if (wouldLaunchResolverActivity(resolved, appList)) {
1653 // If only one of the results is a system app then choose that as the default.
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001654 final ResolveInfo systemApp = getSingleSystemActivity(appList);
Jason Monk41314972014-03-03 16:11:30 -05001655 if (systemApp == null) {
1656 // There is no logical choice for this meta-favorite, so rather than making
1657 // a bad choice just add nothing.
1658 Log.w(TAG, "No preference or single system activity found for "
1659 + metaIntent.toString());
Adam Cohen228da5a2011-07-27 22:23:47 -07001660 return -1;
1661 }
Jason Monk41314972014-03-03 16:11:30 -05001662 resolved = systemApp;
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07001663 }
Jason Monk41314972014-03-03 16:11:30 -05001664 final ActivityInfo info = resolved.activityInfo;
Jason Monkc3009c02014-08-20 09:41:21 -04001665 final Intent intent = mPackageManager.getLaunchIntentForPackage(info.packageName);
1666 if (intent == null) {
1667 return -1;
1668 }
Jason Monk41314972014-03-03 16:11:30 -05001669 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
1670 Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1671
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001672 return addAppShortcut(db, values, info.loadLabel(mPackageManager).toString(), intent);
Jason Monk41314972014-03-03 16:11:30 -05001673 }
1674
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001675 private ResolveInfo getSingleSystemActivity(List<ResolveInfo> appList) {
Jason Monk41314972014-03-03 16:11:30 -05001676 ResolveInfo systemResolve = null;
1677 final int N = appList.size();
1678 for (int i = 0; i < N; ++i) {
1679 try {
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001680 ApplicationInfo info = mPackageManager.getApplicationInfo(
Jason Monk41314972014-03-03 16:11:30 -05001681 appList.get(i).activityInfo.packageName, 0);
1682 if ((info.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
1683 if (systemResolve != null) {
1684 return null;
1685 } else {
1686 systemResolve = appList.get(i);
1687 }
1688 }
1689 } catch (PackageManager.NameNotFoundException e) {
1690 Log.w(TAG, "Unable to get info about resolve results", e);
1691 return null;
1692 }
1693 }
1694 return systemResolve;
1695 }
1696
1697 private boolean wouldLaunchResolverActivity(ResolveInfo resolved,
1698 List<ResolveInfo> appList) {
1699 // If the list contains the above resolved activity, then it can't be
1700 // ResolverActivity itself.
1701 for (int i = 0; i < appList.size(); ++i) {
1702 ResolveInfo tmp = appList.get(i);
1703 if (tmp.activityInfo.name.equals(resolved.activityInfo.name)
1704 && tmp.activityInfo.packageName.equals(resolved.activityInfo.packageName)) {
1705 return false;
1706 }
1707 }
1708 return true;
1709 }
1710
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001711 private long addAppShortcut(SQLiteDatabase db, ContentValues values,
1712 XmlResourceParser parser) {
1713 final String packageName = getAttributeValue(parser, ATTR_PACKAGE_NAME);
1714 final String className = getAttributeValue(parser, ATTR_CLASS_NAME);
1715 final String uri = getAttributeValue(parser, ATTR_URI);
1716
1717 if (!TextUtils.isEmpty(packageName) && !TextUtils.isEmpty(className)) {
Jason Monk41314972014-03-03 16:11:30 -05001718 ActivityInfo info;
Jason Monk41314972014-03-03 16:11:30 -05001719 try {
1720 ComponentName cn;
1721 try {
1722 cn = new ComponentName(packageName, className);
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001723 info = mPackageManager.getActivityInfo(cn, 0);
Jason Monk41314972014-03-03 16:11:30 -05001724 } catch (PackageManager.NameNotFoundException nnfe) {
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001725 String[] packages = mPackageManager.currentToCanonicalPackageNames(
Jason Monk41314972014-03-03 16:11:30 -05001726 new String[] { packageName });
1727 cn = new ComponentName(packages[0], className);
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001728 info = mPackageManager.getActivityInfo(cn, 0);
Jason Monk41314972014-03-03 16:11:30 -05001729 }
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001730 final Intent intent = buildMainIntent();
Jason Monk41314972014-03-03 16:11:30 -05001731 intent.setComponent(cn);
1732 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
1733 Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1734
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001735 return addAppShortcut(db, values, info.loadLabel(mPackageManager).toString(),
Jason Monk41314972014-03-03 16:11:30 -05001736 intent);
1737 } catch (PackageManager.NameNotFoundException e) {
1738 Log.w(TAG, "Unable to add favorite: " + packageName +
1739 "/" + className, e);
1740 }
1741 return -1;
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001742 } else if (!TextUtils.isEmpty(uri)) {
Jason Monk41314972014-03-03 16:11:30 -05001743 // If no component specified try to find a shortcut to add from the URI.
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001744 return addAppShortcutByUri(db, values, uri);
Jason Monk41314972014-03-03 16:11:30 -05001745 } else {
1746 Log.e(TAG, "Skipping invalid <favorite> with no component or uri");
1747 return -1;
1748 }
1749 }
1750
1751 private long addAppShortcut(SQLiteDatabase db, ContentValues values, String title,
1752 Intent intent) {
1753 long id = generateNewItemId();
1754 values.put(Favorites.INTENT, intent.toUri(0));
1755 values.put(Favorites.TITLE, title);
1756 values.put(Favorites.ITEM_TYPE, Favorites.ITEM_TYPE_APPLICATION);
1757 values.put(Favorites.SPANX, 1);
1758 values.put(Favorites.SPANY, 1);
1759 values.put(Favorites._ID, id);
1760 if (dbInsertAndCheck(this, db, TABLE_FAVORITES, null, values) < 0) {
1761 return -1;
1762 } else {
1763 return id;
1764 }
Adam Cohen228da5a2011-07-27 22:23:47 -07001765 }
1766
1767 private long addFolder(SQLiteDatabase db, ContentValues values) {
1768 values.put(Favorites.ITEM_TYPE, Favorites.ITEM_TYPE_FOLDER);
1769 values.put(Favorites.SPANX, 1);
1770 values.put(Favorites.SPANY, 1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001771 long id = generateNewItemId();
Adam Cohen228da5a2011-07-27 22:23:47 -07001772 values.put(Favorites._ID, id);
1773 if (dbInsertAndCheck(this, db, TABLE_FAVORITES, null, values) <= 0) {
1774 return -1;
1775 } else {
1776 return id;
1777 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07001778 }
1779
Bjorn Bringertcd8fec02010-01-14 13:26:43 +00001780 private ComponentName getSearchWidgetProvider() {
1781 SearchManager searchManager =
1782 (SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE);
1783 ComponentName searchComponent = searchManager.getGlobalSearchActivity();
1784 if (searchComponent == null) return null;
1785 return getProviderInPackage(searchComponent.getPackageName());
1786 }
1787
1788 /**
1789 * Gets an appwidget provider from the given package. If the package contains more than
1790 * one appwidget provider, an arbitrary one is returned.
1791 */
1792 private ComponentName getProviderInPackage(String packageName) {
1793 AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(mContext);
1794 List<AppWidgetProviderInfo> providers = appWidgetManager.getInstalledProviders();
1795 if (providers == null) return null;
1796 final int providerCount = providers.size();
1797 for (int i = 0; i < providerCount; i++) {
1798 ComponentName provider = providers.get(i).provider;
1799 if (provider != null && provider.getPackageName().equals(packageName)) {
1800 return provider;
1801 }
1802 }
1803 return null;
1804 }
1805
Adam Cohen9b8f51f2014-05-30 15:34:09 -07001806 private boolean addAppWidget(XmlResourceParser parser, int type,
1807 SQLiteDatabase db, ContentValues values)
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001808 throws XmlPullParserException, IOException {
Romain Guy693599f2010-03-23 10:58:18 -07001809
Adam Cohen9b8f51f2014-05-30 15:34:09 -07001810 String packageName = getAttributeValue(parser, ATTR_PACKAGE_NAME);
1811 String className = getAttributeValue(parser, ATTR_CLASS_NAME);
Mike Cleronb87bd162009-10-30 16:36:56 -07001812
1813 if (packageName == null || className == null) {
1814 return false;
1815 }
Romain Guy693599f2010-03-23 10:58:18 -07001816
1817 boolean hasPackage = true;
Mike Cleronb87bd162009-10-30 16:36:56 -07001818 ComponentName cn = new ComponentName(packageName, className);
Romain Guy693599f2010-03-23 10:58:18 -07001819 try {
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001820 mPackageManager.getReceiverInfo(cn, 0);
Romain Guy693599f2010-03-23 10:58:18 -07001821 } catch (Exception e) {
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001822 String[] packages = mPackageManager.currentToCanonicalPackageNames(
Romain Guy693599f2010-03-23 10:58:18 -07001823 new String[] { packageName });
1824 cn = new ComponentName(packages[0], className);
1825 try {
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001826 mPackageManager.getReceiverInfo(cn, 0);
Romain Guy693599f2010-03-23 10:58:18 -07001827 } catch (Exception e1) {
Adam Cohen9b8f51f2014-05-30 15:34:09 -07001828 System.out.println("Can't find widget provider: " + className);
Romain Guy693599f2010-03-23 10:58:18 -07001829 hasPackage = false;
1830 }
1831 }
1832
1833 if (hasPackage) {
Adam Cohen9b8f51f2014-05-30 15:34:09 -07001834 String spanX = getAttributeValue(parser, ATTR_SPAN_X);
1835 String spanY = getAttributeValue(parser, ATTR_SPAN_Y);
1836
1837 values.put(Favorites.SPANX, spanX);
1838 values.put(Favorites.SPANY, spanY);
Winson Chungb3302ae2012-05-01 10:19:14 -07001839
1840 // Read the extras
1841 Bundle extras = new Bundle();
1842 int widgetDepth = parser.getDepth();
1843 while ((type = parser.next()) != XmlPullParser.END_TAG ||
1844 parser.getDepth() > widgetDepth) {
1845 if (type != XmlPullParser.START_TAG) {
1846 continue;
1847 }
1848
Winson Chungb3302ae2012-05-01 10:19:14 -07001849 if (TAG_EXTRA.equals(parser.getName())) {
Adam Cohen9b8f51f2014-05-30 15:34:09 -07001850 String key = getAttributeValue(parser, ATTR_KEY);
1851 String value = getAttributeValue(parser, ATTR_VALUE);
Winson Chungb3302ae2012-05-01 10:19:14 -07001852 if (key != null && value != null) {
1853 extras.putString(key, value);
1854 } else {
1855 throw new RuntimeException("Widget extras must have a key and value");
1856 }
1857 } else {
1858 throw new RuntimeException("Widgets can contain only extras");
1859 }
Winson Chungb3302ae2012-05-01 10:19:14 -07001860 }
1861
Adam Cohen9b8f51f2014-05-30 15:34:09 -07001862 return addAppWidget(db, values, cn, extras);
Romain Guy693599f2010-03-23 10:58:18 -07001863 }
Daniel Lehmannc3a80402012-04-23 21:35:11 -07001864
Romain Guy693599f2010-03-23 10:58:18 -07001865 return false;
Bjorn Bringert7984c942009-12-09 15:38:25 +00001866 }
Adam Cohena043fa82014-07-23 14:49:38 -07001867
Bjorn Bringert7984c942009-12-09 15:38:25 +00001868 private boolean addAppWidget(SQLiteDatabase db, ContentValues values, ComponentName cn,
Adam Cohen9b8f51f2014-05-30 15:34:09 -07001869 Bundle extras) {
Mike Cleronb87bd162009-10-30 16:36:56 -07001870 boolean allocatedAppWidgets = false;
1871 final AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(mContext);
1872
1873 try {
1874 int appWidgetId = mAppWidgetHost.allocateAppWidgetId();
Daniel Lehmannc3a80402012-04-23 21:35:11 -07001875
Mike Cleronb87bd162009-10-30 16:36:56 -07001876 values.put(Favorites.ITEM_TYPE, Favorites.ITEM_TYPE_APPWIDGET);
Mike Cleronb87bd162009-10-30 16:36:56 -07001877 values.put(Favorites.APPWIDGET_ID, appWidgetId);
Chris Wrend5e66bf2013-09-16 14:02:29 -04001878 values.put(Favorites.APPWIDGET_PROVIDER, cn.flattenToString());
Adam Cohendcd297f2013-06-18 13:13:40 -07001879 values.put(Favorites._ID, generateNewItemId());
Michael Jurkaa8c760d2011-04-28 14:59:33 -07001880 dbInsertAndCheck(this, db, TABLE_FAVORITES, null, values);
Mike Cleronb87bd162009-10-30 16:36:56 -07001881
1882 allocatedAppWidgets = true;
Daniel Lehmannc3a80402012-04-23 21:35:11 -07001883
Michael Jurka8b805b12012-04-18 14:23:14 -07001884 // TODO: need to check return value
1885 appWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId, cn);
Winson Chungb3302ae2012-05-01 10:19:14 -07001886
1887 // Send a broadcast to configure the widget
1888 if (extras != null && !extras.isEmpty()) {
1889 Intent intent = new Intent(ACTION_APPWIDGET_DEFAULT_WORKSPACE_CONFIGURE);
1890 intent.setComponent(cn);
1891 intent.putExtras(extras);
1892 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
1893 mContext.sendBroadcast(intent);
1894 }
Mike Cleronb87bd162009-10-30 16:36:56 -07001895 } catch (RuntimeException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001896 Log.e(TAG, "Problem allocating appWidgetId", ex);
Mike Cleronb87bd162009-10-30 16:36:56 -07001897 }
Daniel Lehmannc3a80402012-04-23 21:35:11 -07001898
Mike Cleronb87bd162009-10-30 16:36:56 -07001899 return allocatedAppWidgets;
1900 }
Adam Cohen228da5a2011-07-27 22:23:47 -07001901
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001902 private long addUriShortcut(SQLiteDatabase db, ContentValues values, Resources res,
1903 XmlResourceParser parser) {
1904 final int iconResId = getAttributeResourceValue(parser, ATTR_ICON, 0);
1905 final int titleResId = getAttributeResourceValue(parser, ATTR_TITLE, 0);
Mike Cleronb87bd162009-10-30 16:36:56 -07001906
Romain Guy7eb9e5e2009-12-02 20:10:07 -08001907 Intent intent;
Mike Cleronb87bd162009-10-30 16:36:56 -07001908 String uri = null;
1909 try {
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001910 uri = getAttributeValue(parser, ATTR_URI);
Mike Cleronb87bd162009-10-30 16:36:56 -07001911 intent = Intent.parseUri(uri, 0);
1912 } catch (URISyntaxException e) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001913 Log.w(TAG, "Shortcut has malformed uri: " + uri);
Adam Cohen228da5a2011-07-27 22:23:47 -07001914 return -1; // Oh well
Mike Cleronb87bd162009-10-30 16:36:56 -07001915 }
1916
1917 if (iconResId == 0 || titleResId == 0) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001918 Log.w(TAG, "Shortcut is missing title or icon resource ID");
Adam Cohen228da5a2011-07-27 22:23:47 -07001919 return -1;
Mike Cleronb87bd162009-10-30 16:36:56 -07001920 }
1921
Adam Cohendcd297f2013-06-18 13:13:40 -07001922 long id = generateNewItemId();
Mike Cleronb87bd162009-10-30 16:36:56 -07001923 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1924 values.put(Favorites.INTENT, intent.toUri(0));
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001925 values.put(Favorites.TITLE, res.getString(titleResId));
Mike Cleronb87bd162009-10-30 16:36:56 -07001926 values.put(Favorites.ITEM_TYPE, Favorites.ITEM_TYPE_SHORTCUT);
1927 values.put(Favorites.SPANX, 1);
1928 values.put(Favorites.SPANY, 1);
1929 values.put(Favorites.ICON_TYPE, Favorites.ICON_TYPE_RESOURCE);
Jeff Sharkey5aeef582014-04-14 13:26:42 -07001930 values.put(Favorites.ICON_PACKAGE, res.getResourcePackageName(iconResId));
1931 values.put(Favorites.ICON_RESOURCE, res.getResourceName(iconResId));
Adam Cohen228da5a2011-07-27 22:23:47 -07001932 values.put(Favorites._ID, id);
Mike Cleronb87bd162009-10-30 16:36:56 -07001933
Adam Cohen228da5a2011-07-27 22:23:47 -07001934 if (dbInsertAndCheck(this, db, TABLE_FAVORITES, null, values) < 0) {
1935 return -1;
1936 }
1937 return id;
Mike Cleronb87bd162009-10-30 16:36:56 -07001938 }
Dan Sandlerd5024042014-01-09 15:01:33 -05001939
Sunny Goyal0fe505b2014-08-06 09:55:36 -07001940 private void migrateLauncher2Shortcuts(SQLiteDatabase db, Uri uri) {
Dan Sandlerd5024042014-01-09 15:01:33 -05001941 final ContentResolver resolver = mContext.getContentResolver();
1942 Cursor c = null;
1943 int count = 0;
1944 int curScreen = 0;
1945
1946 try {
1947 c = resolver.query(uri, null, null, null, "title ASC");
1948 } catch (Exception e) {
1949 // Ignore
1950 }
1951
Dan Sandlerd5024042014-01-09 15:01:33 -05001952 // We already have a favorites database in the old provider
1953 if (c != null) {
1954 try {
1955 if (c.getCount() > 0) {
1956 final int idIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites._ID);
1957 final int intentIndex
1958 = c.getColumnIndexOrThrow(LauncherSettings.Favorites.INTENT);
1959 final int titleIndex
1960 = c.getColumnIndexOrThrow(LauncherSettings.Favorites.TITLE);
1961 final int iconTypeIndex
1962 = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON_TYPE);
1963 final int iconIndex
1964 = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON);
1965 final int iconPackageIndex
1966 = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON_PACKAGE);
1967 final int iconResourceIndex
1968 = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON_RESOURCE);
1969 final int containerIndex
1970 = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CONTAINER);
1971 final int itemTypeIndex
1972 = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ITEM_TYPE);
1973 final int screenIndex
1974 = c.getColumnIndexOrThrow(LauncherSettings.Favorites.SCREEN);
1975 final int cellXIndex
1976 = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CELLX);
1977 final int cellYIndex
1978 = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CELLY);
1979 final int uriIndex
1980 = c.getColumnIndexOrThrow(LauncherSettings.Favorites.URI);
1981 final int displayModeIndex
1982 = c.getColumnIndexOrThrow(LauncherSettings.Favorites.DISPLAY_MODE);
Kenny Guyed131872014-04-30 03:02:21 +01001983 final int profileIndex
1984 = c.getColumnIndex(LauncherSettings.Favorites.PROFILE_ID);
Dan Sandlerd5024042014-01-09 15:01:33 -05001985
1986 int i = 0;
1987 int curX = 0;
1988 int curY = 0;
1989
1990 final LauncherAppState app = LauncherAppState.getInstance();
1991 final DeviceProfile grid = app.getDynamicGrid().getDeviceProfile();
1992 final int width = (int) grid.numColumns;
1993 final int height = (int) grid.numRows;
1994 final int hotseatWidth = (int) grid.numHotseatIcons;
1995
1996 final HashSet<String> seenIntents = new HashSet<String>(c.getCount());
1997
Adam Cohen72960972014-01-15 18:13:55 -08001998 final ArrayList<ContentValues> shortcuts = new ArrayList<ContentValues>();
1999 final ArrayList<ContentValues> folders = new ArrayList<ContentValues>();
Dan Sandlerab5fa3a2014-03-06 23:48:04 -05002000 final SparseArray<ContentValues> hotseat = new SparseArray<ContentValues>();
Dan Sandlerd5024042014-01-09 15:01:33 -05002001
2002 while (c.moveToNext()) {
2003 final int itemType = c.getInt(itemTypeIndex);
2004 if (itemType != Favorites.ITEM_TYPE_APPLICATION
2005 && itemType != Favorites.ITEM_TYPE_SHORTCUT
2006 && itemType != Favorites.ITEM_TYPE_FOLDER) {
2007 continue;
2008 }
2009
2010 final int cellX = c.getInt(cellXIndex);
2011 final int cellY = c.getInt(cellYIndex);
2012 final int screen = c.getInt(screenIndex);
2013 int container = c.getInt(containerIndex);
2014 final String intentStr = c.getString(intentIndex);
Kenny Guyed131872014-04-30 03:02:21 +01002015
2016 UserManagerCompat userManager = UserManagerCompat.getInstance(mContext);
2017 UserHandleCompat userHandle;
2018 final long userSerialNumber;
2019 if (profileIndex != -1 && !c.isNull(profileIndex)) {
2020 userSerialNumber = c.getInt(profileIndex);
2021 userHandle = userManager.getUserForSerialNumber(userSerialNumber);
2022 } else {
2023 // Default to the serial number of this user, for older
2024 // shortcuts.
2025 userHandle = UserHandleCompat.myUserHandle();
2026 userSerialNumber = userManager.getSerialNumberForUser(userHandle);
2027 }
Dan Sandlerd5024042014-01-09 15:01:33 -05002028 Launcher.addDumpLog(TAG, "migrating \""
Dan Sandlerab5fa3a2014-03-06 23:48:04 -05002029 + c.getString(titleIndex) + "\" ("
2030 + cellX + "," + cellY + "@"
2031 + LauncherSettings.Favorites.containerToString(container)
2032 + "/" + screen
2033 + "): " + intentStr, true);
Dan Sandlerd5024042014-01-09 15:01:33 -05002034
2035 if (itemType != Favorites.ITEM_TYPE_FOLDER) {
Adam Cohen556f6132014-01-15 15:18:08 -08002036
2037 final Intent intent;
2038 final ComponentName cn;
2039 try {
2040 intent = Intent.parseUri(intentStr, 0);
2041 } catch (URISyntaxException e) {
2042 // bogus intent?
2043 Launcher.addDumpLog(TAG,
2044 "skipping invalid intent uri", true);
2045 continue;
2046 }
2047
2048 cn = intent.getComponent();
Dan Sandlerd5024042014-01-09 15:01:33 -05002049 if (TextUtils.isEmpty(intentStr)) {
2050 // no intent? no icon
2051 Launcher.addDumpLog(TAG, "skipping empty intent", true);
2052 continue;
Adam Cohen72960972014-01-15 18:13:55 -08002053 } else if (cn != null &&
Kenny Guyed131872014-04-30 03:02:21 +01002054 !LauncherModel.isValidPackageActivity(mContext, cn,
2055 userHandle)) {
Adam Cohen556f6132014-01-15 15:18:08 -08002056 // component no longer exists.
Adam Cohen72960972014-01-15 18:13:55 -08002057 Launcher.addDumpLog(TAG, "skipping item whose component " +
Adam Cohen556f6132014-01-15 15:18:08 -08002058 "no longer exists.", true);
2059 continue;
Adam Cohen72960972014-01-15 18:13:55 -08002060 } else if (container ==
2061 LauncherSettings.Favorites.CONTAINER_DESKTOP) {
2062 // Dedupe icons directly on the workspace
2063
Adam Cohen556f6132014-01-15 15:18:08 -08002064 // Canonicalize
2065 // the Play Store sets the package parameter, but Launcher
2066 // does not, so we clear that out to keep them the same
2067 intent.setPackage(null);
2068 final String key = intent.toUri(0);
2069 if (seenIntents.contains(key)) {
2070 Launcher.addDumpLog(TAG, "skipping duplicate", true);
Dan Sandlerd5024042014-01-09 15:01:33 -05002071 continue;
Adam Cohen556f6132014-01-15 15:18:08 -08002072 } else {
2073 seenIntents.add(key);
Dan Sandlerd5024042014-01-09 15:01:33 -05002074 }
2075 }
2076 }
2077
2078 ContentValues values = new ContentValues(c.getColumnCount());
2079 values.put(LauncherSettings.Favorites._ID, c.getInt(idIndex));
2080 values.put(LauncherSettings.Favorites.INTENT, intentStr);
2081 values.put(LauncherSettings.Favorites.TITLE, c.getString(titleIndex));
2082 values.put(LauncherSettings.Favorites.ICON_TYPE,
2083 c.getInt(iconTypeIndex));
2084 values.put(LauncherSettings.Favorites.ICON, c.getBlob(iconIndex));
2085 values.put(LauncherSettings.Favorites.ICON_PACKAGE,
2086 c.getString(iconPackageIndex));
2087 values.put(LauncherSettings.Favorites.ICON_RESOURCE,
2088 c.getString(iconResourceIndex));
2089 values.put(LauncherSettings.Favorites.ITEM_TYPE, itemType);
2090 values.put(LauncherSettings.Favorites.APPWIDGET_ID, -1);
2091 values.put(LauncherSettings.Favorites.URI, c.getString(uriIndex));
2092 values.put(LauncherSettings.Favorites.DISPLAY_MODE,
2093 c.getInt(displayModeIndex));
Kenny Guyed131872014-04-30 03:02:21 +01002094 values.put(LauncherSettings.Favorites.PROFILE_ID, userSerialNumber);
Dan Sandlerd5024042014-01-09 15:01:33 -05002095
Dan Sandlerab5fa3a2014-03-06 23:48:04 -05002096 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2097 hotseat.put(screen, values);
Dan Sandlerd5024042014-01-09 15:01:33 -05002098 }
2099
2100 if (container != LauncherSettings.Favorites.CONTAINER_DESKTOP) {
2101 // In a folder or in the hotseat, preserve position
2102 values.put(LauncherSettings.Favorites.SCREEN, screen);
2103 values.put(LauncherSettings.Favorites.CELLX, cellX);
2104 values.put(LauncherSettings.Favorites.CELLY, cellY);
2105 } else {
Adam Cohen72960972014-01-15 18:13:55 -08002106 // For items contained directly on one of the workspace screen,
2107 // we'll determine their location (screen, x, y) in a second pass.
Dan Sandlerd5024042014-01-09 15:01:33 -05002108 }
2109
2110 values.put(LauncherSettings.Favorites.CONTAINER, container);
2111
Adam Cohen72960972014-01-15 18:13:55 -08002112 if (itemType != Favorites.ITEM_TYPE_FOLDER) {
2113 shortcuts.add(values);
2114 } else {
2115 folders.add(values);
2116 }
Dan Sandlerd5024042014-01-09 15:01:33 -05002117 }
2118
Dan Sandlerab5fa3a2014-03-06 23:48:04 -05002119 // Now that we have all the hotseat icons, let's go through them left-right
2120 // and assign valid locations for them in the new hotseat
2121 final int N = hotseat.size();
2122 for (int idx=0; idx<N; idx++) {
2123 int hotseatX = hotseat.keyAt(idx);
2124 ContentValues values = hotseat.valueAt(idx);
2125
2126 if (hotseatX == grid.hotseatAllAppsRank) {
2127 // let's drop this in the next available hole in the hotseat
2128 while (++hotseatX < hotseatWidth) {
2129 if (hotseat.get(hotseatX) == null) {
2130 // found a spot! move it here
2131 values.put(LauncherSettings.Favorites.SCREEN,
2132 hotseatX);
2133 break;
2134 }
2135 }
2136 }
2137 if (hotseatX >= hotseatWidth) {
2138 // no room for you in the hotseat? it's off to the desktop with you
2139 values.put(LauncherSettings.Favorites.CONTAINER,
2140 Favorites.CONTAINER_DESKTOP);
2141 }
2142 }
2143
Adam Cohen72960972014-01-15 18:13:55 -08002144 final ArrayList<ContentValues> allItems = new ArrayList<ContentValues>();
2145 // Folders first
2146 allItems.addAll(folders);
2147 // Then shortcuts
2148 allItems.addAll(shortcuts);
2149
2150 // Layout all the folders
2151 for (ContentValues values: allItems) {
2152 if (values.getAsInteger(LauncherSettings.Favorites.CONTAINER) !=
2153 LauncherSettings.Favorites.CONTAINER_DESKTOP) {
2154 // Hotseat items and folder items have already had their
2155 // location information set. Nothing to be done here.
2156 continue;
2157 }
2158 values.put(LauncherSettings.Favorites.SCREEN, curScreen);
2159 values.put(LauncherSettings.Favorites.CELLX, curX);
2160 values.put(LauncherSettings.Favorites.CELLY, curY);
2161 curX = (curX + 1) % width;
2162 if (curX == 0) {
2163 curY = (curY + 1);
2164 }
2165 // Leave the last row of icons blank on every screen
2166 if (curY == height - 1) {
2167 curScreen = (int) generateNewScreenId();
2168 curY = 0;
2169 }
2170 }
2171
2172 if (allItems.size() > 0) {
Dan Sandlerd5024042014-01-09 15:01:33 -05002173 db.beginTransaction();
2174 try {
Adam Cohen72960972014-01-15 18:13:55 -08002175 for (ContentValues row: allItems) {
2176 if (row == null) continue;
2177 if (dbInsertAndCheck(this, db, TABLE_FAVORITES, null, row)
Dan Sandlerd5024042014-01-09 15:01:33 -05002178 < 0) {
2179 return;
2180 } else {
2181 count++;
2182 }
2183 }
2184 db.setTransactionSuccessful();
2185 } finally {
2186 db.endTransaction();
2187 }
2188 }
2189
2190 db.beginTransaction();
2191 try {
2192 for (i=0; i<=curScreen; i++) {
2193 final ContentValues values = new ContentValues();
2194 values.put(LauncherSettings.WorkspaceScreens._ID, i);
2195 values.put(LauncherSettings.WorkspaceScreens.SCREEN_RANK, i);
2196 if (dbInsertAndCheck(this, db, TABLE_WORKSPACE_SCREENS, null, values)
2197 < 0) {
2198 return;
2199 }
2200 }
2201 db.setTransactionSuccessful();
2202 } finally {
2203 db.endTransaction();
2204 }
2205 }
2206 } finally {
2207 c.close();
2208 }
2209 }
2210
2211 Launcher.addDumpLog(TAG, "migrated " + count + " icons from Launcher2 into "
2212 + (curScreen+1) + " screens", true);
2213
2214 // ensure that new screens are created to hold these icons
2215 setFlagJustLoadedOldDb();
2216
2217 // Update max IDs; very important since we just grabbed IDs from another database
2218 mMaxItemId = initializeMaxItemId(db);
2219 mMaxScreenId = initializeMaxScreenId(db);
2220 if (LOGD) Log.d(TAG, "mMaxItemId: " + mMaxItemId + " mMaxScreenId: " + mMaxScreenId);
2221 }
Mike Cleronb87bd162009-10-30 16:36:56 -07002222 }
Daniel Lehmannc3a80402012-04-23 21:35:11 -07002223
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002224 /**
2225 * Build a query string that will match any row where the column matches
2226 * anything in the values list.
2227 */
Sunny Goyal0fe505b2014-08-06 09:55:36 -07002228 private static String buildOrWhereString(String column, int[] values) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002229 StringBuilder selectWhere = new StringBuilder();
2230 for (int i = values.length - 1; i >= 0; i--) {
2231 selectWhere.append(column).append("=").append(values[i]);
2232 if (i > 0) {
2233 selectWhere.append(" OR ");
2234 }
2235 }
2236 return selectWhere.toString();
2237 }
2238
Jeff Sharkey5aeef582014-04-14 13:26:42 -07002239 /**
2240 * Return attribute value, attempting launcher-specific namespace first
2241 * before falling back to anonymous attribute.
2242 */
Sunny Goyal0fe505b2014-08-06 09:55:36 -07002243 private static String getAttributeValue(XmlResourceParser parser, String attribute) {
Jeff Sharkey5aeef582014-04-14 13:26:42 -07002244 String value = parser.getAttributeValue(
2245 "http://schemas.android.com/apk/res-auto/com.android.launcher3", attribute);
2246 if (value == null) {
2247 value = parser.getAttributeValue(null, attribute);
2248 }
2249 return value;
2250 }
2251
2252 /**
2253 * Return attribute resource value, attempting launcher-specific namespace
2254 * first before falling back to anonymous attribute.
2255 */
Sunny Goyal0fe505b2014-08-06 09:55:36 -07002256 private static int getAttributeResourceValue(XmlResourceParser parser, String attribute,
Jeff Sharkey5aeef582014-04-14 13:26:42 -07002257 int defaultValue) {
2258 int value = parser.getAttributeResourceValue(
2259 "http://schemas.android.com/apk/res-auto/com.android.launcher3", attribute,
2260 defaultValue);
2261 if (value == defaultValue) {
2262 value = parser.getAttributeResourceValue(null, attribute, defaultValue);
2263 }
2264 return value;
2265 }
2266
2267 private static void copyInteger(ContentValues from, ContentValues to, String key) {
2268 to.put(key, from.getAsInteger(key));
2269 }
2270
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002271 static class SqlArguments {
2272 public final String table;
2273 public final String where;
2274 public final String[] args;
2275
2276 SqlArguments(Uri url, String where, String[] args) {
2277 if (url.getPathSegments().size() == 1) {
2278 this.table = url.getPathSegments().get(0);
2279 this.where = where;
2280 this.args = args;
2281 } else if (url.getPathSegments().size() != 2) {
2282 throw new IllegalArgumentException("Invalid URI: " + url);
2283 } else if (!TextUtils.isEmpty(where)) {
2284 throw new UnsupportedOperationException("WHERE clause not supported: " + url);
2285 } else {
2286 this.table = url.getPathSegments().get(0);
Daniel Lehmannc3a80402012-04-23 21:35:11 -07002287 this.where = "_id=" + ContentUris.parseId(url);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002288 this.args = null;
2289 }
2290 }
2291
2292 SqlArguments(Uri url) {
2293 if (url.getPathSegments().size() == 1) {
2294 table = url.getPathSegments().get(0);
2295 where = null;
2296 args = null;
2297 } else {
2298 throw new IllegalArgumentException("Invalid URI: " + url);
2299 }
2300 }
2301 }
Sunny Goyal0fe505b2014-08-06 09:55:36 -07002302
2303 static interface WorkspaceLoader {
2304 /**
2305 * @param screenIds A mutable list of screen its
2306 * @return the number of workspace items added.
2307 */
2308 int loadLayout(SQLiteDatabase db, ArrayList<Long> screenIds);
2309 }
2310
2311 private static class SimpleWorkspaceLoader implements WorkspaceLoader {
2312 private final Resources mRes;
2313 private final int mWorkspaceId;
2314 private final DatabaseHelper mHelper;
2315
2316 SimpleWorkspaceLoader(DatabaseHelper helper, Resources res, int workspaceId) {
2317 mHelper = helper;
2318 mRes = res;
2319 mWorkspaceId = workspaceId;
2320 }
2321
2322 @Override
2323 public int loadLayout(SQLiteDatabase db, ArrayList<Long> screenIds) {
2324 return mHelper.loadFavoritesRecursive(db, mRes, mWorkspaceId, screenIds);
2325 }
2326 }
Adam Cohen72960972014-01-15 18:13:55 -08002327}