/* * Copyright (C) 2006 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 android.provider; import android.Manifest; import android.annotation.CallbackExecutor; import android.annotation.FlaggedApi; import android.annotation.IntDef; import android.annotation.LongDef; import android.annotation.NonNull; import android.annotation.RequiresPermission; import android.annotation.SuppressLint; import android.annotation.SystemApi; import android.annotation.UserHandleAware; import android.compat.annotation.UnsupportedAppUsage; import android.content.ContentProvider; import android.content.ContentResolver; import android.content.ContentValues; import android.content.Context; import android.content.Intent; import android.content.pm.UserInfo; import android.database.Cursor; import android.location.Country; import android.location.CountryDetector; import android.net.Uri; import android.os.Build; import android.os.OutcomeReceiver; import android.os.ParcelFileDescriptor; import android.os.ParcelableException; import android.os.UserHandle; import android.os.UserManager; import android.provider.ContactsContract.CommonDataKinds.Callable; import android.provider.ContactsContract.CommonDataKinds.Phone; import android.provider.ContactsContract.Data; import android.provider.ContactsContract.DataUsageFeedback; import android.telecom.CallerInfo; import android.telecom.PhoneAccount; import android.telecom.PhoneAccountHandle; import android.telecom.TelecomManager; import android.telephony.PhoneNumberUtils; import android.text.TextUtils; import android.util.Log; import com.android.server.telecom.flags.Flags; import java.io.ByteArrayOutputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.util.List; import java.util.Locale; import java.util.Objects; import java.util.concurrent.Executor; /** * The CallLog provider contains information about placed and received calls. */ public class CallLog { private static final String LOG_TAG = "CallLog"; private static final boolean VERBOSE_LOG = false; // DON'T SUBMIT WITH TRUE. public static final String AUTHORITY = "call_log"; /** * The content:// style URL for this provider */ public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY); /** @hide */ public static final String CALL_COMPOSER_SEGMENT = "call_composer"; /** @hide */ public static final Uri CALL_COMPOSER_PICTURE_URI = CONTENT_URI.buildUpon().appendPath(CALL_COMPOSER_SEGMENT).build(); /** * The "shadow" provider stores calllog when the real calllog provider is encrypted. The * real provider will alter copy from it when it starts, and remove the entries in the shadow. * *
See the comment in {@link Calls#addCall} for the details.
*
* @hide
*/
public static final String SHADOW_AUTHORITY = "call_log_shadow";
/** @hide */
public static final Uri SHADOW_CALL_COMPOSER_PICTURE_URI = CALL_COMPOSER_PICTURE_URI.buildUpon()
.authority(SHADOW_AUTHORITY).build();
/**
* Describes an error encountered while storing a call composer picture in the call log.
* @hide
*/
@SystemApi
public static class CallComposerLoggingException extends Throwable {
/**
* Indicates an unknown error.
*/
public static final int ERROR_UNKNOWN = 0;
/**
* Indicates that the process hosting the call log died or otherwise encountered an
* unrecoverable error while storing the picture.
*
* The caller should retry if this error is encountered.
*/
public static final int ERROR_REMOTE_END_CLOSED = 1;
/**
* Indicates that the device has insufficient space to store this picture.
*
* The caller should not retry if this error is encountered.
*/
public static final int ERROR_STORAGE_FULL = 2;
/**
* Indicates that the {@link InputStream} passed to {@link #storeCallComposerPicture}
* was closed.
*
* The caller should retry if this error is encountered, and be sure to not close the stream
* before the callback is called this time.
*/
public static final int ERROR_INPUT_CLOSED = 3;
/** @hide */
@IntDef(prefix = {"ERROR_"}, value = {
ERROR_UNKNOWN,
ERROR_REMOTE_END_CLOSED,
ERROR_STORAGE_FULL,
ERROR_INPUT_CLOSED,
})
@Retention(RetentionPolicy.SOURCE)
public @interface CallComposerLoggingError { }
private final int mErrorCode;
public CallComposerLoggingException(@CallComposerLoggingError int errorCode) {
mErrorCode = errorCode;
}
/**
* @return The error code for this exception.
*/
public @CallComposerLoggingError int getErrorCode() {
return mErrorCode;
}
@Override
public String toString() {
String errorString;
switch (mErrorCode) {
case ERROR_UNKNOWN:
errorString = "UNKNOWN";
break;
case ERROR_REMOTE_END_CLOSED:
errorString = "REMOTE_END_CLOSED";
break;
case ERROR_STORAGE_FULL:
errorString = "STORAGE_FULL";
break;
case ERROR_INPUT_CLOSED:
errorString = "INPUT_CLOSED";
break;
default:
errorString = "[[" + mErrorCode + "]]";
break;
}
return "CallComposerLoggingException: " + errorString;
}
}
/**
* Supplies a call composer picture to the call log for persistent storage.
*
* This method is used by Telephony to store pictures selected by the user or sent from the
* remote party as part of a voice call with call composer. The {@link Uri} supplied in the
* callback can be used to retrieve the image via {@link ContentResolver#openFile} or stored in
* the {@link Calls} table in the {@link Calls#COMPOSER_PHOTO_URI} column.
*
* The caller is responsible for closing the {@link InputStream} after the callback indicating
* success or failure.
*
* @param context An instance of {@link Context}. The picture will be stored to the user
* corresponding to {@link Context#getUser()}.
* @param input An input stream from which the picture to store should be read. The input data
* must be decodeable as either a JPEG, PNG, or GIF image.
* @param executor The {@link Executor} on which to perform the file transfer operation and
* call the supplied callback.
* @param callback Callback that's called after the picture is successfully stored or when an
* error occurs.
* @hide
*/
@SystemApi
@UserHandleAware
@RequiresPermission(allOf = {
Manifest.permission.WRITE_CALL_LOG,
Manifest.permission.INTERACT_ACROSS_USERS
})
public static void storeCallComposerPicture(@NonNull Context context,
@NonNull InputStream input,
@CallbackExecutor @NonNull Executor executor,
@NonNull OutcomeReceiver
* Note: If you want to query the call log and limit the results to a single value, you should
* append the {@link #LIMIT_PARAM_KEY} parameter to the content URI. For example:
*
* The call log provider enforces strict SQL grammar, so you CANNOT append "LIMIT" to the SQL
* query as below:
*
* TYPE: integer
*/
public static final String LIMIT_PARAM_KEY = "limit";
/**
* Form of {@link #CONTENT_URI} which limits the query results to a single result.
*/
private static final Uri CONTENT_URI_LIMIT_1 = CONTENT_URI.buildUpon()
.appendQueryParameter(LIMIT_PARAM_KEY, "1")
.build();
/**
* Query parameter used to specify the starting record to return.
*
* TYPE: integer
*/
public static final String OFFSET_PARAM_KEY = "offset";
/**
* An optional URI parameter which instructs the provider to allow the operation to be
* applied to voicemail records as well.
*
* TYPE: Boolean
*
* Using this parameter with a value of {@code true} will result in a security error if the
* calling package does not have appropriate permissions to access voicemails.
*
* @hide
*/
public static final String ALLOW_VOICEMAILS_PARAM_KEY = "allow_voicemails";
/**
* An optional extra used with {@link #CONTENT_TYPE Calls.CONTENT_TYPE} and
* {@link Intent#ACTION_VIEW} to specify that the presented list of calls should be
* filtered for a particular call type.
*
* Applications implementing a call log UI should check for this extra, and display a
* filtered list of calls based on the specified call type. If not applicable within the
* application's UI, it should be silently ignored.
*
*
* The following example brings up the call log, showing only missed calls.
*
* {@code
* getContentResolver().query(
* Calls.CONTENT_URI.buildUpon().appendQueryParameter(LIMIT_PARAM_KEY, "1")
* .build(),
* null, null, null, null);
* }
*
*
* {@code
* getContentResolver().query(Calls.CONTENT_URI, null, "LIMIT 1", null, null);
* }
*
*/
public static class Calls implements BaseColumns {
/**
* The content:// style URL for this table
*/
public static final Uri CONTENT_URI =
Uri.parse("content://call_log/calls");
/** @hide */
public static final Uri SHADOW_CONTENT_URI =
Uri.parse("content://call_log_shadow/calls");
/**
* The content:// style URL for filtering this table on phone numbers
*/
public static final Uri CONTENT_FILTER_URI =
Uri.parse("content://call_log/calls/filter");
/**
* Query parameter used to limit the number of call logs returned.
*
* Intent intent = new Intent(Intent.ACTION_VIEW);
* intent.setType(CallLog.Calls.CONTENT_TYPE);
* intent.putExtra(CallLog.Calls.EXTRA_CALL_TYPE_FILTER, CallLog.Calls.MISSED_TYPE);
* startActivity(intent);
*
*
Type: INTEGER (int)
* ** Allowed values: *
Type: INTEGER (int)
*/ public static final String FEATURES = "features"; /** Call had video. */ public static final int FEATURES_VIDEO = 1 << 0; /** Call was pulled externally. */ public static final int FEATURES_PULLED_EXTERNALLY = 1 << 1; /** Call was HD. */ public static final int FEATURES_HD_CALL = 1 << 2; /** Call was WIFI call. */ public static final int FEATURES_WIFI = 1 << 3; /** * Indicates the call underwent Assisted Dialing. * @see TelecomManager#EXTRA_USE_ASSISTED_DIALING */ public static final int FEATURES_ASSISTED_DIALING_USED = 1 << 4; /** Call was on RTT at some point */ public static final int FEATURES_RTT = 1 << 5; /** Call was VoLTE */ public static final int FEATURES_VOLTE = 1 << 6; /** * The phone number as the user entered it. *Type: TEXT
*/ public static final String NUMBER = "number"; /** * Boolean indicating whether the call is a business call. */ @FlaggedApi(Flags.FLAG_BUSINESS_CALL_COMPOSER) public static final String IS_BUSINESS_CALL = "is_business_call"; /** * String that stores the asserted display name associated with business call. */ @FlaggedApi(Flags.FLAG_BUSINESS_CALL_COMPOSER) public static final String ASSERTED_DISPLAY_NAME = "asserted_display_name"; /** * The number presenting rules set by the network. * ** Allowed values: *
Type: INTEGER
*/ public static final String NUMBER_PRESENTATION = "presentation"; /** Number is allowed to display for caller id. */ public static final int PRESENTATION_ALLOWED = 1; /** Number is blocked by user. */ public static final int PRESENTATION_RESTRICTED = 2; /** Number is not specified or unknown by network. */ public static final int PRESENTATION_UNKNOWN = 3; /** Number is a pay phone. */ public static final int PRESENTATION_PAYPHONE = 4; /** Number is unavailable. */ public static final int PRESENTATION_UNAVAILABLE = 5; /** * The ISO 3166-1 two letters country code of the country where the * user received or made the call. ** Type: TEXT *
*/ public static final String COUNTRY_ISO = "countryiso"; /** * The date the call occured, in milliseconds since the epoch *Type: INTEGER (long)
*/ public static final String DATE = "date"; /** * The duration of the call in seconds *Type: INTEGER (long)
*/ public static final String DURATION = "duration"; /** * The data usage of the call in bytes. *Type: INTEGER (long)
*/ public static final String DATA_USAGE = "data_usage"; /** * Whether or not the call has been acknowledged *Type: INTEGER (boolean)
*/ public static final String NEW = "new"; /** * The cached name associated with the phone number, if it exists. * *This value is typically filled in by the dialer app for the caching purpose, * so it's not guaranteed to be present, and may not be current if the contact * information associated with this number has changed. *
Type: TEXT
*/ public static final String CACHED_NAME = "name"; /** * The cached number type (Home, Work, etc) associated with the * phone number, if it exists. * *This value is typically filled in by the dialer app for the caching purpose, * so it's not guaranteed to be present, and may not be current if the contact * information associated with this number has changed. *
Type: INTEGER
*/ public static final String CACHED_NUMBER_TYPE = "numbertype"; /** * The cached number label, for a custom number type, associated with the * phone number, if it exists. * *This value is typically filled in by the dialer app for the caching purpose, * so it's not guaranteed to be present, and may not be current if the contact * information associated with this number has changed. *
Type: TEXT
*/ public static final String CACHED_NUMBER_LABEL = "numberlabel"; /** * URI of the voicemail entry. Populated only for {@link #VOICEMAIL_TYPE}. *Type: TEXT
*/ public static final String VOICEMAIL_URI = "voicemail_uri"; /** * Transcription of the call or voicemail entry. This will only be populated for call log * entries of type {@link #VOICEMAIL_TYPE} that have valid transcriptions. */ public static final String TRANSCRIPTION = "transcription"; /** * State of voicemail transcription entry. This will only be populated for call log * entries of type {@link #VOICEMAIL_TYPE}. * @hide */ public static final String TRANSCRIPTION_STATE = "transcription_state"; /** * Whether this item has been read or otherwise consumed by the user. ** Unlike the {@link #NEW} field, which requires the user to have acknowledged the * existence of the entry, this implies the user has interacted with the entry. *
Type: INTEGER (boolean)
*/ public static final String IS_READ = "is_read"; /** * A geocoded location for the number associated with this call. ** The string represents a city, state, or country associated with the number. *
Type: TEXT
*/ public static final String GEOCODED_LOCATION = "geocoded_location"; /** * The cached URI to look up the contact associated with the phone number, if it exists. * *This value is typically filled in by the dialer app for the caching purpose, * so it's not guaranteed to be present, and may not be current if the contact * information associated with this number has changed. *
Type: TEXT
*/ public static final String CACHED_LOOKUP_URI = "lookup_uri"; /** * The cached phone number of the contact which matches this entry, if it exists. * *This value is typically filled in by the dialer app for the caching purpose, * so it's not guaranteed to be present, and may not be current if the contact * information associated with this number has changed. *
Type: TEXT
*/ public static final String CACHED_MATCHED_NUMBER = "matched_number"; /** * The cached normalized(E164) version of the phone number, if it exists. * *This value is typically filled in by the dialer app for the caching purpose, * so it's not guaranteed to be present, and may not be current if the contact * information associated with this number has changed. *
Type: TEXT
*/ public static final String CACHED_NORMALIZED_NUMBER = "normalized_number"; /** * The cached photo id of the picture associated with the phone number, if it exists. * *This value is typically filled in by the dialer app for the caching purpose, * so it's not guaranteed to be present, and may not be current if the contact * information associated with this number has changed. *
Type: INTEGER (long)
*/ public static final String CACHED_PHOTO_ID = "photo_id"; /** * The cached photo URI of the picture associated with the phone number, if it exists. * *This value is typically filled in by the dialer app for the caching purpose, * so it's not guaranteed to be present, and may not be current if the contact * information associated with this number has changed. *
Type: TEXT (URI)
*/ public static final String CACHED_PHOTO_URI = "photo_uri"; /** * The cached phone number, formatted with formatting rules based on the country the * user was in when the call was made or received. * *This value is typically filled in by the dialer app for the caching purpose, * so it's not guaranteed to be present, and may not be current if the contact * information associated with this number has changed. *
Type: TEXT
*/ public static final String CACHED_FORMATTED_NUMBER = "formatted_number"; // Note: PHONE_ACCOUNT_* constant values are "subscription_*" due to a historic naming // that was encoded into call log databases. /** * The component name of the account used to place or receive the call; in string form. *Type: TEXT
*/ public static final String PHONE_ACCOUNT_COMPONENT_NAME = "subscription_component_name"; /** * The identifier for the account used to place or receive the call. *Type: TEXT
*/ public static final String PHONE_ACCOUNT_ID = "subscription_id"; /** * The address associated with the account used to place or receive the call; in string * form. For SIM-based calls, this is the user's own phone number. *Type: TEXT
* * @hide */ public static final String PHONE_ACCOUNT_ADDRESS = "phone_account_address"; /** * Indicates that the entry will be hidden from all queries until the associated * {@link android.telecom.PhoneAccount} is registered with the system. *Type: INTEGER
* * @hide */ public static final String PHONE_ACCOUNT_HIDDEN = "phone_account_hidden"; /** * The subscription ID used to place this call. This is no longer used and has been * replaced with PHONE_ACCOUNT_COMPONENT_NAME/PHONE_ACCOUNT_ID. * For ContactsProvider internal use only. *Type: INTEGER
* * @Deprecated * @hide */ public static final String SUB_ID = "sub_id"; /** * The post-dial portion of a dialed number, including any digits dialed after a * {@link TelecomManager#DTMF_CHARACTER_PAUSE} or a {@link * TelecomManager#DTMF_CHARACTER_WAIT} and these characters themselves. *Type: TEXT
*/ public static final String POST_DIAL_DIGITS = "post_dial_digits"; /** * For an incoming call, the secondary line number the call was received via. * When a SIM card has multiple phone numbers associated with it, the via number indicates * which of the numbers associated with the SIM was called. */ public static final String VIA_NUMBER = "via_number"; /** * Indicates that the entry will be copied from primary user to other users. *Type: INTEGER
* * @hide */ public static final String ADD_FOR_ALL_USERS = "add_for_all_users"; /** * The date the row is last inserted, updated, or marked as deleted, in milliseconds * since the epoch. Read only. *Type: INTEGER (long)
*/ public static final String LAST_MODIFIED = "last_modified"; /** * If a successful call is made that is longer than this duration, update the phone number * in the ContactsProvider with the normalized version of the number, based on the user's * current country code. */ private static final int MIN_DURATION_FOR_NORMALIZED_NUMBER_UPDATE_MS = 1000 * 10; /** * Value for {@link CallLog.Calls#BLOCK_REASON}, set as the default value when a call was * not blocked by a CallScreeningService or any other system call blocking method. */ public static final int BLOCK_REASON_NOT_BLOCKED = 0; /** * Value for {@link CallLog.Calls#BLOCK_REASON}, set when {@link CallLog.Calls#TYPE} is * {@link CallLog.Calls#BLOCKED_TYPE} to indicate that a call was blocked by a * CallScreeningService. The {@link CallLog.Calls#CALL_SCREENING_COMPONENT_NAME} and * {@link CallLog.Calls#CALL_SCREENING_APP_NAME} columns will indicate which call screening * service was responsible for blocking the call. */ public static final int BLOCK_REASON_CALL_SCREENING_SERVICE = 1; /** * Value for {@link CallLog.Calls#BLOCK_REASON}, set when {@link CallLog.Calls#TYPE} is * {@link CallLog.Calls#BLOCKED_TYPE} to indicate that a call was blocked because the user * configured a contact to be sent directly to voicemail. */ public static final int BLOCK_REASON_DIRECT_TO_VOICEMAIL = 2; /** * Value for {@link CallLog.Calls#BLOCK_REASON}, set when {@link CallLog.Calls#TYPE} is * {@link CallLog.Calls#BLOCKED_TYPE} to indicate that a call was blocked because it is * in the BlockedNumbers provider. */ public static final int BLOCK_REASON_BLOCKED_NUMBER = 3; /** * Value for {@link CallLog.Calls#BLOCK_REASON}, set when {@link CallLog.Calls#TYPE} is * {@link CallLog.Calls#BLOCKED_TYPE} to indicate that a call was blocked because the user * has chosen to block all calls from unknown numbers. */ public static final int BLOCK_REASON_UNKNOWN_NUMBER = 4; /** * Value for {@link CallLog.Calls#BLOCK_REASON}, set when {@link CallLog.Calls#TYPE} is * {@link CallLog.Calls#BLOCKED_TYPE} to indicate that a call was blocked because the user * has chosen to block all calls from restricted numbers. */ public static final int BLOCK_REASON_RESTRICTED_NUMBER = 5; /** * Value for {@link CallLog.Calls#BLOCK_REASON}, set when {@link CallLog.Calls#TYPE} is * {@link CallLog.Calls#BLOCKED_TYPE} to indicate that a call was blocked because the user * has chosen to block all calls from pay phones. */ public static final int BLOCK_REASON_PAY_PHONE = 6; /** * Value for {@link CallLog.Calls#BLOCK_REASON}, set when {@link CallLog.Calls#TYPE} is * {@link CallLog.Calls#BLOCKED_TYPE} to indicate that a call was blocked because the user * has chosen to block all calls from numbers not in their contacts. */ public static final int BLOCK_REASON_NOT_IN_CONTACTS = 7; /** * The ComponentName of the CallScreeningService which blocked this call. Will be * populated when the {@link CallLog.Calls#TYPE} is {@link CallLog.Calls#BLOCKED_TYPE}. *Type: TEXT
*/ public static final String CALL_SCREENING_COMPONENT_NAME = "call_screening_component_name"; /** * The name of the app which blocked a call. Will be populated when the * {@link CallLog.Calls#TYPE} is {@link CallLog.Calls#BLOCKED_TYPE}. Provided as a * convenience so that the call log can still indicate which app blocked a call, even if * that app is no longer installed. *Type: TEXT
*/ public static final String CALL_SCREENING_APP_NAME = "call_screening_app_name"; /** * Where the {@link CallLog.Calls#TYPE} is {@link CallLog.Calls#BLOCKED_TYPE}, * indicates the reason why a call is blocked. *Type: INTEGER
* ** Allowed values: *
Type: INTEGER
* ** There are two main cases. Auto missed cases and user missed cases. Default value is: *
* Auto missed cases are those where a call was missed because it was not possible for the * incoming call to be presented to the user at all. Possible values are: *
* User missed cases are those where the incoming call was presented to the user, but * factors such as a low ringing volume may have contributed to the call being missed. * Following bits can be set to indicate possible reasons for this: *
Type: TEXT
*/ public static final String SUBJECT = "subject"; /** * Used as a value in the {@link #PRIORITY} column. * * Indicates that the call is of normal priority. This is also the default value for calls * that did not include call composer elements. */ public static final int PRIORITY_NORMAL = 0; /** * Used as a value in the {@link #PRIORITY} column. * * Indicates that the call is of urgent priority. */ public static final int PRIORITY_URGENT = 1; /** * The priority of the call, as delivered via call composer. * * For outgoing calls, contains the priority set by the local user. For incoming calls, * contains the priority set by the remote caller. If no priority was set or the call * did not include call composer elements, defaults to {@link #PRIORITY_NORMAL}. * Valid values are {@link #PRIORITY_NORMAL} and {@link #PRIORITY_URGENT}. *Type: INTEGER
*/ public static final String PRIORITY = "priority"; /** * A reference to the picture that was sent via call composer. * * The string contained in this field should be converted to an {@link Uri} via * {@link Uri#parse(String)}, then passed to {@link ContentResolver#openFileDescriptor} * in order to obtain a file descriptor to access the picture data. * * The user may choose to delete the picture associated with a call independently of the * call log entry, in which case {@link ContentResolver#openFileDescriptor} may throw a * {@link FileNotFoundException}. * * Note that pictures sent or received via call composer will not be included in any * backups of the call log. * *Type: TEXT
*/ public static final String COMPOSER_PHOTO_URI = "composer_photo_uri"; /** * A reference to the location that was sent via call composer. * * This column contains the content URI of the corresponding entry in {@link Locations} * table, which contains the actual location data. The * {@link Manifest.permission#ACCESS_FINE_LOCATION} permission is required to access that * table. * * If your app has the appropriate permissions, the location data may be obtained by * converting the value of this column to an {@link Uri} via {@link Uri#parse}, then passing * the result to {@link ContentResolver#query}. * * The user may choose to delete the location associated with a call independently of the * call log entry, in which case the {@link Cursor} returned from * {@link ContentResolver#query} will either be {@code null} or empty, with * {@link Cursor#getCount()} returning {@code 0}. * * This column will not be populated when a call is received while the device is locked, and * it will not be part of any backups. * *Type: TEXT
*/ public static final String LOCATION = "location"; /** * A reference to indicate whether phone account migration process is pending. * * Before Android 13, {@link PhoneAccountHandle#getId()} returns the ICCID for Telephony * PhoneAccountHandle. Starting from Android 13, {@link PhoneAccountHandle#getId()} returns * the Subscription ID for Telephony PhoneAccountHandle. A phone account migration process * is to ensure this PhoneAccountHandle migration process cross the Android versions in * the CallLog database. * *Type: INTEGER
* @hide */ public static final String IS_PHONE_ACCOUNT_MIGRATION_PENDING = "is_call_log_phone_account_migration_pending"; /** * Adds a call to the call log. * * @param ci the CallerInfo object to get the target contact from. Can be null * if the contact is unknown. * @param context the context used to get the ContentResolver * @param number the phone number to be added to the calls db * @param presentation enum value from TelecomManager.PRESENTATION_xxx, which * is set by the network and denotes the number presenting rules for * "allowed", "payphone", "restricted" or "unknown" * @param callType enumerated values for "incoming", "outgoing", or "missed" * @param features features of the call (e.g. Video). * @param accountHandle The accountHandle object identifying the provider of the call * @param start time stamp for the call in milliseconds * @param duration call duration in seconds * @param dataUsage data usage for the call in bytes, null if data usage was not tracked for * the call. * @param isPhoneAccountMigrationPending whether the PhoneAccountHandle ID need to migrate * @result The URI of the call log entry belonging to the user that made or received this * call. * {@hide} */ public static Uri addCall(CallerInfo ci, Context context, String number, int presentation, int callType, int features, PhoneAccountHandle accountHandle, long start, int duration, Long dataUsage, long missedReason, int isPhoneAccountMigrationPending) { return addCall(ci, context, number, "" /* postDialDigits */, "" /* viaNumber */, presentation, callType, features, accountHandle, start, duration, dataUsage, false /* addForAllUsers */, null /* userToBeInsertedTo */, false /* isRead */, Calls.BLOCK_REASON_NOT_BLOCKED /* callBlockReason */, null /* callScreeningAppName */, null /* callScreeningComponentName */, missedReason, isPhoneAccountMigrationPending); } /** * Adds a call to the call log. * * @param ci the CallerInfo object to get the target contact from. Can be null * if the contact is unknown. * @param context the context used to get the ContentResolver * @param number the phone number to be added to the calls db * @param viaNumber the secondary number that the incoming call received with. If the * call was received with the SIM assigned number, then this field must be ''. * @param presentation enum value from TelecomManager.PRESENTATION_xxx, which * is set by the network and denotes the number presenting rules for * "allowed", "payphone", "restricted" or "unknown" * @param callType enumerated values for "incoming", "outgoing", or "missed" * @param features features of the call (e.g. Video). * @param accountHandle The accountHandle object identifying the provider of the call * @param start time stamp for the call in milliseconds * @param duration call duration in seconds * @param dataUsage data usage for the call in bytes, null if data usage was not tracked for * the call. * @param addForAllUsers If true, the call is added to the call log of all currently * running users. The caller must have the MANAGE_USERS permission if this is true. * @param userToBeInsertedTo {@link UserHandle} of user that the call is going to be * inserted to. null if it is inserted to the current user. The * value is ignored if @{link addForAllUsers} is true. * @param isPhoneAccountMigrationPending whether the PhoneAccountHandle ID need to migrate * @result The URI of the call log entry belonging to the user that made or received this * call. * {@hide} */ public static Uri addCall(CallerInfo ci, Context context, String number, String postDialDigits, String viaNumber, int presentation, int callType, int features, PhoneAccountHandle accountHandle, long start, int duration, Long dataUsage, boolean addForAllUsers, UserHandle userToBeInsertedTo, long missedReason, int isPhoneAccountMigrationPending) { return addCall(ci, context, number, postDialDigits, viaNumber, presentation, callType, features, accountHandle, start, duration, dataUsage, addForAllUsers, userToBeInsertedTo, false /* isRead */ , Calls.BLOCK_REASON_NOT_BLOCKED /* callBlockReason */, null /* callScreeningAppName */, null /* callScreeningComponentName */, missedReason, isPhoneAccountMigrationPending); } /** * Adds a call to the call log. * * @param ci the CallerInfo object to get the target contact from. Can be null * if the contact is unknown. * @param context the context used to get the ContentResolver * @param number the phone number to be added to the calls db * @param postDialDigits the post-dial digits that were dialed after the number, * if it was outgoing. Otherwise it is ''. * @param viaNumber the secondary number that the incoming call received with. If the * call was received with the SIM assigned number, then this field must be ''. * @param presentation enum value from TelecomManager.PRESENTATION_xxx, which * is set by the network and denotes the number presenting rules for * "allowed", "payphone", "restricted" or "unknown" * @param callType enumerated values for "incoming", "outgoing", or "missed" * @param features features of the call (e.g. Video). * @param accountHandle The accountHandle object identifying the provider of the call * @param start time stamp for the call in milliseconds * @param duration call duration in seconds * @param dataUsage data usage for the call in bytes, null if data usage was not tracked for * the call. * @param addForAllUsers If true, the call is added to the call log of all currently * running users. The caller must have the MANAGE_USERS permission if this is true. * @param userToBeInsertedTo {@link UserHandle} of user that the call is going to be * inserted to. null if it is inserted to the current user. The * value is ignored if @{link addForAllUsers} is true. * @param isRead Flag to show if the missed call log has been read by the user or not. * Used for call log restore of missed calls. * @param callBlockReason The reason why the call is blocked. * @param callScreeningAppName The call screening application name which block the call. * @param callScreeningComponentName The call screening component name which block the call. * @param missedReason The encoded missed information of the call. * @param isPhoneAccountMigrationPending whether the PhoneAccountHandle ID need to migrate * * @result The URI of the call log entry belonging to the user that made or received this * call. This could be of the shadow provider. Do not return it to non-system apps, * as they don't have permissions. * {@hide} */ @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.P, trackingBug = 115609023) public static Uri addCall(CallerInfo ci, Context context, String number, String postDialDigits, String viaNumber, int presentation, int callType, int features, PhoneAccountHandle accountHandle, long start, int duration, Long dataUsage, boolean addForAllUsers, UserHandle userToBeInsertedTo, boolean isRead, int callBlockReason, CharSequence callScreeningAppName, String callScreeningComponentName, long missedReason, int isPhoneAccountMigrationPending) { AddCallParams.AddCallParametersBuilder builder = new AddCallParams.AddCallParametersBuilder(); builder.setCallerInfo(ci); builder.setNumber(number); builder.setPostDialDigits(postDialDigits); builder.setViaNumber(viaNumber); builder.setPresentation(presentation); builder.setCallType(callType); builder.setFeatures(features); builder.setAccountHandle(accountHandle); builder.setStart(start); builder.setDuration(duration); builder.setDataUsage(dataUsage == null ? Long.MIN_VALUE : dataUsage); builder.setAddForAllUsers(addForAllUsers); builder.setUserToBeInsertedTo(userToBeInsertedTo); builder.setIsRead(isRead); builder.setCallBlockReason(callBlockReason); builder.setCallScreeningAppName(callScreeningAppName); builder.setCallScreeningComponentName(callScreeningComponentName); builder.setMissedReason(missedReason); builder.setIsPhoneAccountMigrationPending(isPhoneAccountMigrationPending); return addCall(context, builder.build()); } /** * Adds a call to the call log, using the provided parameters * @result The URI of the call log entry belonging to the user that made or received this * call. This could be of the shadow provider. Do not return it to non-system apps, * as they don't have permissions. * @hide */ public static @NonNull Uri addCall( @NonNull Context context, @NonNull AddCallParams params) { if (VERBOSE_LOG) { Log.v(LOG_TAG, String.format("Add call: number=%s, user=%s, for all=%s", params.mNumber, params.mUserToBeInsertedTo, params.mAddForAllUsers)); } final ContentResolver resolver = context.getContentResolver(); String accountAddress = getLogAccountAddress(context, params.mAccountHandle); int numberPresentation = getLogNumberPresentation(params.mNumber, params.mPresentation); String name = (params.mCallerInfo != null) ? params.mCallerInfo.getName() : ""; if (numberPresentation != PRESENTATION_ALLOWED) { params.mNumber = ""; if (params.mCallerInfo != null) { name = ""; } } // accountHandle information String accountComponentString = null; String accountId = null; if (params.mAccountHandle != null) { accountComponentString = params.mAccountHandle.getComponentName().flattenToString(); accountId = params.mAccountHandle.getId(); } ContentValues values = new ContentValues(14); values.put(NUMBER, params.mNumber); values.put(POST_DIAL_DIGITS, params.mPostDialDigits); values.put(VIA_NUMBER, params.mViaNumber); values.put(NUMBER_PRESENTATION, Integer.valueOf(numberPresentation)); values.put(TYPE, Integer.valueOf(params.mCallType)); values.put(FEATURES, params.mFeatures); values.put(DATE, Long.valueOf(params.mStart)); values.put(DURATION, Long.valueOf(params.mDuration)); if (params.mDataUsage != Long.MIN_VALUE) { values.put(DATA_USAGE, params.mDataUsage); } values.put(PHONE_ACCOUNT_COMPONENT_NAME, accountComponentString); values.put(PHONE_ACCOUNT_ID, accountId); values.put(PHONE_ACCOUNT_ADDRESS, accountAddress); values.put(NEW, Integer.valueOf(1)); values.put(CACHED_NAME, name); values.put(ADD_FOR_ALL_USERS, params.mAddForAllUsers ? 1 : 0); if (params.mCallType == MISSED_TYPE) { values.put(IS_READ, Integer.valueOf(params.mIsRead ? 1 : 0)); } values.put(BLOCK_REASON, params.mCallBlockReason); values.put(CALL_SCREENING_APP_NAME, charSequenceToString(params.mCallScreeningAppName)); values.put(CALL_SCREENING_COMPONENT_NAME, params.mCallScreeningComponentName); values.put(MISSED_REASON, Long.valueOf(params.mMissedReason)); values.put(PRIORITY, params.mPriority); values.put(SUBJECT, params.mSubject); if (params.mPictureUri != null) { values.put(COMPOSER_PHOTO_URI, params.mPictureUri.toString()); } values.put(IS_PHONE_ACCOUNT_MIGRATION_PENDING, params.mIsPhoneAccountMigrationPending); if (Flags.businessCallComposer()) { values.put(IS_BUSINESS_CALL, Integer.valueOf(params.mIsBusinessCall ? 1 : 0)); values.put(ASSERTED_DISPLAY_NAME, params.mAssertedDisplayName); } if ((params.mCallerInfo != null) && (params.mCallerInfo.getContactId() > 0)) { // Update usage information for the number associated with the contact ID. // We need to use both the number and the ID for obtaining a data ID since other // contacts may have the same number. final Cursor cursor; // We should prefer normalized one (probably coming from // Phone.NORMALIZED_NUMBER column) first. If it isn't available try others. if (params.mCallerInfo.normalizedNumber != null) { final String normalizedPhoneNumber = params.mCallerInfo.normalizedNumber; cursor = resolver.query(Phone.CONTENT_URI, new String[] { Phone._ID }, Phone.CONTACT_ID + " =? AND " + Phone.NORMALIZED_NUMBER + " =?", new String[] { String.valueOf(params.mCallerInfo.getContactId()), normalizedPhoneNumber}, null); } else { final String phoneNumber = params.mCallerInfo.getPhoneNumber() != null ? params.mCallerInfo.getPhoneNumber() : params.mNumber; cursor = resolver.query( Uri.withAppendedPath(Callable.CONTENT_FILTER_URI, Uri.encode(phoneNumber)), new String[] { Phone._ID }, Phone.CONTACT_ID + " =?", new String[] { String.valueOf(params.mCallerInfo.getContactId()) }, null); } if (cursor != null) { try { if (cursor.getCount() > 0 && cursor.moveToFirst()) { final String dataId = cursor.getString(0); updateDataUsageStatForData(resolver, dataId); if (params.mDuration >= MIN_DURATION_FOR_NORMALIZED_NUMBER_UPDATE_MS && params.mCallType == Calls.OUTGOING_TYPE && TextUtils.isEmpty(params.mCallerInfo.normalizedNumber)) { updateNormalizedNumber(context, resolver, dataId, params.mNumber); } } } finally { cursor.close(); } } } /* Writing the calllog works in the following way: - All user entries - if user-0 is encrypted, insert to user-0's shadow only. (other users should also be encrypted, so nothing to do for other users.) - if user-0 is decrypted, insert to user-0's real provider, as well as all other users that are running and decrypted and should have calllog. - Single user entry. - If the target user is encryted, insert to its shadow. - Otherwise insert to its real provider. When the (real) calllog provider starts, it copies entries that it missed from elsewhere. - When user-0's (real) provider starts, it copies from user-0's shadow, and clears the shadow. - When other users (real) providers start, unless it shouldn't have calllog entries, - Copy from the user's shadow, and clears the shadow. - Copy from user-0's entries that are FOR_ALL_USERS = 1. (and don't clear it.) */ Uri result = null; final UserManager userManager = context.getSystemService(UserManager.class); final int currentUserId = userManager.getProcessUserId(); if (params.mAddForAllUsers) { if (userManager.isUserUnlocked(UserHandle.SYSTEM)) { // If the user is unlocked, insert to the location provider if a location is // provided. Do not store location if the device is still locked -- this // puts it into device-encrypted storage instead of credential-encrypted // storage. Uri locationUri = maybeInsertLocation(params, resolver, UserHandle.SYSTEM); if (locationUri != null) { values.put(Calls.LOCATION, locationUri.toString()); } } // First, insert to the system user. final Uri uriForSystem = addEntryAndRemoveExpiredEntries( context, userManager, UserHandle.SYSTEM, values); if (uriForSystem == null || SHADOW_AUTHORITY.equals(uriForSystem.getAuthority())) { // This means the system user is still encrypted and the entry has inserted // into the shadow. This means other users are still all encrypted. // Nothing further to do; just return null. return null; } if (UserHandle.USER_SYSTEM == currentUserId) { result = uriForSystem; } // Otherwise, insert to all other users that are running and unlocked. final ListType: REAL
*/ public static final String LATITUDE = "latitude"; /** * Longitude in degrees. See {@link android.location.Location#setLongitude(double)}. *Type: REAL
*/ public static final String LONGITUDE = "longitude"; } }