| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -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 | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 18 | |
| Andrew Lee | da80c87 | 2015-04-15 14:09:50 -0700 | [diff] [blame] | 19 | import android.annotation.SystemApi; |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 20 | import android.net.Uri; |
| Nancy Chen | 10798dc | 2014-08-08 14:00:25 -0700 | [diff] [blame] | 21 | import android.os.Bundle; |
| Andrew Lee | 011728f | 2015-04-23 15:47:06 -0700 | [diff] [blame] | 22 | import android.os.Handler; |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 23 | |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 24 | import java.lang.String; |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 25 | import java.util.ArrayList; |
| 26 | import java.util.Collections; |
| Andrew Lee | 011728f | 2015-04-23 15:47:06 -0700 | [diff] [blame] | 27 | import java.util.LinkedList; |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 28 | import java.util.List; |
| Santos Cordon | 7c7bc7f | 2014-07-28 18:15:48 -0700 | [diff] [blame] | 29 | import java.util.Map; |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 30 | import java.util.Objects; |
| Jay Shrauner | 229e382 | 2014-08-15 09:23:07 -0700 | [diff] [blame] | 31 | import java.util.concurrent.CopyOnWriteArrayList; |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 32 | |
| 33 | /** |
| 34 | * Represents an ongoing phone call that the in-call app should present to the user. |
| 35 | */ |
| 36 | public final class Call { |
| 37 | /** |
| 38 | * The state of a {@code Call} when newly created. |
| 39 | */ |
| 40 | public static final int STATE_NEW = 0; |
| 41 | |
| 42 | /** |
| 43 | * The state of an outgoing {@code Call} when dialing the remote number, but not yet connected. |
| 44 | */ |
| 45 | public static final int STATE_DIALING = 1; |
| 46 | |
| 47 | /** |
| 48 | * The state of an incoming {@code Call} when ringing locally, but not yet connected. |
| 49 | */ |
| 50 | public static final int STATE_RINGING = 2; |
| 51 | |
| 52 | /** |
| 53 | * The state of a {@code Call} when in a holding state. |
| 54 | */ |
| 55 | public static final int STATE_HOLDING = 3; |
| 56 | |
| 57 | /** |
| 58 | * The state of a {@code Call} when actively supporting conversation. |
| 59 | */ |
| 60 | public static final int STATE_ACTIVE = 4; |
| 61 | |
| 62 | /** |
| 63 | * The state of a {@code Call} when no further voice or other communication is being |
| 64 | * transmitted, the remote side has been or will inevitably be informed that the {@code Call} |
| 65 | * is no longer active, and the local data transport has or inevitably will release resources |
| 66 | * associated with this {@code Call}. |
| 67 | */ |
| 68 | public static final int STATE_DISCONNECTED = 7; |
| 69 | |
| Nancy Chen | 5da0fd5 | 2014-07-08 14:16:17 -0700 | [diff] [blame] | 70 | /** |
| Santos Cordon | e3c507b | 2015-04-23 14:44:19 -0700 | [diff] [blame] | 71 | * The state of an outgoing {@code Call} when waiting on user to select a |
| 72 | * {@link PhoneAccount} through which to place the call. |
| Nancy Chen | 5da0fd5 | 2014-07-08 14:16:17 -0700 | [diff] [blame] | 73 | */ |
| Santos Cordon | e3c507b | 2015-04-23 14:44:19 -0700 | [diff] [blame] | 74 | public static final int STATE_SELECT_PHONE_ACCOUNT = 8; |
| 75 | |
| 76 | /** |
| 77 | * @hide |
| 78 | * @deprecated use STATE_SELECT_PHONE_ACCOUNT. |
| 79 | */ |
| 80 | @Deprecated |
| 81 | @SystemApi |
| 82 | public static final int STATE_PRE_DIAL_WAIT = STATE_SELECT_PHONE_ACCOUNT; |
| Nancy Chen | 5da0fd5 | 2014-07-08 14:16:17 -0700 | [diff] [blame] | 83 | |
| Nancy Chen | e20930f | 2014-08-07 16:17:21 -0700 | [diff] [blame] | 84 | /** |
| Nancy Chen | e9b7a8e | 2014-08-08 14:26:27 -0700 | [diff] [blame] | 85 | * The initial state of an outgoing {@code Call}. |
| 86 | * Common transitions are to {@link #STATE_DIALING} state for a successful call or |
| 87 | * {@link #STATE_DISCONNECTED} if it failed. |
| Nancy Chen | e20930f | 2014-08-07 16:17:21 -0700 | [diff] [blame] | 88 | */ |
| 89 | public static final int STATE_CONNECTING = 9; |
| 90 | |
| Nancy Chen | 513c892 | 2014-09-17 14:47:20 -0700 | [diff] [blame] | 91 | /** |
| Tyler Gunn | 4afc6af | 2014-10-07 10:14:55 -0700 | [diff] [blame] | 92 | * The state of a {@code Call} when the user has initiated a disconnection of the call, but the |
| 93 | * call has not yet been disconnected by the underlying {@code ConnectionService}. The next |
| 94 | * state of the call is (potentially) {@link #STATE_DISCONNECTED}. |
| 95 | */ |
| 96 | public static final int STATE_DISCONNECTING = 10; |
| 97 | |
| 98 | /** |
| Nancy Chen | 513c892 | 2014-09-17 14:47:20 -0700 | [diff] [blame] | 99 | * The key to retrieve the optional {@code PhoneAccount}s Telecom can bundle with its Call |
| 100 | * extras. Used to pass the phone accounts to display on the front end to the user in order to |
| 101 | * select phone accounts to (for example) place a call. |
| Nancy Chen | 513c892 | 2014-09-17 14:47:20 -0700 | [diff] [blame] | 102 | */ |
| 103 | public static final String AVAILABLE_PHONE_ACCOUNTS = "selectPhoneAccountAccounts"; |
| 104 | |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 105 | public static class Details { |
| Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 106 | |
| 107 | /** Call can currently be put on hold or unheld. */ |
| 108 | public static final int CAPABILITY_HOLD = 0x00000001; |
| 109 | |
| 110 | /** Call supports the hold feature. */ |
| 111 | public static final int CAPABILITY_SUPPORT_HOLD = 0x00000002; |
| 112 | |
| 113 | /** |
| 114 | * Calls within a conference can be merged. A {@link ConnectionService} has the option to |
| 115 | * add a {@link Conference} call before the child {@link Connection}s are merged. This is how |
| 116 | * CDMA-based {@link Connection}s are implemented. For these unmerged {@link Conference}s, this |
| 117 | * capability allows a merge button to be shown while the conference call is in the foreground |
| 118 | * of the in-call UI. |
| 119 | * <p> |
| 120 | * This is only intended for use by a {@link Conference}. |
| 121 | */ |
| 122 | public static final int CAPABILITY_MERGE_CONFERENCE = 0x00000004; |
| 123 | |
| 124 | /** |
| 125 | * Calls within a conference can be swapped between foreground and background. |
| 126 | * See {@link #CAPABILITY_MERGE_CONFERENCE} for additional information. |
| 127 | * <p> |
| 128 | * This is only intended for use by a {@link Conference}. |
| 129 | */ |
| 130 | public static final int CAPABILITY_SWAP_CONFERENCE = 0x00000008; |
| 131 | |
| 132 | /** |
| 133 | * @hide |
| 134 | */ |
| 135 | public static final int CAPABILITY_UNUSED = 0x00000010; |
| 136 | |
| 137 | /** Call supports responding via text option. */ |
| 138 | public static final int CAPABILITY_RESPOND_VIA_TEXT = 0x00000020; |
| 139 | |
| 140 | /** Call can be muted. */ |
| 141 | public static final int CAPABILITY_MUTE = 0x00000040; |
| 142 | |
| 143 | /** |
| 144 | * Call supports conference call management. This capability only applies to {@link Conference} |
| 145 | * calls which can have {@link Connection}s as children. |
| 146 | */ |
| 147 | public static final int CAPABILITY_MANAGE_CONFERENCE = 0x00000080; |
| 148 | |
| 149 | /** |
| Andrew Lee | 5e9e8bb | 2015-03-10 13:58:24 -0700 | [diff] [blame] | 150 | * Local device supports receiving video. |
| Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 151 | */ |
| Andrew Lee | 5e9e8bb | 2015-03-10 13:58:24 -0700 | [diff] [blame] | 152 | public static final int CAPABILITY_SUPPORTS_VT_LOCAL_RX = 0x00000100; |
| Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 153 | |
| 154 | /** |
| Andrew Lee | 5e9e8bb | 2015-03-10 13:58:24 -0700 | [diff] [blame] | 155 | * Local device supports transmitting video. |
| Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 156 | */ |
| Andrew Lee | 5e9e8bb | 2015-03-10 13:58:24 -0700 | [diff] [blame] | 157 | public static final int CAPABILITY_SUPPORTS_VT_LOCAL_TX = 0x00000200; |
| Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 158 | |
| 159 | /** |
| Andrew Lee | 5e9e8bb | 2015-03-10 13:58:24 -0700 | [diff] [blame] | 160 | * Local device supports bidirectional video calling. |
| Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 161 | */ |
| Andrew Lee | 9a8f9ce | 2015-04-10 18:09:46 -0700 | [diff] [blame] | 162 | public static final int CAPABILITY_SUPPORTS_VT_LOCAL_BIDIRECTIONAL = |
| Andrew Lee | 5e9e8bb | 2015-03-10 13:58:24 -0700 | [diff] [blame] | 163 | CAPABILITY_SUPPORTS_VT_LOCAL_RX | CAPABILITY_SUPPORTS_VT_LOCAL_TX; |
| Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 164 | |
| 165 | /** |
| Andrew Lee | 5e9e8bb | 2015-03-10 13:58:24 -0700 | [diff] [blame] | 166 | * Remote device supports receiving video. |
| Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 167 | */ |
| Andrew Lee | 5e9e8bb | 2015-03-10 13:58:24 -0700 | [diff] [blame] | 168 | public static final int CAPABILITY_SUPPORTS_VT_REMOTE_RX = 0x00000400; |
| 169 | |
| 170 | /** |
| 171 | * Remote device supports transmitting video. |
| Andrew Lee | 5e9e8bb | 2015-03-10 13:58:24 -0700 | [diff] [blame] | 172 | */ |
| 173 | public static final int CAPABILITY_SUPPORTS_VT_REMOTE_TX = 0x00000800; |
| 174 | |
| 175 | /** |
| 176 | * Remote device supports bidirectional video calling. |
| Andrew Lee | 5e9e8bb | 2015-03-10 13:58:24 -0700 | [diff] [blame] | 177 | */ |
| Andrew Lee | 9a8f9ce | 2015-04-10 18:09:46 -0700 | [diff] [blame] | 178 | public static final int CAPABILITY_SUPPORTS_VT_REMOTE_BIDIRECTIONAL = |
| Andrew Lee | 5e9e8bb | 2015-03-10 13:58:24 -0700 | [diff] [blame] | 179 | CAPABILITY_SUPPORTS_VT_REMOTE_RX | CAPABILITY_SUPPORTS_VT_REMOTE_TX; |
| Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 180 | |
| 181 | /** |
| 182 | * Call is able to be separated from its parent {@code Conference}, if any. |
| 183 | */ |
| 184 | public static final int CAPABILITY_SEPARATE_FROM_CONFERENCE = 0x00001000; |
| 185 | |
| 186 | /** |
| 187 | * Call is able to be individually disconnected when in a {@code Conference}. |
| 188 | */ |
| 189 | public static final int CAPABILITY_DISCONNECT_FROM_CONFERENCE = 0x00002000; |
| 190 | |
| 191 | /** |
| 192 | * Whether the call is a generic conference, where we do not know the precise state of |
| 193 | * participants in the conference (eg. on CDMA). |
| Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 194 | */ |
| 195 | public static final int CAPABILITY_GENERIC_CONFERENCE = 0x00004000; |
| 196 | |
| Andrew Lee | 5e9e8bb | 2015-03-10 13:58:24 -0700 | [diff] [blame] | 197 | /** |
| 198 | * Call is using high definition audio. |
| Andrew Lee | 5e9e8bb | 2015-03-10 13:58:24 -0700 | [diff] [blame] | 199 | */ |
| 200 | public static final int CAPABILITY_HIGH_DEF_AUDIO = 0x00008000; |
| 201 | |
| 202 | /** |
| 203 | * Call is using WIFI. |
| Andrew Lee | 5e9e8bb | 2015-03-10 13:58:24 -0700 | [diff] [blame] | 204 | */ |
| 205 | public static final int CAPABILITY_WIFI = 0x00010000; |
| 206 | |
| Tyler Gunn | 068085b | 2015-02-06 13:56:52 -0800 | [diff] [blame] | 207 | /** |
| 208 | * Indicates that the current device callback number should be shown. |
| Tyler Gunn | 068085b | 2015-02-06 13:56:52 -0800 | [diff] [blame] | 209 | */ |
| Tyler Gunn | 96d6c40 | 2015-03-18 12:39:23 -0700 | [diff] [blame] | 210 | public static final int CAPABILITY_SHOW_CALLBACK_NUMBER = 0x00020000; |
| 211 | |
| 212 | /** |
| Dong Zhou | 89f41eb | 2015-03-15 11:59:49 -0500 | [diff] [blame] | 213 | * Speed up audio setup for MT call. |
| 214 | * @hide |
| 215 | */ |
| Tyler Gunn | 96d6c40 | 2015-03-18 12:39:23 -0700 | [diff] [blame] | 216 | public static final int CAPABILITY_SPEED_UP_MT_AUDIO = 0x00040000; |
| 217 | |
| Tyler Gunn | b5e0cfb | 2015-04-07 16:10:51 -0700 | [diff] [blame] | 218 | /** |
| 219 | * Call can be upgraded to a video call. |
| Rekha Kumar | 0736681 | 2015-03-24 16:42:31 -0700 | [diff] [blame] | 220 | * @hide |
| 221 | */ |
| 222 | public static final int CAPABILITY_CAN_UPGRADE_TO_VIDEO = 0x00080000; |
| 223 | |
| Tyler Gunn | b5e0cfb | 2015-04-07 16:10:51 -0700 | [diff] [blame] | 224 | /** |
| 225 | * For video calls, indicates whether the outgoing video for the call can be paused using |
| 226 | * the {@link android.telecom.VideoProfile.VideoState#PAUSED} VideoState. |
| Tyler Gunn | b5e0cfb | 2015-04-07 16:10:51 -0700 | [diff] [blame] | 227 | */ |
| 228 | public static final int CAPABILITY_CAN_PAUSE_VIDEO = 0x00100000; |
| 229 | |
| Tyler Gunn | d11a315 | 2015-03-18 13:09:14 -0700 | [diff] [blame] | 230 | //****************************************************************************************** |
| Tyler Gunn | b5e0cfb | 2015-04-07 16:10:51 -0700 | [diff] [blame] | 231 | // Next CAPABILITY value: 0x00200000 |
| Tyler Gunn | d11a315 | 2015-03-18 13:09:14 -0700 | [diff] [blame] | 232 | //****************************************************************************************** |
| Tyler Gunn | 068085b | 2015-02-06 13:56:52 -0800 | [diff] [blame] | 233 | |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 234 | private final Uri mHandle; |
| 235 | private final int mHandlePresentation; |
| 236 | private final String mCallerDisplayName; |
| 237 | private final int mCallerDisplayNamePresentation; |
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 238 | private final PhoneAccountHandle mAccountHandle; |
| Ihab Awad | 5d0410f | 2014-07-30 10:07:40 -0700 | [diff] [blame] | 239 | private final int mCallCapabilities; |
| Andrew Lee | 223ad14 | 2014-08-27 16:33:08 -0700 | [diff] [blame] | 240 | private final int mCallProperties; |
| Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 241 | private final DisconnectCause mDisconnectCause; |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 242 | private final long mConnectTimeMillis; |
| 243 | private final GatewayInfo mGatewayInfo; |
| Andrew Lee | 85f5d42 | 2014-07-11 17:22:03 -0700 | [diff] [blame] | 244 | private final int mVideoState; |
| Evan Charlton | 5b49ade | 2014-07-15 17:03:20 -0700 | [diff] [blame] | 245 | private final StatusHints mStatusHints; |
| Nancy Chen | 10798dc | 2014-08-08 14:00:25 -0700 | [diff] [blame] | 246 | private final Bundle mExtras; |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 247 | |
| 248 | /** |
| Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 249 | * Whether the supplied capabilities supports the specified capability. |
| 250 | * |
| 251 | * @param capabilities A bit field of capabilities. |
| 252 | * @param capability The capability to check capabilities for. |
| 253 | * @return Whether the specified capability is supported. |
| Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 254 | */ |
| 255 | public static boolean can(int capabilities, int capability) { |
| 256 | return (capabilities & capability) != 0; |
| 257 | } |
| 258 | |
| 259 | /** |
| 260 | * Whether the capabilities of this {@code Details} supports the specified capability. |
| 261 | * |
| 262 | * @param capability The capability to check capabilities for. |
| 263 | * @return Whether the specified capability is supported. |
| Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 264 | */ |
| 265 | public boolean can(int capability) { |
| 266 | return can(mCallCapabilities, capability); |
| 267 | } |
| 268 | |
| 269 | /** |
| 270 | * Render a set of capability bits ({@code CAPABILITY_*}) as a human readable string. |
| 271 | * |
| 272 | * @param capabilities A capability bit field. |
| 273 | * @return A human readable string representation. |
| 274 | */ |
| 275 | public static String capabilitiesToString(int capabilities) { |
| 276 | StringBuilder builder = new StringBuilder(); |
| 277 | builder.append("[Capabilities:"); |
| 278 | if (can(capabilities, CAPABILITY_HOLD)) { |
| 279 | builder.append(" CAPABILITY_HOLD"); |
| 280 | } |
| 281 | if (can(capabilities, CAPABILITY_SUPPORT_HOLD)) { |
| 282 | builder.append(" CAPABILITY_SUPPORT_HOLD"); |
| 283 | } |
| 284 | if (can(capabilities, CAPABILITY_MERGE_CONFERENCE)) { |
| 285 | builder.append(" CAPABILITY_MERGE_CONFERENCE"); |
| 286 | } |
| 287 | if (can(capabilities, CAPABILITY_SWAP_CONFERENCE)) { |
| 288 | builder.append(" CAPABILITY_SWAP_CONFERENCE"); |
| 289 | } |
| 290 | if (can(capabilities, CAPABILITY_RESPOND_VIA_TEXT)) { |
| 291 | builder.append(" CAPABILITY_RESPOND_VIA_TEXT"); |
| 292 | } |
| 293 | if (can(capabilities, CAPABILITY_MUTE)) { |
| 294 | builder.append(" CAPABILITY_MUTE"); |
| 295 | } |
| 296 | if (can(capabilities, CAPABILITY_MANAGE_CONFERENCE)) { |
| 297 | builder.append(" CAPABILITY_MANAGE_CONFERENCE"); |
| 298 | } |
| Andrew Lee | 5e9e8bb | 2015-03-10 13:58:24 -0700 | [diff] [blame] | 299 | if (can(capabilities, CAPABILITY_SUPPORTS_VT_LOCAL_RX)) { |
| 300 | builder.append(" CAPABILITY_SUPPORTS_VT_LOCAL_RX"); |
| 301 | } |
| 302 | if (can(capabilities, CAPABILITY_SUPPORTS_VT_LOCAL_TX)) { |
| 303 | builder.append(" CAPABILITY_SUPPORTS_VT_LOCAL_TX"); |
| 304 | } |
| Andrew Lee | 9a8f9ce | 2015-04-10 18:09:46 -0700 | [diff] [blame] | 305 | if (can(capabilities, CAPABILITY_SUPPORTS_VT_LOCAL_BIDIRECTIONAL)) { |
| 306 | builder.append(" CAPABILITY_SUPPORTS_VT_LOCAL_BIDIRECTIONAL"); |
| Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 307 | } |
| Andrew Lee | 5e9e8bb | 2015-03-10 13:58:24 -0700 | [diff] [blame] | 308 | if (can(capabilities, CAPABILITY_SUPPORTS_VT_REMOTE_RX)) { |
| 309 | builder.append(" CAPABILITY_SUPPORTS_VT_REMOTE_RX"); |
| 310 | } |
| 311 | if (can(capabilities, CAPABILITY_SUPPORTS_VT_REMOTE_TX)) { |
| 312 | builder.append(" CAPABILITY_SUPPORTS_VT_REMOTE_TX"); |
| 313 | } |
| Andrew Lee | 9a8f9ce | 2015-04-10 18:09:46 -0700 | [diff] [blame] | 314 | if (can(capabilities, CAPABILITY_SUPPORTS_VT_REMOTE_BIDIRECTIONAL)) { |
| 315 | builder.append(" CAPABILITY_SUPPORTS_VT_REMOTE_BIDIRECTIONAL"); |
| Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 316 | } |
| Andrew Lee | 80fff3c | 2014-11-25 17:36:51 -0800 | [diff] [blame] | 317 | if (can(capabilities, CAPABILITY_HIGH_DEF_AUDIO)) { |
| 318 | builder.append(" CAPABILITY_HIGH_DEF_AUDIO"); |
| Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 319 | } |
| Andrew Lee | 1a8ae3e | 2015-02-02 13:42:38 -0800 | [diff] [blame] | 320 | if (can(capabilities, CAPABILITY_WIFI)) { |
| 321 | builder.append(" CAPABILITY_WIFI"); |
| Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 322 | } |
| 323 | if (can(capabilities, CAPABILITY_GENERIC_CONFERENCE)) { |
| 324 | builder.append(" CAPABILITY_GENERIC_CONFERENCE"); |
| 325 | } |
| Tyler Gunn | 068085b | 2015-02-06 13:56:52 -0800 | [diff] [blame] | 326 | if (can(capabilities, CAPABILITY_SHOW_CALLBACK_NUMBER)) { |
| 327 | builder.append(" CAPABILITY_SHOW_CALLBACK_NUMBER"); |
| 328 | } |
| Dong Zhou | 89f41eb | 2015-03-15 11:59:49 -0500 | [diff] [blame] | 329 | if (can(capabilities, CAPABILITY_SPEED_UP_MT_AUDIO)) { |
| Tyler Gunn | d11a315 | 2015-03-18 13:09:14 -0700 | [diff] [blame] | 330 | builder.append(" CAPABILITY_SPEED_UP_MT_AUDIO"); |
| Dong Zhou | 89f41eb | 2015-03-15 11:59:49 -0500 | [diff] [blame] | 331 | } |
| Rekha Kumar | 0736681 | 2015-03-24 16:42:31 -0700 | [diff] [blame] | 332 | if (can(capabilities, CAPABILITY_CAN_UPGRADE_TO_VIDEO)) { |
| 333 | builder.append(" CAPABILITY_CAN_UPGRADE_TO_VIDEO"); |
| 334 | } |
| Tyler Gunn | b5e0cfb | 2015-04-07 16:10:51 -0700 | [diff] [blame] | 335 | if (can(capabilities, CAPABILITY_CAN_PAUSE_VIDEO)) { |
| 336 | builder.append(" CAPABILITY_CAN_PAUSE_VIDEO"); |
| 337 | } |
| Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 338 | builder.append("]"); |
| 339 | return builder.toString(); |
| 340 | } |
| 341 | |
| 342 | /** |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 343 | * @return The handle (e.g., phone number) to which the {@code Call} is currently |
| 344 | * connected. |
| 345 | */ |
| 346 | public Uri getHandle() { |
| 347 | return mHandle; |
| 348 | } |
| 349 | |
| 350 | /** |
| 351 | * @return The presentation requirements for the handle. See |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 352 | * {@link TelecomManager} for valid values. |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 353 | */ |
| 354 | public int getHandlePresentation() { |
| 355 | return mHandlePresentation; |
| 356 | } |
| 357 | |
| 358 | /** |
| 359 | * @return The display name for the caller. |
| 360 | */ |
| 361 | public String getCallerDisplayName() { |
| 362 | return mCallerDisplayName; |
| 363 | } |
| 364 | |
| 365 | /** |
| 366 | * @return The presentation requirements for the caller display name. See |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 367 | * {@link TelecomManager} for valid values. |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 368 | */ |
| 369 | public int getCallerDisplayNamePresentation() { |
| 370 | return mCallerDisplayNamePresentation; |
| 371 | } |
| 372 | |
| 373 | /** |
| Evan Charlton | 6eb262c | 2014-07-19 18:18:19 -0700 | [diff] [blame] | 374 | * @return The {@code PhoneAccountHandle} whereby the {@code Call} is currently being |
| 375 | * routed. |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 376 | */ |
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 377 | public PhoneAccountHandle getAccountHandle() { |
| 378 | return mAccountHandle; |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 379 | } |
| 380 | |
| 381 | /** |
| Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 382 | * @return A bitmask of the capabilities of the {@code Call}, as defined by the various |
| 383 | * {@code CAPABILITY_*} constants in this class. |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 384 | */ |
| Ihab Awad | 5d0410f | 2014-07-30 10:07:40 -0700 | [diff] [blame] | 385 | public int getCallCapabilities() { |
| 386 | return mCallCapabilities; |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 387 | } |
| 388 | |
| 389 | /** |
| Andrew Lee | 223ad14 | 2014-08-27 16:33:08 -0700 | [diff] [blame] | 390 | * @return A bitmask of the properties of the {@code Call}, as defined in |
| 391 | * {@link CallProperties}. |
| 392 | */ |
| 393 | public int getCallProperties() { |
| 394 | return mCallProperties; |
| 395 | } |
| 396 | |
| 397 | /** |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 398 | * @return For a {@link #STATE_DISCONNECTED} {@code Call}, the disconnect cause expressed |
| Nancy Chen | f4cf77c | 2014-09-19 10:53:21 -0700 | [diff] [blame] | 399 | * by {@link android.telecom.DisconnectCause}. |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 400 | */ |
| Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 401 | public DisconnectCause getDisconnectCause() { |
| 402 | return mDisconnectCause; |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 403 | } |
| 404 | |
| 405 | /** |
| 406 | * @return The time the {@code Call} has been connected. This information is updated |
| 407 | * periodically, but user interfaces should not rely on this to display any "call time |
| 408 | * clock". |
| 409 | */ |
| Jay Shrauner | 164a0ac | 2015-04-14 18:16:10 -0700 | [diff] [blame] | 410 | public final long getConnectTimeMillis() { |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 411 | return mConnectTimeMillis; |
| 412 | } |
| 413 | |
| 414 | /** |
| 415 | * @return Information about any calling gateway the {@code Call} may be using. |
| 416 | */ |
| 417 | public GatewayInfo getGatewayInfo() { |
| 418 | return mGatewayInfo; |
| 419 | } |
| 420 | |
| Andrew Lee | 7a34138 | 2014-07-15 17:05:08 -0700 | [diff] [blame] | 421 | /** |
| Ihab Awad | 5d0410f | 2014-07-30 10:07:40 -0700 | [diff] [blame] | 422 | * @return The video state of the {@code Call}. |
| Andrew Lee | 7a34138 | 2014-07-15 17:05:08 -0700 | [diff] [blame] | 423 | */ |
| 424 | public int getVideoState() { |
| 425 | return mVideoState; |
| 426 | } |
| 427 | |
| Ihab Awad | 5d0410f | 2014-07-30 10:07:40 -0700 | [diff] [blame] | 428 | /** |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 429 | * @return The current {@link android.telecom.StatusHints}, or {@code null} if none |
| Ihab Awad | 5d0410f | 2014-07-30 10:07:40 -0700 | [diff] [blame] | 430 | * have been set. |
| Evan Charlton | 5b49ade | 2014-07-15 17:03:20 -0700 | [diff] [blame] | 431 | */ |
| 432 | public StatusHints getStatusHints() { |
| 433 | return mStatusHints; |
| 434 | } |
| 435 | |
| Nancy Chen | 10798dc | 2014-08-08 14:00:25 -0700 | [diff] [blame] | 436 | /** |
| 437 | * @return A bundle extras to pass with the call |
| 438 | */ |
| 439 | public Bundle getExtras() { |
| 440 | return mExtras; |
| 441 | } |
| 442 | |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 443 | @Override |
| 444 | public boolean equals(Object o) { |
| 445 | if (o instanceof Details) { |
| 446 | Details d = (Details) o; |
| 447 | return |
| 448 | Objects.equals(mHandle, d.mHandle) && |
| 449 | Objects.equals(mHandlePresentation, d.mHandlePresentation) && |
| 450 | Objects.equals(mCallerDisplayName, d.mCallerDisplayName) && |
| 451 | Objects.equals(mCallerDisplayNamePresentation, |
| 452 | d.mCallerDisplayNamePresentation) && |
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 453 | Objects.equals(mAccountHandle, d.mAccountHandle) && |
| Ihab Awad | 5d0410f | 2014-07-30 10:07:40 -0700 | [diff] [blame] | 454 | Objects.equals(mCallCapabilities, d.mCallCapabilities) && |
| Andrew Lee | 223ad14 | 2014-08-27 16:33:08 -0700 | [diff] [blame] | 455 | Objects.equals(mCallProperties, d.mCallProperties) && |
| Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 456 | Objects.equals(mDisconnectCause, d.mDisconnectCause) && |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 457 | Objects.equals(mConnectTimeMillis, d.mConnectTimeMillis) && |
| Andrew Lee | 85f5d42 | 2014-07-11 17:22:03 -0700 | [diff] [blame] | 458 | Objects.equals(mGatewayInfo, d.mGatewayInfo) && |
| Evan Charlton | 5b49ade | 2014-07-15 17:03:20 -0700 | [diff] [blame] | 459 | Objects.equals(mVideoState, d.mVideoState) && |
| Nancy Chen | 10798dc | 2014-08-08 14:00:25 -0700 | [diff] [blame] | 460 | Objects.equals(mStatusHints, d.mStatusHints) && |
| Jay Shrauner | 8f98843 | 2015-04-16 12:52:19 -0700 | [diff] [blame] | 461 | Objects.equals(mExtras, d.mExtras); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 462 | } |
| 463 | return false; |
| 464 | } |
| 465 | |
| 466 | @Override |
| 467 | public int hashCode() { |
| 468 | return |
| 469 | Objects.hashCode(mHandle) + |
| 470 | Objects.hashCode(mHandlePresentation) + |
| 471 | Objects.hashCode(mCallerDisplayName) + |
| 472 | Objects.hashCode(mCallerDisplayNamePresentation) + |
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 473 | Objects.hashCode(mAccountHandle) + |
| Ihab Awad | 5d0410f | 2014-07-30 10:07:40 -0700 | [diff] [blame] | 474 | Objects.hashCode(mCallCapabilities) + |
| Andrew Lee | 223ad14 | 2014-08-27 16:33:08 -0700 | [diff] [blame] | 475 | Objects.hashCode(mCallProperties) + |
| Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 476 | Objects.hashCode(mDisconnectCause) + |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 477 | Objects.hashCode(mConnectTimeMillis) + |
| Andrew Lee | 85f5d42 | 2014-07-11 17:22:03 -0700 | [diff] [blame] | 478 | Objects.hashCode(mGatewayInfo) + |
| Evan Charlton | 5b49ade | 2014-07-15 17:03:20 -0700 | [diff] [blame] | 479 | Objects.hashCode(mVideoState) + |
| Nancy Chen | 10798dc | 2014-08-08 14:00:25 -0700 | [diff] [blame] | 480 | Objects.hashCode(mStatusHints) + |
| Jay Shrauner | 8f98843 | 2015-04-16 12:52:19 -0700 | [diff] [blame] | 481 | Objects.hashCode(mExtras); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 482 | } |
| 483 | |
| 484 | /** {@hide} */ |
| 485 | public Details( |
| 486 | Uri handle, |
| 487 | int handlePresentation, |
| 488 | String callerDisplayName, |
| 489 | int callerDisplayNamePresentation, |
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 490 | PhoneAccountHandle accountHandle, |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 491 | int capabilities, |
| Andrew Lee | 223ad14 | 2014-08-27 16:33:08 -0700 | [diff] [blame] | 492 | int properties, |
| Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 493 | DisconnectCause disconnectCause, |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 494 | long connectTimeMillis, |
| Andrew Lee | 85f5d42 | 2014-07-11 17:22:03 -0700 | [diff] [blame] | 495 | GatewayInfo gatewayInfo, |
| Evan Charlton | 5b49ade | 2014-07-15 17:03:20 -0700 | [diff] [blame] | 496 | int videoState, |
| Nancy Chen | 10798dc | 2014-08-08 14:00:25 -0700 | [diff] [blame] | 497 | StatusHints statusHints, |
| Jay Shrauner | 8f98843 | 2015-04-16 12:52:19 -0700 | [diff] [blame] | 498 | Bundle extras) { |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 499 | mHandle = handle; |
| 500 | mHandlePresentation = handlePresentation; |
| 501 | mCallerDisplayName = callerDisplayName; |
| 502 | mCallerDisplayNamePresentation = callerDisplayNamePresentation; |
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 503 | mAccountHandle = accountHandle; |
| Ihab Awad | 5d0410f | 2014-07-30 10:07:40 -0700 | [diff] [blame] | 504 | mCallCapabilities = capabilities; |
| Andrew Lee | 223ad14 | 2014-08-27 16:33:08 -0700 | [diff] [blame] | 505 | mCallProperties = properties; |
| Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 506 | mDisconnectCause = disconnectCause; |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 507 | mConnectTimeMillis = connectTimeMillis; |
| 508 | mGatewayInfo = gatewayInfo; |
| Andrew Lee | 85f5d42 | 2014-07-11 17:22:03 -0700 | [diff] [blame] | 509 | mVideoState = videoState; |
| Evan Charlton | 5b49ade | 2014-07-15 17:03:20 -0700 | [diff] [blame] | 510 | mStatusHints = statusHints; |
| Nancy Chen | 10798dc | 2014-08-08 14:00:25 -0700 | [diff] [blame] | 511 | mExtras = extras; |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 512 | } |
| 513 | } |
| 514 | |
| Andrew Lee | da80c87 | 2015-04-15 14:09:50 -0700 | [diff] [blame] | 515 | public static abstract class Callback { |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 516 | /** |
| 517 | * Invoked when the state of this {@code Call} has changed. See {@link #getState()}. |
| 518 | * |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 519 | * @param call The {@code Call} invoking this method. |
| 520 | * @param state The new state of the {@code Call}. |
| 521 | */ |
| 522 | public void onStateChanged(Call call, int state) {} |
| 523 | |
| 524 | /** |
| 525 | * Invoked when the parent of this {@code Call} has changed. See {@link #getParent()}. |
| 526 | * |
| 527 | * @param call The {@code Call} invoking this method. |
| 528 | * @param parent The new parent of the {@code Call}. |
| 529 | */ |
| 530 | public void onParentChanged(Call call, Call parent) {} |
| 531 | |
| 532 | /** |
| 533 | * Invoked when the children of this {@code Call} have changed. See {@link #getChildren()}. |
| 534 | * |
| 535 | * @param call The {@code Call} invoking this method. |
| 536 | * @param children The new children of the {@code Call}. |
| 537 | */ |
| 538 | public void onChildrenChanged(Call call, List<Call> children) {} |
| 539 | |
| 540 | /** |
| 541 | * Invoked when the details of this {@code Call} have changed. See {@link #getDetails()}. |
| 542 | * |
| 543 | * @param call The {@code Call} invoking this method. |
| 544 | * @param details A {@code Details} object describing the {@code Call}. |
| 545 | */ |
| 546 | public void onDetailsChanged(Call call, Details details) {} |
| 547 | |
| 548 | /** |
| 549 | * Invoked when the text messages that can be used as responses to the incoming |
| 550 | * {@code Call} are loaded from the relevant database. |
| 551 | * See {@link #getCannedTextResponses()}. |
| 552 | * |
| 553 | * @param call The {@code Call} invoking this method. |
| 554 | * @param cannedTextResponses The text messages useable as responses. |
| 555 | */ |
| 556 | public void onCannedTextResponsesLoaded(Call call, List<String> cannedTextResponses) {} |
| 557 | |
| 558 | /** |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 559 | * Invoked when the post-dial sequence in the outgoing {@code Call} has reached a pause |
| 560 | * character. This causes the post-dial signals to stop pending user confirmation. An |
| 561 | * implementation should present this choice to the user and invoke |
| 562 | * {@link #postDialContinue(boolean)} when the user makes the choice. |
| 563 | * |
| 564 | * @param call The {@code Call} invoking this method. |
| 565 | * @param remainingPostDialSequence The post-dial characters that remain to be sent. |
| 566 | */ |
| 567 | public void onPostDialWait(Call call, String remainingPostDialSequence) {} |
| 568 | |
| 569 | /** |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 570 | * Invoked when the {@code Call.VideoCall} of the {@code Call} has changed. |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 571 | * |
| 572 | * @param call The {@code Call} invoking this method. |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 573 | * @param videoCall The {@code Call.VideoCall} associated with the {@code Call}. |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 574 | */ |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 575 | public void onVideoCallChanged(Call call, InCallService.VideoCall videoCall) {} |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 576 | |
| 577 | /** |
| 578 | * Invoked when the {@code Call} is destroyed. Clients should refrain from cleaning |
| 579 | * up their UI for the {@code Call} in response to state transitions. Specifically, |
| 580 | * clients should not assume that a {@link #onStateChanged(Call, int)} with a state of |
| 581 | * {@link #STATE_DISCONNECTED} is the final notification the {@code Call} will send. Rather, |
| 582 | * clients should wait for this method to be invoked. |
| 583 | * |
| 584 | * @param call The {@code Call} being destroyed. |
| 585 | */ |
| 586 | public void onCallDestroyed(Call call) {} |
| Santos Cordon | 7c7bc7f | 2014-07-28 18:15:48 -0700 | [diff] [blame] | 587 | |
| 588 | /** |
| 589 | * Invoked upon changes to the set of {@code Call}s with which this {@code Call} can be |
| 590 | * conferenced. |
| 591 | * |
| 592 | * @param call The {@code Call} being updated. |
| 593 | * @param conferenceableCalls The {@code Call}s with which this {@code Call} can be |
| 594 | * conferenced. |
| 595 | */ |
| 596 | public void onConferenceableCallsChanged(Call call, List<Call> conferenceableCalls) {} |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 597 | } |
| 598 | |
| Andrew Lee | da80c87 | 2015-04-15 14:09:50 -0700 | [diff] [blame] | 599 | /** |
| 600 | * @deprecated Use {@code Call.Callback} instead. |
| 601 | * @hide |
| 602 | */ |
| 603 | @Deprecated |
| 604 | @SystemApi |
| 605 | public static abstract class Listener extends Callback { } |
| 606 | |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 607 | private final Phone mPhone; |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 608 | private final String mTelecomCallId; |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 609 | private final InCallAdapter mInCallAdapter; |
| Santos Cordon | 823fd3c | 2014-08-07 18:35:18 -0700 | [diff] [blame] | 610 | private final List<String> mChildrenIds = new ArrayList<>(); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 611 | private final List<Call> mChildren = new ArrayList<>(); |
| 612 | private final List<Call> mUnmodifiableChildren = Collections.unmodifiableList(mChildren); |
| Andrew Lee | 011728f | 2015-04-23 15:47:06 -0700 | [diff] [blame] | 613 | private final List<CallbackRecord<Callback>> mCallbackRecords = new CopyOnWriteArrayList<>(); |
| Santos Cordon | 7c7bc7f | 2014-07-28 18:15:48 -0700 | [diff] [blame] | 614 | private final List<Call> mConferenceableCalls = new ArrayList<>(); |
| 615 | private final List<Call> mUnmodifiableConferenceableCalls = |
| 616 | Collections.unmodifiableList(mConferenceableCalls); |
| 617 | |
| Santos Cordon | 823fd3c | 2014-08-07 18:35:18 -0700 | [diff] [blame] | 618 | private boolean mChildrenCached; |
| 619 | private String mParentId = null; |
| Santos Cordon | 7c7bc7f | 2014-07-28 18:15:48 -0700 | [diff] [blame] | 620 | private int mState; |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 621 | private List<String> mCannedTextResponses = null; |
| 622 | private String mRemainingPostDialSequence; |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 623 | private InCallService.VideoCall mVideoCall; |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 624 | private Details mDetails; |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 625 | |
| 626 | /** |
| 627 | * Obtains the post-dial sequence remaining to be emitted by this {@code Call}, if any. |
| 628 | * |
| 629 | * @return The remaining post-dial sequence, or {@code null} if there is no post-dial sequence |
| 630 | * remaining or this {@code Call} is not in a post-dial state. |
| 631 | */ |
| 632 | public String getRemainingPostDialSequence() { |
| 633 | return mRemainingPostDialSequence; |
| 634 | } |
| 635 | |
| 636 | /** |
| 637 | * Instructs this {@link #STATE_RINGING} {@code Call} to answer. |
| Andrew Lee | 8da4c3c | 2014-07-16 10:11:42 -0700 | [diff] [blame] | 638 | * @param videoState The video state in which to answer the call. |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 639 | */ |
| Andrew Lee | 8da4c3c | 2014-07-16 10:11:42 -0700 | [diff] [blame] | 640 | public void answer(int videoState) { |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 641 | mInCallAdapter.answerCall(mTelecomCallId, videoState); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 642 | } |
| 643 | |
| 644 | /** |
| 645 | * Instructs this {@link #STATE_RINGING} {@code Call} to reject. |
| 646 | * |
| 647 | * @param rejectWithMessage Whether to reject with a text message. |
| 648 | * @param textMessage An optional text message with which to respond. |
| 649 | */ |
| 650 | public void reject(boolean rejectWithMessage, String textMessage) { |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 651 | mInCallAdapter.rejectCall(mTelecomCallId, rejectWithMessage, textMessage); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 652 | } |
| 653 | |
| 654 | /** |
| 655 | * Instructs this {@code Call} to disconnect. |
| 656 | */ |
| 657 | public void disconnect() { |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 658 | mInCallAdapter.disconnectCall(mTelecomCallId); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 659 | } |
| 660 | |
| 661 | /** |
| 662 | * Instructs this {@code Call} to go on hold. |
| 663 | */ |
| 664 | public void hold() { |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 665 | mInCallAdapter.holdCall(mTelecomCallId); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 666 | } |
| 667 | |
| 668 | /** |
| 669 | * Instructs this {@link #STATE_HOLDING} call to release from hold. |
| 670 | */ |
| 671 | public void unhold() { |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 672 | mInCallAdapter.unholdCall(mTelecomCallId); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 673 | } |
| 674 | |
| 675 | /** |
| 676 | * Instructs this {@code Call} to play a dual-tone multi-frequency signaling (DTMF) tone. |
| 677 | * |
| 678 | * Any other currently playing DTMF tone in the specified call is immediately stopped. |
| 679 | * |
| 680 | * @param digit A character representing the DTMF digit for which to play the tone. This |
| 681 | * value must be one of {@code '0'} through {@code '9'}, {@code '*'} or {@code '#'}. |
| 682 | */ |
| 683 | public void playDtmfTone(char digit) { |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 684 | mInCallAdapter.playDtmfTone(mTelecomCallId, digit); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 685 | } |
| 686 | |
| 687 | /** |
| 688 | * Instructs this {@code Call} to stop any dual-tone multi-frequency signaling (DTMF) tone |
| 689 | * currently playing. |
| 690 | * |
| 691 | * DTMF tones are played by calling {@link #playDtmfTone(char)}. If no DTMF tone is |
| 692 | * currently playing, this method will do nothing. |
| 693 | */ |
| 694 | public void stopDtmfTone() { |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 695 | mInCallAdapter.stopDtmfTone(mTelecomCallId); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 696 | } |
| 697 | |
| 698 | /** |
| 699 | * Instructs this {@code Call} to continue playing a post-dial DTMF string. |
| 700 | * |
| 701 | * A post-dial DTMF string is a string of digits entered after a phone number, when dialed, |
| 702 | * that are immediately sent as DTMF tones to the recipient as soon as the connection is made. |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 703 | * |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 704 | * If the DTMF string contains a {@link TelecomManager#DTMF_CHARACTER_PAUSE} symbol, this |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 705 | * {@code Call} will temporarily pause playing the tones for a pre-defined period of time. |
| 706 | * |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 707 | * If the DTMF string contains a {@link TelecomManager#DTMF_CHARACTER_WAIT} symbol, this |
| Andrew Lee | da80c87 | 2015-04-15 14:09:50 -0700 | [diff] [blame] | 708 | * {@code Call} will pause playing the tones and notify callbacks via |
| 709 | * {@link Callback#onPostDialWait(Call, String)}. At this point, the in-call app |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 710 | * should display to the user an indication of this state and an affordance to continue |
| 711 | * the postdial sequence. When the user decides to continue the postdial sequence, the in-call |
| 712 | * app should invoke the {@link #postDialContinue(boolean)} method. |
| 713 | * |
| 714 | * @param proceed Whether or not to continue with the post-dial sequence. |
| 715 | */ |
| 716 | public void postDialContinue(boolean proceed) { |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 717 | mInCallAdapter.postDialContinue(mTelecomCallId, proceed); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 718 | } |
| 719 | |
| 720 | /** |
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 721 | * Notifies this {@code Call} that an account has been selected and to proceed with placing |
| Nancy Chen | 36c62f3 | 2014-10-21 18:36:39 -0700 | [diff] [blame] | 722 | * an outgoing call. Optionally sets this account as the default account. |
| Nancy Chen | 5da0fd5 | 2014-07-08 14:16:17 -0700 | [diff] [blame] | 723 | */ |
| Nancy Chen | 36c62f3 | 2014-10-21 18:36:39 -0700 | [diff] [blame] | 724 | public void phoneAccountSelected(PhoneAccountHandle accountHandle, boolean setDefault) { |
| 725 | mInCallAdapter.phoneAccountSelected(mTelecomCallId, accountHandle, setDefault); |
| Nancy Chen | 5da0fd5 | 2014-07-08 14:16:17 -0700 | [diff] [blame] | 726 | |
| 727 | } |
| 728 | |
| 729 | /** |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 730 | * Instructs this {@code Call} to enter a conference. |
| Santos Cordon | 7c7bc7f | 2014-07-28 18:15:48 -0700 | [diff] [blame] | 731 | * |
| 732 | * @param callToConferenceWith The other call with which to conference. |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 733 | */ |
| Santos Cordon | 7c7bc7f | 2014-07-28 18:15:48 -0700 | [diff] [blame] | 734 | public void conference(Call callToConferenceWith) { |
| 735 | if (callToConferenceWith != null) { |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 736 | mInCallAdapter.conference(mTelecomCallId, callToConferenceWith.mTelecomCallId); |
| Santos Cordon | 7c7bc7f | 2014-07-28 18:15:48 -0700 | [diff] [blame] | 737 | } |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 738 | } |
| 739 | |
| 740 | /** |
| 741 | * Instructs this {@code Call} to split from any conference call with which it may be |
| 742 | * connected. |
| 743 | */ |
| 744 | public void splitFromConference() { |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 745 | mInCallAdapter.splitFromConference(mTelecomCallId); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 746 | } |
| 747 | |
| 748 | /** |
| Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 749 | * Merges the calls within this conference. See {@link Details#CAPABILITY_MERGE_CONFERENCE}. |
| Santos Cordon | a486804 | 2014-09-04 17:39:22 -0700 | [diff] [blame] | 750 | */ |
| 751 | public void mergeConference() { |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 752 | mInCallAdapter.mergeConference(mTelecomCallId); |
| Santos Cordon | a486804 | 2014-09-04 17:39:22 -0700 | [diff] [blame] | 753 | } |
| 754 | |
| 755 | /** |
| Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 756 | * Swaps the calls within this conference. See {@link Details#CAPABILITY_SWAP_CONFERENCE}. |
| Santos Cordon | a486804 | 2014-09-04 17:39:22 -0700 | [diff] [blame] | 757 | */ |
| 758 | public void swapConference() { |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 759 | mInCallAdapter.swapConference(mTelecomCallId); |
| Santos Cordon | a486804 | 2014-09-04 17:39:22 -0700 | [diff] [blame] | 760 | } |
| 761 | |
| 762 | /** |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 763 | * Obtains the parent of this {@code Call} in a conference, if any. |
| 764 | * |
| 765 | * @return The parent {@code Call}, or {@code null} if this {@code Call} is not a |
| 766 | * child of any conference {@code Call}s. |
| 767 | */ |
| 768 | public Call getParent() { |
| Santos Cordon | 823fd3c | 2014-08-07 18:35:18 -0700 | [diff] [blame] | 769 | if (mParentId != null) { |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 770 | return mPhone.internalGetCallByTelecomId(mParentId); |
| Santos Cordon | 823fd3c | 2014-08-07 18:35:18 -0700 | [diff] [blame] | 771 | } |
| 772 | return null; |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 773 | } |
| 774 | |
| 775 | /** |
| 776 | * Obtains the children of this conference {@code Call}, if any. |
| 777 | * |
| 778 | * @return The children of this {@code Call} if this {@code Call} is a conference, or an empty |
| 779 | * {@code List} otherwise. |
| 780 | */ |
| 781 | public List<Call> getChildren() { |
| Santos Cordon | 823fd3c | 2014-08-07 18:35:18 -0700 | [diff] [blame] | 782 | if (!mChildrenCached) { |
| 783 | mChildrenCached = true; |
| 784 | mChildren.clear(); |
| 785 | |
| 786 | for(String id : mChildrenIds) { |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 787 | Call call = mPhone.internalGetCallByTelecomId(id); |
| Santos Cordon | 823fd3c | 2014-08-07 18:35:18 -0700 | [diff] [blame] | 788 | if (call == null) { |
| 789 | // At least one child was still not found, so do not save true for "cached" |
| 790 | mChildrenCached = false; |
| 791 | } else { |
| 792 | mChildren.add(call); |
| 793 | } |
| 794 | } |
| 795 | } |
| 796 | |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 797 | return mUnmodifiableChildren; |
| 798 | } |
| 799 | |
| 800 | /** |
| Santos Cordon | 7c7bc7f | 2014-07-28 18:15:48 -0700 | [diff] [blame] | 801 | * Returns the list of {@code Call}s with which this {@code Call} is allowed to conference. |
| 802 | * |
| 803 | * @return The list of conferenceable {@code Call}s. |
| 804 | */ |
| 805 | public List<Call> getConferenceableCalls() { |
| 806 | return mUnmodifiableConferenceableCalls; |
| 807 | } |
| 808 | |
| 809 | /** |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 810 | * Obtains the state of this {@code Call}. |
| 811 | * |
| 812 | * @return A state value, chosen from the {@code STATE_*} constants. |
| 813 | */ |
| 814 | public int getState() { |
| 815 | return mState; |
| 816 | } |
| 817 | |
| 818 | /** |
| 819 | * Obtains a list of canned, pre-configured message responses to present to the user as |
| 820 | * ways of rejecting this {@code Call} using via a text message. |
| 821 | * |
| 822 | * @see #reject(boolean, String) |
| 823 | * |
| 824 | * @return A list of canned text message responses. |
| 825 | */ |
| 826 | public List<String> getCannedTextResponses() { |
| 827 | return mCannedTextResponses; |
| 828 | } |
| 829 | |
| 830 | /** |
| 831 | * Obtains an object that can be used to display video from this {@code Call}. |
| 832 | * |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 833 | * @return An {@code Call.VideoCall}. |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 834 | */ |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 835 | public InCallService.VideoCall getVideoCall() { |
| 836 | return mVideoCall; |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 837 | } |
| 838 | |
| 839 | /** |
| 840 | * Obtains an object containing call details. |
| 841 | * |
| 842 | * @return A {@link Details} object. Depending on the state of the {@code Call}, the |
| 843 | * result may be {@code null}. |
| 844 | */ |
| 845 | public Details getDetails() { |
| 846 | return mDetails; |
| 847 | } |
| 848 | |
| 849 | /** |
| Andrew Lee | da80c87 | 2015-04-15 14:09:50 -0700 | [diff] [blame] | 850 | * Registers a callback to this {@code Call}. |
| 851 | * |
| 852 | * @param callback A {@code Callback}. |
| 853 | */ |
| 854 | public void registerCallback(Callback callback) { |
| Andrew Lee | 011728f | 2015-04-23 15:47:06 -0700 | [diff] [blame] | 855 | registerCallback(callback, new Handler()); |
| 856 | } |
| 857 | |
| 858 | /** |
| 859 | * Registers a callback to this {@code Call}. |
| 860 | * |
| 861 | * @param callback A {@code Callback}. |
| 862 | * @param handler A handler which command and status changes will be delivered to. |
| 863 | */ |
| 864 | public void registerCallback(Callback callback, Handler handler) { |
| 865 | unregisterCallback(callback); |
| 866 | if (callback != null && handler != null) { |
| 867 | mCallbackRecords.add(new CallbackRecord<Callback>(callback, handler)); |
| 868 | } |
| Andrew Lee | da80c87 | 2015-04-15 14:09:50 -0700 | [diff] [blame] | 869 | } |
| 870 | |
| 871 | /** |
| 872 | * Unregisters a callback from this {@code Call}. |
| 873 | * |
| 874 | * @param callback A {@code Callback}. |
| 875 | */ |
| 876 | public void unregisterCallback(Callback callback) { |
| 877 | if (callback != null) { |
| Andrew Lee | 011728f | 2015-04-23 15:47:06 -0700 | [diff] [blame] | 878 | for (CallbackRecord<Callback> record : mCallbackRecords) { |
| 879 | if (record.getCallback() == callback) { |
| 880 | mCallbackRecords.remove(record); |
| 881 | break; |
| 882 | } |
| 883 | } |
| Andrew Lee | da80c87 | 2015-04-15 14:09:50 -0700 | [diff] [blame] | 884 | } |
| 885 | } |
| 886 | |
| 887 | /** |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 888 | * Adds a listener to this {@code Call}. |
| 889 | * |
| 890 | * @param listener A {@code Listener}. |
| Andrew Lee | da80c87 | 2015-04-15 14:09:50 -0700 | [diff] [blame] | 891 | * @deprecated Use {@link #registerCallback} instead. |
| 892 | * @hide |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 893 | */ |
| Andrew Lee | da80c87 | 2015-04-15 14:09:50 -0700 | [diff] [blame] | 894 | @Deprecated |
| 895 | @SystemApi |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 896 | public void addListener(Listener listener) { |
| Andrew Lee | da80c87 | 2015-04-15 14:09:50 -0700 | [diff] [blame] | 897 | registerCallback(listener); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 898 | } |
| 899 | |
| 900 | /** |
| 901 | * Removes a listener from this {@code Call}. |
| 902 | * |
| 903 | * @param listener A {@code Listener}. |
| Andrew Lee | da80c87 | 2015-04-15 14:09:50 -0700 | [diff] [blame] | 904 | * @deprecated Use {@link #unregisterCallback} instead. |
| 905 | * @hide |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 906 | */ |
| Andrew Lee | da80c87 | 2015-04-15 14:09:50 -0700 | [diff] [blame] | 907 | @Deprecated |
| 908 | @SystemApi |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 909 | public void removeListener(Listener listener) { |
| Andrew Lee | da80c87 | 2015-04-15 14:09:50 -0700 | [diff] [blame] | 910 | unregisterCallback(listener); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 911 | } |
| 912 | |
| Andrew Lee | da80c87 | 2015-04-15 14:09:50 -0700 | [diff] [blame] | 913 | |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 914 | /** {@hide} */ |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 915 | Call(Phone phone, String telecomCallId, InCallAdapter inCallAdapter) { |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 916 | mPhone = phone; |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 917 | mTelecomCallId = telecomCallId; |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 918 | mInCallAdapter = inCallAdapter; |
| 919 | mState = STATE_NEW; |
| 920 | } |
| 921 | |
| 922 | /** {@hide} */ |
| 923 | final String internalGetCallId() { |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 924 | return mTelecomCallId; |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 925 | } |
| 926 | |
| 927 | /** {@hide} */ |
| Santos Cordon | 7c7bc7f | 2014-07-28 18:15:48 -0700 | [diff] [blame] | 928 | final void internalUpdate(ParcelableCall parcelableCall, Map<String, Call> callIdMap) { |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 929 | // First, we update the internal state as far as possible before firing any updates. |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 930 | Details details = new Details( |
| Santos Cordon | 88b771d | 2014-07-19 13:10:40 -0700 | [diff] [blame] | 931 | parcelableCall.getHandle(), |
| 932 | parcelableCall.getHandlePresentation(), |
| 933 | parcelableCall.getCallerDisplayName(), |
| 934 | parcelableCall.getCallerDisplayNamePresentation(), |
| 935 | parcelableCall.getAccountHandle(), |
| 936 | parcelableCall.getCapabilities(), |
| Andrew Lee | 223ad14 | 2014-08-27 16:33:08 -0700 | [diff] [blame] | 937 | parcelableCall.getProperties(), |
| Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 938 | parcelableCall.getDisconnectCause(), |
| Santos Cordon | 88b771d | 2014-07-19 13:10:40 -0700 | [diff] [blame] | 939 | parcelableCall.getConnectTimeMillis(), |
| 940 | parcelableCall.getGatewayInfo(), |
| 941 | parcelableCall.getVideoState(), |
| Nancy Chen | 10798dc | 2014-08-08 14:00:25 -0700 | [diff] [blame] | 942 | parcelableCall.getStatusHints(), |
| Jay Shrauner | 8f98843 | 2015-04-16 12:52:19 -0700 | [diff] [blame] | 943 | parcelableCall.getExtras()); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 944 | boolean detailsChanged = !Objects.equals(mDetails, details); |
| 945 | if (detailsChanged) { |
| 946 | mDetails = details; |
| 947 | } |
| 948 | |
| 949 | boolean cannedTextResponsesChanged = false; |
| Santos Cordon | 88b771d | 2014-07-19 13:10:40 -0700 | [diff] [blame] | 950 | if (mCannedTextResponses == null && parcelableCall.getCannedSmsResponses() != null |
| 951 | && !parcelableCall.getCannedSmsResponses().isEmpty()) { |
| 952 | mCannedTextResponses = |
| 953 | Collections.unmodifiableList(parcelableCall.getCannedSmsResponses()); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 954 | } |
| 955 | |
| Tyler Gunn | 7595842 | 2015-04-15 14:23:42 -0700 | [diff] [blame] | 956 | boolean videoCallChanged = parcelableCall.isVideoCallProviderChanged() && |
| 957 | !Objects.equals(mVideoCall, parcelableCall.getVideoCall()); |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 958 | if (videoCallChanged) { |
| 959 | mVideoCall = parcelableCall.getVideoCall(); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 960 | } |
| 961 | |
| Santos Cordon | e3c507b | 2015-04-23 14:44:19 -0700 | [diff] [blame] | 962 | int state = parcelableCall.getState(); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 963 | boolean stateChanged = mState != state; |
| 964 | if (stateChanged) { |
| 965 | mState = state; |
| 966 | } |
| 967 | |
| Santos Cordon | 823fd3c | 2014-08-07 18:35:18 -0700 | [diff] [blame] | 968 | String parentId = parcelableCall.getParentCallId(); |
| 969 | boolean parentChanged = !Objects.equals(mParentId, parentId); |
| 970 | if (parentChanged) { |
| 971 | mParentId = parentId; |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 972 | } |
| 973 | |
| Santos Cordon | 823fd3c | 2014-08-07 18:35:18 -0700 | [diff] [blame] | 974 | List<String> childCallIds = parcelableCall.getChildCallIds(); |
| 975 | boolean childrenChanged = !Objects.equals(childCallIds, mChildrenIds); |
| 976 | if (childrenChanged) { |
| 977 | mChildrenIds.clear(); |
| 978 | mChildrenIds.addAll(parcelableCall.getChildCallIds()); |
| 979 | mChildrenCached = false; |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 980 | } |
| 981 | |
| Santos Cordon | 7c7bc7f | 2014-07-28 18:15:48 -0700 | [diff] [blame] | 982 | List<String> conferenceableCallIds = parcelableCall.getConferenceableCallIds(); |
| 983 | List<Call> conferenceableCalls = new ArrayList<Call>(conferenceableCallIds.size()); |
| 984 | for (String otherId : conferenceableCallIds) { |
| 985 | if (callIdMap.containsKey(otherId)) { |
| 986 | conferenceableCalls.add(callIdMap.get(otherId)); |
| 987 | } |
| 988 | } |
| 989 | |
| 990 | if (!Objects.equals(mConferenceableCalls, conferenceableCalls)) { |
| 991 | mConferenceableCalls.clear(); |
| 992 | mConferenceableCalls.addAll(conferenceableCalls); |
| 993 | fireConferenceableCallsChanged(); |
| 994 | } |
| 995 | |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 996 | // Now we fire updates, ensuring that any client who listens to any of these notifications |
| 997 | // gets the most up-to-date state. |
| 998 | |
| 999 | if (stateChanged) { |
| 1000 | fireStateChanged(mState); |
| 1001 | } |
| 1002 | if (detailsChanged) { |
| 1003 | fireDetailsChanged(mDetails); |
| 1004 | } |
| 1005 | if (cannedTextResponsesChanged) { |
| 1006 | fireCannedTextResponsesLoaded(mCannedTextResponses); |
| 1007 | } |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 1008 | if (videoCallChanged) { |
| 1009 | fireVideoCallChanged(mVideoCall); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 1010 | } |
| Santos Cordon | 823fd3c | 2014-08-07 18:35:18 -0700 | [diff] [blame] | 1011 | if (parentChanged) { |
| 1012 | fireParentChanged(getParent()); |
| 1013 | } |
| 1014 | if (childrenChanged) { |
| 1015 | fireChildrenChanged(getChildren()); |
| 1016 | } |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 1017 | |
| 1018 | // If we have transitioned to DISCONNECTED, that means we need to notify clients and |
| 1019 | // remove ourselves from the Phone. Note that we do this after completing all state updates |
| 1020 | // so a client can cleanly transition all their UI to the state appropriate for a |
| 1021 | // DISCONNECTED Call while still relying on the existence of that Call in the Phone's list. |
| 1022 | if (mState == STATE_DISCONNECTED) { |
| 1023 | fireCallDestroyed(); |
| 1024 | mPhone.internalRemoveCall(this); |
| 1025 | } |
| 1026 | } |
| 1027 | |
| 1028 | /** {@hide} */ |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 1029 | final void internalSetPostDialWait(String remaining) { |
| 1030 | mRemainingPostDialSequence = remaining; |
| 1031 | firePostDialWait(mRemainingPostDialSequence); |
| 1032 | } |
| 1033 | |
| Sailesh Nepal | 2ab88cc | 2014-07-18 14:49:18 -0700 | [diff] [blame] | 1034 | /** {@hide} */ |
| Santos Cordon | f30d7e9 | 2014-08-26 09:54:33 -0700 | [diff] [blame] | 1035 | final void internalSetDisconnected() { |
| 1036 | if (mState != Call.STATE_DISCONNECTED) { |
| 1037 | mState = Call.STATE_DISCONNECTED; |
| 1038 | fireStateChanged(mState); |
| 1039 | fireCallDestroyed(); |
| 1040 | mPhone.internalRemoveCall(this); |
| 1041 | } |
| 1042 | } |
| 1043 | |
| Andrew Lee | 011728f | 2015-04-23 15:47:06 -0700 | [diff] [blame] | 1044 | private void fireStateChanged(final int newState) { |
| 1045 | for (CallbackRecord<Callback> record : mCallbackRecords) { |
| 1046 | final Call call = this; |
| 1047 | final Callback callback = record.getCallback(); |
| 1048 | record.getHandler().post(new Runnable() { |
| 1049 | @Override |
| 1050 | public void run() { |
| 1051 | callback.onStateChanged(call, newState); |
| 1052 | } |
| 1053 | }); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 1054 | } |
| 1055 | } |
| 1056 | |
| Andrew Lee | 011728f | 2015-04-23 15:47:06 -0700 | [diff] [blame] | 1057 | private void fireParentChanged(final Call newParent) { |
| 1058 | for (CallbackRecord<Callback> record : mCallbackRecords) { |
| 1059 | final Call call = this; |
| 1060 | final Callback callback = record.getCallback(); |
| 1061 | record.getHandler().post(new Runnable() { |
| 1062 | @Override |
| 1063 | public void run() { |
| 1064 | callback.onParentChanged(call, newParent); |
| 1065 | } |
| 1066 | }); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 1067 | } |
| 1068 | } |
| 1069 | |
| Andrew Lee | 011728f | 2015-04-23 15:47:06 -0700 | [diff] [blame] | 1070 | private void fireChildrenChanged(final List<Call> children) { |
| 1071 | for (CallbackRecord<Callback> record : mCallbackRecords) { |
| 1072 | final Call call = this; |
| 1073 | final Callback callback = record.getCallback(); |
| 1074 | record.getHandler().post(new Runnable() { |
| 1075 | @Override |
| 1076 | public void run() { |
| 1077 | callback.onChildrenChanged(call, children); |
| 1078 | } |
| 1079 | }); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 1080 | } |
| 1081 | } |
| 1082 | |
| Andrew Lee | 011728f | 2015-04-23 15:47:06 -0700 | [diff] [blame] | 1083 | private void fireDetailsChanged(final Details details) { |
| 1084 | for (CallbackRecord<Callback> record : mCallbackRecords) { |
| 1085 | final Call call = this; |
| 1086 | final Callback callback = record.getCallback(); |
| 1087 | record.getHandler().post(new Runnable() { |
| 1088 | @Override |
| 1089 | public void run() { |
| 1090 | callback.onDetailsChanged(call, details); |
| 1091 | } |
| 1092 | }); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 1093 | } |
| 1094 | } |
| 1095 | |
| Andrew Lee | 011728f | 2015-04-23 15:47:06 -0700 | [diff] [blame] | 1096 | private void fireCannedTextResponsesLoaded(final List<String> cannedTextResponses) { |
| 1097 | for (CallbackRecord<Callback> record : mCallbackRecords) { |
| 1098 | final Call call = this; |
| 1099 | final Callback callback = record.getCallback(); |
| 1100 | record.getHandler().post(new Runnable() { |
| 1101 | @Override |
| 1102 | public void run() { |
| 1103 | callback.onCannedTextResponsesLoaded(call, cannedTextResponses); |
| 1104 | } |
| 1105 | }); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 1106 | } |
| 1107 | } |
| 1108 | |
| Andrew Lee | 011728f | 2015-04-23 15:47:06 -0700 | [diff] [blame] | 1109 | private void fireVideoCallChanged(final InCallService.VideoCall videoCall) { |
| 1110 | for (CallbackRecord<Callback> record : mCallbackRecords) { |
| 1111 | final Call call = this; |
| 1112 | final Callback callback = record.getCallback(); |
| 1113 | record.getHandler().post(new Runnable() { |
| 1114 | @Override |
| 1115 | public void run() { |
| 1116 | callback.onVideoCallChanged(call, videoCall); |
| 1117 | } |
| 1118 | }); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 1119 | } |
| 1120 | } |
| 1121 | |
| Andrew Lee | 011728f | 2015-04-23 15:47:06 -0700 | [diff] [blame] | 1122 | private void firePostDialWait(final String remainingPostDialSequence) { |
| 1123 | for (CallbackRecord<Callback> record : mCallbackRecords) { |
| 1124 | final Call call = this; |
| 1125 | final Callback callback = record.getCallback(); |
| 1126 | record.getHandler().post(new Runnable() { |
| 1127 | @Override |
| 1128 | public void run() { |
| 1129 | callback.onPostDialWait(call, remainingPostDialSequence); |
| 1130 | } |
| 1131 | }); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 1132 | } |
| 1133 | } |
| 1134 | |
| 1135 | private void fireCallDestroyed() { |
| Andrew Lee | 011728f | 2015-04-23 15:47:06 -0700 | [diff] [blame] | 1136 | for (CallbackRecord<Callback> record: mCallbackRecords) { |
| 1137 | final Call call = this; |
| 1138 | final Callback callback = record.getCallback(); |
| 1139 | record.getHandler().post(new Runnable() { |
| 1140 | @Override |
| 1141 | public void run() { |
| 1142 | callback.onCallDestroyed(call); |
| 1143 | } |
| 1144 | }); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 1145 | } |
| 1146 | } |
| 1147 | |
| Santos Cordon | 7c7bc7f | 2014-07-28 18:15:48 -0700 | [diff] [blame] | 1148 | private void fireConferenceableCallsChanged() { |
| Andrew Lee | 011728f | 2015-04-23 15:47:06 -0700 | [diff] [blame] | 1149 | for (CallbackRecord<Callback> record : mCallbackRecords) { |
| 1150 | final Call call = this; |
| 1151 | final Callback callback = record.getCallback(); |
| 1152 | record.getHandler().post(new Runnable() { |
| 1153 | @Override |
| 1154 | public void run() { |
| 1155 | callback.onConferenceableCallsChanged(call, mUnmodifiableConferenceableCalls); |
| 1156 | } |
| 1157 | }); |
| Santos Cordon | 7c7bc7f | 2014-07-28 18:15:48 -0700 | [diff] [blame] | 1158 | } |
| 1159 | } |
| Santos Cordon | 7c7bc7f | 2014-07-28 18:15:48 -0700 | [diff] [blame] | 1160 | } |