CallerInfopublic class CallerInfo extends Object Looks up caller information for the given phone number.
{@hide} |
Fields Summary |
---|
private static final String | TAG | private static final boolean | VDBG | public String | namePlease note that, any one of these member variables can be null,
and any accesses to them should be prepared to handle such a case.
Also, it is implied that phoneNumber is more often populated than
name is, (think of calls being dialed/received using numbers where
names are not known to the device), so phoneNumber should serve as
a dependable fallback when name is unavailable.
One other detail here is that this CallerInfo object reflects
information found on a connection, it is an OUTPUT that serves
mainly to display information to the user. In no way is this object
used as input to make a connection, so we can choose to display
whatever human-readable text makes sense to the user for a
connection. This is especially relevant for the phone number field,
since it is the one field that is most likely exposed to the user.
As an example:
1. User dials "911"
2. Device recognizes that this is an emergency number
3. We use the "Emergency Number" string instead of "911" in the
phoneNumber field.
What we're really doing here is treating phoneNumber as an essential
field here, NOT name. We're NOT always guaranteed to have a name
for a connection, but the number should be displayable. | public String | phoneNumber | public String | normalizedNumber | public String | geoDescription | public String | cnapName | public int | numberPresentation | public int | namePresentation | public boolean | contactExists | public String | phoneLabel | public int | numberType | public String | numberLabel | public int | photoResource | public long | contactIdOrZero | public boolean | needUpdate | public android.net.Uri | contactRefUri | public String | lookupKey | public android.net.Uri | contactDisplayPhotoUriContact display photo URI. If a contact has no display photo but a thumbnail, it'll be
the thumbnail URI instead. | public android.net.Uri | contactRingtoneUri | public boolean | shouldSendToVoicemail | public android.graphics.drawable.Drawable | cachedPhotoDrawable representing the caller image. This is essentially
a cache for the image data tied into the connection /
callerinfo object.
This might be a high resolution picture which is more suitable
for full-screen image view than for smaller icons used in some
kinds of notifications.
The {@link #isCachedPhotoCurrent} flag indicates if the image
data needs to be reloaded. | public android.graphics.Bitmap | cachedPhotoIconBitmap representing the caller image which has possibly lower
resolution than {@link #cachedPhoto} and thus more suitable for
icons (like notification icons).
In usual cases this is just down-scaled image of {@link #cachedPhoto}.
If the down-scaling fails, this will just become null.
The {@link #isCachedPhotoCurrent} flag indicates if the image
data needs to be reloaded. | public boolean | isCachedPhotoCurrentBoolean which indicates if {@link #cachedPhoto} and
{@link #cachedPhotoIcon} is fresh enough. If it is false,
those images aren't pointing to valid objects. | private boolean | mIsEmergency | private boolean | mIsVoiceMail |
Constructors Summary |
---|
public CallerInfo()
// TODO: Move all the basic initialization here?
mIsEmergency = false;
mIsVoiceMail = false;
|
Methods Summary |
---|
static com.android.internal.telephony.CallerInfo | doSecondaryLookupIfNecessary(android.content.Context context, java.lang.String number, com.android.internal.telephony.CallerInfo previousResult)Performs another lookup if previous lookup fails and it's a SIP call
and the peer's username is all numeric. Look up the username as it
could be a PSTN number in the contact database.
if (!previousResult.contactExists
&& PhoneNumberUtils.isUriNumber(number)) {
String username = PhoneNumberUtils.getUsernameFromUriNumber(number);
if (PhoneNumberUtils.isGlobalPhoneNumber(username)) {
previousResult = getCallerInfo(context,
Uri.withAppendedPath(PhoneLookup.ENTERPRISE_CONTENT_FILTER_URI,
Uri.encode(username)));
}
}
return previousResult;
| public static com.android.internal.telephony.CallerInfo | getCallerInfo(android.content.Context context, android.net.Uri contactRef, android.database.Cursor cursor)getCallerInfo given a Cursor.
CallerInfo info = new CallerInfo();
info.photoResource = 0;
info.phoneLabel = null;
info.numberType = 0;
info.numberLabel = null;
info.cachedPhoto = null;
info.isCachedPhotoCurrent = false;
info.contactExists = false;
if (VDBG) Rlog.v(TAG, "getCallerInfo() based on cursor...");
if (cursor != null) {
if (cursor.moveToFirst()) {
// TODO: photo_id is always available but not taken
// care of here. Maybe we should store it in the
// CallerInfo object as well.
int columnIndex;
// Look for the name
columnIndex = cursor.getColumnIndex(PhoneLookup.DISPLAY_NAME);
if (columnIndex != -1) {
info.name = cursor.getString(columnIndex);
}
// Look for the number
columnIndex = cursor.getColumnIndex(PhoneLookup.NUMBER);
if (columnIndex != -1) {
info.phoneNumber = cursor.getString(columnIndex);
}
// Look for the normalized number
columnIndex = cursor.getColumnIndex(PhoneLookup.NORMALIZED_NUMBER);
if (columnIndex != -1) {
info.normalizedNumber = cursor.getString(columnIndex);
}
// Look for the label/type combo
columnIndex = cursor.getColumnIndex(PhoneLookup.LABEL);
if (columnIndex != -1) {
int typeColumnIndex = cursor.getColumnIndex(PhoneLookup.TYPE);
if (typeColumnIndex != -1) {
info.numberType = cursor.getInt(typeColumnIndex);
info.numberLabel = cursor.getString(columnIndex);
info.phoneLabel = Phone.getDisplayLabel(context,
info.numberType, info.numberLabel)
.toString();
}
}
// Look for the person_id.
columnIndex = getColumnIndexForPersonId(contactRef, cursor);
if (columnIndex != -1) {
final long contactId = cursor.getLong(columnIndex);
if (contactId != 0 && !Contacts.isEnterpriseContactId(contactId)) {
info.contactIdOrZero = contactId;
if (VDBG) {
Rlog.v(TAG, "==> got info.contactIdOrZero: " + info.contactIdOrZero);
}
}
} else {
// No valid columnIndex, so we can't look up person_id.
Rlog.w(TAG, "Couldn't find contact_id column for " + contactRef);
// Watch out: this means that anything that depends on
// person_id will be broken (like contact photo lookups in
// the in-call UI, for example.)
}
// Contact lookupKey
columnIndex = cursor.getColumnIndex(PhoneLookup.LOOKUP_KEY);
if (columnIndex != -1) {
info.lookupKey = cursor.getString(columnIndex);
}
// Display photo URI.
columnIndex = cursor.getColumnIndex(PhoneLookup.PHOTO_URI);
if ((columnIndex != -1) && (cursor.getString(columnIndex) != null)) {
info.contactDisplayPhotoUri = Uri.parse(cursor.getString(columnIndex));
} else {
info.contactDisplayPhotoUri = null;
}
// look for the custom ringtone, create from the string stored
// in the database.
columnIndex = cursor.getColumnIndex(PhoneLookup.CUSTOM_RINGTONE);
if ((columnIndex != -1) && (cursor.getString(columnIndex) != null)) {
info.contactRingtoneUri = Uri.parse(cursor.getString(columnIndex));
} else {
info.contactRingtoneUri = null;
}
// look for the send to voicemail flag, set it to true only
// under certain circumstances.
columnIndex = cursor.getColumnIndex(PhoneLookup.SEND_TO_VOICEMAIL);
info.shouldSendToVoicemail = (columnIndex != -1) &&
((cursor.getInt(columnIndex)) == 1);
info.contactExists = true;
}
cursor.close();
cursor = null;
}
info.needUpdate = false;
info.name = normalize(info.name);
info.contactRefUri = contactRef;
return info;
| public static com.android.internal.telephony.CallerInfo | getCallerInfo(android.content.Context context, android.net.Uri contactRef)getCallerInfo given a URI, look up in the call-log database
for the uri unique key.
return getCallerInfo(context, contactRef,
CallerInfoAsyncQuery.getCurrentProfileContentResolver(context)
.query(contactRef, null, null, null, null));
| public static com.android.internal.telephony.CallerInfo | getCallerInfo(android.content.Context context, java.lang.String number)getCallerInfo given a phone number, look up in the call-log database
for the matching caller id info.
if (VDBG) Rlog.v(TAG, "getCallerInfo() based on number...");
int subId = SubscriptionManager.getDefaultSubId();
return getCallerInfo(context, number, subId);
| public static com.android.internal.telephony.CallerInfo | getCallerInfo(android.content.Context context, java.lang.String number, int subId)getCallerInfo given a phone number and subscription, look up in the call-log database
for the matching caller id info.
if (TextUtils.isEmpty(number)) {
return null;
}
// Change the callerInfo number ONLY if it is an emergency number
// or if it is the voicemail number. If it is either, take a
// shortcut and skip the query.
if (PhoneNumberUtils.isLocalEmergencyNumber(context, number)) {
return new CallerInfo().markAsEmergency(context);
} else if (PhoneNumberUtils.isVoiceMailNumber(subId, number)) {
return new CallerInfo().markAsVoiceMail();
}
Uri contactUri = Uri.withAppendedPath(PhoneLookup.ENTERPRISE_CONTENT_FILTER_URI,
Uri.encode(number));
CallerInfo info = getCallerInfo(context, contactUri);
info = doSecondaryLookupIfNecessary(context, number, info);
// if no query results were returned with a viable number,
// fill in the original number value we used to query with.
if (TextUtils.isEmpty(info.phoneNumber)) {
info.phoneNumber = number;
}
return info;
| private static int | getColumnIndexForPersonId(android.net.Uri contactRef, android.database.Cursor cursor)Returns the column index to use to find the "person_id" field in
the specified cursor, based on the contact URI that was originally
queried.
This is a helper function for the getCallerInfo() method that takes
a Cursor. Looking up the person_id is nontrivial (compared to all
the other CallerInfo fields) since the column we need to use
depends on what query we originally ran.
Watch out: be sure to not do any database access in this method, since
it's run from the UI thread (see comments below for more info.)
// TODO: This is pretty ugly now, see bug 2269240 for
// more details. The column to use depends upon the type of URL:
// - content://com.android.contacts/data/phones ==> use the "contact_id" column
// - content://com.android.contacts/phone_lookup ==> use the "_ID" column
// - content://com.android.contacts/data ==> use the "contact_id" column
// If it's none of the above, we leave columnIndex=-1 which means
// that the person_id field will be left unset.
//
// The logic here *used* to be based on the mime type of contactRef
// (for example Phone.CONTENT_ITEM_TYPE would tell us to use the
// RawContacts.CONTACT_ID column). But looking up the mime type requires
// a call to context.getContentResolver().getType(contactRef), which
// isn't safe to do from the UI thread since it can cause an ANR if
// the contacts provider is slow or blocked (like during a sync.)
//
// So instead, figure out the column to use for person_id by just
// looking at the URI itself.
if (VDBG) Rlog.v(TAG, "- getColumnIndexForPersonId: contactRef URI = '"
+ contactRef + "'...");
// Warning: Do not enable the following logging (due to ANR risk.)
// if (VDBG) Rlog.v(TAG, "- MIME type: "
// + context.getContentResolver().getType(contactRef));
String url = contactRef.toString();
String columnName = null;
if (url.startsWith("content://com.android.contacts/data/phones")) {
// Direct lookup in the Phone table.
// MIME type: Phone.CONTENT_ITEM_TYPE (= "vnd.android.cursor.item/phone_v2")
if (VDBG) Rlog.v(TAG, "'data/phones' URI; using RawContacts.CONTACT_ID");
columnName = RawContacts.CONTACT_ID;
} else if (url.startsWith("content://com.android.contacts/data")) {
// Direct lookup in the Data table.
// MIME type: Data.CONTENT_TYPE (= "vnd.android.cursor.dir/data")
if (VDBG) Rlog.v(TAG, "'data' URI; using Data.CONTACT_ID");
// (Note Data.CONTACT_ID and RawContacts.CONTACT_ID are equivalent.)
columnName = Data.CONTACT_ID;
} else if (url.startsWith("content://com.android.contacts/phone_lookup")) {
// Lookup in the PhoneLookup table, which provides "fuzzy matching"
// for phone numbers.
// MIME type: PhoneLookup.CONTENT_TYPE (= "vnd.android.cursor.dir/phone_lookup")
if (VDBG) Rlog.v(TAG, "'phone_lookup' URI; using PhoneLookup._ID");
columnName = PhoneLookup._ID;
} else {
Rlog.w(TAG, "Unexpected prefix for contactRef '" + url + "'");
}
int columnIndex = (columnName != null) ? cursor.getColumnIndex(columnName) : -1;
if (VDBG) Rlog.v(TAG, "==> Using column '" + columnName
+ "' (columnIndex = " + columnIndex + ") for person_id lookup...");
return columnIndex;
| private static java.lang.String | getCurrentCountryIso(android.content.Context context, java.util.Locale locale)
String countryIso = null;
CountryDetector detector = (CountryDetector) context.getSystemService(
Context.COUNTRY_DETECTOR);
if (detector != null) {
Country country = detector.detectCountry();
if (country != null) {
countryIso = country.getCountryIso();
} else {
Rlog.e(TAG, "CountryDetector.detectCountry() returned null.");
}
}
if (countryIso == null) {
countryIso = locale.getCountry();
Rlog.w(TAG, "No CountryDetector; falling back to countryIso based on locale: "
+ countryIso);
}
return countryIso;
| protected static java.lang.String | getCurrentCountryIso(android.content.Context context)
return getCurrentCountryIso(context, Locale.getDefault());
| private static java.lang.String | getGeoDescription(android.content.Context context, java.lang.String number)
if (VDBG) Rlog.v(TAG, "getGeoDescription('" + number + "')...");
if (TextUtils.isEmpty(number)) {
return null;
}
PhoneNumberUtil util = PhoneNumberUtil.getInstance();
PhoneNumberOfflineGeocoder geocoder = PhoneNumberOfflineGeocoder.getInstance();
Locale locale = context.getResources().getConfiguration().locale;
String countryIso = getCurrentCountryIso(context, locale);
PhoneNumber pn = null;
try {
if (VDBG) Rlog.v(TAG, "parsing '" + number
+ "' for countryIso '" + countryIso + "'...");
pn = util.parse(number, countryIso);
if (VDBG) Rlog.v(TAG, "- parsed number: " + pn);
} catch (NumberParseException e) {
Rlog.w(TAG, "getGeoDescription: NumberParseException for incoming number '" + number + "'");
}
if (pn != null) {
String description = geocoder.getDescriptionForNumber(pn, locale);
if (VDBG) Rlog.v(TAG, "- got description: '" + description + "'");
return description;
} else {
return null;
}
| public boolean | isEmergencyNumber()
return mIsEmergency;
| public boolean | isVoiceMailNumber()
return mIsVoiceMail;
| com.android.internal.telephony.CallerInfo | markAsEmergency(android.content.Context context)Mark this CallerInfo as an emergency call.
phoneNumber = context.getString(
com.android.internal.R.string.emergency_call_dialog_number_for_display);
photoResource = com.android.internal.R.drawable.picture_emergency;
mIsEmergency = true;
return this;
| com.android.internal.telephony.CallerInfo | markAsVoiceMail()Mark this CallerInfo as a voicemail call. The voicemail label
is obtained from the telephony manager. Caller must hold the
READ_PHONE_STATE permission otherwise the phoneNumber will be
set to null.
int subId = SubscriptionManager.getDefaultSubId();
return markAsVoiceMail(subId);
| com.android.internal.telephony.CallerInfo | markAsVoiceMail(int subId)
mIsVoiceMail = true;
try {
String voiceMailLabel = TelephonyManager.getDefault().getVoiceMailAlphaTag(subId);
phoneNumber = voiceMailLabel;
} catch (SecurityException se) {
// Should never happen: if this process does not have
// permission to retrieve VM tag, it should not have
// permission to retrieve VM number and would not call
// this method.
// Leave phoneNumber untouched.
Rlog.e(TAG, "Cannot access VoiceMail.", se);
}
// TODO: There is no voicemail picture?
// FIXME: FIND ANOTHER ICON
// photoResource = android.R.drawable.badge_voicemail;
return this;
| private static java.lang.String | normalize(java.lang.String s)
if (s == null || s.length() > 0) {
return s;
} else {
return null;
}
| public java.lang.String | toString()
// Warning: never check in this file with VERBOSE_DEBUG = true
// because that will result in PII in the system log.
final boolean VERBOSE_DEBUG = false;
if (VERBOSE_DEBUG) {
return new StringBuilder(384)
.append(super.toString() + " { ")
.append("\nname: " + name)
.append("\nphoneNumber: " + phoneNumber)
.append("\nnormalizedNumber: " + normalizedNumber)
.append("\ngeoDescription: " + geoDescription)
.append("\ncnapName: " + cnapName)
.append("\nnumberPresentation: " + numberPresentation)
.append("\nnamePresentation: " + namePresentation)
.append("\ncontactExits: " + contactExists)
.append("\nphoneLabel: " + phoneLabel)
.append("\nnumberType: " + numberType)
.append("\nnumberLabel: " + numberLabel)
.append("\nphotoResource: " + photoResource)
.append("\ncontactIdOrZero: " + contactIdOrZero)
.append("\nneedUpdate: " + needUpdate)
.append("\ncontactRingtoneUri: " + contactRingtoneUri)
.append("\ncontactDisplayPhotoUri: " + contactDisplayPhotoUri)
.append("\nshouldSendToVoicemail: " + shouldSendToVoicemail)
.append("\ncachedPhoto: " + cachedPhoto)
.append("\nisCachedPhotoCurrent: " + isCachedPhotoCurrent)
.append("\nemergency: " + mIsEmergency)
.append("\nvoicemail " + mIsVoiceMail)
.append("\ncontactExists " + contactExists)
.append(" }")
.toString();
} else {
return new StringBuilder(128)
.append(super.toString() + " { ")
.append("name " + ((name == null) ? "null" : "non-null"))
.append(", phoneNumber " + ((phoneNumber == null) ? "null" : "non-null"))
.append(" }")
.toString();
}
| public void | updateGeoDescription(android.content.Context context, java.lang.String fallbackNumber)Updates this CallerInfo's geoDescription field, based on the raw
phone number in the phoneNumber field.
(Note that the various getCallerInfo() methods do *not* set the
geoDescription automatically; you need to call this method
explicitly to get it.)
String number = TextUtils.isEmpty(phoneNumber) ? fallbackNumber : phoneNumber;
geoDescription = getGeoDescription(context, number);
|
|