blob: 3bfcb0342a5bbbf6f9de3018e3fda0eee7bf987a [file] [log] [blame]
Santos Cordon8e8b8d22013-12-19 14:14:05 -08001/*
2 * Copyright (C) 2013 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
Ben Gilad9f2bed32013-12-12 17:43:26 -080017package com.android.telecomm;
18
Santos Cordon8e8b8d22013-12-19 14:14:05 -080019import android.content.Context;
Ben Giladc5b22692014-02-18 20:03:22 -080020import android.telecomm.CallServiceDescriptor;
Santos Cordon681663d2014-01-30 04:32:15 -080021import android.telecomm.CallState;
Santos Cordon681663d2014-01-30 04:32:15 -080022import android.util.Log;
Santos Cordon8e8b8d22013-12-19 14:14:05 -080023
Ben Gilad9f2bed32013-12-12 17:43:26 -080024import com.android.telecomm.exceptions.RestrictedCallException;
Ben Gilad13329fd2014-02-11 17:20:29 -080025
Santos Cordon681663d2014-01-30 04:32:15 -080026import com.google.common.base.Preconditions;
27import com.google.common.base.Strings;
Santos Cordon8e8b8d22013-12-19 14:14:05 -080028import com.google.common.collect.Lists;
Santos Cordon681663d2014-01-30 04:32:15 -080029import com.google.common.collect.Maps;
Ben Gilad9f2bed32013-12-12 17:43:26 -080030
Ben Gilad9f2bed32013-12-12 17:43:26 -080031import java.util.List;
Santos Cordon681663d2014-01-30 04:32:15 -080032import java.util.Map;
Ben Gilad9f2bed32013-12-12 17:43:26 -080033
Ben Giladdd8c6082013-12-30 14:44:08 -080034/**
35 * Singleton.
36 *
37 * NOTE(gilad): by design most APIs are package private, use the relevant adapter/s to allow
38 * access from other packages specifically refraining from passing the CallsManager instance
39 * beyond the com.android.telecomm package boundary.
40 */
Santos Cordon8e8b8d22013-12-19 14:14:05 -080041public final class CallsManager {
Santos Cordon681663d2014-01-30 04:32:15 -080042 private static final String TAG = CallsManager.class.getSimpleName();
Ben Gilad9f2bed32013-12-12 17:43:26 -080043
Santos Cordon8e8b8d22013-12-19 14:14:05 -080044 private static final CallsManager INSTANCE = new CallsManager();
Ben Gilad9f2bed32013-12-12 17:43:26 -080045
Santos Cordone3d76ab2014-01-28 17:25:20 -080046 private final Switchboard mSwitchboard;
47
48 /** Used to control the in-call app. */
49 private final InCallController mInCallController;
50
Santos Cordon8e8b8d22013-12-19 14:14:05 -080051 /**
Santos Cordon681663d2014-01-30 04:32:15 -080052 * The main call repository. Keeps an instance of all live calls keyed by call ID. New incoming
53 * and outgoing calls are added to the map and removed when the calls move to the disconnected
54 * state.
55 * TODO(santoscordon): Add new CallId class and use it in place of String.
56 */
57 private final Map<String, Call> mCalls = Maps.newHashMap();
58
59 /**
Santos Cordon8e8b8d22013-12-19 14:14:05 -080060 * May be unnecessary per off-line discussions (between santoscordon and gilad) since the set
61 * of CallsManager APIs that need to be exposed to the dialer (or any application firing call
62 * intents) may be empty.
63 */
64 private DialerAdapter mDialerAdapter;
Ben Gilad9f2bed32013-12-12 17:43:26 -080065
Santos Cordon8e8b8d22013-12-19 14:14:05 -080066 private InCallAdapter mInCallAdapter;
Ben Gilad9f2bed32013-12-12 17:43:26 -080067
Santos Cordon8e8b8d22013-12-19 14:14:05 -080068 private CallLogManager mCallLogManager;
Ben Gilad9f2bed32013-12-12 17:43:26 -080069
Santos Cordon8e8b8d22013-12-19 14:14:05 -080070 private VoicemailManager mVoicemailManager;
Ben Gilad9f2bed32013-12-12 17:43:26 -080071
Ben Gilad8bdaa462014-02-05 12:53:19 -080072 private List<OutgoingCallValidator> mOutgoingCallValidators = Lists.newArrayList();
Ben Gilad9f2bed32013-12-12 17:43:26 -080073
Ben Gilad8bdaa462014-02-05 12:53:19 -080074 private List<IncomingCallValidator> mIncomingCallValidators = Lists.newArrayList();
Ben Gilad9f2bed32013-12-12 17:43:26 -080075
Santos Cordon8e8b8d22013-12-19 14:14:05 -080076 static CallsManager getInstance() {
77 return INSTANCE;
Ben Gilad9f2bed32013-12-12 17:43:26 -080078 }
79
Santos Cordon8e8b8d22013-12-19 14:14:05 -080080 /**
Ben Gilad8bdaa462014-02-05 12:53:19 -080081 * Initializes the required Telecomm components.
Santos Cordon8e8b8d22013-12-19 14:14:05 -080082 */
83 private CallsManager() {
Santos Cordon6242b132014-02-07 16:24:42 -080084 mSwitchboard = new Switchboard(this);
85 mInCallController = new InCallController(this);
Santos Cordon8e8b8d22013-12-19 14:14:05 -080086 }
87
88 /**
Santos Cordon80d9bdc2014-02-13 18:28:46 -080089 * Starts the incoming call sequence by having switchboard confirm with the specified call
90 * service that an incoming call actually exists for the specified call token. Upon success,
91 * execution returns to {@link #handleSuccessfulIncomingCall} to start the in-call UI.
92 *
Ben Giladc5b22692014-02-18 20:03:22 -080093 * @param descriptor The descriptor of the call service to use for this incoming call.
Santos Cordon80d9bdc2014-02-13 18:28:46 -080094 * @param callToken The token used by the call service to identify the incoming call.
95 */
Ben Giladc5b22692014-02-18 20:03:22 -080096 void processIncomingCallIntent(CallServiceDescriptor descriptor, String callToken) {
Santos Cordon80d9bdc2014-02-13 18:28:46 -080097 // Create a call with no handle. Eventually, switchboard will update the call with
98 // additional information from the call service, but for now we just need one to pass around
99 // with a unique call ID.
100 Call call = new Call(null, null);
101
Ben Giladc5b22692014-02-18 20:03:22 -0800102 mSwitchboard.confirmIncomingCall(call, descriptor, callToken);
Santos Cordon80d9bdc2014-02-13 18:28:46 -0800103 }
104
105 /**
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800106 * Attempts to issue/connect the specified call. From an (arbitrary) application standpoint,
107 * all that is required to initiate this flow is to fire either of the CALL, CALL_PRIVILEGED,
108 * and CALL_EMERGENCY intents. These are listened to by CallActivity.java which then invokes
109 * this method.
110 *
111 * @param handle The handle to dial.
112 * @param contactInfo Information about the entity being called.
113 * @param context The application context.
114 */
115 void processOutgoingCallIntent(String handle, ContactInfo contactInfo, Context context)
Ben Gilad8bdaa462014-02-05 12:53:19 -0800116 throws RestrictedCallException {
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800117
Ben Gilad8bdaa462014-02-05 12:53:19 -0800118 for (OutgoingCallValidator validator : mOutgoingCallValidators) {
119 validator.validate(handle, contactInfo);
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800120 }
121
122 // No objection to issue the call, proceed with trying to put it through.
Ben Gilad13329fd2014-02-11 17:20:29 -0800123 Call call = new Call(handle, contactInfo);
Santos Cordonc195e362014-02-11 17:05:31 -0800124 mSwitchboard.placeOutgoingCall(call);
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800125 }
Santos Cordone3d76ab2014-01-28 17:25:20 -0800126
127 /**
Santos Cordon681663d2014-01-30 04:32:15 -0800128 * Adds a new outgoing call to the list of live calls and notifies the in-call app.
129 *
130 * @param call The new outgoing call.
131 */
132 void handleSuccessfulOutgoingCall(Call call) {
133 // OutgoingCallProcessor sets the call state to DIALING when it receives confirmation of the
134 // placed call from the call service so there is no need to set it here. Instead, check that
135 // the state is appropriate.
136 Preconditions.checkState(call.getState() == CallState.DIALING);
137
138 addCall(call);
Santos Cordon049b7b62014-01-30 05:34:26 -0800139
140 mInCallController.addCall(call.toCallInfo());
141 }
142
Santos Cordon80d9bdc2014-02-13 18:28:46 -0800143 /**
144 * Adds a new incoming call to the list of live calls and notifies the in-call app.
145 *
146 * @param call The new incoming call.
147 */
148 void handleSuccessfulIncomingCall(Call call) {
149 Preconditions.checkState(call.getState() == CallState.RINGING);
150 addCall(call);
151 mInCallController.addCall(call.toCallInfo());
152 }
153
Santos Cordon049b7b62014-01-30 05:34:26 -0800154 /*
155 * Sends all the live calls to the in-call app if any exist. If there are no live calls, then
156 * tells the in-call controller to unbind since it is not needed.
157 */
158 void updateInCall() {
159 if (mCalls.isEmpty()) {
160 mInCallController.unbind();
161 return;
162 }
163
164 for (Call call : mCalls.values()) {
165 mInCallController.addCall(call.toCallInfo());
166 }
Santos Cordon681663d2014-01-30 04:32:15 -0800167 }
168
169 /**
Santos Cordone3d76ab2014-01-28 17:25:20 -0800170 * Instructs Telecomm to answer the specified call. Intended to be invoked by the in-call
171 * app through {@link InCallAdapter} after Telecomm notifies it of an incoming call followed by
172 * the user opting to answer said call.
173 *
174 * @param callId The ID of the call.
175 */
176 void answerCall(String callId) {
177 // TODO(santoscordon): fill in and check that it is in the ringing state.
178 }
179
180 /**
181 * Instructs Telecomm to reject the specified call. Intended to be invoked by the in-call
182 * app through {@link InCallAdapter} after Telecomm notifies it of an incoming call followed by
183 * the user opting to reject said call.
184 *
185 * @param callId The ID of the call.
186 */
187 void rejectCall(String callId) {
188 // TODO(santoscordon): fill in and check that it is in the ringing state.
189 }
190
191 /**
192 * Instructs Telecomm to disconnect the specified call. Intended to be invoked by the
193 * in-call app through {@link InCallAdapter} for an ongoing call. This is usually triggered by
194 * the user hitting the end-call button.
195 *
196 * @param callId The ID of the call.
197 */
198 void disconnectCall(String callId) {
Santos Cordon049b7b62014-01-30 05:34:26 -0800199 Call call = mCalls.get(callId);
200 if (call == null) {
201 Log.e(TAG, "Unknown call (" + callId + ") asked to disconnect");
202 } else {
203 call.disconnect();
204 }
205
Santos Cordone3d76ab2014-01-28 17:25:20 -0800206 }
Santos Cordon681663d2014-01-30 04:32:15 -0800207
208 void markCallAsRinging(String callId) {
209 setCallState(callId, CallState.RINGING);
210 }
211
212 void markCallAsDialing(String callId) {
213 setCallState(callId, CallState.DIALING);
214 }
215
216 void markCallAsActive(String callId) {
217 setCallState(callId, CallState.ACTIVE);
218 }
219
Santos Cordon049b7b62014-01-30 05:34:26 -0800220 /**
221 * Marks the specified call as DISCONNECTED and notifies the in-call app. If this was the last
222 * live call, then also disconnect from the in-call controller.
223 *
224 * @param callId The ID of the call.
225 */
Santos Cordon681663d2014-01-30 04:32:15 -0800226 void markCallAsDisconnected(String callId) {
227 setCallState(callId, CallState.DISCONNECTED);
Santos Cordonc195e362014-02-11 17:05:31 -0800228
229 Call call = mCalls.remove(callId);
230 // At this point the call service has confirmed that the call is disconnected to it is
231 // safe to disassociate the call from its call service.
232 call.clearCallService();
Santos Cordon049b7b62014-01-30 05:34:26 -0800233
234 // Notify the in-call UI
235 mInCallController.markCallAsDisconnected(callId);
236 if (mCalls.isEmpty()) {
237 mInCallController.unbind();
238 }
Santos Cordon681663d2014-01-30 04:32:15 -0800239 }
240
241 /**
242 * Sets the specified state on the specified call.
243 *
244 * @param callId The ID of the call to update.
245 * @param state The new state of the call.
246 */
247 private void setCallState(String callId, CallState state) {
248 Preconditions.checkState(!Strings.isNullOrEmpty(callId));
249 Preconditions.checkNotNull(state);
250
251 Call call = mCalls.get(callId);
252 if (call == null) {
253 Log.e(TAG, "Call " + callId + " was not found while attempting to upda the state to " +
254 state + ".");
255 } else {
256 // Unfortunately, in the telephony world, the radio is king. So if the call notifies us
257 // that the call is in a particular state, we allow it even if it doesn't make sense
258 // (e.g., ACTIVE -> RINGING).
259 // TODO(santoscordon): Consider putting a stop to the above and turning CallState into
260 // a well-defined state machine.
261 // TODO(santoscordon): Define expected state transitions here, and log when an
262 // unexpected transition occurs.
263 call.setState(state);
264 // TODO(santoscordon): Notify the in-call app whenever a call changes state.
265 }
266 }
267
268 /**
269 * Adds the specified call to the main list of live calls.
270 *
271 * @param call The call to add.
272 */
273 private void addCall(Call call) {
274 mCalls.put(call.getId(), call);
275 }
Ben Gilad9f2bed32013-12-12 17:43:26 -0800276}