EmailProvider.java revision 560bfadc3151f7a06f3b06e9a6c92cfa534c63ec
1/*
2 * Copyright (C) 2009 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.email.provider;
18
19import android.appwidget.AppWidgetManager;
20import android.content.ComponentName;
21import android.content.ContentProvider;
22import android.content.ContentProviderOperation;
23import android.content.ContentProviderResult;
24import android.content.ContentResolver;
25import android.content.ContentUris;
26import android.content.ContentValues;
27import android.content.Context;
28import android.content.Intent;
29import android.content.OperationApplicationException;
30import android.content.PeriodicSync;
31import android.content.UriMatcher;
32import android.content.res.Resources;
33import android.database.ContentObserver;
34import android.database.Cursor;
35import android.database.CursorWrapper;
36import android.database.MatrixCursor;
37import android.database.MergeCursor;
38import android.database.sqlite.SQLiteDatabase;
39import android.database.sqlite.SQLiteException;
40import android.net.Uri;
41import android.os.AsyncTask;
42import android.os.Binder;
43import android.os.Bundle;
44import android.os.Parcel;
45import android.os.ParcelFileDescriptor;
46import android.os.RemoteException;
47import android.provider.BaseColumns;
48import android.text.TextUtils;
49import android.text.format.DateUtils;
50import android.util.Base64;
51
52import com.android.common.content.ProjectionMap;
53import com.android.email.Preferences;
54import com.android.email.R;
55import com.android.email.SecurityPolicy;
56import com.android.email.service.AttachmentDownloadService;
57import com.android.email.service.EmailServiceUtils;
58import com.android.email.service.EmailServiceUtils.EmailServiceInfo;
59import com.android.email2.ui.MailActivityEmail;
60import com.android.emailcommon.Logging;
61import com.android.emailcommon.mail.Address;
62import com.android.emailcommon.provider.Account;
63import com.android.emailcommon.provider.EmailContent;
64import com.android.emailcommon.provider.EmailContent.AccountColumns;
65import com.android.emailcommon.provider.EmailContent.Attachment;
66import com.android.emailcommon.provider.EmailContent.AttachmentColumns;
67import com.android.emailcommon.provider.EmailContent.Body;
68import com.android.emailcommon.provider.EmailContent.BodyColumns;
69import com.android.emailcommon.provider.EmailContent.MailboxColumns;
70import com.android.emailcommon.provider.EmailContent.Message;
71import com.android.emailcommon.provider.EmailContent.MessageColumns;
72import com.android.emailcommon.provider.EmailContent.PolicyColumns;
73import com.android.emailcommon.provider.EmailContent.SyncColumns;
74import com.android.emailcommon.provider.HostAuth;
75import com.android.emailcommon.provider.Mailbox;
76import com.android.emailcommon.provider.Policy;
77import com.android.emailcommon.provider.QuickResponse;
78import com.android.emailcommon.service.EmailServiceProxy;
79import com.android.emailcommon.service.EmailServiceStatus;
80import com.android.emailcommon.service.IEmailService;
81import com.android.emailcommon.service.IEmailServiceCallback;
82import com.android.emailcommon.service.SearchParams;
83import com.android.emailcommon.utility.AttachmentUtilities;
84import com.android.emailcommon.utility.Utility;
85import com.android.ex.photo.provider.PhotoContract;
86import com.android.mail.preferences.MailPrefs;
87import com.android.mail.providers.Folder;
88import com.android.mail.providers.FolderList;
89import com.android.mail.providers.UIProvider;
90import com.android.mail.providers.UIProvider.AccountCapabilities;
91import com.android.mail.providers.UIProvider.AccountCursorExtraKeys;
92import com.android.mail.providers.UIProvider.ConversationPriority;
93import com.android.mail.providers.UIProvider.ConversationSendingState;
94import com.android.mail.providers.UIProvider.DraftType;
95import com.android.mail.utils.AttachmentUtils;
96import com.android.mail.utils.LogTag;
97import com.android.mail.utils.LogUtils;
98import com.android.mail.utils.MatrixCursorWithCachedColumns;
99import com.android.mail.utils.MatrixCursorWithExtra;
100import com.android.mail.utils.MimeType;
101import com.android.mail.utils.Utils;
102import com.android.mail.widget.BaseWidgetProvider;
103import com.android.mail.widget.WidgetProvider;
104import com.google.common.collect.ImmutableMap;
105import com.google.common.collect.ImmutableSet;
106import com.google.common.collect.Lists;
107
108import java.io.File;
109import java.io.FileDescriptor;
110import java.io.FileNotFoundException;
111import java.io.PrintWriter;
112import java.util.ArrayList;
113import java.util.Arrays;
114import java.util.List;
115import java.util.Map;
116import java.util.Set;
117import java.util.regex.Pattern;
118
119/**
120 * @author mblank
121 *
122 */
123public class EmailProvider extends ContentProvider {
124
125    private static final String TAG = LogTag.getLogTag();
126
127    public static String EMAIL_APP_MIME_TYPE;
128
129    private static final String DATABASE_NAME = "EmailProvider.db";
130    private static final String BODY_DATABASE_NAME = "EmailProviderBody.db";
131    private static final String BACKUP_DATABASE_NAME = "EmailProviderBackup.db";
132
133    /**
134     * Notifies that changes happened. Certain UI components, e.g., widgets, can register for this
135     * {@link android.content.Intent} and update accordingly. However, this can be very broad and
136     * is NOT the preferred way of getting notification.
137     */
138    private static final String ACTION_NOTIFY_MESSAGE_LIST_DATASET_CHANGED =
139        "com.android.email.MESSAGE_LIST_DATASET_CHANGED";
140
141    private static final String EMAIL_MESSAGE_MIME_TYPE =
142        "vnd.android.cursor.item/email-message";
143    private static final String EMAIL_ATTACHMENT_MIME_TYPE =
144        "vnd.android.cursor.item/email-attachment";
145
146    /** Appended to the notification URI for delete operations */
147    private static final String NOTIFICATION_OP_DELETE = "delete";
148    /** Appended to the notification URI for insert operations */
149    private static final String NOTIFICATION_OP_INSERT = "insert";
150    /** Appended to the notification URI for update operations */
151    private static final String NOTIFICATION_OP_UPDATE = "update";
152
153    /** The query string to trigger a folder refresh. */
154    private static String QUERY_UIREFRESH = "uirefresh";
155
156    // Definitions for our queries looking for orphaned messages
157    private static final String[] ORPHANS_PROJECTION
158        = new String[] {MessageColumns.ID, MessageColumns.MAILBOX_KEY};
159    private static final int ORPHANS_ID = 0;
160    private static final int ORPHANS_MAILBOX_KEY = 1;
161
162    private static final String WHERE_ID = EmailContent.RECORD_ID + "=?";
163
164    private static final int ACCOUNT_BASE = 0;
165    private static final int ACCOUNT = ACCOUNT_BASE;
166    private static final int ACCOUNT_ID = ACCOUNT_BASE + 1;
167    private static final int ACCOUNT_RESET_NEW_COUNT = ACCOUNT_BASE + 2;
168    private static final int ACCOUNT_RESET_NEW_COUNT_ID = ACCOUNT_BASE + 3;
169    private static final int ACCOUNT_DEFAULT_ID = ACCOUNT_BASE + 4;
170    private static final int ACCOUNT_CHECK = ACCOUNT_BASE + 5;
171    private static final int ACCOUNT_PICK_TRASH_FOLDER = ACCOUNT_BASE + 6;
172    private static final int ACCOUNT_PICK_SENT_FOLDER = ACCOUNT_BASE + 7;
173
174    private static final int MAILBOX_BASE = 0x1000;
175    private static final int MAILBOX = MAILBOX_BASE;
176    private static final int MAILBOX_ID = MAILBOX_BASE + 1;
177    private static final int MAILBOX_NOTIFICATION = MAILBOX_BASE + 2;
178    private static final int MAILBOX_MOST_RECENT_MESSAGE = MAILBOX_BASE + 3;
179    private static final int MAILBOX_MESSAGE_COUNT = MAILBOX_BASE + 4;
180
181    private static final int MESSAGE_BASE = 0x2000;
182    private static final int MESSAGE = MESSAGE_BASE;
183    private static final int MESSAGE_ID = MESSAGE_BASE + 1;
184    private static final int SYNCED_MESSAGE_ID = MESSAGE_BASE + 2;
185    private static final int MESSAGE_SELECTION = MESSAGE_BASE + 3;
186
187    private static final int ATTACHMENT_BASE = 0x3000;
188    private static final int ATTACHMENT = ATTACHMENT_BASE;
189    private static final int ATTACHMENT_ID = ATTACHMENT_BASE + 1;
190    private static final int ATTACHMENTS_MESSAGE_ID = ATTACHMENT_BASE + 2;
191    private static final int ATTACHMENTS_CACHED_FILE_ACCESS = ATTACHMENT_BASE + 3;
192
193    private static final int HOSTAUTH_BASE = 0x4000;
194    private static final int HOSTAUTH = HOSTAUTH_BASE;
195    private static final int HOSTAUTH_ID = HOSTAUTH_BASE + 1;
196
197    private static final int UPDATED_MESSAGE_BASE = 0x5000;
198    private static final int UPDATED_MESSAGE = UPDATED_MESSAGE_BASE;
199    private static final int UPDATED_MESSAGE_ID = UPDATED_MESSAGE_BASE + 1;
200
201    private static final int DELETED_MESSAGE_BASE = 0x6000;
202    private static final int DELETED_MESSAGE = DELETED_MESSAGE_BASE;
203    private static final int DELETED_MESSAGE_ID = DELETED_MESSAGE_BASE + 1;
204
205    private static final int POLICY_BASE = 0x7000;
206    private static final int POLICY = POLICY_BASE;
207    private static final int POLICY_ID = POLICY_BASE + 1;
208
209    private static final int QUICK_RESPONSE_BASE = 0x8000;
210    private static final int QUICK_RESPONSE = QUICK_RESPONSE_BASE;
211    private static final int QUICK_RESPONSE_ID = QUICK_RESPONSE_BASE + 1;
212    private static final int QUICK_RESPONSE_ACCOUNT_ID = QUICK_RESPONSE_BASE + 2;
213
214    private static final int UI_BASE = 0x9000;
215    private static final int UI_FOLDERS = UI_BASE;
216    private static final int UI_SUBFOLDERS = UI_BASE + 1;
217    private static final int UI_MESSAGES = UI_BASE + 2;
218    private static final int UI_MESSAGE = UI_BASE + 3;
219    private static final int UI_UNDO = UI_BASE + 4;
220    private static final int UI_FOLDER_REFRESH = UI_BASE + 5;
221    private static final int UI_FOLDER = UI_BASE + 6;
222    private static final int UI_ACCOUNT = UI_BASE + 7;
223    private static final int UI_ACCTS = UI_BASE + 8;
224    private static final int UI_ATTACHMENTS = UI_BASE + 9;
225    private static final int UI_ATTACHMENT = UI_BASE + 10;
226    private static final int UI_SEARCH = UI_BASE + 11;
227    private static final int UI_ACCOUNT_DATA = UI_BASE + 12;
228    private static final int UI_FOLDER_LOAD_MORE = UI_BASE + 13;
229    private static final int UI_CONVERSATION = UI_BASE + 14;
230    private static final int UI_RECENT_FOLDERS = UI_BASE + 15;
231    private static final int UI_DEFAULT_RECENT_FOLDERS = UI_BASE + 16;
232    private static final int UI_ALL_FOLDERS = UI_BASE + 17;
233
234    // MUST ALWAYS EQUAL THE LAST OF THE PREVIOUS BASE CONSTANTS
235    private static final int LAST_EMAIL_PROVIDER_DB_BASE = UI_BASE;
236
237    // DO NOT CHANGE BODY_BASE!!
238    private static final int BODY_BASE = LAST_EMAIL_PROVIDER_DB_BASE + 0x1000;
239    private static final int BODY = BODY_BASE;
240    private static final int BODY_ID = BODY_BASE + 1;
241
242    private static final int BASE_SHIFT = 12;  // 12 bits to the base type: 0, 0x1000, 0x2000, etc.
243
244    // TABLE_NAMES MUST remain in the order of the BASE constants above (e.g. ACCOUNT_BASE = 0x0000,
245    // MESSAGE_BASE = 0x1000, etc.)
246    private static final String[] TABLE_NAMES = {
247        Account.TABLE_NAME,
248        Mailbox.TABLE_NAME,
249        Message.TABLE_NAME,
250        Attachment.TABLE_NAME,
251        HostAuth.TABLE_NAME,
252        Message.UPDATED_TABLE_NAME,
253        Message.DELETED_TABLE_NAME,
254        Policy.TABLE_NAME,
255        QuickResponse.TABLE_NAME,
256        null,  // UI
257        Body.TABLE_NAME,
258    };
259
260    private static UriMatcher sURIMatcher = null;
261
262    /**
263     * Let's only generate these SQL strings once, as they are used frequently
264     * Note that this isn't relevant for table creation strings, since they are used only once
265     */
266    private static final String UPDATED_MESSAGE_INSERT = "insert or ignore into " +
267        Message.UPDATED_TABLE_NAME + " select * from " + Message.TABLE_NAME + " where " +
268        EmailContent.RECORD_ID + '=';
269
270    private static final String UPDATED_MESSAGE_DELETE = "delete from " +
271        Message.UPDATED_TABLE_NAME + " where " + EmailContent.RECORD_ID + '=';
272
273    private static final String DELETED_MESSAGE_INSERT = "insert or replace into " +
274        Message.DELETED_TABLE_NAME + " select * from " + Message.TABLE_NAME + " where " +
275        EmailContent.RECORD_ID + '=';
276
277    private static final String DELETE_ORPHAN_BODIES = "delete from " + Body.TABLE_NAME +
278        " where " + BodyColumns.MESSAGE_KEY + " in " + "(select " + BodyColumns.MESSAGE_KEY +
279        " from " + Body.TABLE_NAME + " except select " + EmailContent.RECORD_ID + " from " +
280        Message.TABLE_NAME + ')';
281
282    private static final String DELETE_BODY = "delete from " + Body.TABLE_NAME +
283        " where " + BodyColumns.MESSAGE_KEY + '=';
284
285    private static ContentValues CONTENT_VALUES_RESET_NEW_MESSAGE_COUNT;
286    private static final ContentValues EMPTY_CONTENT_VALUES = new ContentValues();
287
288    private static final String MESSAGE_URI_PARAMETER_MAILBOX_ID = "mailboxId";
289
290    // For undo handling
291    private int mLastSequence = -1;
292    private final ArrayList<ContentProviderOperation> mLastSequenceOps =
293            new ArrayList<ContentProviderOperation>();
294
295    // Query parameter indicating the command came from UIProvider
296    private static final String IS_UIPROVIDER = "is_uiprovider";
297
298    private static final String SYNC_STATUS_CALLBACK_METHOD = "sync_status";
299
300    /**
301     * Wrap the UriMatcher call so we can throw a runtime exception if an unknown Uri is passed in
302     * @param uri the Uri to match
303     * @return the match value
304     */
305    private static int findMatch(Uri uri, String methodName) {
306        int match = sURIMatcher.match(uri);
307        if (match < 0) {
308            throw new IllegalArgumentException("Unknown uri: " + uri);
309        } else if (Logging.LOGD) {
310            LogUtils.v(TAG, methodName + ": uri=" + uri + ", match is " + match);
311        }
312        return match;
313    }
314
315    private static Uri INTEGRITY_CHECK_URI;
316    public static Uri ACCOUNT_BACKUP_URI;
317    private static Uri FOLDER_STATUS_URI;
318
319    private SQLiteDatabase mDatabase;
320    private SQLiteDatabase mBodyDatabase;
321
322    public static Uri uiUri(String type, long id) {
323        return Uri.parse(uiUriString(type, id));
324    }
325
326    /**
327     * Creates a URI string from a database ID (guaranteed to be unique).
328     * @param type of the resource: uifolder, message, etc.
329     * @param id the id of the resource.
330     * @return
331     */
332    public static String uiUriString(String type, long id) {
333        return "content://" + EmailContent.AUTHORITY + "/" + type + ((id == -1) ? "" : ("/" + id));
334    }
335
336    /**
337     * Orphan record deletion utility.  Generates a sqlite statement like:
338     *  delete from <table> where <column> not in (select <foreignColumn> from <foreignTable>)
339     * @param db the EmailProvider database
340     * @param table the table whose orphans are to be removed
341     * @param column the column deletion will be based on
342     * @param foreignColumn the column in the foreign table whose absence will trigger the deletion
343     * @param foreignTable the foreign table
344     */
345    private static void deleteUnlinked(SQLiteDatabase db, String table, String column,
346            String foreignColumn, String foreignTable) {
347        int count = db.delete(table, column + " not in (select " + foreignColumn + " from " +
348                foreignTable + ")", null);
349        if (count > 0) {
350            LogUtils.w(TAG, "Found " + count + " orphaned row(s) in " + table);
351        }
352    }
353
354    private synchronized SQLiteDatabase getDatabase(Context context) {
355        // Always return the cached database, if we've got one
356        if (mDatabase != null) {
357            return mDatabase;
358        }
359
360        // Whenever we create or re-cache the databases, make sure that we haven't lost one
361        // to corruption
362        checkDatabases();
363
364        DBHelper.DatabaseHelper helper = new DBHelper.DatabaseHelper(context, DATABASE_NAME);
365        mDatabase = helper.getWritableDatabase();
366        DBHelper.BodyDatabaseHelper bodyHelper =
367                new DBHelper.BodyDatabaseHelper(context, BODY_DATABASE_NAME);
368        mBodyDatabase = bodyHelper.getWritableDatabase();
369        if (mBodyDatabase != null) {
370            String bodyFileName = mBodyDatabase.getPath();
371            mDatabase.execSQL("attach \"" + bodyFileName + "\" as BodyDatabase");
372        }
373
374        // Restore accounts if the database is corrupted...
375        restoreIfNeeded(context, mDatabase);
376        // Check for any orphaned Messages in the updated/deleted tables
377        deleteMessageOrphans(mDatabase, Message.UPDATED_TABLE_NAME);
378        deleteMessageOrphans(mDatabase, Message.DELETED_TABLE_NAME);
379        // Delete orphaned mailboxes/messages/policies (account no longer exists)
380        deleteUnlinked(mDatabase, Mailbox.TABLE_NAME, MailboxColumns.ACCOUNT_KEY, AccountColumns.ID,
381                Account.TABLE_NAME);
382        deleteUnlinked(mDatabase, Message.TABLE_NAME, MessageColumns.ACCOUNT_KEY, AccountColumns.ID,
383                Account.TABLE_NAME);
384        deleteUnlinked(mDatabase, Policy.TABLE_NAME, PolicyColumns.ID, AccountColumns.POLICY_KEY,
385                Account.TABLE_NAME);
386        initUiProvider();
387        return mDatabase;
388    }
389
390    /**
391     * Perform startup actions related to UI
392     */
393    private void initUiProvider() {
394        // Clear mailbox sync status
395        mDatabase.execSQL("update " + Mailbox.TABLE_NAME + " set " + MailboxColumns.UI_SYNC_STATUS +
396                "=" + UIProvider.SyncStatus.NO_SYNC);
397    }
398
399    /**
400     * Restore user Account and HostAuth data from our backup database
401     */
402    private static void restoreIfNeeded(Context context, SQLiteDatabase mainDatabase) {
403        if (MailActivityEmail.DEBUG) {
404            LogUtils.w(TAG, "restoreIfNeeded...");
405        }
406        // Check for legacy backup
407        String legacyBackup = Preferences.getLegacyBackupPreference(context);
408        // If there's a legacy backup, create a new-style backup and delete the legacy backup
409        // In the 1:1000000000 chance that the user gets an app update just as his database becomes
410        // corrupt, oh well...
411        if (!TextUtils.isEmpty(legacyBackup)) {
412            backupAccounts(context, mainDatabase);
413            Preferences.clearLegacyBackupPreference(context);
414            LogUtils.w(TAG, "Created new EmailProvider backup database");
415            return;
416        }
417
418        // If we have accounts, we're done
419        Cursor c = mainDatabase.query(Account.TABLE_NAME, EmailContent.ID_PROJECTION, null, null,
420                null, null, null);
421        try {
422            if (c.moveToFirst()) {
423                if (MailActivityEmail.DEBUG) {
424                    LogUtils.w(TAG, "restoreIfNeeded: Account exists.");
425                }
426                return; // At least one account exists.
427            }
428        } finally {
429            c.close();
430        }
431
432        restoreAccounts(context, mainDatabase);
433    }
434
435    /** {@inheritDoc} */
436    @Override
437    public void shutdown() {
438        if (mDatabase != null) {
439            mDatabase.close();
440            mDatabase = null;
441        }
442        if (mBodyDatabase != null) {
443            mBodyDatabase.close();
444            mBodyDatabase = null;
445        }
446    }
447
448    private static void deleteMessageOrphans(SQLiteDatabase database, String tableName) {
449        if (database != null) {
450            // We'll look at all of the items in the table; there won't be many typically
451            Cursor c = database.query(tableName, ORPHANS_PROJECTION, null, null, null, null, null);
452            // Usually, there will be nothing in these tables, so make a quick check
453            try {
454                if (c.getCount() == 0) return;
455                ArrayList<Long> foundMailboxes = new ArrayList<Long>();
456                ArrayList<Long> notFoundMailboxes = new ArrayList<Long>();
457                ArrayList<Long> deleteList = new ArrayList<Long>();
458                String[] bindArray = new String[1];
459                while (c.moveToNext()) {
460                    // Get the mailbox key and see if we've already found this mailbox
461                    // If so, we're fine
462                    long mailboxId = c.getLong(ORPHANS_MAILBOX_KEY);
463                    // If we already know this mailbox doesn't exist, mark the message for deletion
464                    if (notFoundMailboxes.contains(mailboxId)) {
465                        deleteList.add(c.getLong(ORPHANS_ID));
466                    // If we don't know about this mailbox, we'll try to find it
467                    } else if (!foundMailboxes.contains(mailboxId)) {
468                        bindArray[0] = Long.toString(mailboxId);
469                        Cursor boxCursor = database.query(Mailbox.TABLE_NAME,
470                                Mailbox.ID_PROJECTION, WHERE_ID, bindArray, null, null, null);
471                        try {
472                            // If it exists, we'll add it to the "found" mailboxes
473                            if (boxCursor.moveToFirst()) {
474                                foundMailboxes.add(mailboxId);
475                            // Otherwise, we'll add to "not found" and mark the message for deletion
476                            } else {
477                                notFoundMailboxes.add(mailboxId);
478                                deleteList.add(c.getLong(ORPHANS_ID));
479                            }
480                        } finally {
481                            boxCursor.close();
482                        }
483                    }
484                }
485                // Now, delete the orphan messages
486                for (long messageId: deleteList) {
487                    bindArray[0] = Long.toString(messageId);
488                    database.delete(tableName, WHERE_ID, bindArray);
489                }
490            } finally {
491                c.close();
492            }
493        }
494    }
495
496    @Override
497    public int delete(Uri uri, String selection, String[] selectionArgs) {
498        final int match = findMatch(uri, "delete");
499        Context context = getContext();
500        // Pick the correct database for this operation
501        // If we're in a transaction already (which would happen during applyBatch), then the
502        // body database is already attached to the email database and any attempt to use the
503        // body database directly will result in a SQLiteException (the database is locked)
504        SQLiteDatabase db = getDatabase(context);
505        int table = match >> BASE_SHIFT;
506        String id = "0";
507        boolean messageDeletion = false;
508        ContentResolver resolver = context.getContentResolver();
509
510        String tableName = TABLE_NAMES[table];
511        int result = -1;
512
513        try {
514            if (match == MESSAGE_ID || match == SYNCED_MESSAGE_ID) {
515                if (!uri.getBooleanQueryParameter(IS_UIPROVIDER, false)) {
516                    notifyUIConversation(uri);
517                }
518            }
519            switch (match) {
520                case UI_MESSAGE:
521                    return uiDeleteMessage(uri);
522                case UI_ACCOUNT_DATA:
523                    return uiDeleteAccountData(uri);
524                case UI_ACCOUNT:
525                    return uiDeleteAccount(uri);
526                case MESSAGE_SELECTION:
527                    Cursor findCursor = db.query(tableName, Message.ID_COLUMN_PROJECTION, selection,
528                            selectionArgs, null, null, null);
529                    try {
530                        if (findCursor.moveToFirst()) {
531                            return delete(ContentUris.withAppendedId(
532                                    Message.CONTENT_URI,
533                                    findCursor.getLong(Message.ID_COLUMNS_ID_COLUMN)),
534                                    null, null);
535                        } else {
536                            return 0;
537                        }
538                    } finally {
539                        findCursor.close();
540                    }
541                // These are cases in which one or more Messages might get deleted, either by
542                // cascade or explicitly
543                case MAILBOX_ID:
544                case MAILBOX:
545                case ACCOUNT_ID:
546                case ACCOUNT:
547                case MESSAGE:
548                case SYNCED_MESSAGE_ID:
549                case MESSAGE_ID:
550                    // Handle lost Body records here, since this cannot be done in a trigger
551                    // The process is:
552                    //  1) Begin a transaction, ensuring that both databases are affected atomically
553                    //  2) Do the requested deletion, with cascading deletions handled in triggers
554                    //  3) End the transaction, committing all changes atomically
555                    //
556                    // Bodies are auto-deleted here;  Attachments are auto-deleted via trigger
557                    messageDeletion = true;
558                    db.beginTransaction();
559                    break;
560            }
561            switch (match) {
562                case BODY_ID:
563                case DELETED_MESSAGE_ID:
564                case SYNCED_MESSAGE_ID:
565                case MESSAGE_ID:
566                case UPDATED_MESSAGE_ID:
567                case ATTACHMENT_ID:
568                case MAILBOX_ID:
569                case ACCOUNT_ID:
570                case HOSTAUTH_ID:
571                case POLICY_ID:
572                case QUICK_RESPONSE_ID:
573                    id = uri.getPathSegments().get(1);
574                    if (match == SYNCED_MESSAGE_ID) {
575                        // For synced messages, first copy the old message to the deleted table and
576                        // delete it from the updated table (in case it was updated first)
577                        // Note that this is all within a transaction, for atomicity
578                        db.execSQL(DELETED_MESSAGE_INSERT + id);
579                        db.execSQL(UPDATED_MESSAGE_DELETE + id);
580                    }
581
582                    result = db.delete(tableName, whereWithId(id, selection), selectionArgs);
583
584                    if (match == ACCOUNT_ID) {
585                        notifyUI(UIPROVIDER_ACCOUNT_NOTIFIER, id);
586                        resolver.notifyChange(UIPROVIDER_ALL_ACCOUNTS_NOTIFIER, null);
587                    } else if (match == MAILBOX_ID) {
588                        notifyUIFolder(id, null);
589                    } else if (match == ATTACHMENT_ID) {
590                        notifyUI(UIPROVIDER_ATTACHMENT_NOTIFIER, id);
591                    }
592                    break;
593                case ATTACHMENTS_MESSAGE_ID:
594                    // All attachments for the given message
595                    id = uri.getPathSegments().get(2);
596                    result = db.delete(tableName,
597                            whereWith(Attachment.MESSAGE_KEY + "=" + id, selection), selectionArgs);
598                    break;
599
600                case BODY:
601                case MESSAGE:
602                case DELETED_MESSAGE:
603                case UPDATED_MESSAGE:
604                case ATTACHMENT:
605                case MAILBOX:
606                case ACCOUNT:
607                case HOSTAUTH:
608                case POLICY:
609                    result = db.delete(tableName, selection, selectionArgs);
610                    break;
611
612                default:
613                    throw new IllegalArgumentException("Unknown URI " + uri);
614            }
615            if (messageDeletion) {
616                if (match == MESSAGE_ID) {
617                    // Delete the Body record associated with the deleted message
618                    db.execSQL(DELETE_BODY + id);
619                } else {
620                    // Delete any orphaned Body records
621                    db.execSQL(DELETE_ORPHAN_BODIES);
622                }
623                db.setTransactionSuccessful();
624            }
625        } catch (SQLiteException e) {
626            checkDatabases();
627            throw e;
628        } finally {
629            if (messageDeletion) {
630                db.endTransaction();
631            }
632        }
633
634        // Notify all notifier cursors
635        sendNotifierChange(getBaseNotificationUri(match), NOTIFICATION_OP_DELETE, id);
636
637        // Notify all email content cursors
638        resolver.notifyChange(EmailContent.CONTENT_URI, null);
639        return result;
640    }
641
642    @Override
643    // Use the email- prefix because message, mailbox, and account are so generic (e.g. SMS, IM)
644    public String getType(Uri uri) {
645        int match = findMatch(uri, "getType");
646        switch (match) {
647            case BODY_ID:
648                return "vnd.android.cursor.item/email-body";
649            case BODY:
650                return "vnd.android.cursor.dir/email-body";
651            case UPDATED_MESSAGE_ID:
652            case MESSAGE_ID:
653                // NOTE: According to the framework folks, we're supposed to invent mime types as
654                // a way of passing information to drag & drop recipients.
655                // If there's a mailboxId parameter in the url, we respond with a mime type that
656                // has -n appended, where n is the mailboxId of the message.  The drag & drop code
657                // uses this information to know not to allow dragging the item to its own mailbox
658                String mimeType = EMAIL_MESSAGE_MIME_TYPE;
659                String mailboxId = uri.getQueryParameter(MESSAGE_URI_PARAMETER_MAILBOX_ID);
660                if (mailboxId != null) {
661                    mimeType += "-" + mailboxId;
662                }
663                return mimeType;
664            case UPDATED_MESSAGE:
665            case MESSAGE:
666                return "vnd.android.cursor.dir/email-message";
667            case MAILBOX:
668                return "vnd.android.cursor.dir/email-mailbox";
669            case MAILBOX_ID:
670                return "vnd.android.cursor.item/email-mailbox";
671            case ACCOUNT:
672                return "vnd.android.cursor.dir/email-account";
673            case ACCOUNT_ID:
674                return "vnd.android.cursor.item/email-account";
675            case ATTACHMENTS_MESSAGE_ID:
676            case ATTACHMENT:
677                return "vnd.android.cursor.dir/email-attachment";
678            case ATTACHMENT_ID:
679                return EMAIL_ATTACHMENT_MIME_TYPE;
680            case HOSTAUTH:
681                return "vnd.android.cursor.dir/email-hostauth";
682            case HOSTAUTH_ID:
683                return "vnd.android.cursor.item/email-hostauth";
684            default:
685                return null;
686        }
687    }
688
689    private static final Uri UIPROVIDER_CONVERSATION_NOTIFIER =
690            Uri.parse("content://" + UIProvider.AUTHORITY + "/uimessages");
691    private static final Uri UIPROVIDER_FOLDER_NOTIFIER =
692            Uri.parse("content://" + UIProvider.AUTHORITY + "/uifolder");
693    private static final Uri UIPROVIDER_FOLDERLIST_NOTIFIER =
694            Uri.parse("content://" + UIProvider.AUTHORITY + "/uifolders");
695    private static final Uri UIPROVIDER_ACCOUNT_NOTIFIER =
696            Uri.parse("content://" + UIProvider.AUTHORITY + "/uiaccount");
697    public static final Uri UIPROVIDER_SETTINGS_NOTIFIER =
698            Uri.parse("content://" + UIProvider.AUTHORITY + "/uisettings");
699    private static final Uri UIPROVIDER_ATTACHMENT_NOTIFIER =
700            Uri.parse("content://" + UIProvider.AUTHORITY + "/uiattachment");
701    private static final Uri UIPROVIDER_ATTACHMENTS_NOTIFIER =
702            Uri.parse("content://" + UIProvider.AUTHORITY + "/uiattachments");
703    public static final Uri UIPROVIDER_ALL_ACCOUNTS_NOTIFIER =
704            Uri.parse("content://" + UIProvider.AUTHORITY + "/uiaccts");
705    private static final Uri UIPROVIDER_MESSAGE_NOTIFIER =
706            Uri.parse("content://" + UIProvider.AUTHORITY + "/uimessage");
707    private static final Uri UIPROVIDER_RECENT_FOLDERS_NOTIFIER =
708            Uri.parse("content://" + UIProvider.AUTHORITY + "/uirecentfolders");
709
710    @Override
711    public Uri insert(Uri uri, ContentValues values) {
712        int match = findMatch(uri, "insert");
713        Context context = getContext();
714        ContentResolver resolver = context.getContentResolver();
715
716        // See the comment at delete(), above
717        SQLiteDatabase db = getDatabase(context);
718        int table = match >> BASE_SHIFT;
719        String id = "0";
720        long longId;
721
722        // We do NOT allow setting of unreadCount/messageCount via the provider
723        // These columns are maintained via triggers
724        if (match == MAILBOX_ID || match == MAILBOX) {
725            values.put(MailboxColumns.UNREAD_COUNT, 0);
726            values.put(MailboxColumns.MESSAGE_COUNT, 0);
727        }
728
729        Uri resultUri = null;
730
731        try {
732            switch (match) {
733                // NOTE: It is NOT legal for production code to insert directly into UPDATED_MESSAGE
734                // or DELETED_MESSAGE; see the comment below for details
735                case UPDATED_MESSAGE:
736                case DELETED_MESSAGE:
737                case MESSAGE:
738                case BODY:
739                case ATTACHMENT:
740                case MAILBOX:
741                case ACCOUNT:
742                case HOSTAUTH:
743                case POLICY:
744                case QUICK_RESPONSE:
745                    longId = db.insert(TABLE_NAMES[table], "foo", values);
746                    resultUri = ContentUris.withAppendedId(uri, longId);
747                    switch(match) {
748                        case MESSAGE:
749                            if (!uri.getBooleanQueryParameter(IS_UIPROVIDER, false)) {
750                                notifyUIConversationMailbox(values.getAsLong(Message.MAILBOX_KEY));
751                            }
752                            break;
753                        case MAILBOX:
754                            if (values.containsKey(MailboxColumns.TYPE)) {
755                                // Only notify for special mailbox types
756                                int type = values.getAsInteger(MailboxColumns.TYPE);
757                                if (type != Mailbox.TYPE_INBOX && type != Mailbox.TYPE_OUTBOX &&
758                                        type != Mailbox.TYPE_DRAFTS && type != Mailbox.TYPE_SENT &&
759                                        type != Mailbox.TYPE_TRASH && type != Mailbox.TYPE_SEARCH) {
760                                    break;
761                                }
762                            }
763                            // Notify the account when a new mailbox is added
764                            Long accountId = values.getAsLong(MailboxColumns.ACCOUNT_KEY);
765                            if (accountId != null && accountId.longValue() > 0) {
766                                notifyUI(UIPROVIDER_ACCOUNT_NOTIFIER, accountId);
767                            }
768                            break;
769                        case ACCOUNT:
770                            updateAccountSyncInterval(longId, values);
771                            if (!uri.getBooleanQueryParameter(IS_UIPROVIDER, false)) {
772                                notifyUIAccount(longId);
773                            }
774                            resolver.notifyChange(UIPROVIDER_ALL_ACCOUNTS_NOTIFIER, null);
775                            break;
776                        case UPDATED_MESSAGE:
777                        case DELETED_MESSAGE:
778                            throw new IllegalArgumentException("Unknown URL " + uri);
779                        case ATTACHMENT:
780                            int flags = 0;
781                            if (values.containsKey(Attachment.FLAGS)) {
782                                flags = values.getAsInteger(Attachment.FLAGS);
783                            }
784                            // Report all new attachments to the download service
785                            mAttachmentService.attachmentChanged(getContext(), longId, flags);
786                            break;
787                    }
788                    break;
789                case MAILBOX_ID:
790                    // This implies adding a message to a mailbox
791                    // Hmm, a problem here is that we can't link the account as well, so it must be
792                    // already in the values...
793                    longId = Long.parseLong(uri.getPathSegments().get(1));
794                    values.put(MessageColumns.MAILBOX_KEY, longId);
795                    return insert(Message.CONTENT_URI, values); // Recurse
796                case MESSAGE_ID:
797                    // This implies adding an attachment to a message.
798                    id = uri.getPathSegments().get(1);
799                    longId = Long.parseLong(id);
800                    values.put(AttachmentColumns.MESSAGE_KEY, longId);
801                    return insert(Attachment.CONTENT_URI, values); // Recurse
802                case ACCOUNT_ID:
803                    // This implies adding a mailbox to an account.
804                    longId = Long.parseLong(uri.getPathSegments().get(1));
805                    values.put(MailboxColumns.ACCOUNT_KEY, longId);
806                    return insert(Mailbox.CONTENT_URI, values); // Recurse
807                case ATTACHMENTS_MESSAGE_ID:
808                    longId = db.insert(TABLE_NAMES[table], "foo", values);
809                    resultUri = ContentUris.withAppendedId(Attachment.CONTENT_URI, longId);
810                    break;
811                default:
812                    throw new IllegalArgumentException("Unknown URL " + uri);
813            }
814        } catch (SQLiteException e) {
815            checkDatabases();
816            throw e;
817        }
818
819        // Notify all notifier cursors
820        sendNotifierChange(getBaseNotificationUri(match), NOTIFICATION_OP_INSERT, id);
821
822        // Notify all existing cursors.
823        resolver.notifyChange(EmailContent.CONTENT_URI, null);
824        return resultUri;
825    }
826
827        @Override
828        public boolean onCreate() {
829            Context context = getContext();
830            EmailContent.init(context);
831            if (INTEGRITY_CHECK_URI == null) {
832                INTEGRITY_CHECK_URI = Uri.parse("content://" + EmailContent.AUTHORITY +
833                        "/integrityCheck");
834                ACCOUNT_BACKUP_URI =
835                        Uri.parse("content://" + EmailContent.AUTHORITY + "/accountBackup");
836                FOLDER_STATUS_URI =
837                        Uri.parse("content://" + EmailContent.AUTHORITY + "/status");
838                EMAIL_APP_MIME_TYPE = context.getString(R.string.application_mime_type);
839            }
840            checkDatabases();
841            if (sURIMatcher == null) {
842                sURIMatcher = new UriMatcher(UriMatcher.NO_MATCH);
843                // Email URI matching table
844                UriMatcher matcher = sURIMatcher;
845
846                // All accounts
847                matcher.addURI(EmailContent.AUTHORITY, "account", ACCOUNT);
848                // A specific account
849                // insert into this URI causes a mailbox to be added to the account
850                matcher.addURI(EmailContent.AUTHORITY, "account/#", ACCOUNT_ID);
851                matcher.addURI(EmailContent.AUTHORITY, "account/default", ACCOUNT_DEFAULT_ID);
852                matcher.addURI(EmailContent.AUTHORITY, "accountCheck/#", ACCOUNT_CHECK);
853
854                // Special URI to reset the new message count.  Only update works, and values
855                // will be ignored.
856                matcher.addURI(EmailContent.AUTHORITY, "resetNewMessageCount",
857                        ACCOUNT_RESET_NEW_COUNT);
858                matcher.addURI(EmailContent.AUTHORITY, "resetNewMessageCount/#",
859                        ACCOUNT_RESET_NEW_COUNT_ID);
860
861                // All mailboxes
862                matcher.addURI(EmailContent.AUTHORITY, "mailbox", MAILBOX);
863                // A specific mailbox
864                // insert into this URI causes a message to be added to the mailbox
865                // ** NOTE For now, the accountKey must be set manually in the values!
866                matcher.addURI(EmailContent.AUTHORITY, "mailbox/*", MAILBOX_ID);
867                matcher.addURI(EmailContent.AUTHORITY, "mailboxNotification/#",
868                        MAILBOX_NOTIFICATION);
869                matcher.addURI(EmailContent.AUTHORITY, "mailboxMostRecentMessage/#",
870                        MAILBOX_MOST_RECENT_MESSAGE);
871                matcher.addURI(EmailContent.AUTHORITY, "mailboxCount/#", MAILBOX_MESSAGE_COUNT);
872
873                // All messages
874                matcher.addURI(EmailContent.AUTHORITY, "message", MESSAGE);
875                // A specific message
876                // insert into this URI causes an attachment to be added to the message
877                matcher.addURI(EmailContent.AUTHORITY, "message/#", MESSAGE_ID);
878
879                // A specific attachment
880                matcher.addURI(EmailContent.AUTHORITY, "attachment", ATTACHMENT);
881                // A specific attachment (the header information)
882                matcher.addURI(EmailContent.AUTHORITY, "attachment/#", ATTACHMENT_ID);
883                // The attachments of a specific message (query only) (insert & delete TBD)
884                matcher.addURI(EmailContent.AUTHORITY, "attachment/message/#",
885                        ATTACHMENTS_MESSAGE_ID);
886                matcher.addURI(EmailContent.AUTHORITY, "attachment/cachedFile",
887                        ATTACHMENTS_CACHED_FILE_ACCESS);
888
889                // All mail bodies
890                matcher.addURI(EmailContent.AUTHORITY, "body", BODY);
891                // A specific mail body
892                matcher.addURI(EmailContent.AUTHORITY, "body/#", BODY_ID);
893
894                // All hostauth records
895                matcher.addURI(EmailContent.AUTHORITY, "hostauth", HOSTAUTH);
896                // A specific hostauth
897                matcher.addURI(EmailContent.AUTHORITY, "hostauth/*", HOSTAUTH_ID);
898
899                /**
900                 * THIS URI HAS SPECIAL SEMANTICS
901                 * ITS USE IS INTENDED FOR THE UI TO MARK CHANGES THAT NEED TO BE SYNCED BACK
902                 * TO A SERVER VIA A SYNC ADAPTER
903                 */
904                matcher.addURI(EmailContent.AUTHORITY, "syncedMessage/#", SYNCED_MESSAGE_ID);
905                matcher.addURI(EmailContent.AUTHORITY, "messageBySelection", MESSAGE_SELECTION);
906
907                /**
908                 * THE URIs BELOW THIS POINT ARE INTENDED TO BE USED BY SYNC ADAPTERS ONLY
909                 * THEY REFER TO DATA CREATED AND MAINTAINED BY CALLS TO THE SYNCED_MESSAGE_ID URI
910                 * BY THE UI APPLICATION
911                 */
912                // All deleted messages
913                matcher.addURI(EmailContent.AUTHORITY, "deletedMessage", DELETED_MESSAGE);
914                // A specific deleted message
915                matcher.addURI(EmailContent.AUTHORITY, "deletedMessage/#", DELETED_MESSAGE_ID);
916
917                // All updated messages
918                matcher.addURI(EmailContent.AUTHORITY, "updatedMessage", UPDATED_MESSAGE);
919                // A specific updated message
920                matcher.addURI(EmailContent.AUTHORITY, "updatedMessage/#", UPDATED_MESSAGE_ID);
921
922                CONTENT_VALUES_RESET_NEW_MESSAGE_COUNT = new ContentValues();
923                CONTENT_VALUES_RESET_NEW_MESSAGE_COUNT.put(Account.NEW_MESSAGE_COUNT, 0);
924
925                matcher.addURI(EmailContent.AUTHORITY, "policy", POLICY);
926                matcher.addURI(EmailContent.AUTHORITY, "policy/#", POLICY_ID);
927
928                // All quick responses
929                matcher.addURI(EmailContent.AUTHORITY, "quickresponse", QUICK_RESPONSE);
930                // A specific quick response
931                matcher.addURI(EmailContent.AUTHORITY, "quickresponse/#", QUICK_RESPONSE_ID);
932                // All quick responses associated with a particular account id
933                matcher.addURI(EmailContent.AUTHORITY, "quickresponse/account/#",
934                        QUICK_RESPONSE_ACCOUNT_ID);
935
936                matcher.addURI(EmailContent.AUTHORITY, "uifolders/#", UI_FOLDERS);
937                matcher.addURI(EmailContent.AUTHORITY, "uiallfolders/#", UI_ALL_FOLDERS);
938                matcher.addURI(EmailContent.AUTHORITY, "uisubfolders/#", UI_SUBFOLDERS);
939                matcher.addURI(EmailContent.AUTHORITY, "uimessages/#", UI_MESSAGES);
940                matcher.addURI(EmailContent.AUTHORITY, "uimessage/#", UI_MESSAGE);
941                matcher.addURI(EmailContent.AUTHORITY, "uiundo", UI_UNDO);
942                matcher.addURI(EmailContent.AUTHORITY, QUERY_UIREFRESH + "/#", UI_FOLDER_REFRESH);
943                // We listen to everything trailing uifolder/ since there might be an appVersion
944                // as in Utils.appendVersionQueryParameter().
945                matcher.addURI(EmailContent.AUTHORITY, "uifolder/*", UI_FOLDER);
946                matcher.addURI(EmailContent.AUTHORITY, "uiaccount/#", UI_ACCOUNT);
947                matcher.addURI(EmailContent.AUTHORITY, "uiaccts", UI_ACCTS);
948                matcher.addURI(EmailContent.AUTHORITY, "uiattachments/#", UI_ATTACHMENTS);
949                matcher.addURI(EmailContent.AUTHORITY, "uiattachment/#", UI_ATTACHMENT);
950                matcher.addURI(EmailContent.AUTHORITY, "uisearch/#", UI_SEARCH);
951                matcher.addURI(EmailContent.AUTHORITY, "uiaccountdata/#", UI_ACCOUNT_DATA);
952                matcher.addURI(EmailContent.AUTHORITY, "uiloadmore/#", UI_FOLDER_LOAD_MORE);
953                matcher.addURI(EmailContent.AUTHORITY, "uiconversation/#", UI_CONVERSATION);
954                matcher.addURI(EmailContent.AUTHORITY, "uirecentfolders/#", UI_RECENT_FOLDERS);
955                matcher.addURI(EmailContent.AUTHORITY, "uidefaultrecentfolders/#",
956                        UI_DEFAULT_RECENT_FOLDERS);
957                matcher.addURI(EmailContent.AUTHORITY, "pickTrashFolder/#",
958                        ACCOUNT_PICK_TRASH_FOLDER);
959                matcher.addURI(EmailContent.AUTHORITY, "pickSentFolder/#",
960                        ACCOUNT_PICK_SENT_FOLDER);
961
962                // Do this last, so that EmailContent/EmailProvider are initialized
963                MailActivityEmail.setServicesEnabledAsync(context);
964            }
965            return false;
966        }
967
968    /**
969     * The idea here is that the two databases (EmailProvider.db and EmailProviderBody.db must
970     * always be in sync (i.e. there are two database or NO databases).  This code will delete
971     * any "orphan" database, so that both will be created together.  Note that an "orphan" database
972     * will exist after either of the individual databases is deleted due to data corruption.
973     */
974    public synchronized void checkDatabases() {
975        // Uncache the databases
976        if (mDatabase != null) {
977            mDatabase = null;
978        }
979        if (mBodyDatabase != null) {
980            mBodyDatabase = null;
981        }
982        // Look for orphans, and delete as necessary; these must always be in sync
983        File databaseFile = getContext().getDatabasePath(DATABASE_NAME);
984        File bodyFile = getContext().getDatabasePath(BODY_DATABASE_NAME);
985
986        // TODO Make sure attachments are deleted
987        if (databaseFile.exists() && !bodyFile.exists()) {
988            LogUtils.w(TAG, "Deleting orphaned EmailProvider database...");
989            databaseFile.delete();
990        } else if (bodyFile.exists() && !databaseFile.exists()) {
991            LogUtils.w(TAG, "Deleting orphaned EmailProviderBody database...");
992            bodyFile.delete();
993        }
994    }
995    @Override
996    public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
997            String sortOrder) {
998        long time = 0L;
999        if (MailActivityEmail.DEBUG) {
1000            time = System.nanoTime();
1001        }
1002        Cursor c = null;
1003        int match;
1004        try {
1005            match = findMatch(uri, "query");
1006        } catch (IllegalArgumentException e) {
1007            String uriString = uri.toString();
1008            // If we were passed an illegal uri, see if it ends in /-1
1009            // if so, and if substituting 0 for -1 results in a valid uri, return an empty cursor
1010            if (uriString != null && uriString.endsWith("/-1")) {
1011                uri = Uri.parse(uriString.substring(0, uriString.length() - 2) + "0");
1012                match = findMatch(uri, "query");
1013                switch (match) {
1014                    case BODY_ID:
1015                    case MESSAGE_ID:
1016                    case DELETED_MESSAGE_ID:
1017                    case UPDATED_MESSAGE_ID:
1018                    case ATTACHMENT_ID:
1019                    case MAILBOX_ID:
1020                    case ACCOUNT_ID:
1021                    case HOSTAUTH_ID:
1022                    case POLICY_ID:
1023                        return new MatrixCursorWithCachedColumns(projection, 0);
1024                }
1025            }
1026            throw e;
1027        }
1028        Context context = getContext();
1029        // See the comment at delete(), above
1030        SQLiteDatabase db = getDatabase(context);
1031        int table = match >> BASE_SHIFT;
1032        String limit = uri.getQueryParameter(EmailContent.PARAMETER_LIMIT);
1033        String id;
1034
1035        String tableName = TABLE_NAMES[table];
1036
1037        try {
1038            switch (match) {
1039                // First, dispatch queries from UnfiedEmail
1040                case UI_SEARCH:
1041                    c = uiSearch(uri, projection);
1042                    return c;
1043                case UI_ACCTS:
1044                    c = uiAccounts(projection);
1045                    return c;
1046                case UI_UNDO:
1047                    return uiUndo(projection);
1048                case UI_SUBFOLDERS:
1049                case UI_MESSAGES:
1050                case UI_MESSAGE:
1051                case UI_FOLDER:
1052                case UI_ACCOUNT:
1053                case UI_ATTACHMENT:
1054                case UI_ATTACHMENTS:
1055                case UI_CONVERSATION:
1056                case UI_RECENT_FOLDERS:
1057                case UI_ALL_FOLDERS:
1058                    // For now, we don't allow selection criteria within these queries
1059                    if (selection != null || selectionArgs != null) {
1060                        throw new IllegalArgumentException("UI queries can't have selection/args");
1061                    }
1062
1063                    final String seenParam = uri.getQueryParameter(UIProvider.SEEN_QUERY_PARAMETER);
1064                    final boolean unseenOnly;
1065                    if (seenParam != null && Boolean.FALSE.toString().equals(seenParam)) {
1066                        unseenOnly = true;
1067                    } else {
1068                        unseenOnly = false;
1069                    }
1070
1071                    c = uiQuery(match, uri, projection, unseenOnly);
1072                    return c;
1073                case UI_FOLDERS:
1074                    c = uiFolders(uri, projection);
1075                    return c;
1076                case UI_FOLDER_LOAD_MORE:
1077                    c = uiFolderLoadMore(getMailbox(uri));
1078                    return c;
1079                case UI_FOLDER_REFRESH:
1080                    c = uiFolderRefresh(getMailbox(uri), 0);
1081                    return c;
1082                case MAILBOX_NOTIFICATION:
1083                    c = notificationQuery(uri);
1084                    return c;
1085                case MAILBOX_MOST_RECENT_MESSAGE:
1086                    c = mostRecentMessageQuery(uri);
1087                    return c;
1088                case MAILBOX_MESSAGE_COUNT:
1089                    c = getMailboxMessageCount(uri);
1090                    return c;
1091                case ACCOUNT_DEFAULT_ID:
1092                    // We want either the row which has isDefault set, or we want the lowest valued
1093                    // account id if none are isDefault. I don't think there's a way to express this
1094                    // simply in sql so we get all account ids and loop through them manually.
1095                    final Cursor accounts = db.query(Account.TABLE_NAME,
1096                            Account.ACCOUNT_IS_DEFAULT_PROJECTION,
1097                            null, null, null, null, null, null);
1098                    long defaultAccountId = Account.NO_ACCOUNT;
1099                    while (accounts.moveToNext()) {
1100                        final long accountId =
1101                                accounts.getLong(Account.ACCOUNT_IS_DEFAULT_COLUMN_ID);
1102                        if (accounts.getInt(Account.ACCOUNT_IS_DEFAULT_COLUMN_IS_DEFAULT) == 1) {
1103                            defaultAccountId = accountId;
1104                            break;
1105                        } else if (defaultAccountId == Account.NO_ACCOUNT ||
1106                                accountId < defaultAccountId) {
1107                            defaultAccountId = accountId;
1108                        }
1109                    }
1110                    // Return a cursor with an id projection
1111                    final MatrixCursor mc =
1112                            new MatrixCursorWithCachedColumns(EmailContent.ID_PROJECTION, 1);
1113                    mc.addRow(new Object[] {defaultAccountId});
1114                    c = mc;
1115                    break;
1116                case BODY:
1117                case MESSAGE:
1118                case UPDATED_MESSAGE:
1119                case DELETED_MESSAGE:
1120                case ATTACHMENT:
1121                case MAILBOX:
1122                case ACCOUNT:
1123                case HOSTAUTH:
1124                case POLICY:
1125                case QUICK_RESPONSE:
1126                    c = db.query(tableName, projection,
1127                            selection, selectionArgs, null, null, sortOrder, limit);
1128                    break;
1129                case BODY_ID:
1130                case MESSAGE_ID:
1131                case DELETED_MESSAGE_ID:
1132                case UPDATED_MESSAGE_ID:
1133                case ATTACHMENT_ID:
1134                case MAILBOX_ID:
1135                case ACCOUNT_ID:
1136                case HOSTAUTH_ID:
1137                case POLICY_ID:
1138                case QUICK_RESPONSE_ID:
1139                    id = uri.getPathSegments().get(1);
1140                    c = db.query(tableName, projection, whereWithId(id, selection),
1141                            selectionArgs, null, null, sortOrder, limit);
1142                    break;
1143                case ATTACHMENTS_MESSAGE_ID:
1144                    // All attachments for the given message
1145                    id = uri.getPathSegments().get(2);
1146                    c = db.query(Attachment.TABLE_NAME, projection,
1147                            whereWith(Attachment.MESSAGE_KEY + "=" + id, selection),
1148                            selectionArgs, null, null, sortOrder, limit);
1149                    break;
1150                case QUICK_RESPONSE_ACCOUNT_ID:
1151                    // All quick responses for the given account
1152                    id = uri.getPathSegments().get(2);
1153                    c = db.query(QuickResponse.TABLE_NAME, projection,
1154                            whereWith(QuickResponse.ACCOUNT_KEY + "=" + id, selection),
1155                            selectionArgs, null, null, sortOrder);
1156                    break;
1157                default:
1158                    throw new IllegalArgumentException("Unknown URI " + uri);
1159            }
1160        } catch (SQLiteException e) {
1161            checkDatabases();
1162            throw e;
1163        } catch (RuntimeException e) {
1164            checkDatabases();
1165            e.printStackTrace();
1166            throw e;
1167        } finally {
1168            if (c == null) {
1169                // This should never happen, but let's be sure to log it...
1170                // TODO: There are actually cases where c == null is expected, for example
1171                // UI_FOLDER_LOAD_MORE.
1172                // Demoting this to a warning for now until we figure out what to do with it.
1173                LogUtils.w(TAG, "Query returning null for uri: " + uri + ", selection: "
1174                        + selection);
1175            }
1176        }
1177
1178        if ((c != null) && !isTemporary()) {
1179            c.setNotificationUri(getContext().getContentResolver(), uri);
1180        }
1181        return c;
1182    }
1183
1184    private static String whereWithId(String id, String selection) {
1185        StringBuilder sb = new StringBuilder(256);
1186        sb.append("_id=");
1187        sb.append(id);
1188        if (selection != null) {
1189            sb.append(" AND (");
1190            sb.append(selection);
1191            sb.append(')');
1192        }
1193        return sb.toString();
1194    }
1195
1196    /**
1197     * Combine a locally-generated selection with a user-provided selection
1198     *
1199     * This introduces risk that the local selection might insert incorrect chars
1200     * into the SQL, so use caution.
1201     *
1202     * @param where locally-generated selection, must not be null
1203     * @param selection user-provided selection, may be null
1204     * @return a single selection string
1205     */
1206    private static String whereWith(String where, String selection) {
1207        if (selection == null) {
1208            return where;
1209        }
1210        StringBuilder sb = new StringBuilder(where);
1211        sb.append(" AND (");
1212        sb.append(selection);
1213        sb.append(')');
1214
1215        return sb.toString();
1216    }
1217
1218    /**
1219     * Restore a HostAuth from a database, given its unique id
1220     * @param db the database
1221     * @param id the unique id (_id) of the row
1222     * @return a fully populated HostAuth or null if the row does not exist
1223     */
1224    private static HostAuth restoreHostAuth(SQLiteDatabase db, long id) {
1225        Cursor c = db.query(HostAuth.TABLE_NAME, HostAuth.CONTENT_PROJECTION,
1226                HostAuth.RECORD_ID + "=?", new String[] {Long.toString(id)}, null, null, null);
1227        try {
1228            if (c.moveToFirst()) {
1229                HostAuth hostAuth = new HostAuth();
1230                hostAuth.restore(c);
1231                return hostAuth;
1232            }
1233            return null;
1234        } finally {
1235            c.close();
1236        }
1237    }
1238
1239    /**
1240     * Copy the Account and HostAuth tables from one database to another
1241     * @param fromDatabase the source database
1242     * @param toDatabase the destination database
1243     * @return the number of accounts copied, or -1 if an error occurred
1244     */
1245    private static int copyAccountTables(SQLiteDatabase fromDatabase, SQLiteDatabase toDatabase) {
1246        if (fromDatabase == null || toDatabase == null) return -1;
1247
1248        // Lock both databases; for the "from" database, we don't want anyone changing it from
1249        // under us; for the "to" database, we want to make the operation atomic
1250        int copyCount = 0;
1251        fromDatabase.beginTransaction();
1252        try {
1253            toDatabase.beginTransaction();
1254            try {
1255                // Delete anything hanging around here
1256                toDatabase.delete(Account.TABLE_NAME, null, null);
1257                toDatabase.delete(HostAuth.TABLE_NAME, null, null);
1258
1259                // Get our account cursor
1260                Cursor c = fromDatabase.query(Account.TABLE_NAME, Account.CONTENT_PROJECTION,
1261                        null, null, null, null, null);
1262                if (c == null) return 0;
1263                LogUtils.d(TAG, "fromDatabase accounts: " + c.getCount());
1264                try {
1265                    // Loop through accounts, copying them and associated host auth's
1266                    while (c.moveToNext()) {
1267                        Account account = new Account();
1268                        account.restore(c);
1269
1270                        // Clear security sync key and sync key, as these were specific to the
1271                        // state of the account, and we've reset that...
1272                        // Clear policy key so that we can re-establish policies from the server
1273                        // TODO This is pretty EAS specific, but there's a lot of that around
1274                        account.mSecuritySyncKey = null;
1275                        account.mSyncKey = null;
1276                        account.mPolicyKey = 0;
1277
1278                        // Copy host auth's and update foreign keys
1279                        HostAuth hostAuth = restoreHostAuth(fromDatabase,
1280                                account.mHostAuthKeyRecv);
1281
1282                        // The account might have gone away, though very unlikely
1283                        if (hostAuth == null) continue;
1284                        account.mHostAuthKeyRecv = toDatabase.insert(HostAuth.TABLE_NAME, null,
1285                                hostAuth.toContentValues());
1286
1287                        // EAS accounts have no send HostAuth
1288                        if (account.mHostAuthKeySend > 0) {
1289                            hostAuth = restoreHostAuth(fromDatabase, account.mHostAuthKeySend);
1290                            // Belt and suspenders; I can't imagine that this is possible,
1291                            // since we checked the validity of the account above, and the
1292                            // database is now locked
1293                            if (hostAuth == null) continue;
1294                            account.mHostAuthKeySend = toDatabase.insert(
1295                                    HostAuth.TABLE_NAME, null, hostAuth.toContentValues());
1296                        }
1297
1298                        // Now, create the account in the "to" database
1299                        toDatabase.insert(Account.TABLE_NAME, null, account.toContentValues());
1300                        copyCount++;
1301                    }
1302                } finally {
1303                    c.close();
1304                }
1305
1306                // Say it's ok to commit
1307                toDatabase.setTransactionSuccessful();
1308            } finally {
1309                // STOPSHIP: Remove logging here and in at endTransaction() below
1310                LogUtils.d(TAG, "ending toDatabase transaction; copyCount = " + copyCount);
1311                toDatabase.endTransaction();
1312            }
1313        } catch (SQLiteException ex) {
1314            LogUtils.w(TAG, "Exception while copying account tables", ex);
1315            copyCount = -1;
1316        } finally {
1317            LogUtils.d(TAG, "ending fromDatabase transaction; copyCount = " + copyCount);
1318            fromDatabase.endTransaction();
1319        }
1320        return copyCount;
1321    }
1322
1323    private static SQLiteDatabase getBackupDatabase(Context context) {
1324        DBHelper.DatabaseHelper helper = new DBHelper.DatabaseHelper(context, BACKUP_DATABASE_NAME);
1325        return helper.getWritableDatabase();
1326    }
1327
1328    /**
1329     * Backup account data, returning the number of accounts backed up
1330     */
1331    private static int backupAccounts(Context context, SQLiteDatabase mainDatabase) {
1332        if (MailActivityEmail.DEBUG) {
1333            LogUtils.d(TAG, "backupAccounts...");
1334        }
1335        SQLiteDatabase backupDatabase = getBackupDatabase(context);
1336        try {
1337            int numBackedUp = copyAccountTables(mainDatabase, backupDatabase);
1338            if (numBackedUp < 0) {
1339                LogUtils.e(TAG, "Account backup failed!");
1340            } else if (MailActivityEmail.DEBUG) {
1341                LogUtils.d(TAG, "Backed up " + numBackedUp + " accounts...");
1342            }
1343            return numBackedUp;
1344        } finally {
1345            if (backupDatabase != null) {
1346                backupDatabase.close();
1347            }
1348        }
1349    }
1350
1351    /**
1352     * Restore account data, returning the number of accounts restored
1353     */
1354    private static int restoreAccounts(Context context, SQLiteDatabase mainDatabase) {
1355        if (MailActivityEmail.DEBUG) {
1356            LogUtils.d(TAG, "restoreAccounts...");
1357        }
1358        SQLiteDatabase backupDatabase = getBackupDatabase(context);
1359        try {
1360            int numRecovered = copyAccountTables(backupDatabase, mainDatabase);
1361            if (numRecovered > 0) {
1362                LogUtils.e(TAG, "Recovered " + numRecovered + " accounts!");
1363            } else if (numRecovered < 0) {
1364                LogUtils.e(TAG, "Account recovery failed?");
1365            } else if (MailActivityEmail.DEBUG) {
1366                LogUtils.d(TAG, "No accounts to restore...");
1367            }
1368            return numRecovered;
1369        } finally {
1370            if (backupDatabase != null) {
1371                backupDatabase.close();
1372            }
1373        }
1374    }
1375
1376    // select count(*) from (select count(*) as dupes from Mailbox where accountKey=?
1377    // group by serverId) where dupes > 1;
1378    private static final String ACCOUNT_INTEGRITY_SQL =
1379            "select count(*) from (select count(*) as dupes from " + Mailbox.TABLE_NAME +
1380            " where accountKey=? group by " + MailboxColumns.SERVER_ID + ") where dupes > 1";
1381
1382    @Override
1383    public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
1384        // Handle this special case the fastest possible way
1385        if (uri == INTEGRITY_CHECK_URI) {
1386            checkDatabases();
1387            return 0;
1388        } else if (uri == ACCOUNT_BACKUP_URI) {
1389            return backupAccounts(getContext(), getDatabase(getContext()));
1390        }
1391
1392        // Notify all existing cursors, except for ACCOUNT_RESET_NEW_COUNT(_ID)
1393        Uri notificationUri = EmailContent.CONTENT_URI;
1394
1395        int match = findMatch(uri, "update");
1396        Context context = getContext();
1397        ContentResolver resolver = context.getContentResolver();
1398        // See the comment at delete(), above
1399        SQLiteDatabase db = getDatabase(context);
1400        int table = match >> BASE_SHIFT;
1401        int result;
1402
1403        // We do NOT allow setting of unreadCount/messageCount via the provider
1404        // These columns are maintained via triggers
1405        if (match == MAILBOX_ID || match == MAILBOX) {
1406            values.remove(MailboxColumns.UNREAD_COUNT);
1407            values.remove(MailboxColumns.MESSAGE_COUNT);
1408        }
1409
1410        String tableName = TABLE_NAMES[table];
1411        String id = "0";
1412
1413        try {
1414            switch (match) {
1415                case ACCOUNT_PICK_TRASH_FOLDER:
1416                    return pickTrashFolder(uri);
1417                case ACCOUNT_PICK_SENT_FOLDER:
1418                    return pickSentFolder(uri);
1419                case UI_FOLDER:
1420                    return uiUpdateFolder(context, uri, values);
1421                case UI_RECENT_FOLDERS:
1422                    return uiUpdateRecentFolders(uri, values);
1423                case UI_DEFAULT_RECENT_FOLDERS:
1424                    return uiPopulateRecentFolders(uri);
1425                case UI_ATTACHMENT:
1426                    return uiUpdateAttachment(uri, values);
1427                case UI_MESSAGE:
1428                    return uiUpdateMessage(uri, values);
1429                case ACCOUNT_CHECK:
1430                    id = uri.getLastPathSegment();
1431                    // With any error, return 1 (a failure)
1432                    int res = 1;
1433                    Cursor ic = null;
1434                    try {
1435                        ic = db.rawQuery(ACCOUNT_INTEGRITY_SQL, new String[] {id});
1436                        if (ic.moveToFirst()) {
1437                            res = ic.getInt(0);
1438                        }
1439                    } finally {
1440                        if (ic != null) {
1441                            ic.close();
1442                        }
1443                    }
1444                    // Count of duplicated mailboxes
1445                    return res;
1446                case MESSAGE_SELECTION:
1447                    Cursor findCursor = db.query(tableName, Message.ID_COLUMN_PROJECTION, selection,
1448                            selectionArgs, null, null, null);
1449                    try {
1450                        if (findCursor.moveToFirst()) {
1451                            return update(ContentUris.withAppendedId(
1452                                    Message.CONTENT_URI,
1453                                    findCursor.getLong(Message.ID_COLUMNS_ID_COLUMN)),
1454                                    values, null, null);
1455                        } else {
1456                            return 0;
1457                        }
1458                    } finally {
1459                        findCursor.close();
1460                    }
1461                case SYNCED_MESSAGE_ID:
1462                case UPDATED_MESSAGE_ID:
1463                case MESSAGE_ID:
1464                case BODY_ID:
1465                case ATTACHMENT_ID:
1466                case MAILBOX_ID:
1467                case ACCOUNT_ID:
1468                case HOSTAUTH_ID:
1469                case QUICK_RESPONSE_ID:
1470                case POLICY_ID:
1471                    id = uri.getPathSegments().get(1);
1472                    try {
1473                        if (match == SYNCED_MESSAGE_ID) {
1474                            // For synced messages, first copy the old message to the updated table
1475                            // Note the insert or ignore semantics, guaranteeing that only the first
1476                            // update will be reflected in the updated message table; therefore this
1477                            // row will always have the "original" data
1478                            db.execSQL(UPDATED_MESSAGE_INSERT + id);
1479                        } else if (match == MESSAGE_ID) {
1480                            db.execSQL(UPDATED_MESSAGE_DELETE + id);
1481                        }
1482                        result = db.update(tableName, values, whereWithId(id, selection),
1483                                selectionArgs);
1484                    } catch (SQLiteException e) {
1485                        // Null out values (so they aren't cached) and re-throw
1486                        values = null;
1487                        throw e;
1488                    }
1489                    if (match == MESSAGE_ID || match == SYNCED_MESSAGE_ID) {
1490                        if (!uri.getBooleanQueryParameter(IS_UIPROVIDER, false)) {
1491                            notifyUIConversation(uri);
1492                        }
1493                    } else if (match == ATTACHMENT_ID) {
1494                        long attId = Integer.parseInt(id);
1495                        if (values.containsKey(Attachment.FLAGS)) {
1496                            int flags = values.getAsInteger(Attachment.FLAGS);
1497                            mAttachmentService.attachmentChanged(context, attId, flags);
1498                        }
1499                        // Notify UI if necessary; there are only two columns we can change that
1500                        // would be worth a notification
1501                        if (values.containsKey(AttachmentColumns.UI_STATE) ||
1502                                values.containsKey(AttachmentColumns.UI_DOWNLOADED_SIZE)) {
1503                            // Notify on individual attachment
1504                            notifyUI(UIPROVIDER_ATTACHMENT_NOTIFIER, id);
1505                            Attachment att = Attachment.restoreAttachmentWithId(context, attId);
1506                            if (att != null) {
1507                                // And on owning Message
1508                                notifyUI(UIPROVIDER_ATTACHMENTS_NOTIFIER, att.mMessageKey);
1509                            }
1510                        }
1511                    } else if (match == MAILBOX_ID && values.containsKey(Mailbox.UI_SYNC_STATUS)) {
1512                        // TODO: should this notify on keys other than sync status?
1513                        notifyUIFolder(id, null);
1514                    } else if (match == ACCOUNT_ID) {
1515                        updateAccountSyncInterval(Long.parseLong(id), values);
1516                        // Notify individual account and "all accounts"
1517                        notifyUI(UIPROVIDER_ACCOUNT_NOTIFIER, id);
1518                        resolver.notifyChange(UIPROVIDER_ALL_ACCOUNTS_NOTIFIER, null);
1519                    }
1520                    break;
1521                case BODY:
1522                case MESSAGE:
1523                case UPDATED_MESSAGE:
1524                case ATTACHMENT:
1525                case MAILBOX:
1526                case ACCOUNT:
1527                case HOSTAUTH:
1528                case POLICY:
1529                    result = db.update(tableName, values, selection, selectionArgs);
1530                    break;
1531
1532                case ACCOUNT_RESET_NEW_COUNT_ID:
1533                    id = uri.getPathSegments().get(1);
1534                    ContentValues newMessageCount = CONTENT_VALUES_RESET_NEW_MESSAGE_COUNT;
1535                    if (values != null) {
1536                        Long set = values.getAsLong(EmailContent.SET_COLUMN_NAME);
1537                        if (set != null) {
1538                            newMessageCount = new ContentValues();
1539                            newMessageCount.put(Account.NEW_MESSAGE_COUNT, set);
1540                        }
1541                    }
1542                    result = db.update(tableName, newMessageCount,
1543                            whereWithId(id, selection), selectionArgs);
1544                    notificationUri = Account.CONTENT_URI; // Only notify account cursors.
1545                    break;
1546                case ACCOUNT_RESET_NEW_COUNT:
1547                    result = db.update(tableName, CONTENT_VALUES_RESET_NEW_MESSAGE_COUNT,
1548                            selection, selectionArgs);
1549                    // Affects all accounts.  Just invalidate all account cache.
1550                    notificationUri = Account.CONTENT_URI; // Only notify account cursors.
1551                    break;
1552                default:
1553                    throw new IllegalArgumentException("Unknown URI " + uri);
1554            }
1555        } catch (SQLiteException e) {
1556            checkDatabases();
1557            throw e;
1558        }
1559
1560        // Notify all notifier cursors
1561        sendNotifierChange(getBaseNotificationUri(match), NOTIFICATION_OP_UPDATE, id);
1562
1563        resolver.notifyChange(notificationUri, null);
1564        return result;
1565    }
1566
1567    @Override
1568    public Bundle call(String method, String arg, Bundle extras) {
1569        LogUtils.d(TAG, "EmailProvider#call(%s, %s)", method, arg);
1570
1571        // First handle sync status callbacks.
1572        if (TextUtils.equals(method, SYNC_STATUS_CALLBACK_METHOD)) {
1573            final int syncStatusType = extras.getInt(EmailServiceStatus.SYNC_STATUS_TYPE);
1574            try {
1575                switch (syncStatusType) {
1576                    case EmailServiceStatus.SYNC_STATUS_TYPE_MAILBOX:
1577                            mServiceCallback.syncMailboxStatus(
1578                                    extras.getLong(EmailServiceStatus.SYNC_STATUS_ID),
1579                                    extras.getInt(EmailServiceStatus.SYNC_STATUS_CODE),
1580                                    extras.getInt(EmailServiceStatus.SYNC_STATUS_PROGRESS));
1581                        break;
1582                    case EmailServiceStatus.SYNC_STATUS_TYPE_SEND_MESSAGE:
1583                        mServiceCallback.sendMessageStatus(
1584                                extras.getLong(EmailServiceStatus.SYNC_STATUS_ID),
1585                                extras.getString(EmailServiceStatus.SYNC_STATUS_SUBJECT),
1586                                extras.getInt(EmailServiceStatus.SYNC_STATUS_CODE),
1587                                extras.getInt(EmailServiceStatus.SYNC_STATUS_PROGRESS));
1588                        break;
1589                    case EmailServiceStatus.SYNC_STATUS_TYPE_MAILBOX_LIST:
1590                        mServiceCallback.syncMailboxListStatus(
1591                                extras.getLong(EmailServiceStatus.SYNC_STATUS_ID),
1592                                extras.getInt(EmailServiceStatus.SYNC_STATUS_CODE),
1593                                extras.getInt(EmailServiceStatus.SYNC_STATUS_PROGRESS));
1594                        break;
1595                    default:
1596                        LogUtils.e(TAG, "Sync status received of unknown type %d", syncStatusType);
1597                        break;
1598                }
1599            } catch (RemoteException re) {
1600                // This can't actually happen but I have to pacify the compiler.
1601            }
1602            return null;
1603        }
1604
1605        // Handle send & save.
1606        final Uri accountUri = Uri.parse(arg);
1607        final long accountId = Long.parseLong(accountUri.getPathSegments().get(1));
1608
1609        Uri messageUri = null;
1610        if (TextUtils.equals(method, UIProvider.AccountCallMethods.SEND_MESSAGE)) {
1611            messageUri = uiSendDraftMessage(accountId, extras);
1612        } else if (TextUtils.equals(method, UIProvider.AccountCallMethods.SAVE_MESSAGE)) {
1613            messageUri = uiSaveDraftMessage(accountId, extras);
1614        }
1615
1616        final Bundle result;
1617        if (messageUri != null) {
1618            result = new Bundle(1);
1619            result.putParcelable(UIProvider.MessageColumns.URI, messageUri);
1620        } else {
1621            result = null;
1622        }
1623
1624        return result;
1625    }
1626
1627    @Override
1628    public ParcelFileDescriptor openFile(Uri uri, String mode) throws FileNotFoundException {
1629        if (LogUtils.isLoggable(TAG, LogUtils.DEBUG)) {
1630            LogUtils.d(TAG, "EmailProvider.openFile: %s", LogUtils.contentUriToString(TAG, uri));
1631        }
1632
1633        final int match = findMatch(uri, "openFile");
1634        switch (match) {
1635            case ATTACHMENTS_CACHED_FILE_ACCESS:
1636                // Parse the cache file path out from the uri
1637                final String cachedFilePath =
1638                        uri.getQueryParameter(EmailContent.Attachment.CACHED_FILE_QUERY_PARAM);
1639
1640                if (cachedFilePath != null) {
1641                    // clearCallingIdentity means that the download manager will
1642                    // check our permissions rather than the permissions of whatever
1643                    // code is calling us.
1644                    long binderToken = Binder.clearCallingIdentity();
1645                    try {
1646                        LogUtils.d(TAG, "Opening attachment %s", cachedFilePath);
1647                        return ParcelFileDescriptor.open(
1648                                new File(cachedFilePath), ParcelFileDescriptor.MODE_READ_ONLY);
1649                    } finally {
1650                        Binder.restoreCallingIdentity(binderToken);
1651                    }
1652                }
1653                break;
1654        }
1655
1656        throw new FileNotFoundException("unable to open file");
1657    }
1658
1659
1660    /**
1661     * Returns the base notification URI for the given content type.
1662     *
1663     * @param match The type of content that was modified.
1664     */
1665    private static Uri getBaseNotificationUri(int match) {
1666        Uri baseUri = null;
1667        switch (match) {
1668            case MESSAGE:
1669            case MESSAGE_ID:
1670            case SYNCED_MESSAGE_ID:
1671                baseUri = Message.NOTIFIER_URI;
1672                break;
1673            case ACCOUNT:
1674            case ACCOUNT_ID:
1675                baseUri = Account.NOTIFIER_URI;
1676                break;
1677        }
1678        return baseUri;
1679    }
1680
1681    /**
1682     * Sends a change notification to any cursors observers of the given base URI. The final
1683     * notification URI is dynamically built to contain the specified information. It will be
1684     * of the format <<baseURI>>/<<op>>/<<id>>; where <<op>> and <<id>> are optional depending
1685     * upon the given values.
1686     * NOTE: If <<op>> is specified, notifications for <<baseURI>>/<<id>> will NOT be invoked.
1687     * If this is necessary, it can be added. However, due to the implementation of
1688     * {@link ContentObserver}, observers of <<baseURI>> will receive multiple notifications.
1689     *
1690     * @param baseUri The base URI to send notifications to. Must be able to take appended IDs.
1691     * @param op Optional operation to be appended to the URI.
1692     * @param id If a positive value, the ID to append to the base URI. Otherwise, no ID will be
1693     *           appended to the base URI.
1694     */
1695    private void sendNotifierChange(Uri baseUri, String op, String id) {
1696        if (baseUri == null) return;
1697
1698        final ContentResolver resolver = getContext().getContentResolver();
1699
1700        // Append the operation, if specified
1701        if (op != null) {
1702            baseUri = baseUri.buildUpon().appendEncodedPath(op).build();
1703        }
1704
1705        long longId = 0L;
1706        try {
1707            longId = Long.valueOf(id);
1708        } catch (NumberFormatException ignore) {}
1709        if (longId > 0) {
1710            resolver.notifyChange(ContentUris.withAppendedId(baseUri, longId), null);
1711        } else {
1712            resolver.notifyChange(baseUri, null);
1713        }
1714
1715        // We want to send the message list changed notification if baseUri is Message.NOTIFIER_URI.
1716        if (baseUri.equals(Message.NOTIFIER_URI)) {
1717            sendMessageListDataChangedNotification();
1718        }
1719    }
1720
1721    private void sendMessageListDataChangedNotification() {
1722        final Context context = getContext();
1723        final Intent intent = new Intent(ACTION_NOTIFY_MESSAGE_LIST_DATASET_CHANGED);
1724        // Ideally this intent would contain information about which account changed, to limit the
1725        // updates to that particular account.  Unfortunately, that information is not available in
1726        // sendNotifierChange().
1727        context.sendBroadcast(intent);
1728    }
1729
1730    @Override
1731    public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations)
1732            throws OperationApplicationException {
1733        Context context = getContext();
1734        SQLiteDatabase db = getDatabase(context);
1735        db.beginTransaction();
1736        try {
1737            ContentProviderResult[] results = super.applyBatch(operations);
1738            db.setTransactionSuccessful();
1739            return results;
1740        } finally {
1741            db.endTransaction();
1742        }
1743    }
1744
1745    public static interface AttachmentService {
1746        /**
1747         * Notify the service that an attachment has changed.
1748         */
1749        void attachmentChanged(Context context, long id, int flags);
1750    }
1751
1752    private final AttachmentService DEFAULT_ATTACHMENT_SERVICE = new AttachmentService() {
1753        @Override
1754        public void attachmentChanged(Context context, long id, int flags) {
1755            // The default implementation delegates to the real service.
1756            AttachmentDownloadService.attachmentChanged(context, id, flags);
1757        }
1758    };
1759    private final AttachmentService mAttachmentService = DEFAULT_ATTACHMENT_SERVICE;
1760
1761    private Cursor notificationQuery(final Uri uri) {
1762        final SQLiteDatabase db = getDatabase(getContext());
1763        final String accountId = uri.getLastPathSegment();
1764
1765        final StringBuilder sqlBuilder = new StringBuilder();
1766        sqlBuilder.append("SELECT ");
1767        sqlBuilder.append(MessageColumns.MAILBOX_KEY).append(", ");
1768        sqlBuilder.append("SUM(CASE ")
1769                .append(MessageColumns.FLAG_READ).append(" WHEN 0 THEN 1 ELSE 0 END), ");
1770        sqlBuilder.append("SUM(CASE ")
1771                .append(MessageColumns.FLAG_SEEN).append(" WHEN 0 THEN 1 ELSE 0 END)\n");
1772        sqlBuilder.append("FROM ");
1773        sqlBuilder.append(Message.TABLE_NAME).append('\n');
1774        sqlBuilder.append("WHERE ");
1775        sqlBuilder.append(MessageColumns.ACCOUNT_KEY).append(" = ?\n");
1776        sqlBuilder.append("GROUP BY ");
1777        sqlBuilder.append(MessageColumns.MAILBOX_KEY);
1778
1779        final String sql = sqlBuilder.toString();
1780
1781        final String[] selectionArgs = {accountId};
1782
1783        return db.rawQuery(sql, selectionArgs);
1784    }
1785
1786    public Cursor mostRecentMessageQuery(Uri uri) {
1787        SQLiteDatabase db = getDatabase(getContext());
1788        String mailboxId = uri.getLastPathSegment();
1789        return db.rawQuery("select max(_id) from Message where mailboxKey=?",
1790                new String[] {mailboxId});
1791    }
1792
1793    private Cursor getMailboxMessageCount(Uri uri) {
1794        SQLiteDatabase db = getDatabase(getContext());
1795        String mailboxId = uri.getLastPathSegment();
1796        return db.rawQuery("select count(*) from Message where mailboxKey=?",
1797                new String[] {mailboxId});
1798    }
1799
1800    /**
1801     * Support for UnifiedEmail below
1802     */
1803
1804    private static final String NOT_A_DRAFT_STRING =
1805        Integer.toString(UIProvider.DraftType.NOT_A_DRAFT);
1806
1807    private static final String CONVERSATION_FLAGS =
1808            "CASE WHEN (" + MessageColumns.FLAGS + "&" + Message.FLAG_INCOMING_MEETING_INVITE +
1809                ") !=0 THEN " + UIProvider.ConversationFlags.CALENDAR_INVITE +
1810                " ELSE 0 END + " +
1811            "CASE WHEN (" + MessageColumns.FLAGS + "&" + Message.FLAG_FORWARDED +
1812                ") !=0 THEN " + UIProvider.ConversationFlags.FORWARDED +
1813                " ELSE 0 END + " +
1814             "CASE WHEN (" + MessageColumns.FLAGS + "&" + Message.FLAG_REPLIED_TO +
1815                ") !=0 THEN " + UIProvider.ConversationFlags.REPLIED +
1816                " ELSE 0 END";
1817
1818    /**
1819     * Array of pre-defined account colors (legacy colors from old email app)
1820     */
1821    private static final int[] ACCOUNT_COLORS = new int[] {
1822        0xff71aea7, 0xff621919, 0xff18462f, 0xffbf8e52, 0xff001f79,
1823        0xffa8afc2, 0xff6b64c4, 0xff738359, 0xff9d50a4
1824    };
1825
1826    private static final String CONVERSATION_COLOR =
1827            "@CASE (" + MessageColumns.ACCOUNT_KEY + " - 1) % " + ACCOUNT_COLORS.length +
1828                    " WHEN 0 THEN " + ACCOUNT_COLORS[0] +
1829                    " WHEN 1 THEN " + ACCOUNT_COLORS[1] +
1830                    " WHEN 2 THEN " + ACCOUNT_COLORS[2] +
1831                    " WHEN 3 THEN " + ACCOUNT_COLORS[3] +
1832                    " WHEN 4 THEN " + ACCOUNT_COLORS[4] +
1833                    " WHEN 5 THEN " + ACCOUNT_COLORS[5] +
1834                    " WHEN 6 THEN " + ACCOUNT_COLORS[6] +
1835                    " WHEN 7 THEN " + ACCOUNT_COLORS[7] +
1836                    " WHEN 8 THEN " + ACCOUNT_COLORS[8] +
1837            " END";
1838
1839    private static final String ACCOUNT_COLOR =
1840            "@CASE (" + AccountColumns.ID + " - 1) % " + ACCOUNT_COLORS.length +
1841                    " WHEN 0 THEN " + ACCOUNT_COLORS[0] +
1842                    " WHEN 1 THEN " + ACCOUNT_COLORS[1] +
1843                    " WHEN 2 THEN " + ACCOUNT_COLORS[2] +
1844                    " WHEN 3 THEN " + ACCOUNT_COLORS[3] +
1845                    " WHEN 4 THEN " + ACCOUNT_COLORS[4] +
1846                    " WHEN 5 THEN " + ACCOUNT_COLORS[5] +
1847                    " WHEN 6 THEN " + ACCOUNT_COLORS[6] +
1848                    " WHEN 7 THEN " + ACCOUNT_COLORS[7] +
1849                    " WHEN 8 THEN " + ACCOUNT_COLORS[8] +
1850            " END";
1851    /**
1852     * Mapping of UIProvider columns to EmailProvider columns for the message list (called the
1853     * conversation list in UnifiedEmail)
1854     */
1855    private static ProjectionMap getMessageListMap() {
1856        if (sMessageListMap == null) {
1857            sMessageListMap = ProjectionMap.builder()
1858                .add(BaseColumns._ID, MessageColumns.ID)
1859                .add(UIProvider.ConversationColumns.URI, uriWithId("uimessage"))
1860                .add(UIProvider.ConversationColumns.MESSAGE_LIST_URI, uriWithId("uimessage"))
1861                .add(UIProvider.ConversationColumns.SUBJECT, MessageColumns.SUBJECT)
1862                .add(UIProvider.ConversationColumns.SNIPPET, MessageColumns.SNIPPET)
1863                .add(UIProvider.ConversationColumns.CONVERSATION_INFO, null)
1864                .add(UIProvider.ConversationColumns.DATE_RECEIVED_MS, MessageColumns.TIMESTAMP)
1865                .add(UIProvider.ConversationColumns.HAS_ATTACHMENTS, MessageColumns.FLAG_ATTACHMENT)
1866                .add(UIProvider.ConversationColumns.NUM_MESSAGES, "1")
1867                .add(UIProvider.ConversationColumns.NUM_DRAFTS, "0")
1868                .add(UIProvider.ConversationColumns.SENDING_STATE,
1869                        Integer.toString(ConversationSendingState.OTHER))
1870                .add(UIProvider.ConversationColumns.PRIORITY,
1871                        Integer.toString(ConversationPriority.LOW))
1872                .add(UIProvider.ConversationColumns.READ, MessageColumns.FLAG_READ)
1873                .add(UIProvider.ConversationColumns.SEEN, MessageColumns.FLAG_SEEN)
1874                .add(UIProvider.ConversationColumns.STARRED, MessageColumns.FLAG_FAVORITE)
1875                .add(UIProvider.ConversationColumns.FLAGS, CONVERSATION_FLAGS)
1876                .add(UIProvider.ConversationColumns.ACCOUNT_URI,
1877                        uriWithColumn("uiaccount", MessageColumns.ACCOUNT_KEY))
1878                .add(UIProvider.ConversationColumns.SENDER_INFO, MessageColumns.FROM_LIST)
1879                .build();
1880        }
1881        return sMessageListMap;
1882    }
1883    private static ProjectionMap sMessageListMap;
1884
1885    /**
1886     * Generate UIProvider draft type; note the test for "reply all" must come before "reply"
1887     */
1888    private static final String MESSAGE_DRAFT_TYPE =
1889        "CASE WHEN (" + MessageColumns.FLAGS + "&" + Message.FLAG_TYPE_ORIGINAL +
1890            ") !=0 THEN " + UIProvider.DraftType.COMPOSE +
1891        " WHEN (" + MessageColumns.FLAGS + "&" + (1<<20) +
1892            ") !=0 THEN " + UIProvider.DraftType.REPLY_ALL +
1893        " WHEN (" + MessageColumns.FLAGS + "&" + Message.FLAG_TYPE_REPLY +
1894            ") !=0 THEN " + UIProvider.DraftType.REPLY +
1895        " WHEN (" + MessageColumns.FLAGS + "&" + Message.FLAG_TYPE_FORWARD +
1896            ") !=0 THEN " + UIProvider.DraftType.FORWARD +
1897            " ELSE " + UIProvider.DraftType.NOT_A_DRAFT + " END";
1898
1899    private static final String MESSAGE_FLAGS =
1900            "CASE WHEN (" + MessageColumns.FLAGS + "&" + Message.FLAG_INCOMING_MEETING_INVITE +
1901            ") !=0 THEN " + UIProvider.MessageFlags.CALENDAR_INVITE +
1902            " ELSE 0 END";
1903
1904    /**
1905     * Mapping of UIProvider columns to EmailProvider columns for a detailed message view in
1906     * UnifiedEmail
1907     */
1908    private static ProjectionMap getMessageViewMap() {
1909        if (sMessageViewMap == null) {
1910            sMessageViewMap = ProjectionMap.builder()
1911                .add(BaseColumns._ID, Message.TABLE_NAME + "." + EmailContent.MessageColumns.ID)
1912                .add(UIProvider.MessageColumns.SERVER_ID, SyncColumns.SERVER_ID)
1913                .add(UIProvider.MessageColumns.URI, uriWithFQId("uimessage", Message.TABLE_NAME))
1914                .add(UIProvider.MessageColumns.CONVERSATION_ID,
1915                        uriWithFQId("uimessage", Message.TABLE_NAME))
1916                .add(UIProvider.MessageColumns.SUBJECT, EmailContent.MessageColumns.SUBJECT)
1917                .add(UIProvider.MessageColumns.SNIPPET, EmailContent.MessageColumns.SNIPPET)
1918                .add(UIProvider.MessageColumns.FROM, EmailContent.MessageColumns.FROM_LIST)
1919                .add(UIProvider.MessageColumns.TO, EmailContent.MessageColumns.TO_LIST)
1920                .add(UIProvider.MessageColumns.CC, EmailContent.MessageColumns.CC_LIST)
1921                .add(UIProvider.MessageColumns.BCC, EmailContent.MessageColumns.BCC_LIST)
1922                .add(UIProvider.MessageColumns.REPLY_TO, EmailContent.MessageColumns.REPLY_TO_LIST)
1923                .add(UIProvider.MessageColumns.DATE_RECEIVED_MS,
1924                        EmailContent.MessageColumns.TIMESTAMP)
1925                .add(UIProvider.MessageColumns.BODY_HTML, Body.HTML_CONTENT)
1926                .add(UIProvider.MessageColumns.BODY_TEXT, Body.TEXT_CONTENT)
1927                .add(UIProvider.MessageColumns.REF_MESSAGE_ID, "0")
1928                .add(UIProvider.MessageColumns.DRAFT_TYPE, NOT_A_DRAFT_STRING)
1929                .add(UIProvider.MessageColumns.APPEND_REF_MESSAGE_CONTENT, "0")
1930                .add(UIProvider.MessageColumns.HAS_ATTACHMENTS,
1931                        EmailContent.MessageColumns.FLAG_ATTACHMENT)
1932                .add(UIProvider.MessageColumns.ATTACHMENT_LIST_URI,
1933                        uriWithFQId("uiattachments", Message.TABLE_NAME))
1934                .add(UIProvider.MessageColumns.MESSAGE_FLAGS, MESSAGE_FLAGS)
1935                .add(UIProvider.MessageColumns.DRAFT_TYPE, MESSAGE_DRAFT_TYPE)
1936                .add(UIProvider.MessageColumns.MESSAGE_ACCOUNT_URI,
1937                        uriWithColumn("account", MessageColumns.ACCOUNT_KEY))
1938                .add(UIProvider.MessageColumns.STARRED, EmailContent.MessageColumns.FLAG_FAVORITE)
1939                .add(UIProvider.MessageColumns.READ, EmailContent.MessageColumns.FLAG_READ)
1940                .add(UIProvider.MessageColumns.SEEN, EmailContent.MessageColumns.FLAG_SEEN)
1941                .add(UIProvider.MessageColumns.SPAM_WARNING_STRING, null)
1942                .add(UIProvider.MessageColumns.SPAM_WARNING_LEVEL,
1943                        Integer.toString(UIProvider.SpamWarningLevel.NO_WARNING))
1944                .add(UIProvider.MessageColumns.SPAM_WARNING_LINK_TYPE,
1945                        Integer.toString(UIProvider.SpamWarningLinkType.NO_LINK))
1946                .add(UIProvider.MessageColumns.VIA_DOMAIN, null)
1947                .build();
1948        }
1949        return sMessageViewMap;
1950    }
1951    private static ProjectionMap sMessageViewMap;
1952
1953    /**
1954     * Generate UIProvider folder capabilities from mailbox flags
1955     */
1956    private static final String FOLDER_CAPABILITIES =
1957        "CASE WHEN (" + MailboxColumns.FLAGS + "&" + Mailbox.FLAG_ACCEPTS_MOVED_MAIL +
1958            ") !=0 THEN " + UIProvider.FolderCapabilities.CAN_ACCEPT_MOVED_MESSAGES +
1959            " ELSE 0 END";
1960
1961    /**
1962     * Convert EmailProvider type to UIProvider type
1963     */
1964    private static final String FOLDER_TYPE = "CASE " + MailboxColumns.TYPE
1965            + " WHEN " + Mailbox.TYPE_INBOX   + " THEN " + UIProvider.FolderType.INBOX
1966            + " WHEN " + Mailbox.TYPE_DRAFTS  + " THEN " + UIProvider.FolderType.DRAFT
1967            + " WHEN " + Mailbox.TYPE_OUTBOX  + " THEN " + UIProvider.FolderType.OUTBOX
1968            + " WHEN " + Mailbox.TYPE_SENT    + " THEN " + UIProvider.FolderType.SENT
1969            + " WHEN " + Mailbox.TYPE_TRASH   + " THEN " + UIProvider.FolderType.TRASH
1970            + " WHEN " + Mailbox.TYPE_JUNK    + " THEN " + UIProvider.FolderType.SPAM
1971            + " WHEN " + Mailbox.TYPE_STARRED + " THEN " + UIProvider.FolderType.STARRED
1972            + " ELSE " + UIProvider.FolderType.DEFAULT + " END";
1973
1974    private static final String FOLDER_ICON = "CASE " + MailboxColumns.TYPE
1975            + " WHEN " + Mailbox.TYPE_INBOX   + " THEN " + R.drawable.ic_folder_inbox
1976            + " WHEN " + Mailbox.TYPE_DRAFTS  + " THEN " + R.drawable.ic_folder_drafts
1977            + " WHEN " + Mailbox.TYPE_OUTBOX  + " THEN " + R.drawable.ic_folder_outbox
1978            + " WHEN " + Mailbox.TYPE_SENT    + " THEN " + R.drawable.ic_folder_sent
1979            + " WHEN " + Mailbox.TYPE_TRASH   + " THEN " + R.drawable.ic_folder_trash
1980            + " WHEN " + Mailbox.TYPE_STARRED + " THEN " + R.drawable.ic_folder_star
1981            + " ELSE -1 END";
1982
1983    private static ProjectionMap getFolderListMap() {
1984        if (sFolderListMap == null) {
1985            sFolderListMap = ProjectionMap.builder()
1986                .add(BaseColumns._ID, MailboxColumns.ID)
1987                .add(UIProvider.FolderColumns.PERSISTENT_ID, MailboxColumns.SERVER_ID)
1988                .add(UIProvider.FolderColumns.URI, uriWithId("uifolder"))
1989                .add(UIProvider.FolderColumns.NAME, "displayName")
1990                .add(UIProvider.FolderColumns.HAS_CHILDREN,
1991                        MailboxColumns.FLAGS + "&" + Mailbox.FLAG_HAS_CHILDREN)
1992                .add(UIProvider.FolderColumns.CAPABILITIES, FOLDER_CAPABILITIES)
1993                .add(UIProvider.FolderColumns.SYNC_WINDOW, "3")
1994                .add(UIProvider.FolderColumns.CONVERSATION_LIST_URI, uriWithId("uimessages"))
1995                .add(UIProvider.FolderColumns.CHILD_FOLDERS_LIST_URI, uriWithId("uisubfolders"))
1996                .add(UIProvider.FolderColumns.UNREAD_COUNT, MailboxColumns.UNREAD_COUNT)
1997                .add(UIProvider.FolderColumns.TOTAL_COUNT, MailboxColumns.TOTAL_COUNT)
1998                .add(UIProvider.FolderColumns.REFRESH_URI, uriWithId(QUERY_UIREFRESH))
1999                .add(UIProvider.FolderColumns.SYNC_STATUS, MailboxColumns.UI_SYNC_STATUS)
2000                .add(UIProvider.FolderColumns.LAST_SYNC_RESULT, MailboxColumns.UI_LAST_SYNC_RESULT)
2001                .add(UIProvider.FolderColumns.TYPE, FOLDER_TYPE)
2002                .add(UIProvider.FolderColumns.ICON_RES_ID, FOLDER_ICON)
2003                .add(UIProvider.FolderColumns.HIERARCHICAL_DESC, MailboxColumns.HIERARCHICAL_NAME)
2004                .build();
2005        }
2006        return sFolderListMap;
2007    }
2008    private static ProjectionMap sFolderListMap;
2009
2010    /**
2011     * Constructs the map of default entries for accounts. These values can be overridden in
2012     * {@link #genQueryAccount(String[], String)}.
2013     */
2014    private static ProjectionMap getAccountListMap(Context context) {
2015        if (sAccountListMap == null) {
2016            final MailPrefs mailPrefs = MailPrefs.get(context);
2017
2018            final ProjectionMap.Builder builder = ProjectionMap.builder()
2019                    .add(BaseColumns._ID, AccountColumns.ID)
2020                    .add(UIProvider.AccountColumns.FOLDER_LIST_URI, uriWithId("uifolders"))
2021                    .add(UIProvider.AccountColumns.FULL_FOLDER_LIST_URI, uriWithId("uiallfolders"))
2022                    .add(UIProvider.AccountColumns.NAME, AccountColumns.DISPLAY_NAME)
2023                    .add(UIProvider.AccountColumns.UNDO_URI,
2024                            ("'content://" + EmailContent.AUTHORITY + "/uiundo'"))
2025                    .add(UIProvider.AccountColumns.URI, uriWithId("uiaccount"))
2026                    .add(UIProvider.AccountColumns.SEARCH_URI, uriWithId("uisearch"))
2027                            // TODO: Is provider version used?
2028                    .add(UIProvider.AccountColumns.PROVIDER_VERSION, "1")
2029                    .add(UIProvider.AccountColumns.SYNC_STATUS, "0")
2030                    .add(UIProvider.AccountColumns.RECENT_FOLDER_LIST_URI,
2031                            uriWithId("uirecentfolders"))
2032                    .add(UIProvider.AccountColumns.DEFAULT_RECENT_FOLDER_LIST_URI,
2033                            uriWithId("uidefaultrecentfolders"))
2034                    .add(UIProvider.AccountColumns.SettingsColumns.SIGNATURE,
2035                            AccountColumns.SIGNATURE)
2036                    .add(UIProvider.AccountColumns.SettingsColumns.SNAP_HEADERS,
2037                            Integer.toString(UIProvider.SnapHeaderValue.ALWAYS))
2038                    .add(UIProvider.AccountColumns.SettingsColumns.REPLY_BEHAVIOR,
2039                            Integer.toString(mailPrefs.getDefaultReplyAll()
2040                                    ? UIProvider.DefaultReplyBehavior.REPLY_ALL
2041                                    : UIProvider.DefaultReplyBehavior.REPLY))
2042                    .add(UIProvider.AccountColumns.SettingsColumns.CONFIRM_ARCHIVE, "0")
2043                    .add(UIProvider.AccountColumns.SettingsColumns.CONVERSATION_VIEW_MODE,
2044                            Integer.toString(UIProvider.ConversationViewMode.UNDEFINED))
2045                    .add(UIProvider.AccountColumns.SettingsColumns.VEILED_ADDRESS_PATTERN, null);
2046
2047            final String feedbackUri = context.getString(R.string.email_feedback_uri);
2048            if (!TextUtils.isEmpty(feedbackUri)) {
2049                builder.add(UIProvider.AccountColumns.SEND_FEEDBACK_INTENT_URI, feedbackUri);
2050            }
2051
2052            sAccountListMap = builder.build();
2053        }
2054        return sAccountListMap;
2055    }
2056    private static ProjectionMap sAccountListMap;
2057
2058    /**
2059     * The "ORDER BY" clause for top level folders
2060     */
2061    private static final String MAILBOX_ORDER_BY = "CASE " + MailboxColumns.TYPE
2062        + " WHEN " + Mailbox.TYPE_INBOX   + " THEN 0"
2063        + " WHEN " + Mailbox.TYPE_DRAFTS  + " THEN 1"
2064        + " WHEN " + Mailbox.TYPE_OUTBOX  + " THEN 2"
2065        + " WHEN " + Mailbox.TYPE_SENT    + " THEN 3"
2066        + " WHEN " + Mailbox.TYPE_TRASH   + " THEN 4"
2067        + " WHEN " + Mailbox.TYPE_JUNK    + " THEN 5"
2068        // Other mailboxes (i.e. of Mailbox.TYPE_MAIL) are shown in alphabetical order.
2069        + " ELSE 10 END"
2070        + " ," + MailboxColumns.DISPLAY_NAME + " COLLATE LOCALIZED ASC";
2071
2072    /**
2073     * Mapping of UIProvider columns to EmailProvider columns for a message's attachments
2074     */
2075    private static ProjectionMap getAttachmentMap() {
2076        if (sAttachmentMap == null) {
2077            sAttachmentMap = ProjectionMap.builder()
2078                .add(UIProvider.AttachmentColumns.NAME, AttachmentColumns.FILENAME)
2079                .add(UIProvider.AttachmentColumns.SIZE, AttachmentColumns.SIZE)
2080                .add(UIProvider.AttachmentColumns.URI, uriWithId("uiattachment"))
2081                .add(UIProvider.AttachmentColumns.CONTENT_TYPE, AttachmentColumns.MIME_TYPE)
2082                .add(UIProvider.AttachmentColumns.STATE, AttachmentColumns.UI_STATE)
2083                .add(UIProvider.AttachmentColumns.DESTINATION, AttachmentColumns.UI_DESTINATION)
2084                .add(UIProvider.AttachmentColumns.DOWNLOADED_SIZE,
2085                        AttachmentColumns.UI_DOWNLOADED_SIZE)
2086                .add(UIProvider.AttachmentColumns.CONTENT_URI, AttachmentColumns.CONTENT_URI)
2087                .build();
2088        }
2089        return sAttachmentMap;
2090    }
2091    private static ProjectionMap sAttachmentMap;
2092
2093    /**
2094     * Generate the SELECT clause using a specified mapping and the original UI projection
2095     * @param map the ProjectionMap to use for this projection
2096     * @param projection the projection as sent by UnifiedEmail
2097     * @return a StringBuilder containing the SELECT expression for a SQLite query
2098     */
2099    private static StringBuilder genSelect(ProjectionMap map, String[] projection) {
2100        return genSelect(map, projection, EMPTY_CONTENT_VALUES);
2101    }
2102
2103    private static StringBuilder genSelect(ProjectionMap map, String[] projection,
2104            ContentValues values) {
2105        StringBuilder sb = new StringBuilder("SELECT ");
2106        boolean first = true;
2107        for (String column: projection) {
2108            if (first) {
2109                first = false;
2110            } else {
2111                sb.append(',');
2112            }
2113            String val = null;
2114            // First look at values; this is an override of default behavior
2115            if (values.containsKey(column)) {
2116                String value = values.getAsString(column);
2117                if (value == null) {
2118                    val = "NULL AS " + column;
2119                } else if (value.startsWith("@")) {
2120                    val = value.substring(1) + " AS " + column;
2121                } else {
2122                    val = "'" + value + "' AS " + column;
2123                }
2124            } else {
2125                // Now, get the standard value for the column from our projection map
2126                val = map.get(column);
2127                // If we don't have the column, return "NULL AS <column>", and warn
2128                if (val == null) {
2129                    val = "NULL AS " + column;
2130                }
2131            }
2132            sb.append(val);
2133        }
2134        return sb;
2135    }
2136
2137    /**
2138     * Convenience method to create a Uri string given the "type" of query; we append the type
2139     * of the query and the id column name (_id)
2140     *
2141     * @param type the "type" of the query, as defined by our UriMatcher definitions
2142     * @return a Uri string
2143     */
2144    private static String uriWithId(String type) {
2145        return uriWithColumn(type, EmailContent.RECORD_ID);
2146    }
2147
2148    /**
2149     * Convenience method to create a Uri string given the "type" of query; we append the type
2150     * of the query and the passed in column name
2151     *
2152     * @param type the "type" of the query, as defined by our UriMatcher definitions
2153     * @param columnName the column in the table being queried
2154     * @return a Uri string
2155     */
2156    private static String uriWithColumn(String type, String columnName) {
2157        return "'content://" + EmailContent.AUTHORITY + "/" + type + "/' || " + columnName;
2158    }
2159
2160    /**
2161     * Convenience method to create a Uri string given the "type" of query and the table name to
2162     * which it applies; we append the type of the query and the fully qualified (FQ) id column
2163     * (i.e. including the table name); we need this for join queries where _id would otherwise
2164     * be ambiguous
2165     *
2166     * @param type the "type" of the query, as defined by our UriMatcher definitions
2167     * @param tableName the name of the table whose _id is referred to
2168     * @return a Uri string
2169     */
2170    private static String uriWithFQId(String type, String tableName) {
2171        return "'content://" + EmailContent.AUTHORITY + "/" + type + "/' || " + tableName + "._id";
2172    }
2173
2174    // Regex that matches start of img tag. '<(?i)img\s+'.
2175    private static final Pattern IMG_TAG_START_REGEX = Pattern.compile("<(?i)img\\s+");
2176
2177    /**
2178     * Class that holds the sqlite query and the attachment (JSON) value (which might be null)
2179     */
2180    private static class MessageQuery {
2181        final String query;
2182        final String attachmentJson;
2183
2184        MessageQuery(String _query, String _attachmentJson) {
2185            query = _query;
2186            attachmentJson = _attachmentJson;
2187        }
2188    }
2189
2190    /**
2191     * Generate the "view message" SQLite query, given a projection from UnifiedEmail
2192     *
2193     * @param uiProjection as passed from UnifiedEmail
2194     * @return the SQLite query to be executed on the EmailProvider database
2195     */
2196    private MessageQuery genQueryViewMessage(String[] uiProjection, String id) {
2197        Context context = getContext();
2198        long messageId = Long.parseLong(id);
2199        Message msg = Message.restoreMessageWithId(context, messageId);
2200        ContentValues values = new ContentValues();
2201        String attachmentJson = null;
2202        if (msg != null) {
2203            Body body = Body.restoreBodyWithMessageId(context, messageId);
2204            if (body != null) {
2205                if (body.mHtmlContent != null) {
2206                    if (IMG_TAG_START_REGEX.matcher(body.mHtmlContent).find()) {
2207                        values.put(UIProvider.MessageColumns.EMBEDS_EXTERNAL_RESOURCES, 1);
2208                    }
2209                }
2210            }
2211            Address[] fromList = Address.unpack(msg.mFrom);
2212            int autoShowImages = 0;
2213            Preferences prefs = Preferences.getPreferences(context);
2214            for (Address sender : fromList) {
2215                String email = sender.getAddress();
2216                if (prefs.shouldShowImagesFor(email)) {
2217                    autoShowImages = 1;
2218                    break;
2219                }
2220            }
2221            values.put(UIProvider.MessageColumns.ALWAYS_SHOW_IMAGES, autoShowImages);
2222            // Add attachments...
2223            Attachment[] atts = Attachment.restoreAttachmentsWithMessageId(context, messageId);
2224            if (atts.length > 0) {
2225                ArrayList<com.android.mail.providers.Attachment> uiAtts =
2226                        new ArrayList<com.android.mail.providers.Attachment>();
2227                for (Attachment att : atts) {
2228                    if (att.mContentId != null && att.getContentUri() != null) {
2229                        continue;
2230                    }
2231                    com.android.mail.providers.Attachment uiAtt =
2232                            new com.android.mail.providers.Attachment();
2233                    uiAtt.setName(att.mFileName);
2234                    uiAtt.setContentType(att.mMimeType);
2235                    uiAtt.size = (int) att.mSize;
2236                    uiAtt.uri = uiUri("uiattachment", att.mId);
2237                    uiAtts.add(uiAtt);
2238                }
2239                values.put(UIProvider.MessageColumns.ATTACHMENTS, "@?"); // @ for literal
2240                attachmentJson = com.android.mail.providers.Attachment.toJSONArray(uiAtts);
2241            }
2242            if (msg.mDraftInfo != 0) {
2243                values.put(UIProvider.MessageColumns.APPEND_REF_MESSAGE_CONTENT,
2244                        (msg.mDraftInfo & Message.DRAFT_INFO_APPEND_REF_MESSAGE) != 0 ? 1 : 0);
2245                values.put(UIProvider.MessageColumns.QUOTE_START_POS,
2246                        msg.mDraftInfo & Message.DRAFT_INFO_QUOTE_POS_MASK);
2247            }
2248            if ((msg.mFlags & Message.FLAG_INCOMING_MEETING_INVITE) != 0) {
2249                values.put(UIProvider.MessageColumns.EVENT_INTENT_URI,
2250                        "content://ui.email2.android.com/event/" + msg.mId);
2251            }
2252        }
2253        StringBuilder sb = genSelect(getMessageViewMap(), uiProjection, values);
2254        sb.append(" FROM " + Message.TABLE_NAME + " LEFT JOIN " + Body.TABLE_NAME + " ON " +
2255                Body.MESSAGE_KEY + "=" + Message.TABLE_NAME + "." + Message.RECORD_ID + " WHERE " +
2256                Message.TABLE_NAME + "." + Message.RECORD_ID + "=?");
2257        String sql = sb.toString();
2258        return new MessageQuery(sql, attachmentJson);
2259    }
2260
2261    /**
2262     * Generate the "message list" SQLite query, given a projection from UnifiedEmail
2263     *
2264     * @param uiProjection as passed from UnifiedEmail
2265     * @param unseenOnly <code>true</code> to only return unseen messages
2266     * @return the SQLite query to be executed on the EmailProvider database
2267     */
2268    private static String genQueryMailboxMessages(String[] uiProjection, final boolean unseenOnly) {
2269        StringBuilder sb = genSelect(getMessageListMap(), uiProjection);
2270        sb.append(" FROM " + Message.TABLE_NAME + " WHERE " +
2271                Message.FLAG_LOADED + "=" + Message.FLAG_LOADED_COMPLETE + " AND " +
2272                Message.MAILBOX_KEY + "=? ");
2273        if (unseenOnly) {
2274            sb.append("AND ").append(MessageColumns.FLAG_SEEN).append(" = 0 ");
2275        }
2276        sb.append("ORDER BY " + MessageColumns.TIMESTAMP + " DESC");
2277        return sb.toString();
2278    }
2279
2280    /**
2281     * Generate various virtual mailbox SQLite queries, given a projection from UnifiedEmail
2282     *
2283     * @param uiProjection as passed from UnifiedEmail
2284     * @param mailboxId the id of the virtual mailbox
2285     * @param unseenOnly <code>true</code> to only return unseen messages
2286     * @return the SQLite query to be executed on the EmailProvider database
2287     */
2288    private static Cursor getVirtualMailboxMessagesCursor(SQLiteDatabase db, String[] uiProjection,
2289            long mailboxId, final boolean unseenOnly) {
2290        ContentValues values = new ContentValues();
2291        values.put(UIProvider.ConversationColumns.COLOR, CONVERSATION_COLOR);
2292        final int virtualMailboxId = getVirtualMailboxType(mailboxId);
2293        final String[] selectionArgs;
2294        StringBuilder sb = genSelect(getMessageListMap(), uiProjection, values);
2295        sb.append(" FROM " + Message.TABLE_NAME + " WHERE " +
2296                Message.FLAG_LOADED + "=" + Message.FLAG_LOADED_COMPLETE + " AND ");
2297        if (isCombinedMailbox(mailboxId)) {
2298            if (unseenOnly) {
2299                sb.append(MessageColumns.FLAG_SEEN).append("=0 AND ");
2300            }
2301            selectionArgs = null;
2302        } else {
2303            if (virtualMailboxId == Mailbox.TYPE_INBOX) {
2304                throw new IllegalArgumentException("No virtual mailbox for: " + mailboxId);
2305            }
2306            sb.append(MessageColumns.ACCOUNT_KEY).append("=? AND ");
2307            selectionArgs = new String[]{getVirtualMailboxAccountIdString(mailboxId)};
2308        }
2309        switch (getVirtualMailboxType(mailboxId)) {
2310            case Mailbox.TYPE_INBOX:
2311                sb.append(MessageColumns.MAILBOX_KEY + " IN (SELECT " + MailboxColumns.ID +
2312                        " FROM " + Mailbox.TABLE_NAME + " WHERE " + MailboxColumns.TYPE +
2313                        "=" + Mailbox.TYPE_INBOX + ")");
2314                break;
2315            case Mailbox.TYPE_STARRED:
2316                sb.append(MessageColumns.FLAG_FAVORITE + "=1");
2317                break;
2318            case Mailbox.TYPE_ALL_UNREAD:
2319                sb.append(MessageColumns.FLAG_READ + "=0 AND " + MessageColumns.MAILBOX_KEY +
2320                        " NOT IN (SELECT " + MailboxColumns.ID + " FROM " + Mailbox.TABLE_NAME +
2321                        " WHERE " + MailboxColumns.TYPE + "=" + Mailbox.TYPE_TRASH + ")");
2322                break;
2323            default:
2324                throw new IllegalArgumentException("No virtual mailbox for: " + mailboxId);
2325        }
2326        sb.append(" ORDER BY " + MessageColumns.TIMESTAMP + " DESC");
2327        return db.rawQuery(sb.toString(), selectionArgs);
2328    }
2329
2330    /**
2331     * Generate the "message list" SQLite query, given a projection from UnifiedEmail
2332     *
2333     * @param uiProjection as passed from UnifiedEmail
2334     * @return the SQLite query to be executed on the EmailProvider database
2335     */
2336    private static String genQueryConversation(String[] uiProjection) {
2337        StringBuilder sb = genSelect(getMessageListMap(), uiProjection);
2338        sb.append(" FROM " + Message.TABLE_NAME + " WHERE " + Message.RECORD_ID + "=?");
2339        return sb.toString();
2340    }
2341
2342    /**
2343     * Generate the "top level folder list" SQLite query, given a projection from UnifiedEmail
2344     *
2345     * @param uiProjection as passed from UnifiedEmail
2346     * @return the SQLite query to be executed on the EmailProvider database
2347     */
2348    private static String genQueryAccountMailboxes(String[] uiProjection) {
2349        StringBuilder sb = genSelect(getFolderListMap(), uiProjection);
2350        sb.append(" FROM " + Mailbox.TABLE_NAME + " WHERE " + MailboxColumns.ACCOUNT_KEY +
2351                "=? AND " + MailboxColumns.TYPE + " < " + Mailbox.TYPE_NOT_EMAIL +
2352                " AND " + MailboxColumns.PARENT_KEY + " < 0 ORDER BY ");
2353        sb.append(MAILBOX_ORDER_BY);
2354        return sb.toString();
2355    }
2356
2357    /**
2358     * Generate the "all folders" SQLite query, given a projection from UnifiedEmail.  The list is
2359     * sorted by the name as it appears in a hierarchical listing
2360     *
2361     * @param uiProjection as passed from UnifiedEmail
2362     * @return the SQLite query to be executed on the EmailProvider database
2363     */
2364    private static String genQueryAccountAllMailboxes(String[] uiProjection) {
2365        StringBuilder sb = genSelect(getFolderListMap(), uiProjection);
2366        // Use a derived column to choose either hierarchicalName or displayName
2367        sb.append(", case when " + MailboxColumns.HIERARCHICAL_NAME + " is null then " +
2368                MailboxColumns.DISPLAY_NAME + " else " + MailboxColumns.HIERARCHICAL_NAME +
2369                " end as h_name");
2370        // Order by the derived column
2371        sb.append(" FROM " + Mailbox.TABLE_NAME + " WHERE " + MailboxColumns.ACCOUNT_KEY +
2372                "=? AND " + MailboxColumns.TYPE + " < " + Mailbox.TYPE_NOT_EMAIL +
2373                " ORDER BY h_name");
2374        return sb.toString();
2375    }
2376
2377    /**
2378     * Generate the "recent folder list" SQLite query, given a projection from UnifiedEmail
2379     *
2380     * @param uiProjection as passed from UnifiedEmail
2381     * @return the SQLite query to be executed on the EmailProvider database
2382     */
2383    private static String genQueryRecentMailboxes(String[] uiProjection) {
2384        StringBuilder sb = genSelect(getFolderListMap(), uiProjection);
2385        sb.append(" FROM " + Mailbox.TABLE_NAME + " WHERE " + MailboxColumns.ACCOUNT_KEY +
2386                "=? AND " + MailboxColumns.TYPE + " < " + Mailbox.TYPE_NOT_EMAIL +
2387                " AND " + MailboxColumns.PARENT_KEY + " < 0 AND " +
2388                MailboxColumns.LAST_TOUCHED_TIME + " > 0 ORDER BY " +
2389                MailboxColumns.LAST_TOUCHED_TIME + " DESC");
2390        return sb.toString();
2391    }
2392
2393    private static int getFolderCapabilities(EmailServiceInfo info, int flags, int type,
2394            long mailboxId) {
2395        // All folders support delete
2396        int caps = UIProvider.FolderCapabilities.DELETE;
2397        if (info != null && info.offerLookback) {
2398            // Protocols supporting lookback support settings
2399            caps |= UIProvider.FolderCapabilities.SUPPORTS_SETTINGS;
2400        }
2401        if ((flags & Mailbox.FLAG_ACCEPTS_MOVED_MAIL) != 0) {
2402            // If the mailbox can accept moved mail, report that as well
2403            caps |= UIProvider.FolderCapabilities.CAN_ACCEPT_MOVED_MESSAGES;
2404            caps |= UIProvider.FolderCapabilities.ALLOWS_REMOVE_CONVERSATION;
2405        }
2406
2407        // For trash, we don't allow undo
2408        if (type == Mailbox.TYPE_TRASH) {
2409            caps =  UIProvider.FolderCapabilities.CAN_ACCEPT_MOVED_MESSAGES |
2410                    UIProvider.FolderCapabilities.ALLOWS_REMOVE_CONVERSATION |
2411                    UIProvider.FolderCapabilities.CAN_HOLD_MAIL |
2412                    UIProvider.FolderCapabilities.DELETE |
2413                    UIProvider.FolderCapabilities.DELETE_ACTION_FINAL;
2414        }
2415        if (isVirtualMailbox(mailboxId)) {
2416            caps |= UIProvider.FolderCapabilities.IS_VIRTUAL;
2417        }
2418        return caps;
2419    }
2420
2421    /**
2422     * Generate a "single mailbox" SQLite query, given a projection from UnifiedEmail
2423     *
2424     * @param uiProjection as passed from UnifiedEmail
2425     * @return the SQLite query to be executed on the EmailProvider database
2426     */
2427    private String genQueryMailbox(String[] uiProjection, String id) {
2428        long mailboxId = Long.parseLong(id);
2429        ContentValues values = new ContentValues();
2430        if (mSearchParams != null && mailboxId == mSearchParams.mSearchMailboxId) {
2431            // This is the current search mailbox; use the total count
2432            values = new ContentValues();
2433            values.put(UIProvider.FolderColumns.TOTAL_COUNT, mSearchParams.mTotalCount);
2434            // "load more" is valid for search results
2435            values.put(UIProvider.FolderColumns.LOAD_MORE_URI,
2436                    uiUriString("uiloadmore", mailboxId));
2437            values.put(UIProvider.FolderColumns.CAPABILITIES, UIProvider.FolderCapabilities.DELETE);
2438        } else {
2439            Context context = getContext();
2440            Mailbox mailbox = Mailbox.restoreMailboxWithId(context, mailboxId);
2441            // Make sure we can't get NPE if mailbox has disappeared (the result will end up moot)
2442            if (mailbox != null) {
2443                String protocol = Account.getProtocol(context, mailbox.mAccountKey);
2444                EmailServiceInfo info = EmailServiceUtils.getServiceInfo(context, protocol);
2445                // All folders support delete
2446                if (info != null && info.offerLoadMore) {
2447                    // "load more" is valid for protocols not supporting "lookback"
2448                    values.put(UIProvider.FolderColumns.LOAD_MORE_URI,
2449                            uiUriString("uiloadmore", mailboxId));
2450                }
2451                values.put(UIProvider.FolderColumns.CAPABILITIES,
2452                        getFolderCapabilities(info, mailbox.mFlags, mailbox.mType, mailboxId));
2453                // The persistent id is used to form a filename, so we must ensure that it doesn't
2454                // include illegal characters (such as '/'). Only perform the encoding if this
2455                // query wants the persistent id.
2456                boolean shouldEncodePersistentId = false;
2457                if (uiProjection == null) {
2458                    shouldEncodePersistentId = true;
2459                } else {
2460                    for (final String column : uiProjection) {
2461                        if (TextUtils.equals(column, UIProvider.FolderColumns.PERSISTENT_ID)) {
2462                            shouldEncodePersistentId = true;
2463                            break;
2464                        }
2465                    }
2466                }
2467                if (shouldEncodePersistentId) {
2468                    values.put(UIProvider.FolderColumns.PERSISTENT_ID,
2469                            Base64.encodeToString(mailbox.mServerId.getBytes(),
2470                                    Base64.URL_SAFE | Base64.NO_WRAP | Base64.NO_PADDING));
2471                }
2472             }
2473        }
2474        StringBuilder sb = genSelect(getFolderListMap(), uiProjection, values);
2475        sb.append(" FROM " + Mailbox.TABLE_NAME + " WHERE " + MailboxColumns.ID + "=?");
2476        return sb.toString();
2477    }
2478
2479    public static final String LEGACY_AUTHORITY = "ui.email.android.com";
2480    private static final Uri BASE_EXTERNAL_URI = Uri.parse("content://" + LEGACY_AUTHORITY);
2481
2482    private static final Uri BASE_EXTERAL_URI2 = Uri.parse("content://ui.email2.android.com");
2483
2484    private static String getExternalUriString(String segment, String account) {
2485        return BASE_EXTERNAL_URI.buildUpon().appendPath(segment)
2486                .appendQueryParameter("account", account).build().toString();
2487    }
2488
2489    private static String getExternalUriStringEmail2(String segment, String account) {
2490        return BASE_EXTERAL_URI2.buildUpon().appendPath(segment)
2491                .appendQueryParameter("account", account).build().toString();
2492    }
2493
2494    private static String getBits(int bitField) {
2495        StringBuilder sb = new StringBuilder(" ");
2496        for (int i = 0; i < 32; i++, bitField >>= 1) {
2497            if ((bitField & 1) != 0) {
2498                sb.append("" + i + " ");
2499            }
2500        }
2501        return sb.toString();
2502    }
2503
2504    private int getCapabilities(Context context, long accountId) {
2505        final EmailServiceProxy service = EmailServiceUtils.getServiceForAccount(context,
2506                mServiceCallback, accountId);
2507        int capabilities = 0;
2508        Account acct = null;
2509        try {
2510            service.setTimeout(10);
2511            acct = Account.restoreAccountWithId(context, accountId);
2512            if (acct == null) {
2513                LogUtils.d(TAG, "getCapabilities() for " + accountId
2514                        + ": returning 0x0 (no account)");
2515                return 0;
2516            }
2517            capabilities = service.getCapabilities(acct);
2518            // STOPSHIP
2519            LogUtils.d(TAG, "getCapabilities() for " + acct.mDisplayName + ": 0x" +
2520                    Integer.toHexString(capabilities) + getBits(capabilities));
2521       } catch (RemoteException e) {
2522            // Nothing to do
2523           LogUtils.w(TAG, "getCapabilities() for " + acct.mDisplayName + ": RemoteException");
2524        }
2525
2526        // If the configuration states that feedback is supported, add that capability
2527        final Resources res = context.getResources();
2528        if (res.getBoolean(R.bool.feedback_supported)) {
2529            capabilities |= UIProvider.AccountCapabilities.SEND_FEEDBACK;
2530        }
2531        return capabilities;
2532    }
2533
2534    /**
2535     * Generate a "single account" SQLite query, given a projection from UnifiedEmail
2536     *
2537     * @param uiProjection as passed from UnifiedEmail
2538     * @return the SQLite query to be executed on the EmailProvider database
2539     */
2540    private String genQueryAccount(String[] uiProjection, String id) {
2541        final ContentValues values = new ContentValues();
2542        final long accountId = Long.parseLong(id);
2543        final Context context = getContext();
2544
2545        EmailServiceInfo info = null;
2546
2547        // TODO: If uiProjection is null, this will NPE. We should do everything here if it's null.
2548        final Set<String> projectionColumns = ImmutableSet.copyOf(uiProjection);
2549
2550        if (projectionColumns.contains(UIProvider.AccountColumns.CAPABILITIES)) {
2551            // Get account capabilities from the service
2552            values.put(UIProvider.AccountColumns.CAPABILITIES, getCapabilities(context, accountId));
2553        }
2554        if (projectionColumns.contains(UIProvider.AccountColumns.SETTINGS_INTENT_URI)) {
2555            values.put(UIProvider.AccountColumns.SETTINGS_INTENT_URI,
2556                    getExternalUriString("settings", id));
2557        }
2558        if (projectionColumns.contains(UIProvider.AccountColumns.COMPOSE_URI)) {
2559            values.put(UIProvider.AccountColumns.COMPOSE_URI,
2560                    getExternalUriStringEmail2("compose", id));
2561        }
2562        if (projectionColumns.contains(UIProvider.AccountColumns.MIME_TYPE)) {
2563            values.put(UIProvider.AccountColumns.MIME_TYPE, EMAIL_APP_MIME_TYPE);
2564        }
2565        if (projectionColumns.contains(UIProvider.AccountColumns.COLOR)) {
2566            values.put(UIProvider.AccountColumns.COLOR, ACCOUNT_COLOR);
2567        }
2568
2569        final Preferences prefs = Preferences.getPreferences(getContext());
2570        final MailPrefs mailPrefs = MailPrefs.get(getContext());
2571        if (projectionColumns.contains(UIProvider.AccountColumns.SettingsColumns.CONFIRM_DELETE)) {
2572            values.put(UIProvider.AccountColumns.SettingsColumns.CONFIRM_DELETE,
2573                    prefs.getConfirmDelete() ? "1" : "0");
2574        }
2575        if (projectionColumns.contains(UIProvider.AccountColumns.SettingsColumns.CONFIRM_SEND)) {
2576            values.put(UIProvider.AccountColumns.SettingsColumns.CONFIRM_SEND,
2577                    prefs.getConfirmSend() ? "1" : "0");
2578        }
2579        if (projectionColumns.contains(UIProvider.AccountColumns.SettingsColumns.SWIPE)) {
2580            values.put(UIProvider.AccountColumns.SettingsColumns.SWIPE,
2581                    mailPrefs.getConversationListSwipeActionInteger(false));
2582        }
2583        if (projectionColumns.contains(
2584                UIProvider.AccountColumns.SettingsColumns.CONV_LIST_ICON)) {
2585            String convListIcon = prefs.getConversationListIcon();
2586            values.put(UIProvider.AccountColumns.SettingsColumns.CONV_LIST_ICON,
2587                    convListIconToUiValue(convListIcon));
2588        }
2589        if (projectionColumns.contains(UIProvider.AccountColumns.SettingsColumns.AUTO_ADVANCE)) {
2590            int autoAdvance = prefs.getAutoAdvanceDirection();
2591            values.put(UIProvider.AccountColumns.SettingsColumns.AUTO_ADVANCE,
2592                    autoAdvanceToUiValue(autoAdvance));
2593        }
2594        if (projectionColumns.contains(
2595                UIProvider.AccountColumns.SettingsColumns.MESSAGE_TEXT_SIZE)) {
2596            int textZoom = prefs.getTextZoom();
2597            values.put(UIProvider.AccountColumns.SettingsColumns.MESSAGE_TEXT_SIZE,
2598                    textZoomToUiValue(textZoom));
2599        }
2600        // Set default inbox, if we've got an inbox; otherwise, say initial sync needed
2601        long mailboxId = Mailbox.findMailboxOfType(context, accountId, Mailbox.TYPE_INBOX);
2602        if (projectionColumns.contains(UIProvider.AccountColumns.SettingsColumns.DEFAULT_INBOX) &&
2603                mailboxId != Mailbox.NO_MAILBOX) {
2604            values.put(UIProvider.AccountColumns.SettingsColumns.DEFAULT_INBOX,
2605                    uiUriString("uifolder", mailboxId));
2606        }
2607        if (projectionColumns.contains(
2608                UIProvider.AccountColumns.SettingsColumns.DEFAULT_INBOX_NAME) &&
2609                mailboxId != Mailbox.NO_MAILBOX) {
2610            values.put(UIProvider.AccountColumns.SettingsColumns.DEFAULT_INBOX_NAME,
2611                    Mailbox.getDisplayName(context, mailboxId));
2612        }
2613        if (projectionColumns.contains(UIProvider.AccountColumns.SYNC_STATUS)) {
2614            if (mailboxId != Mailbox.NO_MAILBOX) {
2615                values.put(UIProvider.AccountColumns.SYNC_STATUS, UIProvider.SyncStatus.NO_SYNC);
2616            } else {
2617                values.put(UIProvider.AccountColumns.SYNC_STATUS,
2618                        UIProvider.SyncStatus.INITIAL_SYNC_NEEDED);
2619            }
2620        }
2621        if (projectionColumns.contains(
2622                UIProvider.AccountColumns.SettingsColumns.PRIORITY_ARROWS_ENABLED)) {
2623            // Email doesn't support priority inbox, so always state priority arrows disabled.
2624            values.put(UIProvider.AccountColumns.SettingsColumns.PRIORITY_ARROWS_ENABLED, "0");
2625        }
2626        if (projectionColumns.contains(
2627                UIProvider.AccountColumns.SettingsColumns.SETUP_INTENT_URI)) {
2628            // Set the setup intent if needed
2629            // TODO We should clarify/document the trash/setup relationship
2630            long trashId = Mailbox.findMailboxOfType(context, accountId, Mailbox.TYPE_TRASH);
2631            if (trashId == Mailbox.NO_MAILBOX) {
2632                info = EmailServiceUtils.getServiceInfoForAccount(context, accountId);
2633                if (info != null && info.requiresSetup) {
2634                    values.put(UIProvider.AccountColumns.SettingsColumns.SETUP_INTENT_URI,
2635                            getExternalUriString("setup", id));
2636                }
2637            }
2638        }
2639        if (projectionColumns.contains(UIProvider.AccountColumns.TYPE)) {
2640            final String type;
2641            if (info == null) {
2642                info = EmailServiceUtils.getServiceInfoForAccount(context, accountId);
2643            }
2644            if (info != null) {
2645                type = info.accountType;
2646            } else {
2647                type = "unknown";
2648            }
2649
2650            values.put(UIProvider.AccountColumns.TYPE, type);
2651        }
2652
2653        final StringBuilder sb = genSelect(getAccountListMap(getContext()), uiProjection, values);
2654        sb.append(" FROM " + Account.TABLE_NAME + " WHERE " + AccountColumns.ID + "=?");
2655        return sb.toString();
2656    }
2657
2658    private static int autoAdvanceToUiValue(int autoAdvance) {
2659        switch(autoAdvance) {
2660            case Preferences.AUTO_ADVANCE_OLDER:
2661                return UIProvider.AutoAdvance.OLDER;
2662            case Preferences.AUTO_ADVANCE_NEWER:
2663                return UIProvider.AutoAdvance.NEWER;
2664            case Preferences.AUTO_ADVANCE_MESSAGE_LIST:
2665            default:
2666                return UIProvider.AutoAdvance.LIST;
2667        }
2668    }
2669
2670    private static int textZoomToUiValue(int textZoom) {
2671        switch(textZoom) {
2672            case Preferences.TEXT_ZOOM_HUGE:
2673                return UIProvider.MessageTextSize.HUGE;
2674            case Preferences.TEXT_ZOOM_LARGE:
2675                return UIProvider.MessageTextSize.LARGE;
2676            case Preferences.TEXT_ZOOM_NORMAL:
2677                return UIProvider.MessageTextSize.NORMAL;
2678            case Preferences.TEXT_ZOOM_SMALL:
2679                return UIProvider.MessageTextSize.SMALL;
2680            case Preferences.TEXT_ZOOM_TINY:
2681                return UIProvider.MessageTextSize.TINY;
2682            default:
2683                return UIProvider.MessageTextSize.NORMAL;
2684        }
2685    }
2686
2687    private static int convListIconToUiValue(String convListIcon) {
2688        if (Preferences.CONV_LIST_ICON_SENDER_IMAGE.equals(convListIcon)) {
2689            return UIProvider.ConversationListIcon.SENDER_IMAGE;
2690        } else if (Preferences.CONV_LIST_ICON_NONE.equals(convListIcon)) {
2691            return UIProvider.ConversationListIcon.NONE;
2692        } else {
2693            return UIProvider.ConversationListIcon.DEFAULT;
2694        }
2695    }
2696
2697    /**
2698     * Generate a Uri string for a combined mailbox uri
2699     * @param type the uri command type (e.g. "uimessages")
2700     * @param id the id of the item (e.g. an account, mailbox, or message id)
2701     * @return a Uri string
2702     */
2703    private static String combinedUriString(String type, String id) {
2704        return "content://" + EmailContent.AUTHORITY + "/" + type + "/" + id;
2705    }
2706
2707    public static final long COMBINED_ACCOUNT_ID = 0x10000000;
2708
2709    /**
2710     * Generate an id for a combined mailbox of a given type
2711     * @param type the mailbox type for the combined mailbox
2712     * @return the id, as a String
2713     */
2714    private static String combinedMailboxId(int type) {
2715        return Long.toString(Account.ACCOUNT_ID_COMBINED_VIEW + type);
2716    }
2717
2718    private static String getVirtualMailboxIdString(long accountId, int type) {
2719        return Long.toString(getVirtualMailboxId(accountId, type));
2720    }
2721
2722    public static long getVirtualMailboxId(long accountId, int type) {
2723        return (accountId << 32) + type;
2724    }
2725
2726    private static boolean isVirtualMailbox(long mailboxId) {
2727        return mailboxId >= 0x100000000L;
2728    }
2729
2730    private static boolean isCombinedMailbox(long mailboxId) {
2731        return (mailboxId >> 32) == COMBINED_ACCOUNT_ID;
2732    }
2733
2734    private static long getVirtualMailboxAccountId(long mailboxId) {
2735        return mailboxId >> 32;
2736    }
2737
2738    private static String getVirtualMailboxAccountIdString(long mailboxId) {
2739        return Long.toString(mailboxId >> 32);
2740    }
2741
2742    private static int getVirtualMailboxType(long mailboxId) {
2743        return (int)(mailboxId & 0xF);
2744    }
2745
2746    private void addCombinedAccountRow(MatrixCursor mc) {
2747        final long id = Account.getDefaultAccountId(getContext());
2748        if (id == Account.NO_ACCOUNT) return;
2749
2750        // Build a map of the requested columns to the appropriate positions
2751        final ImmutableMap.Builder<String, Integer> builder =
2752                new ImmutableMap.Builder<String, Integer>();
2753        final String[] columnNames = mc.getColumnNames();
2754        for (int i = 0; i < columnNames.length; i++) {
2755            builder.put(columnNames[i], i);
2756        }
2757        final Map<String, Integer> colPosMap = builder.build();
2758
2759        final MailPrefs mailPrefs = MailPrefs.get(getContext());
2760
2761        final Object[] values = new Object[columnNames.length];
2762        if (colPosMap.containsKey(BaseColumns._ID)) {
2763            values[colPosMap.get(BaseColumns._ID)] = 0;
2764        }
2765        if (colPosMap.containsKey(UIProvider.AccountColumns.CAPABILITIES)) {
2766            values[colPosMap.get(UIProvider.AccountColumns.CAPABILITIES)] =
2767                    AccountCapabilities.UNDO | AccountCapabilities.SENDING_UNAVAILABLE;
2768        }
2769        if (colPosMap.containsKey(UIProvider.AccountColumns.FOLDER_LIST_URI)) {
2770            values[colPosMap.get(UIProvider.AccountColumns.FOLDER_LIST_URI)] =
2771                    combinedUriString("uifolders", COMBINED_ACCOUNT_ID_STRING);
2772        }
2773        if (colPosMap.containsKey(UIProvider.AccountColumns.NAME)) {
2774            values[colPosMap.get(UIProvider.AccountColumns.NAME)] = getContext().getString(
2775                R.string.mailbox_list_account_selector_combined_view);
2776        }
2777        if (colPosMap.containsKey(UIProvider.AccountColumns.TYPE)) {
2778            values[colPosMap.get(UIProvider.AccountColumns.TYPE)] = "unknown";
2779        }
2780        if (colPosMap.containsKey(UIProvider.AccountColumns.UNDO_URI)) {
2781            values[colPosMap.get(UIProvider.AccountColumns.UNDO_URI)] =
2782                    "'content://" + EmailContent.AUTHORITY + "/uiundo'";
2783        }
2784        if (colPosMap.containsKey(UIProvider.AccountColumns.URI)) {
2785            values[colPosMap.get(UIProvider.AccountColumns.URI)] =
2786                    combinedUriString("uiaccount", COMBINED_ACCOUNT_ID_STRING);
2787        }
2788        if (colPosMap.containsKey(UIProvider.AccountColumns.MIME_TYPE)) {
2789            values[colPosMap.get(UIProvider.AccountColumns.MIME_TYPE)] =
2790                    EMAIL_APP_MIME_TYPE;
2791        }
2792        if (colPosMap.containsKey(UIProvider.AccountColumns.SETTINGS_INTENT_URI)) {
2793            values[colPosMap.get(UIProvider.AccountColumns.SETTINGS_INTENT_URI)] =
2794                    getExternalUriString("settings", COMBINED_ACCOUNT_ID_STRING);
2795        }
2796        if (colPosMap.containsKey(UIProvider.AccountColumns.COMPOSE_URI)) {
2797            values[colPosMap.get(UIProvider.AccountColumns.COMPOSE_URI)] =
2798                    getExternalUriStringEmail2("compose", Long.toString(id));
2799        }
2800
2801        // TODO: Get these from default account?
2802        Preferences prefs = Preferences.getPreferences(getContext());
2803        if (colPosMap.containsKey(UIProvider.AccountColumns.SettingsColumns.AUTO_ADVANCE)) {
2804            values[colPosMap.get(UIProvider.AccountColumns.SettingsColumns.AUTO_ADVANCE)] =
2805                    Integer.toString(UIProvider.AutoAdvance.NEWER);
2806        }
2807        if (colPosMap.containsKey(UIProvider.AccountColumns.SettingsColumns.MESSAGE_TEXT_SIZE)) {
2808            values[colPosMap.get(UIProvider.AccountColumns.SettingsColumns.MESSAGE_TEXT_SIZE)] =
2809                    Integer.toString(UIProvider.MessageTextSize.NORMAL);
2810        }
2811        if (colPosMap.containsKey(UIProvider.AccountColumns.SettingsColumns.SNAP_HEADERS)) {
2812            values[colPosMap.get(UIProvider.AccountColumns.SettingsColumns.SNAP_HEADERS)] =
2813                    Integer.toString(UIProvider.SnapHeaderValue.ALWAYS);
2814        }
2815        //.add(UIProvider.SettingsColumns.SIGNATURE, AccountColumns.SIGNATURE)
2816        if (colPosMap.containsKey(UIProvider.AccountColumns.SettingsColumns.REPLY_BEHAVIOR)) {
2817            values[colPosMap.get(UIProvider.AccountColumns.SettingsColumns.REPLY_BEHAVIOR)] =
2818                    Integer.toString(mailPrefs.getDefaultReplyAll()
2819                            ? UIProvider.DefaultReplyBehavior.REPLY_ALL
2820                            : UIProvider.DefaultReplyBehavior.REPLY);
2821        }
2822        if (colPosMap.containsKey(UIProvider.AccountColumns.SettingsColumns.CONV_LIST_ICON)) {
2823            values[colPosMap.get(UIProvider.AccountColumns.SettingsColumns.CONV_LIST_ICON)] =
2824                    convListIconToUiValue(prefs.getConversationListIcon());
2825        }
2826        if (colPosMap.containsKey(UIProvider.AccountColumns.SettingsColumns.CONFIRM_DELETE)) {
2827            values[colPosMap.get(UIProvider.AccountColumns.SettingsColumns.CONFIRM_DELETE)] =
2828                    prefs.getConfirmDelete() ? 1 : 0;
2829        }
2830        if (colPosMap.containsKey(UIProvider.AccountColumns.SettingsColumns.CONFIRM_ARCHIVE)) {
2831            values[colPosMap.get(
2832                    UIProvider.AccountColumns.SettingsColumns.CONFIRM_ARCHIVE)] = 0;
2833        }
2834        if (colPosMap.containsKey(UIProvider.AccountColumns.SettingsColumns.CONFIRM_SEND)) {
2835            values[colPosMap.get(UIProvider.AccountColumns.SettingsColumns.CONFIRM_SEND)] =
2836                    prefs.getConfirmSend() ? 1 : 0;
2837        }
2838        if (colPosMap.containsKey(UIProvider.AccountColumns.SettingsColumns.DEFAULT_INBOX)) {
2839            values[colPosMap.get(UIProvider.AccountColumns.SettingsColumns.DEFAULT_INBOX)] =
2840                    combinedUriString("uifolder", combinedMailboxId(Mailbox.TYPE_INBOX));
2841        }
2842
2843        mc.addRow(values);
2844    }
2845
2846    private Cursor getVirtualMailboxCursor(long mailboxId) {
2847        MatrixCursor mc = new MatrixCursorWithCachedColumns(UIProvider.FOLDERS_PROJECTION, 1);
2848        mc.addRow(getVirtualMailboxRow(getVirtualMailboxAccountId(mailboxId),
2849                getVirtualMailboxType(mailboxId)));
2850        return mc;
2851    }
2852
2853    private Object[] getVirtualMailboxRow(long accountId, int mailboxType) {
2854        final long id = getVirtualMailboxId(accountId, mailboxType);
2855        final String idString = Long.toString(id);
2856        Object[] values = new Object[UIProvider.FOLDERS_PROJECTION.length];
2857        values[UIProvider.FOLDER_ID_COLUMN] = id;
2858        values[UIProvider.FOLDER_URI_COLUMN] = combinedUriString("uifolder", idString);
2859        values[UIProvider.FOLDER_NAME_COLUMN] =
2860                Mailbox.getSystemMailboxName(getContext(), mailboxType);
2861        values[UIProvider.FOLDER_HAS_CHILDREN_COLUMN] = 0;
2862        values[UIProvider.FOLDER_CAPABILITIES_COLUMN] = UIProvider.FolderCapabilities.IS_VIRTUAL;
2863        values[UIProvider.FOLDER_CONVERSATION_LIST_URI_COLUMN] = combinedUriString("uimessages",
2864                idString);
2865
2866        // Do any special handling
2867        final String accountIdString = Long.toString(accountId);
2868        switch (mailboxType) {
2869            case Mailbox.TYPE_INBOX:
2870                if (accountId == COMBINED_ACCOUNT_ID) {
2871                    // Add the unread count
2872                    final int unreadCount = EmailContent.count(getContext(), Message.CONTENT_URI,
2873                            MessageColumns.MAILBOX_KEY + " IN (SELECT " + MailboxColumns.ID
2874                            + " FROM " + Mailbox.TABLE_NAME + " WHERE " + MailboxColumns.TYPE
2875                            + "=" + Mailbox.TYPE_INBOX + ") AND " + MessageColumns.FLAG_READ + "=0",
2876                            null);
2877                    values[UIProvider.FOLDER_UNREAD_COUNT_COLUMN] = unreadCount;
2878                }
2879                // Add the icon
2880                values[UIProvider.FOLDER_ICON_RES_ID_COLUMN] = R.drawable.ic_folder_inbox;
2881                break;
2882            case Mailbox.TYPE_ALL_UNREAD: {
2883                // Add the unread count
2884                final String accountKeyClause;
2885                final String[] whereArgs;
2886                if (accountId == COMBINED_ACCOUNT_ID) {
2887                    accountKeyClause = "";
2888                    whereArgs = null;
2889                } else {
2890                    accountKeyClause = MessageColumns.ACCOUNT_KEY + "= ? AND ";
2891                    whereArgs = new String[] { accountIdString };
2892                }
2893                final int unreadCount = EmailContent.count(getContext(), Message.CONTENT_URI,
2894                        accountKeyClause + MessageColumns.FLAG_READ + "=0 AND "
2895                        + MessageColumns.MAILBOX_KEY + " NOT IN (SELECT " + MailboxColumns.ID
2896                        + " FROM " + Mailbox.TABLE_NAME + " WHERE " + MailboxColumns.TYPE + "="
2897                        + Mailbox.TYPE_TRASH + ")", whereArgs);
2898                values[UIProvider.FOLDER_UNREAD_COUNT_COLUMN] = unreadCount;
2899                // Add the icon
2900                values[UIProvider.FOLDER_ICON_RES_ID_COLUMN] = R.drawable.ic_folder_mark_unread;
2901                break;
2902            } case Mailbox.TYPE_STARRED: {
2903                // Add the starred count as the unread count
2904                final String accountKeyClause;
2905                final String[] whereArgs;
2906                if (accountId == COMBINED_ACCOUNT_ID) {
2907                    accountKeyClause = "";
2908                    whereArgs = null;
2909                } else {
2910                    accountKeyClause = MessageColumns.ACCOUNT_KEY + "= ? AND ";
2911                    whereArgs = new String[] { accountIdString };
2912                }
2913                final int starredCount = EmailContent.count(getContext(), Message.CONTENT_URI,
2914                        accountKeyClause + MessageColumns.FLAG_FAVORITE + "=1", whereArgs);
2915                values[UIProvider.FOLDER_UNREAD_COUNT_COLUMN] = starredCount;
2916                // Add the icon
2917                values[UIProvider.FOLDER_ICON_RES_ID_COLUMN] = R.drawable.ic_folder_star;
2918                break;
2919            }
2920        }
2921
2922        return values;
2923    }
2924
2925    private Cursor uiAccounts(String[] uiProjection) {
2926        final Context context = getContext();
2927        final SQLiteDatabase db = getDatabase(context);
2928        final Cursor accountIdCursor =
2929                db.rawQuery("select _id from " + Account.TABLE_NAME, new String[0]);
2930        final MatrixCursor mc;
2931        try {
2932            int numAccounts = accountIdCursor.getCount();
2933            boolean combinedAccount = false;
2934            if (numAccounts > 1) {
2935                combinedAccount = true;
2936                numAccounts++;
2937            }
2938            final Bundle extras = new Bundle();
2939            // Email always returns the accurate number of accounts
2940            extras.putInt(AccountCursorExtraKeys.ACCOUNTS_LOADED, 1);
2941            mc = new MatrixCursorWithExtra(uiProjection, accountIdCursor.getCount(), extras);
2942            final Object[] values = new Object[uiProjection.length];
2943            while (accountIdCursor.moveToNext()) {
2944                final String id = accountIdCursor.getString(0);
2945                final Cursor accountCursor =
2946                        db.rawQuery(genQueryAccount(uiProjection, id), new String[] {id});
2947                try {
2948                    if (accountCursor.moveToNext()) {
2949                        for (int i = 0; i < uiProjection.length; i++) {
2950                            values[i] = accountCursor.getString(i);
2951                        }
2952                        mc.addRow(values);
2953                    }
2954                } finally {
2955                    accountCursor.close();
2956                }
2957            }
2958            if (combinedAccount) {
2959                addCombinedAccountRow(mc);
2960            }
2961        } finally {
2962            accountIdCursor.close();
2963        }
2964        mc.setNotificationUri(context.getContentResolver(), UIPROVIDER_ALL_ACCOUNTS_NOTIFIER);
2965
2966        return mc;
2967    }
2968
2969    /**
2970     * Generate the "attachment list" SQLite query, given a projection from UnifiedEmail
2971     *
2972     * @param uiProjection as passed from UnifiedEmail
2973     * @param contentTypeQueryParameters list of mimeTypes, used as a filter for the attachments
2974     * or null if there are no query parameters
2975     * @return the SQLite query to be executed on the EmailProvider database
2976     */
2977    private static String genQueryAttachments(String[] uiProjection,
2978            List<String> contentTypeQueryParameters) {
2979        StringBuilder sb = genSelect(getAttachmentMap(), uiProjection);
2980        sb.append(" FROM " + Attachment.TABLE_NAME + " WHERE " + AttachmentColumns.MESSAGE_KEY +
2981                " =? ");
2982
2983        // Filter for certain content types.
2984        // The filter works by adding LIKE operators for each
2985        // content type you wish to request. Content types
2986        // are filtered by performing a case-insensitive "starts with"
2987        // filter. IE, "image/" would return "image/png" as well as "image/jpeg".
2988        if (contentTypeQueryParameters != null && !contentTypeQueryParameters.isEmpty()) {
2989            final int size = contentTypeQueryParameters.size();
2990            sb.append("AND (");
2991            for (int i = 0; i < size; i++) {
2992                final String contentType = contentTypeQueryParameters.get(i);
2993                sb.append(AttachmentColumns.MIME_TYPE + " LIKE '" + contentType + "%'");
2994
2995                if (i != size - 1) {
2996                    sb.append(" OR ");
2997                }
2998            }
2999            sb.append(")");
3000        }
3001        return sb.toString();
3002    }
3003
3004    /**
3005     * Generate the "single attachment" SQLite query, given a projection from UnifiedEmail
3006     *
3007     * @param uiProjection as passed from UnifiedEmail
3008     * @return the SQLite query to be executed on the EmailProvider database
3009     */
3010    private String genQueryAttachment(String[] uiProjection, String idString) {
3011        Long id = Long.parseLong(idString);
3012        Attachment att = Attachment.restoreAttachmentWithId(getContext(), id);
3013        ContentValues values = new ContentValues();
3014        values.put(AttachmentColumns.CONTENT_URI,
3015                AttachmentUtilities.getAttachmentUri(att.mAccountKey, id).toString());
3016        StringBuilder sb = genSelect(getAttachmentMap(), uiProjection, values);
3017        sb.append(" FROM " + Attachment.TABLE_NAME + " WHERE " + AttachmentColumns.ID + " =? ");
3018        return sb.toString();
3019    }
3020
3021    /**
3022     * Generate the "subfolder list" SQLite query, given a projection from UnifiedEmail
3023     *
3024     * @param uiProjection as passed from UnifiedEmail
3025     * @return the SQLite query to be executed on the EmailProvider database
3026     */
3027    private static String genQuerySubfolders(String[] uiProjection) {
3028        StringBuilder sb = genSelect(getFolderListMap(), uiProjection);
3029        sb.append(" FROM " + Mailbox.TABLE_NAME + " WHERE " + MailboxColumns.PARENT_KEY +
3030                " =? ORDER BY ");
3031        sb.append(MAILBOX_ORDER_BY);
3032        return sb.toString();
3033    }
3034
3035    private static final String COMBINED_ACCOUNT_ID_STRING = Long.toString(COMBINED_ACCOUNT_ID);
3036
3037    /**
3038     * Returns a cursor over all the folders for a specific URI which corresponds to a single
3039     * account.
3040     * @param uri
3041     * @param uiProjection
3042     * @return
3043     */
3044    private Cursor uiFolders(Uri uri, String[] uiProjection) {
3045        Context context = getContext();
3046        SQLiteDatabase db = getDatabase(context);
3047        String id = uri.getPathSegments().get(1);
3048        if (id.equals(COMBINED_ACCOUNT_ID_STRING)) {
3049            MatrixCursor mc = new MatrixCursorWithCachedColumns(UIProvider.FOLDERS_PROJECTION, 3);
3050            Object[] row;
3051            row = getVirtualMailboxRow(COMBINED_ACCOUNT_ID, Mailbox.TYPE_INBOX);
3052            mc.addRow(row);
3053            row = getVirtualMailboxRow(COMBINED_ACCOUNT_ID, Mailbox.TYPE_STARRED);
3054            mc.addRow(row);
3055            row = getVirtualMailboxRow(COMBINED_ACCOUNT_ID, Mailbox.TYPE_ALL_UNREAD);
3056            mc.addRow(row);
3057            return mc;
3058        } else {
3059            Cursor c = db.rawQuery(genQueryAccountMailboxes(uiProjection), new String[] {id});
3060            c = getFolderListCursor(db, c, uiProjection);
3061            // Add starred virtual folder to the cursor
3062            // Show number of messages as unread count (for backward compatibility)
3063            MatrixCursor mc = new MatrixCursorWithCachedColumns(uiProjection, 2);
3064            final long acctId = Long.parseLong(id);
3065            Object[] row = getVirtualMailboxRow(acctId, Mailbox.TYPE_STARRED);
3066            mc.addRow(row);
3067            row = getVirtualMailboxRow(acctId, Mailbox.TYPE_ALL_UNREAD);
3068            mc.addRow(row);
3069
3070            mc.setNotificationUri(context.getContentResolver(), uri);
3071            c.setNotificationUri(context.getContentResolver(), uri);
3072            Cursor[] cursors = new Cursor[] {mc, c};
3073            return new MergeCursor(cursors);
3074        }
3075    }
3076
3077    /**
3078     * Returns an array of the default recent folders for a given URI which is unique for an
3079     * account. Some accounts might not have default recent folders, in which case an empty array
3080     * is returned.
3081     * @param id
3082     * @return
3083     */
3084    private Uri[] defaultRecentFolders(final String id) {
3085        final SQLiteDatabase db = getDatabase(getContext());
3086        if (id.equals(COMBINED_ACCOUNT_ID_STRING)) {
3087            // We don't have default recents for the combined view.
3088            return new Uri[0];
3089        }
3090        // We search for the types we want, and find corresponding IDs.
3091        final String[] idAndType = { BaseColumns._ID, UIProvider.FolderColumns.TYPE };
3092
3093        // Sent, Drafts, and Starred are the default recents.
3094        final StringBuilder sb = genSelect(getFolderListMap(), idAndType);
3095        sb.append(" FROM " + Mailbox.TABLE_NAME
3096                + " WHERE " + MailboxColumns.ACCOUNT_KEY + " = " + id
3097                + " AND "
3098                + MailboxColumns.TYPE + " IN (" + Mailbox.TYPE_SENT +
3099                    ", " + Mailbox.TYPE_DRAFTS +
3100                    ", " + Mailbox.TYPE_STARRED
3101                + ")");
3102        LogUtils.d(TAG, "defaultRecentFolders: Query is %s", sb);
3103        final Cursor c = db.rawQuery(sb.toString(), null);
3104        if (c == null || c.getCount() <= 0 || !c.moveToFirst()) {
3105            return new Uri[0];
3106        }
3107        // Read all the IDs of the mailboxes, and turn them into URIs.
3108        final Uri[] recentFolders = new Uri[c.getCount()];
3109        int i = 0;
3110        do {
3111            final long folderId = c.getLong(0);
3112            recentFolders[i] = uiUri("uifolder", folderId);
3113            LogUtils.d(TAG, "Default recent folder: %d, with uri %s", folderId, recentFolders[i]);
3114            ++i;
3115        } while (c.moveToNext());
3116        return recentFolders;
3117    }
3118
3119    /**
3120     * Wrapper that handles the visibility feature (i.e. the conversation list is visible, so
3121     * any pending notifications for the corresponding mailbox should be canceled). We also handle
3122     * getExtras() to provide a snapshot of the mailbox's status
3123     */
3124    static class EmailConversationCursor extends CursorWrapper {
3125        private final long mMailboxId;
3126        private final Context mContext;
3127        private final FolderList mFolderList;
3128        private final Bundle mExtras = new Bundle();
3129
3130        public EmailConversationCursor(Context context, Cursor cursor, long mailboxId) {
3131            super(cursor);
3132            mMailboxId = mailboxId;
3133            mContext = context;
3134            mFolderList = FolderList.copyOf(Lists.newArrayList(getFolder(mContext, mMailboxId)));
3135            Mailbox mailbox = Mailbox.restoreMailboxWithId(context, mailboxId);
3136
3137            // We assume that all message lists are complete
3138            // since we don't do any live lists in email.
3139            mExtras.putInt(UIProvider.CursorExtraKeys.EXTRA_STATUS,
3140                    UIProvider.CursorStatus.COMPLETE);
3141            if (mailbox != null) {
3142                mExtras.putInt(UIProvider.CursorExtraKeys.EXTRA_ERROR,
3143                        mailbox.mUiLastSyncResult);
3144                mExtras.putInt(UIProvider.CursorExtraKeys.EXTRA_TOTAL_COUNT, mailbox.mTotalCount);
3145            } else {
3146                // TODO for virtual mailboxes, we may want to do something besides just fake it
3147                mExtras.putInt(UIProvider.CursorExtraKeys.EXTRA_ERROR,
3148                        UIProvider.LastSyncResult.SUCCESS);
3149                mExtras.putInt(UIProvider.CursorExtraKeys.EXTRA_TOTAL_COUNT,
3150                        cursor != null ? cursor.getCount() : 0);
3151            }
3152        }
3153
3154        @Override
3155        public Bundle getExtras() {
3156            return mExtras;
3157        }
3158
3159        /**
3160         * When showing a folder, if it's been at least this long since the last sync,
3161         * force a folder refresh.
3162         */
3163        private static final long AUTO_REFRESH_INTERVAL_MS = 5 * DateUtils.MINUTE_IN_MILLIS;
3164
3165        @Override
3166        public Bundle respond(Bundle params) {
3167            final Bundle response = new Bundle();
3168
3169            final String setVisibilityKey =
3170                    UIProvider.ConversationCursorCommand.COMMAND_KEY_SET_VISIBILITY;
3171            if (params.containsKey(setVisibilityKey)) {
3172                final boolean visible = params.getBoolean(setVisibilityKey);
3173                if (visible) {
3174                    if (params.containsKey(
3175                            UIProvider.ConversationCursorCommand.COMMAND_KEY_ENTERED_FOLDER)) {
3176                        Mailbox mailbox = Mailbox.restoreMailboxWithId(mContext, mMailboxId);
3177                        if (mailbox != null) {
3178                            final ContentResolver resolver = mContext.getContentResolver();
3179                            // Mark all messages as seen
3180                            // TODO: should this happen even if the mailbox couldn't be restored?
3181                            final ContentValues contentValues = new ContentValues(1);
3182                            contentValues.put(MessageColumns.FLAG_SEEN, true);
3183                            final Uri uri = EmailContent.Message.CONTENT_URI;
3184                            resolver.update(uri, contentValues, MessageColumns.MAILBOX_KEY + " = ?",
3185                                    new String[] {String.valueOf(mailbox.mId)});
3186                            // For non-push mailboxes, if it's stale (i.e. last sync was a while
3187                            // ago), force a sync.
3188                            if (mailbox.mSyncInterval > Mailbox.CHECK_INTERVAL_PUSH) {
3189                                final long timeSinceLastSync =
3190                                        System.currentTimeMillis() - mailbox.mSyncTime;
3191                                if (timeSinceLastSync > AUTO_REFRESH_INTERVAL_MS) {
3192                                    final Uri refreshUri = Uri.parse(EmailContent.CONTENT_URI +
3193                                            "/" + QUERY_UIREFRESH + "/" + mailbox.mId);
3194                                    resolver.query(refreshUri, null, null, null, null);
3195                                }
3196                            }
3197                        }
3198                    }
3199                }
3200            }
3201            // Return success
3202            response.putString(setVisibilityKey,
3203                    UIProvider.ConversationCursorCommand.COMMAND_RESPONSE_OK);
3204
3205            final String rawFoldersKey =
3206                    UIProvider.ConversationCursorCommand.COMMAND_GET_RAW_FOLDERS;
3207            if (params.containsKey(rawFoldersKey)) {
3208                response.putParcelable(rawFoldersKey, mFolderList);
3209            }
3210
3211            return response;
3212        }
3213    }
3214
3215    /**
3216     * Convenience method to create a {@link Folder}
3217     * @param context to get a {@ContentResolver}
3218     * @param mailboxId id of the {@link Mailbox} that we want
3219     * @return the {@link Folder} or null
3220     */
3221    public static Folder getFolder(Context context, long mailboxId) {
3222        final ContentResolver resolver = context.getContentResolver();
3223        final Cursor fc = resolver.query(EmailProvider.uiUri("uifolder", mailboxId),
3224                UIProvider.FOLDERS_PROJECTION, null, null, null);
3225
3226        if (fc == null) {
3227            LogUtils.e(TAG, "Null folder cursor for mailboxId %d", mailboxId);
3228            return null;
3229        }
3230
3231        Folder uiFolder = null;
3232        try {
3233            if (fc.moveToFirst()) {
3234                uiFolder = new Folder(fc);
3235            }
3236        } finally {
3237            fc.close();
3238        }
3239        return uiFolder;
3240    }
3241
3242    static class AttachmentsCursor extends CursorWrapper {
3243        private final int mContentUriIndex;
3244        private final int mUriIndex;
3245        private final Context mContext;
3246
3247        public AttachmentsCursor(Context context, Cursor cursor) {
3248            super(cursor);
3249            mContentUriIndex = cursor.getColumnIndex(UIProvider.AttachmentColumns.CONTENT_URI);
3250            mUriIndex = cursor.getColumnIndex(UIProvider.AttachmentColumns.URI);
3251            mContext = context;
3252        }
3253
3254        @Override
3255        public String getString(int column) {
3256            if (column == mContentUriIndex) {
3257                final Uri uri = Uri.parse(getString(mUriIndex));
3258                final long id = Long.parseLong(uri.getLastPathSegment());
3259                final Attachment att = Attachment.restoreAttachmentWithId(mContext, id);
3260                if (att == null) return "";
3261
3262                final String contentUri;
3263                // Until the package installer can handle opening apks from a content:// uri, for
3264                // any apk that was successfully saved in external storage, return the
3265                // content uri from the attachment
3266                if (att.mUiDestination == UIProvider.AttachmentDestination.EXTERNAL &&
3267                        att.mUiState == UIProvider.AttachmentState.SAVED &&
3268                        TextUtils.equals(att.mMimeType, MimeType.ANDROID_ARCHIVE)) {
3269                    contentUri = att.getContentUri();
3270                } else {
3271                    contentUri =
3272                            AttachmentUtilities.getAttachmentUri(att.mAccountKey, id).toString();
3273                }
3274                return contentUri;
3275            } else {
3276                return super.getString(column);
3277            }
3278        }
3279    }
3280
3281    /**
3282     * For debugging purposes; shouldn't be used in production code
3283     */
3284    static class CloseDetectingCursor extends CursorWrapper {
3285
3286        public CloseDetectingCursor(Cursor cursor) {
3287            super(cursor);
3288        }
3289
3290        @Override
3291        public void close() {
3292            super.close();
3293            LogUtils.d(TAG, "Closing cursor", new Error());
3294        }
3295    }
3296
3297    /**
3298     * We need to do individual queries for the mailboxes in order to get correct
3299     * folder capabilities.
3300     */
3301    private Cursor getFolderListCursor(SQLiteDatabase db, Cursor c, String[] uiProjection) {
3302        final MatrixCursor mc = new MatrixCursorWithCachedColumns(uiProjection);
3303        Object[] values = new Object[uiProjection.length];
3304        String[] args = new String[1];
3305        try {
3306            // Loop through mailboxes, building matrix cursor
3307            while (c.moveToNext()) {
3308                String id = c.getString(0);
3309                args[0] = id;
3310                Cursor mailboxCursor = db.rawQuery(genQueryMailbox(uiProjection, id), args);
3311                if (mailboxCursor.moveToNext()) {
3312                    for (int i = 0; i < uiProjection.length; i++) {
3313                        values[i] = mailboxCursor.getString(i);
3314                    }
3315                    mc.addRow(values);
3316                }
3317            }
3318        } finally {
3319            c.close();
3320        }
3321       return mc;
3322    }
3323
3324    /**
3325     * Handle UnifiedEmail queries here (dispatched from query())
3326     *
3327     * @param match the UriMatcher match for the original uri passed in from UnifiedEmail
3328     * @param uri the original uri passed in from UnifiedEmail
3329     * @param uiProjection the projection passed in from UnifiedEmail
3330     * @param unseenOnly <code>true</code> to only return unseen messages (where supported)
3331     * @return the result Cursor
3332     */
3333    private Cursor uiQuery(int match, Uri uri, String[] uiProjection, final boolean unseenOnly) {
3334        Context context = getContext();
3335        ContentResolver resolver = context.getContentResolver();
3336        SQLiteDatabase db = getDatabase(context);
3337        // Should we ever return null, or throw an exception??
3338        Cursor c = null;
3339        String id = uri.getPathSegments().get(1);
3340        Uri notifyUri = null;
3341        switch(match) {
3342            case UI_ALL_FOLDERS:
3343                c = db.rawQuery(genQueryAccountAllMailboxes(uiProjection), new String[] {id});
3344                c = getFolderListCursor(db, c, uiProjection);
3345                break;
3346            case UI_RECENT_FOLDERS:
3347                c = db.rawQuery(genQueryRecentMailboxes(uiProjection), new String[] {id});
3348                notifyUri = UIPROVIDER_RECENT_FOLDERS_NOTIFIER.buildUpon().appendPath(id).build();
3349                break;
3350            case UI_SUBFOLDERS:
3351                c = db.rawQuery(genQuerySubfolders(uiProjection), new String[] {id});
3352                c = getFolderListCursor(db, c, uiProjection);
3353                break;
3354            case UI_MESSAGES:
3355                long mailboxId = Long.parseLong(id);
3356                if (isVirtualMailbox(mailboxId)) {
3357                    c = getVirtualMailboxMessagesCursor(db, uiProjection, mailboxId, unseenOnly);
3358                } else {
3359                    c = db.rawQuery(
3360                            genQueryMailboxMessages(uiProjection, unseenOnly), new String[] {id});
3361                }
3362                notifyUri = UIPROVIDER_CONVERSATION_NOTIFIER.buildUpon().appendPath(id).build();
3363                c = new EmailConversationCursor(context, c, mailboxId);
3364                break;
3365            case UI_MESSAGE:
3366                MessageQuery qq = genQueryViewMessage(uiProjection, id);
3367                String sql = qq.query;
3368                String attJson = qq.attachmentJson;
3369                // With attachments, we have another argument to bind
3370                if (attJson != null) {
3371                    c = db.rawQuery(sql, new String[] {attJson, id});
3372                } else {
3373                    c = db.rawQuery(sql, new String[] {id});
3374                }
3375                break;
3376            case UI_ATTACHMENTS:
3377                final List<String> contentTypeQueryParameters =
3378                        uri.getQueryParameters(PhotoContract.ContentTypeParameters.CONTENT_TYPE);
3379                c = db.rawQuery(genQueryAttachments(uiProjection, contentTypeQueryParameters),
3380                        new String[] {id});
3381                c = new AttachmentsCursor(context, c);
3382                notifyUri = UIPROVIDER_ATTACHMENTS_NOTIFIER.buildUpon().appendPath(id).build();
3383                break;
3384            case UI_ATTACHMENT:
3385                c = db.rawQuery(genQueryAttachment(uiProjection, id), new String[] {id});
3386                notifyUri = UIPROVIDER_ATTACHMENT_NOTIFIER.buildUpon().appendPath(id).build();
3387                break;
3388            case UI_FOLDER:
3389                mailboxId = Long.parseLong(id);
3390                if (isVirtualMailbox(mailboxId)) {
3391                    c = getVirtualMailboxCursor(mailboxId);
3392                } else {
3393                    c = db.rawQuery(genQueryMailbox(uiProjection, id), new String[] {id});
3394                    notifyUri = UIPROVIDER_FOLDER_NOTIFIER.buildUpon().appendPath(id).build();
3395                }
3396                break;
3397            case UI_ACCOUNT:
3398                if (id.equals(COMBINED_ACCOUNT_ID_STRING)) {
3399                    MatrixCursor mc = new MatrixCursorWithCachedColumns(uiProjection, 1);
3400                    addCombinedAccountRow(mc);
3401                    c = mc;
3402                } else {
3403                    c = db.rawQuery(genQueryAccount(uiProjection, id), new String[] {id});
3404                }
3405                notifyUri = UIPROVIDER_ACCOUNT_NOTIFIER.buildUpon().appendPath(id).build();
3406                break;
3407            case UI_CONVERSATION:
3408                c = db.rawQuery(genQueryConversation(uiProjection), new String[] {id});
3409                break;
3410        }
3411        if (notifyUri != null) {
3412            c.setNotificationUri(resolver, notifyUri);
3413        }
3414        return c;
3415    }
3416
3417    /**
3418     * Convert a UIProvider attachment to an EmailProvider attachment (for sending); we only need
3419     * a few of the fields
3420     * @param uiAtt the UIProvider attachment to convert
3421     * @param cachedFile the path to the cached file to
3422     * @return the EmailProvider attachment
3423     */
3424    // TODO(pwestbro): once the Attachment contains the cached uri, the second parameter can be
3425    // removed
3426    private static Attachment convertUiAttachmentToAttachment(
3427            com.android.mail.providers.Attachment uiAtt, String cachedFile) {
3428        final Attachment att = new Attachment();
3429        att.setContentUri(uiAtt.contentUri.toString());
3430
3431        if (!TextUtils.isEmpty(cachedFile)) {
3432            // Generate the content provider uri for this cached file
3433            final Uri.Builder cachedFileBuilder = Uri.parse(
3434                    "content://" + EmailContent.AUTHORITY + "/attachment/cachedFile").buildUpon();
3435            cachedFileBuilder.appendQueryParameter(Attachment.CACHED_FILE_QUERY_PARAM, cachedFile);
3436            att.setCachedFileUri(cachedFileBuilder.build().toString());
3437        }
3438
3439        att.mFileName = uiAtt.getName();
3440        att.mMimeType = uiAtt.getContentType();
3441        att.mSize = uiAtt.size;
3442        return att;
3443    }
3444
3445    /**
3446     * Create a mailbox given the account and mailboxType.
3447     */
3448    private Mailbox createMailbox(long accountId, int mailboxType) {
3449        Context context = getContext();
3450        Mailbox box = Mailbox.newSystemMailbox(context, accountId, mailboxType);
3451        // Make sure drafts and save will show up in recents...
3452        // If these already exist (from old Email app), they will have touch times
3453        switch (mailboxType) {
3454            case Mailbox.TYPE_DRAFTS:
3455                box.mLastTouchedTime = Mailbox.DRAFTS_DEFAULT_TOUCH_TIME;
3456                break;
3457            case Mailbox.TYPE_SENT:
3458                box.mLastTouchedTime = Mailbox.SENT_DEFAULT_TOUCH_TIME;
3459                break;
3460        }
3461        box.save(context);
3462        return box;
3463    }
3464
3465    /**
3466     * Given an account name and a mailbox type, return that mailbox, creating it if necessary
3467     * @param accountId the account id to use
3468     * @param mailboxType the type of mailbox we're trying to find
3469     * @return the mailbox of the given type for the account in the uri, or null if not found
3470     */
3471    private Mailbox getMailboxByAccountIdAndType(final long accountId, final int mailboxType) {
3472        Mailbox mailbox = Mailbox.restoreMailboxOfType(getContext(), accountId, mailboxType);
3473        if (mailbox == null) {
3474            mailbox = createMailbox(accountId, mailboxType);
3475        }
3476        return mailbox;
3477    }
3478
3479    /**
3480     * Given a mailbox and the content values for a message, create/save the message in the mailbox
3481     * @param mailbox the mailbox to use
3482     * @param extras the bundle containing the message fields
3483     * @return the uri of the newly created message
3484     * TODO(yph): The following fields are available in extras but unused, verify whether they
3485     *     should be respected:
3486     *     - UIProvider.MessageColumns.SNIPPET
3487     *     - UIProvider.MessageColumns.REPLY_TO
3488     *     - UIProvider.MessageColumns.FROM
3489     *     - UIProvider.MessageColumns.CUSTOM_FROM_ADDRESS
3490     */
3491    private Uri uiSaveMessage(Message msg, Mailbox mailbox, Bundle extras) {
3492        final Context context = getContext();
3493        // Fill in the message
3494        final Account account = Account.restoreAccountWithId(context, mailbox.mAccountKey);
3495        if (account == null) return null;
3496        msg.mFrom = account.mEmailAddress;
3497        msg.mTimeStamp = System.currentTimeMillis();
3498        msg.mTo = extras.getString(UIProvider.MessageColumns.TO);
3499        msg.mCc = extras.getString(UIProvider.MessageColumns.CC);
3500        msg.mBcc = extras.getString(UIProvider.MessageColumns.BCC);
3501        msg.mSubject = extras.getString(UIProvider.MessageColumns.SUBJECT);
3502        msg.mText = extras.getString(UIProvider.MessageColumns.BODY_TEXT);
3503        msg.mHtml = extras.getString(UIProvider.MessageColumns.BODY_HTML);
3504        msg.mMailboxKey = mailbox.mId;
3505        msg.mAccountKey = mailbox.mAccountKey;
3506        msg.mDisplayName = msg.mTo;
3507        msg.mFlagLoaded = Message.FLAG_LOADED_COMPLETE;
3508        msg.mFlagRead = true;
3509        msg.mFlagSeen = true;
3510        final Integer quoteStartPos = extras.getInt(UIProvider.MessageColumns.QUOTE_START_POS);
3511        msg.mQuotedTextStartPos = quoteStartPos == null ? 0 : quoteStartPos;
3512        int flags = 0;
3513        final int draftType = extras.getInt(UIProvider.MessageColumns.DRAFT_TYPE);
3514        switch(draftType) {
3515            case DraftType.FORWARD:
3516                flags |= Message.FLAG_TYPE_FORWARD;
3517                break;
3518            case DraftType.REPLY_ALL:
3519                flags |= Message.FLAG_TYPE_REPLY_ALL;
3520                //$FALL-THROUGH$
3521            case DraftType.REPLY:
3522                flags |= Message.FLAG_TYPE_REPLY;
3523                break;
3524            case DraftType.COMPOSE:
3525                flags |= Message.FLAG_TYPE_ORIGINAL;
3526                break;
3527        }
3528        int draftInfo = 0;
3529        if (extras.containsKey(UIProvider.MessageColumns.QUOTE_START_POS)) {
3530            draftInfo = extras.getInt(UIProvider.MessageColumns.QUOTE_START_POS);
3531            if (extras.getInt(UIProvider.MessageColumns.APPEND_REF_MESSAGE_CONTENT) != 0) {
3532                draftInfo |= Message.DRAFT_INFO_APPEND_REF_MESSAGE;
3533            }
3534        }
3535        if (!extras.containsKey(UIProvider.MessageColumns.APPEND_REF_MESSAGE_CONTENT)) {
3536            flags |= Message.FLAG_NOT_INCLUDE_QUOTED_TEXT;
3537        }
3538        msg.mDraftInfo = draftInfo;
3539        msg.mFlags = flags;
3540
3541        final String ref = extras.getString(UIProvider.MessageColumns.REF_MESSAGE_ID);
3542        if (ref != null && msg.mQuotedTextStartPos >= 0) {
3543            String refId = Uri.parse(ref).getLastPathSegment();
3544            try {
3545                long sourceKey = Long.parseLong(refId);
3546                msg.mSourceKey = sourceKey;
3547            } catch (NumberFormatException e) {
3548                // This will be zero; the default
3549            }
3550        }
3551
3552        // Get attachments from the ContentValues
3553        final List<com.android.mail.providers.Attachment> uiAtts =
3554                com.android.mail.providers.Attachment.fromJSONArray(
3555                        extras.getString(UIProvider.MessageColumns.ATTACHMENTS));
3556        final ArrayList<Attachment> atts = new ArrayList<Attachment>();
3557        boolean hasUnloadedAttachments = false;
3558        Bundle attachmentFds =
3559                extras.getParcelable(UIProvider.SendOrSaveMethodParamKeys.OPENED_FD_MAP);
3560        for (com.android.mail.providers.Attachment uiAtt: uiAtts) {
3561            final Uri attUri = uiAtt.uri;
3562            if (attUri != null && attUri.getAuthority().equals(EmailContent.AUTHORITY)) {
3563                // If it's one of ours, retrieve the attachment and add it to the list
3564                final long attId = Long.parseLong(attUri.getLastPathSegment());
3565                final Attachment att = Attachment.restoreAttachmentWithId(context, attId);
3566                if (att != null) {
3567                    // We must clone the attachment into a new one for this message; easiest to
3568                    // use a parcel here
3569                    final Parcel p = Parcel.obtain();
3570                    att.writeToParcel(p, 0);
3571                    p.setDataPosition(0);
3572                    final Attachment attClone = new Attachment(p);
3573                    p.recycle();
3574                    // Clear the messageKey (this is going to be a new attachment)
3575                    attClone.mMessageKey = 0;
3576                    // If we're sending this, it's not loaded, and we're not smart forwarding
3577                    // add the download flag, so that ADS will start up
3578                    if (mailbox.mType == Mailbox.TYPE_OUTBOX && att.getContentUri() == null &&
3579                            ((account.mFlags & Account.FLAGS_SUPPORTS_SMART_FORWARD) == 0)) {
3580                        attClone.mFlags |= Attachment.FLAG_DOWNLOAD_FORWARD;
3581                        hasUnloadedAttachments = true;
3582                    }
3583                    atts.add(attClone);
3584                }
3585            } else {
3586                // Cache the attachment.  This will allow us to send it, if the permissions are
3587                // revoked
3588                final String cachedFileUri =
3589                        AttachmentUtils.cacheAttachmentUri(context, uiAtt, attachmentFds);
3590
3591                // Convert external attachment to one of ours and add to the list
3592                atts.add(convertUiAttachmentToAttachment(uiAtt, cachedFileUri));
3593            }
3594        }
3595        if (!atts.isEmpty()) {
3596            msg.mAttachments = atts;
3597            msg.mFlagAttachment = true;
3598            if (hasUnloadedAttachments) {
3599                Utility.showToast(context, R.string.message_view_attachment_background_load);
3600            }
3601        }
3602        // Save it or update it...
3603        if (!msg.isSaved()) {
3604            msg.save(context);
3605        } else {
3606            // This is tricky due to how messages/attachments are saved; rather than putz with
3607            // what's changed, we'll delete/re-add them
3608            final ArrayList<ContentProviderOperation> ops =
3609                    new ArrayList<ContentProviderOperation>();
3610            // Delete all existing attachments
3611            ops.add(ContentProviderOperation.newDelete(
3612                    ContentUris.withAppendedId(Attachment.MESSAGE_ID_URI, msg.mId))
3613                    .build());
3614            // Delete the body
3615            ops.add(ContentProviderOperation.newDelete(Body.CONTENT_URI)
3616                    .withSelection(Body.MESSAGE_KEY + "=?", new String[] {Long.toString(msg.mId)})
3617                    .build());
3618            // Add the ops for the message, atts, and body
3619            msg.addSaveOps(ops);
3620            // Do it!
3621            try {
3622                applyBatch(ops);
3623            } catch (OperationApplicationException e) {
3624            }
3625        }
3626        if (mailbox.mType == Mailbox.TYPE_OUTBOX) {
3627            startSync(mailbox, 0);
3628            final long originalMsgId = msg.mSourceKey;
3629            if (originalMsgId != 0) {
3630                final Message originalMsg = Message.restoreMessageWithId(context, originalMsgId);
3631                // If the original message exists, set its forwarded/replied to flags
3632                if (originalMsg != null) {
3633                    final ContentValues cv = new ContentValues();
3634                    flags = originalMsg.mFlags;
3635                    switch(draftType) {
3636                        case DraftType.FORWARD:
3637                            flags |= Message.FLAG_FORWARDED;
3638                            break;
3639                        case DraftType.REPLY_ALL:
3640                        case DraftType.REPLY:
3641                            flags |= Message.FLAG_REPLIED_TO;
3642                            break;
3643                    }
3644                    cv.put(Message.FLAGS, flags);
3645                    context.getContentResolver().update(ContentUris.withAppendedId(
3646                            Message.CONTENT_URI, originalMsgId), cv, null, null);
3647                }
3648            }
3649        }
3650        return uiUri("uimessage", msg.mId);
3651    }
3652
3653    private Uri uiSaveDraftMessage(final long accountId, final Bundle extras) {
3654        final Mailbox mailbox =
3655                getMailboxByAccountIdAndType(accountId, Mailbox.TYPE_DRAFTS);
3656        if (mailbox == null) return null;
3657        final Message msg;
3658        if (extras.containsKey(BaseColumns._ID)) {
3659            final long messageId = extras.getLong(BaseColumns._ID);
3660            msg = Message.restoreMessageWithId(getContext(), messageId);
3661        } else {
3662            msg = new Message();
3663        }
3664        return uiSaveMessage(msg, mailbox, extras);
3665    }
3666
3667    private Uri uiSendDraftMessage(final long accountId, final Bundle extras) {
3668        final Context context = getContext();
3669        final Message msg;
3670        if (extras.containsKey(BaseColumns._ID)) {
3671            final long messageId = extras.getLong(BaseColumns._ID);
3672            msg = Message.restoreMessageWithId(getContext(), messageId);
3673        } else {
3674            msg = new Message();
3675        }
3676
3677        if (msg == null) return null;
3678        final Mailbox mailbox = getMailboxByAccountIdAndType(accountId, Mailbox.TYPE_OUTBOX);
3679        if (mailbox == null) return null;
3680        // Make sure the sent mailbox exists, since it will be necessary soon.
3681        // TODO(yph): move system mailbox creation to somewhere sane.
3682        final Mailbox sentMailbox = getMailboxByAccountIdAndType(accountId, Mailbox.TYPE_SENT);
3683        if (sentMailbox == null) return null;
3684        final Uri messageUri = uiSaveMessage(msg, mailbox, extras);
3685        // Kick observers
3686        context.getContentResolver().notifyChange(Mailbox.CONTENT_URI, null);
3687        return messageUri;
3688    }
3689
3690    private static void putIntegerLongOrBoolean(ContentValues values, String columnName,
3691            Object value) {
3692        if (value instanceof Integer) {
3693            Integer intValue = (Integer)value;
3694            values.put(columnName, intValue);
3695        } else if (value instanceof Boolean) {
3696            Boolean boolValue = (Boolean)value;
3697            values.put(columnName, boolValue ? 1 : 0);
3698        } else if (value instanceof Long) {
3699            Long longValue = (Long)value;
3700            values.put(columnName, longValue);
3701        }
3702    }
3703
3704    /**
3705     * Update the timestamps for the folders specified and notifies on the recent folder URI.
3706     * @param folders
3707     * @return number of folders updated
3708     */
3709    private static int updateTimestamp(final Context context, String id, Uri[] folders){
3710        int updated = 0;
3711        final long now = System.currentTimeMillis();
3712        final ContentResolver resolver = context.getContentResolver();
3713        final ContentValues touchValues = new ContentValues();
3714        for (int i=0, size=folders.length; i < size; ++i) {
3715            touchValues.put(MailboxColumns.LAST_TOUCHED_TIME, now);
3716            LogUtils.d(TAG, "updateStamp: %s updated", folders[i]);
3717            updated += resolver.update(folders[i], touchValues, null, null);
3718        }
3719        final Uri toNotify =
3720                UIPROVIDER_RECENT_FOLDERS_NOTIFIER.buildUpon().appendPath(id).build();
3721        LogUtils.d(TAG, "updateTimestamp: Notifying on %s", toNotify);
3722        resolver.notifyChange(toNotify, null);
3723        return updated;
3724    }
3725
3726    /**
3727     * Updates the recent folders. The values to be updated are specified as ContentValues pairs
3728     * of (Folder URI, access timestamp). Returns nonzero if successful, always.
3729     * @param uri
3730     * @param values
3731     * @return nonzero value always.
3732     */
3733    private int uiUpdateRecentFolders(Uri uri, ContentValues values) {
3734        final int numFolders = values.size();
3735        final String id = uri.getPathSegments().get(1);
3736        final Uri[] folders = new Uri[numFolders];
3737        final Context context = getContext();
3738        int i = 0;
3739        for (final String uriString : values.keySet()) {
3740            folders[i] = Uri.parse(uriString);
3741        }
3742        return updateTimestamp(context, id, folders);
3743    }
3744
3745    /**
3746     * Populates the recent folders according to the design.
3747     * @param uri
3748     * @return the number of recent folders were populated.
3749     */
3750    private int uiPopulateRecentFolders(Uri uri) {
3751        final Context context = getContext();
3752        final String id = uri.getLastPathSegment();
3753        final Uri[] recentFolders = defaultRecentFolders(id);
3754        final int numFolders = recentFolders.length;
3755        if (numFolders <= 0) {
3756            return 0;
3757        }
3758        final int rowsUpdated = updateTimestamp(context, id, recentFolders);
3759        LogUtils.d(TAG, "uiPopulateRecentFolders: %d folders changed", rowsUpdated);
3760        return rowsUpdated;
3761    }
3762
3763    private int uiUpdateAttachment(Uri uri, ContentValues uiValues) {
3764        Integer stateValue = uiValues.getAsInteger(UIProvider.AttachmentColumns.STATE);
3765        if (stateValue != null) {
3766            // This is a command from UIProvider
3767            long attachmentId = Long.parseLong(uri.getLastPathSegment());
3768            Context context = getContext();
3769            Attachment attachment =
3770                    Attachment.restoreAttachmentWithId(context, attachmentId);
3771            if (attachment == null) {
3772                // Went away; ah, well...
3773                return 0;
3774            }
3775            ContentValues values = new ContentValues();
3776            switch (stateValue.intValue()) {
3777                case UIProvider.AttachmentState.NOT_SAVED:
3778                    // Set state, try to cancel request
3779                    values.put(AttachmentColumns.UI_STATE, stateValue);
3780                    values.put(AttachmentColumns.FLAGS,
3781                            attachment.mFlags &= ~Attachment.FLAG_DOWNLOAD_USER_REQUEST);
3782                    attachment.update(context, values);
3783                    return 1;
3784                case UIProvider.AttachmentState.DOWNLOADING:
3785                    // Set state and destination; request download
3786                    values.put(AttachmentColumns.UI_STATE, stateValue);
3787                    Integer destinationValue =
3788                        uiValues.getAsInteger(UIProvider.AttachmentColumns.DESTINATION);
3789                    values.put(AttachmentColumns.UI_DESTINATION,
3790                            destinationValue == null ? 0 : destinationValue);
3791                    values.put(AttachmentColumns.FLAGS,
3792                            attachment.mFlags | Attachment.FLAG_DOWNLOAD_USER_REQUEST);
3793                    attachment.update(context, values);
3794                    return 1;
3795                case UIProvider.AttachmentState.SAVED:
3796                    // If this is an inline attachment, notify message has changed
3797                    if (!TextUtils.isEmpty(attachment.mContentId)) {
3798                        notifyUI(UIPROVIDER_MESSAGE_NOTIFIER, attachment.mMessageKey);
3799                    }
3800                    return 1;
3801            }
3802        }
3803        return 0;
3804    }
3805
3806    private int uiUpdateFolder(final Context context, Uri uri, ContentValues uiValues) {
3807        // We need to mark seen separately
3808        if (uiValues.containsKey(UIProvider.ConversationColumns.SEEN)) {
3809            final int seenValue = uiValues.getAsInteger(UIProvider.ConversationColumns.SEEN);
3810
3811            if (seenValue == 1) {
3812                final String mailboxId = uri.getLastPathSegment();
3813                final int rows = markAllSeen(context, mailboxId);
3814
3815                if (uiValues.size() == 1) {
3816                    // Nothing else to do, so return this value
3817                    return rows;
3818                }
3819            }
3820        }
3821
3822        final Uri ourUri = convertToEmailProviderUri(uri, Mailbox.CONTENT_URI, true);
3823        if (ourUri == null) return 0;
3824        ContentValues ourValues = new ContentValues();
3825        // This should only be called via update to "recent folders"
3826        for (String columnName: uiValues.keySet()) {
3827            if (columnName.equals(MailboxColumns.LAST_TOUCHED_TIME)) {
3828                ourValues.put(MailboxColumns.LAST_TOUCHED_TIME, uiValues.getAsLong(columnName));
3829            }
3830        }
3831        return update(ourUri, ourValues, null, null);
3832    }
3833
3834    private int markAllSeen(final Context context, final String mailboxId) {
3835        final SQLiteDatabase db = getDatabase(context);
3836        final String table = Message.TABLE_NAME;
3837        final ContentValues values = new ContentValues(1);
3838        values.put(MessageColumns.FLAG_SEEN, 1);
3839        final String whereClause = MessageColumns.MAILBOX_KEY + " = ?";
3840        final String[] whereArgs = new String[] {mailboxId};
3841
3842        return db.update(table, values, whereClause, whereArgs);
3843    }
3844
3845    private ContentValues convertUiMessageValues(Message message, ContentValues values) {
3846        final ContentValues ourValues = new ContentValues();
3847        for (String columnName : values.keySet()) {
3848            final Object val = values.get(columnName);
3849            if (columnName.equals(UIProvider.ConversationColumns.STARRED)) {
3850                putIntegerLongOrBoolean(ourValues, MessageColumns.FLAG_FAVORITE, val);
3851            } else if (columnName.equals(UIProvider.ConversationColumns.READ)) {
3852                putIntegerLongOrBoolean(ourValues, MessageColumns.FLAG_READ, val);
3853            } else if (columnName.equals(UIProvider.ConversationColumns.SEEN)) {
3854                putIntegerLongOrBoolean(ourValues, MessageColumns.FLAG_SEEN, val);
3855            } else if (columnName.equals(MessageColumns.MAILBOX_KEY)) {
3856                putIntegerLongOrBoolean(ourValues, MessageColumns.MAILBOX_KEY, val);
3857            } else if (columnName.equals(UIProvider.ConversationOperations.FOLDERS_UPDATED)) {
3858                // Skip this column, as the folders will also be specified  the RAW_FOLDERS column
3859            } else if (columnName.equals(UIProvider.ConversationColumns.RAW_FOLDERS)) {
3860                // Convert from folder list uri to mailbox key
3861                final FolderList flist = FolderList.fromBlob(values.getAsByteArray(columnName));
3862                if (flist.folders.size() != 1) {
3863                    LogUtils.e(TAG,
3864                            "Incorrect number of folders for this message: Message is %s",
3865                            message.mId);
3866                } else {
3867                    final Folder f = flist.folders.get(0);
3868                    final Uri uri = f.uri;
3869                    final Long mailboxId = Long.parseLong(uri.getLastPathSegment());
3870                    putIntegerLongOrBoolean(ourValues, MessageColumns.MAILBOX_KEY, mailboxId);
3871                }
3872            } else if (columnName.equals(UIProvider.MessageColumns.ALWAYS_SHOW_IMAGES)) {
3873                Address[] fromList = Address.unpack(message.mFrom);
3874                Preferences prefs = Preferences.getPreferences(getContext());
3875                for (Address sender : fromList) {
3876                    String email = sender.getAddress();
3877                    prefs.setSenderAsTrusted(email);
3878                }
3879            } else if (columnName.equals(UIProvider.ConversationColumns.VIEWED) ||
3880                    columnName.equals(UIProvider.ConversationOperations.Parameters.SUPPRESS_UNDO)) {
3881                // Ignore for now
3882            } else {
3883                throw new IllegalArgumentException("Can't update " + columnName + " in message");
3884            }
3885        }
3886        return ourValues;
3887    }
3888
3889    private static Uri convertToEmailProviderUri(Uri uri, Uri newBaseUri, boolean asProvider) {
3890        final String idString = uri.getLastPathSegment();
3891        try {
3892            final long id = Long.parseLong(idString);
3893            Uri ourUri = ContentUris.withAppendedId(newBaseUri, id);
3894            if (asProvider) {
3895                ourUri = ourUri.buildUpon().appendQueryParameter(IS_UIPROVIDER, "true").build();
3896            }
3897            return ourUri;
3898        } catch (NumberFormatException e) {
3899            return null;
3900        }
3901    }
3902
3903    private Message getMessageFromLastSegment(Uri uri) {
3904        long messageId = Long.parseLong(uri.getLastPathSegment());
3905        return Message.restoreMessageWithId(getContext(), messageId);
3906    }
3907
3908    /**
3909     * Add an undo operation for the current sequence; if the sequence is newer than what we've had,
3910     * clear out the undo list and start over
3911     * @param uri the uri we're working on
3912     * @param op the ContentProviderOperation to perform upon undo
3913     */
3914    private void addToSequence(Uri uri, ContentProviderOperation op) {
3915        String sequenceString = uri.getQueryParameter(UIProvider.SEQUENCE_QUERY_PARAMETER);
3916        if (sequenceString != null) {
3917            int sequence = Integer.parseInt(sequenceString);
3918            if (sequence > mLastSequence) {
3919                // Reset sequence
3920                mLastSequenceOps.clear();
3921                mLastSequence = sequence;
3922            }
3923            // TODO: Need something to indicate a change isn't ready (undoable)
3924            mLastSequenceOps.add(op);
3925        }
3926    }
3927
3928    // TODO: This should depend on flags on the mailbox...
3929    private static boolean uploadsToServer(Context context, Mailbox m) {
3930        if (m.mType == Mailbox.TYPE_DRAFTS || m.mType == Mailbox.TYPE_OUTBOX ||
3931                m.mType == Mailbox.TYPE_SEARCH) {
3932            return false;
3933        }
3934        String protocol = Account.getProtocol(context, m.mAccountKey);
3935        EmailServiceInfo info = EmailServiceUtils.getServiceInfo(context, protocol);
3936        return (info != null && info.syncChanges);
3937    }
3938
3939    private int uiUpdateMessage(Uri uri, ContentValues values) {
3940        return uiUpdateMessage(uri, values, false);
3941    }
3942
3943    private int uiUpdateMessage(Uri uri, ContentValues values, boolean forceSync) {
3944        Context context = getContext();
3945        Message msg = getMessageFromLastSegment(uri);
3946        if (msg == null) return 0;
3947        Mailbox mailbox = Mailbox.restoreMailboxWithId(context, msg.mMailboxKey);
3948        if (mailbox == null) return 0;
3949        Uri ourBaseUri =
3950                (forceSync || uploadsToServer(context, mailbox)) ? Message.SYNCED_CONTENT_URI :
3951                    Message.CONTENT_URI;
3952        Uri ourUri = convertToEmailProviderUri(uri, ourBaseUri, true);
3953        if (ourUri == null) return 0;
3954
3955        // Special case - meeting response
3956        if (values.containsKey(UIProvider.MessageOperations.RESPOND_COLUMN)) {
3957            EmailServiceProxy service = EmailServiceUtils.getServiceForAccount(context,
3958                    mServiceCallback, mailbox.mAccountKey);
3959            try {
3960                service.sendMeetingResponse(msg.mId,
3961                        values.getAsInteger(UIProvider.MessageOperations.RESPOND_COLUMN));
3962                // Delete the message immediately
3963                uiDeleteMessage(uri);
3964                Utility.showToast(context, R.string.confirm_response);
3965                // Notify box has changed so the deletion is reflected in the UI
3966                notifyUIConversationMailbox(mailbox.mId);
3967            } catch (RemoteException e) {
3968            }
3969            return 1;
3970        }
3971
3972        ContentValues undoValues = new ContentValues();
3973        ContentValues ourValues = convertUiMessageValues(msg, values);
3974        for (String columnName: ourValues.keySet()) {
3975            if (columnName.equals(MessageColumns.MAILBOX_KEY)) {
3976                undoValues.put(MessageColumns.MAILBOX_KEY, msg.mMailboxKey);
3977            } else if (columnName.equals(MessageColumns.FLAG_READ)) {
3978                undoValues.put(MessageColumns.FLAG_READ, msg.mFlagRead);
3979            } else if (columnName.equals(MessageColumns.FLAG_SEEN)) {
3980                undoValues.put(MessageColumns.FLAG_SEEN, msg.mFlagSeen);
3981            } else if (columnName.equals(MessageColumns.FLAG_FAVORITE)) {
3982                undoValues.put(MessageColumns.FLAG_FAVORITE, msg.mFlagFavorite);
3983            }
3984        }
3985        if (undoValues == null || undoValues.size() == 0) {
3986            return -1;
3987        }
3988        final Boolean suppressUndo =
3989                values.getAsBoolean(UIProvider.ConversationOperations.Parameters.SUPPRESS_UNDO);
3990        if (suppressUndo == null || !suppressUndo.booleanValue()) {
3991            final ContentProviderOperation op =
3992                    ContentProviderOperation.newUpdate(convertToEmailProviderUri(
3993                            uri, ourBaseUri, false))
3994                            .withValues(undoValues)
3995                            .build();
3996            addToSequence(uri, op);
3997        }
3998        return update(ourUri, ourValues, null, null);
3999    }
4000
4001    public static final String PICKER_UI_ACCOUNT = "picker_ui_account";
4002    public static final String PICKER_MAILBOX_TYPE = "picker_mailbox_type";
4003    public static final String PICKER_MESSAGE_ID = "picker_message_id";
4004    public static final String PICKER_HEADER_ID = "picker_header_id";
4005
4006    private int uiDeleteMessage(Uri uri) {
4007        final Context context = getContext();
4008        Message msg = getMessageFromLastSegment(uri);
4009        if (msg == null) return 0;
4010        Mailbox mailbox = Mailbox.restoreMailboxWithId(context, msg.mMailboxKey);
4011        if (mailbox == null) return 0;
4012        if (mailbox.mType == Mailbox.TYPE_TRASH || mailbox.mType == Mailbox.TYPE_DRAFTS) {
4013            // We actually delete these, including attachments
4014            AttachmentUtilities.deleteAllAttachmentFiles(context, msg.mAccountKey, msg.mId);
4015            notifyUIFolder(mailbox.mId, mailbox.mAccountKey);
4016            return context.getContentResolver().delete(
4017                    ContentUris.withAppendedId(Message.SYNCED_CONTENT_URI, msg.mId), null, null);
4018        }
4019        Mailbox trashMailbox =
4020                Mailbox.restoreMailboxOfType(context, msg.mAccountKey, Mailbox.TYPE_TRASH);
4021        if (trashMailbox == null) {
4022            return 0;
4023        }
4024        ContentValues values = new ContentValues();
4025        values.put(MessageColumns.MAILBOX_KEY, trashMailbox.mId);
4026        notifyUIFolder(mailbox.mId, mailbox.mAccountKey);
4027        return uiUpdateMessage(uri, values, true);
4028    }
4029
4030    private int pickFolder(Uri uri, int type, int headerId) {
4031        Context context = getContext();
4032        Long acctId = Long.parseLong(uri.getLastPathSegment());
4033        // For push imap, for example, we want the user to select the trash mailbox
4034        Cursor ac = query(uiUri("uiaccount", acctId), UIProvider.ACCOUNTS_PROJECTION,
4035                null, null, null);
4036        try {
4037            if (ac.moveToFirst()) {
4038                final com.android.mail.providers.Account uiAccount =
4039                        new com.android.mail.providers.Account(ac);
4040                Intent intent = new Intent(context, FolderPickerActivity.class);
4041                intent.putExtra(PICKER_UI_ACCOUNT, uiAccount);
4042                intent.putExtra(PICKER_MAILBOX_TYPE, type);
4043                intent.putExtra(PICKER_HEADER_ID, headerId);
4044                intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
4045                context.startActivity(intent);
4046                return 1;
4047            }
4048            return 0;
4049        } finally {
4050            ac.close();
4051        }
4052    }
4053
4054    private int pickTrashFolder(Uri uri) {
4055        return pickFolder(uri, Mailbox.TYPE_TRASH, R.string.trash_folder_selection_title);
4056    }
4057
4058    private int pickSentFolder(Uri uri) {
4059        return pickFolder(uri, Mailbox.TYPE_SENT, R.string.sent_folder_selection_title);
4060    }
4061
4062    private Cursor uiUndo(String[] projection) {
4063        // First see if we have any operations saved
4064        // TODO: Make sure seq matches
4065        if (!mLastSequenceOps.isEmpty()) {
4066            try {
4067                // TODO Always use this projection?  Or what's passed in?
4068                // Not sure if UI wants it, but I'm making a cursor of convo uri's
4069                MatrixCursor c = new MatrixCursorWithCachedColumns(
4070                        new String[] {UIProvider.ConversationColumns.URI},
4071                        mLastSequenceOps.size());
4072                for (ContentProviderOperation op: mLastSequenceOps) {
4073                    c.addRow(new String[] {op.getUri().toString()});
4074                }
4075                // Just apply the batch and we're done!
4076                applyBatch(mLastSequenceOps);
4077                // But clear the operations
4078                mLastSequenceOps.clear();
4079                return c;
4080            } catch (OperationApplicationException e) {
4081            }
4082        }
4083        return new MatrixCursorWithCachedColumns(projection, 0);
4084    }
4085
4086    private void notifyUIConversation(Uri uri) {
4087        String id = uri.getLastPathSegment();
4088        Message msg = Message.restoreMessageWithId(getContext(), Long.parseLong(id));
4089        if (msg != null) {
4090            notifyUIConversationMailbox(msg.mMailboxKey);
4091        }
4092    }
4093
4094    /**
4095     * Notify about the Mailbox id passed in
4096     * @param id the Mailbox id to be notified
4097     */
4098    private void notifyUIConversationMailbox(long id) {
4099        notifyUI(UIPROVIDER_CONVERSATION_NOTIFIER, Long.toString(id));
4100        Mailbox mailbox = Mailbox.restoreMailboxWithId(getContext(), id);
4101        if (mailbox == null) {
4102            LogUtils.w(TAG, "No mailbox for notification: " + id);
4103            return;
4104        }
4105        // Notify combined inbox...
4106        if (mailbox.mType == Mailbox.TYPE_INBOX) {
4107            notifyUI(UIPROVIDER_CONVERSATION_NOTIFIER,
4108                    EmailProvider.combinedMailboxId(Mailbox.TYPE_INBOX));
4109        }
4110        notifyWidgets(id);
4111    }
4112
4113    /**
4114     * Notify about the Account id passed in
4115     * @param id the Account id to be notified
4116     */
4117    private void notifyUIAccount(long id) {
4118        // Notify on the specific account
4119        notifyUI(UIPROVIDER_ACCOUNT_NOTIFIER, Long.toString(id));
4120
4121        // Notify on the all accounts list
4122        notifyUI(UIPROVIDER_ALL_ACCOUNTS_NOTIFIER, null);
4123    }
4124
4125    /**
4126     * Notify about a folder update. Because folder changes can affect the conversation cursor's
4127     * extras, the conversation must also be notified here.
4128     * @param folderId the folder id to be notified
4129     * @param accountId the account id to be notified (for folder list notification); if null, then
4130     * lookup the accountId from the folder.
4131     */
4132    private void notifyUIFolder(String folderId, String accountId) {
4133        notifyUI(UIPROVIDER_CONVERSATION_NOTIFIER, folderId);
4134        notifyUI(UIPROVIDER_FOLDER_NOTIFIER, folderId);
4135        if (accountId == null) {
4136            try {
4137                final Mailbox mailbox = Mailbox.restoreMailboxWithId(getContext(),
4138                        Long.parseLong(folderId));
4139                if (mailbox != null) {
4140                    accountId = Long.toString(mailbox.mAccountKey);
4141                }
4142            } catch (NumberFormatException e) {
4143                // Bad folderId, so we can't lookup account.
4144            }
4145        }
4146        if (accountId != null) {
4147            notifyUI(UIPROVIDER_FOLDERLIST_NOTIFIER, accountId);
4148        }
4149    }
4150
4151    private void notifyUIFolder(long folderId, long accountId) {
4152        notifyUIFolder(Long.toString(folderId), Long.toString(accountId));
4153    }
4154
4155    private void notifyUI(Uri uri, String id) {
4156        final Uri notifyUri = (id != null) ? uri.buildUpon().appendPath(id).build() : uri;
4157        getContext().getContentResolver().notifyChange(notifyUri, null);
4158    }
4159
4160    private void notifyUI(Uri uri, long id) {
4161        notifyUI(uri, Long.toString(id));
4162    }
4163
4164    /**
4165     * Support for services and service notifications
4166     */
4167
4168    private final IEmailServiceCallback.Stub mServiceCallback =
4169            new IEmailServiceCallback.Stub() {
4170
4171        @Override
4172        public void syncMailboxListStatus(long accountId, int statusCode, int progress)
4173                throws RemoteException {
4174        }
4175
4176        @Override
4177        public void syncMailboxStatus(long mailboxId, int statusCode, int progress)
4178                throws RemoteException {
4179            // We'll get callbacks here from the services, which we'll pass back to the UI
4180            Uri uri = ContentUris.withAppendedId(FOLDER_STATUS_URI, mailboxId);
4181            EmailProvider.this.getContext().getContentResolver().notifyChange(uri, null);
4182        }
4183
4184        @Override
4185        public void loadAttachmentStatus(long messageId, long attachmentId, int statusCode,
4186                int progress) throws RemoteException {
4187        }
4188
4189        @Override
4190        public void sendMessageStatus(long messageId, String subject, int statusCode, int progress)
4191                throws RemoteException {
4192        }
4193
4194        @Override
4195        public void loadMessageStatus(long messageId, int statusCode, int progress)
4196                throws RemoteException {
4197        }
4198    };
4199
4200    private Mailbox getMailbox(final Uri uri) {
4201        final long id = Long.parseLong(uri.getLastPathSegment());
4202        return Mailbox.restoreMailboxWithId(getContext(), id);
4203    }
4204
4205    /**
4206     * Create an android.accounts.Account object for this account.
4207     * @param accountId id of account to load.
4208     * @return an android.accounts.Account for this account, or null if we can't load it.
4209     */
4210    private android.accounts.Account getAccountManagerAccount(final long accountId) {
4211        final Context context = getContext();
4212        final Account account = Account.restoreAccountWithId(context, accountId);
4213        if (account == null) return null;
4214        EmailServiceInfo info =
4215                EmailServiceUtils.getServiceInfo(context, account.getProtocol(context));
4216        return new android.accounts.Account(account.mEmailAddress, info.accountType);
4217    }
4218
4219    /**
4220     * The old sync code used to add periodic syncs for a mailbox when it was manually synced.
4221     * This function removes all such non-default periodic syncs.
4222     * @param account The account for which to remove unnecessary periodic syncs.
4223     */
4224    private void removeExtraPeriodicSyncs(final android.accounts.Account account) {
4225        final List<PeriodicSync> syncs =
4226                ContentResolver.getPeriodicSyncs(account, EmailContent.AUTHORITY);
4227        for (PeriodicSync sync : syncs) {
4228            if (!sync.extras.isEmpty()) {
4229                ContentResolver.removePeriodicSync(account, EmailContent.AUTHORITY, sync.extras);
4230            }
4231        }
4232    }
4233
4234    /**
4235     * Update an account's periodic sync if the sync interval has changed.
4236     * @param accountId id for the account to update.
4237     * @param values the ContentValues for this update to the account.
4238     */
4239    private void updateAccountSyncInterval(final long accountId, final ContentValues values) {
4240        final Integer syncInterval = values.getAsInteger(AccountColumns.SYNC_INTERVAL);
4241        if (syncInterval == null) {
4242            // No change to the sync interval.
4243            return;
4244        }
4245        final android.accounts.Account account = getAccountManagerAccount(accountId);
4246        if (account == null) {
4247            // Unable to load the account, or unknown protocol.
4248            return;
4249        }
4250
4251        LogUtils.d(TAG, "Setting sync interval for account " + accountId + " to " + syncInterval +
4252                " minutes");
4253
4254        // TODO: Ideally we don't need to do this every time we change the sync interval.
4255        // Either do this on upgrade, or perhaps on startup.
4256        removeExtraPeriodicSyncs(account);
4257
4258        final Bundle extras = new Bundle();
4259        if (syncInterval > 0) {
4260            ContentResolver.addPeriodicSync(account, EmailContent.AUTHORITY, extras,
4261                    syncInterval * 60);
4262        } else {
4263            ContentResolver.removePeriodicSync(account, EmailContent.AUTHORITY, extras);
4264        }
4265    }
4266
4267    private void startSync(final Mailbox mailbox, final int deltaMessageCount) {
4268        android.accounts.Account account = getAccountManagerAccount(mailbox.mAccountKey);
4269        Bundle extras = new Bundle(7);
4270        extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
4271        extras.putBoolean(ContentResolver.SYNC_EXTRAS_DO_NOT_RETRY, true);
4272        extras.putBoolean(ContentResolver.SYNC_EXTRAS_EXPEDITED, true);
4273        extras.putLong(Mailbox.SYNC_EXTRA_MAILBOX_ID, mailbox.mId);
4274        if (deltaMessageCount != 0) {
4275            extras.putInt(Mailbox.SYNC_EXTRA_DELTA_MESSAGE_COUNT, deltaMessageCount);
4276        }
4277        extras.putString(EmailServiceStatus.SYNC_EXTRAS_CALLBACK_URI,
4278                EmailContent.CONTENT_URI.toString());
4279        extras.putString(EmailServiceStatus.SYNC_EXTRAS_CALLBACK_METHOD,
4280                SYNC_STATUS_CALLBACK_METHOD);
4281        ContentResolver.requestSync(account, EmailContent.AUTHORITY, extras);
4282    }
4283
4284    private Cursor uiFolderRefresh(final Mailbox mailbox, final int deltaMessageCount) {
4285        if (mailbox != null) {
4286            startSync(mailbox, deltaMessageCount);
4287        }
4288        return null;
4289    }
4290
4291    //Number of additional messages to load when a user selects "Load more..." in POP/IMAP boxes
4292    public static final int VISIBLE_LIMIT_INCREMENT = 10;
4293    //Number of additional messages to load when a user selects "Load more..." in a search
4294    public static final int SEARCH_MORE_INCREMENT = 10;
4295
4296    private Cursor uiFolderLoadMore(final Mailbox mailbox) {
4297        if (mailbox == null) return null;
4298        if (mailbox.mType == Mailbox.TYPE_SEARCH) {
4299            // Ask for 10 more messages
4300            mSearchParams.mOffset += SEARCH_MORE_INCREMENT;
4301            runSearchQuery(getContext(), mailbox.mAccountKey, mailbox.mId);
4302        } else {
4303            uiFolderRefresh(mailbox, VISIBLE_LIMIT_INCREMENT);
4304        }
4305        return null;
4306    }
4307
4308    private static final String SEARCH_MAILBOX_SERVER_ID = "__search_mailbox__";
4309    private SearchParams mSearchParams;
4310
4311    /**
4312     * Returns the search mailbox for the specified account, creating one if necessary
4313     * @return the search mailbox for the passed in account
4314     */
4315    private Mailbox getSearchMailbox(long accountId) {
4316        Context context = getContext();
4317        Mailbox m = Mailbox.restoreMailboxOfType(context, accountId, Mailbox.TYPE_SEARCH);
4318        if (m == null) {
4319            m = new Mailbox();
4320            m.mAccountKey = accountId;
4321            m.mServerId = SEARCH_MAILBOX_SERVER_ID;
4322            m.mFlagVisible = false;
4323            m.mDisplayName = SEARCH_MAILBOX_SERVER_ID;
4324            m.mSyncInterval = Mailbox.CHECK_INTERVAL_NEVER;
4325            m.mType = Mailbox.TYPE_SEARCH;
4326            m.mFlags = Mailbox.FLAG_HOLDS_MAIL;
4327            m.mParentKey = Mailbox.NO_MAILBOX;
4328            m.save(context);
4329        }
4330        return m;
4331    }
4332
4333    private void runSearchQuery(final Context context, final long accountId,
4334            final long searchMailboxId) {
4335        LogUtils.d(TAG, "runSearchQuery. account: %d mailbox id: %d",
4336                accountId, searchMailboxId);
4337
4338        // Start the search running in the background
4339        new AsyncTask<Void, Void, Void>() {
4340            @Override
4341            public Void doInBackground(Void... params) {
4342                final EmailServiceProxy service = EmailServiceUtils.getServiceForAccount(
4343                        context, mServiceCallback, accountId);
4344                if (service != null) {
4345                    try {
4346                        // Save away the total count
4347                        mSearchParams.mTotalCount =
4348                                service.searchMessages(accountId, mSearchParams, searchMailboxId);
4349                        LogUtils.d(TAG, "EmailProvider#runSearchQuery. TotalCount to UI: %d",
4350                                mSearchParams.mTotalCount);
4351                        notifyUIFolder(searchMailboxId, accountId);
4352                    } catch (RemoteException e) {
4353                        LogUtils.e("searchMessages", "RemoteException", e);
4354                    }
4355                }
4356                return null;
4357            }
4358        }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
4359    }
4360
4361    // TODO: Handle searching for more...
4362    private Cursor uiSearch(Uri uri, String[] projection) {
4363        LogUtils.d(TAG, "runSearchQuery in search %s", uri);
4364        final long accountId = Long.parseLong(uri.getLastPathSegment());
4365
4366        // TODO: Check the actual mailbox
4367        Mailbox inbox = Mailbox.restoreMailboxOfType(getContext(), accountId, Mailbox.TYPE_INBOX);
4368        if (inbox == null) {
4369            LogUtils.w(Logging.LOG_TAG, "In uiSearch, inbox doesn't exist for account "
4370                    + accountId);
4371
4372            return null;
4373        }
4374
4375        String filter = uri.getQueryParameter(UIProvider.SearchQueryParameters.QUERY);
4376        if (filter == null) {
4377            throw new IllegalArgumentException("No query parameter in search query");
4378        }
4379
4380        // Find/create our search mailbox
4381        Mailbox searchMailbox = getSearchMailbox(accountId);
4382        final long searchMailboxId = searchMailbox.mId;
4383
4384        mSearchParams = new SearchParams(inbox.mId, filter, searchMailboxId);
4385
4386        final Context context = getContext();
4387        if (mSearchParams.mOffset == 0) {
4388            LogUtils.d(TAG, "deleting existing search results.");
4389
4390            // Delete existing contents of search mailbox
4391            ContentResolver resolver = context.getContentResolver();
4392            resolver.delete(Message.CONTENT_URI, Message.MAILBOX_KEY + "=" + searchMailboxId,
4393                    null);
4394            final ContentValues cv = new ContentValues();
4395            // For now, use the actual query as the name of the mailbox
4396            cv.put(Mailbox.DISPLAY_NAME, mSearchParams.mFilter);
4397            resolver.update(ContentUris.withAppendedId(Mailbox.CONTENT_URI, searchMailboxId),
4398                    cv, null, null);
4399        }
4400
4401        // Start the search running in the background
4402        runSearchQuery(context, accountId, searchMailboxId);
4403
4404        // This will look just like a "normal" folder
4405        return uiQuery(UI_FOLDER, ContentUris.withAppendedId(Mailbox.CONTENT_URI,
4406                searchMailbox.mId), projection, false);
4407    }
4408
4409    private static final String MAILBOXES_FOR_ACCOUNT_SELECTION = MailboxColumns.ACCOUNT_KEY + "=?";
4410    private static final String MAILBOXES_FOR_ACCOUNT_EXCEPT_ACCOUNT_MAILBOX_SELECTION =
4411        MAILBOXES_FOR_ACCOUNT_SELECTION + " AND " + MailboxColumns.TYPE + "!=" +
4412        Mailbox.TYPE_EAS_ACCOUNT_MAILBOX;
4413    private static final String MESSAGES_FOR_ACCOUNT_SELECTION = MessageColumns.ACCOUNT_KEY + "=?";
4414
4415    /**
4416     * Delete an account and clean it up
4417     */
4418    private int uiDeleteAccount(Uri uri) {
4419        Context context = getContext();
4420        long accountId = Long.parseLong(uri.getLastPathSegment());
4421        try {
4422            // Get the account URI.
4423            final Account account = Account.restoreAccountWithId(context, accountId);
4424            if (account == null) {
4425                return 0; // Already deleted?
4426            }
4427
4428            deleteAccountData(context, accountId);
4429
4430            // Now delete the account itself
4431            uri = ContentUris.withAppendedId(Account.CONTENT_URI, accountId);
4432            context.getContentResolver().delete(uri, null, null);
4433
4434            // Clean up
4435            AccountBackupRestore.backup(context);
4436            SecurityPolicy.getInstance(context).reducePolicies();
4437            MailActivityEmail.setServicesEnabledSync(context);
4438            return 1;
4439        } catch (Exception e) {
4440            LogUtils.w(Logging.LOG_TAG, "Exception while deleting account", e);
4441        }
4442        return 0;
4443    }
4444
4445    private int uiDeleteAccountData(Uri uri) {
4446        Context context = getContext();
4447        long accountId = Long.parseLong(uri.getLastPathSegment());
4448        // Get the account URI.
4449        final Account account = Account.restoreAccountWithId(context, accountId);
4450        if (account == null) {
4451            return 0; // Already deleted?
4452        }
4453        deleteAccountData(context, accountId);
4454        return 1;
4455    }
4456
4457    private static void deleteAccountData(Context context, long accountId) {
4458        // Delete synced attachments
4459        AttachmentUtilities.deleteAllAccountAttachmentFiles(context, accountId);
4460
4461        // Delete synced email, leaving only an empty inbox.  We do this in two phases:
4462        // 1. Delete all non-inbox mailboxes (which will delete all of their messages)
4463        // 2. Delete all remaining messages (which will be the inbox messages)
4464        ContentResolver resolver = context.getContentResolver();
4465        String[] accountIdArgs = new String[] { Long.toString(accountId) };
4466        resolver.delete(Mailbox.CONTENT_URI,
4467                MAILBOXES_FOR_ACCOUNT_EXCEPT_ACCOUNT_MAILBOX_SELECTION,
4468                accountIdArgs);
4469        resolver.delete(Message.CONTENT_URI, MESSAGES_FOR_ACCOUNT_SELECTION, accountIdArgs);
4470
4471        // Delete sync keys on remaining items
4472        ContentValues cv = new ContentValues();
4473        cv.putNull(Account.SYNC_KEY);
4474        resolver.update(Account.CONTENT_URI, cv, Account.ID_SELECTION, accountIdArgs);
4475        cv.clear();
4476        cv.putNull(Mailbox.SYNC_KEY);
4477        resolver.update(Mailbox.CONTENT_URI, cv,
4478                MAILBOXES_FOR_ACCOUNT_SELECTION, accountIdArgs);
4479
4480        // Delete PIM data (contacts, calendar), stop syncs, etc. if applicable
4481        IEmailService service = EmailServiceUtils.getServiceForAccount(context, null, accountId);
4482        if (service != null) {
4483            try {
4484                service.deleteAccountPIMData(accountId);
4485            } catch (RemoteException e) {
4486                // Can't do anything about this
4487            }
4488        }
4489    }
4490
4491    private int[] mSavedWidgetIds = new int[0];
4492    private final ArrayList<Long> mWidgetNotifyMailboxes = new ArrayList<Long>();
4493    private AppWidgetManager mAppWidgetManager;
4494    private ComponentName mEmailComponent;
4495
4496    private void notifyWidgets(long mailboxId) {
4497        Context context = getContext();
4498        // Lazily initialize these
4499        if (mAppWidgetManager == null) {
4500            mAppWidgetManager = AppWidgetManager.getInstance(context);
4501            mEmailComponent = new ComponentName(context, WidgetProvider.PROVIDER_NAME);
4502        }
4503
4504        // See if we have to populate our array of mailboxes used in widgets
4505        int[] widgetIds = mAppWidgetManager.getAppWidgetIds(mEmailComponent);
4506        if (!Arrays.equals(widgetIds, mSavedWidgetIds)) {
4507            mSavedWidgetIds = widgetIds;
4508            String[][] widgetInfos = BaseWidgetProvider.getWidgetInfo(context, widgetIds);
4509            // widgetInfo now has pairs of account uri/folder uri
4510            mWidgetNotifyMailboxes.clear();
4511            for (String[] widgetInfo: widgetInfos) {
4512                try {
4513                    if (widgetInfo == null) continue;
4514                    long id = Long.parseLong(Uri.parse(widgetInfo[1]).getLastPathSegment());
4515                    if (!isCombinedMailbox(id)) {
4516                        // For a regular mailbox, just add it to the list
4517                        if (!mWidgetNotifyMailboxes.contains(id)) {
4518                            mWidgetNotifyMailboxes.add(id);
4519                        }
4520                    } else {
4521                        switch (getVirtualMailboxType(id)) {
4522                            // We only handle the combined inbox in widgets
4523                            case Mailbox.TYPE_INBOX:
4524                                Cursor c = query(Mailbox.CONTENT_URI, Mailbox.ID_PROJECTION,
4525                                        MailboxColumns.TYPE + "=?",
4526                                        new String[] {Integer.toString(Mailbox.TYPE_INBOX)}, null);
4527                                try {
4528                                    while (c.moveToNext()) {
4529                                        mWidgetNotifyMailboxes.add(
4530                                                c.getLong(Mailbox.ID_PROJECTION_COLUMN));
4531                                    }
4532                                } finally {
4533                                    c.close();
4534                                }
4535                                break;
4536                        }
4537                    }
4538                } catch (NumberFormatException e) {
4539                    // Move along
4540                }
4541            }
4542        }
4543
4544        // If our mailbox needs to be notified, do so...
4545        if (mWidgetNotifyMailboxes.contains(mailboxId)) {
4546            Intent intent = new Intent(Utils.ACTION_NOTIFY_DATASET_CHANGED);
4547            intent.putExtra(Utils.EXTRA_FOLDER_URI, uiUri("uifolder", mailboxId));
4548            intent.setType(EMAIL_APP_MIME_TYPE);
4549            context.sendBroadcast(intent);
4550         }
4551    }
4552
4553    public void dump(FileDescriptor fd, PrintWriter writer, String[] args) {
4554        Context context = getContext();
4555        writer.println("Installed services:");
4556        for (EmailServiceInfo info: EmailServiceUtils.getServiceInfoList(context)) {
4557            writer.println("  " + info);
4558        }
4559        writer.println();
4560        writer.println("Accounts: ");
4561        Cursor cursor = query(Account.CONTENT_URI, Account.CONTENT_PROJECTION, null, null, null);
4562        if (cursor.getCount() == 0) {
4563            writer.println("  None");
4564        }
4565        try {
4566            while (cursor.moveToNext()) {
4567                Account account = new Account();
4568                account.restore(cursor);
4569                writer.println("  Account " + account.mDisplayName);
4570                HostAuth hostAuth =
4571                        HostAuth.restoreHostAuthWithId(context, account.mHostAuthKeyRecv);
4572                if (hostAuth != null) {
4573                    writer.println("    Protocol = " + hostAuth.mProtocol +
4574                            (TextUtils.isEmpty(account.mProtocolVersion) ? "" : " version " +
4575                                    account.mProtocolVersion));
4576                }
4577            }
4578        } finally {
4579            cursor.close();
4580        }
4581    }
4582}
4583