Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -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 | |
| 17 | package android.telecom; |
| 18 | |
Hall Liu | 2ef0411 | 2020-09-14 18:34:10 -0700 | [diff] [blame^] | 19 | import android.annotation.SystemApi; |
Youming Ye | d6de26e | 2019-01-30 11:20:35 -0800 | [diff] [blame] | 20 | import android.media.ToneGenerator; |
Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 21 | import android.os.Parcel; |
| 22 | import android.os.Parcelable; |
Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 23 | import android.text.TextUtils; |
| 24 | |
| 25 | import java.util.Objects; |
| 26 | |
| 27 | /** |
| 28 | * Describes the cause of a disconnected call. This always includes a code describing the generic |
Santos Cordon | d9e614f | 2014-10-28 13:10:36 -0700 | [diff] [blame] | 29 | * cause of the disconnect. Optionally, it may include a label and/or description to display to the |
| 30 | * user. It is the responsibility of the {@link ConnectionService} to provide localized versions of |
| 31 | * the label and description. It also may contain a reason for the disconnect, which is intended for |
| 32 | * logging and not for display to the user. |
Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 33 | */ |
| 34 | public final class DisconnectCause implements Parcelable { |
| 35 | |
| 36 | /** Disconnected because of an unknown or unspecified reason. */ |
Tej Singh | c477d9c | 2018-02-05 18:31:39 -0800 | [diff] [blame] | 37 | public static final int UNKNOWN = TelecomProtoEnums.UNKNOWN; // = 0 |
Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 38 | /** Disconnected because there was an error, such as a problem with the network. */ |
Tej Singh | c477d9c | 2018-02-05 18:31:39 -0800 | [diff] [blame] | 39 | public static final int ERROR = TelecomProtoEnums.ERROR; // = 1 |
Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 40 | /** Disconnected because of a local user-initiated action, such as hanging up. */ |
Tej Singh | c477d9c | 2018-02-05 18:31:39 -0800 | [diff] [blame] | 41 | public static final int LOCAL = TelecomProtoEnums.LOCAL; // = 2 |
Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 42 | /** |
| 43 | * Disconnected because of a remote user-initiated action, such as the other party hanging up |
| 44 | * up. |
| 45 | */ |
Tej Singh | c477d9c | 2018-02-05 18:31:39 -0800 | [diff] [blame] | 46 | public static final int REMOTE = TelecomProtoEnums.REMOTE; // = 3 |
Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 47 | /** Disconnected because it has been canceled. */ |
Tej Singh | c477d9c | 2018-02-05 18:31:39 -0800 | [diff] [blame] | 48 | public static final int CANCELED = TelecomProtoEnums.CANCELED; // = 4 |
Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 49 | /** Disconnected because there was no response to an incoming call. */ |
Tej Singh | c477d9c | 2018-02-05 18:31:39 -0800 | [diff] [blame] | 50 | public static final int MISSED = TelecomProtoEnums.MISSED; // = 5 |
Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 51 | /** Disconnected because the user rejected an incoming call. */ |
Tej Singh | c477d9c | 2018-02-05 18:31:39 -0800 | [diff] [blame] | 52 | public static final int REJECTED = TelecomProtoEnums.REJECTED; // = 6 |
Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 53 | /** Disconnected because the other party was busy. */ |
Tej Singh | c477d9c | 2018-02-05 18:31:39 -0800 | [diff] [blame] | 54 | public static final int BUSY = TelecomProtoEnums.BUSY; // = 7 |
Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 55 | /** |
| 56 | * Disconnected because of a restriction on placing the call, such as dialing in airplane |
| 57 | * mode. |
| 58 | */ |
Tej Singh | c477d9c | 2018-02-05 18:31:39 -0800 | [diff] [blame] | 59 | public static final int RESTRICTED = TelecomProtoEnums.RESTRICTED; // = 8 |
Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 60 | /** Disconnected for reason not described by other disconnect codes. */ |
Tej Singh | c477d9c | 2018-02-05 18:31:39 -0800 | [diff] [blame] | 61 | public static final int OTHER = TelecomProtoEnums.OTHER; // = 9 |
Sailesh Nepal | 7a69c92 | 2014-11-05 18:37:53 -0800 | [diff] [blame] | 62 | /** |
| 63 | * Disconnected because the connection manager did not support the call. The call will be tried |
| 64 | * again without a connection manager. See {@link PhoneAccount#CAPABILITY_CONNECTION_MANAGER}. |
| 65 | */ |
Tej Singh | c477d9c | 2018-02-05 18:31:39 -0800 | [diff] [blame] | 66 | public static final int CONNECTION_MANAGER_NOT_SUPPORTED = |
| 67 | TelecomProtoEnums.CONNECTION_MANAGER_NOT_SUPPORTED; // = 10 |
Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 68 | |
Tyler Gunn | 876dbfb | 2016-03-14 15:18:07 -0700 | [diff] [blame] | 69 | /** |
| 70 | * Disconnected because the user did not locally answer the incoming call, but it was answered |
| 71 | * on another device where the call was ringing. |
| 72 | */ |
Tej Singh | c477d9c | 2018-02-05 18:31:39 -0800 | [diff] [blame] | 73 | public static final int ANSWERED_ELSEWHERE = TelecomProtoEnums.ANSWERED_ELSEWHERE; // = 11 |
Tyler Gunn | 876dbfb | 2016-03-14 15:18:07 -0700 | [diff] [blame] | 74 | |
| 75 | /** |
| 76 | * Disconnected because the call was pulled from the current device to another device. |
| 77 | */ |
Tej Singh | c477d9c | 2018-02-05 18:31:39 -0800 | [diff] [blame] | 78 | public static final int CALL_PULLED = TelecomProtoEnums.CALL_PULLED; // = 12 |
Tyler Gunn | 876dbfb | 2016-03-14 15:18:07 -0700 | [diff] [blame] | 79 | |
Tyler Gunn | 6adbd2b | 2016-12-07 13:19:44 -0800 | [diff] [blame] | 80 | /** |
| 81 | * Reason code (returned via {@link #getReason()}) which indicates that a call could not be |
| 82 | * completed because the cellular radio is off or out of service, the device is connected to |
| 83 | * a wifi network, but the user has not enabled wifi calling. |
Tyler Gunn | 6adbd2b | 2016-12-07 13:19:44 -0800 | [diff] [blame] | 84 | */ |
| 85 | public static final String REASON_WIFI_ON_BUT_WFC_OFF = "REASON_WIFI_ON_BUT_WFC_OFF"; |
| 86 | |
Brad Ebinger | 8818c6f | 2017-06-30 15:34:32 -0700 | [diff] [blame] | 87 | /** |
| 88 | * Reason code (returned via {@link #getReason()}), which indicates that the video telephony |
| 89 | * call was disconnected because IMS access is blocked. |
Brad Ebinger | 8818c6f | 2017-06-30 15:34:32 -0700 | [diff] [blame] | 90 | */ |
| 91 | public static final String REASON_IMS_ACCESS_BLOCKED = "REASON_IMS_ACCESS_BLOCKED"; |
| 92 | |
Youming Ye | d6de26e | 2019-01-30 11:20:35 -0800 | [diff] [blame] | 93 | /** |
Hall Liu | 2ef0411 | 2020-09-14 18:34:10 -0700 | [diff] [blame^] | 94 | * Reason code (returned via {@link #getReason()}), which indicates that the connection service |
| 95 | * is setting the call's state to {@link Call#STATE_DISCONNECTED} because it is internally |
| 96 | * changing the representation of an IMS conference call to simulate a single-party call. |
| 97 | * |
| 98 | * This reason code is only used for communication between a {@link ConnectionService} and |
| 99 | * Telecom and should not be surfaced to the user. |
| 100 | * |
Youming Ye | d6de26e | 2019-01-30 11:20:35 -0800 | [diff] [blame] | 101 | * @hide |
| 102 | */ |
Hall Liu | 2ef0411 | 2020-09-14 18:34:10 -0700 | [diff] [blame^] | 103 | @SystemApi |
Youming Ye | d6de26e | 2019-01-30 11:20:35 -0800 | [diff] [blame] | 104 | public static final String REASON_EMULATING_SINGLE_CALL = "EMULATING_SINGLE_CALL"; |
| 105 | |
Brad Ebinger | 6271387 | 2019-11-18 18:43:35 -0800 | [diff] [blame] | 106 | /** |
| 107 | * This reason is set when a call is ended in order to place an emergency call when a |
| 108 | * {@link PhoneAccount} doesn't support holding an ongoing call to place an emergency call. This |
| 109 | * reason string should only be associated with the {@link #LOCAL} disconnect code returned from |
| 110 | * {@link #getCode()}. |
| 111 | */ |
| 112 | public static final String REASON_EMERGENCY_CALL_PLACED = "REASON_EMERGENCY_CALL_PLACED"; |
| 113 | |
Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 114 | private int mDisconnectCode; |
| 115 | private CharSequence mDisconnectLabel; |
| 116 | private CharSequence mDisconnectDescription; |
| 117 | private String mDisconnectReason; |
| 118 | private int mToneToPlay; |
| 119 | |
| 120 | /** |
| 121 | * Creates a new DisconnectCause. |
| 122 | * |
| 123 | * @param code The code for the disconnect cause. |
| 124 | */ |
| 125 | public DisconnectCause(int code) { |
| 126 | this(code, null, null, null, ToneGenerator.TONE_UNKNOWN); |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * Creates a new DisconnectCause. |
| 131 | * |
| 132 | * @param code The code for the disconnect cause. |
| 133 | * @param reason The reason for the disconnect. |
| 134 | */ |
| 135 | public DisconnectCause(int code, String reason) { |
| 136 | this(code, null, null, reason, ToneGenerator.TONE_UNKNOWN); |
| 137 | } |
| 138 | |
| 139 | /** |
| 140 | * Creates a new DisconnectCause. |
Santos Cordon | d9e614f | 2014-10-28 13:10:36 -0700 | [diff] [blame] | 141 | * |
Nancy Chen | f4cf77c | 2014-09-19 10:53:21 -0700 | [diff] [blame] | 142 | * @param code The code for the disconnect cause. |
Santos Cordon | a6018b9 | 2016-02-16 14:23:12 -0800 | [diff] [blame] | 143 | * @param label The localized label to show to the user to explain the disconnect. |
Nancy Chen | f4cf77c | 2014-09-19 10:53:21 -0700 | [diff] [blame] | 144 | * @param description The localized description to show to the user to explain the disconnect. |
| 145 | * @param reason The reason for the disconnect. |
| 146 | */ |
| 147 | public DisconnectCause(int code, CharSequence label, CharSequence description, String reason) { |
| 148 | this(code, label, description, reason, ToneGenerator.TONE_UNKNOWN); |
| 149 | } |
| 150 | |
| 151 | /** |
| 152 | * Creates a new DisconnectCause. |
Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 153 | * |
| 154 | * @param code The code for the disconnect cause. |
| 155 | * @param label The localized label to show to the user to explain the disconnect. |
| 156 | * @param description The localized description to show to the user to explain the disconnect. |
| 157 | * @param reason The reason for the disconnect. |
| 158 | * @param toneToPlay The tone to play on disconnect, as defined in {@link ToneGenerator}. |
| 159 | */ |
| 160 | public DisconnectCause(int code, CharSequence label, CharSequence description, String reason, |
| 161 | int toneToPlay) { |
| 162 | mDisconnectCode = code; |
| 163 | mDisconnectLabel = label; |
| 164 | mDisconnectDescription = description; |
| 165 | mDisconnectReason = reason; |
| 166 | mToneToPlay = toneToPlay; |
| 167 | } |
| 168 | |
| 169 | /** |
| 170 | * Returns the code for the reason for this disconnect. |
| 171 | * |
| 172 | * @return The disconnect code. |
| 173 | */ |
| 174 | public int getCode() { |
| 175 | return mDisconnectCode; |
| 176 | } |
| 177 | |
| 178 | /** |
| 179 | * Returns a short label which explains the reason for the disconnect cause and is for display |
Santos Cordon | c1ec931 | 2015-04-24 11:26:01 -0700 | [diff] [blame] | 180 | * in the user interface. If not null, it is expected that the In-Call UI should display this |
| 181 | * text where it would normally display the call state ("Dialing", "Disconnected") and is |
| 182 | * therefore expected to be relatively small. The {@link ConnectionService } is responsible for |
| 183 | * providing and localizing this label. If there is no string provided, returns null. |
Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 184 | * |
| 185 | * @return The disconnect label. |
| 186 | */ |
| 187 | public CharSequence getLabel() { |
| 188 | return mDisconnectLabel; |
| 189 | } |
| 190 | |
| 191 | /** |
| 192 | * Returns a description which explains the reason for the disconnect cause and is for display |
Santos Cordon | c1ec931 | 2015-04-24 11:26:01 -0700 | [diff] [blame] | 193 | * in the user interface. This optional text is generally a longer and more descriptive version |
| 194 | * of {@link #getLabel}, however it can exist even if {@link #getLabel} is empty. The In-Call UI |
| 195 | * should display this relatively prominently; the traditional implementation displays this as |
| 196 | * an alert dialog. The {@link ConnectionService} is responsible for providing and localizing |
| 197 | * this message. If there is no string provided, returns null. |
Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 198 | * |
| 199 | * @return The disconnect description. |
| 200 | */ |
| 201 | public CharSequence getDescription() { |
| 202 | return mDisconnectDescription; |
| 203 | } |
| 204 | |
| 205 | /** |
| 206 | * Returns an explanation of the reason for the disconnect. This is not intended for display to |
| 207 | * the user and is used mainly for logging. |
| 208 | * |
| 209 | * @return The disconnect reason. |
| 210 | */ |
| 211 | public String getReason() { |
| 212 | return mDisconnectReason; |
| 213 | } |
| 214 | |
| 215 | /** |
| 216 | * Returns the tone to play when disconnected. |
| 217 | * |
| 218 | * @return the tone as defined in {@link ToneGenerator} to play when disconnected. |
| 219 | */ |
| 220 | public int getTone() { |
| 221 | return mToneToPlay; |
| 222 | } |
| 223 | |
Jeff Sharkey | 9e8f83d | 2019-02-28 12:06:45 -0700 | [diff] [blame] | 224 | public static final @android.annotation.NonNull Creator<DisconnectCause> CREATOR = new Creator<DisconnectCause>() { |
Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 225 | @Override |
| 226 | public DisconnectCause createFromParcel(Parcel source) { |
| 227 | int code = source.readInt(); |
| 228 | CharSequence label = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source); |
| 229 | CharSequence description = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source); |
| 230 | String reason = source.readString(); |
| 231 | int tone = source.readInt(); |
| 232 | return new DisconnectCause(code, label, description, reason, tone); |
| 233 | } |
| 234 | |
| 235 | @Override |
| 236 | public DisconnectCause[] newArray(int size) { |
| 237 | return new DisconnectCause[size]; |
| 238 | } |
| 239 | }; |
| 240 | |
| 241 | @Override |
| 242 | public void writeToParcel(Parcel destination, int flags) { |
| 243 | destination.writeInt(mDisconnectCode); |
| 244 | TextUtils.writeToParcel(mDisconnectLabel, destination, flags); |
| 245 | TextUtils.writeToParcel(mDisconnectDescription, destination, flags); |
| 246 | destination.writeString(mDisconnectReason); |
| 247 | destination.writeInt(mToneToPlay); |
| 248 | } |
| 249 | |
| 250 | @Override |
| 251 | public int describeContents() { |
| 252 | return 0; |
| 253 | } |
| 254 | |
| 255 | @Override |
| 256 | public int hashCode() { |
| 257 | return Objects.hashCode(mDisconnectCode) |
| 258 | + Objects.hashCode(mDisconnectLabel) |
| 259 | + Objects.hashCode(mDisconnectDescription) |
| 260 | + Objects.hashCode(mDisconnectReason) |
| 261 | + Objects.hashCode(mToneToPlay); |
| 262 | } |
| 263 | |
| 264 | @Override |
| 265 | public boolean equals(Object o) { |
| 266 | if (o instanceof DisconnectCause) { |
| 267 | DisconnectCause d = (DisconnectCause) o; |
| 268 | return Objects.equals(mDisconnectCode, d.getCode()) |
| 269 | && Objects.equals(mDisconnectLabel, d.getLabel()) |
| 270 | && Objects.equals(mDisconnectDescription, d.getDescription()) |
| 271 | && Objects.equals(mDisconnectReason, d.getReason()) |
| 272 | && Objects.equals(mToneToPlay, d.getTone()); |
| 273 | } |
| 274 | return false; |
| 275 | } |
| 276 | |
| 277 | @Override |
| 278 | public String toString() { |
| 279 | String code = ""; |
Sailesh Nepal | 7a69c92 | 2014-11-05 18:37:53 -0800 | [diff] [blame] | 280 | switch (mDisconnectCode) { |
| 281 | case UNKNOWN: |
| 282 | code = "UNKNOWN"; |
| 283 | break; |
Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 284 | case ERROR: |
| 285 | code = "ERROR"; |
| 286 | break; |
| 287 | case LOCAL: |
| 288 | code = "LOCAL"; |
| 289 | break; |
| 290 | case REMOTE: |
| 291 | code = "REMOTE"; |
| 292 | break; |
Sailesh Nepal | 7a69c92 | 2014-11-05 18:37:53 -0800 | [diff] [blame] | 293 | case CANCELED: |
| 294 | code = "CANCELED"; |
| 295 | break; |
Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 296 | case MISSED: |
| 297 | code = "MISSED"; |
| 298 | break; |
| 299 | case REJECTED: |
| 300 | code = "REJECTED"; |
| 301 | break; |
| 302 | case BUSY: |
| 303 | code = "BUSY"; |
| 304 | break; |
| 305 | case RESTRICTED: |
| 306 | code = "RESTRICTED"; |
| 307 | break; |
| 308 | case OTHER: |
| 309 | code = "OTHER"; |
| 310 | break; |
Sailesh Nepal | 7a69c92 | 2014-11-05 18:37:53 -0800 | [diff] [blame] | 311 | case CONNECTION_MANAGER_NOT_SUPPORTED: |
| 312 | code = "CONNECTION_MANAGER_NOT_SUPPORTED"; |
| 313 | break; |
Tyler Gunn | 2a3f997 | 2016-06-09 07:58:25 -0700 | [diff] [blame] | 314 | case CALL_PULLED: |
| 315 | code = "CALL_PULLED"; |
| 316 | break; |
| 317 | case ANSWERED_ELSEWHERE: |
| 318 | code = "ANSWERED_ELSEWHERE"; |
| 319 | break; |
Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 320 | default: |
Sailesh Nepal | 7a69c92 | 2014-11-05 18:37:53 -0800 | [diff] [blame] | 321 | code = "invalid code: " + mDisconnectCode; |
| 322 | break; |
Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 323 | } |
| 324 | String label = mDisconnectLabel == null ? "" : mDisconnectLabel.toString(); |
| 325 | String description = mDisconnectDescription == null |
| 326 | ? "" : mDisconnectDescription.toString(); |
| 327 | String reason = mDisconnectReason == null ? "" : mDisconnectReason; |
| 328 | return "DisconnectCause [ Code: (" + code + ")" |
| 329 | + " Label: (" + label + ")" |
| 330 | + " Description: (" + description + ")" |
| 331 | + " Reason: (" + reason + ")" |
| 332 | + " Tone: (" + mToneToPlay + ") ]"; |
| 333 | } |
| 334 | } |