| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2014 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 |  | 
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 17 | package android.telecom; | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 18 |  | 
| Tyler Gunn | c9503d6 | 2020-01-27 10:30:51 -0800 | [diff] [blame] | 19 | import static android.Manifest.permission.MODIFY_PHONE_STATE; | 
|  | 20 |  | 
| Tyler Gunn | 5567d74 | 2019-10-31 13:04:37 -0700 | [diff] [blame] | 21 | import android.annotation.NonNull; | 
| Tyler Gunn | c9503d6 | 2020-01-27 10:30:51 -0800 | [diff] [blame] | 22 | import android.annotation.RequiresPermission; | 
| Evan Charlton | 0e094d9 | 2014-11-08 15:49:16 -0800 | [diff] [blame] | 23 | import android.annotation.SystemApi; | 
| Brad Ebinger | 3636d74 | 2019-05-21 15:28:19 -0700 | [diff] [blame] | 24 | import android.content.Intent; | 
| Santos Cordon | cad84a2 | 2015-05-13 11:17:25 -0700 | [diff] [blame] | 25 | import android.graphics.drawable.Icon; | 
| Ihab Awad | 94cf4bf | 2014-07-17 11:21:19 -0700 | [diff] [blame] | 26 | import android.net.Uri; | 
| Tyler Gunn | 25ed2d7 | 2015-10-05 14:14:38 -0700 | [diff] [blame] | 27 | import android.os.Bundle; | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 28 | import android.os.Parcel; | 
|  | 29 | import android.os.Parcelable; | 
| Brad Ebinger | 722cacf | 2021-05-14 01:53:56 +0000 | [diff] [blame] | 30 | import android.telephony.CarrierConfigManager; | 
| Hall Liu | 221f804 | 2020-09-23 15:36:58 -0700 | [diff] [blame] | 31 | import android.telephony.TelephonyManager; | 
| Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 32 | import android.text.TextUtils; | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 33 |  | 
| Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 34 | import java.util.ArrayList; | 
|  | 35 | import java.util.Collections; | 
|  | 36 | import java.util.List; | 
| Tyler Gunn | 3b34781 | 2018-08-24 14:17:05 -0700 | [diff] [blame] | 37 | import java.util.Objects; | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 38 |  | 
|  | 39 | /** | 
| Santos Cordon | 32c65a5 | 2014-10-27 14:57:49 -0700 | [diff] [blame] | 40 | * Represents a distinct method to place or receive a phone call. Apps which can place calls and | 
|  | 41 | * want those calls to be integrated into the dialer and in-call UI should build an instance of | 
| Brian Attwell | ad147f4 | 2014-12-19 11:37:16 -0800 | [diff] [blame] | 42 | * this class and register it with the system using {@link TelecomManager}. | 
| Santos Cordon | 32c65a5 | 2014-10-27 14:57:49 -0700 | [diff] [blame] | 43 | * <p> | 
|  | 44 | * {@link TelecomManager} uses registered {@link PhoneAccount}s to present the user with | 
|  | 45 | * alternative options when placing a phone call. When building a {@link PhoneAccount}, the app | 
| Brian Attwell | ad147f4 | 2014-12-19 11:37:16 -0800 | [diff] [blame] | 46 | * should supply a valid {@link PhoneAccountHandle} that references the connection service | 
| Santos Cordon | 32c65a5 | 2014-10-27 14:57:49 -0700 | [diff] [blame] | 47 | * implementation Telecom will use to interact with the app. | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 48 | */ | 
| Yorke Lee | 400470f | 2015-05-12 13:31:25 -0700 | [diff] [blame] | 49 | public final class PhoneAccount implements Parcelable { | 
| Ihab Awad | 94cf4bf | 2014-07-17 11:21:19 -0700 | [diff] [blame] | 50 |  | 
|  | 51 | /** | 
| Hall Liu | 4bb53ec | 2020-09-29 15:15:24 -0700 | [diff] [blame] | 52 | * Integer extra which determines the order in which {@link PhoneAccount}s are sorted | 
| Hall Liu | 2ef0411 | 2020-09-14 18:34:10 -0700 | [diff] [blame] | 53 | * | 
|  | 54 | * This is an extras key set via {@link Builder#setExtras} which determines the order in which | 
|  | 55 | * {@link PhoneAccount}s from the same {@link ConnectionService} are sorted. The accounts | 
| Hall Liu | 4bb53ec | 2020-09-29 15:15:24 -0700 | [diff] [blame] | 56 | * are sorted in ascending order by this key, and this ordering is used to | 
| Hall Liu | 2ef0411 | 2020-09-14 18:34:10 -0700 | [diff] [blame] | 57 | * determine priority when a call can be placed via multiple accounts. | 
| Hall Liu | 221f804 | 2020-09-23 15:36:58 -0700 | [diff] [blame] | 58 | * | 
|  | 59 | * When multiple {@link PhoneAccount}s are supplied with the same sort order key, no ordering is | 
|  | 60 | * guaranteed between those {@link PhoneAccount}s. Additionally, no ordering is guaranteed | 
|  | 61 | * between {@link PhoneAccount}s that do not supply this extra, and all such accounts | 
|  | 62 | * will be sorted after the accounts that do supply this extra. | 
|  | 63 | * | 
|  | 64 | * An example of a sort order key is slot index (see {@link TelephonyManager#getSlotIndex()}), | 
|  | 65 | * which is the one used by the cell Telephony stack. | 
| Srikanth Chintala | 6242840 | 2017-03-27 19:27:52 +0530 | [diff] [blame] | 66 | * @hide | 
|  | 67 | */ | 
| Hall Liu | 2ef0411 | 2020-09-14 18:34:10 -0700 | [diff] [blame] | 68 | @SystemApi | 
| Srikanth Chintala | 6242840 | 2017-03-27 19:27:52 +0530 | [diff] [blame] | 69 | public static final String EXTRA_SORT_ORDER = | 
|  | 70 | "android.telecom.extra.SORT_ORDER"; | 
|  | 71 |  | 
|  | 72 | /** | 
|  | 73 | * {@link PhoneAccount} extras key (see {@link PhoneAccount#getExtras()}) which determines the | 
| Tyler Gunn | d426b20 | 2015-10-13 13:33:53 -0700 | [diff] [blame] | 74 | * maximum permitted length of a call subject specified via the | 
|  | 75 | * {@link TelecomManager#EXTRA_CALL_SUBJECT} extra on an | 
|  | 76 | * {@link android.content.Intent#ACTION_CALL} intent.  Ultimately a {@link ConnectionService} is | 
|  | 77 | * responsible for enforcing the maximum call subject length when sending the message, however | 
|  | 78 | * this extra is provided so that the user interface can proactively limit the length of the | 
|  | 79 | * call subject as the user types it. | 
|  | 80 | */ | 
|  | 81 | public static final String EXTRA_CALL_SUBJECT_MAX_LENGTH = | 
|  | 82 | "android.telecom.extra.CALL_SUBJECT_MAX_LENGTH"; | 
|  | 83 |  | 
|  | 84 | /** | 
|  | 85 | * {@link PhoneAccount} extras key (see {@link PhoneAccount#getExtras()}) which determines the | 
|  | 86 | * character encoding to be used when determining the length of messages. | 
|  | 87 | * The user interface can use this when determining the number of characters the user may type | 
|  | 88 | * in a call subject.  If empty-string, the call subject message size limit will be enforced on | 
|  | 89 | * a 1:1 basis.  That is, each character will count towards the messages size limit as a single | 
|  | 90 | * character.  If a character encoding is specified, the message size limit will be based on the | 
|  | 91 | * number of bytes in the message per the specified encoding.  See | 
|  | 92 | * {@link #EXTRA_CALL_SUBJECT_MAX_LENGTH} for more information on the call subject maximum | 
|  | 93 | * length. | 
|  | 94 | */ | 
|  | 95 | public static final String EXTRA_CALL_SUBJECT_CHARACTER_ENCODING = | 
|  | 96 | "android.telecom.extra.CALL_SUBJECT_CHARACTER_ENCODING"; | 
|  | 97 |  | 
| Hall Liu | e576fc4 | 2020-01-22 17:17:13 -0800 | [diff] [blame] | 98 | /** | 
|  | 99 | * Boolean {@link PhoneAccount} extras key (see {@link PhoneAccount#getExtras()}) which | 
|  | 100 | * indicates that all calls from this {@link PhoneAccount} should be treated as VoIP calls | 
| Hall Liu | 2ef0411 | 2020-09-14 18:34:10 -0700 | [diff] [blame] | 101 | * rather than cellular calls by the Telecom audio handling logic. | 
| Srikanth Chintala | f77d4a1 | 2017-04-03 18:08:14 +0530 | [diff] [blame] | 102 | */ | 
|  | 103 | public static final String EXTRA_ALWAYS_USE_VOIP_AUDIO_MODE = | 
|  | 104 | "android.telecom.extra.ALWAYS_USE_VOIP_AUDIO_MODE"; | 
|  | 105 |  | 
| Tyler Gunn | d426b20 | 2015-10-13 13:33:53 -0700 | [diff] [blame] | 106 | /** | 
| Tyler Gunn | 8bf7657 | 2017-04-06 15:30:08 -0700 | [diff] [blame] | 107 | * Boolean {@link PhoneAccount} extras key (see {@link PhoneAccount#getExtras()}) which | 
|  | 108 | * indicates whether this {@link PhoneAccount} is capable of supporting a request to handover a | 
| Sanket Padawe | a8eddd4 | 2017-11-03 11:07:35 -0700 | [diff] [blame] | 109 | * connection (see {@code android.telecom.Call#handoverTo()}) to this {@link PhoneAccount} from | 
|  | 110 | * a {@link PhoneAccount} specifying {@link #EXTRA_SUPPORTS_HANDOVER_FROM}. | 
| Tyler Gunn | 8bf7657 | 2017-04-06 15:30:08 -0700 | [diff] [blame] | 111 | * <p> | 
|  | 112 | * A handover request is initiated by the user from the default dialer app to indicate a desire | 
|  | 113 | * to handover a call from one {@link PhoneAccount}/{@link ConnectionService} to another. | 
| Tyler Gunn | 8bf7657 | 2017-04-06 15:30:08 -0700 | [diff] [blame] | 114 | */ | 
|  | 115 | public static final String EXTRA_SUPPORTS_HANDOVER_TO = | 
|  | 116 | "android.telecom.extra.SUPPORTS_HANDOVER_TO"; | 
|  | 117 |  | 
|  | 118 | /** | 
|  | 119 | * Boolean {@link PhoneAccount} extras key (see {@link PhoneAccount#getExtras()}) which | 
| Ta-wei Yen | 9d20d98 | 2017-06-02 11:07:07 -0700 | [diff] [blame] | 120 | * indicates whether this {@link PhoneAccount} supports using a fallback if video calling is | 
|  | 121 | * not available. This extra is for device level support, {@link | 
|  | 122 | * android.telephony.CarrierConfigManager#KEY_ALLOW_VIDEO_CALLING_FALLBACK_BOOL} should also | 
|  | 123 | * be checked to ensure it is not disabled by individual carrier. | 
|  | 124 | * | 
|  | 125 | * @hide | 
|  | 126 | */ | 
|  | 127 | public static final String EXTRA_SUPPORTS_VIDEO_CALLING_FALLBACK = | 
|  | 128 | "android.telecom.extra.SUPPORTS_VIDEO_CALLING_FALLBACK"; | 
|  | 129 |  | 
|  | 130 | /** | 
|  | 131 | * Boolean {@link PhoneAccount} extras key (see {@link PhoneAccount#getExtras()}) which | 
| Tyler Gunn | 8bf7657 | 2017-04-06 15:30:08 -0700 | [diff] [blame] | 132 | * indicates whether this {@link PhoneAccount} is capable of supporting a request to handover a | 
|  | 133 | * connection from this {@link PhoneAccount} to another {@link PhoneAccount}. | 
| Sanket Padawe | a8eddd4 | 2017-11-03 11:07:35 -0700 | [diff] [blame] | 134 | * (see {@code android.telecom.Call#handoverTo()}) which specifies | 
| Tyler Gunn | 8bf7657 | 2017-04-06 15:30:08 -0700 | [diff] [blame] | 135 | * {@link #EXTRA_SUPPORTS_HANDOVER_TO}. | 
|  | 136 | * <p> | 
|  | 137 | * A handover request is initiated by the user from the default dialer app to indicate a desire | 
|  | 138 | * to handover a call from one {@link PhoneAccount}/{@link ConnectionService} to another. | 
| Tyler Gunn | 8bf7657 | 2017-04-06 15:30:08 -0700 | [diff] [blame] | 139 | */ | 
|  | 140 | public static final String EXTRA_SUPPORTS_HANDOVER_FROM = | 
|  | 141 | "android.telecom.extra.SUPPORTS_HANDOVER_FROM"; | 
|  | 142 |  | 
| Tyler Gunn | 9f6f047 | 2017-04-17 18:25:22 -0700 | [diff] [blame] | 143 |  | 
|  | 144 | /** | 
|  | 145 | * Boolean {@link PhoneAccount} extras key (see {@link PhoneAccount#getExtras()}) which | 
|  | 146 | * indicates whether a Self-Managed {@link PhoneAccount} should log its calls to the call log. | 
| Brad Ebinger | bb1a55f | 2017-06-26 13:26:14 -0700 | [diff] [blame] | 147 | * Self-Managed {@link PhoneAccount}s are responsible for their own notifications, so the system | 
|  | 148 | * will not create a notification when a missed call is logged. | 
| Tyler Gunn | 9f6f047 | 2017-04-17 18:25:22 -0700 | [diff] [blame] | 149 | * <p> | 
|  | 150 | * By default, Self-Managed {@link PhoneAccount}s do not log their calls to the call log. | 
|  | 151 | * Setting this extra to {@code true} provides a means for them to log their calls. | 
| Tyler Gunn | 2155c4c | 2018-04-05 09:43:41 -0700 | [diff] [blame] | 152 | * <p> | 
|  | 153 | * Note: Only calls where the {@link Call.Details#getHandle()} {@link Uri#getScheme()} is | 
|  | 154 | * {@link #SCHEME_SIP} or {@link #SCHEME_TEL} will be logged at the current time. | 
| Tyler Gunn | 9f6f047 | 2017-04-17 18:25:22 -0700 | [diff] [blame] | 155 | */ | 
|  | 156 | public static final String EXTRA_LOG_SELF_MANAGED_CALLS = | 
|  | 157 | "android.telecom.extra.LOG_SELF_MANAGED_CALLS"; | 
|  | 158 |  | 
| Tyler Gunn | 8bf7657 | 2017-04-06 15:30:08 -0700 | [diff] [blame] | 159 | /** | 
| Tyler Gunn | acdb686 | 2018-01-29 14:30:52 -0800 | [diff] [blame] | 160 | * Boolean {@link PhoneAccount} extras key (see {@link PhoneAccount#getExtras()}) which | 
|  | 161 | * indicates whether calls for a {@link PhoneAccount} should generate a "call recording tone" | 
|  | 162 | * when the user is recording audio on the device. | 
|  | 163 | * <p> | 
|  | 164 | * The call recording tone is played over the telephony audio stream so that the remote party | 
|  | 165 | * has an audible indication that it is possible their call is being recorded using a call | 
|  | 166 | * recording app on the device. | 
|  | 167 | * <p> | 
|  | 168 | * This extra only has an effect for calls placed via Telephony (e.g. | 
|  | 169 | * {@link #CAPABILITY_SIM_SUBSCRIPTION}). | 
|  | 170 | * <p> | 
|  | 171 | * The call recording tone is a 1400 hz tone which repeats every 15 seconds while recording is | 
|  | 172 | * in progress. | 
|  | 173 | * @hide | 
|  | 174 | */ | 
| Hall Liu | 2ef0411 | 2020-09-14 18:34:10 -0700 | [diff] [blame] | 175 | @SystemApi | 
| Tyler Gunn | acdb686 | 2018-01-29 14:30:52 -0800 | [diff] [blame] | 176 | public static final String EXTRA_PLAY_CALL_RECORDING_TONE = | 
|  | 177 | "android.telecom.extra.PLAY_CALL_RECORDING_TONE"; | 
|  | 178 |  | 
|  | 179 | /** | 
| Sean Kelley | 4d3c178 | 2018-05-22 14:35:27 -0700 | [diff] [blame] | 180 | * Boolean {@link PhoneAccount} extras key (see {@link PhoneAccount#getExtras()} which | 
|  | 181 | * indicates whether calls for a {@link PhoneAccount} should skip call filtering. | 
|  | 182 | * <p> | 
|  | 183 | * If not specified, this will default to false; all calls will undergo call filtering unless | 
|  | 184 | * specifically exempted (e.g. {@link Connection#PROPERTY_EMERGENCY_CALLBACK_MODE}.) However, | 
|  | 185 | * this may be used to skip call filtering when it has already been performed on another device. | 
|  | 186 | * @hide | 
|  | 187 | */ | 
|  | 188 | public static final String EXTRA_SKIP_CALL_FILTERING = | 
|  | 189 | "android.telecom.extra.SKIP_CALL_FILTERING"; | 
|  | 190 |  | 
|  | 191 | /** | 
| Grace Jia | e99fde9 | 2021-01-19 14:58:01 -0800 | [diff] [blame] | 192 | * Boolean {@link PhoneAccount} extras key (see {@link PhoneAccount#getExtras()}) which | 
|  | 193 | * indicates whether a Self-managed {@link PhoneAccount} want to expose its calls to all | 
|  | 194 | * {@link InCallService} which declares the metadata | 
|  | 195 | * {@link TelecomManager#METADATA_INCLUDE_SELF_MANAGED_CALLS}. | 
|  | 196 | */ | 
|  | 197 | public static final String EXTRA_ADD_SELF_MANAGED_CALLS_TO_INCALLSERVICE = | 
|  | 198 | "android.telecom.extra.ADD_SELF_MANAGED_CALLS_TO_INCALLSERVICE"; | 
|  | 199 |  | 
|  | 200 | /** | 
| Ihab Awad | f8b6988 | 2014-07-25 15:14:01 -0700 | [diff] [blame] | 201 | * Flag indicating that this {@code PhoneAccount} can act as a connection manager for | 
|  | 202 | * other connections. The {@link ConnectionService} associated with this {@code PhoneAccount} | 
|  | 203 | * will be allowed to manage phone calls including using its own proprietary phone-call | 
|  | 204 | * implementation (like VoIP calling) to make calls instead of the telephony stack. | 
|  | 205 | * <p> | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 206 | * When a user opts to place a call using the SIM-based telephony stack, the | 
|  | 207 | * {@link ConnectionService} associated with this {@code PhoneAccount} will be attempted first | 
|  | 208 | * if the user has explicitly selected it to be used as the default connection manager. | 
| Ihab Awad | 94cf4bf | 2014-07-17 11:21:19 -0700 | [diff] [blame] | 209 | * <p> | 
|  | 210 | * See {@link #getCapabilities} | 
|  | 211 | */ | 
| Ihab Awad | f8b6988 | 2014-07-25 15:14:01 -0700 | [diff] [blame] | 212 | public static final int CAPABILITY_CONNECTION_MANAGER = 0x1; | 
| Ihab Awad | 94cf4bf | 2014-07-17 11:21:19 -0700 | [diff] [blame] | 213 |  | 
|  | 214 | /** | 
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 215 | * Flag indicating that this {@code PhoneAccount} can make phone calls in place of | 
| Evan Charlton | 6eb262c | 2014-07-19 18:18:19 -0700 | [diff] [blame] | 216 | * traditional SIM-based telephony calls. This account will be treated as a distinct method | 
|  | 217 | * for placing calls alongside the traditional SIM-based telephony stack. This flag is | 
| Ihab Awad | f8b6988 | 2014-07-25 15:14:01 -0700 | [diff] [blame] | 218 | * distinct from {@link #CAPABILITY_CONNECTION_MANAGER} in that it is not allowed to manage | 
| Santos Cordon | 32c65a5 | 2014-10-27 14:57:49 -0700 | [diff] [blame] | 219 | * or place calls from the built-in telephony stack. | 
| Ihab Awad | 94cf4bf | 2014-07-17 11:21:19 -0700 | [diff] [blame] | 220 | * <p> | 
|  | 221 | * See {@link #getCapabilities} | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 222 | * <p> | 
| Ihab Awad | 94cf4bf | 2014-07-17 11:21:19 -0700 | [diff] [blame] | 223 | */ | 
|  | 224 | public static final int CAPABILITY_CALL_PROVIDER = 0x2; | 
|  | 225 |  | 
| Ihab Awad | 7522bbd6 | 2014-07-18 15:53:17 -0700 | [diff] [blame] | 226 | /** | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 227 | * Flag indicating that this {@code PhoneAccount} represents a built-in PSTN SIM | 
| Evan Charlton | 6eb262c | 2014-07-19 18:18:19 -0700 | [diff] [blame] | 228 | * subscription. | 
| Ihab Awad | 7522bbd6 | 2014-07-18 15:53:17 -0700 | [diff] [blame] | 229 | * <p> | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 230 | * Only the Android framework can register a {@code PhoneAccount} having this capability. | 
|  | 231 | * <p> | 
|  | 232 | * See {@link #getCapabilities} | 
| Ihab Awad | 7522bbd6 | 2014-07-18 15:53:17 -0700 | [diff] [blame] | 233 | */ | 
|  | 234 | public static final int CAPABILITY_SIM_SUBSCRIPTION = 0x4; | 
|  | 235 |  | 
| Ihab Awad | f8b6988 | 2014-07-25 15:14:01 -0700 | [diff] [blame] | 236 | /** | 
| Tyler Gunn | 58cbd7a | 2016-11-11 11:31:28 -0800 | [diff] [blame] | 237 | * Flag indicating that this {@code PhoneAccount} is currently able to place video calls. | 
|  | 238 | * <p> | 
|  | 239 | * See also {@link #CAPABILITY_SUPPORTS_VIDEO_CALLING} which indicates whether the | 
|  | 240 | * {@code PhoneAccount} supports placing video calls. | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 241 | * <p> | 
|  | 242 | * See {@link #getCapabilities} | 
| Ihab Awad | f8b6988 | 2014-07-25 15:14:01 -0700 | [diff] [blame] | 243 | */ | 
|  | 244 | public static final int CAPABILITY_VIDEO_CALLING = 0x8; | 
|  | 245 |  | 
| Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 246 | /** | 
| Tyler Gunn | a1ed7d1 | 2014-09-08 09:52:22 -0700 | [diff] [blame] | 247 | * Flag indicating that this {@code PhoneAccount} is capable of placing emergency calls. | 
|  | 248 | * By default all PSTN {@code PhoneAccount}s are capable of placing emergency calls. | 
|  | 249 | * <p> | 
|  | 250 | * See {@link #getCapabilities} | 
|  | 251 | */ | 
|  | 252 | public static final int CAPABILITY_PLACE_EMERGENCY_CALLS = 0x10; | 
|  | 253 |  | 
|  | 254 | /** | 
| Evan Charlton | 134dd68 | 2014-11-25 14:12:57 -0800 | [diff] [blame] | 255 | * Flag indicating that this {@code PhoneAccount} is capable of being used by all users. This | 
|  | 256 | * should only be used by system apps (and will be ignored for all other apps trying to use it). | 
|  | 257 | * <p> | 
|  | 258 | * See {@link #getCapabilities} | 
|  | 259 | * @hide | 
|  | 260 | */ | 
| Brian Attwell | ad147f4 | 2014-12-19 11:37:16 -0800 | [diff] [blame] | 261 | @SystemApi | 
| Evan Charlton | 134dd68 | 2014-11-25 14:12:57 -0800 | [diff] [blame] | 262 | public static final int CAPABILITY_MULTI_USER = 0x20; | 
|  | 263 |  | 
|  | 264 | /** | 
| Tyler Gunn | 65a3d34 | 2015-07-27 16:06:16 -0700 | [diff] [blame] | 265 | * Flag indicating that this {@code PhoneAccount} supports a subject for Calls.  This means a | 
|  | 266 | * caller is able to specify a short subject line for an outgoing call.  A capable receiving | 
|  | 267 | * device displays the call subject on the incoming call screen. | 
|  | 268 | * <p> | 
|  | 269 | * See {@link #getCapabilities} | 
|  | 270 | */ | 
|  | 271 | public static final int CAPABILITY_CALL_SUBJECT = 0x40; | 
|  | 272 |  | 
|  | 273 | /** | 
| Bryce Lee | b96d89c | 2015-10-14 16:48:40 -0700 | [diff] [blame] | 274 | * Flag indicating that this {@code PhoneAccount} should only be used for emergency calls. | 
|  | 275 | * <p> | 
|  | 276 | * See {@link #getCapabilities} | 
|  | 277 | * @hide | 
|  | 278 | */ | 
| Hall Liu | 2ef0411 | 2020-09-14 18:34:10 -0700 | [diff] [blame] | 279 | @SystemApi | 
| Bryce Lee | b96d89c | 2015-10-14 16:48:40 -0700 | [diff] [blame] | 280 | public static final int CAPABILITY_EMERGENCY_CALLS_ONLY = 0x80; | 
|  | 281 |  | 
|  | 282 | /** | 
| Tyler Gunn | 9a36575 | 2015-12-09 15:00:18 -0800 | [diff] [blame] | 283 | * Flag indicating that for this {@code PhoneAccount}, the ability to make a video call to a | 
|  | 284 | * number relies on presence.  Should only be set if the {@code PhoneAccount} also has | 
|  | 285 | * {@link #CAPABILITY_VIDEO_CALLING}. | 
|  | 286 | * <p> | 
| Brad Ebinger | 722cacf | 2021-05-14 01:53:56 +0000 | [diff] [blame] | 287 | * Note: As of Android 12, using the | 
| Tyler Gunn | 9a36575 | 2015-12-09 15:00:18 -0800 | [diff] [blame] | 288 | * {@link android.provider.ContactsContract.Data#CARRIER_PRESENCE_VT_CAPABLE} bit on the | 
|  | 289 | * {@link android.provider.ContactsContract.Data#CARRIER_PRESENCE} column to indicate whether | 
| Brad Ebinger | 722cacf | 2021-05-14 01:53:56 +0000 | [diff] [blame] | 290 | * a contact's phone number supports video calling has been deprecated and should only be used | 
|  | 291 | * on devices where {@link CarrierConfigManager#KEY_USE_RCS_PRESENCE_BOOL} is set. On newer | 
|  | 292 | * devices, applications must use {@link android.telephony.ims.RcsUceAdapter} instead to | 
|  | 293 | * determine whether or not a contact's phone number supports carrier video calling. | 
| Tyler Gunn | 9a36575 | 2015-12-09 15:00:18 -0800 | [diff] [blame] | 294 | * <p> | 
|  | 295 | * See {@link #getCapabilities} | 
|  | 296 | */ | 
|  | 297 | public static final int CAPABILITY_VIDEO_CALLING_RELIES_ON_PRESENCE = 0x100; | 
|  | 298 |  | 
|  | 299 | /** | 
| Tyler Gunn | cee9ea6 | 2016-03-24 11:45:43 -0700 | [diff] [blame] | 300 | * Flag indicating that for this {@link PhoneAccount}, emergency video calling is allowed. | 
|  | 301 | * <p> | 
|  | 302 | * When set, Telecom will allow emergency video calls to be placed.  When not set, Telecom will | 
|  | 303 | * convert all outgoing video calls to emergency numbers to audio-only. | 
|  | 304 | * @hide | 
|  | 305 | */ | 
| Hall Liu | 2ef0411 | 2020-09-14 18:34:10 -0700 | [diff] [blame] | 306 | @SystemApi | 
| Tyler Gunn | cee9ea6 | 2016-03-24 11:45:43 -0700 | [diff] [blame] | 307 | public static final int CAPABILITY_EMERGENCY_VIDEO_CALLING = 0x200; | 
|  | 308 |  | 
|  | 309 | /** | 
| Tyler Gunn | 58cbd7a | 2016-11-11 11:31:28 -0800 | [diff] [blame] | 310 | * Flag indicating that this {@link PhoneAccount} supports video calling. | 
|  | 311 | * This is not an indication that the {@link PhoneAccount} is currently able to make a video | 
|  | 312 | * call, but rather that it has the ability to make video calls (but not necessarily at this | 
|  | 313 | * time). | 
|  | 314 | * <p> | 
|  | 315 | * Whether a {@link PhoneAccount} can make a video call is ultimately controlled by | 
|  | 316 | * {@link #CAPABILITY_VIDEO_CALLING}, which indicates whether the {@link PhoneAccount} is | 
|  | 317 | * currently capable of making a video call.  Consider a case where, for example, a | 
|  | 318 | * {@link PhoneAccount} supports making video calls (e.g. | 
|  | 319 | * {@link #CAPABILITY_SUPPORTS_VIDEO_CALLING}), but a current lack of network connectivity | 
|  | 320 | * prevents video calls from being made (e.g. {@link #CAPABILITY_VIDEO_CALLING}). | 
|  | 321 | * <p> | 
|  | 322 | * See {@link #getCapabilities} | 
|  | 323 | */ | 
|  | 324 | public static final int CAPABILITY_SUPPORTS_VIDEO_CALLING = 0x400; | 
|  | 325 |  | 
|  | 326 | /** | 
| Tyler Gunn | f503543 | 2017-01-09 09:43:12 -0800 | [diff] [blame] | 327 | * Flag indicating that this {@link PhoneAccount} is responsible for managing its own | 
|  | 328 | * {@link Connection}s.  This type of {@link PhoneAccount} is ideal for use with standalone | 
|  | 329 | * calling apps which do not wish to use the default phone app for {@link Connection} UX, | 
|  | 330 | * but which want to leverage the call and audio routing capabilities of the Telecom framework. | 
|  | 331 | * <p> | 
|  | 332 | * When set, {@link Connection}s created by the self-managed {@link ConnectionService} will not | 
|  | 333 | * be surfaced to implementations of the {@link InCallService} API.  Thus it is the | 
|  | 334 | * responsibility of a self-managed {@link ConnectionService} to provide a user interface for | 
|  | 335 | * its {@link Connection}s. | 
|  | 336 | * <p> | 
|  | 337 | * Self-managed {@link Connection}s will, however, be displayed on connected Bluetooth devices. | 
|  | 338 | */ | 
|  | 339 | public static final int CAPABILITY_SELF_MANAGED = 0x800; | 
|  | 340 |  | 
|  | 341 | /** | 
| Hall Liu | 95d5587 | 2017-01-25 17:12:49 -0800 | [diff] [blame] | 342 | * Flag indicating that this {@link PhoneAccount} is capable of making a call with an | 
|  | 343 | * RTT (Real-time text) session. | 
|  | 344 | * When set, Telecom will attempt to open an RTT session on outgoing calls that specify | 
|  | 345 | * that they should be placed with an RTT session , and the in-call app will be displayed | 
|  | 346 | * with text entry fields for RTT. Likewise, the in-call app can request that an RTT | 
|  | 347 | * session be opened during a call if this bit is set. | 
|  | 348 | */ | 
|  | 349 | public static final int CAPABILITY_RTT = 0x1000; | 
|  | 350 |  | 
| Brad Ebinger | 3636d74 | 2019-05-21 15:28:19 -0700 | [diff] [blame] | 351 | /** | 
|  | 352 | * Flag indicating that this {@link PhoneAccount} is the preferred SIM subscription for | 
| Hall Liu | 2ef0411 | 2020-09-14 18:34:10 -0700 | [diff] [blame] | 353 | * emergency calls. A {@link PhoneAccount} that sets this capability must also | 
| Brad Ebinger | 3636d74 | 2019-05-21 15:28:19 -0700 | [diff] [blame] | 354 | * set the {@link #CAPABILITY_SIM_SUBSCRIPTION} and {@link #CAPABILITY_PLACE_EMERGENCY_CALLS} | 
| Hall Liu | 2ef0411 | 2020-09-14 18:34:10 -0700 | [diff] [blame] | 355 | * capabilities. There must only be one emergency preferred {@link PhoneAccount} on the device. | 
| Brad Ebinger | 3636d74 | 2019-05-21 15:28:19 -0700 | [diff] [blame] | 356 | * <p> | 
|  | 357 | * When set, Telecom will prefer this {@link PhoneAccount} over others for emergency calling, | 
|  | 358 | * even if the emergency call was placed with a specific {@link PhoneAccount} set using the | 
|  | 359 | * extra{@link TelecomManager#EXTRA_PHONE_ACCOUNT_HANDLE} in | 
|  | 360 | * {@link Intent#ACTION_CALL_EMERGENCY} or {@link TelecomManager#placeCall(Uri, Bundle)}. | 
|  | 361 | * | 
|  | 362 | * @hide | 
|  | 363 | */ | 
| Hall Liu | 2ef0411 | 2020-09-14 18:34:10 -0700 | [diff] [blame] | 364 | @SystemApi | 
| Brad Ebinger | 3636d74 | 2019-05-21 15:28:19 -0700 | [diff] [blame] | 365 | public static final int CAPABILITY_EMERGENCY_PREFERRED = 0x2000; | 
|  | 366 |  | 
| Ravi Paluri | 80aa214 | 2019-12-02 11:57:37 +0530 | [diff] [blame] | 367 | /** | 
|  | 368 | * An adhoc conference call is established by providing a list of addresses to | 
|  | 369 | * {@code TelecomManager#startConference(List<Uri>, int videoState)} where the | 
|  | 370 | * {@link ConnectionService} is responsible for connecting all indicated participants | 
|  | 371 | * to a conference simultaneously. | 
|  | 372 | * This is in contrast to conferences formed by merging calls together (e.g. using | 
|  | 373 | * {@link android.telecom.Call#mergeConference()}). | 
|  | 374 | */ | 
|  | 375 | public static final int CAPABILITY_ADHOC_CONFERENCE_CALLING = 0x4000; | 
|  | 376 |  | 
| Shuo Qian | d24aea3 | 2020-11-24 15:08:49 -0800 | [diff] [blame] | 377 | /** | 
|  | 378 | * Flag indicating whether this {@link PhoneAccount} is capable of supporting the call composer | 
|  | 379 | * functionality for enriched calls. | 
|  | 380 | */ | 
|  | 381 | public static final int CAPABILITY_CALL_COMPOSER = 0x8000; | 
|  | 382 |  | 
| Hunter Knepshield | 2526568 | 2022-01-19 02:25:06 -0800 | [diff] [blame] | 383 | /** | 
|  | 384 | * Flag indicating that this {@link PhoneAccount} provides SIM-based voice calls, potentially as | 
|  | 385 | * an over-the-top solution such as wi-fi calling. | 
|  | 386 | * | 
|  | 387 | * <p>Similar to {@link #CAPABILITY_SUPPORTS_VIDEO_CALLING}, this capability indicates this | 
|  | 388 | * {@link PhoneAccount} has the ability to make voice calls (but not necessarily at this time). | 
|  | 389 | * Whether this {@link PhoneAccount} can make a voice call is ultimately controlled by {@link | 
|  | 390 | * #CAPABILITY_VOICE_CALLING_AVAILABLE}, which indicates whether this {@link PhoneAccount} is | 
|  | 391 | * currently capable of making a voice call. Consider a case where, for example, a {@link | 
|  | 392 | * PhoneAccount} supports making voice calls (e.g. {@link | 
|  | 393 | * #CAPABILITY_SUPPORTS_VOICE_CALLING_INDICATIONS}), but a current lack of network connectivity | 
|  | 394 | * prevents voice calls from being made (e.g. {@link #CAPABILITY_VOICE_CALLING_AVAILABLE}). | 
|  | 395 | * | 
|  | 396 | * <p>In order to declare this capability, this {@link PhoneAccount} must also declare {@link | 
|  | 397 | * #CAPABILITY_SIM_SUBSCRIPTION} or {@link #CAPABILITY_CONNECTION_MANAGER} and satisfy the | 
|  | 398 | * associated requirements. | 
|  | 399 | * | 
|  | 400 | * @see #CAPABILITY_VOICE_CALLING_AVAILABLE | 
|  | 401 | * @see #getCapabilities | 
|  | 402 | */ | 
|  | 403 | public static final int CAPABILITY_SUPPORTS_VOICE_CALLING_INDICATIONS = 0x10000; | 
|  | 404 |  | 
|  | 405 | /** | 
|  | 406 | * Flag indicating that this {@link PhoneAccount} is <em>currently</em> able to place SIM-based | 
|  | 407 | * voice calls, similar to {@link #CAPABILITY_VIDEO_CALLING}. | 
|  | 408 | * | 
|  | 409 | * <p>See also {@link #CAPABILITY_SUPPORTS_VOICE_CALLING_INDICATIONS}, which indicates whether | 
|  | 410 | * the {@code PhoneAccount} supports placing SIM-based voice calls or not. | 
|  | 411 | * | 
|  | 412 | * <p>In order to declare this capability, this {@link PhoneAccount} must also declare {@link | 
|  | 413 | * #CAPABILITY_SIM_SUBSCRIPTION} or {@link #CAPABILITY_CONNECTION_MANAGER} and satisfy the | 
|  | 414 | * associated requirements. | 
|  | 415 | * | 
|  | 416 | * @see #CAPABILITY_SUPPORTS_VOICE_CALLING_INDICATIONS | 
|  | 417 | * @see #getCapabilities | 
|  | 418 | */ | 
|  | 419 | public static final int CAPABILITY_VOICE_CALLING_AVAILABLE = 0x20000; | 
|  | 420 |  | 
|  | 421 | /* NEXT CAPABILITY: 0x40000 */ | 
| Hall Liu | 95d5587 | 2017-01-25 17:12:49 -0800 | [diff] [blame] | 422 |  | 
|  | 423 | /** | 
| Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 424 | * URI scheme for telephone number URIs. | 
|  | 425 | */ | 
|  | 426 | public static final String SCHEME_TEL = "tel"; | 
|  | 427 |  | 
|  | 428 | /** | 
|  | 429 | * URI scheme for voicemail URIs. | 
|  | 430 | */ | 
|  | 431 | public static final String SCHEME_VOICEMAIL = "voicemail"; | 
|  | 432 |  | 
|  | 433 | /** | 
|  | 434 | * URI scheme for SIP URIs. | 
|  | 435 | */ | 
|  | 436 | public static final String SCHEME_SIP = "sip"; | 
|  | 437 |  | 
| Nancy Chen | 3ace54b | 2014-10-22 17:45:26 -0700 | [diff] [blame] | 438 | /** | 
| Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 439 | * Indicating no icon tint is set. | 
| Santos Cordon | cad84a2 | 2015-05-13 11:17:25 -0700 | [diff] [blame] | 440 | * @hide | 
| Nancy Chen | 3ace54b | 2014-10-22 17:45:26 -0700 | [diff] [blame] | 441 | */ | 
| Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 442 | public static final int NO_ICON_TINT = 0; | 
|  | 443 |  | 
|  | 444 | /** | 
|  | 445 | * Indicating no hightlight color is set. | 
|  | 446 | */ | 
|  | 447 | public static final int NO_HIGHLIGHT_COLOR = 0; | 
| Nancy Chen | 3ace54b | 2014-10-22 17:45:26 -0700 | [diff] [blame] | 448 |  | 
| Ihab Awad | 476cc83 | 2014-11-03 09:47:51 -0800 | [diff] [blame] | 449 | /** | 
|  | 450 | * Indicating no resource ID is set. | 
|  | 451 | */ | 
|  | 452 | public static final int NO_RESOURCE_ID = -1; | 
|  | 453 |  | 
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 454 | private final PhoneAccountHandle mAccountHandle; | 
| Andrew Lee | 3085a6c | 2014-09-04 10:59:13 -0700 | [diff] [blame] | 455 | private final Uri mAddress; | 
|  | 456 | private final Uri mSubscriptionAddress; | 
| Ihab Awad | 94cf4bf | 2014-07-17 11:21:19 -0700 | [diff] [blame] | 457 | private final int mCapabilities; | 
| Ihab Awad | 476cc83 | 2014-11-03 09:47:51 -0800 | [diff] [blame] | 458 | private final int mHighlightColor; | 
| Santos Cordon | 146a3e3 | 2014-07-21 00:00:44 -0700 | [diff] [blame] | 459 | private final CharSequence mLabel; | 
|  | 460 | private final CharSequence mShortDescription; | 
| Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 461 | private final List<String> mSupportedUriSchemes; | 
| Christine Hallstrom | 2830ce9 | 2016-11-30 16:06:42 -0800 | [diff] [blame] | 462 | private final int mSupportedAudioRoutes; | 
| Santos Cordon | cad84a2 | 2015-05-13 11:17:25 -0700 | [diff] [blame] | 463 | private final Icon mIcon; | 
| Tyler Gunn | 25ed2d7 | 2015-10-05 14:14:38 -0700 | [diff] [blame] | 464 | private final Bundle mExtras; | 
| Santos Cordon | 91371dc0 | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 465 | private boolean mIsEnabled; | 
| Brad Ebinger | 7298f3b | 2016-06-10 17:19:42 -0700 | [diff] [blame] | 466 | private String mGroupId; | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 467 |  | 
| Tyler Gunn | 3b34781 | 2018-08-24 14:17:05 -0700 | [diff] [blame] | 468 | @Override | 
|  | 469 | public boolean equals(Object o) { | 
|  | 470 | if (this == o) return true; | 
|  | 471 | if (o == null || getClass() != o.getClass()) return false; | 
|  | 472 | PhoneAccount that = (PhoneAccount) o; | 
|  | 473 | return mCapabilities == that.mCapabilities && | 
|  | 474 | mHighlightColor == that.mHighlightColor && | 
|  | 475 | mSupportedAudioRoutes == that.mSupportedAudioRoutes && | 
|  | 476 | mIsEnabled == that.mIsEnabled && | 
|  | 477 | Objects.equals(mAccountHandle, that.mAccountHandle) && | 
|  | 478 | Objects.equals(mAddress, that.mAddress) && | 
|  | 479 | Objects.equals(mSubscriptionAddress, that.mSubscriptionAddress) && | 
|  | 480 | Objects.equals(mLabel, that.mLabel) && | 
|  | 481 | Objects.equals(mShortDescription, that.mShortDescription) && | 
|  | 482 | Objects.equals(mSupportedUriSchemes, that.mSupportedUriSchemes) && | 
|  | 483 | areBundlesEqual(mExtras, that.mExtras) && | 
|  | 484 | Objects.equals(mGroupId, that.mGroupId); | 
|  | 485 | } | 
|  | 486 |  | 
|  | 487 | @Override | 
|  | 488 | public int hashCode() { | 
|  | 489 | return Objects.hash(mAccountHandle, mAddress, mSubscriptionAddress, mCapabilities, | 
|  | 490 | mHighlightColor, mLabel, mShortDescription, mSupportedUriSchemes, | 
|  | 491 | mSupportedAudioRoutes, | 
|  | 492 | mExtras, mIsEnabled, mGroupId); | 
|  | 493 | } | 
|  | 494 |  | 
| Santos Cordon | 32c65a5 | 2014-10-27 14:57:49 -0700 | [diff] [blame] | 495 | /** | 
|  | 496 | * Helper class for creating a {@link PhoneAccount}. | 
|  | 497 | */ | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 498 | public static class Builder { | 
| Christine Hallstrom | 2830ce9 | 2016-11-30 16:06:42 -0800 | [diff] [blame] | 499 |  | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 500 | private PhoneAccountHandle mAccountHandle; | 
| Andrew Lee | 3085a6c | 2014-09-04 10:59:13 -0700 | [diff] [blame] | 501 | private Uri mAddress; | 
|  | 502 | private Uri mSubscriptionAddress; | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 503 | private int mCapabilities; | 
| Christine Hallstrom | 2830ce9 | 2016-11-30 16:06:42 -0800 | [diff] [blame] | 504 | private int mSupportedAudioRoutes = CallAudioState.ROUTE_ALL; | 
| Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 505 | private int mHighlightColor = NO_HIGHLIGHT_COLOR; | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 506 | private CharSequence mLabel; | 
|  | 507 | private CharSequence mShortDescription; | 
| Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 508 | private List<String> mSupportedUriSchemes = new ArrayList<String>(); | 
| Santos Cordon | cad84a2 | 2015-05-13 11:17:25 -0700 | [diff] [blame] | 509 | private Icon mIcon; | 
| Tyler Gunn | 25ed2d7 | 2015-10-05 14:14:38 -0700 | [diff] [blame] | 510 | private Bundle mExtras; | 
| Santos Cordon | 91371dc0 | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 511 | private boolean mIsEnabled = false; | 
| Brad Ebinger | 7298f3b | 2016-06-10 17:19:42 -0700 | [diff] [blame] | 512 | private String mGroupId = ""; | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 513 |  | 
| Santos Cordon | 32c65a5 | 2014-10-27 14:57:49 -0700 | [diff] [blame] | 514 | /** | 
|  | 515 | * Creates a builder with the specified {@link PhoneAccountHandle} and label. | 
|  | 516 | */ | 
| Andrew Lee | 3085a6c | 2014-09-04 10:59:13 -0700 | [diff] [blame] | 517 | public Builder(PhoneAccountHandle accountHandle, CharSequence label) { | 
|  | 518 | this.mAccountHandle = accountHandle; | 
|  | 519 | this.mLabel = label; | 
|  | 520 | } | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 521 |  | 
| Tyler Gunn | a1ed7d1 | 2014-09-08 09:52:22 -0700 | [diff] [blame] | 522 | /** | 
|  | 523 | * Creates an instance of the {@link PhoneAccount.Builder} from an existing | 
|  | 524 | * {@link PhoneAccount}. | 
|  | 525 | * | 
|  | 526 | * @param phoneAccount The {@link PhoneAccount} used to initialize the builder. | 
|  | 527 | */ | 
|  | 528 | public Builder(PhoneAccount phoneAccount) { | 
|  | 529 | mAccountHandle = phoneAccount.getAccountHandle(); | 
|  | 530 | mAddress = phoneAccount.getAddress(); | 
|  | 531 | mSubscriptionAddress = phoneAccount.getSubscriptionAddress(); | 
|  | 532 | mCapabilities = phoneAccount.getCapabilities(); | 
| Ihab Awad | 476cc83 | 2014-11-03 09:47:51 -0800 | [diff] [blame] | 533 | mHighlightColor = phoneAccount.getHighlightColor(); | 
| Tyler Gunn | a1ed7d1 | 2014-09-08 09:52:22 -0700 | [diff] [blame] | 534 | mLabel = phoneAccount.getLabel(); | 
|  | 535 | mShortDescription = phoneAccount.getShortDescription(); | 
|  | 536 | mSupportedUriSchemes.addAll(phoneAccount.getSupportedUriSchemes()); | 
| Santos Cordon | cad84a2 | 2015-05-13 11:17:25 -0700 | [diff] [blame] | 537 | mIcon = phoneAccount.getIcon(); | 
| Santos Cordon | 91371dc0 | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 538 | mIsEnabled = phoneAccount.isEnabled(); | 
| Tyler Gunn | d426b20 | 2015-10-13 13:33:53 -0700 | [diff] [blame] | 539 | mExtras = phoneAccount.getExtras(); | 
| Brad Ebinger | 7298f3b | 2016-06-10 17:19:42 -0700 | [diff] [blame] | 540 | mGroupId = phoneAccount.getGroupId(); | 
| Christine Hallstrom | 2830ce9 | 2016-11-30 16:06:42 -0800 | [diff] [blame] | 541 | mSupportedAudioRoutes = phoneAccount.getSupportedAudioRoutes(); | 
| Tyler Gunn | a1ed7d1 | 2014-09-08 09:52:22 -0700 | [diff] [blame] | 542 | } | 
|  | 543 |  | 
| Santos Cordon | 32c65a5 | 2014-10-27 14:57:49 -0700 | [diff] [blame] | 544 | /** | 
| Tyler Gunn | 3765356 | 2017-03-13 18:15:15 -0700 | [diff] [blame] | 545 | * Sets the label. See {@link PhoneAccount#getLabel()}. | 
|  | 546 | * | 
|  | 547 | * @param label The label of the phone account. | 
|  | 548 | * @return The builder. | 
|  | 549 | * @hide | 
|  | 550 | */ | 
|  | 551 | public Builder setLabel(CharSequence label) { | 
|  | 552 | this.mLabel = label; | 
|  | 553 | return this; | 
|  | 554 | } | 
|  | 555 |  | 
|  | 556 | /** | 
| Santos Cordon | 32c65a5 | 2014-10-27 14:57:49 -0700 | [diff] [blame] | 557 | * Sets the address. See {@link PhoneAccount#getAddress}. | 
|  | 558 | * | 
|  | 559 | * @param value The address of the phone account. | 
|  | 560 | * @return The builder. | 
|  | 561 | */ | 
| Andrew Lee | 3085a6c | 2014-09-04 10:59:13 -0700 | [diff] [blame] | 562 | public Builder setAddress(Uri value) { | 
|  | 563 | this.mAddress = value; | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 564 | return this; | 
|  | 565 | } | 
|  | 566 |  | 
| Santos Cordon | 32c65a5 | 2014-10-27 14:57:49 -0700 | [diff] [blame] | 567 | /** | 
|  | 568 | * Sets the subscription address. See {@link PhoneAccount#getSubscriptionAddress}. | 
|  | 569 | * | 
|  | 570 | * @param value The subscription address. | 
|  | 571 | * @return The builder. | 
|  | 572 | */ | 
| Andrew Lee | 3085a6c | 2014-09-04 10:59:13 -0700 | [diff] [blame] | 573 | public Builder setSubscriptionAddress(Uri value) { | 
|  | 574 | this.mSubscriptionAddress = value; | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 575 | return this; | 
|  | 576 | } | 
|  | 577 |  | 
| Santos Cordon | 32c65a5 | 2014-10-27 14:57:49 -0700 | [diff] [blame] | 578 | /** | 
|  | 579 | * Sets the capabilities. See {@link PhoneAccount#getCapabilities}. | 
|  | 580 | * | 
|  | 581 | * @param value The capabilities to set. | 
|  | 582 | * @return The builder. | 
|  | 583 | */ | 
| Andrew Lee | 3085a6c | 2014-09-04 10:59:13 -0700 | [diff] [blame] | 584 | public Builder setCapabilities(int value) { | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 585 | this.mCapabilities = value; | 
|  | 586 | return this; | 
|  | 587 | } | 
|  | 588 |  | 
| Santos Cordon | 32c65a5 | 2014-10-27 14:57:49 -0700 | [diff] [blame] | 589 | /** | 
| Santos Cordon | cad84a2 | 2015-05-13 11:17:25 -0700 | [diff] [blame] | 590 | * Sets the icon. See {@link PhoneAccount#getIcon}. | 
| Santos Cordon | 32c65a5 | 2014-10-27 14:57:49 -0700 | [diff] [blame] | 591 | * | 
| Santos Cordon | cad84a2 | 2015-05-13 11:17:25 -0700 | [diff] [blame] | 592 | * @param icon The icon to set. | 
| Santos Cordon | 32c65a5 | 2014-10-27 14:57:49 -0700 | [diff] [blame] | 593 | */ | 
| Santos Cordon | cad84a2 | 2015-05-13 11:17:25 -0700 | [diff] [blame] | 594 | public Builder setIcon(Icon icon) { | 
|  | 595 | mIcon = icon; | 
| Ihab Awad | 074bf10 | 2014-10-24 11:42:32 -0700 | [diff] [blame] | 596 | return this; | 
|  | 597 | } | 
|  | 598 |  | 
|  | 599 | /** | 
| Ihab Awad | 476cc83 | 2014-11-03 09:47:51 -0800 | [diff] [blame] | 600 | * Sets the highlight color. See {@link PhoneAccount#getHighlightColor}. | 
| Ihab Awad | 074bf10 | 2014-10-24 11:42:32 -0700 | [diff] [blame] | 601 | * | 
| Ihab Awad | 476cc83 | 2014-11-03 09:47:51 -0800 | [diff] [blame] | 602 | * @param value The highlight color. | 
| Ihab Awad | 074bf10 | 2014-10-24 11:42:32 -0700 | [diff] [blame] | 603 | * @return The builder. | 
|  | 604 | */ | 
| Ihab Awad | 476cc83 | 2014-11-03 09:47:51 -0800 | [diff] [blame] | 605 | public Builder setHighlightColor(int value) { | 
|  | 606 | this.mHighlightColor = value; | 
| Nancy Chen | 3ace54b | 2014-10-22 17:45:26 -0700 | [diff] [blame] | 607 | return this; | 
|  | 608 | } | 
|  | 609 |  | 
| Santos Cordon | 32c65a5 | 2014-10-27 14:57:49 -0700 | [diff] [blame] | 610 | /** | 
|  | 611 | * Sets the short description. See {@link PhoneAccount#getShortDescription}. | 
|  | 612 | * | 
|  | 613 | * @param value The short description. | 
|  | 614 | * @return The builder. | 
|  | 615 | */ | 
| Andrew Lee | 3085a6c | 2014-09-04 10:59:13 -0700 | [diff] [blame] | 616 | public Builder setShortDescription(CharSequence value) { | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 617 | this.mShortDescription = value; | 
|  | 618 | return this; | 
|  | 619 | } | 
|  | 620 |  | 
| Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 621 | /** | 
|  | 622 | * Specifies an additional URI scheme supported by the {@link PhoneAccount}. | 
|  | 623 | * | 
|  | 624 | * @param uriScheme The URI scheme. | 
| Santos Cordon | 32c65a5 | 2014-10-27 14:57:49 -0700 | [diff] [blame] | 625 | * @return The builder. | 
| Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 626 | */ | 
| Andrew Lee | 3085a6c | 2014-09-04 10:59:13 -0700 | [diff] [blame] | 627 | public Builder addSupportedUriScheme(String uriScheme) { | 
| Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 628 | if (!TextUtils.isEmpty(uriScheme) && !mSupportedUriSchemes.contains(uriScheme)) { | 
|  | 629 | this.mSupportedUriSchemes.add(uriScheme); | 
|  | 630 | } | 
|  | 631 | return this; | 
|  | 632 | } | 
|  | 633 |  | 
|  | 634 | /** | 
| Andrew Lee | 3085a6c | 2014-09-04 10:59:13 -0700 | [diff] [blame] | 635 | * Specifies the URI schemes supported by the {@link PhoneAccount}. | 
| Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 636 | * | 
|  | 637 | * @param uriSchemes The URI schemes. | 
| Santos Cordon | 32c65a5 | 2014-10-27 14:57:49 -0700 | [diff] [blame] | 638 | * @return The builder. | 
| Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 639 | */ | 
| Andrew Lee | 3085a6c | 2014-09-04 10:59:13 -0700 | [diff] [blame] | 640 | public Builder setSupportedUriSchemes(List<String> uriSchemes) { | 
|  | 641 | mSupportedUriSchemes.clear(); | 
|  | 642 |  | 
| Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 643 | if (uriSchemes != null && !uriSchemes.isEmpty()) { | 
|  | 644 | for (String uriScheme : uriSchemes) { | 
| Andrew Lee | 3085a6c | 2014-09-04 10:59:13 -0700 | [diff] [blame] | 645 | addSupportedUriScheme(uriScheme); | 
| Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 646 | } | 
|  | 647 | } | 
|  | 648 | return this; | 
|  | 649 | } | 
|  | 650 |  | 
| Tyler Gunn | a1ed7d1 | 2014-09-08 09:52:22 -0700 | [diff] [blame] | 651 | /** | 
| Tyler Gunn | 25ed2d7 | 2015-10-05 14:14:38 -0700 | [diff] [blame] | 652 | * Specifies the extras associated with the {@link PhoneAccount}. | 
|  | 653 | * <p> | 
|  | 654 | * {@code PhoneAccount}s only support extra values of type: {@link String}, {@link Integer}, | 
|  | 655 | * and {@link Boolean}.  Extras which are not of these types are ignored. | 
|  | 656 | * | 
|  | 657 | * @param extras | 
|  | 658 | * @return | 
|  | 659 | */ | 
|  | 660 | public Builder setExtras(Bundle extras) { | 
|  | 661 | mExtras = extras; | 
|  | 662 | return this; | 
|  | 663 | } | 
|  | 664 |  | 
|  | 665 | /** | 
| Santos Cordon | 91371dc0 | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 666 | * Sets the enabled state of the phone account. | 
|  | 667 | * | 
|  | 668 | * @param isEnabled The enabled state. | 
|  | 669 | * @return The builder. | 
|  | 670 | * @hide | 
|  | 671 | */ | 
|  | 672 | public Builder setIsEnabled(boolean isEnabled) { | 
|  | 673 | mIsEnabled = isEnabled; | 
|  | 674 | return this; | 
|  | 675 | } | 
|  | 676 |  | 
|  | 677 | /** | 
| Brad Ebinger | 7298f3b | 2016-06-10 17:19:42 -0700 | [diff] [blame] | 678 | * Sets the group Id of the {@link PhoneAccount}. When a new {@link PhoneAccount} is | 
|  | 679 | * registered to Telecom, it will replace another {@link PhoneAccount} that is already | 
|  | 680 | * registered in Telecom and take on the current user defaults and enabled status. There can | 
|  | 681 | * only be one {@link PhoneAccount} with a non-empty group number registered to Telecom at a | 
|  | 682 | * time. By default, there is no group Id for a {@link PhoneAccount} (an empty String). Only | 
|  | 683 | * grouped {@link PhoneAccount}s with the same {@link ConnectionService} can be replaced. | 
| Tyler Gunn | 5567d74 | 2019-10-31 13:04:37 -0700 | [diff] [blame] | 684 | * <p> | 
| Tyler Gunn | c9503d6 | 2020-01-27 10:30:51 -0800 | [diff] [blame] | 685 | * Note: This is an API specific to the Telephony stack; the group Id will be ignored for | 
|  | 686 | * callers not holding the correct permission. | 
| Tyler Gunn | 5567d74 | 2019-10-31 13:04:37 -0700 | [diff] [blame] | 687 | * | 
| Brad Ebinger | 7298f3b | 2016-06-10 17:19:42 -0700 | [diff] [blame] | 688 | * @param groupId The group Id of the {@link PhoneAccount} that will replace any other | 
|  | 689 | * registered {@link PhoneAccount} in Telecom with the same Group Id. | 
|  | 690 | * @return The builder | 
|  | 691 | * @hide | 
|  | 692 | */ | 
| Tyler Gunn | 5567d74 | 2019-10-31 13:04:37 -0700 | [diff] [blame] | 693 | @SystemApi | 
| Tyler Gunn | c9503d6 | 2020-01-27 10:30:51 -0800 | [diff] [blame] | 694 | @RequiresPermission(MODIFY_PHONE_STATE) | 
| Tyler Gunn | 5567d74 | 2019-10-31 13:04:37 -0700 | [diff] [blame] | 695 | public @NonNull Builder setGroupId(@NonNull String groupId) { | 
| Brad Ebinger | 7298f3b | 2016-06-10 17:19:42 -0700 | [diff] [blame] | 696 | if (groupId != null) { | 
|  | 697 | mGroupId = groupId; | 
|  | 698 | } else { | 
|  | 699 | mGroupId = ""; | 
|  | 700 | } | 
|  | 701 | return this; | 
|  | 702 | } | 
|  | 703 |  | 
|  | 704 | /** | 
| Christine Hallstrom | 2830ce9 | 2016-11-30 16:06:42 -0800 | [diff] [blame] | 705 | * Sets the audio routes supported by this {@link PhoneAccount}. | 
|  | 706 | * | 
|  | 707 | * @param routes bit mask of available routes. | 
|  | 708 | * @return The builder. | 
|  | 709 | * @hide | 
|  | 710 | */ | 
|  | 711 | public Builder setSupportedAudioRoutes(int routes) { | 
|  | 712 | mSupportedAudioRoutes = routes; | 
|  | 713 | return this; | 
|  | 714 | } | 
|  | 715 |  | 
|  | 716 | /** | 
| Tyler Gunn | a1ed7d1 | 2014-09-08 09:52:22 -0700 | [diff] [blame] | 717 | * Creates an instance of a {@link PhoneAccount} based on the current builder settings. | 
|  | 718 | * | 
|  | 719 | * @return The {@link PhoneAccount}. | 
|  | 720 | */ | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 721 | public PhoneAccount build() { | 
| Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 722 | // If no supported URI schemes were defined, assume "tel" is supported. | 
|  | 723 | if (mSupportedUriSchemes.isEmpty()) { | 
| Andrew Lee | 3085a6c | 2014-09-04 10:59:13 -0700 | [diff] [blame] | 724 | addSupportedUriScheme(SCHEME_TEL); | 
| Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 725 | } | 
|  | 726 |  | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 727 | return new PhoneAccount( | 
|  | 728 | mAccountHandle, | 
| Andrew Lee | 3085a6c | 2014-09-04 10:59:13 -0700 | [diff] [blame] | 729 | mAddress, | 
|  | 730 | mSubscriptionAddress, | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 731 | mCapabilities, | 
| Santos Cordon | cad84a2 | 2015-05-13 11:17:25 -0700 | [diff] [blame] | 732 | mIcon, | 
| Ihab Awad | 476cc83 | 2014-11-03 09:47:51 -0800 | [diff] [blame] | 733 | mHighlightColor, | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 734 | mLabel, | 
| Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 735 | mShortDescription, | 
| Santos Cordon | 91371dc0 | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 736 | mSupportedUriSchemes, | 
| Tyler Gunn | 25ed2d7 | 2015-10-05 14:14:38 -0700 | [diff] [blame] | 737 | mExtras, | 
| Christine Hallstrom | 2830ce9 | 2016-11-30 16:06:42 -0800 | [diff] [blame] | 738 | mSupportedAudioRoutes, | 
| Brad Ebinger | 7298f3b | 2016-06-10 17:19:42 -0700 | [diff] [blame] | 739 | mIsEnabled, | 
|  | 740 | mGroupId); | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 741 | } | 
|  | 742 | } | 
|  | 743 |  | 
|  | 744 | private PhoneAccount( | 
| Evan Charlton | 6eb262c | 2014-07-19 18:18:19 -0700 | [diff] [blame] | 745 | PhoneAccountHandle account, | 
| Andrew Lee | 3085a6c | 2014-09-04 10:59:13 -0700 | [diff] [blame] | 746 | Uri address, | 
|  | 747 | Uri subscriptionAddress, | 
| Ihab Awad | 94cf4bf | 2014-07-17 11:21:19 -0700 | [diff] [blame] | 748 | int capabilities, | 
| Santos Cordon | cad84a2 | 2015-05-13 11:17:25 -0700 | [diff] [blame] | 749 | Icon icon, | 
| Ihab Awad | 476cc83 | 2014-11-03 09:47:51 -0800 | [diff] [blame] | 750 | int highlightColor, | 
| Santos Cordon | 146a3e3 | 2014-07-21 00:00:44 -0700 | [diff] [blame] | 751 | CharSequence label, | 
| Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 752 | CharSequence shortDescription, | 
| Santos Cordon | 91371dc0 | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 753 | List<String> supportedUriSchemes, | 
| Tyler Gunn | 25ed2d7 | 2015-10-05 14:14:38 -0700 | [diff] [blame] | 754 | Bundle extras, | 
| Christine Hallstrom | 2830ce9 | 2016-11-30 16:06:42 -0800 | [diff] [blame] | 755 | int supportedAudioRoutes, | 
| Brad Ebinger | 7298f3b | 2016-06-10 17:19:42 -0700 | [diff] [blame] | 756 | boolean isEnabled, | 
|  | 757 | String groupId) { | 
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 758 | mAccountHandle = account; | 
| Andrew Lee | 3085a6c | 2014-09-04 10:59:13 -0700 | [diff] [blame] | 759 | mAddress = address; | 
|  | 760 | mSubscriptionAddress = subscriptionAddress; | 
| Ihab Awad | 94cf4bf | 2014-07-17 11:21:19 -0700 | [diff] [blame] | 761 | mCapabilities = capabilities; | 
| Santos Cordon | cad84a2 | 2015-05-13 11:17:25 -0700 | [diff] [blame] | 762 | mIcon = icon; | 
| Ihab Awad | 476cc83 | 2014-11-03 09:47:51 -0800 | [diff] [blame] | 763 | mHighlightColor = highlightColor; | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 764 | mLabel = label; | 
|  | 765 | mShortDescription = shortDescription; | 
| Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 766 | mSupportedUriSchemes = Collections.unmodifiableList(supportedUriSchemes); | 
| Tyler Gunn | 25ed2d7 | 2015-10-05 14:14:38 -0700 | [diff] [blame] | 767 | mExtras = extras; | 
| Christine Hallstrom | 2830ce9 | 2016-11-30 16:06:42 -0800 | [diff] [blame] | 768 | mSupportedAudioRoutes = supportedAudioRoutes; | 
| Santos Cordon | 91371dc0 | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 769 | mIsEnabled = isEnabled; | 
| Brad Ebinger | 7298f3b | 2016-06-10 17:19:42 -0700 | [diff] [blame] | 770 | mGroupId = groupId; | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 771 | } | 
|  | 772 |  | 
| Andrew Lee | 3085a6c | 2014-09-04 10:59:13 -0700 | [diff] [blame] | 773 | public static Builder builder( | 
|  | 774 | PhoneAccountHandle accountHandle, | 
|  | 775 | CharSequence label) { | 
|  | 776 | return new Builder(accountHandle, label); | 
|  | 777 | } | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 778 |  | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 779 | /** | 
| Tyler Gunn | a1ed7d1 | 2014-09-08 09:52:22 -0700 | [diff] [blame] | 780 | * Returns a builder initialized with the current {@link PhoneAccount} instance. | 
|  | 781 | * | 
|  | 782 | * @return The builder. | 
| Tyler Gunn | a1ed7d1 | 2014-09-08 09:52:22 -0700 | [diff] [blame] | 783 | */ | 
|  | 784 | public Builder toBuilder() { return new Builder(this); } | 
|  | 785 |  | 
|  | 786 | /** | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 787 | * The unique identifier of this {@code PhoneAccount}. | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 788 | * | 
| Evan Charlton | 6eb262c | 2014-07-19 18:18:19 -0700 | [diff] [blame] | 789 | * @return A {@code PhoneAccountHandle}. | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 790 | */ | 
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 791 | public PhoneAccountHandle getAccountHandle() { | 
|  | 792 | return mAccountHandle; | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 793 | } | 
|  | 794 |  | 
|  | 795 | /** | 
| Andrew Lee | 3085a6c | 2014-09-04 10:59:13 -0700 | [diff] [blame] | 796 | * The address (e.g., a phone number) associated with this {@code PhoneAccount}. This | 
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 797 | * represents the destination from which outgoing calls using this {@code PhoneAccount} | 
| Evan Charlton | 6eb262c | 2014-07-19 18:18:19 -0700 | [diff] [blame] | 798 | * will appear to come, if applicable, and the destination to which incoming calls using this | 
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 799 | * {@code PhoneAccount} may be addressed. | 
| Ihab Awad | 94cf4bf | 2014-07-17 11:21:19 -0700 | [diff] [blame] | 800 | * | 
| Andrew Lee | 3085a6c | 2014-09-04 10:59:13 -0700 | [diff] [blame] | 801 | * @return A address expressed as a {@code Uri}, for example, a phone number. | 
| Ihab Awad | 94cf4bf | 2014-07-17 11:21:19 -0700 | [diff] [blame] | 802 | */ | 
| Andrew Lee | 3085a6c | 2014-09-04 10:59:13 -0700 | [diff] [blame] | 803 | public Uri getAddress() { | 
|  | 804 | return mAddress; | 
| Ihab Awad | 94cf4bf | 2014-07-17 11:21:19 -0700 | [diff] [blame] | 805 | } | 
|  | 806 |  | 
|  | 807 | /** | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 808 | * The raw callback number used for this {@code PhoneAccount}, as distinct from | 
| Andrew Lee | 3085a6c | 2014-09-04 10:59:13 -0700 | [diff] [blame] | 809 | * {@link #getAddress()}. For the majority of {@code PhoneAccount}s this should be registered | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 810 | * as {@code null}.  It is used by the system for SIM-based {@code PhoneAccount} registration | 
| Junda Liu | f52ac90 | 2014-09-25 17:36:48 +0000 | [diff] [blame] | 811 | * where {@link android.telephony.TelephonyManager#setLine1NumberForDisplay(String, String)} | 
|  | 812 | * has been used to alter the callback number. | 
|  | 813 | * <p> | 
| Evan Charlton | 222db525 | 2014-07-17 16:59:18 -0700 | [diff] [blame] | 814 | * | 
|  | 815 | * @return The subscription number, suitable for display to the user. | 
|  | 816 | */ | 
| Andrew Lee | 3085a6c | 2014-09-04 10:59:13 -0700 | [diff] [blame] | 817 | public Uri getSubscriptionAddress() { | 
|  | 818 | return mSubscriptionAddress; | 
| Evan Charlton | 222db525 | 2014-07-17 16:59:18 -0700 | [diff] [blame] | 819 | } | 
|  | 820 |  | 
|  | 821 | /** | 
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 822 | * The capabilities of this {@code PhoneAccount}. | 
| Ihab Awad | 94cf4bf | 2014-07-17 11:21:19 -0700 | [diff] [blame] | 823 | * | 
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 824 | * @return A bit field of flags describing this {@code PhoneAccount}'s capabilities. | 
| Ihab Awad | 94cf4bf | 2014-07-17 11:21:19 -0700 | [diff] [blame] | 825 | */ | 
|  | 826 | public int getCapabilities() { | 
|  | 827 | return mCapabilities; | 
|  | 828 | } | 
|  | 829 |  | 
|  | 830 | /** | 
| Tyler Gunn | a1ed7d1 | 2014-09-08 09:52:22 -0700 | [diff] [blame] | 831 | * Determines if this {@code PhoneAccount} has a capabilities specified by the passed in | 
|  | 832 | * bit mask. | 
|  | 833 | * | 
|  | 834 | * @param capability The capabilities to check. | 
| Santos Cordon | 895d4b8 | 2015-06-25 16:41:48 -0700 | [diff] [blame] | 835 | * @return {@code true} if the phone account has the capability. | 
| Tyler Gunn | a1ed7d1 | 2014-09-08 09:52:22 -0700 | [diff] [blame] | 836 | */ | 
|  | 837 | public boolean hasCapabilities(int capability) { | 
|  | 838 | return (mCapabilities & capability) == capability; | 
|  | 839 | } | 
|  | 840 |  | 
|  | 841 | /** | 
| Christine Hallstrom | 2830ce9 | 2016-11-30 16:06:42 -0800 | [diff] [blame] | 842 | * Determines if this {@code PhoneAccount} has routes specified by the passed in bit mask. | 
|  | 843 | * | 
|  | 844 | * @param route The routes to check. | 
|  | 845 | * @return {@code true} if the phone account has the routes. | 
|  | 846 | * @hide | 
|  | 847 | */ | 
|  | 848 | public boolean hasAudioRoutes(int routes) { | 
|  | 849 | return (mSupportedAudioRoutes & routes) == routes; | 
|  | 850 | } | 
|  | 851 |  | 
|  | 852 | /** | 
| Santos Cordon | 146a3e3 | 2014-07-21 00:00:44 -0700 | [diff] [blame] | 853 | * A short label describing a {@code PhoneAccount}. | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 854 | * | 
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 855 | * @return A label for this {@code PhoneAccount}. | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 856 | */ | 
| Santos Cordon | 146a3e3 | 2014-07-21 00:00:44 -0700 | [diff] [blame] | 857 | public CharSequence getLabel() { | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 858 | return mLabel; | 
|  | 859 | } | 
|  | 860 |  | 
|  | 861 | /** | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 862 | * A short paragraph describing this {@code PhoneAccount}. | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 863 | * | 
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 864 | * @return A description for this {@code PhoneAccount}. | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 865 | */ | 
| Santos Cordon | 146a3e3 | 2014-07-21 00:00:44 -0700 | [diff] [blame] | 866 | public CharSequence getShortDescription() { | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 867 | return mShortDescription; | 
|  | 868 | } | 
|  | 869 |  | 
|  | 870 | /** | 
| Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 871 | * The URI schemes supported by this {@code PhoneAccount}. | 
|  | 872 | * | 
|  | 873 | * @return The URI schemes. | 
|  | 874 | */ | 
|  | 875 | public List<String> getSupportedUriSchemes() { | 
|  | 876 | return mSupportedUriSchemes; | 
|  | 877 | } | 
|  | 878 |  | 
|  | 879 | /** | 
| Tyler Gunn | 25ed2d7 | 2015-10-05 14:14:38 -0700 | [diff] [blame] | 880 | * The extras associated with this {@code PhoneAccount}. | 
|  | 881 | * <p> | 
|  | 882 | * A {@link ConnectionService} may provide implementation specific information about the | 
|  | 883 | * {@link PhoneAccount} via the extras. | 
|  | 884 | * | 
|  | 885 | * @return The extras. | 
|  | 886 | */ | 
|  | 887 | public Bundle getExtras() { | 
|  | 888 | return mExtras; | 
|  | 889 | } | 
|  | 890 |  | 
|  | 891 | /** | 
| Christine Hallstrom | 2830ce9 | 2016-11-30 16:06:42 -0800 | [diff] [blame] | 892 | * The audio routes supported by this {@code PhoneAccount}. | 
|  | 893 | * | 
|  | 894 | * @hide | 
|  | 895 | */ | 
|  | 896 | public int getSupportedAudioRoutes() { | 
|  | 897 | return mSupportedAudioRoutes; | 
|  | 898 | } | 
|  | 899 |  | 
|  | 900 | /** | 
| Santos Cordon | cad84a2 | 2015-05-13 11:17:25 -0700 | [diff] [blame] | 901 | * The icon to represent this {@code PhoneAccount}. | 
|  | 902 | * | 
|  | 903 | * @return The icon. | 
|  | 904 | */ | 
|  | 905 | public Icon getIcon() { | 
|  | 906 | return mIcon; | 
|  | 907 | } | 
|  | 908 |  | 
|  | 909 | /** | 
| Santos Cordon | 895d4b8 | 2015-06-25 16:41:48 -0700 | [diff] [blame] | 910 | * Indicates whether the user has enabled this {@code PhoneAccount} or not. This value is only | 
|  | 911 | * populated for {@code PhoneAccount}s returned by {@link TelecomManager#getPhoneAccount}. | 
| Santos Cordon | 91371dc0 | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 912 | * | 
| Santos Cordon | 895d4b8 | 2015-06-25 16:41:48 -0700 | [diff] [blame] | 913 | * @return {@code true} if the account is enabled by the user, {@code false} otherwise. | 
| Santos Cordon | 91371dc0 | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 914 | */ | 
|  | 915 | public boolean isEnabled() { | 
|  | 916 | return mIsEnabled; | 
|  | 917 | } | 
|  | 918 |  | 
|  | 919 | /** | 
| Brad Ebinger | 7298f3b | 2016-06-10 17:19:42 -0700 | [diff] [blame] | 920 | * A non-empty {@link String} representing the group that A {@link PhoneAccount} is in or an | 
|  | 921 | * empty {@link String} if the {@link PhoneAccount} is not in a group. If this | 
|  | 922 | * {@link PhoneAccount} is in a group, this new {@link PhoneAccount} will replace a registered | 
|  | 923 | * {@link PhoneAccount} that is in the same group. When the {@link PhoneAccount} is replaced, | 
|  | 924 | * its user defined defaults and enabled status will also pass to this new {@link PhoneAccount}. | 
|  | 925 | * Only {@link PhoneAccount}s that share the same {@link ConnectionService} can be replaced. | 
|  | 926 | * | 
|  | 927 | * @return A non-empty String Id if this {@link PhoneAccount} belongs to a group. | 
|  | 928 | * @hide | 
|  | 929 | */ | 
|  | 930 | public String getGroupId() { | 
|  | 931 | return mGroupId; | 
|  | 932 | } | 
|  | 933 |  | 
|  | 934 | /** | 
| Andrew Lee | 3085a6c | 2014-09-04 10:59:13 -0700 | [diff] [blame] | 935 | * Determines if the {@link PhoneAccount} supports calls to/from addresses with a specified URI | 
| Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 936 | * scheme. | 
|  | 937 | * | 
|  | 938 | * @param uriScheme The URI scheme to check. | 
| Santos Cordon | 895d4b8 | 2015-06-25 16:41:48 -0700 | [diff] [blame] | 939 | * @return {@code true} if the {@code PhoneAccount} supports calls to/from addresses with the | 
| Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 940 | * specified URI scheme. | 
|  | 941 | */ | 
|  | 942 | public boolean supportsUriScheme(String uriScheme) { | 
|  | 943 | if (mSupportedUriSchemes == null || uriScheme == null) { | 
|  | 944 | return false; | 
|  | 945 | } | 
|  | 946 |  | 
|  | 947 | for (String scheme : mSupportedUriSchemes) { | 
|  | 948 | if (scheme != null && scheme.equals(uriScheme)) { | 
|  | 949 | return true; | 
|  | 950 | } | 
|  | 951 | } | 
|  | 952 | return false; | 
|  | 953 | } | 
|  | 954 |  | 
|  | 955 | /** | 
| Ihab Awad | 476cc83 | 2014-11-03 09:47:51 -0800 | [diff] [blame] | 956 | * A highlight color to use in displaying information about this {@code PhoneAccount}. | 
|  | 957 | * | 
|  | 958 | * @return A hexadecimal color value. | 
|  | 959 | */ | 
|  | 960 | public int getHighlightColor() { | 
|  | 961 | return mHighlightColor; | 
|  | 962 | } | 
|  | 963 |  | 
| Santos Cordon | 91371dc0 | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 964 | /** | 
|  | 965 | * Sets the enabled state of the phone account. | 
|  | 966 | * @hide | 
|  | 967 | */ | 
|  | 968 | public void setIsEnabled(boolean isEnabled) { | 
|  | 969 | mIsEnabled = isEnabled; | 
|  | 970 | } | 
|  | 971 |  | 
| Tyler Gunn | f503543 | 2017-01-09 09:43:12 -0800 | [diff] [blame] | 972 | /** | 
|  | 973 | * @return {@code true} if the {@link PhoneAccount} is self-managed, {@code false} otherwise. | 
|  | 974 | * @hide | 
|  | 975 | */ | 
|  | 976 | public boolean isSelfManaged() { | 
|  | 977 | return (mCapabilities & CAPABILITY_SELF_MANAGED) == CAPABILITY_SELF_MANAGED; | 
|  | 978 | } | 
|  | 979 |  | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 980 | // | 
|  | 981 | // Parcelable implementation | 
|  | 982 | // | 
|  | 983 |  | 
|  | 984 | @Override | 
|  | 985 | public int describeContents() { | 
|  | 986 | return 0; | 
|  | 987 | } | 
|  | 988 |  | 
|  | 989 | @Override | 
|  | 990 | public void writeToParcel(Parcel out, int flags) { | 
| Ihab Awad | 476cc83 | 2014-11-03 09:47:51 -0800 | [diff] [blame] | 991 | if (mAccountHandle == null) { | 
|  | 992 | out.writeInt(0); | 
|  | 993 | } else { | 
|  | 994 | out.writeInt(1); | 
|  | 995 | mAccountHandle.writeToParcel(out, flags); | 
|  | 996 | } | 
|  | 997 | if (mAddress == null) { | 
|  | 998 | out.writeInt(0); | 
|  | 999 | } else { | 
|  | 1000 | out.writeInt(1); | 
|  | 1001 | mAddress.writeToParcel(out, flags); | 
|  | 1002 | } | 
|  | 1003 | if (mSubscriptionAddress == null) { | 
|  | 1004 | out.writeInt(0); | 
|  | 1005 | } else { | 
|  | 1006 | out.writeInt(1); | 
|  | 1007 | mSubscriptionAddress.writeToParcel(out, flags); | 
|  | 1008 | } | 
| Ihab Awad | 94cf4bf | 2014-07-17 11:21:19 -0700 | [diff] [blame] | 1009 | out.writeInt(mCapabilities); | 
| Ihab Awad | 476cc83 | 2014-11-03 09:47:51 -0800 | [diff] [blame] | 1010 | out.writeInt(mHighlightColor); | 
| Santos Cordon | 146a3e3 | 2014-07-21 00:00:44 -0700 | [diff] [blame] | 1011 | out.writeCharSequence(mLabel); | 
|  | 1012 | out.writeCharSequence(mShortDescription); | 
| Ihab Awad | 476cc83 | 2014-11-03 09:47:51 -0800 | [diff] [blame] | 1013 | out.writeStringList(mSupportedUriSchemes); | 
| Santos Cordon | 91371dc0 | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 1014 |  | 
| Santos Cordon | cad84a2 | 2015-05-13 11:17:25 -0700 | [diff] [blame] | 1015 | if (mIcon == null) { | 
|  | 1016 | out.writeInt(0); | 
|  | 1017 | } else { | 
|  | 1018 | out.writeInt(1); | 
|  | 1019 | mIcon.writeToParcel(out, flags); | 
|  | 1020 | } | 
| Santos Cordon | 91371dc0 | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 1021 | out.writeByte((byte) (mIsEnabled ? 1 : 0)); | 
| Tyler Gunn | ef829ec | 2015-10-08 09:46:23 -0700 | [diff] [blame] | 1022 | out.writeBundle(mExtras); | 
| Brad Ebinger | 7298f3b | 2016-06-10 17:19:42 -0700 | [diff] [blame] | 1023 | out.writeString(mGroupId); | 
| Christine Hallstrom | 2830ce9 | 2016-11-30 16:06:42 -0800 | [diff] [blame] | 1024 | out.writeInt(mSupportedAudioRoutes); | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 1025 | } | 
|  | 1026 |  | 
| Jeff Sharkey | 9e8f83d | 2019-02-28 12:06:45 -0700 | [diff] [blame] | 1027 | public static final @android.annotation.NonNull Creator<PhoneAccount> CREATOR | 
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 1028 | = new Creator<PhoneAccount>() { | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 1029 | @Override | 
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 1030 | public PhoneAccount createFromParcel(Parcel in) { | 
|  | 1031 | return new PhoneAccount(in); | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 1032 | } | 
|  | 1033 |  | 
|  | 1034 | @Override | 
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 1035 | public PhoneAccount[] newArray(int size) { | 
|  | 1036 | return new PhoneAccount[size]; | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 1037 | } | 
|  | 1038 | }; | 
|  | 1039 |  | 
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 1040 | private PhoneAccount(Parcel in) { | 
| Ihab Awad | 476cc83 | 2014-11-03 09:47:51 -0800 | [diff] [blame] | 1041 | if (in.readInt() > 0) { | 
|  | 1042 | mAccountHandle = PhoneAccountHandle.CREATOR.createFromParcel(in); | 
|  | 1043 | } else { | 
|  | 1044 | mAccountHandle = null; | 
|  | 1045 | } | 
|  | 1046 | if (in.readInt() > 0) { | 
|  | 1047 | mAddress = Uri.CREATOR.createFromParcel(in); | 
|  | 1048 | } else { | 
|  | 1049 | mAddress = null; | 
|  | 1050 | } | 
|  | 1051 | if (in.readInt() > 0) { | 
|  | 1052 | mSubscriptionAddress = Uri.CREATOR.createFromParcel(in); | 
|  | 1053 | } else { | 
|  | 1054 | mSubscriptionAddress = null; | 
|  | 1055 | } | 
| Ihab Awad | 94cf4bf | 2014-07-17 11:21:19 -0700 | [diff] [blame] | 1056 | mCapabilities = in.readInt(); | 
| Ihab Awad | 476cc83 | 2014-11-03 09:47:51 -0800 | [diff] [blame] | 1057 | mHighlightColor = in.readInt(); | 
| Santos Cordon | 146a3e3 | 2014-07-21 00:00:44 -0700 | [diff] [blame] | 1058 | mLabel = in.readCharSequence(); | 
|  | 1059 | mShortDescription = in.readCharSequence(); | 
| Ihab Awad | 476cc83 | 2014-11-03 09:47:51 -0800 | [diff] [blame] | 1060 | mSupportedUriSchemes = Collections.unmodifiableList(in.createStringArrayList()); | 
| Santos Cordon | cad84a2 | 2015-05-13 11:17:25 -0700 | [diff] [blame] | 1061 | if (in.readInt() > 0) { | 
|  | 1062 | mIcon = Icon.CREATOR.createFromParcel(in); | 
|  | 1063 | } else { | 
|  | 1064 | mIcon = null; | 
|  | 1065 | } | 
| Santos Cordon | 91371dc0 | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 1066 | mIsEnabled = in.readByte() == 1; | 
| Tyler Gunn | ef829ec | 2015-10-08 09:46:23 -0700 | [diff] [blame] | 1067 | mExtras = in.readBundle(); | 
| Brad Ebinger | 7298f3b | 2016-06-10 17:19:42 -0700 | [diff] [blame] | 1068 | mGroupId = in.readString(); | 
| Christine Hallstrom | 2830ce9 | 2016-11-30 16:06:42 -0800 | [diff] [blame] | 1069 | mSupportedAudioRoutes = in.readInt(); | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 1070 | } | 
| Tyler Gunn | 76c01a5 | 2014-09-30 14:47:51 -0700 | [diff] [blame] | 1071 |  | 
|  | 1072 | @Override | 
|  | 1073 | public String toString() { | 
| Santos Cordon | 91371dc0 | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 1074 | StringBuilder sb = new StringBuilder().append("[[") | 
|  | 1075 | .append(mIsEnabled ? 'X' : ' ') | 
|  | 1076 | .append("] PhoneAccount: ") | 
| Tyler Gunn | 76c01a5 | 2014-09-30 14:47:51 -0700 | [diff] [blame] | 1077 | .append(mAccountHandle) | 
|  | 1078 | .append(" Capabilities: ") | 
| Christine Hallstrom | 2830ce9 | 2016-11-30 16:06:42 -0800 | [diff] [blame] | 1079 | .append(capabilitiesToString()) | 
|  | 1080 | .append(" Audio Routes: ") | 
|  | 1081 | .append(audioRoutesToString()) | 
| Tyler Gunn | 76c01a5 | 2014-09-30 14:47:51 -0700 | [diff] [blame] | 1082 | .append(" Schemes: "); | 
|  | 1083 | for (String scheme : mSupportedUriSchemes) { | 
|  | 1084 | sb.append(scheme) | 
|  | 1085 | .append(" "); | 
|  | 1086 | } | 
| Tyler Gunn | ef829ec | 2015-10-08 09:46:23 -0700 | [diff] [blame] | 1087 | sb.append(" Extras: "); | 
| Tyler Gunn | 25ed2d7 | 2015-10-05 14:14:38 -0700 | [diff] [blame] | 1088 | sb.append(mExtras); | 
| Brad Ebinger | 7298f3b | 2016-06-10 17:19:42 -0700 | [diff] [blame] | 1089 | sb.append(" GroupId: "); | 
|  | 1090 | sb.append(Log.pii(mGroupId)); | 
| Tyler Gunn | 76c01a5 | 2014-09-30 14:47:51 -0700 | [diff] [blame] | 1091 | sb.append("]"); | 
|  | 1092 | return sb.toString(); | 
|  | 1093 | } | 
| Tyler Gunn | 3e122f7 | 2016-01-11 19:25:00 -0800 | [diff] [blame] | 1094 |  | 
|  | 1095 | /** | 
|  | 1096 | * Generates a string representation of a capabilities bitmask. | 
|  | 1097 | * | 
| Tyler Gunn | 3e122f7 | 2016-01-11 19:25:00 -0800 | [diff] [blame] | 1098 | * @return String representation of the capabilities bitmask. | 
| Tyler Gunn | 1847b4e | 2018-11-09 08:43:02 -0800 | [diff] [blame] | 1099 | * @hide | 
| Tyler Gunn | 3e122f7 | 2016-01-11 19:25:00 -0800 | [diff] [blame] | 1100 | */ | 
| Tyler Gunn | 1847b4e | 2018-11-09 08:43:02 -0800 | [diff] [blame] | 1101 | public String capabilitiesToString() { | 
| Tyler Gunn | 3e122f7 | 2016-01-11 19:25:00 -0800 | [diff] [blame] | 1102 | StringBuilder sb = new StringBuilder(); | 
| Tyler Gunn | f503543 | 2017-01-09 09:43:12 -0800 | [diff] [blame] | 1103 | if (hasCapabilities(CAPABILITY_SELF_MANAGED)) { | 
|  | 1104 | sb.append("SelfManaged "); | 
|  | 1105 | } | 
| Tyler Gunn | 58cbd7a | 2016-11-11 11:31:28 -0800 | [diff] [blame] | 1106 | if (hasCapabilities(CAPABILITY_SUPPORTS_VIDEO_CALLING)) { | 
|  | 1107 | sb.append("SuppVideo "); | 
|  | 1108 | } | 
| Tyler Gunn | 3e122f7 | 2016-01-11 19:25:00 -0800 | [diff] [blame] | 1109 | if (hasCapabilities(CAPABILITY_VIDEO_CALLING)) { | 
|  | 1110 | sb.append("Video "); | 
|  | 1111 | } | 
|  | 1112 | if (hasCapabilities(CAPABILITY_VIDEO_CALLING_RELIES_ON_PRESENCE)) { | 
|  | 1113 | sb.append("Presence "); | 
|  | 1114 | } | 
|  | 1115 | if (hasCapabilities(CAPABILITY_CALL_PROVIDER)) { | 
|  | 1116 | sb.append("CallProvider "); | 
|  | 1117 | } | 
|  | 1118 | if (hasCapabilities(CAPABILITY_CALL_SUBJECT)) { | 
|  | 1119 | sb.append("CallSubject "); | 
|  | 1120 | } | 
|  | 1121 | if (hasCapabilities(CAPABILITY_CONNECTION_MANAGER)) { | 
|  | 1122 | sb.append("ConnectionMgr "); | 
|  | 1123 | } | 
|  | 1124 | if (hasCapabilities(CAPABILITY_EMERGENCY_CALLS_ONLY)) { | 
|  | 1125 | sb.append("EmergOnly "); | 
|  | 1126 | } | 
|  | 1127 | if (hasCapabilities(CAPABILITY_MULTI_USER)) { | 
|  | 1128 | sb.append("MultiUser "); | 
|  | 1129 | } | 
|  | 1130 | if (hasCapabilities(CAPABILITY_PLACE_EMERGENCY_CALLS)) { | 
|  | 1131 | sb.append("PlaceEmerg "); | 
|  | 1132 | } | 
| Brad Ebinger | 3636d74 | 2019-05-21 15:28:19 -0700 | [diff] [blame] | 1133 | if (hasCapabilities(CAPABILITY_EMERGENCY_PREFERRED)) { | 
|  | 1134 | sb.append("EmerPrefer "); | 
|  | 1135 | } | 
| Tyler Gunn | cee9ea6 | 2016-03-24 11:45:43 -0700 | [diff] [blame] | 1136 | if (hasCapabilities(CAPABILITY_EMERGENCY_VIDEO_CALLING)) { | 
|  | 1137 | sb.append("EmergVideo "); | 
|  | 1138 | } | 
| Tyler Gunn | 3e122f7 | 2016-01-11 19:25:00 -0800 | [diff] [blame] | 1139 | if (hasCapabilities(CAPABILITY_SIM_SUBSCRIPTION)) { | 
|  | 1140 | sb.append("SimSub "); | 
|  | 1141 | } | 
| Hall Liu | 47ed620 | 2017-11-20 16:25:39 -0800 | [diff] [blame] | 1142 | if (hasCapabilities(CAPABILITY_RTT)) { | 
| Hunter Knepshield | 2526568 | 2022-01-19 02:25:06 -0800 | [diff] [blame] | 1143 | sb.append("Rtt "); | 
| Hall Liu | 47ed620 | 2017-11-20 16:25:39 -0800 | [diff] [blame] | 1144 | } | 
| Ravi Paluri | 80aa214 | 2019-12-02 11:57:37 +0530 | [diff] [blame] | 1145 | if (hasCapabilities(CAPABILITY_ADHOC_CONFERENCE_CALLING)) { | 
| Hunter Knepshield | 2526568 | 2022-01-19 02:25:06 -0800 | [diff] [blame] | 1146 | sb.append("AdhocConf "); | 
| Ravi Paluri | 80aa214 | 2019-12-02 11:57:37 +0530 | [diff] [blame] | 1147 | } | 
| Shuo Qian | d24aea3 | 2020-11-24 15:08:49 -0800 | [diff] [blame] | 1148 | if (hasCapabilities(CAPABILITY_CALL_COMPOSER)) { | 
|  | 1149 | sb.append("CallComposer "); | 
|  | 1150 | } | 
| Hunter Knepshield | 2526568 | 2022-01-19 02:25:06 -0800 | [diff] [blame] | 1151 | if (hasCapabilities(CAPABILITY_SUPPORTS_VOICE_CALLING_INDICATIONS)) { | 
|  | 1152 | sb.append("SuppVoice "); | 
|  | 1153 | } | 
|  | 1154 | if (hasCapabilities(CAPABILITY_VOICE_CALLING_AVAILABLE)) { | 
|  | 1155 | sb.append("Voice "); | 
|  | 1156 | } | 
| Tyler Gunn | 3e122f7 | 2016-01-11 19:25:00 -0800 | [diff] [blame] | 1157 | return sb.toString(); | 
|  | 1158 | } | 
| Christine Hallstrom | 2830ce9 | 2016-11-30 16:06:42 -0800 | [diff] [blame] | 1159 |  | 
|  | 1160 | private String audioRoutesToString() { | 
|  | 1161 | StringBuilder sb = new StringBuilder(); | 
|  | 1162 |  | 
|  | 1163 | if (hasAudioRoutes(CallAudioState.ROUTE_BLUETOOTH)) { | 
|  | 1164 | sb.append("B"); | 
|  | 1165 | } | 
|  | 1166 | if (hasAudioRoutes(CallAudioState.ROUTE_EARPIECE)) { | 
|  | 1167 | sb.append("E"); | 
|  | 1168 | } | 
|  | 1169 | if (hasAudioRoutes(CallAudioState.ROUTE_SPEAKER)) { | 
|  | 1170 | sb.append("S"); | 
|  | 1171 | } | 
|  | 1172 | if (hasAudioRoutes(CallAudioState.ROUTE_WIRED_HEADSET)) { | 
|  | 1173 | sb.append("W"); | 
|  | 1174 | } | 
|  | 1175 |  | 
|  | 1176 | return sb.toString(); | 
|  | 1177 | } | 
| Tyler Gunn | 3b34781 | 2018-08-24 14:17:05 -0700 | [diff] [blame] | 1178 |  | 
|  | 1179 | /** | 
|  | 1180 | * Determines if two {@link Bundle}s are equal. | 
|  | 1181 | * @param extras First {@link Bundle} to check. | 
|  | 1182 | * @param newExtras {@link Bundle} to compare against. | 
|  | 1183 | * @return {@code true} if the {@link Bundle}s are equal, {@code false} otherwise. | 
|  | 1184 | */ | 
|  | 1185 | private static boolean areBundlesEqual(Bundle extras, Bundle newExtras) { | 
|  | 1186 | if (extras == null || newExtras == null) { | 
|  | 1187 | return extras == newExtras; | 
|  | 1188 | } | 
|  | 1189 |  | 
|  | 1190 | if (extras.size() != newExtras.size()) { | 
|  | 1191 | return false; | 
|  | 1192 | } | 
|  | 1193 |  | 
|  | 1194 | for(String key : extras.keySet()) { | 
|  | 1195 | if (key != null) { | 
|  | 1196 | final Object value = extras.get(key); | 
|  | 1197 | final Object newValue = newExtras.get(key); | 
|  | 1198 | if (!Objects.equals(value, newValue)) { | 
|  | 1199 | return false; | 
|  | 1200 | } | 
|  | 1201 | } | 
|  | 1202 | } | 
|  | 1203 | return true; | 
|  | 1204 | } | 
| Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 1205 | } |