blob: 6560c5d35f8c08a24fdf7cdad93c3b0bfdfa64c0 [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
627 * has somehow been garbage collected, return null instead.
628 */
629 Callbacks tryGetCallbacks() {
630 synchronized (mLock) {
631 if (mStopped) {
632 return null;
633 }
634
635 final Callbacks callbacks = mCallbacks.get();
636 if (callbacks == null) {
637 Log.w(TAG, "no mCallbacks");
638 return null;
639 }
640
641 return callbacks;
642 }
643 }
644
645 private void loadWorkspace() {
646 long t = SystemClock.uptimeMillis();
647
648 final Context context = mContext;
649 final ContentResolver contentResolver = context.getContentResolver();
650 final PackageManager manager = context.getPackageManager();
Romain Guy629de3e2010-01-13 12:20:59 -0800651 final AppWidgetManager widgets = AppWidgetManager.getInstance(context);
Romain Guy5c16f3e2010-01-12 17:24:58 -0800652 final boolean isSafeMode = manager.isSafeMode();
Joe Onorato9c1289c2009-08-17 11:03:03 -0400653
Joe Onorato3c2f7e12009-10-31 19:17:31 -0400654 mItems.clear();
Joe Onorato511ab642009-11-08 14:14:07 -0500655 mAppWidgets.clear();
Joe Onorato1db7a972009-11-16 18:32:22 -0800656 mFolders.clear();
Joe Onorato3c2f7e12009-10-31 19:17:31 -0400657
Romain Guy5c16f3e2010-01-12 17:24:58 -0800658 final ArrayList<Long> itemsToRemove = new ArrayList<Long>();
659
Joe Onorato9c1289c2009-08-17 11:03:03 -0400660 final Cursor c = contentResolver.query(
661 LauncherSettings.Favorites.CONTENT_URI, null, null, null, null);
662
663 try {
664 final int idIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites._ID);
665 final int intentIndex = c.getColumnIndexOrThrow
666 (LauncherSettings.Favorites.INTENT);
667 final int titleIndex = c.getColumnIndexOrThrow
668 (LauncherSettings.Favorites.TITLE);
669 final int iconTypeIndex = c.getColumnIndexOrThrow(
670 LauncherSettings.Favorites.ICON_TYPE);
671 final int iconIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON);
672 final int iconPackageIndex = c.getColumnIndexOrThrow(
673 LauncherSettings.Favorites.ICON_PACKAGE);
674 final int iconResourceIndex = c.getColumnIndexOrThrow(
675 LauncherSettings.Favorites.ICON_RESOURCE);
676 final int containerIndex = c.getColumnIndexOrThrow(
677 LauncherSettings.Favorites.CONTAINER);
678 final int itemTypeIndex = c.getColumnIndexOrThrow(
679 LauncherSettings.Favorites.ITEM_TYPE);
680 final int appWidgetIdIndex = c.getColumnIndexOrThrow(
681 LauncherSettings.Favorites.APPWIDGET_ID);
682 final int screenIndex = c.getColumnIndexOrThrow(
683 LauncherSettings.Favorites.SCREEN);
684 final int cellXIndex = c.getColumnIndexOrThrow
685 (LauncherSettings.Favorites.CELLX);
686 final int cellYIndex = c.getColumnIndexOrThrow
687 (LauncherSettings.Favorites.CELLY);
688 final int spanXIndex = c.getColumnIndexOrThrow
689 (LauncherSettings.Favorites.SPANX);
690 final int spanYIndex = c.getColumnIndexOrThrow(
691 LauncherSettings.Favorites.SPANY);
692 final int uriIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.URI);
693 final int displayModeIndex = c.getColumnIndexOrThrow(
694 LauncherSettings.Favorites.DISPLAY_MODE);
695
Joe Onorato0589f0f2010-02-08 13:44:00 -0800696 ShortcutInfo info;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400697 String intentDescription;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400698 LauncherAppWidgetInfo appWidgetInfo;
699 int container;
700 long id;
701 Intent intent;
702
703 while (!mStopped && c.moveToNext()) {
704 try {
705 int itemType = c.getInt(itemTypeIndex);
706
707 switch (itemType) {
708 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
709 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
710 intentDescription = c.getString(intentIndex);
711 try {
712 intent = Intent.parseUri(intentDescription, 0);
713 } catch (URISyntaxException e) {
714 continue;
715 }
716
717 if (itemType == LauncherSettings.Favorites.ITEM_TYPE_APPLICATION) {
Joe Onorato56d82912010-03-07 14:32:10 -0500718 info = getShortcutInfo(manager, intent, context, c, iconIndex,
719 titleIndex);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400720 } else {
Joe Onorato0589f0f2010-02-08 13:44:00 -0800721 info = getShortcutInfo(c, context, iconTypeIndex,
Joe Onorato56d82912010-03-07 14:32:10 -0500722 iconPackageIndex, iconResourceIndex, iconIndex,
723 titleIndex);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400724 }
725
726 if (info != null) {
Joe Onorato56d82912010-03-07 14:32:10 -0500727 updateSavedIcon(context, info, c, iconIndex);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400728
Joe Onorato56d82912010-03-07 14:32:10 -0500729 info.intent = intent;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400730 info.id = c.getLong(idIndex);
731 container = c.getInt(containerIndex);
732 info.container = container;
733 info.screen = c.getInt(screenIndex);
734 info.cellX = c.getInt(cellXIndex);
735 info.cellY = c.getInt(cellYIndex);
736
737 switch (container) {
738 case LauncherSettings.Favorites.CONTAINER_DESKTOP:
739 mItems.add(info);
740 break;
741 default:
742 // Item is in a user folder
743 UserFolderInfo folderInfo =
Joe Onoratoad72e172009-11-06 16:25:04 -0500744 findOrMakeUserFolder(mFolders, container);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400745 folderInfo.add(info);
746 break;
747 }
Joe Onorato56d82912010-03-07 14:32:10 -0500748 } else {
749 // Failed to load the shortcut, probably because the
750 // activity manager couldn't resolve it (maybe the app
751 // was uninstalled), or the db row was somehow screwed up.
752 // Delete it.
753 id = c.getLong(idIndex);
754 Log.e(TAG, "Error loading shortcut " + id + ", removing it");
755 contentResolver.delete(LauncherSettings.Favorites.getContentUri(
756 id, false), null, null);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400757 }
758 break;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400759
Joe Onoratoad72e172009-11-06 16:25:04 -0500760 case LauncherSettings.Favorites.ITEM_TYPE_USER_FOLDER:
Joe Onorato9c1289c2009-08-17 11:03:03 -0400761 id = c.getLong(idIndex);
Joe Onoratoad72e172009-11-06 16:25:04 -0500762 UserFolderInfo folderInfo = findOrMakeUserFolder(mFolders, id);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400763
764 folderInfo.title = c.getString(titleIndex);
765
766 folderInfo.id = id;
767 container = c.getInt(containerIndex);
768 folderInfo.container = container;
769 folderInfo.screen = c.getInt(screenIndex);
770 folderInfo.cellX = c.getInt(cellXIndex);
771 folderInfo.cellY = c.getInt(cellYIndex);
772
773 switch (container) {
774 case LauncherSettings.Favorites.CONTAINER_DESKTOP:
775 mItems.add(folderInfo);
776 break;
777 }
Joe Onoratoad72e172009-11-06 16:25:04 -0500778
779 mFolders.put(folderInfo.id, folderInfo);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400780 break;
Joe Onoratoad72e172009-11-06 16:25:04 -0500781
Joe Onorato9c1289c2009-08-17 11:03:03 -0400782 case LauncherSettings.Favorites.ITEM_TYPE_LIVE_FOLDER:
Joe Onorato9c1289c2009-08-17 11:03:03 -0400783 id = c.getLong(idIndex);
Romain Guy5c16f3e2010-01-12 17:24:58 -0800784 Uri uri = Uri.parse(c.getString(uriIndex));
Joe Onorato9c1289c2009-08-17 11:03:03 -0400785
Romain Guy5c16f3e2010-01-12 17:24:58 -0800786 // Make sure the live folder exists
787 final ProviderInfo providerInfo =
788 context.getPackageManager().resolveContentProvider(
789 uri.getAuthority(), 0);
790
791 if (providerInfo == null && !isSafeMode) {
792 itemsToRemove.add(id);
793 } else {
794 LiveFolderInfo liveFolderInfo = findOrMakeLiveFolder(mFolders, id);
795
796 intentDescription = c.getString(intentIndex);
797 intent = null;
798 if (intentDescription != null) {
799 try {
800 intent = Intent.parseUri(intentDescription, 0);
801 } catch (URISyntaxException e) {
802 // Ignore, a live folder might not have a base intent
803 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400804 }
Romain Guy5c16f3e2010-01-12 17:24:58 -0800805
806 liveFolderInfo.title = c.getString(titleIndex);
807 liveFolderInfo.id = id;
808 liveFolderInfo.uri = uri;
809 container = c.getInt(containerIndex);
810 liveFolderInfo.container = container;
811 liveFolderInfo.screen = c.getInt(screenIndex);
812 liveFolderInfo.cellX = c.getInt(cellXIndex);
813 liveFolderInfo.cellY = c.getInt(cellYIndex);
814 liveFolderInfo.baseIntent = intent;
815 liveFolderInfo.displayMode = c.getInt(displayModeIndex);
816
817 loadLiveFolderIcon(context, c, iconTypeIndex, iconPackageIndex,
818 iconResourceIndex, liveFolderInfo);
819
820 switch (container) {
821 case LauncherSettings.Favorites.CONTAINER_DESKTOP:
822 mItems.add(liveFolderInfo);
823 break;
824 }
825 mFolders.put(liveFolderInfo.id, liveFolderInfo);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400826 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400827 break;
Joe Onoratoad72e172009-11-06 16:25:04 -0500828
Joe Onorato9c1289c2009-08-17 11:03:03 -0400829 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
830 // Read all Launcher-specific widget details
831 int appWidgetId = c.getInt(appWidgetIdIndex);
Romain Guy629de3e2010-01-13 12:20:59 -0800832 id = c.getLong(idIndex);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400833
Romain Guy629de3e2010-01-13 12:20:59 -0800834 final AppWidgetProviderInfo provider =
835 widgets.getAppWidgetInfo(appWidgetId);
836
837 if (!isSafeMode && (provider == null || provider.provider == null ||
838 provider.provider.getPackageName() == null)) {
839 itemsToRemove.add(id);
840 } else {
841 appWidgetInfo = new LauncherAppWidgetInfo(appWidgetId);
842 appWidgetInfo.id = id;
843 appWidgetInfo.screen = c.getInt(screenIndex);
844 appWidgetInfo.cellX = c.getInt(cellXIndex);
845 appWidgetInfo.cellY = c.getInt(cellYIndex);
846 appWidgetInfo.spanX = c.getInt(spanXIndex);
847 appWidgetInfo.spanY = c.getInt(spanYIndex);
848
849 container = c.getInt(containerIndex);
850 if (container != LauncherSettings.Favorites.CONTAINER_DESKTOP) {
851 Log.e(TAG, "Widget found where container "
852 + "!= CONTAINER_DESKTOP -- ignoring!");
853 continue;
854 }
855 appWidgetInfo.container = c.getInt(containerIndex);
856
857 mAppWidgets.add(appWidgetInfo);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400858 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400859 break;
860 }
861 } catch (Exception e) {
862 Log.w(TAG, "Desktop items loading interrupted:", e);
863 }
864 }
865 } finally {
866 c.close();
867 }
Romain Guy5c16f3e2010-01-12 17:24:58 -0800868
869 if (itemsToRemove.size() > 0) {
870 ContentProviderClient client = contentResolver.acquireContentProviderClient(
871 LauncherSettings.Favorites.CONTENT_URI);
872 // Remove dead items
873 for (long id : itemsToRemove) {
874 if (DEBUG_LOADERS) {
875 Log.d(TAG, "Removed id = " + id);
876 }
877 // Don't notify content observers
878 try {
879 client.delete(LauncherSettings.Favorites.getContentUri(id, false),
880 null, null);
881 } catch (RemoteException e) {
882 Log.w(TAG, "Could not remove id = " + id);
883 }
884 }
885 }
886
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800887 if (DEBUG_LOADERS) {
888 Log.d(TAG, "loaded workspace in " + (SystemClock.uptimeMillis()-t) + "ms");
889 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400890 }
891
892 /**
893 * Read everything out of our database.
894 */
895 private void bindWorkspace() {
896 final long t = SystemClock.uptimeMillis();
897
898 // Don't use these two variables in any of the callback runnables.
899 // Otherwise we hold a reference to them.
900 Callbacks callbacks = mCallbacks.get();
901 if (callbacks == null) {
902 // This launcher has exited and nobody bothered to tell us. Just bail.
903 Log.w(TAG, "LoaderThread running with no launcher");
904 return;
905 }
906
907 int N;
908 // Tell the workspace that we're about to start firing items at it
909 mHandler.post(new Runnable() {
910 public void run() {
911 Callbacks callbacks = tryGetCallbacks();
912 if (callbacks != null) {
913 callbacks.startBinding();
914 }
915 }
916 });
917 // Add the items to the workspace.
918 N = mItems.size();
919 for (int i=0; i<N; i+=ITEMS_CHUNK) {
920 final int start = i;
921 final int chunkSize = (i+ITEMS_CHUNK <= N) ? ITEMS_CHUNK : (N-i);
922 mHandler.post(new Runnable() {
923 public void run() {
924 Callbacks callbacks = tryGetCallbacks();
925 if (callbacks != null) {
926 callbacks.bindItems(mItems, start, start+chunkSize);
927 }
928 }
929 });
930 }
Joe Onoratoad72e172009-11-06 16:25:04 -0500931 mHandler.post(new Runnable() {
932 public void run() {
933 Callbacks callbacks = tryGetCallbacks();
934 if (callbacks != null) {
935 callbacks.bindFolders(mFolders);
936 }
937 }
938 });
Joe Onorato9c1289c2009-08-17 11:03:03 -0400939 // Wait until the queue goes empty.
940 mHandler.postIdle(new Runnable() {
941 public void run() {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800942 if (DEBUG_LOADERS) {
943 Log.d(TAG, "Going to start binding widgets soon.");
944 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400945 }
946 });
947 // Bind the widgets, one at a time.
948 // WARNING: this is calling into the workspace from the background thread,
949 // but since getCurrentScreen() just returns the int, we should be okay. This
950 // is just a hint for the order, and if it's wrong, we'll be okay.
951 // TODO: instead, we should have that push the current screen into here.
952 final int currentScreen = callbacks.getCurrentWorkspaceScreen();
953 N = mAppWidgets.size();
954 // once for the current screen
955 for (int i=0; i<N; i++) {
956 final LauncherAppWidgetInfo widget = mAppWidgets.get(i);
957 if (widget.screen == currentScreen) {
958 mHandler.post(new Runnable() {
959 public void run() {
960 Callbacks callbacks = tryGetCallbacks();
961 if (callbacks != null) {
962 callbacks.bindAppWidget(widget);
963 }
964 }
965 });
966 }
967 }
968 // once for the other screens
969 for (int i=0; i<N; i++) {
970 final LauncherAppWidgetInfo widget = mAppWidgets.get(i);
971 if (widget.screen != currentScreen) {
972 mHandler.post(new Runnable() {
973 public void run() {
974 Callbacks callbacks = tryGetCallbacks();
975 if (callbacks != null) {
976 callbacks.bindAppWidget(widget);
977 }
978 }
979 });
980 }
981 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400982 // Tell the workspace that we're done.
983 mHandler.post(new Runnable() {
984 public void run() {
985 Callbacks callbacks = tryGetCallbacks();
986 if (callbacks != null) {
987 callbacks.finishBindingItems();
988 }
989 }
990 });
991 // If we're profiling, this is the last thing in the queue.
992 mHandler.post(new Runnable() {
993 public void run() {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800994 if (DEBUG_LOADERS) {
995 Log.d(TAG, "bound workspace in "
996 + (SystemClock.uptimeMillis()-t) + "ms");
997 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400998 if (Launcher.PROFILE_ROTATE) {
999 android.os.Debug.stopMethodTracing();
1000 }
1001 }
1002 });
1003 }
1004
1005 private void loadAllApps() {
1006 final Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
1007 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
1008
1009 final Callbacks callbacks = tryGetCallbacks();
1010 if (callbacks == null) {
1011 return;
1012 }
1013
Joe Onorato0589f0f2010-02-08 13:44:00 -08001014 final PackageManager packageManager = mContext.getPackageManager();
Joe Onorato9c1289c2009-08-17 11:03:03 -04001015 final List<ResolveInfo> apps = packageManager.queryIntentActivities(mainIntent, 0);
1016
1017 synchronized (mLock) {
Joe Onoratof99f8c12009-10-31 17:27:36 -04001018 mBeforeFirstLoad = false;
1019
Joe Onorato9c1289c2009-08-17 11:03:03 -04001020 mAllAppsList.clear();
1021 if (apps != null) {
1022 long t = SystemClock.uptimeMillis();
1023
1024 int N = apps.size();
Joe Onorato9c1289c2009-08-17 11:03:03 -04001025 for (int i=0; i<N && !mStopped; i++) {
1026 // This builds the icon bitmaps.
Joe Onorato0589f0f2010-02-08 13:44:00 -08001027 mAllAppsList.add(new ApplicationInfo(apps.get(i), mIconCache));
Joe Onorato9c1289c2009-08-17 11:03:03 -04001028 }
Joe Onoratob0c27f22009-12-01 16:19:38 -08001029 Collections.sort(mAllAppsList.data, APP_NAME_COMPARATOR);
1030 Collections.sort(mAllAppsList.added, APP_NAME_COMPARATOR);
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001031 if (DEBUG_LOADERS) {
1032 Log.d(TAG, "cached app icons in "
1033 + (SystemClock.uptimeMillis()-t) + "ms");
1034 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001035 }
1036 }
1037 }
1038
1039 private void bindAllApps() {
1040 synchronized (mLock) {
Joe Onorato0c4513e2009-11-19 12:24:48 -08001041 final ArrayList<ApplicationInfo> results
Romain Guy5c16f3e2010-01-12 17:24:58 -08001042 = (ArrayList<ApplicationInfo>) mAllAppsList.data.clone();
Joe Onorato0c4513e2009-11-19 12:24:48 -08001043 // We're adding this now, so clear out this so we don't re-send them.
Romain Guy84f296c2009-11-04 15:00:44 -08001044 mAllAppsList.added = new ArrayList<ApplicationInfo>();
Joe Onorato9c1289c2009-08-17 11:03:03 -04001045 mHandler.post(new Runnable() {
1046 public void run() {
Joe Onorato34b02492009-10-14 11:13:48 -07001047 final long t = SystemClock.uptimeMillis();
1048 final int count = results.size();
Joe Onorato9c1289c2009-08-17 11:03:03 -04001049
1050 Callbacks callbacks = tryGetCallbacks();
1051 if (callbacks != null) {
1052 callbacks.bindAllApplications(results);
1053 }
1054
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001055 if (DEBUG_LOADERS) {
1056 Log.d(TAG, "bound app " + count + " icons in "
Romain Guy5c16f3e2010-01-12 17:24:58 -08001057 + (SystemClock.uptimeMillis() - t) + "ms");
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001058 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001059 }
1060 });
1061 }
1062 }
Joe Onoratobe386092009-11-17 17:32:16 -08001063
1064 public void dumpState() {
1065 Log.d(TAG, "mLoader.mLoaderThread.mContext=" + mContext);
1066 Log.d(TAG, "mLoader.mLoaderThread.mWaitThread=" + mWaitThread);
1067 Log.d(TAG, "mLoader.mLoaderThread.mIsLaunching=" + mIsLaunching);
1068 Log.d(TAG, "mLoader.mLoaderThread.mStopped=" + mStopped);
1069 Log.d(TAG, "mLoader.mLoaderThread.mWorkspaceDoneBinding=" + mWorkspaceDoneBinding);
1070 }
1071 }
1072
1073 public void dumpState() {
1074 Log.d(TAG, "mLoader.mLastWorkspaceSeq=" + mLoader.mLastWorkspaceSeq);
1075 Log.d(TAG, "mLoader.mWorkspaceSeq=" + mLoader.mWorkspaceSeq);
1076 Log.d(TAG, "mLoader.mLastAllAppsSeq=" + mLoader.mLastAllAppsSeq);
1077 Log.d(TAG, "mLoader.mAllAppsSeq=" + mLoader.mAllAppsSeq);
1078 Log.d(TAG, "mLoader.mItems size=" + mLoader.mItems.size());
1079 if (mLoaderThread != null) {
1080 mLoaderThread.dumpState();
1081 } else {
1082 Log.d(TAG, "mLoader.mLoaderThread=null");
1083 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001084 }
1085 }
1086
1087 /**
Joe Onorato56d82912010-03-07 14:32:10 -05001088 * This is called from the code that adds shortcuts from the intent receiver. This
1089 * doesn't have a Cursor, but
Joe Onorato9c1289c2009-08-17 11:03:03 -04001090 */
Joe Onorato56d82912010-03-07 14:32:10 -05001091 public ShortcutInfo getShortcutInfo(PackageManager manager, Intent intent, Context context) {
Joe Onoratoe74daed2010-03-11 12:32:24 -08001092 return getShortcutInfo(manager, intent, context, null, -1, -1);
Joe Onorato56d82912010-03-07 14:32:10 -05001093 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001094
Joe Onorato56d82912010-03-07 14:32:10 -05001095 /**
1096 * Make an ShortcutInfo object for a shortcut that is an application.
1097 *
1098 * If c is not null, then it will be used to fill in missing data like the title and icon.
1099 */
1100 public ShortcutInfo getShortcutInfo(PackageManager manager, Intent intent, Context context,
1101 Cursor c, int iconIndex, int titleIndex) {
1102 Bitmap icon = null;
1103 final ShortcutInfo info = new ShortcutInfo();
1104
1105 ComponentName componentName = intent.getComponent();
1106 if (componentName == null) {
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07001107 return null;
1108 }
1109
Joe Onorato56d82912010-03-07 14:32:10 -05001110 // the resource -- This may implicitly give us back the fallback icon,
1111 // but don't worry about that. All we're doing with usingFallbackIcon is
1112 // to avoid saving lots of copies of that in the database, and most apps
1113 // have icons anyway.
1114 final ResolveInfo resolveInfo = manager.resolveActivity(intent, 0);
1115 if (resolveInfo != null) {
1116 icon = mIconCache.getIcon(componentName, resolveInfo);
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07001117 }
Joe Onorato56d82912010-03-07 14:32:10 -05001118 // the db
1119 if (icon == null) {
1120 if (c != null) {
1121 icon = getIconFromCursor(c, iconIndex);
1122 }
1123 }
1124 // the fallback icon
1125 if (icon == null) {
1126 icon = getFallbackIcon();
1127 info.usingFallbackIcon = true;
1128 }
1129 info.setIcon(icon);
1130
1131 // from the resource
1132 if (resolveInfo != null) {
1133 info.title = resolveInfo.activityInfo.loadLabel(manager);
1134 }
1135 // from the db
Joe Onorato9c1289c2009-08-17 11:03:03 -04001136 if (info.title == null) {
Joe Onorato56d82912010-03-07 14:32:10 -05001137 if (c != null) {
1138 info.title = c.getString(titleIndex);
1139 }
1140 }
1141 // fall back to the class name of the activity
1142 if (info.title == null) {
1143 info.title = componentName.getClassName();
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07001144 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001145 info.itemType = LauncherSettings.Favorites.ITEM_TYPE_APPLICATION;
1146 return info;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001147 }
The Android Open Source Projectbc219c32009-03-09 11:52:14 -07001148
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001149 /**
Joe Onorato0589f0f2010-02-08 13:44:00 -08001150 * Make an ShortcutInfo object for a shortcut that isn't an application.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001151 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001152 private ShortcutInfo getShortcutInfo(Cursor c, Context context,
Joe Onorato56d82912010-03-07 14:32:10 -05001153 int iconTypeIndex, int iconPackageIndex, int iconResourceIndex, int iconIndex,
1154 int titleIndex) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001155
Joe Onorato56d82912010-03-07 14:32:10 -05001156 Bitmap icon = null;
Joe Onorato0589f0f2010-02-08 13:44:00 -08001157 final ShortcutInfo info = new ShortcutInfo();
Joe Onorato9c1289c2009-08-17 11:03:03 -04001158 info.itemType = LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001159
Joe Onorato56d82912010-03-07 14:32:10 -05001160 info.title = c.getString(titleIndex);
1161
Joe Onorato9c1289c2009-08-17 11:03:03 -04001162 int iconType = c.getInt(iconTypeIndex);
1163 switch (iconType) {
1164 case LauncherSettings.Favorites.ICON_TYPE_RESOURCE:
1165 String packageName = c.getString(iconPackageIndex);
1166 String resourceName = c.getString(iconResourceIndex);
1167 PackageManager packageManager = context.getPackageManager();
Joe Onorato56d82912010-03-07 14:32:10 -05001168 info.customIcon = false;
1169 // the resource
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001170 try {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001171 Resources resources = packageManager.getResourcesForApplication(packageName);
Joe Onorato56d82912010-03-07 14:32:10 -05001172 if (resources != null) {
1173 final int id = resources.getIdentifier(resourceName, null, null);
1174 icon = Utilities.createIconBitmap(resources.getDrawable(id), context);
1175 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001176 } catch (Exception e) {
Joe Onorato56d82912010-03-07 14:32:10 -05001177 // drop this. we have other places to look for icons
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001178 }
Joe Onorato56d82912010-03-07 14:32:10 -05001179 // the db
1180 if (icon == null) {
1181 icon = getIconFromCursor(c, iconIndex);
1182 }
1183 // the fallback icon
1184 if (icon == null) {
1185 icon = getFallbackIcon();
1186 info.usingFallbackIcon = true;
1187 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001188 break;
1189 case LauncherSettings.Favorites.ICON_TYPE_BITMAP:
Joe Onorato56d82912010-03-07 14:32:10 -05001190 icon = getIconFromCursor(c, iconIndex);
1191 if (icon == null) {
1192 icon = getFallbackIcon();
1193 info.customIcon = false;
1194 info.usingFallbackIcon = true;
1195 } else {
1196 info.customIcon = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -04001197 }
Joe Onorato56d82912010-03-07 14:32:10 -05001198 info.setIcon(icon);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001199 break;
1200 default:
Joe Onorato56d82912010-03-07 14:32:10 -05001201 info.setIcon(getFallbackIcon());
1202 info.usingFallbackIcon = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -04001203 info.customIcon = false;
1204 break;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001205 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001206 return info;
1207 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001208
Joe Onorato56d82912010-03-07 14:32:10 -05001209 Bitmap getIconFromCursor(Cursor c, int iconIndex) {
1210 if (false) {
1211 Log.d(TAG, "getIconFromCursor app="
1212 + c.getString(c.getColumnIndexOrThrow(LauncherSettings.Favorites.TITLE)));
1213 }
1214 byte[] data = c.getBlob(iconIndex);
1215 try {
1216 return BitmapFactory.decodeByteArray(data, 0, data.length);
1217 } catch (Exception e) {
1218 return null;
1219 }
1220 }
1221
Joe Onorato0589f0f2010-02-08 13:44:00 -08001222 ShortcutInfo addShortcut(Context context, Intent data,
1223 CellLayout.CellInfo cellInfo, boolean notify) {
1224
1225 final ShortcutInfo info = infoFromShortcutIntent(context, data);
1226 addItemToDatabase(context, info, LauncherSettings.Favorites.CONTAINER_DESKTOP,
1227 cellInfo.screen, cellInfo.cellX, cellInfo.cellY, notify);
1228
1229 return info;
1230 }
1231
1232 private ShortcutInfo infoFromShortcutIntent(Context context, Intent data) {
1233 Intent intent = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_INTENT);
1234 String name = data.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
1235 Parcelable bitmap = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_ICON);
1236
1237 Bitmap icon = null;
1238 boolean filtered = false;
1239 boolean customIcon = false;
1240 ShortcutIconResource iconResource = null;
1241
1242 if (bitmap != null && bitmap instanceof Bitmap) {
1243 icon = Utilities.createIconBitmap(new FastBitmapDrawable((Bitmap)bitmap), context);
1244 filtered = true;
1245 customIcon = true;
1246 } else {
1247 Parcelable extra = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE);
1248 if (extra != null && extra instanceof ShortcutIconResource) {
1249 try {
1250 iconResource = (ShortcutIconResource) extra;
1251 final PackageManager packageManager = context.getPackageManager();
1252 Resources resources = packageManager.getResourcesForApplication(
1253 iconResource.packageName);
1254 final int id = resources.getIdentifier(iconResource.resourceName, null, null);
1255 icon = Utilities.createIconBitmap(resources.getDrawable(id), context);
1256 } catch (Exception e) {
1257 Log.w(TAG, "Could not load shortcut icon: " + extra);
1258 }
1259 }
1260 }
1261
Joe Onorato0589f0f2010-02-08 13:44:00 -08001262 final ShortcutInfo info = new ShortcutInfo();
Joe Onorato56d82912010-03-07 14:32:10 -05001263
1264 if (icon == null) {
1265 icon = getFallbackIcon();
1266 info.usingFallbackIcon = true;
1267 }
Joe Onorato0589f0f2010-02-08 13:44:00 -08001268 info.setIcon(icon);
Joe Onorato56d82912010-03-07 14:32:10 -05001269
Joe Onorato0589f0f2010-02-08 13:44:00 -08001270 info.title = name;
1271 info.intent = intent;
1272 info.customIcon = customIcon;
1273 info.iconResource = iconResource;
1274
1275 return info;
1276 }
1277
Joe Onorato9c1289c2009-08-17 11:03:03 -04001278 private static void loadLiveFolderIcon(Context context, Cursor c, int iconTypeIndex,
1279 int iconPackageIndex, int iconResourceIndex, LiveFolderInfo liveFolderInfo) {
1280
1281 int iconType = c.getInt(iconTypeIndex);
1282 switch (iconType) {
1283 case LauncherSettings.Favorites.ICON_TYPE_RESOURCE:
1284 String packageName = c.getString(iconPackageIndex);
1285 String resourceName = c.getString(iconResourceIndex);
1286 PackageManager packageManager = context.getPackageManager();
1287 try {
1288 Resources resources = packageManager.getResourcesForApplication(packageName);
1289 final int id = resources.getIdentifier(resourceName, null, null);
Joe Onorato0589f0f2010-02-08 13:44:00 -08001290 liveFolderInfo.icon = Utilities.createIconBitmap(resources.getDrawable(id),
1291 context);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001292 } catch (Exception e) {
Joe Onorato0589f0f2010-02-08 13:44:00 -08001293 liveFolderInfo.icon = Utilities.createIconBitmap(
1294 context.getResources().getDrawable(R.drawable.ic_launcher_folder),
1295 context);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001296 }
1297 liveFolderInfo.iconResource = new Intent.ShortcutIconResource();
1298 liveFolderInfo.iconResource.packageName = packageName;
1299 liveFolderInfo.iconResource.resourceName = resourceName;
1300 break;
1301 default:
Joe Onorato0589f0f2010-02-08 13:44:00 -08001302 liveFolderInfo.icon = Utilities.createIconBitmap(
1303 context.getResources().getDrawable(R.drawable.ic_launcher_folder),
1304 context);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001305 }
1306 }
1307
Joe Onorato56d82912010-03-07 14:32:10 -05001308 void updateSavedIcon(Context context, ShortcutInfo info, Cursor c, int iconIndex) {
1309 // If this icon doesn't have a custom icon, check to see
1310 // what's stored in the DB, and if it doesn't match what
1311 // we're going to show, store what we are going to show back
1312 // into the DB. We do this so when we're loading, if the
1313 // package manager can't find an icon (for example because
1314 // the app is on SD) then we can use that instead.
1315 if (info.onExternalStorage && !info.customIcon && !info.usingFallbackIcon) {
1316 boolean needSave;
1317 byte[] data = c.getBlob(iconIndex);
1318 try {
1319 if (data != null) {
1320 Bitmap saved = BitmapFactory.decodeByteArray(data, 0, data.length);
1321 Bitmap loaded = info.getIcon(mIconCache);
1322 needSave = !saved.sameAs(loaded);
1323 } else {
1324 needSave = true;
1325 }
1326 } catch (Exception e) {
1327 needSave = true;
1328 }
1329 if (needSave) {
1330 Log.d(TAG, "going to save icon bitmap for info=" + info);
1331 // This is slower than is ideal, but this only happens either
1332 // after the froyo OTA or when the app is updated with a new
1333 // icon.
1334 updateItemInDatabase(context, info);
1335 }
1336 }
1337 }
1338
Joe Onorato9c1289c2009-08-17 11:03:03 -04001339 /**
1340 * Return an existing UserFolderInfo object if we have encountered this ID previously,
1341 * or make a new one.
1342 */
1343 private static UserFolderInfo findOrMakeUserFolder(HashMap<Long, FolderInfo> folders, long id) {
1344 // See if a placeholder was created for us already
1345 FolderInfo folderInfo = folders.get(id);
1346 if (folderInfo == null || !(folderInfo instanceof UserFolderInfo)) {
1347 // No placeholder -- create a new instance
1348 folderInfo = new UserFolderInfo();
1349 folders.put(id, folderInfo);
1350 }
1351 return (UserFolderInfo) folderInfo;
1352 }
1353
1354 /**
1355 * Return an existing UserFolderInfo object if we have encountered this ID previously, or make a
1356 * new one.
1357 */
1358 private static LiveFolderInfo findOrMakeLiveFolder(HashMap<Long, FolderInfo> folders, long id) {
1359 // See if a placeholder was created for us already
1360 FolderInfo folderInfo = folders.get(id);
1361 if (folderInfo == null || !(folderInfo instanceof LiveFolderInfo)) {
1362 // No placeholder -- create a new instance
1363 folderInfo = new LiveFolderInfo();
1364 folders.put(id, folderInfo);
1365 }
1366 return (LiveFolderInfo) folderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001367 }
1368
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001369 private static String getLabel(PackageManager manager, ActivityInfo activityInfo) {
1370 String label = activityInfo.loadLabel(manager).toString();
1371 if (label == null) {
1372 label = manager.getApplicationLabel(activityInfo.applicationInfo).toString();
1373 if (label == null) {
1374 label = activityInfo.name;
1375 }
1376 }
1377 return label;
1378 }
1379
Joe Onorato9c1289c2009-08-17 11:03:03 -04001380 private static final Collator sCollator = Collator.getInstance();
Joe Onoratob0c27f22009-12-01 16:19:38 -08001381 public static final Comparator<ApplicationInfo> APP_NAME_COMPARATOR
Joe Onorato9c1289c2009-08-17 11:03:03 -04001382 = new Comparator<ApplicationInfo>() {
1383 public final int compare(ApplicationInfo a, ApplicationInfo b) {
1384 return sCollator.compare(a.title.toString(), b.title.toString());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001385 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001386 };
Joe Onoratobe386092009-11-17 17:32:16 -08001387
1388 public void dumpState() {
1389 Log.d(TAG, "mBeforeFirstLoad=" + mBeforeFirstLoad);
1390 Log.d(TAG, "mCallbacks=" + mCallbacks);
1391 ApplicationInfo.dumpApplicationInfoList(TAG, "mAllAppsList.data", mAllAppsList.data);
1392 ApplicationInfo.dumpApplicationInfoList(TAG, "mAllAppsList.added", mAllAppsList.added);
1393 ApplicationInfo.dumpApplicationInfoList(TAG, "mAllAppsList.removed", mAllAppsList.removed);
1394 ApplicationInfo.dumpApplicationInfoList(TAG, "mAllAppsList.modified", mAllAppsList.modified);
1395 mLoader.dumpState();
1396 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001397}