blob: 452f8e14308f78a1531c39c9f6df46570ebc66c1 [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 Nepal1cecc7c2014-03-10 17:03:08 -070019import android.content.Context;
Sailesh Nepalce704b92014-03-17 18:31:43 -070020import android.net.Uri;
Evan Charltona05805b2014-03-05 08:21:46 -080021import android.os.Bundle;
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;
Santos Cordon8e8b8d22013-12-19 14:14:05 -080025
Sailesh Nepala439e1b2014-03-11 18:19:58 -070026import com.android.internal.telecomm.ICallService;
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);
53 }
54
Santos Cordon8e8b8d22013-12-19 14:14:05 -080055 private static final CallsManager INSTANCE = new CallsManager();
Ben Gilad9f2bed32013-12-12 17:43:26 -080056
Santos Cordone3d76ab2014-01-28 17:25:20 -080057 private final Switchboard mSwitchboard;
58
Santos Cordon8e8b8d22013-12-19 14:14:05 -080059 /**
Santos Cordon681663d2014-01-30 04:32:15 -080060 * The main call repository. Keeps an instance of all live calls keyed by call ID. New incoming
61 * and outgoing calls are added to the map and removed when the calls move to the disconnected
62 * state.
63 * TODO(santoscordon): Add new CallId class and use it in place of String.
64 */
65 private final Map<String, Call> mCalls = Maps.newHashMap();
66
67 /**
Sailesh Nepal810735e2014-03-18 18:15:46 -070068 * The call the user is currently interacting with. This is the call that should have audio
69 * focus and be visible in the in-call UI.
Santos Cordon4e9fffe2014-03-04 18:13:41 -080070 */
Sailesh Nepal810735e2014-03-18 18:15:46 -070071 private Call mForegroundCall;
Santos Cordon4e9fffe2014-03-04 18:13:41 -080072
Sailesh Nepal810735e2014-03-18 18:15:46 -070073 private final CallsManagerListener mCallLogManager;
Ben Gilad9f2bed32013-12-12 17:43:26 -080074
Sailesh Nepal810735e2014-03-18 18:15:46 -070075 private final CallsManagerListener mPhoneStateBroadcaster;
Ben Gilad9f2bed32013-12-12 17:43:26 -080076
Sailesh Nepal810735e2014-03-18 18:15:46 -070077 private final CallsManagerListener mCallAudioManager;
78
79 private final CallsManagerListener mInCallController;
80
81 private final CallsManagerListener mRinger;
Ben Gilad9f2bed32013-12-12 17:43:26 -080082
Santos Cordon8e8b8d22013-12-19 14:14:05 -080083 private VoicemailManager mVoicemailManager;
Ben Gilad9f2bed32013-12-12 17:43:26 -080084
Evan Charltonf02e9882014-03-06 12:54:52 -080085 private final List<OutgoingCallValidator> mOutgoingCallValidators = Lists.newArrayList();
Ben Gilad9f2bed32013-12-12 17:43:26 -080086
Evan Charltonf02e9882014-03-06 12:54:52 -080087 private final List<IncomingCallValidator> mIncomingCallValidators = Lists.newArrayList();
Ben Gilad9f2bed32013-12-12 17:43:26 -080088
Santos Cordon8e8b8d22013-12-19 14:14:05 -080089 /**
Ben Gilad8bdaa462014-02-05 12:53:19 -080090 * Initializes the required Telecomm components.
Santos Cordon8e8b8d22013-12-19 14:14:05 -080091 */
92 private CallsManager() {
Santos Cordon6242b132014-02-07 16:24:42 -080093 mSwitchboard = new Switchboard(this);
Yorke Leef98fb572014-03-05 10:56:55 -080094 mCallLogManager = new CallLogManager(TelecommApp.getInstance());
Sailesh Nepal810735e2014-03-18 18:15:46 -070095 mPhoneStateBroadcaster = new PhoneStateBroadcaster();
96 mCallAudioManager = new CallAudioManager();
97 mInCallController = new InCallController();
98 mRinger = new Ringer();
Santos Cordon8e8b8d22013-12-19 14:14:05 -080099 }
100
Ben Gilada0d9f752014-02-26 11:49:03 -0800101 static CallsManager getInstance() {
102 return INSTANCE;
103 }
104
Sailesh Nepal810735e2014-03-18 18:15:46 -0700105 ImmutableCollection<Call> getCalls() {
106 return ImmutableList.copyOf(mCalls.values());
107 }
108
109 Call getForegroundCall() {
110 return mForegroundCall;
111 }
112
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800113 /**
Santos Cordon493e8f22014-02-19 03:15:12 -0800114 * Starts the incoming call sequence by having switchboard gather more information about the
115 * specified call; using the specified call service descriptor. Upon success, execution returns
116 * to {@link #handleSuccessfulIncomingCall} to start the in-call UI.
Santos Cordon80d9bdc2014-02-13 18:28:46 -0800117 *
Ben Giladc5b22692014-02-18 20:03:22 -0800118 * @param descriptor The descriptor of the call service to use for this incoming call.
Evan Charltona05805b2014-03-05 08:21:46 -0800119 * @param extras The optional extras Bundle passed with the intent used for the incoming call.
Santos Cordon80d9bdc2014-02-13 18:28:46 -0800120 */
Evan Charltona05805b2014-03-05 08:21:46 -0800121 void processIncomingCallIntent(CallServiceDescriptor descriptor, Bundle extras) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800122 Log.d(this, "processIncomingCallIntent");
Santos Cordon80d9bdc2014-02-13 18:28:46 -0800123 // Create a call with no handle. Eventually, switchboard will update the call with
124 // additional information from the call service, but for now we just need one to pass around
125 // with a unique call ID.
Sailesh Nepal810735e2014-03-18 18:15:46 -0700126 Call call = new Call(true /* isIncoming */);
Santos Cordon80d9bdc2014-02-13 18:28:46 -0800127
Evan Charltona05805b2014-03-05 08:21:46 -0800128 mSwitchboard.retrieveIncomingCall(call, descriptor, extras);
Santos Cordon80d9bdc2014-02-13 18:28:46 -0800129 }
130
131 /**
Ben Gilada0d9f752014-02-26 11:49:03 -0800132 * Validates the specified call and, upon no objection to connect it, adds the new call to the
133 * list of live calls. Also notifies the in-call app so the user can answer or reject the call.
134 *
135 * @param call The new incoming call.
Sailesh Nepal810735e2014-03-18 18:15:46 -0700136 * @param callInfo The details of the call.
Ben Gilada0d9f752014-02-26 11:49:03 -0800137 */
Sailesh Nepal810735e2014-03-18 18:15:46 -0700138 void handleSuccessfulIncomingCall(Call call, CallInfo callInfo) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800139 Log.d(this, "handleSuccessfulIncomingCall");
Sailesh Nepal810735e2014-03-18 18:15:46 -0700140 Preconditions.checkState(callInfo.getState() == CallState.RINGING);
Ben Gilada0d9f752014-02-26 11:49:03 -0800141
Sailesh Nepalce704b92014-03-17 18:31:43 -0700142 Uri handle = call.getHandle();
Ben Gilada0d9f752014-02-26 11:49:03 -0800143 ContactInfo contactInfo = call.getContactInfo();
144 for (IncomingCallValidator validator : mIncomingCallValidators) {
145 if (!validator.isValid(handle, contactInfo)) {
146 // TODO(gilad): Consider displaying an error message.
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800147 Log.i(this, "Dropping restricted incoming call");
Ben Gilada0d9f752014-02-26 11:49:03 -0800148 return;
149 }
150 }
151
152 // No objection to accept the incoming call, proceed with potentially connecting it (based
153 // on the user's action, or lack thereof).
Sailesh Nepal810735e2014-03-18 18:15:46 -0700154 call.setHandle(callInfo.getHandle());
155 setCallState(call, callInfo.getState());
Ben Gilada0d9f752014-02-26 11:49:03 -0800156 addCall(call);
Sailesh Nepal810735e2014-03-18 18:15:46 -0700157 }
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800158
Sailesh Nepal810735e2014-03-18 18:15:46 -0700159 /**
160 * Called when an incoming call was not connected.
161 *
162 * @param call The incoming call.
163 */
164 void handleUnsuccessfulIncomingCall(Call call) {
165 setCallState(call, CallState.DISCONNECTED);
Ben Gilada0d9f752014-02-26 11:49:03 -0800166 }
167
168 /**
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800169 * Attempts to issue/connect the specified call. From an (arbitrary) application standpoint,
170 * all that is required to initiate this flow is to fire either of the CALL, CALL_PRIVILEGED,
171 * and CALL_EMERGENCY intents. These are listened to by CallActivity.java which then invokes
172 * this method.
173 *
174 * @param handle The handle to dial.
175 * @param contactInfo Information about the entity being called.
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800176 */
Sailesh Nepalce704b92014-03-17 18:31:43 -0700177 void processOutgoingCallIntent(Uri handle, ContactInfo contactInfo) {
Ben Gilad8bdaa462014-02-05 12:53:19 -0800178 for (OutgoingCallValidator validator : mOutgoingCallValidators) {
Ben Gilada0d9f752014-02-26 11:49:03 -0800179 if (!validator.isValid(handle, contactInfo)) {
180 // TODO(gilad): Display an error message.
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800181 Log.i(this, "Dropping restricted outgoing call.");
Ben Gilada0d9f752014-02-26 11:49:03 -0800182 return;
183 }
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800184 }
185
186 // No objection to issue the call, proceed with trying to put it through.
Sailesh Nepal810735e2014-03-18 18:15:46 -0700187 Call call = new Call(handle, contactInfo, false /* isIncoming */);
188 setCallState(call, CallState.DIALING);
189 addCall(call);
Santos Cordonc195e362014-02-11 17:05:31 -0800190 mSwitchboard.placeOutgoingCall(call);
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800191 }
Santos Cordone3d76ab2014-01-28 17:25:20 -0800192
193 /**
Sailesh Nepal810735e2014-03-18 18:15:46 -0700194 * Called when a call service acknowledges that it can place a call.
Santos Cordon681663d2014-01-30 04:32:15 -0800195 *
196 * @param call The new outgoing call.
197 */
198 void handleSuccessfulOutgoingCall(Call call) {
Sailesh Nepal810735e2014-03-18 18:15:46 -0700199 Log.v(this, "handleSuccessfulOutgoingCall, %s", call);
Santos Cordon681663d2014-01-30 04:32:15 -0800200 }
201
202 /**
Sailesh Nepal810735e2014-03-18 18:15:46 -0700203 * Called when an outgoing call was not placed.
Yorke Leef98fb572014-03-05 10:56:55 -0800204 *
Sailesh Nepal810735e2014-03-18 18:15:46 -0700205 * @param call The outgoing call.
206 * @param isAborted True if the call was unsuccessful because it was aborted.
Yorke Leef98fb572014-03-05 10:56:55 -0800207 */
Sailesh Nepal810735e2014-03-18 18:15:46 -0700208 void handleUnsuccessfulOutgoingCall(Call call, boolean isAborted) {
209 Log.v(this, "handleAbortedOutgoingCall, call: %s, isAborted: %b", call, isAborted);
210 if (isAborted) {
211 call.abort();
212 setCallState(call, CallState.ABORTED);
213 } else {
214 setCallState(call, CallState.DISCONNECTED);
215 }
216 removeCall(call);
Yorke Leef98fb572014-03-05 10:56:55 -0800217 }
218
219 /**
Santos Cordone3d76ab2014-01-28 17:25:20 -0800220 * Instructs Telecomm to answer the specified call. Intended to be invoked by the in-call
221 * app through {@link InCallAdapter} after Telecomm notifies it of an incoming call followed by
222 * the user opting to answer said call.
223 *
224 * @param callId The ID of the call.
225 */
226 void answerCall(String callId) {
Santos Cordon61d0f702014-02-19 02:52:23 -0800227 Call call = mCalls.get(callId);
228 if (call == null) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800229 Log.i(this, "Request to answer a non-existent call %s", callId);
Santos Cordon61d0f702014-02-19 02:52:23 -0800230 } else {
Sailesh Nepal810735e2014-03-18 18:15:46 -0700231 mCallLogManager.onIncomingCallAnswered(call);
232 mPhoneStateBroadcaster.onIncomingCallAnswered(call);
233 mCallAudioManager.onIncomingCallAnswered(call);
234 mInCallController.onIncomingCallAnswered(call);
235 mRinger.onIncomingCallAnswered(call);
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800236
Santos Cordon61d0f702014-02-19 02:52:23 -0800237 // We do not update the UI until we get confirmation of the answer() through
238 // {@link #markCallAsActive}. However, if we ever change that to look more responsive,
239 // then we need to make sure we add a timeout for the answer() in case the call never
240 // comes out of RINGING.
241 call.answer();
242 }
Santos Cordone3d76ab2014-01-28 17:25:20 -0800243 }
244
245 /**
246 * Instructs Telecomm to reject the specified call. Intended to be invoked by the in-call
247 * app through {@link InCallAdapter} after Telecomm notifies it of an incoming call followed by
248 * the user opting to reject said call.
249 *
250 * @param callId The ID of the call.
251 */
252 void rejectCall(String callId) {
Santos Cordon61d0f702014-02-19 02:52:23 -0800253 Call call = mCalls.get(callId);
254 if (call == null) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800255 Log.i(this, "Request to reject a non-existent call %s", callId);
Santos Cordon61d0f702014-02-19 02:52:23 -0800256 } else {
Sailesh Nepal810735e2014-03-18 18:15:46 -0700257 mCallLogManager.onIncomingCallRejected(call);
258 mPhoneStateBroadcaster.onIncomingCallRejected(call);
259 mCallAudioManager.onIncomingCallRejected(call);
260 mInCallController.onIncomingCallRejected(call);
261 mRinger.onIncomingCallRejected(call);
262
Santos Cordon61d0f702014-02-19 02:52:23 -0800263 call.reject();
264 }
Santos Cordone3d76ab2014-01-28 17:25:20 -0800265 }
266
267 /**
268 * Instructs Telecomm to disconnect the specified call. Intended to be invoked by the
269 * in-call app through {@link InCallAdapter} for an ongoing call. This is usually triggered by
270 * the user hitting the end-call button.
271 *
272 * @param callId The ID of the call.
273 */
274 void disconnectCall(String callId) {
Santos Cordon049b7b62014-01-30 05:34:26 -0800275 Call call = mCalls.get(callId);
276 if (call == null) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800277 Log.w(this, "Unknown call (%s) asked to disconnect", callId);
Santos Cordon049b7b62014-01-30 05:34:26 -0800278 } else {
279 call.disconnect();
280 }
Santos Cordone3d76ab2014-01-28 17:25:20 -0800281 }
Santos Cordon681663d2014-01-30 04:32:15 -0800282
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700283 /**
284 * Instructs Telecomm to put the specified call on hold. Intended to be invoked by the
285 * in-call app through {@link InCallAdapter} for an ongoing call. This is usually triggered by
286 * the user hitting the hold button during an active call.
287 *
288 * @param callId The ID of the call.
289 */
290 void holdCall(String callId) {
291 Call call = mCalls.get(callId);
292 if (call == null) {
293 Log.w(this, "Unknown call (%s) asked to be put on hold", callId);
294 } else {
295 Log.d(this, "Putting call on hold: (%s)", callId);
296 call.hold();
297 }
298 }
299
300 /**
301 * Instructs Telecomm to release the specified call from hold. Intended to be invoked by
302 * the in-call app through {@link InCallAdapter} for an ongoing call. This is usually triggered
303 * by the user hitting the hold button during a held call.
304 *
305 * @param callId The ID of the call
306 */
307 void unholdCall(String callId) {
308 Call call = mCalls.get(callId);
309 if (call == null) {
310 Log.w(this, "Unknown call (%s) asked to be removed from hold", callId);
311 } else {
312 Log.d(this, "Removing call from hold: (%s)", callId);
313 call.unhold();
314 }
315 }
316
Santos Cordon681663d2014-01-30 04:32:15 -0800317 void markCallAsRinging(String callId) {
318 setCallState(callId, CallState.RINGING);
319 }
320
321 void markCallAsDialing(String callId) {
322 setCallState(callId, CallState.DIALING);
323 }
324
325 void markCallAsActive(String callId) {
326 setCallState(callId, CallState.ACTIVE);
327 }
328
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700329 void markCallAsOnHold(String callId) {
330 setCallState(callId, CallState.ON_HOLD);
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700331 }
332
Santos Cordon049b7b62014-01-30 05:34:26 -0800333 /**
334 * Marks the specified call as DISCONNECTED and notifies the in-call app. If this was the last
335 * live call, then also disconnect from the in-call controller.
336 *
337 * @param callId The ID of the call.
338 */
Santos Cordon681663d2014-01-30 04:32:15 -0800339 void markCallAsDisconnected(String callId) {
340 setCallState(callId, CallState.DISCONNECTED);
Sailesh Nepal810735e2014-03-18 18:15:46 -0700341 removeCall(mCalls.remove(callId));
Ben Gilada0d9f752014-02-26 11:49:03 -0800342 }
343
344 /**
345 * Adds the specified call to the main list of live calls.
346 *
347 * @param call The call to add.
348 */
349 private void addCall(Call call) {
350 mCalls.put(call.getId(), call);
Sailesh Nepal810735e2014-03-18 18:15:46 -0700351
352 mCallLogManager.onCallAdded(call);
353 mPhoneStateBroadcaster.onCallAdded(call);
354 mCallAudioManager.onCallAdded(call);
355 mInCallController.onCallAdded(call);
356 mRinger.onCallAdded(call);
357 updateForegroundCall();
Ben Gilada0d9f752014-02-26 11:49:03 -0800358 }
359
Sailesh Nepal810735e2014-03-18 18:15:46 -0700360 private void removeCall(Call call) {
361 call.clearCallService();
362
363 mCallLogManager.onCallRemoved(call);
364 mPhoneStateBroadcaster.onCallRemoved(call);
365 mCallAudioManager.onCallRemoved(call);
366 mInCallController.onCallRemoved(call);
367 mRinger.onCallRemoved(call);
368 updateForegroundCall();
Ben Gilada0d9f752014-02-26 11:49:03 -0800369 }
370
371 /**
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800372 * Sets the specified state on the specified call. Updates the ringer if the call is exiting
373 * the RINGING state.
Santos Cordon681663d2014-01-30 04:32:15 -0800374 *
375 * @param callId The ID of the call to update.
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800376 * @param newState The new state of the call.
Santos Cordon681663d2014-01-30 04:32:15 -0800377 */
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800378 private void setCallState(String callId, CallState newState) {
Santos Cordon681663d2014-01-30 04:32:15 -0800379 Preconditions.checkState(!Strings.isNullOrEmpty(callId));
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800380 Preconditions.checkNotNull(newState);
Santos Cordon681663d2014-01-30 04:32:15 -0800381
382 Call call = mCalls.get(callId);
383 if (call == null) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800384 Log.w(this, "Call %s was not found while attempting to update the state to %s.",
385 callId, newState );
Santos Cordon681663d2014-01-30 04:32:15 -0800386 } else {
Sailesh Nepal810735e2014-03-18 18:15:46 -0700387 setCallState(call, newState);
388 }
389 }
Evan Charlton5c670a92014-03-06 14:58:20 -0800390
Sailesh Nepal810735e2014-03-18 18:15:46 -0700391 /**
392 * Sets the specified state on the specified call. Updates the ringer if the call is exiting
393 * the RINGING state.
394 *
395 * @param call The call.
396 * @param newState The new state of the call.
397 */
398 private void setCallState(Call call, CallState newState) {
399 CallState oldState = call.getState();
400 if (newState != oldState) {
401 // Unfortunately, in the telephony world the radio is king. So if the call notifies
402 // us that the call is in a particular state, we allow it even if it doesn't make
403 // sense (e.g., ACTIVE -> RINGING).
404 // TODO(santoscordon): Consider putting a stop to the above and turning CallState
405 // into a well-defined state machine.
406 // TODO(santoscordon): Define expected state transitions here, and log when an
407 // unexpected transition occurs.
408 call.setState(newState);
409
410 // Only broadcast state change for calls that are being tracked.
411 if (mCalls.containsKey(call.getId())) {
412 mCallLogManager.onCallStateChanged(call, oldState, newState);
413 mPhoneStateBroadcaster.onCallStateChanged(call, oldState, newState);
414 mCallAudioManager.onCallStateChanged(call, oldState, newState);
415 mInCallController.onCallStateChanged(call, oldState, newState);
416 mRinger.onCallStateChanged(call, oldState, newState);
417 updateForegroundCall();
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800418 }
419 }
420 }
421
422 /**
Sailesh Nepal810735e2014-03-18 18:15:46 -0700423 * Checks which call should be visible to the user and have audio focus.
Evan Charlton5c670a92014-03-06 14:58:20 -0800424 */
Sailesh Nepal810735e2014-03-18 18:15:46 -0700425 private void updateForegroundCall() {
426 Call newForegroundCall = null;
427 for (Call call : mCalls.values()) {
428 // Incoming ringing calls have priority.
429 if (call.getState() == CallState.RINGING) {
430 newForegroundCall = call;
Evan Charlton5c670a92014-03-06 14:58:20 -0800431 break;
Sailesh Nepal810735e2014-03-18 18:15:46 -0700432 }
433 if (call.getState() == CallState.ACTIVE) {
434 newForegroundCall = call;
435 // Don't break in case there's a ringing call that has priority.
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800436 }
437 }
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800438
Sailesh Nepal810735e2014-03-18 18:15:46 -0700439 if (newForegroundCall != mForegroundCall) {
440 Call oldForegroundCall = mForegroundCall;
441 mForegroundCall = newForegroundCall;
442
443 mCallLogManager.onForegroundCallChanged(oldForegroundCall, mForegroundCall);
444 mPhoneStateBroadcaster.onForegroundCallChanged(oldForegroundCall, mForegroundCall);
445 mCallAudioManager.onForegroundCallChanged(oldForegroundCall, mForegroundCall);
446 mInCallController.onForegroundCallChanged(oldForegroundCall, mForegroundCall);
447 mRinger.onForegroundCallChanged(oldForegroundCall, mForegroundCall);
Santos Cordon681663d2014-01-30 04:32:15 -0800448 }
449 }
Ben Gilad9f2bed32013-12-12 17:43:26 -0800450}