LauncherModel.java revision 968795679be0a3f0118d5a6e2e1580808da5716d
1/*
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
17package com.android.launcher2;
18
19import android.app.SearchManager;
20import android.appwidget.AppWidgetManager;
21import android.appwidget.AppWidgetProviderInfo;
22import android.content.BroadcastReceiver;
23import android.content.ComponentName;
24import android.content.ContentProviderClient;
25import android.content.ContentResolver;
26import android.content.ContentValues;
27import android.content.Context;
28import android.content.Intent;
29import android.content.Intent.ShortcutIconResource;
30import android.content.pm.ActivityInfo;
31import android.content.pm.PackageInfo;
32import android.content.pm.PackageManager;
33import android.content.pm.PackageManager.NameNotFoundException;
34import android.content.pm.ResolveInfo;
35import android.content.res.Configuration;
36import android.content.res.Resources;
37import android.database.Cursor;
38import android.graphics.Bitmap;
39import android.graphics.BitmapFactory;
40import android.net.Uri;
41import android.os.Environment;
42import android.os.Handler;
43import android.os.HandlerThread;
44import android.os.Parcelable;
45import android.os.Process;
46import android.os.RemoteException;
47import android.os.SystemClock;
48import android.util.Log;
49
50import com.android.launcher.R;
51import com.android.launcher2.InstallWidgetReceiver.WidgetMimeTypeHandlerData;
52
53import java.lang.ref.WeakReference;
54import java.net.URISyntaxException;
55import java.text.Collator;
56import java.util.ArrayList;
57import java.util.Collections;
58import java.util.Comparator;
59import java.util.HashMap;
60import java.util.List;
61
62/**
63 * Maintains in-memory state of the Launcher. It is expected that there should be only one
64 * LauncherModel object held in a static. Also provide APIs for updating the database state
65 * for the Launcher.
66 */
67public class LauncherModel extends BroadcastReceiver {
68    static final boolean DEBUG_LOADERS = false;
69    static final String TAG = "Launcher.Model";
70
71    private static final int ITEMS_CHUNK = 6; // batch size for the workspace icons
72    private final boolean mAppsCanBeOnExternalStorage;
73    private int mBatchSize; // 0 is all apps at once
74    private int mAllAppsLoadDelay; // milliseconds between batches
75
76    private final LauncherApplication mApp;
77    private final Object mLock = new Object();
78    private DeferredHandler mHandler = new DeferredHandler();
79    private LoaderTask mLoaderTask;
80
81    private static final HandlerThread sWorkerThread = new HandlerThread("launcher-loader");
82    static {
83        sWorkerThread.start();
84    }
85    private static final Handler sWorker = new Handler(sWorkerThread.getLooper());
86
87    // We start off with everything not loaded.  After that, we assume that
88    // our monitoring of the package manager provides all updates and we never
89    // need to do a requery.  These are only ever touched from the loader thread.
90    private boolean mWorkspaceLoaded;
91    private boolean mAllAppsLoaded;
92
93    private WeakReference<Callbacks> mCallbacks;
94
95    // < only access in worker thread >
96    private AllAppsList mAllAppsList;
97
98    // sItemsIdMap maps *all* the ItemInfos (shortcuts, folders, and widgets) created by
99    // LauncherModel to their ids
100    static final HashMap<Long, ItemInfo> sItemsIdMap = new HashMap<Long, ItemInfo>();
101
102    // sItems is passed to bindItems, which expects a list of all folders and shortcuts created by
103    //       LauncherModel that are directly on the home screen (however, no widgets or shortcuts
104    //       within folders).
105    static final ArrayList<ItemInfo> sWorkspaceItems = new ArrayList<ItemInfo>();
106
107    // sAppWidgets is all LauncherAppWidgetInfo created by LauncherModel. Passed to bindAppWidget()
108    static final ArrayList<LauncherAppWidgetInfo> sAppWidgets =
109        new ArrayList<LauncherAppWidgetInfo>();
110
111    // sFolders is all FolderInfos created by LauncherModel. Passed to bindFolders()
112    static final HashMap<Long, FolderInfo> sFolders = new HashMap<Long, FolderInfo>();
113
114    // sDbIconCache is the set of ItemInfos that need to have their icons updated in the database
115    static final HashMap<Object, byte[]> sDbIconCache = new HashMap<Object, byte[]>();
116
117    // </ only access in worker thread >
118
119    private IconCache mIconCache;
120    private Bitmap mDefaultIcon;
121
122    private static int mCellCountX;
123    private static int mCellCountY;
124
125    protected int mPreviousConfigMcc;
126
127    public interface Callbacks {
128        public boolean setLoadOnResume();
129        public int getCurrentWorkspaceScreen();
130        public void startBinding();
131        public void bindItems(ArrayList<ItemInfo> shortcuts, int start, int end);
132        public void bindFolders(HashMap<Long,FolderInfo> folders);
133        public void finishBindingItems();
134        public void bindAppWidget(LauncherAppWidgetInfo info);
135        public void bindAllApplications(ArrayList<ApplicationInfo> apps);
136        public void bindAppsAdded(ArrayList<ApplicationInfo> apps);
137        public void bindAppsUpdated(ArrayList<ApplicationInfo> apps);
138        public void bindAppsRemoved(ArrayList<ApplicationInfo> apps, boolean permanent);
139        public void bindPackagesUpdated();
140        public boolean isAllAppsVisible();
141        public boolean isAllAppsButtonRank(int rank);
142        public void bindSearchablesChanged();
143    }
144
145    LauncherModel(LauncherApplication app, IconCache iconCache) {
146        mAppsCanBeOnExternalStorage = !Environment.isExternalStorageEmulated();
147        mApp = app;
148        mAllAppsList = new AllAppsList(iconCache);
149        mIconCache = iconCache;
150
151        mDefaultIcon = Utilities.createIconBitmap(
152                mIconCache.getFullResDefaultActivityIcon(), app);
153
154        final Resources res = app.getResources();
155        mAllAppsLoadDelay = res.getInteger(R.integer.config_allAppsBatchLoadDelay);
156        mBatchSize = res.getInteger(R.integer.config_allAppsBatchSize);
157        Configuration config = res.getConfiguration();
158        mPreviousConfigMcc = config.mcc;
159    }
160
161    public Bitmap getFallbackIcon() {
162        return Bitmap.createBitmap(mDefaultIcon);
163    }
164
165    public void unbindWorkspaceItems() {
166        sWorker.post(new Runnable() {
167            @Override
168            public void run() {
169                unbindWorkspaceItemsOnMainThread();
170            }
171        });
172    }
173
174    /** Unbinds all the sWorkspaceItems on the main thread, and return a copy of sWorkspaceItems
175     * that is save to reference from the main thread. */
176    private ArrayList<ItemInfo> unbindWorkspaceItemsOnMainThread() {
177        // Ensure that we don't use the same workspace items data structure on the main thread
178        // by making a copy of workspace items first.
179        final ArrayList<ItemInfo> workspaceItems = new ArrayList<ItemInfo>(sWorkspaceItems);
180        final ArrayList<ItemInfo> appWidgets = new ArrayList<ItemInfo>(sAppWidgets);
181        mHandler.post(new Runnable() {
182            @Override
183            public void run() {
184               for (ItemInfo item : workspaceItems) {
185                   item.unbind();
186               }
187               for (ItemInfo item : appWidgets) {
188                   item.unbind();
189               }
190            }
191        });
192
193        return workspaceItems;
194    }
195
196    /**
197     * Adds an item to the DB if it was not created previously, or move it to a new
198     * <container, screen, cellX, cellY>
199     */
200    static void addOrMoveItemInDatabase(Context context, ItemInfo item, long container,
201            int screen, int cellX, int cellY) {
202        if (item.container == ItemInfo.NO_ID) {
203            // From all apps
204            addItemToDatabase(context, item, container, screen, cellX, cellY, false);
205        } else {
206            // From somewhere else
207            moveItemInDatabase(context, item, container, screen, cellX, cellY);
208        }
209    }
210
211    static void updateItemInDatabaseHelper(Context context, final ContentValues values,
212            final ItemInfo item, final String callingFunction) {
213        final long itemId = item.id;
214        final Uri uri = LauncherSettings.Favorites.getContentUri(itemId, false);
215        final ContentResolver cr = context.getContentResolver();
216
217        Runnable r = new Runnable() {
218            public void run() {
219                cr.update(uri, values, null, null);
220
221                ItemInfo modelItem = sItemsIdMap.get(itemId);
222                if (item != modelItem) {
223                    // the modelItem needs to match up perfectly with item if our model is to be
224                    // consistent with the database-- for now, just require modelItem == item
225                    String msg = "item: " + ((item != null) ? item.toString() : "null") +
226                        "modelItem: " + ((modelItem != null) ? modelItem.toString() : "null") +
227                        "Error: ItemInfo passed to " + callingFunction + " doesn't match original";
228                    throw new RuntimeException(msg);
229                }
230
231                // Items are added/removed from the corresponding FolderInfo elsewhere, such
232                // as in Workspace.onDrop. Here, we just add/remove them from the list of items
233                // that are on the desktop, as appropriate
234                if (modelItem.container == LauncherSettings.Favorites.CONTAINER_DESKTOP ||
235                        modelItem.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
236                    if (!sWorkspaceItems.contains(modelItem)) {
237                        sWorkspaceItems.add(modelItem);
238                    }
239                } else {
240                    sWorkspaceItems.remove(modelItem);
241                }
242            }
243        };
244
245        if (sWorkerThread.getThreadId() == Process.myTid()) {
246            r.run();
247        } else {
248            sWorker.post(r);
249        }
250    }
251
252    /**
253     * Move an item in the DB to a new <container, screen, cellX, cellY>
254     */
255    static void moveItemInDatabase(Context context, final ItemInfo item, final long container,
256            final int screen, final int cellX, final int cellY) {
257        item.container = container;
258        item.cellX = cellX;
259        item.cellY = cellY;
260
261        // We store hotseat items in canonical form which is this orientation invariant position
262        // in the hotseat
263        if (context instanceof Launcher && screen < 0 &&
264                container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
265            item.screen = ((Launcher) context).getHotseat().getOrderInHotseat(cellX, cellY);
266        } else {
267            item.screen = screen;
268        }
269
270        final ContentValues values = new ContentValues();
271        values.put(LauncherSettings.Favorites.CONTAINER, item.container);
272        values.put(LauncherSettings.Favorites.CELLX, item.cellX);
273        values.put(LauncherSettings.Favorites.CELLY, item.cellY);
274        values.put(LauncherSettings.Favorites.SCREEN, item.screen);
275
276        updateItemInDatabaseHelper(context, values, item, "moveItemInDatabase");
277    }
278
279    /**
280     * Move and/or resize item in the DB to a new <container, screen, cellX, cellY, spanX, spanY>
281     */
282    static void modifyItemInDatabase(Context context, final ItemInfo item, final long container,
283            final int screen, final int cellX, final int cellY, final int spanX, final int spanY) {
284        item.container = container;
285        item.cellX = cellX;
286        item.cellY = cellY;
287        item.spanX = spanX;
288        item.spanY = spanY;
289
290        // We store hotseat items in canonical form which is this orientation invariant position
291        // in the hotseat
292        if (context instanceof Launcher && screen < 0 &&
293                container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
294            item.screen = ((Launcher) context).getHotseat().getOrderInHotseat(cellX, cellY);
295        } else {
296            item.screen = screen;
297        }
298
299        final ContentValues values = new ContentValues();
300        values.put(LauncherSettings.Favorites.CONTAINER, item.container);
301        values.put(LauncherSettings.Favorites.CELLX, item.cellX);
302        values.put(LauncherSettings.Favorites.CELLY, item.cellY);
303        values.put(LauncherSettings.Favorites.SPANX, item.spanX);
304        values.put(LauncherSettings.Favorites.SPANY, item.spanY);
305        values.put(LauncherSettings.Favorites.SCREEN, item.screen);
306
307        updateItemInDatabaseHelper(context, values, item, "moveItemInDatabase");
308    }
309
310    /**
311     * Update an item to the database in a specified container.
312     */
313    static void updateItemInDatabase(Context context, final ItemInfo item) {
314        final ContentValues values = new ContentValues();
315        item.onAddToDatabase(values);
316        item.updateValuesWithCoordinates(values, item.cellX, item.cellY);
317        updateItemInDatabaseHelper(context, values, item, "updateItemInDatabase");
318    }
319
320    /**
321     * Returns true if the shortcuts already exists in the database.
322     * we identify a shortcut by its title and intent.
323     */
324    static boolean shortcutExists(Context context, String title, Intent intent) {
325        final ContentResolver cr = context.getContentResolver();
326        Cursor c = cr.query(LauncherSettings.Favorites.CONTENT_URI,
327            new String[] { "title", "intent" }, "title=? and intent=?",
328            new String[] { title, intent.toUri(0) }, null);
329        boolean result = false;
330        try {
331            result = c.moveToFirst();
332        } finally {
333            c.close();
334        }
335        return result;
336    }
337
338    /**
339     * Returns an ItemInfo array containing all the items in the LauncherModel.
340     * The ItemInfo.id is not set through this function.
341     */
342    static ArrayList<ItemInfo> getItemsInLocalCoordinates(Context context) {
343        ArrayList<ItemInfo> items = new ArrayList<ItemInfo>();
344        final ContentResolver cr = context.getContentResolver();
345        Cursor c = cr.query(LauncherSettings.Favorites.CONTENT_URI, new String[] {
346                LauncherSettings.Favorites.ITEM_TYPE, LauncherSettings.Favorites.CONTAINER,
347                LauncherSettings.Favorites.SCREEN, LauncherSettings.Favorites.CELLX, LauncherSettings.Favorites.CELLY,
348                LauncherSettings.Favorites.SPANX, LauncherSettings.Favorites.SPANY }, null, null, null);
349
350        final int itemTypeIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ITEM_TYPE);
351        final int containerIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CONTAINER);
352        final int screenIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.SCREEN);
353        final int cellXIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CELLX);
354        final int cellYIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CELLY);
355        final int spanXIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.SPANX);
356        final int spanYIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.SPANY);
357
358        try {
359            while (c.moveToNext()) {
360                ItemInfo item = new ItemInfo();
361                item.cellX = c.getInt(cellXIndex);
362                item.cellY = c.getInt(cellYIndex);
363                item.spanX = c.getInt(spanXIndex);
364                item.spanY = c.getInt(spanYIndex);
365                item.container = c.getInt(containerIndex);
366                item.itemType = c.getInt(itemTypeIndex);
367                item.screen = c.getInt(screenIndex);
368
369                items.add(item);
370            }
371        } catch (Exception e) {
372            items.clear();
373        } finally {
374            c.close();
375        }
376
377        return items;
378    }
379
380    /**
381     * Find a folder in the db, creating the FolderInfo if necessary, and adding it to folderList.
382     */
383    FolderInfo getFolderById(Context context, HashMap<Long,FolderInfo> folderList, long id) {
384        final ContentResolver cr = context.getContentResolver();
385        Cursor c = cr.query(LauncherSettings.Favorites.CONTENT_URI, null,
386                "_id=? and (itemType=? or itemType=?)",
387                new String[] { String.valueOf(id),
388                        String.valueOf(LauncherSettings.Favorites.ITEM_TYPE_FOLDER)}, null);
389
390        try {
391            if (c.moveToFirst()) {
392                final int itemTypeIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ITEM_TYPE);
393                final int titleIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.TITLE);
394                final int containerIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CONTAINER);
395                final int screenIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.SCREEN);
396                final int cellXIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CELLX);
397                final int cellYIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CELLY);
398
399                FolderInfo folderInfo = null;
400                switch (c.getInt(itemTypeIndex)) {
401                    case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
402                        folderInfo = findOrMakeFolder(folderList, id);
403                        break;
404                }
405
406                folderInfo.title = c.getString(titleIndex);
407                folderInfo.id = id;
408                folderInfo.container = c.getInt(containerIndex);
409                folderInfo.screen = c.getInt(screenIndex);
410                folderInfo.cellX = c.getInt(cellXIndex);
411                folderInfo.cellY = c.getInt(cellYIndex);
412
413                return folderInfo;
414            }
415        } finally {
416            c.close();
417        }
418
419        return null;
420    }
421
422    /**
423     * Add an item to the database in a specified container. Sets the container, screen, cellX and
424     * cellY fields of the item. Also assigns an ID to the item.
425     */
426    static void addItemToDatabase(Context context, final ItemInfo item, final long container,
427            final int screen, final int cellX, final int cellY, final boolean notify) {
428        item.container = container;
429        item.cellX = cellX;
430        item.cellY = cellY;
431        // We store hotseat items in canonical form which is this orientation invariant position
432        // in the hotseat
433        if (context instanceof Launcher && screen < 0 &&
434                container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
435            item.screen = ((Launcher) context).getHotseat().getOrderInHotseat(cellX, cellY);
436        } else {
437            item.screen = screen;
438        }
439
440        final ContentValues values = new ContentValues();
441        final ContentResolver cr = context.getContentResolver();
442        item.onAddToDatabase(values);
443
444        LauncherApplication app = (LauncherApplication) context.getApplicationContext();
445        item.id = app.getLauncherProvider().generateNewId();
446        values.put(LauncherSettings.Favorites._ID, item.id);
447        item.updateValuesWithCoordinates(values, item.cellX, item.cellY);
448
449        Runnable r = new Runnable() {
450            public void run() {
451                cr.insert(notify ? LauncherSettings.Favorites.CONTENT_URI :
452                        LauncherSettings.Favorites.CONTENT_URI_NO_NOTIFICATION, values);
453
454                if (sItemsIdMap.containsKey(item.id)) {
455                    // we should not be adding new items in the db with the same id
456                    throw new RuntimeException("Error: ItemInfo id (" + item.id + ") passed to " +
457                        "addItemToDatabase already exists." + item.toString());
458                }
459                sItemsIdMap.put(item.id, item);
460                switch (item.itemType) {
461                    case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
462                        sFolders.put(item.id, (FolderInfo) item);
463                        // Fall through
464                    case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
465                    case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
466                        if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP ||
467                                item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
468                            sWorkspaceItems.add(item);
469                        }
470                        break;
471                    case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
472                        sAppWidgets.add((LauncherAppWidgetInfo) item);
473                        break;
474                }
475            }
476        };
477
478        if (sWorkerThread.getThreadId() == Process.myTid()) {
479            r.run();
480        } else {
481            sWorker.post(r);
482        }
483    }
484
485    /**
486     * Creates a new unique child id, for a given cell span across all layouts.
487     */
488    static int getCellLayoutChildId(
489            long container, int screen, int localCellX, int localCellY, int spanX, int spanY) {
490        return (((int) container & 0xFF) << 24)
491                | (screen & 0xFF) << 16 | (localCellX & 0xFF) << 8 | (localCellY & 0xFF);
492    }
493
494    static int getCellCountX() {
495        return mCellCountX;
496    }
497
498    static int getCellCountY() {
499        return mCellCountY;
500    }
501
502    /**
503     * Updates the model orientation helper to take into account the current layout dimensions
504     * when performing local/canonical coordinate transformations.
505     */
506    static void updateWorkspaceLayoutCells(int shortAxisCellCount, int longAxisCellCount) {
507        mCellCountX = shortAxisCellCount;
508        mCellCountY = longAxisCellCount;
509    }
510
511    /**
512     * Removes the specified item from the database
513     * @param context
514     * @param item
515     */
516    static void deleteItemFromDatabase(Context context, final ItemInfo item) {
517        final ContentResolver cr = context.getContentResolver();
518        final Uri uriToDelete = LauncherSettings.Favorites.getContentUri(item.id, false);
519        Runnable r = new Runnable() {
520            public void run() {
521                cr.delete(uriToDelete, null, null);
522                switch (item.itemType) {
523                    case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
524                        sFolders.remove(item.id);
525                        sWorkspaceItems.remove(item);
526                        break;
527                    case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
528                    case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
529                        sWorkspaceItems.remove(item);
530                        break;
531                    case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
532                        sAppWidgets.remove((LauncherAppWidgetInfo) item);
533                        break;
534                }
535                sItemsIdMap.remove(item.id);
536                sDbIconCache.remove(item);
537            }
538        };
539        if (sWorkerThread.getThreadId() == Process.myTid()) {
540            r.run();
541        } else {
542            sWorker.post(r);
543        }
544    }
545
546    /**
547     * Remove the contents of the specified folder from the database
548     */
549    static void deleteFolderContentsFromDatabase(Context context, final FolderInfo info) {
550        final ContentResolver cr = context.getContentResolver();
551
552        Runnable r = new Runnable() {
553            public void run() {
554                cr.delete(LauncherSettings.Favorites.getContentUri(info.id, false), null, null);
555                sItemsIdMap.remove(info.id);
556                sFolders.remove(info.id);
557                sDbIconCache.remove(info);
558                sWorkspaceItems.remove(info);
559
560                cr.delete(LauncherSettings.Favorites.CONTENT_URI_NO_NOTIFICATION,
561                        LauncherSettings.Favorites.CONTAINER + "=" + info.id, null);
562                for (ItemInfo childInfo : info.contents) {
563                    sItemsIdMap.remove(childInfo.id);
564                    sDbIconCache.remove(childInfo);
565                }
566            }
567        };
568        if (sWorkerThread.getThreadId() == Process.myTid()) {
569            r.run();
570        } else {
571            sWorker.post(r);
572        }
573    }
574
575    /**
576     * Set this as the current Launcher activity object for the loader.
577     */
578    public void initialize(Callbacks callbacks) {
579        synchronized (mLock) {
580            mCallbacks = new WeakReference<Callbacks>(callbacks);
581        }
582    }
583
584    /**
585     * Call from the handler for ACTION_PACKAGE_ADDED, ACTION_PACKAGE_REMOVED and
586     * ACTION_PACKAGE_CHANGED.
587     */
588    @Override
589    public void onReceive(Context context, Intent intent) {
590        if (DEBUG_LOADERS) Log.d(TAG, "onReceive intent=" + intent);
591
592        final String action = intent.getAction();
593
594        if (Intent.ACTION_PACKAGE_CHANGED.equals(action)
595                || Intent.ACTION_PACKAGE_REMOVED.equals(action)
596                || Intent.ACTION_PACKAGE_ADDED.equals(action)) {
597            final String packageName = intent.getData().getSchemeSpecificPart();
598            final boolean replacing = intent.getBooleanExtra(Intent.EXTRA_REPLACING, false);
599
600            int op = PackageUpdatedTask.OP_NONE;
601
602            if (packageName == null || packageName.length() == 0) {
603                // they sent us a bad intent
604                return;
605            }
606
607            if (Intent.ACTION_PACKAGE_CHANGED.equals(action)) {
608                op = PackageUpdatedTask.OP_UPDATE;
609            } else if (Intent.ACTION_PACKAGE_REMOVED.equals(action)) {
610                if (!replacing) {
611                    op = PackageUpdatedTask.OP_REMOVE;
612                }
613                // else, we are replacing the package, so a PACKAGE_ADDED will be sent
614                // later, we will update the package at this time
615            } else if (Intent.ACTION_PACKAGE_ADDED.equals(action)) {
616                if (!replacing) {
617                    op = PackageUpdatedTask.OP_ADD;
618                } else {
619                    op = PackageUpdatedTask.OP_UPDATE;
620                }
621            }
622
623            if (op != PackageUpdatedTask.OP_NONE) {
624                enqueuePackageUpdated(new PackageUpdatedTask(op, new String[] { packageName }));
625            }
626
627        } else if (Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE.equals(action)) {
628            // First, schedule to add these apps back in.
629            String[] packages = intent.getStringArrayExtra(Intent.EXTRA_CHANGED_PACKAGE_LIST);
630            enqueuePackageUpdated(new PackageUpdatedTask(PackageUpdatedTask.OP_ADD, packages));
631            // Then, rebind everything.
632            startLoaderFromBackground();
633        } else if (Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE.equals(action)) {
634            String[] packages = intent.getStringArrayExtra(Intent.EXTRA_CHANGED_PACKAGE_LIST);
635            enqueuePackageUpdated(new PackageUpdatedTask(
636                        PackageUpdatedTask.OP_UNAVAILABLE, packages));
637        } else if (Intent.ACTION_LOCALE_CHANGED.equals(action)) {
638            // If we have changed locale we need to clear out the labels in all apps/workspace.
639            forceReload();
640        } else if (Intent.ACTION_CONFIGURATION_CHANGED.equals(action)) {
641             // Check if configuration change was an mcc/mnc change which would affect app resources
642             // and we would need to clear out the labels in all apps/workspace. Same handling as
643             // above for ACTION_LOCALE_CHANGED
644             Configuration currentConfig = context.getResources().getConfiguration();
645             if (mPreviousConfigMcc != currentConfig.mcc) {
646                   Log.d(TAG, "Reload apps on config change. curr_mcc:"
647                       + currentConfig.mcc + " prevmcc:" + mPreviousConfigMcc);
648                   forceReload();
649             }
650             // Update previousConfig
651             mPreviousConfigMcc = currentConfig.mcc;
652        } else if (SearchManager.INTENT_GLOBAL_SEARCH_ACTIVITY_CHANGED.equals(action) ||
653                   SearchManager.INTENT_ACTION_SEARCHABLES_CHANGED.equals(action)) {
654            if (mCallbacks != null) {
655                Callbacks callbacks = mCallbacks.get();
656                if (callbacks != null) {
657                    callbacks.bindSearchablesChanged();
658                }
659            }
660        }
661    }
662
663    private void forceReload() {
664        resetLoadedState(true, true);
665
666        // Do this here because if the launcher activity is running it will be restarted.
667        // If it's not running startLoaderFromBackground will merely tell it that it needs
668        // to reload.
669        startLoaderFromBackground();
670    }
671
672    public void resetLoadedState(boolean resetAllAppsLoaded, boolean resetWorkspaceLoaded) {
673        synchronized (mLock) {
674            // Stop any existing loaders first, so they don't set mAllAppsLoaded or
675            // mWorkspaceLoaded to true later
676            stopLoaderLocked();
677            if (resetAllAppsLoaded) mAllAppsLoaded = false;
678            if (resetWorkspaceLoaded) mWorkspaceLoaded = false;
679        }
680    }
681
682    /**
683     * When the launcher is in the background, it's possible for it to miss paired
684     * configuration changes.  So whenever we trigger the loader from the background
685     * tell the launcher that it needs to re-run the loader when it comes back instead
686     * of doing it now.
687     */
688    public void startLoaderFromBackground() {
689        boolean runLoader = false;
690        if (mCallbacks != null) {
691            Callbacks callbacks = mCallbacks.get();
692            if (callbacks != null) {
693                // Only actually run the loader if they're not paused.
694                if (!callbacks.setLoadOnResume()) {
695                    runLoader = true;
696                }
697            }
698        }
699        if (runLoader) {
700            startLoader(false);
701        }
702    }
703
704    // If there is already a loader task running, tell it to stop.
705    // returns true if isLaunching() was true on the old task
706    private boolean stopLoaderLocked() {
707        boolean isLaunching = false;
708        LoaderTask oldTask = mLoaderTask;
709        if (oldTask != null) {
710            if (oldTask.isLaunching()) {
711                isLaunching = true;
712            }
713            oldTask.stopLocked();
714        }
715        return isLaunching;
716    }
717
718    public void startLoader(boolean isLaunching) {
719        synchronized (mLock) {
720            if (DEBUG_LOADERS) {
721                Log.d(TAG, "startLoader isLaunching=" + isLaunching);
722            }
723
724            // Don't bother to start the thread if we know it's not going to do anything
725            if (mCallbacks != null && mCallbacks.get() != null) {
726                // If there is already one running, tell it to stop.
727                // also, don't downgrade isLaunching if we're already running
728                isLaunching = isLaunching || stopLoaderLocked();
729                mLoaderTask = new LoaderTask(mApp, isLaunching);
730                sWorkerThread.setPriority(Thread.NORM_PRIORITY);
731                sWorker.post(mLoaderTask);
732            }
733        }
734    }
735
736    public void stopLoader() {
737        synchronized (mLock) {
738            if (mLoaderTask != null) {
739                mLoaderTask.stopLocked();
740            }
741        }
742    }
743
744    public boolean isAllAppsLoaded() {
745        return mAllAppsLoaded;
746    }
747
748    /**
749     * Runnable for the thread that loads the contents of the launcher:
750     *   - workspace icons
751     *   - widgets
752     *   - all apps icons
753     */
754    private class LoaderTask implements Runnable {
755        private Context mContext;
756        private Thread mWaitThread;
757        private boolean mIsLaunching;
758        private boolean mStopped;
759        private boolean mLoadAndBindStepFinished;
760        private HashMap<Object, CharSequence> mLabelCache;
761
762        LoaderTask(Context context, boolean isLaunching) {
763            mContext = context;
764            mIsLaunching = isLaunching;
765            mLabelCache = new HashMap<Object, CharSequence>();
766        }
767
768        boolean isLaunching() {
769            return mIsLaunching;
770        }
771
772        private void loadAndBindWorkspace() {
773            // Load the workspace
774            if (DEBUG_LOADERS) {
775                Log.d(TAG, "loadAndBindWorkspace mWorkspaceLoaded=" + mWorkspaceLoaded);
776            }
777
778            if (!mWorkspaceLoaded) {
779                loadWorkspace();
780                synchronized (LoaderTask.this) {
781                    if (mStopped) {
782                        return;
783                    }
784                    mWorkspaceLoaded = true;
785                }
786            }
787
788            // Bind the workspace
789            bindWorkspace();
790        }
791
792        private void waitForIdle() {
793            // Wait until the either we're stopped or the other threads are done.
794            // This way we don't start loading all apps until the workspace has settled
795            // down.
796            synchronized (LoaderTask.this) {
797                final long workspaceWaitTime = DEBUG_LOADERS ? SystemClock.uptimeMillis() : 0;
798
799                mHandler.postIdle(new Runnable() {
800                        public void run() {
801                            synchronized (LoaderTask.this) {
802                                mLoadAndBindStepFinished = true;
803                                if (DEBUG_LOADERS) {
804                                    Log.d(TAG, "done with previous binding step");
805                                }
806                                LoaderTask.this.notify();
807                            }
808                        }
809                    });
810
811                while (!mStopped && !mLoadAndBindStepFinished) {
812                    try {
813                        this.wait();
814                    } catch (InterruptedException ex) {
815                        // Ignore
816                    }
817                }
818                if (DEBUG_LOADERS) {
819                    Log.d(TAG, "waited "
820                            + (SystemClock.uptimeMillis()-workspaceWaitTime)
821                            + "ms for previous step to finish binding");
822                }
823            }
824        }
825
826        public void run() {
827            // Optimize for end-user experience: if the Launcher is up and // running with the
828            // All Apps interface in the foreground, load All Apps first. Otherwise, load the
829            // workspace first (default).
830            final Callbacks cbk = mCallbacks.get();
831            final boolean loadWorkspaceFirst = cbk != null ? (!cbk.isAllAppsVisible()) : true;
832
833            keep_running: {
834                // Elevate priority when Home launches for the first time to avoid
835                // starving at boot time. Staring at a blank home is not cool.
836                synchronized (mLock) {
837                    if (DEBUG_LOADERS) Log.d(TAG, "Setting thread priority to " +
838                            (mIsLaunching ? "DEFAULT" : "BACKGROUND"));
839                    android.os.Process.setThreadPriority(mIsLaunching
840                            ? Process.THREAD_PRIORITY_DEFAULT : Process.THREAD_PRIORITY_BACKGROUND);
841                }
842                if (loadWorkspaceFirst) {
843                    if (DEBUG_LOADERS) Log.d(TAG, "step 1: loading workspace");
844                    loadAndBindWorkspace();
845                } else {
846                    if (DEBUG_LOADERS) Log.d(TAG, "step 1: special: loading all apps");
847                    loadAndBindAllApps();
848                }
849
850                if (mStopped) {
851                    break keep_running;
852                }
853
854                // Whew! Hard work done.  Slow us down, and wait until the UI thread has
855                // settled down.
856                synchronized (mLock) {
857                    if (mIsLaunching) {
858                        if (DEBUG_LOADERS) Log.d(TAG, "Setting thread priority to BACKGROUND");
859                        android.os.Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
860                    }
861                }
862                waitForIdle();
863
864                // second step
865                if (loadWorkspaceFirst) {
866                    if (DEBUG_LOADERS) Log.d(TAG, "step 2: loading all apps");
867                    loadAndBindAllApps();
868                } else {
869                    if (DEBUG_LOADERS) Log.d(TAG, "step 2: special: loading workspace");
870                    loadAndBindWorkspace();
871                }
872
873                // Restore the default thread priority after we are done loading items
874                synchronized (mLock) {
875                    android.os.Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
876                }
877            }
878
879
880            // Update the saved icons if necessary
881            if (DEBUG_LOADERS) Log.d(TAG, "Comparing loaded icons to database icons");
882            for (Object key : sDbIconCache.keySet()) {
883                updateSavedIcon(mContext, (ShortcutInfo) key, sDbIconCache.get(key));
884            }
885            sDbIconCache.clear();
886
887            // Clear out this reference, otherwise we end up holding it until all of the
888            // callback runnables are done.
889            mContext = null;
890
891            synchronized (mLock) {
892                // If we are still the last one to be scheduled, remove ourselves.
893                if (mLoaderTask == this) {
894                    mLoaderTask = null;
895                }
896            }
897        }
898
899        public void stopLocked() {
900            synchronized (LoaderTask.this) {
901                mStopped = true;
902                this.notify();
903            }
904        }
905
906        /**
907         * Gets the callbacks object.  If we've been stopped, or if the launcher object
908         * has somehow been garbage collected, return null instead.  Pass in the Callbacks
909         * object that was around when the deferred message was scheduled, and if there's
910         * a new Callbacks object around then also return null.  This will save us from
911         * calling onto it with data that will be ignored.
912         */
913        Callbacks tryGetCallbacks(Callbacks oldCallbacks) {
914            synchronized (mLock) {
915                if (mStopped) {
916                    return null;
917                }
918
919                if (mCallbacks == null) {
920                    return null;
921                }
922
923                final Callbacks callbacks = mCallbacks.get();
924                if (callbacks != oldCallbacks) {
925                    return null;
926                }
927                if (callbacks == null) {
928                    Log.w(TAG, "no mCallbacks");
929                    return null;
930                }
931
932                return callbacks;
933            }
934        }
935
936        // check & update map of what's occupied; used to discard overlapping/invalid items
937        private boolean checkItemPlacement(ItemInfo occupied[][][], ItemInfo item) {
938            int containerIndex = item.screen;
939            if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
940                // Return early if we detect that an item is under the hotseat button
941                if (mCallbacks == null || mCallbacks.get().isAllAppsButtonRank(item.screen)) {
942                    return false;
943                }
944
945                // We use the last index to refer to the hotseat and the screen as the rank, so
946                // test and update the occupied state accordingly
947                if (occupied[Launcher.SCREEN_COUNT][item.screen][0] != null) {
948                    Log.e(TAG, "Error loading shortcut into hotseat " + item
949                        + " into position (" + item.screen + ":" + item.cellX + "," + item.cellY
950                        + ") occupied by " + occupied[Launcher.SCREEN_COUNT][item.screen][0]);
951                    return false;
952                } else {
953                    occupied[Launcher.SCREEN_COUNT][item.screen][0] = item;
954                    return true;
955                }
956            } else if (item.container != LauncherSettings.Favorites.CONTAINER_DESKTOP) {
957                // Skip further checking if it is not the hotseat or workspace container
958                return true;
959            }
960
961            // Check if any workspace icons overlap with each other
962            for (int x = item.cellX; x < (item.cellX+item.spanX); x++) {
963                for (int y = item.cellY; y < (item.cellY+item.spanY); y++) {
964                    if (occupied[containerIndex][x][y] != null) {
965                        Log.e(TAG, "Error loading shortcut " + item
966                            + " into cell (" + containerIndex + "-" + item.screen + ":"
967                            + x + "," + y
968                            + ") occupied by "
969                            + occupied[containerIndex][x][y]);
970                        return false;
971                    }
972                }
973            }
974            for (int x = item.cellX; x < (item.cellX+item.spanX); x++) {
975                for (int y = item.cellY; y < (item.cellY+item.spanY); y++) {
976                    occupied[containerIndex][x][y] = item;
977                }
978            }
979
980            return true;
981        }
982
983        private void loadWorkspace() {
984            final long t = DEBUG_LOADERS ? SystemClock.uptimeMillis() : 0;
985
986            final Context context = mContext;
987            final ContentResolver contentResolver = context.getContentResolver();
988            final PackageManager manager = context.getPackageManager();
989            final AppWidgetManager widgets = AppWidgetManager.getInstance(context);
990            final boolean isSafeMode = manager.isSafeMode();
991
992            // Make sure the default workspace is loaded, if needed
993            mApp.getLauncherProvider().loadDefaultFavoritesIfNecessary();
994
995            sWorkspaceItems.clear();
996            sAppWidgets.clear();
997            sFolders.clear();
998            sItemsIdMap.clear();
999            sDbIconCache.clear();
1000
1001            final ArrayList<Long> itemsToRemove = new ArrayList<Long>();
1002
1003            final Cursor c = contentResolver.query(
1004                    LauncherSettings.Favorites.CONTENT_URI, null, null, null, null);
1005
1006            // +1 for the hotseat (it can be larger than the workspace)
1007            // Load workspace in reverse order to ensure that latest items are loaded first (and
1008            // before any earlier duplicates)
1009            final ItemInfo occupied[][][] =
1010                    new ItemInfo[Launcher.SCREEN_COUNT + 1][mCellCountX + 1][mCellCountY + 1];
1011
1012            try {
1013                final int idIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites._ID);
1014                final int intentIndex = c.getColumnIndexOrThrow
1015                        (LauncherSettings.Favorites.INTENT);
1016                final int titleIndex = c.getColumnIndexOrThrow
1017                        (LauncherSettings.Favorites.TITLE);
1018                final int iconTypeIndex = c.getColumnIndexOrThrow(
1019                        LauncherSettings.Favorites.ICON_TYPE);
1020                final int iconIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON);
1021                final int iconPackageIndex = c.getColumnIndexOrThrow(
1022                        LauncherSettings.Favorites.ICON_PACKAGE);
1023                final int iconResourceIndex = c.getColumnIndexOrThrow(
1024                        LauncherSettings.Favorites.ICON_RESOURCE);
1025                final int containerIndex = c.getColumnIndexOrThrow(
1026                        LauncherSettings.Favorites.CONTAINER);
1027                final int itemTypeIndex = c.getColumnIndexOrThrow(
1028                        LauncherSettings.Favorites.ITEM_TYPE);
1029                final int appWidgetIdIndex = c.getColumnIndexOrThrow(
1030                        LauncherSettings.Favorites.APPWIDGET_ID);
1031                final int screenIndex = c.getColumnIndexOrThrow(
1032                        LauncherSettings.Favorites.SCREEN);
1033                final int cellXIndex = c.getColumnIndexOrThrow
1034                        (LauncherSettings.Favorites.CELLX);
1035                final int cellYIndex = c.getColumnIndexOrThrow
1036                        (LauncherSettings.Favorites.CELLY);
1037                final int spanXIndex = c.getColumnIndexOrThrow
1038                        (LauncherSettings.Favorites.SPANX);
1039                final int spanYIndex = c.getColumnIndexOrThrow(
1040                        LauncherSettings.Favorites.SPANY);
1041                //final int uriIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.URI);
1042                //final int displayModeIndex = c.getColumnIndexOrThrow(
1043                //        LauncherSettings.Favorites.DISPLAY_MODE);
1044
1045                ShortcutInfo info;
1046                String intentDescription;
1047                LauncherAppWidgetInfo appWidgetInfo;
1048                int container;
1049                long id;
1050                Intent intent;
1051
1052                while (!mStopped && c.moveToNext()) {
1053                    try {
1054                        int itemType = c.getInt(itemTypeIndex);
1055
1056                        switch (itemType) {
1057                        case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
1058                        case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
1059                            intentDescription = c.getString(intentIndex);
1060                            try {
1061                                intent = Intent.parseUri(intentDescription, 0);
1062                            } catch (URISyntaxException e) {
1063                                continue;
1064                            }
1065
1066                            if (itemType == LauncherSettings.Favorites.ITEM_TYPE_APPLICATION) {
1067                                info = getShortcutInfo(manager, intent, context, c, iconIndex,
1068                                        titleIndex, mLabelCache);
1069                            } else {
1070                                info = getShortcutInfo(c, context, iconTypeIndex,
1071                                        iconPackageIndex, iconResourceIndex, iconIndex,
1072                                        titleIndex);
1073
1074                                // App shortcuts that used to be automatically added to Launcher
1075                                // didn't always have the correct intent flags set, so do that here
1076                                if (intent.getAction().equals(Intent.ACTION_MAIN) &&
1077                                        intent.getCategories().contains(Intent.CATEGORY_LAUNCHER)) {
1078                                    intent.addFlags(
1079                                        Intent.FLAG_ACTIVITY_NEW_TASK |
1080                                        Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1081                                }
1082                            }
1083
1084                            if (info != null) {
1085                                info.intent = intent;
1086                                info.id = c.getLong(idIndex);
1087                                container = c.getInt(containerIndex);
1088                                info.container = container;
1089                                info.screen = c.getInt(screenIndex);
1090                                info.cellX = c.getInt(cellXIndex);
1091                                info.cellY = c.getInt(cellYIndex);
1092
1093                                // check & update map of what's occupied
1094                                if (!checkItemPlacement(occupied, info)) {
1095                                    break;
1096                                }
1097
1098                                switch (container) {
1099                                case LauncherSettings.Favorites.CONTAINER_DESKTOP:
1100                                case LauncherSettings.Favorites.CONTAINER_HOTSEAT:
1101                                    sWorkspaceItems.add(info);
1102                                    break;
1103                                default:
1104                                    // Item is in a user folder
1105                                    FolderInfo folderInfo =
1106                                            findOrMakeFolder(sFolders, container);
1107                                    folderInfo.add(info);
1108                                    break;
1109                                }
1110                                sItemsIdMap.put(info.id, info);
1111
1112                                // now that we've loaded everthing re-save it with the
1113                                // icon in case it disappears somehow.
1114                                queueIconToBeChecked(sDbIconCache, info, c, iconIndex);
1115                            } else {
1116                                // Failed to load the shortcut, probably because the
1117                                // activity manager couldn't resolve it (maybe the app
1118                                // was uninstalled), or the db row was somehow screwed up.
1119                                // Delete it.
1120                                id = c.getLong(idIndex);
1121                                Log.e(TAG, "Error loading shortcut " + id + ", removing it");
1122                                contentResolver.delete(LauncherSettings.Favorites.getContentUri(
1123                                            id, false), null, null);
1124                            }
1125                            break;
1126
1127                        case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
1128                            id = c.getLong(idIndex);
1129                            FolderInfo folderInfo = findOrMakeFolder(sFolders, id);
1130
1131                            folderInfo.title = c.getString(titleIndex);
1132                            folderInfo.id = id;
1133                            container = c.getInt(containerIndex);
1134                            folderInfo.container = container;
1135                            folderInfo.screen = c.getInt(screenIndex);
1136                            folderInfo.cellX = c.getInt(cellXIndex);
1137                            folderInfo.cellY = c.getInt(cellYIndex);
1138
1139                            // check & update map of what's occupied
1140                            if (!checkItemPlacement(occupied, folderInfo)) {
1141                                break;
1142                            }
1143                            switch (container) {
1144                                case LauncherSettings.Favorites.CONTAINER_DESKTOP:
1145                                case LauncherSettings.Favorites.CONTAINER_HOTSEAT:
1146                                    sWorkspaceItems.add(folderInfo);
1147                                    break;
1148                            }
1149
1150                            sItemsIdMap.put(folderInfo.id, folderInfo);
1151                            sFolders.put(folderInfo.id, folderInfo);
1152                            break;
1153
1154                        case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
1155                            // Read all Launcher-specific widget details
1156                            int appWidgetId = c.getInt(appWidgetIdIndex);
1157                            id = c.getLong(idIndex);
1158
1159                            final AppWidgetProviderInfo provider =
1160                                    widgets.getAppWidgetInfo(appWidgetId);
1161
1162                            if (!isSafeMode && (provider == null || provider.provider == null ||
1163                                    provider.provider.getPackageName() == null)) {
1164                                String log = "Deleting widget that isn't installed anymore: id="
1165                                    + id + " appWidgetId=" + appWidgetId;
1166                                Log.e(TAG, log);
1167                                Launcher.sDumpLogs.add(log);
1168                                itemsToRemove.add(id);
1169                            } else {
1170                                appWidgetInfo = new LauncherAppWidgetInfo(appWidgetId);
1171                                appWidgetInfo.id = id;
1172                                appWidgetInfo.screen = c.getInt(screenIndex);
1173                                appWidgetInfo.cellX = c.getInt(cellXIndex);
1174                                appWidgetInfo.cellY = c.getInt(cellYIndex);
1175                                appWidgetInfo.spanX = c.getInt(spanXIndex);
1176                                appWidgetInfo.spanY = c.getInt(spanYIndex);
1177
1178                                container = c.getInt(containerIndex);
1179                                if (container != LauncherSettings.Favorites.CONTAINER_DESKTOP &&
1180                                    container != LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
1181                                    Log.e(TAG, "Widget found where container "
1182                                        + "!= CONTAINER_DESKTOP nor CONTAINER_HOTSEAT - ignoring!");
1183                                    continue;
1184                                }
1185                                appWidgetInfo.container = c.getInt(containerIndex);
1186
1187                                // check & update map of what's occupied
1188                                if (!checkItemPlacement(occupied, appWidgetInfo)) {
1189                                    break;
1190                                }
1191                                sItemsIdMap.put(appWidgetInfo.id, appWidgetInfo);
1192                                sAppWidgets.add(appWidgetInfo);
1193                            }
1194                            break;
1195                        }
1196                    } catch (Exception e) {
1197                        Log.w(TAG, "Desktop items loading interrupted:", e);
1198                    }
1199                }
1200            } finally {
1201                c.close();
1202            }
1203
1204            if (itemsToRemove.size() > 0) {
1205                ContentProviderClient client = contentResolver.acquireContentProviderClient(
1206                                LauncherSettings.Favorites.CONTENT_URI);
1207                // Remove dead items
1208                for (long id : itemsToRemove) {
1209                    if (DEBUG_LOADERS) {
1210                        Log.d(TAG, "Removed id = " + id);
1211                    }
1212                    // Don't notify content observers
1213                    try {
1214                        client.delete(LauncherSettings.Favorites.getContentUri(id, false),
1215                                null, null);
1216                    } catch (RemoteException e) {
1217                        Log.w(TAG, "Could not remove id = " + id);
1218                    }
1219                }
1220            }
1221
1222            if (DEBUG_LOADERS) {
1223                Log.d(TAG, "loaded workspace in " + (SystemClock.uptimeMillis()-t) + "ms");
1224                Log.d(TAG, "workspace layout: ");
1225                for (int y = 0; y < mCellCountY; y++) {
1226                    String line = "";
1227                    for (int s = 0; s < Launcher.SCREEN_COUNT; s++) {
1228                        if (s > 0) {
1229                            line += " | ";
1230                        }
1231                        for (int x = 0; x < mCellCountX; x++) {
1232                            line += ((occupied[s][x][y] != null) ? "#" : ".");
1233                        }
1234                    }
1235                    Log.d(TAG, "[ " + line + " ]");
1236                }
1237            }
1238        }
1239
1240        /**
1241         * Read everything out of our database.
1242         */
1243        private void bindWorkspace() {
1244            final long t = SystemClock.uptimeMillis();
1245
1246            // Don't use these two variables in any of the callback runnables.
1247            // Otherwise we hold a reference to them.
1248            final Callbacks oldCallbacks = mCallbacks.get();
1249            if (oldCallbacks == null) {
1250                // This launcher has exited and nobody bothered to tell us.  Just bail.
1251                Log.w(TAG, "LoaderTask running with no launcher");
1252                return;
1253            }
1254
1255            // Get the list of workspace items to load and unbind the existing ShortcutInfos
1256            // before we call startBinding() below.
1257            final int currentScreen = oldCallbacks.getCurrentWorkspaceScreen();
1258            final ArrayList<ItemInfo> tmpWorkspaceItems = unbindWorkspaceItemsOnMainThread();
1259            // Order the items for loading as follows: current workspace, hotseat, everything else
1260            Collections.sort(tmpWorkspaceItems, new Comparator<ItemInfo>() {
1261                @Override
1262                public int compare(ItemInfo lhs, ItemInfo rhs) {
1263                    int cellCountX = LauncherModel.getCellCountX();
1264                    int cellCountY = LauncherModel.getCellCountY();
1265                    int screenOffset = cellCountX * cellCountY;
1266                    int containerOffset = screenOffset * (Launcher.SCREEN_COUNT + 1); // +1 hotseat
1267                    long lr = (lhs.container * containerOffset + lhs.screen * screenOffset +
1268                            lhs.cellY * cellCountX + lhs.cellX);
1269                    long rr = (rhs.container * containerOffset + rhs.screen * screenOffset +
1270                            rhs.cellY * cellCountX + rhs.cellX);
1271                    return (int) (lr - rr);
1272                }
1273            });
1274            // Precondition: the items are ordered by page, screen
1275            final ArrayList<ItemInfo> workspaceItems = new ArrayList<ItemInfo>();
1276            for (ItemInfo ii : tmpWorkspaceItems) {
1277                // Prepend the current items, hotseat items, append everything else
1278                if (ii.container == LauncherSettings.Favorites.CONTAINER_DESKTOP &&
1279                        ii.screen == currentScreen) {
1280                    workspaceItems.add(0, ii);
1281                } else if (ii.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
1282                    workspaceItems.add(0, ii);
1283                } else {
1284                    workspaceItems.add(ii);
1285                }
1286            }
1287
1288            // Tell the workspace that we're about to start firing items at it
1289            mHandler.post(new Runnable() {
1290                public void run() {
1291                    Callbacks callbacks = tryGetCallbacks(oldCallbacks);
1292                    if (callbacks != null) {
1293                        callbacks.startBinding();
1294                    }
1295                }
1296            });
1297
1298            // Add the items to the workspace.
1299            int N = workspaceItems.size();
1300            for (int i=0; i<N; i+=ITEMS_CHUNK) {
1301                final int start = i;
1302                final int chunkSize = (i+ITEMS_CHUNK <= N) ? ITEMS_CHUNK : (N-i);
1303                mHandler.post(new Runnable() {
1304                    public void run() {
1305                        Callbacks callbacks = tryGetCallbacks(oldCallbacks);
1306                        if (callbacks != null) {
1307                            callbacks.bindItems(workspaceItems, start, start+chunkSize);
1308                        }
1309                    }
1310                });
1311            }
1312            // Ensure that we don't use the same folders data structure on the main thread
1313            final HashMap<Long, FolderInfo> folders = new HashMap<Long, FolderInfo>(sFolders);
1314            mHandler.post(new Runnable() {
1315                public void run() {
1316                    Callbacks callbacks = tryGetCallbacks(oldCallbacks);
1317                    if (callbacks != null) {
1318                        callbacks.bindFolders(folders);
1319                    }
1320                }
1321            });
1322            // Wait until the queue goes empty.
1323            mHandler.post(new Runnable() {
1324                public void run() {
1325                    if (DEBUG_LOADERS) {
1326                        Log.d(TAG, "Going to start binding widgets soon.");
1327                    }
1328                }
1329            });
1330            // Bind the widgets, one at a time.
1331            // WARNING: this is calling into the workspace from the background thread,
1332            // but since getCurrentScreen() just returns the int, we should be okay.  This
1333            // is just a hint for the order, and if it's wrong, we'll be okay.
1334            // TODO: instead, we should have that push the current screen into here.
1335            N = sAppWidgets.size();
1336            // once for the current screen
1337            for (int i=0; i<N; i++) {
1338                final LauncherAppWidgetInfo widget = sAppWidgets.get(i);
1339                if (widget.screen == currentScreen) {
1340                    mHandler.post(new Runnable() {
1341                        public void run() {
1342                            Callbacks callbacks = tryGetCallbacks(oldCallbacks);
1343                            if (callbacks != null) {
1344                                callbacks.bindAppWidget(widget);
1345                            }
1346                        }
1347                    });
1348                }
1349            }
1350            // once for the other screens
1351            for (int i=0; i<N; i++) {
1352                final LauncherAppWidgetInfo widget = sAppWidgets.get(i);
1353                if (widget.screen != currentScreen) {
1354                    mHandler.post(new Runnable() {
1355                        public void run() {
1356                            Callbacks callbacks = tryGetCallbacks(oldCallbacks);
1357                            if (callbacks != null) {
1358                                callbacks.bindAppWidget(widget);
1359                            }
1360                        }
1361                    });
1362                }
1363            }
1364            // Tell the workspace that we're done.
1365            mHandler.post(new Runnable() {
1366                public void run() {
1367                    Callbacks callbacks = tryGetCallbacks(oldCallbacks);
1368                    if (callbacks != null) {
1369                        callbacks.finishBindingItems();
1370                    }
1371                }
1372            });
1373            // If we're profiling, this is the last thing in the queue.
1374            mHandler.post(new Runnable() {
1375                public void run() {
1376                    if (DEBUG_LOADERS) {
1377                        Log.d(TAG, "bound workspace in "
1378                            + (SystemClock.uptimeMillis()-t) + "ms");
1379                    }
1380                }
1381            });
1382        }
1383
1384        private void loadAndBindAllApps() {
1385            if (DEBUG_LOADERS) {
1386                Log.d(TAG, "loadAndBindAllApps mAllAppsLoaded=" + mAllAppsLoaded);
1387            }
1388            if (!mAllAppsLoaded) {
1389                loadAllAppsByBatch();
1390                synchronized (LoaderTask.this) {
1391                    if (mStopped) {
1392                        return;
1393                    }
1394                    mAllAppsLoaded = true;
1395                }
1396            } else {
1397                onlyBindAllApps();
1398            }
1399        }
1400
1401        private void onlyBindAllApps() {
1402            final Callbacks oldCallbacks = mCallbacks.get();
1403            if (oldCallbacks == null) {
1404                // This launcher has exited and nobody bothered to tell us.  Just bail.
1405                Log.w(TAG, "LoaderTask running with no launcher (onlyBindAllApps)");
1406                return;
1407            }
1408
1409            // shallow copy
1410            @SuppressWarnings("unchecked")
1411            final ArrayList<ApplicationInfo> list
1412                    = (ArrayList<ApplicationInfo>) mAllAppsList.data.clone();
1413            mHandler.post(new Runnable() {
1414                public void run() {
1415                    final long t = SystemClock.uptimeMillis();
1416                    final Callbacks callbacks = tryGetCallbacks(oldCallbacks);
1417                    if (callbacks != null) {
1418                        callbacks.bindAllApplications(list);
1419                    }
1420                    if (DEBUG_LOADERS) {
1421                        Log.d(TAG, "bound all " + list.size() + " apps from cache in "
1422                                + (SystemClock.uptimeMillis()-t) + "ms");
1423                    }
1424                }
1425            });
1426
1427        }
1428
1429        private void loadAllAppsByBatch() {
1430            final long t = DEBUG_LOADERS ? SystemClock.uptimeMillis() : 0;
1431
1432            // Don't use these two variables in any of the callback runnables.
1433            // Otherwise we hold a reference to them.
1434            final Callbacks oldCallbacks = mCallbacks.get();
1435            if (oldCallbacks == null) {
1436                // This launcher has exited and nobody bothered to tell us.  Just bail.
1437                Log.w(TAG, "LoaderTask running with no launcher (loadAllAppsByBatch)");
1438                return;
1439            }
1440
1441            final Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
1442            mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
1443
1444            final PackageManager packageManager = mContext.getPackageManager();
1445            List<ResolveInfo> apps = null;
1446
1447            int N = Integer.MAX_VALUE;
1448
1449            int startIndex;
1450            int i=0;
1451            int batchSize = -1;
1452            while (i < N && !mStopped) {
1453                if (i == 0) {
1454                    mAllAppsList.clear();
1455                    final long qiaTime = DEBUG_LOADERS ? SystemClock.uptimeMillis() : 0;
1456                    apps = packageManager.queryIntentActivities(mainIntent, 0);
1457                    if (DEBUG_LOADERS) {
1458                        Log.d(TAG, "queryIntentActivities took "
1459                                + (SystemClock.uptimeMillis()-qiaTime) + "ms");
1460                    }
1461                    if (apps == null) {
1462                        return;
1463                    }
1464                    N = apps.size();
1465                    if (DEBUG_LOADERS) {
1466                        Log.d(TAG, "queryIntentActivities got " + N + " apps");
1467                    }
1468                    if (N == 0) {
1469                        // There are no apps?!?
1470                        return;
1471                    }
1472                    if (mBatchSize == 0) {
1473                        batchSize = N;
1474                    } else {
1475                        batchSize = mBatchSize;
1476                    }
1477
1478                    final long sortTime = DEBUG_LOADERS ? SystemClock.uptimeMillis() : 0;
1479                    Collections.sort(apps,
1480                            new LauncherModel.ShortcutNameComparator(packageManager, mLabelCache));
1481                    if (DEBUG_LOADERS) {
1482                        Log.d(TAG, "sort took "
1483                                + (SystemClock.uptimeMillis()-sortTime) + "ms");
1484                    }
1485                }
1486
1487                final long t2 = DEBUG_LOADERS ? SystemClock.uptimeMillis() : 0;
1488
1489                startIndex = i;
1490                for (int j=0; i<N && j<batchSize; j++) {
1491                    // This builds the icon bitmaps.
1492                    mAllAppsList.add(new ApplicationInfo(packageManager, apps.get(i),
1493                            mIconCache, mLabelCache));
1494                    i++;
1495                }
1496
1497                final boolean first = i <= batchSize;
1498                final Callbacks callbacks = tryGetCallbacks(oldCallbacks);
1499                final ArrayList<ApplicationInfo> added = mAllAppsList.added;
1500                mAllAppsList.added = new ArrayList<ApplicationInfo>();
1501
1502                mHandler.post(new Runnable() {
1503                    public void run() {
1504                        final long t = SystemClock.uptimeMillis();
1505                        if (callbacks != null) {
1506                            if (first) {
1507                                callbacks.bindAllApplications(added);
1508                            } else {
1509                                callbacks.bindAppsAdded(added);
1510                            }
1511                            if (DEBUG_LOADERS) {
1512                                Log.d(TAG, "bound " + added.size() + " apps in "
1513                                    + (SystemClock.uptimeMillis() - t) + "ms");
1514                            }
1515                        } else {
1516                            Log.i(TAG, "not binding apps: no Launcher activity");
1517                        }
1518                    }
1519                });
1520
1521                if (DEBUG_LOADERS) {
1522                    Log.d(TAG, "batch of " + (i-startIndex) + " icons processed in "
1523                            + (SystemClock.uptimeMillis()-t2) + "ms");
1524                }
1525
1526                if (mAllAppsLoadDelay > 0 && i < N) {
1527                    try {
1528                        if (DEBUG_LOADERS) {
1529                            Log.d(TAG, "sleeping for " + mAllAppsLoadDelay + "ms");
1530                        }
1531                        Thread.sleep(mAllAppsLoadDelay);
1532                    } catch (InterruptedException exc) { }
1533                }
1534            }
1535
1536            if (DEBUG_LOADERS) {
1537                Log.d(TAG, "cached all " + N + " apps in "
1538                        + (SystemClock.uptimeMillis()-t) + "ms"
1539                        + (mAllAppsLoadDelay > 0 ? " (including delay)" : ""));
1540            }
1541        }
1542
1543        public void dumpState() {
1544            Log.d(TAG, "mLoaderTask.mContext=" + mContext);
1545            Log.d(TAG, "mLoaderTask.mWaitThread=" + mWaitThread);
1546            Log.d(TAG, "mLoaderTask.mIsLaunching=" + mIsLaunching);
1547            Log.d(TAG, "mLoaderTask.mStopped=" + mStopped);
1548            Log.d(TAG, "mLoaderTask.mLoadAndBindStepFinished=" + mLoadAndBindStepFinished);
1549            Log.d(TAG, "mItems size=" + sWorkspaceItems.size());
1550        }
1551    }
1552
1553    void enqueuePackageUpdated(PackageUpdatedTask task) {
1554        sWorker.post(task);
1555    }
1556
1557    private class PackageUpdatedTask implements Runnable {
1558        int mOp;
1559        String[] mPackages;
1560
1561        public static final int OP_NONE = 0;
1562        public static final int OP_ADD = 1;
1563        public static final int OP_UPDATE = 2;
1564        public static final int OP_REMOVE = 3; // uninstlled
1565        public static final int OP_UNAVAILABLE = 4; // external media unmounted
1566
1567
1568        public PackageUpdatedTask(int op, String[] packages) {
1569            mOp = op;
1570            mPackages = packages;
1571        }
1572
1573        public void run() {
1574            final Context context = mApp;
1575
1576            final String[] packages = mPackages;
1577            final int N = packages.length;
1578            switch (mOp) {
1579                case OP_ADD:
1580                    for (int i=0; i<N; i++) {
1581                        if (DEBUG_LOADERS) Log.d(TAG, "mAllAppsList.addPackage " + packages[i]);
1582                        mAllAppsList.addPackage(context, packages[i]);
1583                    }
1584                    break;
1585                case OP_UPDATE:
1586                    for (int i=0; i<N; i++) {
1587                        if (DEBUG_LOADERS) Log.d(TAG, "mAllAppsList.updatePackage " + packages[i]);
1588                        mAllAppsList.updatePackage(context, packages[i]);
1589                    }
1590                    break;
1591                case OP_REMOVE:
1592                case OP_UNAVAILABLE:
1593                    for (int i=0; i<N; i++) {
1594                        if (DEBUG_LOADERS) Log.d(TAG, "mAllAppsList.removePackage " + packages[i]);
1595                        mAllAppsList.removePackage(packages[i]);
1596                    }
1597                    break;
1598            }
1599
1600            ArrayList<ApplicationInfo> added = null;
1601            ArrayList<ApplicationInfo> removed = null;
1602            ArrayList<ApplicationInfo> modified = null;
1603
1604            if (mAllAppsList.added.size() > 0) {
1605                added = mAllAppsList.added;
1606                mAllAppsList.added = new ArrayList<ApplicationInfo>();
1607            }
1608            if (mAllAppsList.removed.size() > 0) {
1609                removed = mAllAppsList.removed;
1610                mAllAppsList.removed = new ArrayList<ApplicationInfo>();
1611                for (ApplicationInfo info: removed) {
1612                    mIconCache.remove(info.intent.getComponent());
1613                }
1614            }
1615            if (mAllAppsList.modified.size() > 0) {
1616                modified = mAllAppsList.modified;
1617                mAllAppsList.modified = new ArrayList<ApplicationInfo>();
1618            }
1619
1620            final Callbacks callbacks = mCallbacks != null ? mCallbacks.get() : null;
1621            if (callbacks == null) {
1622                Log.w(TAG, "Nobody to tell about the new app.  Launcher is probably loading.");
1623                return;
1624            }
1625
1626            if (added != null) {
1627                final ArrayList<ApplicationInfo> addedFinal = added;
1628                mHandler.post(new Runnable() {
1629                    public void run() {
1630                        Callbacks cb = mCallbacks != null ? mCallbacks.get() : null;
1631                        if (callbacks == cb && cb != null) {
1632                            callbacks.bindAppsAdded(addedFinal);
1633                        }
1634                    }
1635                });
1636            }
1637            if (modified != null) {
1638                final ArrayList<ApplicationInfo> modifiedFinal = modified;
1639                mHandler.post(new Runnable() {
1640                    public void run() {
1641                        Callbacks cb = mCallbacks != null ? mCallbacks.get() : null;
1642                        if (callbacks == cb && cb != null) {
1643                            callbacks.bindAppsUpdated(modifiedFinal);
1644                        }
1645                    }
1646                });
1647            }
1648            if (removed != null) {
1649                final boolean permanent = mOp != OP_UNAVAILABLE;
1650                final ArrayList<ApplicationInfo> removedFinal = removed;
1651                mHandler.post(new Runnable() {
1652                    public void run() {
1653                        Callbacks cb = mCallbacks != null ? mCallbacks.get() : null;
1654                        if (callbacks == cb && cb != null) {
1655                            callbacks.bindAppsRemoved(removedFinal, permanent);
1656                        }
1657                    }
1658                });
1659            }
1660
1661            mHandler.post(new Runnable() {
1662                @Override
1663                public void run() {
1664                    Callbacks cb = mCallbacks != null ? mCallbacks.get() : null;
1665                    if (callbacks == cb && cb != null) {
1666                        callbacks.bindPackagesUpdated();
1667                    }
1668                }
1669            });
1670        }
1671    }
1672
1673    /**
1674     * This is called from the code that adds shortcuts from the intent receiver.  This
1675     * doesn't have a Cursor, but
1676     */
1677    public ShortcutInfo getShortcutInfo(PackageManager manager, Intent intent, Context context) {
1678        return getShortcutInfo(manager, intent, context, null, -1, -1, null);
1679    }
1680
1681    /**
1682     * Make an ShortcutInfo object for a shortcut that is an application.
1683     *
1684     * If c is not null, then it will be used to fill in missing data like the title and icon.
1685     */
1686    public ShortcutInfo getShortcutInfo(PackageManager manager, Intent intent, Context context,
1687            Cursor c, int iconIndex, int titleIndex, HashMap<Object, CharSequence> labelCache) {
1688        Bitmap icon = null;
1689        final ShortcutInfo info = new ShortcutInfo();
1690
1691        ComponentName componentName = intent.getComponent();
1692        if (componentName == null) {
1693            return null;
1694        }
1695
1696        try {
1697            PackageInfo pi = manager.getPackageInfo(componentName.getPackageName(), 0);
1698            if (!pi.applicationInfo.enabled) {
1699                // If we return null here, the corresponding item will be removed from the launcher
1700                // db and will not appear in the workspace.
1701                return null;
1702            }
1703        } catch (NameNotFoundException e) {
1704            Log.d(TAG, "getPackInfo failed for package " + componentName.getPackageName());
1705        }
1706
1707        // TODO: See if the PackageManager knows about this case.  If it doesn't
1708        // then return null & delete this.
1709
1710        // the resource -- This may implicitly give us back the fallback icon,
1711        // but don't worry about that.  All we're doing with usingFallbackIcon is
1712        // to avoid saving lots of copies of that in the database, and most apps
1713        // have icons anyway.
1714
1715        // Attempt to use queryIntentActivities to get the ResolveInfo (with IntentFilter info) and
1716        // if that fails, or is ambiguious, fallback to the standard way of getting the resolve info
1717        // via resolveActivity().
1718        ResolveInfo resolveInfo = null;
1719        ComponentName oldComponent = intent.getComponent();
1720        Intent newIntent = new Intent(intent.getAction(), null);
1721        newIntent.addCategory(Intent.CATEGORY_LAUNCHER);
1722        newIntent.setPackage(oldComponent.getPackageName());
1723        List<ResolveInfo> infos = manager.queryIntentActivities(newIntent, 0);
1724        for (ResolveInfo i : infos) {
1725            ComponentName cn = new ComponentName(i.activityInfo.packageName,
1726                    i.activityInfo.name);
1727            if (cn.equals(oldComponent)) {
1728                resolveInfo = i;
1729            }
1730        }
1731        if (resolveInfo == null) {
1732            resolveInfo = manager.resolveActivity(intent, 0);
1733        }
1734        if (resolveInfo != null) {
1735            icon = mIconCache.getIcon(componentName, resolveInfo, labelCache);
1736        }
1737        // the db
1738        if (icon == null) {
1739            if (c != null) {
1740                icon = getIconFromCursor(c, iconIndex, context);
1741            }
1742        }
1743        // the fallback icon
1744        if (icon == null) {
1745            icon = getFallbackIcon();
1746            info.usingFallbackIcon = true;
1747        }
1748        info.setIcon(icon);
1749
1750        // from the resource
1751        if (resolveInfo != null) {
1752            ComponentName key = LauncherModel.getComponentNameFromResolveInfo(resolveInfo);
1753            if (labelCache != null && labelCache.containsKey(key)) {
1754                info.title = labelCache.get(key);
1755            } else {
1756                info.title = resolveInfo.activityInfo.loadLabel(manager);
1757                if (labelCache != null) {
1758                    labelCache.put(key, info.title);
1759                }
1760            }
1761        }
1762        // from the db
1763        if (info.title == null) {
1764            if (c != null) {
1765                info.title =  c.getString(titleIndex);
1766            }
1767        }
1768        // fall back to the class name of the activity
1769        if (info.title == null) {
1770            info.title = componentName.getClassName();
1771        }
1772        info.itemType = LauncherSettings.Favorites.ITEM_TYPE_APPLICATION;
1773        return info;
1774    }
1775
1776    /**
1777     * Make an ShortcutInfo object for a shortcut that isn't an application.
1778     */
1779    private ShortcutInfo getShortcutInfo(Cursor c, Context context,
1780            int iconTypeIndex, int iconPackageIndex, int iconResourceIndex, int iconIndex,
1781            int titleIndex) {
1782
1783        Bitmap icon = null;
1784        final ShortcutInfo info = new ShortcutInfo();
1785        info.itemType = LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT;
1786
1787        // TODO: If there's an explicit component and we can't install that, delete it.
1788
1789        info.title = c.getString(titleIndex);
1790
1791        int iconType = c.getInt(iconTypeIndex);
1792        switch (iconType) {
1793        case LauncherSettings.Favorites.ICON_TYPE_RESOURCE:
1794            String packageName = c.getString(iconPackageIndex);
1795            String resourceName = c.getString(iconResourceIndex);
1796            PackageManager packageManager = context.getPackageManager();
1797            info.customIcon = false;
1798            // the resource
1799            try {
1800                Resources resources = packageManager.getResourcesForApplication(packageName);
1801                if (resources != null) {
1802                    final int id = resources.getIdentifier(resourceName, null, null);
1803                    icon = Utilities.createIconBitmap(
1804                            mIconCache.getFullResIcon(resources, id), context);
1805                }
1806            } catch (Exception e) {
1807                // drop this.  we have other places to look for icons
1808            }
1809            // the db
1810            if (icon == null) {
1811                icon = getIconFromCursor(c, iconIndex, context);
1812            }
1813            // the fallback icon
1814            if (icon == null) {
1815                icon = getFallbackIcon();
1816                info.usingFallbackIcon = true;
1817            }
1818            break;
1819        case LauncherSettings.Favorites.ICON_TYPE_BITMAP:
1820            icon = getIconFromCursor(c, iconIndex, context);
1821            if (icon == null) {
1822                icon = getFallbackIcon();
1823                info.customIcon = false;
1824                info.usingFallbackIcon = true;
1825            } else {
1826                info.customIcon = true;
1827            }
1828            break;
1829        default:
1830            icon = getFallbackIcon();
1831            info.usingFallbackIcon = true;
1832            info.customIcon = false;
1833            break;
1834        }
1835        info.setIcon(icon);
1836        return info;
1837    }
1838
1839    Bitmap getIconFromCursor(Cursor c, int iconIndex, Context context) {
1840        @SuppressWarnings("all") // suppress dead code warning
1841        final boolean debug = false;
1842        if (debug) {
1843            Log.d(TAG, "getIconFromCursor app="
1844                    + c.getString(c.getColumnIndexOrThrow(LauncherSettings.Favorites.TITLE)));
1845        }
1846        byte[] data = c.getBlob(iconIndex);
1847        try {
1848            return Utilities.createIconBitmap(
1849                    BitmapFactory.decodeByteArray(data, 0, data.length), context);
1850        } catch (Exception e) {
1851            return null;
1852        }
1853    }
1854
1855    ShortcutInfo addShortcut(Context context, Intent data, long container, int screen,
1856            int cellX, int cellY, boolean notify) {
1857        final ShortcutInfo info = infoFromShortcutIntent(context, data, null);
1858        if (info == null) {
1859            return null;
1860        }
1861        addItemToDatabase(context, info, container, screen, cellX, cellY, notify);
1862
1863        return info;
1864    }
1865
1866    /**
1867     * Attempts to find an AppWidgetProviderInfo that matches the given component.
1868     */
1869    AppWidgetProviderInfo findAppWidgetProviderInfoWithComponent(Context context,
1870            ComponentName component) {
1871        List<AppWidgetProviderInfo> widgets =
1872            AppWidgetManager.getInstance(context).getInstalledProviders();
1873        for (AppWidgetProviderInfo info : widgets) {
1874            if (info.provider.equals(component)) {
1875                return info;
1876            }
1877        }
1878        return null;
1879    }
1880
1881    /**
1882     * Returns a list of all the widgets that can handle configuration with a particular mimeType.
1883     */
1884    List<WidgetMimeTypeHandlerData> resolveWidgetsForMimeType(Context context, String mimeType) {
1885        final PackageManager packageManager = context.getPackageManager();
1886        final List<WidgetMimeTypeHandlerData> supportedConfigurationActivities =
1887            new ArrayList<WidgetMimeTypeHandlerData>();
1888
1889        final Intent supportsIntent =
1890            new Intent(InstallWidgetReceiver.ACTION_SUPPORTS_CLIPDATA_MIMETYPE);
1891        supportsIntent.setType(mimeType);
1892
1893        // Create a set of widget configuration components that we can test against
1894        final List<AppWidgetProviderInfo> widgets =
1895            AppWidgetManager.getInstance(context).getInstalledProviders();
1896        final HashMap<ComponentName, AppWidgetProviderInfo> configurationComponentToWidget =
1897            new HashMap<ComponentName, AppWidgetProviderInfo>();
1898        for (AppWidgetProviderInfo info : widgets) {
1899            configurationComponentToWidget.put(info.configure, info);
1900        }
1901
1902        // Run through each of the intents that can handle this type of clip data, and cross
1903        // reference them with the components that are actual configuration components
1904        final List<ResolveInfo> activities = packageManager.queryIntentActivities(supportsIntent,
1905                PackageManager.MATCH_DEFAULT_ONLY);
1906        for (ResolveInfo info : activities) {
1907            final ActivityInfo activityInfo = info.activityInfo;
1908            final ComponentName infoComponent = new ComponentName(activityInfo.packageName,
1909                    activityInfo.name);
1910            if (configurationComponentToWidget.containsKey(infoComponent)) {
1911                supportedConfigurationActivities.add(
1912                        new InstallWidgetReceiver.WidgetMimeTypeHandlerData(info,
1913                                configurationComponentToWidget.get(infoComponent)));
1914            }
1915        }
1916        return supportedConfigurationActivities;
1917    }
1918
1919    ShortcutInfo infoFromShortcutIntent(Context context, Intent data, Bitmap fallbackIcon) {
1920        Intent intent = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_INTENT);
1921        String name = data.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
1922        Parcelable bitmap = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_ICON);
1923
1924        if (intent == null) {
1925            // If the intent is null, we can't construct a valid ShortcutInfo, so we return null
1926            Log.e(TAG, "Can't construct ShorcutInfo with null intent");
1927            return null;
1928        }
1929
1930        Bitmap icon = null;
1931        boolean customIcon = false;
1932        ShortcutIconResource iconResource = null;
1933
1934        if (bitmap != null && bitmap instanceof Bitmap) {
1935            icon = Utilities.createIconBitmap(new FastBitmapDrawable((Bitmap)bitmap), context);
1936            customIcon = true;
1937        } else {
1938            Parcelable extra = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE);
1939            if (extra != null && extra instanceof ShortcutIconResource) {
1940                try {
1941                    iconResource = (ShortcutIconResource) extra;
1942                    final PackageManager packageManager = context.getPackageManager();
1943                    Resources resources = packageManager.getResourcesForApplication(
1944                            iconResource.packageName);
1945                    final int id = resources.getIdentifier(iconResource.resourceName, null, null);
1946                    icon = Utilities.createIconBitmap(
1947                            mIconCache.getFullResIcon(resources, id), context);
1948                } catch (Exception e) {
1949                    Log.w(TAG, "Could not load shortcut icon: " + extra);
1950                }
1951            }
1952        }
1953
1954        final ShortcutInfo info = new ShortcutInfo();
1955
1956        if (icon == null) {
1957            if (fallbackIcon != null) {
1958                icon = fallbackIcon;
1959            } else {
1960                icon = getFallbackIcon();
1961                info.usingFallbackIcon = true;
1962            }
1963        }
1964        info.setIcon(icon);
1965
1966        info.title = name;
1967        info.intent = intent;
1968        info.customIcon = customIcon;
1969        info.iconResource = iconResource;
1970
1971        return info;
1972    }
1973
1974    boolean queueIconToBeChecked(HashMap<Object, byte[]> cache, ShortcutInfo info, Cursor c,
1975            int iconIndex) {
1976        // If apps can't be on SD, don't even bother.
1977        if (!mAppsCanBeOnExternalStorage) {
1978            return false;
1979        }
1980        // If this icon doesn't have a custom icon, check to see
1981        // what's stored in the DB, and if it doesn't match what
1982        // we're going to show, store what we are going to show back
1983        // into the DB.  We do this so when we're loading, if the
1984        // package manager can't find an icon (for example because
1985        // the app is on SD) then we can use that instead.
1986        if (!info.customIcon && !info.usingFallbackIcon) {
1987            cache.put(info, c.getBlob(iconIndex));
1988            return true;
1989        }
1990        return false;
1991    }
1992    void updateSavedIcon(Context context, ShortcutInfo info, byte[] data) {
1993        boolean needSave = false;
1994        try {
1995            if (data != null) {
1996                Bitmap saved = BitmapFactory.decodeByteArray(data, 0, data.length);
1997                Bitmap loaded = info.getIcon(mIconCache);
1998                needSave = !saved.sameAs(loaded);
1999            } else {
2000                needSave = true;
2001            }
2002        } catch (Exception e) {
2003            needSave = true;
2004        }
2005        if (needSave) {
2006            Log.d(TAG, "going to save icon bitmap for info=" + info);
2007            // This is slower than is ideal, but this only happens once
2008            // or when the app is updated with a new icon.
2009            updateItemInDatabase(context, info);
2010        }
2011    }
2012
2013    /**
2014     * Return an existing FolderInfo object if we have encountered this ID previously,
2015     * or make a new one.
2016     */
2017    private static FolderInfo findOrMakeFolder(HashMap<Long, FolderInfo> folders, long id) {
2018        // See if a placeholder was created for us already
2019        FolderInfo folderInfo = folders.get(id);
2020        if (folderInfo == null) {
2021            // No placeholder -- create a new instance
2022            folderInfo = new FolderInfo();
2023            folders.put(id, folderInfo);
2024        }
2025        return folderInfo;
2026    }
2027
2028    private static final Collator sCollator = Collator.getInstance();
2029    public static final Comparator<ApplicationInfo> APP_NAME_COMPARATOR
2030            = new Comparator<ApplicationInfo>() {
2031        public final int compare(ApplicationInfo a, ApplicationInfo b) {
2032            int result = sCollator.compare(a.title.toString(), b.title.toString());
2033            if (result == 0) {
2034                result = a.componentName.compareTo(b.componentName);
2035            }
2036            return result;
2037        }
2038    };
2039    public static final Comparator<ApplicationInfo> APP_INSTALL_TIME_COMPARATOR
2040            = new Comparator<ApplicationInfo>() {
2041        public final int compare(ApplicationInfo a, ApplicationInfo b) {
2042            if (a.firstInstallTime < b.firstInstallTime) return 1;
2043            if (a.firstInstallTime > b.firstInstallTime) return -1;
2044            return 0;
2045        }
2046    };
2047    public static final Comparator<AppWidgetProviderInfo> WIDGET_NAME_COMPARATOR
2048            = new Comparator<AppWidgetProviderInfo>() {
2049        public final int compare(AppWidgetProviderInfo a, AppWidgetProviderInfo b) {
2050            return sCollator.compare(a.label.toString(), b.label.toString());
2051        }
2052    };
2053    static ComponentName getComponentNameFromResolveInfo(ResolveInfo info) {
2054        if (info.activityInfo != null) {
2055            return new ComponentName(info.activityInfo.packageName, info.activityInfo.name);
2056        } else {
2057            return new ComponentName(info.serviceInfo.packageName, info.serviceInfo.name);
2058        }
2059    }
2060    public static class ShortcutNameComparator implements Comparator<ResolveInfo> {
2061        private PackageManager mPackageManager;
2062        private HashMap<Object, CharSequence> mLabelCache;
2063        ShortcutNameComparator(PackageManager pm) {
2064            mPackageManager = pm;
2065            mLabelCache = new HashMap<Object, CharSequence>();
2066        }
2067        ShortcutNameComparator(PackageManager pm, HashMap<Object, CharSequence> labelCache) {
2068            mPackageManager = pm;
2069            mLabelCache = labelCache;
2070        }
2071        public final int compare(ResolveInfo a, ResolveInfo b) {
2072            CharSequence labelA, labelB;
2073            ComponentName keyA = LauncherModel.getComponentNameFromResolveInfo(a);
2074            ComponentName keyB = LauncherModel.getComponentNameFromResolveInfo(b);
2075            if (mLabelCache.containsKey(keyA)) {
2076                labelA = mLabelCache.get(keyA);
2077            } else {
2078                labelA = a.loadLabel(mPackageManager).toString();
2079
2080                mLabelCache.put(keyA, labelA);
2081            }
2082            if (mLabelCache.containsKey(keyB)) {
2083                labelB = mLabelCache.get(keyB);
2084            } else {
2085                labelB = b.loadLabel(mPackageManager).toString();
2086
2087                mLabelCache.put(keyB, labelB);
2088            }
2089            return sCollator.compare(labelA, labelB);
2090        }
2091    };
2092    public static class WidgetAndShortcutNameComparator implements Comparator<Object> {
2093        private PackageManager mPackageManager;
2094        private HashMap<Object, String> mLabelCache;
2095        WidgetAndShortcutNameComparator(PackageManager pm) {
2096            mPackageManager = pm;
2097            mLabelCache = new HashMap<Object, String>();
2098        }
2099        public final int compare(Object a, Object b) {
2100            String labelA, labelB;
2101            if (mLabelCache.containsKey(a)) {
2102                labelA = mLabelCache.get(a);
2103            } else {
2104                labelA = (a instanceof AppWidgetProviderInfo) ?
2105                    ((AppWidgetProviderInfo) a).label :
2106                    ((ResolveInfo) a).loadLabel(mPackageManager).toString();
2107                mLabelCache.put(a, labelA);
2108            }
2109            if (mLabelCache.containsKey(b)) {
2110                labelB = mLabelCache.get(b);
2111            } else {
2112                labelB = (b instanceof AppWidgetProviderInfo) ?
2113                    ((AppWidgetProviderInfo) b).label :
2114                    ((ResolveInfo) b).loadLabel(mPackageManager).toString();
2115                mLabelCache.put(b, labelB);
2116            }
2117            return sCollator.compare(labelA, labelB);
2118        }
2119    };
2120
2121    public void dumpState() {
2122        Log.d(TAG, "mCallbacks=" + mCallbacks);
2123        ApplicationInfo.dumpApplicationInfoList(TAG, "mAllAppsList.data", mAllAppsList.data);
2124        ApplicationInfo.dumpApplicationInfoList(TAG, "mAllAppsList.added", mAllAppsList.added);
2125        ApplicationInfo.dumpApplicationInfoList(TAG, "mAllAppsList.removed", mAllAppsList.removed);
2126        ApplicationInfo.dumpApplicationInfoList(TAG, "mAllAppsList.modified", mAllAppsList.modified);
2127        if (mLoaderTask != null) {
2128            mLoaderTask.dumpState();
2129        } else {
2130            Log.d(TAG, "mLoaderTask=null");
2131        }
2132    }
2133}
2134