blob: 558422622a06692bf29231766bfedd2a54ce3afe [file] [log] [blame]
Santos Cordon3d3735e2014-01-29 14:10:10 -08001/*
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 Gunnef9f6f92014-09-12 22:16:17 -070017package android.telecom;
Santos Cordon3d3735e2014-01-29 14:10:10 -080018
19/**
20 * Defines call-state constants of the different states in which a call can exist. Although states
21 * have the notion of normal transitions, due to the volatile nature of telephony systems, code
22 * that uses these states should be resilient to unexpected state changes outside of what is
23 * considered traditional.
24 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -070025public final class CallState {
26
27 private CallState() {}
28
Santos Cordon3d3735e2014-01-29 14:10:10 -080029 /**
30 * Indicates that a call is new and not connected. This is used as the default state internally
Tyler Gunnef9f6f92014-09-12 22:16:17 -070031 * within Telecom and should not be used between Telecom and call services. Call services are
Evan Charltone9aa1aa2014-04-10 09:21:03 -070032 * not expected to ever interact with NEW calls, but {@link InCallService}s will see calls in
33 * this state.
Santos Cordon3d3735e2014-01-29 14:10:10 -080034 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -070035 public static final int NEW = 0;
Santos Cordon3d3735e2014-01-29 14:10:10 -080036
37 /**
Nancy Chene9b7a8e2014-08-08 14:26:27 -070038 * The initial state of an outgoing {@code Call}.
39 * Common transitions are to {@link #DIALING} state for a successful call or
40 * {@link #DISCONNECTED} if it failed.
Nancy Chene20930f2014-08-07 16:17:21 -070041 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -070042 public static final int CONNECTING = 1;
Nancy Chene20930f2014-08-07 16:17:21 -070043
44 /**
Nancy Chen5da0fd52014-07-08 14:16:17 -070045 * Indicates that the call is about to go into the outgoing and dialing state but is waiting for
Evan Charlton8c8a0622014-07-20 12:31:00 -070046 * user input before it proceeds. For example, where no default {@link PhoneAccount} is set,
47 * this is the state where the InCallUI is waiting for the user to select a
48 * {@link PhoneAccount} to call from.
Nancy Chen5da0fd52014-07-08 14:16:17 -070049 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -070050 public static final int PRE_DIAL_WAIT = 2;
Nancy Chen5da0fd52014-07-08 14:16:17 -070051
52 /**
Santos Cordon3d3735e2014-01-29 14:10:10 -080053 * Indicates that a call is outgoing and in the dialing state. A call transitions to this state
54 * once an outgoing call has begun (e.g., user presses the dial button in Dialer). Calls in this
55 * state usually transition to {@link #ACTIVE} if the call was answered or {@link #DISCONNECTED}
56 * if the call was disconnected somehow (e.g., failure or cancellation of the call by the user).
57 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -070058 public static final int DIALING = 3;
Santos Cordon3d3735e2014-01-29 14:10:10 -080059
60 /**
61 * Indicates that a call is incoming and the user still has the option of answering, rejecting,
62 * or doing nothing with the call. This state is usually associated with some type of audible
63 * ringtone. Normal transitions are to {@link #ACTIVE} if answered or {@link #DISCONNECTED}
64 * otherwise.
65 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -070066 public static final int RINGING = 4;
Santos Cordon3d3735e2014-01-29 14:10:10 -080067
68 /**
69 * Indicates that a call is currently connected to another party and a communication channel is
70 * open between them. The normal transition to this state is by the user answering a
71 * {@link #DIALING} call or a {@link #RINGING} call being answered by the other party.
72 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -070073 public static final int ACTIVE = 5;
Santos Cordon3d3735e2014-01-29 14:10:10 -080074
75 /**
Yorke Lee81ccaaa2014-03-12 18:33:19 -070076 * Indicates that the call is currently on hold. In this state, the call is not terminated
77 * but no communication is allowed until the call is no longer on hold. The typical transition
78 * to this state is by the user putting an {@link #ACTIVE} call on hold by explicitly performing
79 * an action, such as clicking the hold button.
80 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -070081 public static final int ON_HOLD = 6;
Yorke Lee81ccaaa2014-03-12 18:33:19 -070082
83 /**
Santos Cordon3d3735e2014-01-29 14:10:10 -080084 * Indicates that a call is currently disconnected. All states can transition to this state
85 * by the call service giving notice that the connection has been severed. When the user
86 * explicitly ends a call, it will not transition to this state until the call service confirms
87 * the disconnection or communication was lost to the call service currently responsible for
88 * this call (e.g., call service crashes).
89 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -070090 public static final int DISCONNECTED = 7;
Ben Gilad6c874e32014-03-04 16:01:22 -080091
92 /**
93 * Indicates that the call was attempted (mostly in the context of outgoing, at least at the
94 * time of writing) but cancelled before it was successfully connected.
95 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -070096 public static final int ABORTED = 8;
97
Tyler Gunn4afc6af2014-10-07 10:14:55 -070098 /**
99 * Indicates that the call is in the process of being disconnected and will transition next
100 * to a {@link #DISCONNECTED} state.
101 * <p>
102 * This state is not expected to be communicated from the Telephony layer, but will be reported
103 * to the InCall UI for calls where disconnection has been initiated by the user but the
104 * ConnectionService has confirmed the call as disconnected.
105 */
106 public static final int DISCONNECTING = 9;
107
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700108 public static String toString(int callState) {
109 switch (callState) {
110 case NEW:
111 return "NEW";
112 case CONNECTING:
113 return "CONNECTING";
114 case PRE_DIAL_WAIT:
115 return "PRE_DIAL_WAIT";
116 case DIALING:
117 return "DIALING";
118 case RINGING:
119 return "RINGING";
120 case ACTIVE:
121 return "ACTIVE";
122 case ON_HOLD:
123 return "ON_HOLD";
124 case DISCONNECTED:
125 return "DISCONNECTED";
126 case ABORTED:
127 return "ABORTED";
Tyler Gunn4afc6af2014-10-07 10:14:55 -0700128 case DISCONNECTING:
129 return "DISCONNECTING";
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700130 default:
131 return "UNKNOWN";
132 }
133 }
Santos Cordon3d3735e2014-01-29 14:10:10 -0800134}