blob: 72675b94d8e12e215e4acb5650c0f3da66b56fc9 [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
Joe Onoratoa5902522009-07-30 13:37:37 -070017package com.android.launcher2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Romain Guy629de3e2010-01-13 12:20:59 -080019import android.appwidget.AppWidgetManager;
20import android.appwidget.AppWidgetProviderInfo;
Joe Onoratof99f8c12009-10-31 17:27:36 -040021import android.content.BroadcastReceiver;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080022import android.content.ComponentName;
Romain Guy5c16f3e2010-01-12 17:24:58 -080023import android.content.ContentProviderClient;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080024import android.content.ContentResolver;
25import android.content.ContentValues;
26import android.content.Intent;
Joe Onorato0589f0f2010-02-08 13:44:00 -080027import android.content.Intent.ShortcutIconResource;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080028import android.content.Context;
29import android.content.pm.ActivityInfo;
30import android.content.pm.PackageManager;
Romain Guy5c16f3e2010-01-12 17:24:58 -080031import android.content.pm.ProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080032import android.content.pm.ResolveInfo;
33import android.content.res.Resources;
34import android.database.Cursor;
35import android.graphics.Bitmap;
36import android.graphics.BitmapFactory;
37import android.net.Uri;
Joe Onorato0589f0f2010-02-08 13:44:00 -080038import android.os.Parcelable;
Romain Guy5c16f3e2010-01-12 17:24:58 -080039import android.os.RemoteException;
Joe Onorato9c1289c2009-08-17 11:03:03 -040040import android.util.Log;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.os.Process;
Joe Onorato9c1289c2009-08-17 11:03:03 -040042import android.os.SystemClock;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080043
Joe Onorato9c1289c2009-08-17 11:03:03 -040044import java.lang.ref.WeakReference;
45import java.net.URISyntaxException;
46import java.text.Collator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080047import java.util.ArrayList;
Joe Onorato56d82912010-03-07 14:32:10 -050048import java.util.Arrays;
Joe Onorato9c1289c2009-08-17 11:03:03 -040049import java.util.Comparator;
50import java.util.Collections;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080051import java.util.HashMap;
52import java.util.List;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080053
Romain Guyedcce092010-03-04 13:03:17 -080054import com.android.launcher.R;
55
The Android Open Source Project31dd5032009-03-03 19:32:27 -080056/**
57 * Maintains in-memory state of the Launcher. It is expected that there should be only one
58 * LauncherModel object held in a static. Also provide APIs for updating the database state
The Android Open Source Projectbc219c32009-03-09 11:52:14 -070059 * for the Launcher.
The Android Open Source Project31dd5032009-03-03 19:32:27 -080060 */
Joe Onoratof99f8c12009-10-31 17:27:36 -040061public class LauncherModel extends BroadcastReceiver {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -080062 static final boolean DEBUG_LOADERS = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -040063 static final String TAG = "Launcher.Model";
The Android Open Source Projectf96811c2009-03-18 17:39:48 -070064
Joe Onoratof99f8c12009-10-31 17:27:36 -040065 private final LauncherApplication mApp;
Joe Onorato9c1289c2009-08-17 11:03:03 -040066 private final Object mLock = new Object();
67 private DeferredHandler mHandler = new DeferredHandler();
68 private Loader mLoader = new Loader();
The Android Open Source Project31dd5032009-03-03 19:32:27 -080069
Joe Onoratof99f8c12009-10-31 17:27:36 -040070 private boolean mBeforeFirstLoad = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -040071 private WeakReference<Callbacks> mCallbacks;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080072
Joe Onorato0589f0f2010-02-08 13:44:00 -080073 private AllAppsList mAllAppsList;
74 private IconCache mIconCache;
75
76 private Bitmap mDefaultIcon;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080077
Joe Onorato9c1289c2009-08-17 11:03:03 -040078 public interface Callbacks {
79 public int getCurrentWorkspaceScreen();
80 public void startBinding();
81 public void bindItems(ArrayList<ItemInfo> shortcuts, int start, int end);
Joe Onoratoad72e172009-11-06 16:25:04 -050082 public void bindFolders(HashMap<Long,FolderInfo> folders);
Joe Onorato9c1289c2009-08-17 11:03:03 -040083 public void finishBindingItems();
84 public void bindAppWidget(LauncherAppWidgetInfo info);
85 public void bindAllApplications(ArrayList<ApplicationInfo> apps);
Joe Onorato64e6be72010-03-05 15:05:52 -050086 public void bindAppsAdded(ArrayList<ApplicationInfo> apps);
87 public void bindAppsUpdated(ArrayList<ApplicationInfo> apps);
88 public void bindAppsRemoved(ArrayList<ApplicationInfo> apps);
Joe Onorato9c1289c2009-08-17 11:03:03 -040089 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -080090
Joe Onorato0589f0f2010-02-08 13:44:00 -080091 LauncherModel(LauncherApplication app, IconCache iconCache) {
Joe Onoratof99f8c12009-10-31 17:27:36 -040092 mApp = app;
Joe Onorato0589f0f2010-02-08 13:44:00 -080093 mAllAppsList = new AllAppsList(iconCache);
94 mIconCache = iconCache;
95
96 mDefaultIcon = Utilities.createIconBitmap(
97 app.getPackageManager().getDefaultActivityIcon(), app);
98 }
99
Joe Onorato56d82912010-03-07 14:32:10 -0500100 public Bitmap getFallbackIcon() {
Joe Onorato0589f0f2010-02-08 13:44:00 -0800101 return Bitmap.createBitmap(mDefaultIcon);
Joe Onoratof99f8c12009-10-31 17:27:36 -0400102 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800103
Joe Onorato9c1289c2009-08-17 11:03:03 -0400104 /**
105 * Adds an item to the DB if it was not created previously, or move it to a new
106 * <container, screen, cellX, cellY>
107 */
108 static void addOrMoveItemInDatabase(Context context, ItemInfo item, long container,
109 int screen, int cellX, int cellY) {
110 if (item.container == ItemInfo.NO_ID) {
111 // From all apps
112 addItemToDatabase(context, item, container, screen, cellX, cellY, false);
113 } else {
114 // From somewhere else
115 moveItemInDatabase(context, item, container, screen, cellX, cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800116 }
117 }
118
119 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -0400120 * Move an item in the DB to a new <container, screen, cellX, cellY>
The Android Open Source Projectbc219c32009-03-09 11:52:14 -0700121 */
Joe Onorato9c1289c2009-08-17 11:03:03 -0400122 static void moveItemInDatabase(Context context, ItemInfo item, long container, int screen,
123 int cellX, int cellY) {
124 item.container = container;
125 item.screen = screen;
126 item.cellX = cellX;
127 item.cellY = cellY;
128
129 final ContentValues values = new ContentValues();
130 final ContentResolver cr = context.getContentResolver();
131
132 values.put(LauncherSettings.Favorites.CONTAINER, item.container);
133 values.put(LauncherSettings.Favorites.CELLX, item.cellX);
134 values.put(LauncherSettings.Favorites.CELLY, item.cellY);
135 values.put(LauncherSettings.Favorites.SCREEN, item.screen);
136
137 cr.update(LauncherSettings.Favorites.getContentUri(item.id, false), values, null, null);
The Android Open Source Projectbc219c32009-03-09 11:52:14 -0700138 }
139
140 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -0400141 * Returns true if the shortcuts already exists in the database.
142 * we identify a shortcut by its title and intent.
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800143 */
Joe Onorato9c1289c2009-08-17 11:03:03 -0400144 static boolean shortcutExists(Context context, String title, Intent intent) {
145 final ContentResolver cr = context.getContentResolver();
146 Cursor c = cr.query(LauncherSettings.Favorites.CONTENT_URI,
147 new String[] { "title", "intent" }, "title=? and intent=?",
148 new String[] { title, intent.toUri(0) }, null);
149 boolean result = false;
150 try {
151 result = c.moveToFirst();
152 } finally {
153 c.close();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800154 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400155 return result;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -0700156 }
157
Joe Onorato9c1289c2009-08-17 11:03:03 -0400158 /**
159 * Find a folder in the db, creating the FolderInfo if necessary, and adding it to folderList.
160 */
161 FolderInfo getFolderById(Context context, HashMap<Long,FolderInfo> folderList, long id) {
162 final ContentResolver cr = context.getContentResolver();
163 Cursor c = cr.query(LauncherSettings.Favorites.CONTENT_URI, null,
164 "_id=? and (itemType=? or itemType=?)",
165 new String[] { String.valueOf(id),
166 String.valueOf(LauncherSettings.Favorites.ITEM_TYPE_USER_FOLDER),
167 String.valueOf(LauncherSettings.Favorites.ITEM_TYPE_LIVE_FOLDER) }, null);
The Android Open Source Projectca9475f2009-03-13 13:04:24 -0700168
Joe Onorato9c1289c2009-08-17 11:03:03 -0400169 try {
170 if (c.moveToFirst()) {
171 final int itemTypeIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ITEM_TYPE);
172 final int titleIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.TITLE);
173 final int containerIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CONTAINER);
174 final int screenIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.SCREEN);
175 final int cellXIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CELLX);
176 final int cellYIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CELLY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800177
Joe Onorato9c1289c2009-08-17 11:03:03 -0400178 FolderInfo folderInfo = null;
179 switch (c.getInt(itemTypeIndex)) {
180 case LauncherSettings.Favorites.ITEM_TYPE_USER_FOLDER:
181 folderInfo = findOrMakeUserFolder(folderList, id);
182 break;
183 case LauncherSettings.Favorites.ITEM_TYPE_LIVE_FOLDER:
184 folderInfo = findOrMakeLiveFolder(folderList, id);
185 break;
The Android Open Source Projectf96811c2009-03-18 17:39:48 -0700186 }
187
Joe Onorato9c1289c2009-08-17 11:03:03 -0400188 folderInfo.title = c.getString(titleIndex);
189 folderInfo.id = id;
190 folderInfo.container = c.getInt(containerIndex);
191 folderInfo.screen = c.getInt(screenIndex);
192 folderInfo.cellX = c.getInt(cellXIndex);
193 folderInfo.cellY = c.getInt(cellYIndex);
194
195 return folderInfo;
The Android Open Source Projectf96811c2009-03-18 17:39:48 -0700196 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400197 } finally {
198 c.close();
The Android Open Source Projectf96811c2009-03-18 17:39:48 -0700199 }
200
201 return null;
202 }
203
Joe Onorato9c1289c2009-08-17 11:03:03 -0400204 /**
205 * Add an item to the database in a specified container. Sets the container, screen, cellX and
206 * cellY fields of the item. Also assigns an ID to the item.
207 */
208 static void addItemToDatabase(Context context, ItemInfo item, long container,
209 int screen, int cellX, int cellY, boolean notify) {
210 item.container = container;
211 item.screen = screen;
212 item.cellX = cellX;
213 item.cellY = cellY;
214
215 final ContentValues values = new ContentValues();
216 final ContentResolver cr = context.getContentResolver();
217
218 item.onAddToDatabase(values);
219
220 Uri result = cr.insert(notify ? LauncherSettings.Favorites.CONTENT_URI :
221 LauncherSettings.Favorites.CONTENT_URI_NO_NOTIFICATION, values);
222
223 if (result != null) {
224 item.id = Integer.parseInt(result.getPathSegments().get(1));
The Android Open Source Projectf96811c2009-03-18 17:39:48 -0700225 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -0700226 }
227
Joe Onorato9c1289c2009-08-17 11:03:03 -0400228 /**
229 * Update an item to the database in a specified container.
230 */
231 static void updateItemInDatabase(Context context, ItemInfo item) {
232 final ContentValues values = new ContentValues();
233 final ContentResolver cr = context.getContentResolver();
234
235 item.onAddToDatabase(values);
236
237 cr.update(LauncherSettings.Favorites.getContentUri(item.id, false), values, null, null);
238 }
239
240 /**
241 * Removes the specified item from the database
242 * @param context
243 * @param item
244 */
245 static void deleteItemFromDatabase(Context context, ItemInfo item) {
246 final ContentResolver cr = context.getContentResolver();
247
248 cr.delete(LauncherSettings.Favorites.getContentUri(item.id, false), null, null);
249 }
250
251 /**
252 * Remove the contents of the specified folder from the database
253 */
254 static void deleteUserFolderContentsFromDatabase(Context context, UserFolderInfo info) {
255 final ContentResolver cr = context.getContentResolver();
256
257 cr.delete(LauncherSettings.Favorites.getContentUri(info.id, false), null, null);
258 cr.delete(LauncherSettings.Favorites.CONTENT_URI,
259 LauncherSettings.Favorites.CONTAINER + "=" + info.id, null);
260 }
261
262 /**
263 * Set this as the current Launcher activity object for the loader.
264 */
265 public void initialize(Callbacks callbacks) {
266 synchronized (mLock) {
267 mCallbacks = new WeakReference<Callbacks>(callbacks);
268 }
269 }
270
271 public void startLoader(Context context, boolean isLaunching) {
272 mLoader.startLoader(context, isLaunching);
273 }
274
275 public void stopLoader() {
276 mLoader.stopLoader();
277 }
278
Joe Onorato1d8e7bb2009-10-15 19:49:43 -0700279 /**
280 * We pick up most of the changes to all apps.
281 */
282 public void setAllAppsDirty() {
283 mLoader.setAllAppsDirty();
284 }
285
Joe Onorato9c1289c2009-08-17 11:03:03 -0400286 public void setWorkspaceDirty() {
287 mLoader.setWorkspaceDirty();
288 }
289
290 /**
291 * Call from the handler for ACTION_PACKAGE_ADDED, ACTION_PACKAGE_REMOVED and
292 * ACTION_PACKAGE_CHANGED.
293 */
Joe Onoratof99f8c12009-10-31 17:27:36 -0400294 public void onReceive(Context context, Intent intent) {
295 // Use the app as the context.
296 context = mApp;
297
Joe Onorato9c1289c2009-08-17 11:03:03 -0400298 ArrayList<ApplicationInfo> added = null;
299 ArrayList<ApplicationInfo> removed = null;
300 ArrayList<ApplicationInfo> modified = null;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400301
302 synchronized (mLock) {
Joe Onoratof99f8c12009-10-31 17:27:36 -0400303 if (mBeforeFirstLoad) {
304 // If we haven't even loaded yet, don't bother, since we'll just pick
305 // up the changes.
306 return;
307 }
308
Joe Onorato9c1289c2009-08-17 11:03:03 -0400309 final String action = intent.getAction();
Joe Onorato9c1289c2009-08-17 11:03:03 -0400310
Joe Onorato64e6be72010-03-05 15:05:52 -0500311 if (Intent.ACTION_PACKAGE_CHANGED.equals(action)
312 || Intent.ACTION_PACKAGE_REMOVED.equals(action)
313 || Intent.ACTION_PACKAGE_ADDED.equals(action)) {
314 final String packageName = intent.getData().getSchemeSpecificPart();
315 final boolean replacing = intent.getBooleanExtra(Intent.EXTRA_REPLACING, false);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400316
Joe Onorato64e6be72010-03-05 15:05:52 -0500317 if (packageName == null || packageName.length() == 0) {
318 // they sent us a bad intent
319 return;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400320 }
Joe Onorato64e6be72010-03-05 15:05:52 -0500321
322 if (Intent.ACTION_PACKAGE_CHANGED.equals(action)) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400323 mAllAppsList.updatePackage(context, packageName);
Joe Onorato64e6be72010-03-05 15:05:52 -0500324 } else if (Intent.ACTION_PACKAGE_REMOVED.equals(action)) {
325 if (!replacing) {
326 mAllAppsList.removePackage(packageName);
327 }
328 // else, we are replacing the package, so a PACKAGE_ADDED will be sent
329 // later, we will update the package at this time
330 } else if (Intent.ACTION_PACKAGE_ADDED.equals(action)) {
331 if (!replacing) {
332 mAllAppsList.addPackage(context, packageName);
333 } else {
334 mAllAppsList.updatePackage(context, packageName);
335 }
336 }
Joe Onorato56d82912010-03-07 14:32:10 -0500337
338 if (mAllAppsList.added.size() > 0) {
339 added = mAllAppsList.added;
340 mAllAppsList.added = new ArrayList<ApplicationInfo>();
341 }
342 if (mAllAppsList.removed.size() > 0) {
343 removed = mAllAppsList.removed;
344 mAllAppsList.removed = new ArrayList<ApplicationInfo>();
345 for (ApplicationInfo info: removed) {
346 mIconCache.remove(info.intent.getComponent());
347 }
348 }
349 if (mAllAppsList.modified.size() > 0) {
350 modified = mAllAppsList.modified;
351 mAllAppsList.modified = new ArrayList<ApplicationInfo>();
352 }
353
354 final Callbacks callbacks = mCallbacks != null ? mCallbacks.get() : null;
355 if (callbacks == null) {
356 Log.w(TAG, "Nobody to tell about the new app. Launcher is probably loading.");
357 return;
358 }
359
360 if (added != null) {
361 final ArrayList<ApplicationInfo> addedFinal = added;
362 mHandler.post(new Runnable() {
363 public void run() {
364 callbacks.bindAppsAdded(addedFinal);
365 }
366 });
367 }
368 if (modified != null) {
369 final ArrayList<ApplicationInfo> modifiedFinal = modified;
370 mHandler.post(new Runnable() {
371 public void run() {
372 callbacks.bindAppsUpdated(modifiedFinal);
373 }
374 });
375 }
376 if (removed != null) {
377 final ArrayList<ApplicationInfo> removedFinal = removed;
378 mHandler.post(new Runnable() {
379 public void run() {
380 callbacks.bindAppsRemoved(removedFinal);
381 }
382 });
383 }
Joe Onorato64e6be72010-03-05 15:05:52 -0500384 } else {
385 if (Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE.equals(action)) {
386 String packages[] = intent.getStringArrayExtra(
387 Intent.EXTRA_CHANGED_PACKAGE_LIST);
388 if (packages == null || packages.length == 0) {
389 return;
390 }
Joe Onorato56d82912010-03-07 14:32:10 -0500391 setAllAppsDirty();
392 setWorkspaceDirty();
393 startLoader(context, false);
Joe Onorato64e6be72010-03-05 15:05:52 -0500394 } else if (Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE.equals(action)) {
395 String packages[] = intent.getStringArrayExtra(
396 Intent.EXTRA_CHANGED_PACKAGE_LIST);
397 if (packages == null || packages.length == 0) {
398 return;
399 }
Joe Onorato56d82912010-03-07 14:32:10 -0500400 setAllAppsDirty();
401 setWorkspaceDirty();
402 startLoader(context, false);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400403 }
404 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400405 }
406 }
407
408 public class Loader {
409 private static final int ITEMS_CHUNK = 6;
410
411 private LoaderThread mLoaderThread;
412
413 private int mLastWorkspaceSeq = 0;
414 private int mWorkspaceSeq = 1;
415
416 private int mLastAllAppsSeq = 0;
417 private int mAllAppsSeq = 1;
418
Romain Guy84f296c2009-11-04 15:00:44 -0800419 final ArrayList<ItemInfo> mItems = new ArrayList<ItemInfo>();
420 final ArrayList<LauncherAppWidgetInfo> mAppWidgets = new ArrayList<LauncherAppWidgetInfo>();
Joe Onoratoad72e172009-11-06 16:25:04 -0500421 final HashMap<Long, FolderInfo> mFolders = new HashMap<Long, FolderInfo>();
Joe Onorato9c1289c2009-08-17 11:03:03 -0400422
423 /**
424 * Call this from the ui thread so the handler is initialized on the correct thread.
425 */
426 public Loader() {
427 }
428
429 public void startLoader(Context context, boolean isLaunching) {
430 synchronized (mLock) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800431 if (DEBUG_LOADERS) {
432 Log.d(TAG, "startLoader isLaunching=" + isLaunching);
433 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400434 // Don't bother to start the thread if we know it's not going to do anything
435 if (mCallbacks.get() != null) {
436 LoaderThread oldThread = mLoaderThread;
437 if (oldThread != null) {
438 if (oldThread.isLaunching()) {
439 // don't downgrade isLaunching if we're already running
440 isLaunching = true;
441 }
442 oldThread.stopLocked();
443 }
444 mLoaderThread = new LoaderThread(context, oldThread, isLaunching);
445 mLoaderThread.start();
446 }
447 }
448 }
449
450 public void stopLoader() {
451 synchronized (mLock) {
452 if (mLoaderThread != null) {
453 mLoaderThread.stopLocked();
454 }
455 }
456 }
457
458 public void setWorkspaceDirty() {
459 synchronized (mLock) {
460 mWorkspaceSeq++;
461 }
462 }
463
464 public void setAllAppsDirty() {
465 synchronized (mLock) {
466 mAllAppsSeq++;
467 }
468 }
469
470 /**
471 * Runnable for the thread that loads the contents of the launcher:
472 * - workspace icons
473 * - widgets
474 * - all apps icons
475 */
476 private class LoaderThread extends Thread {
477 private Context mContext;
478 private Thread mWaitThread;
479 private boolean mIsLaunching;
480 private boolean mStopped;
481 private boolean mWorkspaceDoneBinding;
482
483 LoaderThread(Context context, Thread waitThread, boolean isLaunching) {
484 mContext = context;
485 mWaitThread = waitThread;
486 mIsLaunching = isLaunching;
487 }
488
489 boolean isLaunching() {
490 return mIsLaunching;
491 }
492
493 /**
494 * If another LoaderThread was supplied, we need to wait for that to finish before
495 * we start our processing. This keeps the ordering of the setting and clearing
496 * of the dirty flags correct by making sure we don't start processing stuff until
497 * they've had a chance to re-set them. We do this waiting the worker thread, not
498 * the ui thread to avoid ANRs.
499 */
500 private void waitForOtherThread() {
501 if (mWaitThread != null) {
502 boolean done = false;
503 while (!done) {
504 try {
505 mWaitThread.join();
Joe Onoratoefabe002009-08-28 09:38:18 -0700506 done = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400507 } catch (InterruptedException ex) {
Romain Guy84f296c2009-11-04 15:00:44 -0800508 // Ignore
Joe Onorato9c1289c2009-08-17 11:03:03 -0400509 }
510 }
511 mWaitThread = null;
512 }
513 }
514
515 public void run() {
516 waitForOtherThread();
517
518 // Elevate priority when Home launches for the first time to avoid
519 // starving at boot time. Staring at a blank home is not cool.
520 synchronized (mLock) {
521 android.os.Process.setThreadPriority(mIsLaunching
522 ? Process.THREAD_PRIORITY_DEFAULT : Process.THREAD_PRIORITY_BACKGROUND);
523 }
524
525 // Load the workspace only if it's dirty.
526 int workspaceSeq;
527 boolean workspaceDirty;
528 synchronized (mLock) {
529 workspaceSeq = mWorkspaceSeq;
530 workspaceDirty = mWorkspaceSeq != mLastWorkspaceSeq;
531 }
532 if (workspaceDirty) {
533 loadWorkspace();
534 }
535 synchronized (mLock) {
536 // If we're not stopped, and nobody has incremented mWorkspaceSeq.
537 if (mStopped) {
538 return;
539 }
540 if (workspaceSeq == mWorkspaceSeq) {
541 mLastWorkspaceSeq = mWorkspaceSeq;
542 }
543 }
544
545 // Bind the workspace
546 bindWorkspace();
547
548 // Wait until the either we're stopped or the other threads are done.
549 // This way we don't start loading all apps until the workspace has settled
550 // down.
551 synchronized (LoaderThread.this) {
Joe Onorato080d9b62009-11-02 12:01:11 -0500552 mHandler.postIdle(new Runnable() {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400553 public void run() {
554 synchronized (LoaderThread.this) {
555 mWorkspaceDoneBinding = true;
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800556 if (DEBUG_LOADERS) {
557 Log.d(TAG, "done with workspace");
558 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400559 LoaderThread.this.notify();
560 }
561 }
562 });
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800563 if (DEBUG_LOADERS) {
564 Log.d(TAG, "waiting to be done with workspace");
565 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400566 while (!mStopped && !mWorkspaceDoneBinding) {
567 try {
568 this.wait();
569 } catch (InterruptedException ex) {
Romain Guy84f296c2009-11-04 15:00:44 -0800570 // Ignore
Joe Onorato9c1289c2009-08-17 11:03:03 -0400571 }
572 }
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800573 if (DEBUG_LOADERS) {
574 Log.d(TAG, "done waiting to be done with workspace");
575 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400576 }
577
578 // Load all apps if they're dirty
579 int allAppsSeq;
580 boolean allAppsDirty;
581 synchronized (mLock) {
582 allAppsSeq = mAllAppsSeq;
583 allAppsDirty = mAllAppsSeq != mLastAllAppsSeq;
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800584 if (DEBUG_LOADERS) {
585 Log.d(TAG, "mAllAppsSeq=" + mAllAppsSeq
586 + " mLastAllAppsSeq=" + mLastAllAppsSeq + " allAppsDirty");
587 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400588 }
589 if (allAppsDirty) {
590 loadAllApps();
591 }
592 synchronized (mLock) {
593 // If we're not stopped, and nobody has incremented mAllAppsSeq.
594 if (mStopped) {
595 return;
596 }
597 if (allAppsSeq == mAllAppsSeq) {
598 mLastAllAppsSeq = mAllAppsSeq;
599 }
600 }
601
602 // Bind all apps
Joe Onorato34b02492009-10-14 11:13:48 -0700603 if (allAppsDirty) {
604 bindAllApps();
605 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400606
607 // Clear out this reference, otherwise we end up holding it until all of the
608 // callback runnables are done.
609 mContext = null;
610
611 synchronized (mLock) {
612 // Setting the reference is atomic, but we can't do it inside the other critical
613 // sections.
614 mLoaderThread = null;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400615 }
616 }
617
618 public void stopLocked() {
619 synchronized (LoaderThread.this) {
620 mStopped = true;
621 this.notify();
622 }
623 }
624
625 /**
626 * Gets the callbacks object. If we've been stopped, or if the launcher object
Joe Onoratoc131b742010-03-11 15:45:05 -0800627 * has somehow been garbage collected, return null instead. Pass in the Callbacks
628 * object that was around when the deferred message was scheduled, and if there's
629 * a new Callbacks object around then also return null. This will save us from
630 * calling onto it with data that will be ignored.
Joe Onorato9c1289c2009-08-17 11:03:03 -0400631 */
Joe Onoratoc131b742010-03-11 15:45:05 -0800632 Callbacks tryGetCallbacks(Callbacks oldCallbacks) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400633 synchronized (mLock) {
634 if (mStopped) {
635 return null;
636 }
637
638 final Callbacks callbacks = mCallbacks.get();
Joe Onoratoc131b742010-03-11 15:45:05 -0800639 if (callbacks != oldCallbacks) {
640 return null;
641 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400642 if (callbacks == null) {
643 Log.w(TAG, "no mCallbacks");
644 return null;
645 }
646
647 return callbacks;
648 }
649 }
650
651 private void loadWorkspace() {
652 long t = SystemClock.uptimeMillis();
653
654 final Context context = mContext;
655 final ContentResolver contentResolver = context.getContentResolver();
656 final PackageManager manager = context.getPackageManager();
Romain Guy629de3e2010-01-13 12:20:59 -0800657 final AppWidgetManager widgets = AppWidgetManager.getInstance(context);
Romain Guy5c16f3e2010-01-12 17:24:58 -0800658 final boolean isSafeMode = manager.isSafeMode();
Joe Onorato9c1289c2009-08-17 11:03:03 -0400659
Joe Onorato3c2f7e12009-10-31 19:17:31 -0400660 mItems.clear();
Joe Onorato511ab642009-11-08 14:14:07 -0500661 mAppWidgets.clear();
Joe Onorato1db7a972009-11-16 18:32:22 -0800662 mFolders.clear();
Joe Onorato3c2f7e12009-10-31 19:17:31 -0400663
Romain Guy5c16f3e2010-01-12 17:24:58 -0800664 final ArrayList<Long> itemsToRemove = new ArrayList<Long>();
665
Joe Onorato9c1289c2009-08-17 11:03:03 -0400666 final Cursor c = contentResolver.query(
667 LauncherSettings.Favorites.CONTENT_URI, null, null, null, null);
668
669 try {
670 final int idIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites._ID);
671 final int intentIndex = c.getColumnIndexOrThrow
672 (LauncherSettings.Favorites.INTENT);
673 final int titleIndex = c.getColumnIndexOrThrow
674 (LauncherSettings.Favorites.TITLE);
675 final int iconTypeIndex = c.getColumnIndexOrThrow(
676 LauncherSettings.Favorites.ICON_TYPE);
677 final int iconIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON);
678 final int iconPackageIndex = c.getColumnIndexOrThrow(
679 LauncherSettings.Favorites.ICON_PACKAGE);
680 final int iconResourceIndex = c.getColumnIndexOrThrow(
681 LauncherSettings.Favorites.ICON_RESOURCE);
682 final int containerIndex = c.getColumnIndexOrThrow(
683 LauncherSettings.Favorites.CONTAINER);
684 final int itemTypeIndex = c.getColumnIndexOrThrow(
685 LauncherSettings.Favorites.ITEM_TYPE);
686 final int appWidgetIdIndex = c.getColumnIndexOrThrow(
687 LauncherSettings.Favorites.APPWIDGET_ID);
688 final int screenIndex = c.getColumnIndexOrThrow(
689 LauncherSettings.Favorites.SCREEN);
690 final int cellXIndex = c.getColumnIndexOrThrow
691 (LauncherSettings.Favorites.CELLX);
692 final int cellYIndex = c.getColumnIndexOrThrow
693 (LauncherSettings.Favorites.CELLY);
694 final int spanXIndex = c.getColumnIndexOrThrow
695 (LauncherSettings.Favorites.SPANX);
696 final int spanYIndex = c.getColumnIndexOrThrow(
697 LauncherSettings.Favorites.SPANY);
698 final int uriIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.URI);
699 final int displayModeIndex = c.getColumnIndexOrThrow(
700 LauncherSettings.Favorites.DISPLAY_MODE);
701
Joe Onorato0589f0f2010-02-08 13:44:00 -0800702 ShortcutInfo info;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400703 String intentDescription;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400704 LauncherAppWidgetInfo appWidgetInfo;
705 int container;
706 long id;
707 Intent intent;
708
709 while (!mStopped && c.moveToNext()) {
710 try {
711 int itemType = c.getInt(itemTypeIndex);
712
713 switch (itemType) {
714 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
715 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
716 intentDescription = c.getString(intentIndex);
717 try {
718 intent = Intent.parseUri(intentDescription, 0);
719 } catch (URISyntaxException e) {
720 continue;
721 }
722
723 if (itemType == LauncherSettings.Favorites.ITEM_TYPE_APPLICATION) {
Joe Onorato56d82912010-03-07 14:32:10 -0500724 info = getShortcutInfo(manager, intent, context, c, iconIndex,
725 titleIndex);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400726 } else {
Joe Onorato0589f0f2010-02-08 13:44:00 -0800727 info = getShortcutInfo(c, context, iconTypeIndex,
Joe Onorato56d82912010-03-07 14:32:10 -0500728 iconPackageIndex, iconResourceIndex, iconIndex,
729 titleIndex);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400730 }
731
732 if (info != null) {
Joe Onorato56d82912010-03-07 14:32:10 -0500733 updateSavedIcon(context, info, c, iconIndex);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400734
Joe Onorato56d82912010-03-07 14:32:10 -0500735 info.intent = intent;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400736 info.id = c.getLong(idIndex);
737 container = c.getInt(containerIndex);
738 info.container = container;
739 info.screen = c.getInt(screenIndex);
740 info.cellX = c.getInt(cellXIndex);
741 info.cellY = c.getInt(cellYIndex);
742
743 switch (container) {
744 case LauncherSettings.Favorites.CONTAINER_DESKTOP:
745 mItems.add(info);
746 break;
747 default:
748 // Item is in a user folder
749 UserFolderInfo folderInfo =
Joe Onoratoad72e172009-11-06 16:25:04 -0500750 findOrMakeUserFolder(mFolders, container);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400751 folderInfo.add(info);
752 break;
753 }
Joe Onorato56d82912010-03-07 14:32:10 -0500754 } else {
755 // Failed to load the shortcut, probably because the
756 // activity manager couldn't resolve it (maybe the app
757 // was uninstalled), or the db row was somehow screwed up.
758 // Delete it.
759 id = c.getLong(idIndex);
760 Log.e(TAG, "Error loading shortcut " + id + ", removing it");
761 contentResolver.delete(LauncherSettings.Favorites.getContentUri(
762 id, false), null, null);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400763 }
764 break;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400765
Joe Onoratoad72e172009-11-06 16:25:04 -0500766 case LauncherSettings.Favorites.ITEM_TYPE_USER_FOLDER:
Joe Onorato9c1289c2009-08-17 11:03:03 -0400767 id = c.getLong(idIndex);
Joe Onoratoad72e172009-11-06 16:25:04 -0500768 UserFolderInfo folderInfo = findOrMakeUserFolder(mFolders, id);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400769
770 folderInfo.title = c.getString(titleIndex);
771
772 folderInfo.id = id;
773 container = c.getInt(containerIndex);
774 folderInfo.container = container;
775 folderInfo.screen = c.getInt(screenIndex);
776 folderInfo.cellX = c.getInt(cellXIndex);
777 folderInfo.cellY = c.getInt(cellYIndex);
778
779 switch (container) {
780 case LauncherSettings.Favorites.CONTAINER_DESKTOP:
781 mItems.add(folderInfo);
782 break;
783 }
Joe Onoratoad72e172009-11-06 16:25:04 -0500784
785 mFolders.put(folderInfo.id, folderInfo);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400786 break;
Joe Onoratoad72e172009-11-06 16:25:04 -0500787
Joe Onorato9c1289c2009-08-17 11:03:03 -0400788 case LauncherSettings.Favorites.ITEM_TYPE_LIVE_FOLDER:
Joe Onorato9c1289c2009-08-17 11:03:03 -0400789 id = c.getLong(idIndex);
Romain Guy5c16f3e2010-01-12 17:24:58 -0800790 Uri uri = Uri.parse(c.getString(uriIndex));
Joe Onorato9c1289c2009-08-17 11:03:03 -0400791
Romain Guy5c16f3e2010-01-12 17:24:58 -0800792 // Make sure the live folder exists
793 final ProviderInfo providerInfo =
794 context.getPackageManager().resolveContentProvider(
795 uri.getAuthority(), 0);
796
797 if (providerInfo == null && !isSafeMode) {
798 itemsToRemove.add(id);
799 } else {
800 LiveFolderInfo liveFolderInfo = findOrMakeLiveFolder(mFolders, id);
801
802 intentDescription = c.getString(intentIndex);
803 intent = null;
804 if (intentDescription != null) {
805 try {
806 intent = Intent.parseUri(intentDescription, 0);
807 } catch (URISyntaxException e) {
808 // Ignore, a live folder might not have a base intent
809 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400810 }
Romain Guy5c16f3e2010-01-12 17:24:58 -0800811
812 liveFolderInfo.title = c.getString(titleIndex);
813 liveFolderInfo.id = id;
814 liveFolderInfo.uri = uri;
815 container = c.getInt(containerIndex);
816 liveFolderInfo.container = container;
817 liveFolderInfo.screen = c.getInt(screenIndex);
818 liveFolderInfo.cellX = c.getInt(cellXIndex);
819 liveFolderInfo.cellY = c.getInt(cellYIndex);
820 liveFolderInfo.baseIntent = intent;
821 liveFolderInfo.displayMode = c.getInt(displayModeIndex);
822
823 loadLiveFolderIcon(context, c, iconTypeIndex, iconPackageIndex,
824 iconResourceIndex, liveFolderInfo);
825
826 switch (container) {
827 case LauncherSettings.Favorites.CONTAINER_DESKTOP:
828 mItems.add(liveFolderInfo);
829 break;
830 }
831 mFolders.put(liveFolderInfo.id, liveFolderInfo);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400832 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400833 break;
Joe Onoratoad72e172009-11-06 16:25:04 -0500834
Joe Onorato9c1289c2009-08-17 11:03:03 -0400835 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
836 // Read all Launcher-specific widget details
837 int appWidgetId = c.getInt(appWidgetIdIndex);
Romain Guy629de3e2010-01-13 12:20:59 -0800838 id = c.getLong(idIndex);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400839
Romain Guy629de3e2010-01-13 12:20:59 -0800840 final AppWidgetProviderInfo provider =
841 widgets.getAppWidgetInfo(appWidgetId);
842
843 if (!isSafeMode && (provider == null || provider.provider == null ||
844 provider.provider.getPackageName() == null)) {
Joe Onorato8ddc4fd2010-03-17 09:14:50 -0700845 Log.e(TAG, "Deleting widget that isn't installed anymore: id="
846 + id + " appWidgetId=" + appWidgetId);
Romain Guy629de3e2010-01-13 12:20:59 -0800847 itemsToRemove.add(id);
848 } else {
849 appWidgetInfo = new LauncherAppWidgetInfo(appWidgetId);
850 appWidgetInfo.id = id;
851 appWidgetInfo.screen = c.getInt(screenIndex);
852 appWidgetInfo.cellX = c.getInt(cellXIndex);
853 appWidgetInfo.cellY = c.getInt(cellYIndex);
854 appWidgetInfo.spanX = c.getInt(spanXIndex);
855 appWidgetInfo.spanY = c.getInt(spanYIndex);
856
857 container = c.getInt(containerIndex);
858 if (container != LauncherSettings.Favorites.CONTAINER_DESKTOP) {
859 Log.e(TAG, "Widget found where container "
860 + "!= CONTAINER_DESKTOP -- ignoring!");
861 continue;
862 }
863 appWidgetInfo.container = c.getInt(containerIndex);
864
865 mAppWidgets.add(appWidgetInfo);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400866 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400867 break;
868 }
869 } catch (Exception e) {
870 Log.w(TAG, "Desktop items loading interrupted:", e);
871 }
872 }
873 } finally {
874 c.close();
875 }
Romain Guy5c16f3e2010-01-12 17:24:58 -0800876
877 if (itemsToRemove.size() > 0) {
878 ContentProviderClient client = contentResolver.acquireContentProviderClient(
879 LauncherSettings.Favorites.CONTENT_URI);
880 // Remove dead items
881 for (long id : itemsToRemove) {
882 if (DEBUG_LOADERS) {
883 Log.d(TAG, "Removed id = " + id);
884 }
885 // Don't notify content observers
886 try {
887 client.delete(LauncherSettings.Favorites.getContentUri(id, false),
888 null, null);
889 } catch (RemoteException e) {
890 Log.w(TAG, "Could not remove id = " + id);
891 }
892 }
893 }
894
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800895 if (DEBUG_LOADERS) {
896 Log.d(TAG, "loaded workspace in " + (SystemClock.uptimeMillis()-t) + "ms");
897 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400898 }
899
900 /**
901 * Read everything out of our database.
902 */
903 private void bindWorkspace() {
904 final long t = SystemClock.uptimeMillis();
905
906 // Don't use these two variables in any of the callback runnables.
907 // Otherwise we hold a reference to them.
Joe Onoratoc131b742010-03-11 15:45:05 -0800908 final Callbacks oldCallbacks = mCallbacks.get();
909 if (oldCallbacks == null) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400910 // This launcher has exited and nobody bothered to tell us. Just bail.
911 Log.w(TAG, "LoaderThread running with no launcher");
912 return;
913 }
914
915 int N;
916 // Tell the workspace that we're about to start firing items at it
917 mHandler.post(new Runnable() {
918 public void run() {
Joe Onoratoc131b742010-03-11 15:45:05 -0800919 Callbacks callbacks = tryGetCallbacks(oldCallbacks);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400920 if (callbacks != null) {
921 callbacks.startBinding();
922 }
923 }
924 });
925 // Add the items to the workspace.
926 N = mItems.size();
927 for (int i=0; i<N; i+=ITEMS_CHUNK) {
928 final int start = i;
929 final int chunkSize = (i+ITEMS_CHUNK <= N) ? ITEMS_CHUNK : (N-i);
930 mHandler.post(new Runnable() {
931 public void run() {
Joe Onoratoc131b742010-03-11 15:45:05 -0800932 Callbacks callbacks = tryGetCallbacks(oldCallbacks);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400933 if (callbacks != null) {
934 callbacks.bindItems(mItems, start, start+chunkSize);
935 }
936 }
937 });
938 }
Joe Onoratoad72e172009-11-06 16:25:04 -0500939 mHandler.post(new Runnable() {
940 public void run() {
Joe Onoratoc131b742010-03-11 15:45:05 -0800941 Callbacks callbacks = tryGetCallbacks(oldCallbacks);
Joe Onoratoad72e172009-11-06 16:25:04 -0500942 if (callbacks != null) {
943 callbacks.bindFolders(mFolders);
944 }
945 }
946 });
Joe Onorato9c1289c2009-08-17 11:03:03 -0400947 // Wait until the queue goes empty.
948 mHandler.postIdle(new Runnable() {
949 public void run() {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800950 if (DEBUG_LOADERS) {
951 Log.d(TAG, "Going to start binding widgets soon.");
952 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400953 }
954 });
955 // Bind the widgets, one at a time.
956 // WARNING: this is calling into the workspace from the background thread,
957 // but since getCurrentScreen() just returns the int, we should be okay. This
958 // is just a hint for the order, and if it's wrong, we'll be okay.
959 // TODO: instead, we should have that push the current screen into here.
Joe Onoratoc131b742010-03-11 15:45:05 -0800960 final int currentScreen = oldCallbacks.getCurrentWorkspaceScreen();
Joe Onorato9c1289c2009-08-17 11:03:03 -0400961 N = mAppWidgets.size();
962 // once for the current screen
963 for (int i=0; i<N; i++) {
964 final LauncherAppWidgetInfo widget = mAppWidgets.get(i);
965 if (widget.screen == currentScreen) {
966 mHandler.post(new Runnable() {
967 public void run() {
Joe Onoratoc131b742010-03-11 15:45:05 -0800968 Callbacks callbacks = tryGetCallbacks(oldCallbacks);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400969 if (callbacks != null) {
970 callbacks.bindAppWidget(widget);
971 }
972 }
973 });
974 }
975 }
976 // once for the other screens
977 for (int i=0; i<N; i++) {
978 final LauncherAppWidgetInfo widget = mAppWidgets.get(i);
979 if (widget.screen != currentScreen) {
980 mHandler.post(new Runnable() {
981 public void run() {
Joe Onoratoc131b742010-03-11 15:45:05 -0800982 Callbacks callbacks = tryGetCallbacks(oldCallbacks);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400983 if (callbacks != null) {
984 callbacks.bindAppWidget(widget);
985 }
986 }
987 });
988 }
989 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400990 // Tell the workspace that we're done.
991 mHandler.post(new Runnable() {
992 public void run() {
Joe Onoratoc131b742010-03-11 15:45:05 -0800993 Callbacks callbacks = tryGetCallbacks(oldCallbacks);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400994 if (callbacks != null) {
995 callbacks.finishBindingItems();
996 }
997 }
998 });
999 // If we're profiling, this is the last thing in the queue.
1000 mHandler.post(new Runnable() {
1001 public void run() {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001002 if (DEBUG_LOADERS) {
1003 Log.d(TAG, "bound workspace in "
1004 + (SystemClock.uptimeMillis()-t) + "ms");
1005 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001006 if (Launcher.PROFILE_ROTATE) {
1007 android.os.Debug.stopMethodTracing();
1008 }
1009 }
1010 });
1011 }
1012
1013 private void loadAllApps() {
1014 final Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
1015 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
1016
Joe Onoratoc131b742010-03-11 15:45:05 -08001017 final Callbacks callbacks = mCallbacks.get();
Joe Onorato9c1289c2009-08-17 11:03:03 -04001018 if (callbacks == null) {
1019 return;
1020 }
1021
Joe Onorato0589f0f2010-02-08 13:44:00 -08001022 final PackageManager packageManager = mContext.getPackageManager();
Joe Onorato9c1289c2009-08-17 11:03:03 -04001023 final List<ResolveInfo> apps = packageManager.queryIntentActivities(mainIntent, 0);
1024
1025 synchronized (mLock) {
Joe Onoratof99f8c12009-10-31 17:27:36 -04001026 mBeforeFirstLoad = false;
1027
Joe Onorato9c1289c2009-08-17 11:03:03 -04001028 mAllAppsList.clear();
1029 if (apps != null) {
1030 long t = SystemClock.uptimeMillis();
1031
1032 int N = apps.size();
Joe Onorato9c1289c2009-08-17 11:03:03 -04001033 for (int i=0; i<N && !mStopped; i++) {
1034 // This builds the icon bitmaps.
Joe Onorato0589f0f2010-02-08 13:44:00 -08001035 mAllAppsList.add(new ApplicationInfo(apps.get(i), mIconCache));
Joe Onorato9c1289c2009-08-17 11:03:03 -04001036 }
Joe Onoratob0c27f22009-12-01 16:19:38 -08001037 Collections.sort(mAllAppsList.data, APP_NAME_COMPARATOR);
1038 Collections.sort(mAllAppsList.added, APP_NAME_COMPARATOR);
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001039 if (DEBUG_LOADERS) {
1040 Log.d(TAG, "cached app icons in "
1041 + (SystemClock.uptimeMillis()-t) + "ms");
1042 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001043 }
1044 }
1045 }
1046
1047 private void bindAllApps() {
1048 synchronized (mLock) {
Joe Onorato0c4513e2009-11-19 12:24:48 -08001049 final ArrayList<ApplicationInfo> results
Romain Guy5c16f3e2010-01-12 17:24:58 -08001050 = (ArrayList<ApplicationInfo>) mAllAppsList.data.clone();
Joe Onorato0c4513e2009-11-19 12:24:48 -08001051 // We're adding this now, so clear out this so we don't re-send them.
Romain Guy84f296c2009-11-04 15:00:44 -08001052 mAllAppsList.added = new ArrayList<ApplicationInfo>();
Joe Onoratoc131b742010-03-11 15:45:05 -08001053 final Callbacks old = mCallbacks.get();
Joe Onorato9c1289c2009-08-17 11:03:03 -04001054 mHandler.post(new Runnable() {
1055 public void run() {
Joe Onorato34b02492009-10-14 11:13:48 -07001056 final long t = SystemClock.uptimeMillis();
1057 final int count = results.size();
Joe Onorato9c1289c2009-08-17 11:03:03 -04001058
Joe Onoratoc131b742010-03-11 15:45:05 -08001059 Callbacks callbacks = tryGetCallbacks(old);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001060 if (callbacks != null) {
1061 callbacks.bindAllApplications(results);
1062 }
1063
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001064 if (DEBUG_LOADERS) {
1065 Log.d(TAG, "bound app " + count + " icons in "
Romain Guy5c16f3e2010-01-12 17:24:58 -08001066 + (SystemClock.uptimeMillis() - t) + "ms");
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001067 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001068 }
1069 });
1070 }
1071 }
Joe Onoratobe386092009-11-17 17:32:16 -08001072
1073 public void dumpState() {
1074 Log.d(TAG, "mLoader.mLoaderThread.mContext=" + mContext);
1075 Log.d(TAG, "mLoader.mLoaderThread.mWaitThread=" + mWaitThread);
1076 Log.d(TAG, "mLoader.mLoaderThread.mIsLaunching=" + mIsLaunching);
1077 Log.d(TAG, "mLoader.mLoaderThread.mStopped=" + mStopped);
1078 Log.d(TAG, "mLoader.mLoaderThread.mWorkspaceDoneBinding=" + mWorkspaceDoneBinding);
1079 }
1080 }
1081
1082 public void dumpState() {
1083 Log.d(TAG, "mLoader.mLastWorkspaceSeq=" + mLoader.mLastWorkspaceSeq);
1084 Log.d(TAG, "mLoader.mWorkspaceSeq=" + mLoader.mWorkspaceSeq);
1085 Log.d(TAG, "mLoader.mLastAllAppsSeq=" + mLoader.mLastAllAppsSeq);
1086 Log.d(TAG, "mLoader.mAllAppsSeq=" + mLoader.mAllAppsSeq);
1087 Log.d(TAG, "mLoader.mItems size=" + mLoader.mItems.size());
1088 if (mLoaderThread != null) {
1089 mLoaderThread.dumpState();
1090 } else {
1091 Log.d(TAG, "mLoader.mLoaderThread=null");
1092 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001093 }
1094 }
1095
1096 /**
Joe Onorato56d82912010-03-07 14:32:10 -05001097 * This is called from the code that adds shortcuts from the intent receiver. This
1098 * doesn't have a Cursor, but
Joe Onorato9c1289c2009-08-17 11:03:03 -04001099 */
Joe Onorato56d82912010-03-07 14:32:10 -05001100 public ShortcutInfo getShortcutInfo(PackageManager manager, Intent intent, Context context) {
Joe Onoratoe74daed2010-03-11 12:32:24 -08001101 return getShortcutInfo(manager, intent, context, null, -1, -1);
Joe Onorato56d82912010-03-07 14:32:10 -05001102 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001103
Joe Onorato56d82912010-03-07 14:32:10 -05001104 /**
1105 * Make an ShortcutInfo object for a shortcut that is an application.
1106 *
1107 * If c is not null, then it will be used to fill in missing data like the title and icon.
1108 */
1109 public ShortcutInfo getShortcutInfo(PackageManager manager, Intent intent, Context context,
1110 Cursor c, int iconIndex, int titleIndex) {
1111 Bitmap icon = null;
1112 final ShortcutInfo info = new ShortcutInfo();
1113
1114 ComponentName componentName = intent.getComponent();
1115 if (componentName == null) {
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07001116 return null;
1117 }
1118
Joe Onorato8ddc4fd2010-03-17 09:14:50 -07001119 // TODO: See if the PackageManager knows about this case. If it doesn't
1120 // then return null & delete this.
1121
Joe Onorato56d82912010-03-07 14:32:10 -05001122 // the resource -- This may implicitly give us back the fallback icon,
1123 // but don't worry about that. All we're doing with usingFallbackIcon is
1124 // to avoid saving lots of copies of that in the database, and most apps
1125 // have icons anyway.
1126 final ResolveInfo resolveInfo = manager.resolveActivity(intent, 0);
1127 if (resolveInfo != null) {
1128 icon = mIconCache.getIcon(componentName, resolveInfo);
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07001129 }
Joe Onorato56d82912010-03-07 14:32:10 -05001130 // the db
1131 if (icon == null) {
1132 if (c != null) {
1133 icon = getIconFromCursor(c, iconIndex);
1134 }
1135 }
1136 // the fallback icon
1137 if (icon == null) {
1138 icon = getFallbackIcon();
1139 info.usingFallbackIcon = true;
1140 }
1141 info.setIcon(icon);
1142
1143 // from the resource
1144 if (resolveInfo != null) {
1145 info.title = resolveInfo.activityInfo.loadLabel(manager);
1146 }
1147 // from the db
Joe Onorato9c1289c2009-08-17 11:03:03 -04001148 if (info.title == null) {
Joe Onorato56d82912010-03-07 14:32:10 -05001149 if (c != null) {
1150 info.title = c.getString(titleIndex);
1151 }
1152 }
1153 // fall back to the class name of the activity
1154 if (info.title == null) {
1155 info.title = componentName.getClassName();
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07001156 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001157 info.itemType = LauncherSettings.Favorites.ITEM_TYPE_APPLICATION;
1158 return info;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001159 }
The Android Open Source Projectbc219c32009-03-09 11:52:14 -07001160
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001161 /**
Joe Onorato0589f0f2010-02-08 13:44:00 -08001162 * Make an ShortcutInfo object for a shortcut that isn't an application.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001163 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001164 private ShortcutInfo getShortcutInfo(Cursor c, Context context,
Joe Onorato56d82912010-03-07 14:32:10 -05001165 int iconTypeIndex, int iconPackageIndex, int iconResourceIndex, int iconIndex,
1166 int titleIndex) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001167
Joe Onorato56d82912010-03-07 14:32:10 -05001168 Bitmap icon = null;
Joe Onorato0589f0f2010-02-08 13:44:00 -08001169 final ShortcutInfo info = new ShortcutInfo();
Joe Onorato9c1289c2009-08-17 11:03:03 -04001170 info.itemType = LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001171
Joe Onorato8ddc4fd2010-03-17 09:14:50 -07001172 // TODO: If there's an explicit component and we can't install that, delete it.
1173
Joe Onorato56d82912010-03-07 14:32:10 -05001174 info.title = c.getString(titleIndex);
1175
Joe Onorato9c1289c2009-08-17 11:03:03 -04001176 int iconType = c.getInt(iconTypeIndex);
1177 switch (iconType) {
1178 case LauncherSettings.Favorites.ICON_TYPE_RESOURCE:
1179 String packageName = c.getString(iconPackageIndex);
1180 String resourceName = c.getString(iconResourceIndex);
1181 PackageManager packageManager = context.getPackageManager();
Joe Onorato56d82912010-03-07 14:32:10 -05001182 info.customIcon = false;
1183 // the resource
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001184 try {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001185 Resources resources = packageManager.getResourcesForApplication(packageName);
Joe Onorato56d82912010-03-07 14:32:10 -05001186 if (resources != null) {
1187 final int id = resources.getIdentifier(resourceName, null, null);
1188 icon = Utilities.createIconBitmap(resources.getDrawable(id), context);
1189 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001190 } catch (Exception e) {
Joe Onorato56d82912010-03-07 14:32:10 -05001191 // drop this. we have other places to look for icons
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001192 }
Joe Onorato56d82912010-03-07 14:32:10 -05001193 // the db
1194 if (icon == null) {
1195 icon = getIconFromCursor(c, iconIndex);
1196 }
1197 // the fallback icon
1198 if (icon == null) {
1199 icon = getFallbackIcon();
1200 info.usingFallbackIcon = true;
1201 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001202 break;
1203 case LauncherSettings.Favorites.ICON_TYPE_BITMAP:
Joe Onorato56d82912010-03-07 14:32:10 -05001204 icon = getIconFromCursor(c, iconIndex);
1205 if (icon == null) {
1206 icon = getFallbackIcon();
1207 info.customIcon = false;
1208 info.usingFallbackIcon = true;
1209 } else {
1210 info.customIcon = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -04001211 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001212 break;
1213 default:
Joe Onoratod8d22da2010-03-11 17:59:11 -08001214 icon = getFallbackIcon();
Joe Onorato56d82912010-03-07 14:32:10 -05001215 info.usingFallbackIcon = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -04001216 info.customIcon = false;
1217 break;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001218 }
Joe Onoratod8d22da2010-03-11 17:59:11 -08001219 info.setIcon(icon);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001220 return info;
1221 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001222
Joe Onorato56d82912010-03-07 14:32:10 -05001223 Bitmap getIconFromCursor(Cursor c, int iconIndex) {
1224 if (false) {
1225 Log.d(TAG, "getIconFromCursor app="
1226 + c.getString(c.getColumnIndexOrThrow(LauncherSettings.Favorites.TITLE)));
1227 }
1228 byte[] data = c.getBlob(iconIndex);
1229 try {
1230 return BitmapFactory.decodeByteArray(data, 0, data.length);
1231 } catch (Exception e) {
1232 return null;
1233 }
1234 }
1235
Joe Onorato0589f0f2010-02-08 13:44:00 -08001236 ShortcutInfo addShortcut(Context context, Intent data,
1237 CellLayout.CellInfo cellInfo, boolean notify) {
1238
1239 final ShortcutInfo info = infoFromShortcutIntent(context, data);
1240 addItemToDatabase(context, info, LauncherSettings.Favorites.CONTAINER_DESKTOP,
1241 cellInfo.screen, cellInfo.cellX, cellInfo.cellY, notify);
1242
1243 return info;
1244 }
1245
1246 private ShortcutInfo infoFromShortcutIntent(Context context, Intent data) {
1247 Intent intent = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_INTENT);
1248 String name = data.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
1249 Parcelable bitmap = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_ICON);
1250
1251 Bitmap icon = null;
1252 boolean filtered = false;
1253 boolean customIcon = false;
1254 ShortcutIconResource iconResource = null;
1255
1256 if (bitmap != null && bitmap instanceof Bitmap) {
1257 icon = Utilities.createIconBitmap(new FastBitmapDrawable((Bitmap)bitmap), context);
1258 filtered = true;
1259 customIcon = true;
1260 } else {
1261 Parcelable extra = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE);
1262 if (extra != null && extra instanceof ShortcutIconResource) {
1263 try {
1264 iconResource = (ShortcutIconResource) extra;
1265 final PackageManager packageManager = context.getPackageManager();
1266 Resources resources = packageManager.getResourcesForApplication(
1267 iconResource.packageName);
1268 final int id = resources.getIdentifier(iconResource.resourceName, null, null);
1269 icon = Utilities.createIconBitmap(resources.getDrawable(id), context);
1270 } catch (Exception e) {
1271 Log.w(TAG, "Could not load shortcut icon: " + extra);
1272 }
1273 }
1274 }
1275
Joe Onorato0589f0f2010-02-08 13:44:00 -08001276 final ShortcutInfo info = new ShortcutInfo();
Joe Onorato56d82912010-03-07 14:32:10 -05001277
1278 if (icon == null) {
1279 icon = getFallbackIcon();
1280 info.usingFallbackIcon = true;
1281 }
Joe Onorato0589f0f2010-02-08 13:44:00 -08001282 info.setIcon(icon);
Joe Onorato56d82912010-03-07 14:32:10 -05001283
Joe Onorato0589f0f2010-02-08 13:44:00 -08001284 info.title = name;
1285 info.intent = intent;
1286 info.customIcon = customIcon;
1287 info.iconResource = iconResource;
1288
1289 return info;
1290 }
1291
Joe Onorato9c1289c2009-08-17 11:03:03 -04001292 private static void loadLiveFolderIcon(Context context, Cursor c, int iconTypeIndex,
1293 int iconPackageIndex, int iconResourceIndex, LiveFolderInfo liveFolderInfo) {
1294
1295 int iconType = c.getInt(iconTypeIndex);
1296 switch (iconType) {
1297 case LauncherSettings.Favorites.ICON_TYPE_RESOURCE:
1298 String packageName = c.getString(iconPackageIndex);
1299 String resourceName = c.getString(iconResourceIndex);
1300 PackageManager packageManager = context.getPackageManager();
1301 try {
1302 Resources resources = packageManager.getResourcesForApplication(packageName);
1303 final int id = resources.getIdentifier(resourceName, null, null);
Joe Onorato0589f0f2010-02-08 13:44:00 -08001304 liveFolderInfo.icon = Utilities.createIconBitmap(resources.getDrawable(id),
1305 context);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001306 } catch (Exception e) {
Joe Onorato0589f0f2010-02-08 13:44:00 -08001307 liveFolderInfo.icon = Utilities.createIconBitmap(
1308 context.getResources().getDrawable(R.drawable.ic_launcher_folder),
1309 context);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001310 }
1311 liveFolderInfo.iconResource = new Intent.ShortcutIconResource();
1312 liveFolderInfo.iconResource.packageName = packageName;
1313 liveFolderInfo.iconResource.resourceName = resourceName;
1314 break;
1315 default:
Joe Onorato0589f0f2010-02-08 13:44:00 -08001316 liveFolderInfo.icon = Utilities.createIconBitmap(
1317 context.getResources().getDrawable(R.drawable.ic_launcher_folder),
1318 context);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001319 }
1320 }
1321
Joe Onorato56d82912010-03-07 14:32:10 -05001322 void updateSavedIcon(Context context, ShortcutInfo info, Cursor c, int iconIndex) {
1323 // If this icon doesn't have a custom icon, check to see
1324 // what's stored in the DB, and if it doesn't match what
1325 // we're going to show, store what we are going to show back
1326 // into the DB. We do this so when we're loading, if the
1327 // package manager can't find an icon (for example because
1328 // the app is on SD) then we can use that instead.
1329 if (info.onExternalStorage && !info.customIcon && !info.usingFallbackIcon) {
1330 boolean needSave;
1331 byte[] data = c.getBlob(iconIndex);
1332 try {
1333 if (data != null) {
1334 Bitmap saved = BitmapFactory.decodeByteArray(data, 0, data.length);
1335 Bitmap loaded = info.getIcon(mIconCache);
1336 needSave = !saved.sameAs(loaded);
1337 } else {
1338 needSave = true;
1339 }
1340 } catch (Exception e) {
1341 needSave = true;
1342 }
1343 if (needSave) {
1344 Log.d(TAG, "going to save icon bitmap for info=" + info);
1345 // This is slower than is ideal, but this only happens either
1346 // after the froyo OTA or when the app is updated with a new
1347 // icon.
1348 updateItemInDatabase(context, info);
1349 }
1350 }
1351 }
1352
Joe Onorato9c1289c2009-08-17 11:03:03 -04001353 /**
1354 * Return an existing UserFolderInfo object if we have encountered this ID previously,
1355 * or make a new one.
1356 */
1357 private static UserFolderInfo findOrMakeUserFolder(HashMap<Long, FolderInfo> folders, long id) {
1358 // See if a placeholder was created for us already
1359 FolderInfo folderInfo = folders.get(id);
1360 if (folderInfo == null || !(folderInfo instanceof UserFolderInfo)) {
1361 // No placeholder -- create a new instance
1362 folderInfo = new UserFolderInfo();
1363 folders.put(id, folderInfo);
1364 }
1365 return (UserFolderInfo) folderInfo;
1366 }
1367
1368 /**
1369 * Return an existing UserFolderInfo object if we have encountered this ID previously, or make a
1370 * new one.
1371 */
1372 private static LiveFolderInfo findOrMakeLiveFolder(HashMap<Long, FolderInfo> folders, long id) {
1373 // See if a placeholder was created for us already
1374 FolderInfo folderInfo = folders.get(id);
1375 if (folderInfo == null || !(folderInfo instanceof LiveFolderInfo)) {
1376 // No placeholder -- create a new instance
1377 folderInfo = new LiveFolderInfo();
1378 folders.put(id, folderInfo);
1379 }
1380 return (LiveFolderInfo) folderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001381 }
1382
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001383 private static String getLabel(PackageManager manager, ActivityInfo activityInfo) {
1384 String label = activityInfo.loadLabel(manager).toString();
1385 if (label == null) {
1386 label = manager.getApplicationLabel(activityInfo.applicationInfo).toString();
1387 if (label == null) {
1388 label = activityInfo.name;
1389 }
1390 }
1391 return label;
1392 }
1393
Joe Onorato9c1289c2009-08-17 11:03:03 -04001394 private static final Collator sCollator = Collator.getInstance();
Joe Onoratob0c27f22009-12-01 16:19:38 -08001395 public static final Comparator<ApplicationInfo> APP_NAME_COMPARATOR
Joe Onorato9c1289c2009-08-17 11:03:03 -04001396 = new Comparator<ApplicationInfo>() {
1397 public final int compare(ApplicationInfo a, ApplicationInfo b) {
1398 return sCollator.compare(a.title.toString(), b.title.toString());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001399 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001400 };
Joe Onoratobe386092009-11-17 17:32:16 -08001401
1402 public void dumpState() {
1403 Log.d(TAG, "mBeforeFirstLoad=" + mBeforeFirstLoad);
1404 Log.d(TAG, "mCallbacks=" + mCallbacks);
1405 ApplicationInfo.dumpApplicationInfoList(TAG, "mAllAppsList.data", mAllAppsList.data);
1406 ApplicationInfo.dumpApplicationInfoList(TAG, "mAllAppsList.added", mAllAppsList.added);
1407 ApplicationInfo.dumpApplicationInfoList(TAG, "mAllAppsList.removed", mAllAppsList.removed);
1408 ApplicationInfo.dumpApplicationInfoList(TAG, "mAllAppsList.modified", mAllAppsList.modified);
1409 mLoader.dumpState();
1410 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001411}