| Santos Cordon | 3d3735e | 2014-01-29 14:10:10 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 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; |
| Santos Cordon | 3d3735e | 2014-01-29 14:10:10 -0800 | [diff] [blame] | 18 | |
| Gabriel Peal | b95f169 | 2014-08-19 14:24:18 -0700 | [diff] [blame] | 19 | import android.annotation.SystemApi; |
| 20 | |
| Santos Cordon | 3d3735e | 2014-01-29 14:10:10 -0800 | [diff] [blame] | 21 | /** |
| 22 | * Defines call-state constants of the different states in which a call can exist. Although states |
| 23 | * have the notion of normal transitions, due to the volatile nature of telephony systems, code |
| 24 | * that uses these states should be resilient to unexpected state changes outside of what is |
| 25 | * considered traditional. |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 26 | * |
| 27 | * {@hide} |
| Santos Cordon | 3d3735e | 2014-01-29 14:10:10 -0800 | [diff] [blame] | 28 | */ |
| Gabriel Peal | b95f169 | 2014-08-19 14:24:18 -0700 | [diff] [blame] | 29 | @SystemApi |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 30 | public final class CallState { |
| 31 | |
| 32 | private CallState() {} |
| 33 | |
| Santos Cordon | 3d3735e | 2014-01-29 14:10:10 -0800 | [diff] [blame] | 34 | /** |
| 35 | * Indicates that a call is new and not connected. This is used as the default state internally |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 36 | * within Telecom and should not be used between Telecom and call services. Call services are |
| Evan Charlton | e9aa1aa | 2014-04-10 09:21:03 -0700 | [diff] [blame] | 37 | * not expected to ever interact with NEW calls, but {@link InCallService}s will see calls in |
| 38 | * this state. |
| Santos Cordon | 3d3735e | 2014-01-29 14:10:10 -0800 | [diff] [blame] | 39 | */ |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 40 | public static final int NEW = 0; |
| Santos Cordon | 3d3735e | 2014-01-29 14:10:10 -0800 | [diff] [blame] | 41 | |
| 42 | /** |
| Nancy Chen | e9b7a8e | 2014-08-08 14:26:27 -0700 | [diff] [blame] | 43 | * The initial state of an outgoing {@code Call}. |
| 44 | * Common transitions are to {@link #DIALING} state for a successful call or |
| 45 | * {@link #DISCONNECTED} if it failed. |
| Nancy Chen | e20930f | 2014-08-07 16:17:21 -0700 | [diff] [blame] | 46 | */ |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 47 | public static final int CONNECTING = 1; |
| Nancy Chen | e20930f | 2014-08-07 16:17:21 -0700 | [diff] [blame] | 48 | |
| 49 | /** |
| Nancy Chen | 5da0fd5 | 2014-07-08 14:16:17 -0700 | [diff] [blame] | 50 | * Indicates that the call is about to go into the outgoing and dialing state but is waiting for |
| Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 51 | * user input before it proceeds. For example, where no default {@link PhoneAccount} is set, |
| 52 | * this is the state where the InCallUI is waiting for the user to select a |
| 53 | * {@link PhoneAccount} to call from. |
| Nancy Chen | 5da0fd5 | 2014-07-08 14:16:17 -0700 | [diff] [blame] | 54 | */ |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 55 | public static final int PRE_DIAL_WAIT = 2; |
| Nancy Chen | 5da0fd5 | 2014-07-08 14:16:17 -0700 | [diff] [blame] | 56 | |
| 57 | /** |
| Santos Cordon | 3d3735e | 2014-01-29 14:10:10 -0800 | [diff] [blame] | 58 | * Indicates that a call is outgoing and in the dialing state. A call transitions to this state |
| 59 | * once an outgoing call has begun (e.g., user presses the dial button in Dialer). Calls in this |
| 60 | * state usually transition to {@link #ACTIVE} if the call was answered or {@link #DISCONNECTED} |
| 61 | * if the call was disconnected somehow (e.g., failure or cancellation of the call by the user). |
| 62 | */ |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 63 | public static final int DIALING = 3; |
| Santos Cordon | 3d3735e | 2014-01-29 14:10:10 -0800 | [diff] [blame] | 64 | |
| 65 | /** |
| 66 | * Indicates that a call is incoming and the user still has the option of answering, rejecting, |
| 67 | * or doing nothing with the call. This state is usually associated with some type of audible |
| 68 | * ringtone. Normal transitions are to {@link #ACTIVE} if answered or {@link #DISCONNECTED} |
| 69 | * otherwise. |
| 70 | */ |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 71 | public static final int RINGING = 4; |
| Santos Cordon | 3d3735e | 2014-01-29 14:10:10 -0800 | [diff] [blame] | 72 | |
| 73 | /** |
| 74 | * Indicates that a call is currently connected to another party and a communication channel is |
| 75 | * open between them. The normal transition to this state is by the user answering a |
| 76 | * {@link #DIALING} call or a {@link #RINGING} call being answered by the other party. |
| 77 | */ |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 78 | public static final int ACTIVE = 5; |
| Santos Cordon | 3d3735e | 2014-01-29 14:10:10 -0800 | [diff] [blame] | 79 | |
| 80 | /** |
| Yorke Lee | 81ccaaa | 2014-03-12 18:33:19 -0700 | [diff] [blame] | 81 | * Indicates that the call is currently on hold. In this state, the call is not terminated |
| 82 | * but no communication is allowed until the call is no longer on hold. The typical transition |
| 83 | * to this state is by the user putting an {@link #ACTIVE} call on hold by explicitly performing |
| 84 | * an action, such as clicking the hold button. |
| 85 | */ |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 86 | public static final int ON_HOLD = 6; |
| Yorke Lee | 81ccaaa | 2014-03-12 18:33:19 -0700 | [diff] [blame] | 87 | |
| 88 | /** |
| Santos Cordon | 3d3735e | 2014-01-29 14:10:10 -0800 | [diff] [blame] | 89 | * Indicates that a call is currently disconnected. All states can transition to this state |
| 90 | * by the call service giving notice that the connection has been severed. When the user |
| 91 | * explicitly ends a call, it will not transition to this state until the call service confirms |
| 92 | * the disconnection or communication was lost to the call service currently responsible for |
| 93 | * this call (e.g., call service crashes). |
| 94 | */ |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 95 | public static final int DISCONNECTED = 7; |
| Ben Gilad | 6c874e3 | 2014-03-04 16:01:22 -0800 | [diff] [blame] | 96 | |
| 97 | /** |
| 98 | * Indicates that the call was attempted (mostly in the context of outgoing, at least at the |
| 99 | * time of writing) but cancelled before it was successfully connected. |
| 100 | */ |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 101 | public static final int ABORTED = 8; |
| 102 | |
| Tyler Gunn | 4afc6af | 2014-10-07 10:14:55 -0700 | [diff] [blame] | 103 | /** |
| 104 | * Indicates that the call is in the process of being disconnected and will transition next |
| 105 | * to a {@link #DISCONNECTED} state. |
| 106 | * <p> |
| 107 | * This state is not expected to be communicated from the Telephony layer, but will be reported |
| 108 | * to the InCall UI for calls where disconnection has been initiated by the user but the |
| 109 | * ConnectionService has confirmed the call as disconnected. |
| 110 | */ |
| 111 | public static final int DISCONNECTING = 9; |
| 112 | |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 113 | public static String toString(int callState) { |
| 114 | switch (callState) { |
| 115 | case NEW: |
| 116 | return "NEW"; |
| 117 | case CONNECTING: |
| 118 | return "CONNECTING"; |
| 119 | case PRE_DIAL_WAIT: |
| 120 | return "PRE_DIAL_WAIT"; |
| 121 | case DIALING: |
| 122 | return "DIALING"; |
| 123 | case RINGING: |
| 124 | return "RINGING"; |
| 125 | case ACTIVE: |
| 126 | return "ACTIVE"; |
| 127 | case ON_HOLD: |
| 128 | return "ON_HOLD"; |
| 129 | case DISCONNECTED: |
| 130 | return "DISCONNECTED"; |
| 131 | case ABORTED: |
| 132 | return "ABORTED"; |
| Tyler Gunn | 4afc6af | 2014-10-07 10:14:55 -0700 | [diff] [blame] | 133 | case DISCONNECTING: |
| 134 | return "DISCONNECTING"; |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 135 | default: |
| 136 | return "UNKNOWN"; |
| 137 | } |
| 138 | } |
| Santos Cordon | 3d3735e | 2014-01-29 14:10:10 -0800 | [diff] [blame] | 139 | } |