/* * Copyright (C) 2009 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License */ package com.android.providers.contacts; import static com.android.providers.contacts.util.DbQueryUtils.checkForSupportedColumns; import static com.android.providers.contacts.util.DbQueryUtils.getEqualityClause; import static com.android.providers.contacts.util.DbQueryUtils.getInequalityClause; import android.app.AppOpsManager; import android.content.ContentProvider; import android.content.ContentUris; import android.content.ContentValues; import android.content.Context; import android.content.UriMatcher; import android.database.Cursor; import android.database.DatabaseUtils; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteQueryBuilder; import android.net.Uri; import android.os.Handler; import android.os.HandlerThread; import android.os.Message; import android.os.Process; import android.os.UserHandle; import android.os.UserManager; import android.provider.CallLog; import android.provider.CallLog.Calls; import android.telecom.PhoneAccount; import android.telecom.PhoneAccountHandle; import android.telecom.TelecomManager; import android.text.TextUtils; import android.util.Log; import com.android.providers.contacts.ContactsDatabaseHelper.DbProperties; import com.android.providers.contacts.ContactsDatabaseHelper.Tables; import com.android.providers.contacts.util.SelectionBuilder; import com.android.providers.contacts.util.UserUtils; import com.google.common.annotations.VisibleForTesting; import com.cyanogen.ambient.incall.CallLogConstants; import java.util.HashMap; import java.util.List; import java.util.concurrent.CountDownLatch; /** * Call log content provider. */ public class CallLogProvider extends ContentProvider { private static final String TAG = CallLogProvider.class.getSimpleName(); private static final int BACKGROUND_TASK_INITIALIZE = 0; private static final int BACKGROUND_TASK_ADJUST_PHONE_ACCOUNT = 1; /** Selection clause for selecting all calls that were made after a certain time */ private static final String MORE_RECENT_THAN_SELECTION = Calls.DATE + "> ?"; /** Selection clause to use to exclude voicemail records. */ private static final String EXCLUDE_VOICEMAIL_SELECTION = getInequalityClause( Calls.TYPE, Calls.VOICEMAIL_TYPE); /** Selection clause to exclude hidden records. */ private static final String EXCLUDE_HIDDEN_SELECTION = getEqualityClause( Calls.PHONE_ACCOUNT_HIDDEN, 0); @VisibleForTesting static final String[] CALL_LOG_SYNC_PROJECTION = new String[] { Calls.NUMBER, Calls.NUMBER_PRESENTATION, Calls.TYPE, Calls.FEATURES, Calls.DATE, Calls.DURATION, Calls.DATA_USAGE, Calls.PHONE_ACCOUNT_COMPONENT_NAME, Calls.PHONE_ACCOUNT_ID, ContactsDatabaseHelper.CallColumns.ORIGIN, CallLogConstants.PLUGIN_PACKAGE_NAME, CallLogConstants.PLUGIN_USER_HANDLE }; static final String[] MINIMAL_PROJECTION = new String[] { Calls._ID }; private static final int CALLS = 1; private static final int CALLS_ID = 2; private static final int CALLS_FILTER = 3; private static final int CALLS_PLUGIN = 4; /** Path Segments */ private static final int ALL_CALL_LOGS_PATH = 2; private static final int PLUGIN_PACKAGE_NAME_PATH = 2; private static final int PACKAGE_USER_NAME_PATH = 3; private static final String UNHIDE_BY_PHONE_ACCOUNT_QUERY = "UPDATE " + Tables.CALLS + " SET " + Calls.PHONE_ACCOUNT_HIDDEN + "=0 WHERE " + Calls.PHONE_ACCOUNT_COMPONENT_NAME + "=? AND " + Calls.PHONE_ACCOUNT_ID + "=?;"; private static final String UNHIDE_BY_ADDRESS_QUERY = "UPDATE " + Tables.CALLS + " SET " + Calls.PHONE_ACCOUNT_HIDDEN + "=0 WHERE " + Calls.PHONE_ACCOUNT_ADDRESS + "=?;"; private static final UriMatcher sURIMatcher = new UriMatcher(UriMatcher.NO_MATCH); static { sURIMatcher.addURI(CallLog.AUTHORITY, "calls", CALLS); sURIMatcher.addURI(CallLog.AUTHORITY, "calls/#", CALLS_ID); sURIMatcher.addURI(CallLog.AUTHORITY, "calls/all", CALLS); sURIMatcher.addURI(CallLog.AUTHORITY, "calls/filter/*", CALLS_FILTER); sURIMatcher.addURI(CallLog.AUTHORITY, "calls/plugin", CALLS_PLUGIN); sURIMatcher.addURI(CallLog.AUTHORITY, "calls/plugin/*", CALLS_PLUGIN); sURIMatcher.addURI(CallLog.AUTHORITY, "calls/plugin/*/*", CALLS_PLUGIN); } private static final HashMap sCallsProjectionMap; static { // Calls projection map sCallsProjectionMap = new HashMap(); sCallsProjectionMap.put(Calls._ID, Calls._ID); sCallsProjectionMap.put(Calls.NUMBER, Calls.NUMBER); sCallsProjectionMap.put(Calls.NUMBER_PRESENTATION, Calls.NUMBER_PRESENTATION); sCallsProjectionMap.put(Calls.DATE, Calls.DATE); sCallsProjectionMap.put(Calls.DURATION, Calls.DURATION); sCallsProjectionMap.put(Calls.DATA_USAGE, Calls.DATA_USAGE); sCallsProjectionMap.put(Calls.TYPE, Calls.TYPE); sCallsProjectionMap.put(Calls.FEATURES, Calls.FEATURES); sCallsProjectionMap.put(Calls.PHONE_ACCOUNT_COMPONENT_NAME, Calls.PHONE_ACCOUNT_COMPONENT_NAME); sCallsProjectionMap.put(Calls.PHONE_ACCOUNT_ID, Calls.PHONE_ACCOUNT_ID); sCallsProjectionMap.put(Calls.PHONE_ACCOUNT_ADDRESS, Calls.PHONE_ACCOUNT_ADDRESS); sCallsProjectionMap.put(Calls.NEW, Calls.NEW); sCallsProjectionMap.put(Calls.VOICEMAIL_URI, Calls.VOICEMAIL_URI); sCallsProjectionMap.put(Calls.TRANSCRIPTION, Calls.TRANSCRIPTION); sCallsProjectionMap.put(Calls.IS_READ, Calls.IS_READ); sCallsProjectionMap.put(Calls.CACHED_NAME, Calls.CACHED_NAME); sCallsProjectionMap.put(Calls.CACHED_NUMBER_TYPE, Calls.CACHED_NUMBER_TYPE); sCallsProjectionMap.put(Calls.CACHED_NUMBER_LABEL, Calls.CACHED_NUMBER_LABEL); sCallsProjectionMap.put(Calls.COUNTRY_ISO, Calls.COUNTRY_ISO); sCallsProjectionMap.put(Calls.GEOCODED_LOCATION, Calls.GEOCODED_LOCATION); sCallsProjectionMap.put(Calls.CACHED_LOOKUP_URI, Calls.CACHED_LOOKUP_URI); sCallsProjectionMap.put(Calls.CACHED_MATCHED_NUMBER, Calls.CACHED_MATCHED_NUMBER); sCallsProjectionMap.put(Calls.CACHED_NORMALIZED_NUMBER, Calls.CACHED_NORMALIZED_NUMBER); sCallsProjectionMap.put(Calls.CACHED_PHOTO_ID, Calls.CACHED_PHOTO_ID); sCallsProjectionMap.put(Calls.CACHED_PHOTO_URI, Calls.CACHED_PHOTO_URI); sCallsProjectionMap.put(Calls.CACHED_FORMATTED_NUMBER, Calls.CACHED_FORMATTED_NUMBER); sCallsProjectionMap.put(ContactsDatabaseHelper.CallColumns.ORIGIN, ContactsDatabaseHelper.CallColumns.ORIGIN); sCallsProjectionMap.put(CallLogConstants.PLUGIN_PACKAGE_NAME, CallLogConstants.PLUGIN_PACKAGE_NAME); sCallsProjectionMap.put(CallLogConstants.PLUGIN_USER_HANDLE, CallLogConstants.PLUGIN_USER_HANDLE); } private HandlerThread mBackgroundThread; private Handler mBackgroundHandler; private volatile CountDownLatch mReadAccessLatch; private ContactsDatabaseHelper mDbHelper; private DatabaseUtils.InsertHelper mCallsInserter; private boolean mUseStrictPhoneNumberComparation; private VoicemailPermissions mVoicemailPermissions; private CallLogInsertionHelper mCallLogInsertionHelper; @Override public boolean onCreate() { setAppOps(AppOpsManager.OP_READ_CALL_LOG, AppOpsManager.OP_WRITE_CALL_LOG); if (Log.isLoggable(Constants.PERFORMANCE_TAG, Log.DEBUG)) { Log.d(Constants.PERFORMANCE_TAG, "CallLogProvider.onCreate start"); } final Context context = getContext(); mDbHelper = getDatabaseHelper(context); mUseStrictPhoneNumberComparation = context.getResources().getBoolean( com.android.internal.R.bool.config_use_strict_phone_number_comparation); mVoicemailPermissions = new VoicemailPermissions(context); mCallLogInsertionHelper = createCallLogInsertionHelper(context); mBackgroundThread = new HandlerThread("CallLogProviderWorker", Process.THREAD_PRIORITY_BACKGROUND); mBackgroundThread.start(); mBackgroundHandler = new Handler(mBackgroundThread.getLooper()) { @Override public void handleMessage(Message msg) { performBackgroundTask(msg.what, msg.obj); } }; mReadAccessLatch = new CountDownLatch(1); scheduleBackgroundTask(BACKGROUND_TASK_INITIALIZE, null); if (Log.isLoggable(Constants.PERFORMANCE_TAG, Log.DEBUG)) { Log.d(Constants.PERFORMANCE_TAG, "CallLogProvider.onCreate finish"); } return true; } @VisibleForTesting protected CallLogInsertionHelper createCallLogInsertionHelper(final Context context) { return DefaultCallLogInsertionHelper.getInstance(context); } @VisibleForTesting protected ContactsDatabaseHelper getDatabaseHelper(final Context context) { return ContactsDatabaseHelper.getInstance(context); } @Override public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) { waitForAccess(mReadAccessLatch); final SQLiteQueryBuilder qb = new SQLiteQueryBuilder(); qb.setTables(Tables.CALLS); qb.setProjectionMap(sCallsProjectionMap); qb.setStrict(true); final SelectionBuilder selectionBuilder = new SelectionBuilder(selection); checkVoicemailPermissionAndAddRestriction(uri, selectionBuilder, true /*isQuery*/); selectionBuilder.addClause(EXCLUDE_HIDDEN_SELECTION); final int match = sURIMatcher.match(uri); List pathSegments = uri.getPathSegments(); switch (match) { case CALLS: { if (pathSegments.size() < ALL_CALL_LOGS_PATH) { qb.appendWhere(CallLogConstants.PLUGIN_PACKAGE_NAME + " IS NULL "); } break; } case CALLS_ID: { selectionBuilder.addClause(getEqualityClause(Calls._ID, parseCallIdFromUri(uri))); break; } case CALLS_FILTER: { String phoneNumber = pathSegments.size() >= 2 ? pathSegments.get(2) : null; if (!TextUtils.isEmpty(phoneNumber)) { qb.appendWhere("PHONE_NUMBERS_EQUAL(number, "); qb.appendWhereEscapeString(phoneNumber); qb.appendWhere(mUseStrictPhoneNumberComparation ? ", 1)" : ", 0)"); } else { qb.appendWhere(Calls.NUMBER_PRESENTATION + "!=" + Calls.PRESENTATION_ALLOWED); } break; } case CALLS_PLUGIN: { String pluginName = pathSegments.size() >= PLUGIN_PACKAGE_NAME_PATH ? pathSegments.get(PLUGIN_PACKAGE_NAME_PATH) : null; if (!TextUtils.isEmpty(pluginName)) { qb.appendWhere(CallLogConstants.PLUGIN_PACKAGE_NAME + " == "); qb.appendWhereEscapeString(pluginName); if (pathSegments.size() - 1 >= PACKAGE_USER_NAME_PATH) { String pluginUserName = pathSegments.get(PACKAGE_USER_NAME_PATH); if (!TextUtils.isEmpty(pluginUserName)) { qb.appendWhere(" AND " + CallLogConstants.PLUGIN_USER_HANDLE + " == "); qb.appendWhereEscapeString(pluginUserName); } } } else { qb.appendWhere(CallLogConstants.PLUGIN_PACKAGE_NAME + " IS NOT NULL"); } break; } default: throw new IllegalArgumentException("Unknown URL " + uri); } final int limit = getIntParam(uri, Calls.LIMIT_PARAM_KEY, 0); final int offset = getIntParam(uri, Calls.OFFSET_PARAM_KEY, 0); String limitClause = null; if (limit > 0) { limitClause = offset + "," + limit; } final SQLiteDatabase db = mDbHelper.getReadableDatabase(); final Cursor c = qb.query(db, projection, selectionBuilder.build(), selectionArgs, null, null, sortOrder, limitClause); if (c != null) { c.setNotificationUri(getContext().getContentResolver(), CallLog.CONTENT_URI); } return c; } /** * Gets an integer query parameter from a given uri. * * @param uri The uri to extract the query parameter from. * @param key The query parameter key. * @param defaultValue A default value to return if the query parameter does not exist. * @return The value from the query parameter in the Uri. Or the default value if the parameter * does not exist in the uri. * @throws IllegalArgumentException when the value in the query parameter is not an integer. */ private int getIntParam(Uri uri, String key, int defaultValue) { String valueString = uri.getQueryParameter(key); if (valueString == null) { return defaultValue; } try { return Integer.parseInt(valueString); } catch (NumberFormatException e) { String msg = "Integer required for " + key + " parameter but value '" + valueString + "' was found instead."; throw new IllegalArgumentException(msg, e); } } @Override public String getType(Uri uri) { int match = sURIMatcher.match(uri); switch (match) { case CALLS: return Calls.CONTENT_TYPE; case CALLS_ID: return Calls.CONTENT_ITEM_TYPE; case CALLS_FILTER: return Calls.CONTENT_TYPE; case CALLS_PLUGIN: return Calls.CONTENT_TYPE; default: throw new IllegalArgumentException("Unknown URI: " + uri); } } @Override public Uri insert(Uri uri, ContentValues values) { waitForAccess(mReadAccessLatch); checkForSupportedColumns(sCallsProjectionMap, values); // Inserting a voicemail record through call_log requires the voicemail // permission and also requires the additional voicemail param set. if (hasVoicemailValue(values)) { checkIsAllowVoicemailRequest(uri); mVoicemailPermissions.checkCallerHasWriteAccess(getCallingPackage()); } if (mCallsInserter == null) { SQLiteDatabase db = mDbHelper.getWritableDatabase(); mCallsInserter = new DatabaseUtils.InsertHelper(db, Tables.CALLS); } ContentValues copiedValues = new ContentValues(values); // Add the computed fields to the copied values. mCallLogInsertionHelper.addComputedValues(copiedValues); long rowId = getDatabaseModifier(mCallsInserter).insert(copiedValues); if (rowId > 0) { return ContentUris.withAppendedId(uri, rowId); } return null; } @Override public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { waitForAccess(mReadAccessLatch); checkForSupportedColumns(sCallsProjectionMap, values); // Request that involves changing record type to voicemail requires the // voicemail param set in the uri. if (hasVoicemailValue(values)) { checkIsAllowVoicemailRequest(uri); } SelectionBuilder selectionBuilder = new SelectionBuilder(selection); checkVoicemailPermissionAndAddRestriction(uri, selectionBuilder, false /*isQuery*/); final SQLiteDatabase db = mDbHelper.getWritableDatabase(); final int matchedUriId = sURIMatcher.match(uri); switch (matchedUriId) { case CALLS: break; case CALLS_ID: selectionBuilder.addClause(getEqualityClause(Calls._ID, parseCallIdFromUri(uri))); break; default: throw new UnsupportedOperationException("Cannot update URL: " + uri); } return getDatabaseModifier(db).update(Tables.CALLS, values, selectionBuilder.build(), selectionArgs); } @Override public int delete(Uri uri, String selection, String[] selectionArgs) { waitForAccess(mReadAccessLatch); SelectionBuilder selectionBuilder = new SelectionBuilder(selection); checkVoicemailPermissionAndAddRestriction(uri, selectionBuilder, false /*isQuery*/); final SQLiteDatabase db = mDbHelper.getWritableDatabase(); final int matchedUriId = sURIMatcher.match(uri); switch (matchedUriId) { case CALLS: return getDatabaseModifier(db).delete(Tables.CALLS, selectionBuilder.build(), selectionArgs); case CALLS_ID: return getDatabaseModifier(db).delete(Tables.CALLS, new SelectionBuilder(Calls._ID + "=?").build(), new String[] { uri.getLastPathSegment() }); default: throw new UnsupportedOperationException("Cannot delete that URL: " + uri); } } // Work around to let the test code override the context. getContext() is final so cannot be // overridden. protected Context context() { return getContext(); } void adjustForNewPhoneAccount(PhoneAccountHandle handle) { scheduleBackgroundTask(BACKGROUND_TASK_ADJUST_PHONE_ACCOUNT, handle); } /** * Returns a {@link DatabaseModifier} that takes care of sending necessary notifications * after the operation is performed. */ private DatabaseModifier getDatabaseModifier(SQLiteDatabase db) { return new DbModifierWithNotification(Tables.CALLS, db, context()); } /** * Same as {@link #getDatabaseModifier(SQLiteDatabase)} but used for insert helper operations * only. */ private DatabaseModifier getDatabaseModifier(DatabaseUtils.InsertHelper insertHelper) { return new DbModifierWithNotification(Tables.CALLS, insertHelper, context()); } private static final Integer VOICEMAIL_TYPE = new Integer(Calls.VOICEMAIL_TYPE); private boolean hasVoicemailValue(ContentValues values) { return VOICEMAIL_TYPE.equals(values.getAsInteger(Calls.TYPE)); } /** * Checks if the supplied uri requests to include voicemails and take appropriate * action. *

If voicemail is requested, then check for voicemail permissions. Otherwise * modify the selection to restrict to non-voicemail entries only. */ private void checkVoicemailPermissionAndAddRestriction(Uri uri, SelectionBuilder selectionBuilder, boolean isQuery) { if (isAllowVoicemailRequest(uri)) { if (isQuery) { mVoicemailPermissions.checkCallerHasReadAccess(getCallingPackage()); } else { mVoicemailPermissions.checkCallerHasWriteAccess(getCallingPackage()); } } else { selectionBuilder.addClause(EXCLUDE_VOICEMAIL_SELECTION); } } /** * Determines if the supplied uri has the request to allow voicemails to be * included. */ private boolean isAllowVoicemailRequest(Uri uri) { return uri.getBooleanQueryParameter(Calls.ALLOW_VOICEMAILS_PARAM_KEY, false); } /** * Checks to ensure that the given uri has allow_voicemail set. Used by * insert and update operations to check that ContentValues with voicemail * call type must use the voicemail uri. * @throws IllegalArgumentException if allow_voicemail is not set. */ private void checkIsAllowVoicemailRequest(Uri uri) { if (!isAllowVoicemailRequest(uri)) { throw new IllegalArgumentException( String.format("Uri %s cannot be used for voicemail record." + " Please set '%s=true' in the uri.", uri, Calls.ALLOW_VOICEMAILS_PARAM_KEY)); } } /** * Parses the call Id from the given uri, assuming that this is a uri that * matches CALLS_ID. For other uri types the behaviour is undefined. * @throws IllegalArgumentException if the id included in the Uri is not a valid long value. */ private long parseCallIdFromUri(Uri uri) { try { return Long.parseLong(uri.getPathSegments().get(1)); } catch (NumberFormatException e) { throw new IllegalArgumentException("Invalid call id in uri: " + uri, e); } } /** * Syncs any unique call log entries that have been inserted into the primary user's call log * since the last time the last sync occurred. */ private void syncEntriesFromPrimaryUser(UserManager userManager) { final int userHandle = userManager.getUserHandle(); if (userHandle == UserHandle.USER_OWNER || userManager.getUserInfo(userHandle).isManagedProfile()) { return; } final long lastSyncTime = getLastSyncTime(); final Uri uri = ContentProvider.maybeAddUserId(CallLog.Calls.CONTENT_URI, UserHandle.USER_OWNER); final Cursor cursor = getContext().getContentResolver().query( uri, CALL_LOG_SYNC_PROJECTION, EXCLUDE_VOICEMAIL_SELECTION + " AND " + MORE_RECENT_THAN_SELECTION, new String[] {String.valueOf(lastSyncTime)}, Calls.DATE + " DESC"); if (cursor == null) { return; } try { final long lastSyncedEntryTime = copyEntriesFromCursor(cursor); if (lastSyncedEntryTime > lastSyncTime) { setLastTimeSynced(lastSyncedEntryTime); } } finally { cursor.close(); } } /** * Un-hides any hidden call log entries that are associated with the specified handle. * * @param handle The handle to the newly registered {@link android.telecom.PhoneAccount}. */ private void adjustForNewPhoneAccountInternal(PhoneAccountHandle handle) { String[] handleArgs = new String[] { handle.getComponentName().flattenToString(), handle.getId() }; // Check to see if any entries exist for this handle. If so (not empty), run the un-hiding // update. If not, then try to identify the call from the phone number. Cursor cursor = query(Calls.CONTENT_URI, MINIMAL_PROJECTION, Calls.PHONE_ACCOUNT_COMPONENT_NAME + " =? AND " + Calls.PHONE_ACCOUNT_ID + " =?", handleArgs, null); if (cursor != null) { try { if (cursor.getCount() >= 1) { // run un-hiding process based on phone account mDbHelper.getWritableDatabase().execSQL( UNHIDE_BY_PHONE_ACCOUNT_QUERY, handleArgs); } else { TelecomManager tm = TelecomManager.from(getContext()); if (tm != null) { PhoneAccount account = tm.getPhoneAccount(handle); if (account != null && account.getAddress() != null) { // We did not find any items for the specific phone account, so run the // query based on the phone number instead. mDbHelper.getWritableDatabase().execSQL(UNHIDE_BY_ADDRESS_QUERY, new String[] { account.getAddress().toString() }); } } } } finally { cursor.close(); } } } /** * @param cursor to copy call log entries from * * @return the timestamp of the last synced entry. */ @VisibleForTesting long copyEntriesFromCursor(Cursor cursor) { long lastSynced = 0; final ContentValues values = new ContentValues(); final SQLiteDatabase db = mDbHelper.getWritableDatabase(); db.beginTransaction(); try { final String[] args = new String[2]; cursor.moveToPosition(-1); while (cursor.moveToNext()) { values.clear(); DatabaseUtils.cursorRowToContentValues(cursor, values); final String startTime = values.getAsString(Calls.DATE); final String number = values.getAsString(Calls.NUMBER); if (startTime == null || number == null) { continue; } if (cursor.isLast()) { try { lastSynced = Long.valueOf(startTime); } catch (NumberFormatException e) { Log.e(TAG, "Call log entry does not contain valid start time: " + startTime); } } // Avoid duplicating an already existing entry (which is uniquely identified by // the number, and the start time) args[0] = startTime; args[1] = number; if (DatabaseUtils.queryNumEntries(db, Tables.CALLS, Calls.DATE + " = ? AND " + Calls.NUMBER + " = ?", args) > 0) { continue; } db.insert(Tables.CALLS, null, values); } db.setTransactionSuccessful(); } finally { db.endTransaction(); } return lastSynced; } private long getLastSyncTime() { try { return Long.valueOf(mDbHelper.getProperty(DbProperties.CALL_LOG_LAST_SYNCED, "0")); } catch (NumberFormatException e) { return 0; } } private void setLastTimeSynced(long time) { mDbHelper.setProperty(DbProperties.CALL_LOG_LAST_SYNCED, String.valueOf(time)); } private static void waitForAccess(CountDownLatch latch) { if (latch == null) { return; } while (true) { try { latch.await(); return; } catch (InterruptedException e) { Thread.currentThread().interrupt(); } } } private void scheduleBackgroundTask(int task, Object arg) { mBackgroundHandler.obtainMessage(task, arg).sendToTarget(); } private void performBackgroundTask(int task, Object arg) { if (task == BACKGROUND_TASK_INITIALIZE) { try { final Context context = getContext(); if (context != null) { final UserManager userManager = UserUtils.getUserManager(context); if (userManager != null && !userManager.hasUserRestriction(UserManager.DISALLOW_OUTGOING_CALLS)) { syncEntriesFromPrimaryUser(userManager); } } } finally { mReadAccessLatch.countDown(); mReadAccessLatch = null; } } else if (task == BACKGROUND_TASK_ADJUST_PHONE_ACCOUNT) { adjustForNewPhoneAccountInternal((PhoneAccountHandle) arg); } } }