blob: 114dd67612c99164a71ffed1125cfc1f213048ad [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
Sailesh Nepalce704b92014-03-17 18:31:43 -070019import android.net.Uri;
Evan Charltona05805b2014-03-05 08:21:46 -080020import android.os.Bundle;
Sailesh Nepal6aca10a2014-03-24 16:11:02 -070021import android.telecomm.CallAudioState;
Sailesh Nepal810735e2014-03-18 18:15:46 -070022import android.telecomm.CallInfo;
Ben Giladc5b22692014-02-18 20:03:22 -080023import android.telecomm.CallServiceDescriptor;
Santos Cordon681663d2014-01-30 04:32:15 -080024import android.telecomm.CallState;
Yorke Lee33501632014-03-17 19:24:12 -070025import android.telecomm.GatewayInfo;
Santos Cordon8e8b8d22013-12-19 14:14:05 -080026
Santos Cordon681663d2014-01-30 04:32:15 -080027import com.google.common.base.Preconditions;
28import com.google.common.base.Strings;
Sailesh Nepal810735e2014-03-18 18:15:46 -070029import com.google.common.collect.ImmutableCollection;
30import com.google.common.collect.ImmutableList;
Santos Cordon8e8b8d22013-12-19 14:14:05 -080031import com.google.common.collect.Lists;
Santos Cordon681663d2014-01-30 04:32:15 -080032import com.google.common.collect.Maps;
Ben Gilad9f2bed32013-12-12 17:43:26 -080033
Ben Gilad9f2bed32013-12-12 17:43:26 -080034import java.util.List;
Santos Cordon681663d2014-01-30 04:32:15 -080035import java.util.Map;
Ben Gilad9f2bed32013-12-12 17:43:26 -080036
Ben Giladdd8c6082013-12-30 14:44:08 -080037/**
38 * Singleton.
39 *
40 * NOTE(gilad): by design most APIs are package private, use the relevant adapter/s to allow
41 * access from other packages specifically refraining from passing the CallsManager instance
42 * beyond the com.android.telecomm package boundary.
43 */
Santos Cordon8e8b8d22013-12-19 14:14:05 -080044public final class CallsManager {
Ben Gilada0d9f752014-02-26 11:49:03 -080045
Sailesh Nepal810735e2014-03-18 18:15:46 -070046 interface CallsManagerListener {
47 void onCallAdded(Call call);
48 void onCallRemoved(Call call);
49 void onCallStateChanged(Call call, CallState oldState, CallState newState);
50 void onIncomingCallAnswered(Call call);
51 void onIncomingCallRejected(Call call);
52 void onForegroundCallChanged(Call oldForegroundCall, Call newForegroundCall);
Sailesh Nepal6aca10a2014-03-24 16:11:02 -070053 void onAudioStateChanged(CallAudioState oldAudioState, CallAudioState newAudioState);
Sailesh Nepal810735e2014-03-18 18:15:46 -070054 }
55
Santos Cordon8e8b8d22013-12-19 14:14:05 -080056 private static final CallsManager INSTANCE = new CallsManager();
Ben Gilad9f2bed32013-12-12 17:43:26 -080057
Santos Cordone3d76ab2014-01-28 17:25:20 -080058 private final Switchboard mSwitchboard;
59
Santos Cordon8e8b8d22013-12-19 14:14:05 -080060 /**
Santos Cordon681663d2014-01-30 04:32:15 -080061 * The main call repository. Keeps an instance of all live calls keyed by call ID. New incoming
62 * and outgoing calls are added to the map and removed when the calls move to the disconnected
63 * state.
64 * TODO(santoscordon): Add new CallId class and use it in place of String.
65 */
66 private final Map<String, Call> mCalls = Maps.newHashMap();
67
68 /**
Sailesh Nepal810735e2014-03-18 18:15:46 -070069 * The call the user is currently interacting with. This is the call that should have audio
70 * focus and be visible in the in-call UI.
Santos Cordon4e9fffe2014-03-04 18:13:41 -080071 */
Sailesh Nepal810735e2014-03-18 18:15:46 -070072 private Call mForegroundCall;
Santos Cordon4e9fffe2014-03-04 18:13:41 -080073
Sailesh Nepal810735e2014-03-18 18:15:46 -070074 private final CallsManagerListener mCallLogManager;
Ben Gilad9f2bed32013-12-12 17:43:26 -080075
Sailesh Nepal810735e2014-03-18 18:15:46 -070076 private final CallsManagerListener mPhoneStateBroadcaster;
Ben Gilad9f2bed32013-12-12 17:43:26 -080077
Sailesh Nepal6aca10a2014-03-24 16:11:02 -070078 private final CallAudioManager mCallAudioManager;
Sailesh Nepal810735e2014-03-18 18:15:46 -070079
80 private final CallsManagerListener mInCallController;
81
Sailesh Nepal6aca10a2014-03-24 16:11:02 -070082 private final Ringer mRinger;
83
Evan Charltonf02e9882014-03-06 12:54:52 -080084 private final List<OutgoingCallValidator> mOutgoingCallValidators = Lists.newArrayList();
Ben Gilad9f2bed32013-12-12 17:43:26 -080085
Evan Charltonf02e9882014-03-06 12:54:52 -080086 private final List<IncomingCallValidator> mIncomingCallValidators = Lists.newArrayList();
Ben Gilad9f2bed32013-12-12 17:43:26 -080087
Santos Cordon8e8b8d22013-12-19 14:14:05 -080088 /**
Ben Gilad8bdaa462014-02-05 12:53:19 -080089 * Initializes the required Telecomm components.
Santos Cordon8e8b8d22013-12-19 14:14:05 -080090 */
91 private CallsManager() {
Santos Cordon6242b132014-02-07 16:24:42 -080092 mSwitchboard = new Switchboard(this);
Yorke Leef98fb572014-03-05 10:56:55 -080093 mCallLogManager = new CallLogManager(TelecommApp.getInstance());
Sailesh Nepal810735e2014-03-18 18:15:46 -070094 mPhoneStateBroadcaster = new PhoneStateBroadcaster();
95 mCallAudioManager = new CallAudioManager();
96 mInCallController = new InCallController();
Sailesh Nepal6aca10a2014-03-24 16:11:02 -070097 mRinger = new Ringer(mCallAudioManager);
Santos Cordon8e8b8d22013-12-19 14:14:05 -080098 }
99
Ben Gilada0d9f752014-02-26 11:49:03 -0800100 static CallsManager getInstance() {
101 return INSTANCE;
102 }
103
Sailesh Nepal810735e2014-03-18 18:15:46 -0700104 ImmutableCollection<Call> getCalls() {
105 return ImmutableList.copyOf(mCalls.values());
106 }
107
108 Call getForegroundCall() {
109 return mForegroundCall;
110 }
111
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700112 boolean hasEmergencyCall() {
113 for (Call call : mCalls.values()) {
114 if (call.isEmergencyCall()) {
115 return true;
116 }
117 }
118 return false;
119 }
120
121 CallAudioState getAudioState() {
122 return mCallAudioManager.getAudioState();
123 }
124
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800125 /**
Santos Cordon493e8f22014-02-19 03:15:12 -0800126 * Starts the incoming call sequence by having switchboard gather more information about the
127 * specified call; using the specified call service descriptor. Upon success, execution returns
128 * to {@link #handleSuccessfulIncomingCall} to start the in-call UI.
Santos Cordon80d9bdc2014-02-13 18:28:46 -0800129 *
Ben Giladc5b22692014-02-18 20:03:22 -0800130 * @param descriptor The descriptor of the call service to use for this incoming call.
Evan Charltona05805b2014-03-05 08:21:46 -0800131 * @param extras The optional extras Bundle passed with the intent used for the incoming call.
Santos Cordon80d9bdc2014-02-13 18:28:46 -0800132 */
Evan Charltona05805b2014-03-05 08:21:46 -0800133 void processIncomingCallIntent(CallServiceDescriptor descriptor, Bundle extras) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800134 Log.d(this, "processIncomingCallIntent");
Santos Cordon80d9bdc2014-02-13 18:28:46 -0800135 // Create a call with no handle. Eventually, switchboard will update the call with
136 // additional information from the call service, but for now we just need one to pass around
137 // with a unique call ID.
Sailesh Nepal810735e2014-03-18 18:15:46 -0700138 Call call = new Call(true /* isIncoming */);
Santos Cordon80d9bdc2014-02-13 18:28:46 -0800139
Evan Charltona05805b2014-03-05 08:21:46 -0800140 mSwitchboard.retrieveIncomingCall(call, descriptor, extras);
Santos Cordon80d9bdc2014-02-13 18:28:46 -0800141 }
142
143 /**
Ben Gilada0d9f752014-02-26 11:49:03 -0800144 * Validates the specified call and, upon no objection to connect it, adds the new call to the
145 * list of live calls. Also notifies the in-call app so the user can answer or reject the call.
146 *
147 * @param call The new incoming call.
Sailesh Nepal810735e2014-03-18 18:15:46 -0700148 * @param callInfo The details of the call.
Ben Gilada0d9f752014-02-26 11:49:03 -0800149 */
Sailesh Nepal810735e2014-03-18 18:15:46 -0700150 void handleSuccessfulIncomingCall(Call call, CallInfo callInfo) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800151 Log.d(this, "handleSuccessfulIncomingCall");
Sailesh Nepal810735e2014-03-18 18:15:46 -0700152 Preconditions.checkState(callInfo.getState() == CallState.RINGING);
Ben Gilada0d9f752014-02-26 11:49:03 -0800153
Sailesh Nepalce704b92014-03-17 18:31:43 -0700154 Uri handle = call.getHandle();
Ben Gilada0d9f752014-02-26 11:49:03 -0800155 ContactInfo contactInfo = call.getContactInfo();
156 for (IncomingCallValidator validator : mIncomingCallValidators) {
157 if (!validator.isValid(handle, contactInfo)) {
158 // TODO(gilad): Consider displaying an error message.
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800159 Log.i(this, "Dropping restricted incoming call");
Ben Gilada0d9f752014-02-26 11:49:03 -0800160 return;
161 }
162 }
163
164 // No objection to accept the incoming call, proceed with potentially connecting it (based
165 // on the user's action, or lack thereof).
Sailesh Nepal810735e2014-03-18 18:15:46 -0700166 call.setHandle(callInfo.getHandle());
167 setCallState(call, callInfo.getState());
Ben Gilada0d9f752014-02-26 11:49:03 -0800168 addCall(call);
Sailesh Nepal810735e2014-03-18 18:15:46 -0700169 }
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800170
Sailesh Nepal810735e2014-03-18 18:15:46 -0700171 /**
172 * Called when an incoming call was not connected.
173 *
174 * @param call The incoming call.
175 */
176 void handleUnsuccessfulIncomingCall(Call call) {
177 setCallState(call, CallState.DISCONNECTED);
Ben Gilada0d9f752014-02-26 11:49:03 -0800178 }
179
180 /**
Yorke Lee33501632014-03-17 19:24:12 -0700181 * Attempts to issue/connect the specified call.
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800182 *
Yorke Lee33501632014-03-17 19:24:12 -0700183 * @param handle Handle to connect the call with.
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800184 * @param contactInfo Information about the entity being called.
Yorke Lee33501632014-03-17 19:24:12 -0700185 * @param gatewayInfo Optional gateway information that can be used to route the call to the
186 * actual dialed handle via a gateway provider. May be null.
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800187 */
Yorke Lee33501632014-03-17 19:24:12 -0700188 void placeOutgoingCall(Uri handle, ContactInfo contactInfo, GatewayInfo gatewayInfo) {
Ben Gilad8bdaa462014-02-05 12:53:19 -0800189 for (OutgoingCallValidator validator : mOutgoingCallValidators) {
Ben Gilada0d9f752014-02-26 11:49:03 -0800190 if (!validator.isValid(handle, contactInfo)) {
191 // TODO(gilad): Display an error message.
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800192 Log.i(this, "Dropping restricted outgoing call.");
Ben Gilada0d9f752014-02-26 11:49:03 -0800193 return;
194 }
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800195 }
196
Yorke Lee33501632014-03-17 19:24:12 -0700197 final Uri uriHandle = (gatewayInfo == null) ? handle : gatewayInfo.getGatewayHandle();
198
199 if (gatewayInfo == null) {
200 Log.i(this, "Creating a new outgoing call with handle: %s", Log.pii(uriHandle));
201 } else {
202 Log.i(this, "Creating a new outgoing call with gateway handle: %s, original handle: %s",
203 Log.pii(uriHandle), Log.pii(handle));
204 }
205 Call call = new Call(uriHandle, contactInfo, gatewayInfo, false /*isIncoming*/);
Sailesh Nepal810735e2014-03-18 18:15:46 -0700206 setCallState(call, CallState.DIALING);
207 addCall(call);
Santos Cordonc195e362014-02-11 17:05:31 -0800208 mSwitchboard.placeOutgoingCall(call);
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800209 }
Santos Cordone3d76ab2014-01-28 17:25:20 -0800210
211 /**
Sailesh Nepal810735e2014-03-18 18:15:46 -0700212 * Called when a call service acknowledges that it can place a call.
Santos Cordon681663d2014-01-30 04:32:15 -0800213 *
214 * @param call The new outgoing call.
215 */
216 void handleSuccessfulOutgoingCall(Call call) {
Sailesh Nepal810735e2014-03-18 18:15:46 -0700217 Log.v(this, "handleSuccessfulOutgoingCall, %s", call);
Santos Cordon681663d2014-01-30 04:32:15 -0800218 }
219
220 /**
Sailesh Nepal810735e2014-03-18 18:15:46 -0700221 * Called when an outgoing call was not placed.
Yorke Leef98fb572014-03-05 10:56:55 -0800222 *
Sailesh Nepal810735e2014-03-18 18:15:46 -0700223 * @param call The outgoing call.
224 * @param isAborted True if the call was unsuccessful because it was aborted.
Yorke Leef98fb572014-03-05 10:56:55 -0800225 */
Sailesh Nepal810735e2014-03-18 18:15:46 -0700226 void handleUnsuccessfulOutgoingCall(Call call, boolean isAborted) {
227 Log.v(this, "handleAbortedOutgoingCall, call: %s, isAborted: %b", call, isAborted);
228 if (isAborted) {
229 call.abort();
230 setCallState(call, CallState.ABORTED);
231 } else {
232 setCallState(call, CallState.DISCONNECTED);
233 }
234 removeCall(call);
Yorke Leef98fb572014-03-05 10:56:55 -0800235 }
236
237 /**
Santos Cordone3d76ab2014-01-28 17:25:20 -0800238 * Instructs Telecomm to answer the specified call. Intended to be invoked by the in-call
239 * app through {@link InCallAdapter} after Telecomm notifies it of an incoming call followed by
240 * the user opting to answer said call.
241 *
242 * @param callId The ID of the call.
243 */
244 void answerCall(String callId) {
Santos Cordon61d0f702014-02-19 02:52:23 -0800245 Call call = mCalls.get(callId);
246 if (call == null) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800247 Log.i(this, "Request to answer a non-existent call %s", callId);
Santos Cordon61d0f702014-02-19 02:52:23 -0800248 } else {
Sailesh Nepal810735e2014-03-18 18:15:46 -0700249 mCallLogManager.onIncomingCallAnswered(call);
250 mPhoneStateBroadcaster.onIncomingCallAnswered(call);
251 mCallAudioManager.onIncomingCallAnswered(call);
252 mInCallController.onIncomingCallAnswered(call);
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700253 mRinger.onIncomingCallAnswered(call);
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800254
Santos Cordon61d0f702014-02-19 02:52:23 -0800255 // We do not update the UI until we get confirmation of the answer() through
256 // {@link #markCallAsActive}. However, if we ever change that to look more responsive,
257 // then we need to make sure we add a timeout for the answer() in case the call never
258 // comes out of RINGING.
259 call.answer();
260 }
Santos Cordone3d76ab2014-01-28 17:25:20 -0800261 }
262
263 /**
264 * Instructs Telecomm to reject the specified call. Intended to be invoked by the in-call
265 * app through {@link InCallAdapter} after Telecomm notifies it of an incoming call followed by
266 * the user opting to reject said call.
267 *
268 * @param callId The ID of the call.
269 */
270 void rejectCall(String callId) {
Santos Cordon61d0f702014-02-19 02:52:23 -0800271 Call call = mCalls.get(callId);
272 if (call == null) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800273 Log.i(this, "Request to reject a non-existent call %s", callId);
Santos Cordon61d0f702014-02-19 02:52:23 -0800274 } else {
Sailesh Nepal810735e2014-03-18 18:15:46 -0700275 mCallLogManager.onIncomingCallRejected(call);
276 mPhoneStateBroadcaster.onIncomingCallRejected(call);
277 mCallAudioManager.onIncomingCallRejected(call);
278 mInCallController.onIncomingCallRejected(call);
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700279 mRinger.onIncomingCallRejected(call);
Sailesh Nepal810735e2014-03-18 18:15:46 -0700280
Santos Cordon61d0f702014-02-19 02:52:23 -0800281 call.reject();
282 }
Santos Cordone3d76ab2014-01-28 17:25:20 -0800283 }
284
285 /**
286 * Instructs Telecomm to disconnect the specified call. Intended to be invoked by the
287 * in-call app through {@link InCallAdapter} for an ongoing call. This is usually triggered by
288 * the user hitting the end-call button.
289 *
290 * @param callId The ID of the call.
291 */
292 void disconnectCall(String callId) {
Santos Cordon049b7b62014-01-30 05:34:26 -0800293 Call call = mCalls.get(callId);
294 if (call == null) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800295 Log.w(this, "Unknown call (%s) asked to disconnect", callId);
Santos Cordon049b7b62014-01-30 05:34:26 -0800296 } else {
297 call.disconnect();
298 }
Santos Cordone3d76ab2014-01-28 17:25:20 -0800299 }
Santos Cordon681663d2014-01-30 04:32:15 -0800300
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700301 /**
302 * Instructs Telecomm to put the specified call on hold. Intended to be invoked by the
303 * in-call app through {@link InCallAdapter} for an ongoing call. This is usually triggered by
304 * the user hitting the hold button during an active call.
305 *
306 * @param callId The ID of the call.
307 */
308 void holdCall(String callId) {
309 Call call = mCalls.get(callId);
310 if (call == null) {
311 Log.w(this, "Unknown call (%s) asked to be put on hold", callId);
312 } else {
313 Log.d(this, "Putting call on hold: (%s)", callId);
314 call.hold();
315 }
316 }
317
318 /**
319 * Instructs Telecomm to release the specified call from hold. Intended to be invoked by
320 * the in-call app through {@link InCallAdapter} for an ongoing call. This is usually triggered
321 * by the user hitting the hold button during a held call.
322 *
323 * @param callId The ID of the call
324 */
325 void unholdCall(String callId) {
326 Call call = mCalls.get(callId);
327 if (call == null) {
328 Log.w(this, "Unknown call (%s) asked to be removed from hold", callId);
329 } else {
330 Log.d(this, "Removing call from hold: (%s)", callId);
331 call.unhold();
332 }
333 }
334
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700335 /** Called by the in-call UI to change the mute state. */
336 void mute(boolean shouldMute) {
337 mCallAudioManager.mute(shouldMute);
338 }
339
340 /**
341 * Called by the in-call UI to change the audio route, for example to change from earpiece to
342 * speaker phone.
343 */
344 void setAudioRoute(int route) {
345 mCallAudioManager.setAudioRoute(route);
346 }
347
348 /** Called when the audio state changes. */
349 void onAudioStateChanged(CallAudioState oldAudioState, CallAudioState newAudioState) {
350 Log.v(this, "onAudioStateChanged, audioState: %s -> %s", oldAudioState, newAudioState);
351 mCallLogManager.onAudioStateChanged(oldAudioState, newAudioState);
352 mPhoneStateBroadcaster.onAudioStateChanged(oldAudioState, newAudioState);
353 mCallAudioManager.onAudioStateChanged(oldAudioState, newAudioState);
354 mInCallController.onAudioStateChanged(oldAudioState, newAudioState);
355 mRinger.onAudioStateChanged(oldAudioState, newAudioState);
356 }
357
Santos Cordon681663d2014-01-30 04:32:15 -0800358 void markCallAsRinging(String callId) {
359 setCallState(callId, CallState.RINGING);
360 }
361
362 void markCallAsDialing(String callId) {
363 setCallState(callId, CallState.DIALING);
364 }
365
366 void markCallAsActive(String callId) {
367 setCallState(callId, CallState.ACTIVE);
368 }
369
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700370 void markCallAsOnHold(String callId) {
371 setCallState(callId, CallState.ON_HOLD);
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700372 }
373
Santos Cordon049b7b62014-01-30 05:34:26 -0800374 /**
375 * Marks the specified call as DISCONNECTED and notifies the in-call app. If this was the last
376 * live call, then also disconnect from the in-call controller.
377 *
378 * @param callId The ID of the call.
379 */
Santos Cordon681663d2014-01-30 04:32:15 -0800380 void markCallAsDisconnected(String callId) {
381 setCallState(callId, CallState.DISCONNECTED);
Sailesh Nepal810735e2014-03-18 18:15:46 -0700382 removeCall(mCalls.remove(callId));
Ben Gilada0d9f752014-02-26 11:49:03 -0800383 }
384
385 /**
Santos Cordon4b2c1192014-03-19 18:15:38 -0700386 * Cleans up any calls currently associated with the specified call service when the
387 * call-service binder disconnects unexpectedly.
388 *
389 * @param callService The call service that disconnected.
390 */
391 void handleCallServiceDeath(CallServiceWrapper callService) {
392 Preconditions.checkNotNull(callService);
393 for (Call call : ImmutableList.copyOf(mCalls.values())) {
394 if (call.getCallService() == callService) {
395 markCallAsDisconnected(call.getId());
396 }
397 }
398 }
399
400 /**
Ben Gilada0d9f752014-02-26 11:49:03 -0800401 * Adds the specified call to the main list of live calls.
402 *
403 * @param call The call to add.
404 */
405 private void addCall(Call call) {
406 mCalls.put(call.getId(), call);
Sailesh Nepal810735e2014-03-18 18:15:46 -0700407
408 mCallLogManager.onCallAdded(call);
409 mPhoneStateBroadcaster.onCallAdded(call);
410 mCallAudioManager.onCallAdded(call);
411 mInCallController.onCallAdded(call);
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700412 mRinger.onCallAdded(call);
Sailesh Nepal810735e2014-03-18 18:15:46 -0700413 updateForegroundCall();
Ben Gilada0d9f752014-02-26 11:49:03 -0800414 }
415
Sailesh Nepal810735e2014-03-18 18:15:46 -0700416 private void removeCall(Call call) {
417 call.clearCallService();
418
419 mCallLogManager.onCallRemoved(call);
420 mPhoneStateBroadcaster.onCallRemoved(call);
421 mCallAudioManager.onCallRemoved(call);
422 mInCallController.onCallRemoved(call);
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700423 mRinger.onCallRemoved(call);
Sailesh Nepal810735e2014-03-18 18:15:46 -0700424 updateForegroundCall();
Ben Gilada0d9f752014-02-26 11:49:03 -0800425 }
426
427 /**
Santos Cordon1ae2b852014-03-19 03:03:10 -0700428 * Sets the specified state on the specified call.
Santos Cordon681663d2014-01-30 04:32:15 -0800429 *
430 * @param callId The ID of the call to update.
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800431 * @param newState The new state of the call.
Santos Cordon681663d2014-01-30 04:32:15 -0800432 */
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800433 private void setCallState(String callId, CallState newState) {
Santos Cordon681663d2014-01-30 04:32:15 -0800434 Preconditions.checkState(!Strings.isNullOrEmpty(callId));
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800435 Preconditions.checkNotNull(newState);
Santos Cordon681663d2014-01-30 04:32:15 -0800436
437 Call call = mCalls.get(callId);
438 if (call == null) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800439 Log.w(this, "Call %s was not found while attempting to update the state to %s.",
440 callId, newState );
Santos Cordon681663d2014-01-30 04:32:15 -0800441 } else {
Sailesh Nepal810735e2014-03-18 18:15:46 -0700442 setCallState(call, newState);
443 }
444 }
Evan Charlton5c670a92014-03-06 14:58:20 -0800445
Sailesh Nepal810735e2014-03-18 18:15:46 -0700446 /**
Santos Cordon1ae2b852014-03-19 03:03:10 -0700447 * Sets the specified state on the specified call.
Sailesh Nepal810735e2014-03-18 18:15:46 -0700448 *
449 * @param call The call.
450 * @param newState The new state of the call.
451 */
452 private void setCallState(Call call, CallState newState) {
453 CallState oldState = call.getState();
454 if (newState != oldState) {
455 // Unfortunately, in the telephony world the radio is king. So if the call notifies
456 // us that the call is in a particular state, we allow it even if it doesn't make
457 // sense (e.g., ACTIVE -> RINGING).
458 // TODO(santoscordon): Consider putting a stop to the above and turning CallState
459 // into a well-defined state machine.
460 // TODO(santoscordon): Define expected state transitions here, and log when an
461 // unexpected transition occurs.
462 call.setState(newState);
463
464 // Only broadcast state change for calls that are being tracked.
465 if (mCalls.containsKey(call.getId())) {
466 mCallLogManager.onCallStateChanged(call, oldState, newState);
467 mPhoneStateBroadcaster.onCallStateChanged(call, oldState, newState);
468 mCallAudioManager.onCallStateChanged(call, oldState, newState);
469 mInCallController.onCallStateChanged(call, oldState, newState);
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700470 mRinger.onCallStateChanged(call, oldState, newState);
Sailesh Nepal810735e2014-03-18 18:15:46 -0700471 updateForegroundCall();
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800472 }
473 }
474 }
475
476 /**
Sailesh Nepal810735e2014-03-18 18:15:46 -0700477 * Checks which call should be visible to the user and have audio focus.
Evan Charlton5c670a92014-03-06 14:58:20 -0800478 */
Sailesh Nepal810735e2014-03-18 18:15:46 -0700479 private void updateForegroundCall() {
480 Call newForegroundCall = null;
481 for (Call call : mCalls.values()) {
482 // Incoming ringing calls have priority.
483 if (call.getState() == CallState.RINGING) {
484 newForegroundCall = call;
Evan Charlton5c670a92014-03-06 14:58:20 -0800485 break;
Sailesh Nepal810735e2014-03-18 18:15:46 -0700486 }
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700487 if (call.isAlive()) {
Sailesh Nepal810735e2014-03-18 18:15:46 -0700488 newForegroundCall = call;
489 // Don't break in case there's a ringing call that has priority.
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800490 }
491 }
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800492
Sailesh Nepal810735e2014-03-18 18:15:46 -0700493 if (newForegroundCall != mForegroundCall) {
494 Call oldForegroundCall = mForegroundCall;
495 mForegroundCall = newForegroundCall;
496
497 mCallLogManager.onForegroundCallChanged(oldForegroundCall, mForegroundCall);
498 mPhoneStateBroadcaster.onForegroundCallChanged(oldForegroundCall, mForegroundCall);
499 mCallAudioManager.onForegroundCallChanged(oldForegroundCall, mForegroundCall);
500 mInCallController.onForegroundCallChanged(oldForegroundCall, mForegroundCall);
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700501 mRinger.onForegroundCallChanged(oldForegroundCall, mForegroundCall);
Santos Cordon681663d2014-01-30 04:32:15 -0800502 }
503 }
Ben Gilad9f2bed32013-12-12 17:43:26 -0800504}