blob: 8a5647c2999bdc11ca1ffb41908d92b96e5cbdbd [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
Tyler Gunn7cc70b42014-09-12 22:17:27 -070017package com.android.server.telecom;
Ben Gilad9f2bed32013-12-12 17:43:26 -080018
Sailesh Nepalce704b92014-03-17 18:31:43 -070019import android.net.Uri;
Evan Charltona05805b2014-03-05 08:21:46 -080020import android.os.Bundle;
Tyler Gunn7cc70b42014-09-12 22:17:27 -070021import android.telecom.AudioState;
22import android.telecom.CallState;
23import android.telecom.GatewayInfo;
24import android.telecom.ParcelableConference;
25import android.telecom.PhoneAccountHandle;
Santos Cordon79ff2bc2014-03-27 15:31:27 -070026import android.telephony.DisconnectCause;
Sailesh Nepal8aa6a002014-09-12 10:52:49 -070027import android.telephony.TelephonyManager;
Santos Cordon8e8b8d22013-12-19 14:14:05 -080028
Sailesh Nepal810735e2014-03-18 18:15:46 -070029import com.google.common.collect.ImmutableCollection;
30import com.google.common.collect.ImmutableList;
Ben Gilad9f2bed32013-12-12 17:43:26 -080031
Jay Shraunera82c8f72014-08-14 15:49:16 -070032import java.util.Collections;
Santos Cordon7cdb9092014-07-24 21:33:33 -070033import java.util.List;
Santos Cordona56f2762014-03-24 15:55:53 -070034import java.util.Set;
Jay Shraunera82c8f72014-08-14 15:49:16 -070035import java.util.concurrent.ConcurrentHashMap;
Ben Gilad9f2bed32013-12-12 17:43:26 -080036
Ben Giladdd8c6082013-12-30 14:44:08 -080037/**
38 * Singleton.
39 *
Jay Shrauneracb91eb2014-08-08 16:04:53 -070040 * NOTE: by design most APIs are package private, use the relevant adapter/s to allow
Ben Giladdd8c6082013-12-30 14:44:08 -080041 * access from other packages specifically refraining from passing the CallsManager instance
Tyler Gunn7cc70b42014-09-12 22:17:27 -070042 * beyond the com.android.server.telecom package boundary.
Ben Giladdd8c6082013-12-30 14:44:08 -080043 */
Santos Cordon64c7e962014-07-02 15:15:27 -070044public final class CallsManager extends Call.ListenerBase {
Ben Gilada0d9f752014-02-26 11:49:03 -080045
Santos Cordondf399862014-08-06 04:39:15 -070046 // TODO: Consider renaming this CallsManagerPlugin.
Sailesh Nepal810735e2014-03-18 18:15:46 -070047 interface CallsManagerListener {
48 void onCallAdded(Call call);
49 void onCallRemoved(Call call);
Ihab Awad6fb37c82014-08-07 19:48:57 -070050 void onCallStateChanged(Call call, int oldState, int newState);
Sailesh Nepalc92c4362014-07-04 18:33:21 -070051 void onConnectionServiceChanged(
Sailesh Nepal8c85dee2014-04-07 22:21:40 -070052 Call call,
Sailesh Nepalc92c4362014-07-04 18:33:21 -070053 ConnectionServiceWrapper oldService,
54 ConnectionServiceWrapper newService);
Sailesh Nepal810735e2014-03-18 18:15:46 -070055 void onIncomingCallAnswered(Call call);
Ihab Awadff7493a2014-06-10 13:47:44 -070056 void onIncomingCallRejected(Call call, boolean rejectWithMessage, String textMessage);
Sailesh Nepal810735e2014-03-18 18:15:46 -070057 void onForegroundCallChanged(Call oldForegroundCall, Call newForegroundCall);
Ihab Awad6fb37c82014-08-07 19:48:57 -070058 void onAudioStateChanged(AudioState oldAudioState, AudioState newAudioState);
Andrew Lee5be64bc2014-09-08 18:35:15 -070059 void onRingbackRequested(Call call, boolean ringback);
Santos Cordona1610702014-06-04 20:22:56 -070060 void onIsConferencedChanged(Call call);
Andrew Lee5be64bc2014-09-08 18:35:15 -070061 void onIsVoipAudioModeChanged(Call call);
Andrew Lee4a796602014-07-11 17:23:03 -070062 void onVideoStateChanged(Call call);
Sailesh Nepal810735e2014-03-18 18:15:46 -070063 }
64
Santos Cordon8e8b8d22013-12-19 14:14:05 -080065 private static final CallsManager INSTANCE = new CallsManager();
Ben Gilad9f2bed32013-12-12 17:43:26 -080066
Santos Cordon8e8b8d22013-12-19 14:14:05 -080067 /**
Sailesh Nepale59bb192014-04-01 18:33:59 -070068 * The main call repository. Keeps an instance of all live calls. New incoming and outgoing
69 * calls are added to the map and removed when the calls move to the disconnected state.
Jay Shraunera82c8f72014-08-14 15:49:16 -070070 *
71 * ConcurrentHashMap constructor params: 8 is initial table size, 0.9f is
72 * load factor before resizing, 1 means we only expect a single thread to
73 * access the map so make only a single shard
Santos Cordon681663d2014-01-30 04:32:15 -080074 */
Jay Shraunera82c8f72014-08-14 15:49:16 -070075 private final Set<Call> mCalls = Collections.newSetFromMap(
76 new ConcurrentHashMap<Call, Boolean>(8, 0.9f, 1));
Santos Cordon681663d2014-01-30 04:32:15 -080077
Sailesh Nepal664837f2014-07-14 16:31:51 -070078 private final ConnectionServiceRepository mConnectionServiceRepository =
79 new ConnectionServiceRepository();
Santos Cordonf3671a62014-05-29 21:51:53 -070080 private final DtmfLocalTonePlayer mDtmfLocalTonePlayer = new DtmfLocalTonePlayer();
81 private final InCallController mInCallController = new InCallController();
82 private final CallAudioManager mCallAudioManager;
83 private final Ringer mRinger;
Jay Shraunera82c8f72014-08-14 15:49:16 -070084 // For this set initial table size to 16 because we add 13 listeners in
85 // the CallsManager constructor.
86 private final Set<CallsManagerListener> mListeners = Collections.newSetFromMap(
87 new ConcurrentHashMap<CallsManagerListener, Boolean>(16, 0.9f, 1));
Santos Cordondeb8c892014-05-30 01:38:03 -070088 private final HeadsetMediaButton mHeadsetMediaButton;
Sailesh Nepalb88795a2014-07-15 14:53:27 -070089 private final WiredHeadsetManager mWiredHeadsetManager;
90 private final TtyManager mTtyManager;
Yorke Leed1346872014-07-28 14:38:45 -070091 private final ProximitySensorManager mProximitySensorManager;
Yorke Leef86db2e2014-09-12 17:56:48 -070092 private final PhoneStateBroadcaster mPhoneStateBroadcaster;
Sailesh Nepal84fa5f82014-04-02 11:01:11 -070093
94 /**
Sailesh Nepal810735e2014-03-18 18:15:46 -070095 * The call the user is currently interacting with. This is the call that should have audio
96 * focus and be visible in the in-call UI.
Santos Cordon4e9fffe2014-03-04 18:13:41 -080097 */
Sailesh Nepal810735e2014-03-18 18:15:46 -070098 private Call mForegroundCall;
Santos Cordon4e9fffe2014-03-04 18:13:41 -080099
Santos Cordon766d04f2014-05-06 10:28:25 -0700100 /** Singleton accessor. */
101 static CallsManager getInstance() {
102 return INSTANCE;
103 }
Ben Gilad9f2bed32013-12-12 17:43:26 -0800104
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800105 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700106 * Initializes the required Telecom components.
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800107 */
108 private CallsManager() {
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700109 TelecomApp app = TelecomApp.getInstance();
Santos Cordona56f2762014-03-24 15:55:53 -0700110
Santos Cordondeb8c892014-05-30 01:38:03 -0700111 StatusBarNotifier statusBarNotifier = new StatusBarNotifier(app, this);
Sailesh Nepalb88795a2014-07-15 14:53:27 -0700112 mWiredHeadsetManager = new WiredHeadsetManager(app);
113 mCallAudioManager = new CallAudioManager(app, statusBarNotifier, mWiredHeadsetManager);
Santos Cordonc7b8eba2014-04-01 15:26:28 -0700114 InCallTonePlayer.Factory playerFactory = new InCallTonePlayer.Factory(mCallAudioManager);
Santos Cordonae193062014-05-21 21:21:49 -0700115 mRinger = new Ringer(mCallAudioManager, this, playerFactory, app);
Santos Cordondeb8c892014-05-30 01:38:03 -0700116 mHeadsetMediaButton = new HeadsetMediaButton(app, this);
Sailesh Nepalb88795a2014-07-15 14:53:27 -0700117 mTtyManager = new TtyManager(app, mWiredHeadsetManager);
Yorke Leed1346872014-07-28 14:38:45 -0700118 mProximitySensorManager = new ProximitySensorManager(app);
Yorke Leef86db2e2014-09-12 17:56:48 -0700119 mPhoneStateBroadcaster = new PhoneStateBroadcaster();
Santos Cordonae193062014-05-21 21:21:49 -0700120
Santos Cordondeb8c892014-05-30 01:38:03 -0700121 mListeners.add(statusBarNotifier);
Santos Cordona0e5f1a2014-03-31 21:43:00 -0700122 mListeners.add(new CallLogManager(app));
Yorke Leef86db2e2014-09-12 17:56:48 -0700123 mListeners.add(mPhoneStateBroadcaster);
Santos Cordonf3671a62014-05-29 21:51:53 -0700124 mListeners.add(mInCallController);
Santos Cordonae193062014-05-21 21:21:49 -0700125 mListeners.add(mRinger);
Santos Cordonc7b8eba2014-04-01 15:26:28 -0700126 mListeners.add(new RingbackPlayer(this, playerFactory));
127 mListeners.add(new InCallToneMonitor(playerFactory, this));
Santos Cordona56f2762014-03-24 15:55:53 -0700128 mListeners.add(mCallAudioManager);
Santos Cordona0e5f1a2014-03-31 21:43:00 -0700129 mListeners.add(app.getMissedCallNotifier());
Santos Cordon92a2d812014-04-30 15:19:01 -0700130 mListeners.add(mDtmfLocalTonePlayer);
Santos Cordon81289982014-06-03 16:03:08 -0700131 mListeners.add(mHeadsetMediaButton);
Ihab Awadff7493a2014-06-10 13:47:44 -0700132 mListeners.add(RespondViaSmsManager.getInstance());
Yorke Leed1346872014-07-28 14:38:45 -0700133 mListeners.add(mProximitySensorManager);
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800134 }
135
Santos Cordon766d04f2014-05-06 10:28:25 -0700136 @Override
Ihab Awad6fb37c82014-08-07 19:48:57 -0700137 public void onSuccessfulOutgoingCall(Call call, int callState) {
Santos Cordon766d04f2014-05-06 10:28:25 -0700138 Log.v(this, "onSuccessfulOutgoingCall, %s", call);
Yorke Leeb701f6d2014-08-12 14:04:19 -0700139
Tyler Gunncde2e502014-08-12 14:35:58 -0700140 setCallState(call, callState);
Yorke Leeb701f6d2014-08-12 14:04:19 -0700141 if (!mCalls.contains(call)) {
142 // Call was not added previously in startOutgoingCall due to it being a potential MMI
143 // code, so add it now.
144 addCall(call);
145 }
146
147 // The call's ConnectionService has been updated.
148 for (CallsManagerListener listener : mListeners) {
149 listener.onConnectionServiceChanged(call, null, call.getConnectionService());
Santos Cordon766d04f2014-05-06 10:28:25 -0700150 }
Santos Cordon6cb7ba92014-05-23 14:09:32 -0700151
152 markCallAsDialing(call);
Santos Cordon766d04f2014-05-06 10:28:25 -0700153 }
154
155 @Override
Sailesh Nepal5a73b032014-06-25 15:53:21 -0700156 public void onFailedOutgoingCall(Call call, int errorCode, String errorMsg) {
157 Log.v(this, "onFailedOutgoingCall, call: %s", call);
Yorke Leeb701f6d2014-08-12 14:04:19 -0700158
Sailesh Nepal5a73b032014-06-25 15:53:21 -0700159 // TODO: Replace disconnect cause with more specific disconnect causes.
160 markCallAsDisconnected(call, errorCode, errorMsg);
161 }
162
163 @Override
Sailesh Nepalc92c4362014-07-04 18:33:21 -0700164 public void onSuccessfulIncomingCall(Call call) {
Santos Cordon766d04f2014-05-06 10:28:25 -0700165 Log.d(this, "onSuccessfulIncomingCall");
Sailesh Nepalc92c4362014-07-04 18:33:21 -0700166 setCallState(call, CallState.RINGING);
Santos Cordon766d04f2014-05-06 10:28:25 -0700167 addCall(call);
168 }
169
170 @Override
171 public void onFailedIncomingCall(Call call) {
Tyler Gunncde2e502014-08-12 14:35:58 -0700172 setCallState(call, CallState.DISCONNECTED);
Santos Cordon766d04f2014-05-06 10:28:25 -0700173 call.removeListener(this);
Ben Gilada0d9f752014-02-26 11:49:03 -0800174 }
175
Ihab Awadcb387ac2014-05-28 16:49:38 -0700176 @Override
Andrew Lee5be64bc2014-09-08 18:35:15 -0700177 public void onRingbackRequested(Call call, boolean ringback) {
Ihab Awadcb387ac2014-05-28 16:49:38 -0700178 for (CallsManagerListener listener : mListeners) {
Andrew Lee5be64bc2014-09-08 18:35:15 -0700179 listener.onRingbackRequested(call, ringback);
Ihab Awadcb387ac2014-05-28 16:49:38 -0700180 }
181 }
182
Evan Charlton352105c2014-06-03 14:10:54 -0700183 @Override
184 public void onPostDialWait(Call call, String remaining) {
185 mInCallController.onPostDialWait(call, remaining);
186 }
187
Santos Cordona1610702014-06-04 20:22:56 -0700188 @Override
Santos Cordona1610702014-06-04 20:22:56 -0700189 public void onParentChanged(Call call) {
190 for (CallsManagerListener listener : mListeners) {
191 listener.onIsConferencedChanged(call);
192 }
193 }
194
195 @Override
196 public void onChildrenChanged(Call call) {
197 for (CallsManagerListener listener : mListeners) {
198 listener.onIsConferencedChanged(call);
199 }
200 }
201
Ihab Awadff7493a2014-06-10 13:47:44 -0700202 @Override
Andrew Lee5be64bc2014-09-08 18:35:15 -0700203 public void onIsVoipAudioModeChanged(Call call) {
Sailesh Nepal7e669572014-07-08 21:29:12 -0700204 for (CallsManagerListener listener : mListeners) {
Andrew Lee5be64bc2014-09-08 18:35:15 -0700205 listener.onIsVoipAudioModeChanged(call);
Sailesh Nepal7e669572014-07-08 21:29:12 -0700206 }
207 }
208
Andrew Lee4a796602014-07-11 17:23:03 -0700209 @Override
210 public void onVideoStateChanged(Call call) {
211 for (CallsManagerListener listener : mListeners) {
212 listener.onVideoStateChanged(call);
213 }
214 }
215
Sailesh Nepal810735e2014-03-18 18:15:46 -0700216 ImmutableCollection<Call> getCalls() {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700217 return ImmutableList.copyOf(mCalls);
Sailesh Nepal810735e2014-03-18 18:15:46 -0700218 }
219
220 Call getForegroundCall() {
221 return mForegroundCall;
222 }
223
Santos Cordonae193062014-05-21 21:21:49 -0700224 Ringer getRinger() {
225 return mRinger;
226 }
227
Santos Cordonf3671a62014-05-29 21:51:53 -0700228 InCallController getInCallController() {
229 return mInCallController;
230 }
231
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700232 boolean hasEmergencyCall() {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700233 for (Call call : mCalls) {
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700234 if (call.isEmergencyCall()) {
235 return true;
236 }
237 }
238 return false;
239 }
240
Ihab Awad6fb37c82014-08-07 19:48:57 -0700241 AudioState getAudioState() {
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700242 return mCallAudioManager.getAudioState();
243 }
244
Sailesh Nepalb88795a2014-07-15 14:53:27 -0700245 boolean isTtySupported() {
246 return mTtyManager.isTtySupported();
247 }
248
249 int getCurrentTtyMode() {
250 return mTtyManager.getCurrentTtyMode();
251 }
252
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800253 /**
Sailesh Nepal664837f2014-07-14 16:31:51 -0700254 * Starts the process to attach the call to a connection service.
Santos Cordon80d9bdc2014-02-13 18:28:46 -0800255 *
Nancy Chenbc9ef172014-08-15 17:11:57 -0700256 * @param phoneAccountHandle The phone account which contains the component name of the
257 * connection service to use for this call.
Evan Charltona05805b2014-03-05 08:21:46 -0800258 * @param extras The optional extras Bundle passed with the intent used for the incoming call.
Santos Cordon80d9bdc2014-02-13 18:28:46 -0800259 */
Evan Charlton89176372014-07-19 18:23:09 -0700260 void processIncomingCallIntent(PhoneAccountHandle phoneAccountHandle, Bundle extras) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800261 Log.d(this, "processIncomingCallIntent");
Sailesh Nepal8aa6a002014-09-12 10:52:49 -0700262 Uri handle = extras.getParcelable(TelephonyManager.EXTRA_INCOMING_NUMBER);
Sailesh Nepal905dfba2014-07-14 08:20:41 -0700263 Call call = new Call(
Sailesh Nepal664837f2014-07-14 16:31:51 -0700264 mConnectionServiceRepository,
Sailesh Nepal8aa6a002014-09-12 10:52:49 -0700265 handle,
Sailesh Nepal664837f2014-07-14 16:31:51 -0700266 null /* gatewayInfo */,
Ihab Awadb78b2762014-07-25 15:16:23 -0700267 null /* connectionManagerPhoneAccount */,
Evan Charlton89176372014-07-19 18:23:09 -0700268 phoneAccountHandle,
Sailesh Nepal664837f2014-07-14 16:31:51 -0700269 true /* isIncoming */,
270 false /* isConference */);
271
Sailesh Nepal905dfba2014-07-14 08:20:41 -0700272 call.setExtras(extras);
Santos Cordondf399862014-08-06 04:39:15 -0700273 // TODO: Move this to be a part of addCall()
Santos Cordon766d04f2014-05-06 10:28:25 -0700274 call.addListener(this);
Sailesh Nepal664837f2014-07-14 16:31:51 -0700275 call.startCreateConnection();
Ben Gilada0d9f752014-02-26 11:49:03 -0800276 }
277
Nancy Chen0d3076c2014-07-30 14:45:44 -0700278 /**
279 * Kicks off the first steps to creating an outgoing call so that InCallUI can launch.
280 *
Nancy Chena9d91da2014-08-12 14:31:06 -0700281 * @param handle Handle to connect the call with.
Nancy Chenbc9ef172014-08-15 17:11:57 -0700282 * @param phoneAccountHandle The phone account which contains the component name of the
283 * connection service to use for this call.
284 * @param extras The optional extras Bundle passed with the intent used for the incoming call.
Nancy Chen0d3076c2014-07-30 14:45:44 -0700285 */
Nancy Chena9d91da2014-08-12 14:31:06 -0700286 Call startOutgoingCall(Uri handle, PhoneAccountHandle phoneAccountHandle, Bundle extras) {
Nancy Chen0d3076c2014-07-30 14:45:44 -0700287 // We only allow a single outgoing call at any given time. Before placing a call, make sure
288 // there doesn't already exist another outgoing call.
Yorke Lee15a30c32014-09-02 17:58:13 -0700289 Call call = getFirstCallWithState(CallState.NEW, CallState.DIALING,
290 CallState.CONNECTING, CallState.PRE_DIAL_WAIT);
Nancy Chen0d3076c2014-07-30 14:45:44 -0700291
292 if (call != null) {
293 Log.i(this, "Canceling simultaneous outgoing call.");
294 return null;
295 }
296
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700297 TelecomApp app = TelecomApp.getInstance();
Nancy Chenbc9ef172014-08-15 17:11:57 -0700298
299 // Only dial with the requested phoneAccount if it is still valid. Otherwise treat this call
300 // as if a phoneAccount was not specified (does the default behavior instead).
Tyler Gunn8e0fef42014-09-08 18:34:44 -0700301 // Note: We will not attempt to dial with a requested phoneAccount if it is disabled.
Nancy Chenbc9ef172014-08-15 17:11:57 -0700302 if (phoneAccountHandle != null) {
303 List<PhoneAccountHandle> enabledAccounts =
Tyler Gunn8e0fef42014-09-08 18:34:44 -0700304 app.getPhoneAccountRegistrar().getEnabledPhoneAccounts(handle.getScheme());
Nancy Chenbc9ef172014-08-15 17:11:57 -0700305 if (!enabledAccounts.contains(phoneAccountHandle)) {
306 phoneAccountHandle = null;
307 }
308 }
309
310 if (phoneAccountHandle == null) {
Tyler Gunn84253572014-09-02 14:50:05 -0700311 // No preset account, check if default exists that supports the URI scheme for the
312 // handle.
Nancy Chenbc9ef172014-08-15 17:11:57 -0700313 PhoneAccountHandle defaultAccountHandle =
Tyler Gunn84253572014-09-02 14:50:05 -0700314 app.getPhoneAccountRegistrar().getDefaultOutgoingPhoneAccount(
315 handle.getScheme());
Nancy Chenbc9ef172014-08-15 17:11:57 -0700316 if (defaultAccountHandle != null) {
317 phoneAccountHandle = defaultAccountHandle;
318 }
319 }
320
Nancy Chen0d3076c2014-07-30 14:45:44 -0700321 // Create a call with original handle. The handle may be changed when the call is attached
322 // to a connection service, but in most cases will remain the same.
323 call = new Call(
324 mConnectionServiceRepository,
325 handle,
326 null /* gatewayInfo */,
327 null /* connectionManagerPhoneAccount */,
328 phoneAccountHandle,
329 false /* isIncoming */,
330 false /* isConference */);
Nancy Chena9d91da2014-08-12 14:31:06 -0700331 call.setExtras(extras);
Nancy Chenbc9ef172014-08-15 17:11:57 -0700332
333 final boolean emergencyCall = TelephonyUtil.shouldProcessAsEmergency(app, call.getHandle());
334 if (phoneAccountHandle == null && !emergencyCall) {
335 // This is the state where the user is expected to select an account
336 call.setState(CallState.PRE_DIAL_WAIT);
337 } else {
338 call.setState(CallState.CONNECTING);
339 }
Nancy Chen0d3076c2014-07-30 14:45:44 -0700340
Yorke Leeb701f6d2014-08-12 14:04:19 -0700341 if (!isPotentialMMICode(handle)) {
342 addCall(call);
343 } else {
344 call.addListener(this);
345 }
Nancy Chen0d3076c2014-07-30 14:45:44 -0700346
347 return call;
348 }
349
Ben Gilada0d9f752014-02-26 11:49:03 -0800350 /**
Yorke Lee33501632014-03-17 19:24:12 -0700351 * Attempts to issue/connect the specified call.
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800352 *
Yorke Lee33501632014-03-17 19:24:12 -0700353 * @param handle Handle to connect the call with.
Yorke Lee33501632014-03-17 19:24:12 -0700354 * @param gatewayInfo Optional gateway information that can be used to route the call to the
Nancy Chen53ceedc2014-07-08 18:56:51 -0700355 * actual dialed handle via a gateway provider. May be null.
Sai Cheemalapatib7157e92014-06-11 17:51:55 -0700356 * @param speakerphoneOn Whether or not to turn the speakerphone on once the call connects.
Tyler Gunnc4abd912014-07-08 14:22:10 -0700357 * @param videoState The desired video state for the outgoing call.
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800358 */
Nancy Chenbc9ef172014-08-15 17:11:57 -0700359 void placeOutgoingCall(Call call, Uri handle, GatewayInfo gatewayInfo, boolean speakerphoneOn,
360 int videoState) {
Nancy Chen0d3076c2014-07-30 14:45:44 -0700361 if (call == null) {
362 // don't do anything if the call no longer exists
363 Log.i(this, "Canceling unknown call.");
Santos Cordonb7af09e2014-08-06 04:30:01 -0700364 return;
365 }
366
Nancy Chen201b4372014-09-08 14:18:24 -0700367 final Uri uriHandle = (gatewayInfo == null) ? handle : gatewayInfo.getGatewayAddress();
Yorke Lee33501632014-03-17 19:24:12 -0700368
369 if (gatewayInfo == null) {
Santos Cordonb58f4532014-05-29 11:59:06 -0700370 Log.i(this, "Creating a new outgoing call with handle: %s", Log.piiHandle(uriHandle));
Yorke Lee33501632014-03-17 19:24:12 -0700371 } else {
372 Log.i(this, "Creating a new outgoing call with gateway handle: %s, original handle: %s",
373 Log.pii(uriHandle), Log.pii(handle));
374 }
Santos Cordon766d04f2014-05-06 10:28:25 -0700375
Nancy Chen0d3076c2014-07-30 14:45:44 -0700376 call.setHandle(uriHandle);
377 call.setGatewayInfo(gatewayInfo);
Sai Cheemalapatib7157e92014-06-11 17:51:55 -0700378 call.setStartWithSpeakerphoneOn(speakerphoneOn);
Tyler Gunnc4abd912014-07-08 14:22:10 -0700379 call.setVideoState(videoState);
Santos Cordon766d04f2014-05-06 10:28:25 -0700380
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700381 TelecomApp app = TelecomApp.getInstance();
Santos Cordon7cdb9092014-07-24 21:33:33 -0700382 final boolean emergencyCall = TelephonyUtil.shouldProcessAsEmergency(app, call.getHandle());
Nancy Chend9de92c2014-07-21 16:09:13 -0700383 if (emergencyCall) {
Ihab Awad69eb0f52014-07-18 11:20:37 -0700384 // Emergency -- CreateConnectionProcessor will choose accounts automatically
Ihab Awadb78b2762014-07-25 15:16:23 -0700385 call.setTargetPhoneAccount(null);
Nancy Chen53ceedc2014-07-08 18:56:51 -0700386 }
Nancy Chend9de92c2014-07-21 16:09:13 -0700387
Ihab Awadb78b2762014-07-25 15:16:23 -0700388 if (call.getTargetPhoneAccount() != null || emergencyCall) {
Nancy Chenbc9ef172014-08-15 17:11:57 -0700389 // If the account has been set, proceed to place the outgoing call.
390 // Otherwise the connection will be initiated when the account is set by the user.
Nancy Chend9de92c2014-07-21 16:09:13 -0700391 call.startCreateConnection();
Nancy Chend9de92c2014-07-21 16:09:13 -0700392 }
Yorke Leef98fb572014-03-05 10:56:55 -0800393 }
394
395 /**
Santos Cordona1610702014-06-04 20:22:56 -0700396 * Attempts to start a conference call for the specified call.
397 *
Santos Cordon12d61822014-07-29 16:02:20 -0700398 * @param call The call to conference.
399 * @param otherCall The other call to conference with.
Santos Cordona1610702014-06-04 20:22:56 -0700400 */
Santos Cordon12d61822014-07-29 16:02:20 -0700401 void conference(Call call, Call otherCall) {
Santos Cordon0fbe6322014-08-14 04:04:25 -0700402 call.conferenceWith(otherCall);
Santos Cordona1610702014-06-04 20:22:56 -0700403 }
404
405 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700406 * Instructs Telecom to answer the specified call. Intended to be invoked by the in-call
407 * app through {@link InCallAdapter} after Telecom notifies it of an incoming call followed by
Santos Cordone3d76ab2014-01-28 17:25:20 -0800408 * the user opting to answer said call.
Andrew Lee38931d02014-07-16 10:17:36 -0700409 *
410 * @param call The call to answer.
411 * @param videoState The video state in which to answer the call.
Santos Cordone3d76ab2014-01-28 17:25:20 -0800412 */
Andrew Lee38931d02014-07-16 10:17:36 -0700413 void answerCall(Call call, int videoState) {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700414 if (!mCalls.contains(call)) {
415 Log.i(this, "Request to answer a non-existent call %s", call);
Santos Cordon61d0f702014-02-19 02:52:23 -0800416 } else {
Santos Cordon40f78c22014-04-07 02:11:42 -0700417 // If the foreground call is not the ringing call and it is currently isActive() or
Ihab Awad6fb37c82014-08-07 19:48:57 -0700418 // STATE_DIALING, put it on hold before answering the call.
Santos Cordon40f78c22014-04-07 02:11:42 -0700419 if (mForegroundCall != null && mForegroundCall != call &&
420 (mForegroundCall.isActive() ||
421 mForegroundCall.getState() == CallState.DIALING)) {
422 Log.v(this, "Holding active/dialing call %s before answering incoming call %s.",
423 mForegroundCall, call);
424 mForegroundCall.hold();
Santos Cordondf399862014-08-06 04:39:15 -0700425 // TODO: Wait until we get confirmation of the active call being
Santos Cordon40f78c22014-04-07 02:11:42 -0700426 // on-hold before answering the new call.
Santos Cordondf399862014-08-06 04:39:15 -0700427 // TODO: Import logic from CallManager.acceptCall()
Santos Cordon40f78c22014-04-07 02:11:42 -0700428 }
429
Santos Cordona56f2762014-03-24 15:55:53 -0700430 for (CallsManagerListener listener : mListeners) {
431 listener.onIncomingCallAnswered(call);
432 }
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800433
Santos Cordon61d0f702014-02-19 02:52:23 -0800434 // We do not update the UI until we get confirmation of the answer() through
Sailesh Nepale59bb192014-04-01 18:33:59 -0700435 // {@link #markCallAsActive}.
Andrew Lee38931d02014-07-16 10:17:36 -0700436 call.answer(videoState);
Santos Cordon61d0f702014-02-19 02:52:23 -0800437 }
Santos Cordone3d76ab2014-01-28 17:25:20 -0800438 }
439
440 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700441 * Instructs Telecom to reject the specified call. Intended to be invoked by the in-call
442 * app through {@link InCallAdapter} after Telecom notifies it of an incoming call followed by
Santos Cordone3d76ab2014-01-28 17:25:20 -0800443 * the user opting to reject said call.
Santos Cordone3d76ab2014-01-28 17:25:20 -0800444 */
Ihab Awadff7493a2014-06-10 13:47:44 -0700445 void rejectCall(Call call, boolean rejectWithMessage, String textMessage) {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700446 if (!mCalls.contains(call)) {
447 Log.i(this, "Request to reject a non-existent call %s", call);
Santos Cordon61d0f702014-02-19 02:52:23 -0800448 } else {
Santos Cordona56f2762014-03-24 15:55:53 -0700449 for (CallsManagerListener listener : mListeners) {
Ihab Awadff7493a2014-06-10 13:47:44 -0700450 listener.onIncomingCallRejected(call, rejectWithMessage, textMessage);
Santos Cordona56f2762014-03-24 15:55:53 -0700451 }
Ihab Awadff7493a2014-06-10 13:47:44 -0700452 call.reject(rejectWithMessage, textMessage);
Santos Cordon61d0f702014-02-19 02:52:23 -0800453 }
Santos Cordone3d76ab2014-01-28 17:25:20 -0800454 }
455
456 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700457 * Instructs Telecom to play the specified DTMF tone within the specified call.
Ihab Awad74549ec2014-03-10 15:33:25 -0700458 *
Ihab Awad74549ec2014-03-10 15:33:25 -0700459 * @param digit The DTMF digit to play.
460 */
Sailesh Nepale59bb192014-04-01 18:33:59 -0700461 void playDtmfTone(Call call, char digit) {
462 if (!mCalls.contains(call)) {
463 Log.i(this, "Request to play DTMF in a non-existent call %s", call);
Ihab Awad74549ec2014-03-10 15:33:25 -0700464 } else {
465 call.playDtmfTone(digit);
Santos Cordon92a2d812014-04-30 15:19:01 -0700466 mDtmfLocalTonePlayer.playTone(call, digit);
Ihab Awad74549ec2014-03-10 15:33:25 -0700467 }
468 }
469
470 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700471 * Instructs Telecom to stop the currently playing DTMF tone, if any.
Ihab Awad74549ec2014-03-10 15:33:25 -0700472 */
Sailesh Nepale59bb192014-04-01 18:33:59 -0700473 void stopDtmfTone(Call call) {
474 if (!mCalls.contains(call)) {
475 Log.i(this, "Request to stop DTMF in a non-existent call %s", call);
Ihab Awad74549ec2014-03-10 15:33:25 -0700476 } else {
477 call.stopDtmfTone();
Santos Cordon92a2d812014-04-30 15:19:01 -0700478 mDtmfLocalTonePlayer.stopTone(call);
Ihab Awad74549ec2014-03-10 15:33:25 -0700479 }
480 }
481
482 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700483 * Instructs Telecom to continue (or not) the current post-dial DTMF string, if any.
Ihab Awad74549ec2014-03-10 15:33:25 -0700484 */
Evan Charlton352105c2014-06-03 14:10:54 -0700485 void postDialContinue(Call call, boolean proceed) {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700486 if (!mCalls.contains(call)) {
487 Log.i(this, "Request to continue post-dial string in a non-existent call %s", call);
Ihab Awad74549ec2014-03-10 15:33:25 -0700488 } else {
Evan Charlton352105c2014-06-03 14:10:54 -0700489 call.postDialContinue(proceed);
Ihab Awad74549ec2014-03-10 15:33:25 -0700490 }
491 }
492
493 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700494 * Instructs Telecom to disconnect the specified call. Intended to be invoked by the
Santos Cordone3d76ab2014-01-28 17:25:20 -0800495 * in-call app through {@link InCallAdapter} for an ongoing call. This is usually triggered by
496 * the user hitting the end-call button.
Santos Cordone3d76ab2014-01-28 17:25:20 -0800497 */
Sailesh Nepale59bb192014-04-01 18:33:59 -0700498 void disconnectCall(Call call) {
Santos Cordon682fe6b2014-05-20 08:56:39 -0700499 Log.v(this, "disconnectCall %s", call);
500
Sailesh Nepale59bb192014-04-01 18:33:59 -0700501 if (!mCalls.contains(call)) {
502 Log.w(this, "Unknown call (%s) asked to disconnect", call);
Santos Cordon049b7b62014-01-30 05:34:26 -0800503 } else {
504 call.disconnect();
505 }
Santos Cordone3d76ab2014-01-28 17:25:20 -0800506 }
Santos Cordon681663d2014-01-30 04:32:15 -0800507
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700508 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700509 * Instructs Telecom to disconnect all calls.
Tyler Gunn61b92102014-08-19 07:42:20 -0700510 */
511 void disconnectAllCalls() {
512 Log.v(this, "disconnectAllCalls");
513
514 for (Call call : mCalls) {
515 disconnectCall(call);
516 }
517 }
518
Nancy Chenbc9ef172014-08-15 17:11:57 -0700519
Tyler Gunn61b92102014-08-19 07:42:20 -0700520 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700521 * Instructs Telecom to put the specified call on hold. Intended to be invoked by the
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700522 * in-call app through {@link InCallAdapter} for an ongoing call. This is usually triggered by
523 * the user hitting the hold button during an active call.
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700524 */
Sailesh Nepale59bb192014-04-01 18:33:59 -0700525 void holdCall(Call call) {
526 if (!mCalls.contains(call)) {
527 Log.w(this, "Unknown call (%s) asked to be put on hold", call);
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700528 } else {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700529 Log.d(this, "Putting call on hold: (%s)", call);
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700530 call.hold();
531 }
532 }
533
534 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700535 * Instructs Telecom to release the specified call from hold. Intended to be invoked by
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700536 * the in-call app through {@link InCallAdapter} for an ongoing call. This is usually triggered
537 * by the user hitting the hold button during a held call.
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700538 */
Sailesh Nepale59bb192014-04-01 18:33:59 -0700539 void unholdCall(Call call) {
540 if (!mCalls.contains(call)) {
541 Log.w(this, "Unknown call (%s) asked to be removed from hold", call);
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700542 } else {
Santos Cordonc7e85d42014-05-22 02:51:48 -0700543 Log.d(this, "unholding call: (%s)", call);
Sai Cheemalapati45b3e3f2014-08-15 09:33:00 -0700544 for (Call c : mCalls) {
545 if (c != null && c.isAlive() && c != call) {
546 c.hold();
547 }
548 }
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700549 call.unhold();
550 }
551 }
552
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700553 /** Called by the in-call UI to change the mute state. */
554 void mute(boolean shouldMute) {
555 mCallAudioManager.mute(shouldMute);
556 }
557
558 /**
559 * Called by the in-call UI to change the audio route, for example to change from earpiece to
560 * speaker phone.
561 */
562 void setAudioRoute(int route) {
563 mCallAudioManager.setAudioRoute(route);
564 }
565
Yorke Leed1346872014-07-28 14:38:45 -0700566 /** Called by the in-call UI to turn the proximity sensor on. */
567 void turnOnProximitySensor() {
568 mProximitySensorManager.turnOn();
569 }
570
571 /**
572 * Called by the in-call UI to turn the proximity sensor off.
573 * @param screenOnImmediately If true, the screen will be turned on immediately. Otherwise,
574 * the screen will be kept off until the proximity sensor goes negative.
575 */
576 void turnOffProximitySensor(boolean screenOnImmediately) {
577 mProximitySensorManager.turnOff(screenOnImmediately);
578 }
579
Evan Charlton89176372014-07-19 18:23:09 -0700580 void phoneAccountSelected(Call call, PhoneAccountHandle account) {
Nancy Chen53ceedc2014-07-08 18:56:51 -0700581 if (!mCalls.contains(call)) {
582 Log.i(this, "Attemped to add account to unknown call %s", call);
583 } else {
Ihab Awadb78b2762014-07-25 15:16:23 -0700584 call.setTargetPhoneAccount(account);
Nancy Chen53ceedc2014-07-08 18:56:51 -0700585 call.startCreateConnection();
586 }
587 }
588
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700589 /** Called when the audio state changes. */
Ihab Awad6fb37c82014-08-07 19:48:57 -0700590 void onAudioStateChanged(AudioState oldAudioState, AudioState newAudioState) {
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700591 Log.v(this, "onAudioStateChanged, audioState: %s -> %s", oldAudioState, newAudioState);
Santos Cordona56f2762014-03-24 15:55:53 -0700592 for (CallsManagerListener listener : mListeners) {
593 listener.onAudioStateChanged(oldAudioState, newAudioState);
594 }
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700595 }
596
Sailesh Nepale59bb192014-04-01 18:33:59 -0700597 void markCallAsRinging(Call call) {
598 setCallState(call, CallState.RINGING);
Santos Cordon681663d2014-01-30 04:32:15 -0800599 }
600
Sailesh Nepale59bb192014-04-01 18:33:59 -0700601 void markCallAsDialing(Call call) {
602 setCallState(call, CallState.DIALING);
Santos Cordon681663d2014-01-30 04:32:15 -0800603 }
604
Sailesh Nepale59bb192014-04-01 18:33:59 -0700605 void markCallAsActive(Call call) {
Sailesh Nepal8c85dee2014-04-07 22:21:40 -0700606 if (call.getConnectTimeMillis() == 0) {
607 call.setConnectTimeMillis(System.currentTimeMillis());
608 }
Sailesh Nepale59bb192014-04-01 18:33:59 -0700609 setCallState(call, CallState.ACTIVE);
Sailesh Nepal84fa5f82014-04-02 11:01:11 -0700610
Sai Cheemalapatib7157e92014-06-11 17:51:55 -0700611 if (call.getStartWithSpeakerphoneOn()) {
Ihab Awad6fb37c82014-08-07 19:48:57 -0700612 setAudioRoute(AudioState.ROUTE_SPEAKER);
Sai Cheemalapatib7157e92014-06-11 17:51:55 -0700613 }
Santos Cordon681663d2014-01-30 04:32:15 -0800614 }
615
Sailesh Nepale59bb192014-04-01 18:33:59 -0700616 void markCallAsOnHold(Call call) {
617 setCallState(call, CallState.ON_HOLD);
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700618 }
619
Santos Cordon049b7b62014-01-30 05:34:26 -0800620 /**
Ihab Awad6fb37c82014-08-07 19:48:57 -0700621 * Marks the specified call as STATE_DISCONNECTED and notifies the in-call app. If this was the last
Santos Cordon049b7b62014-01-30 05:34:26 -0800622 * live call, then also disconnect from the in-call controller.
623 *
Santos Cordon79ff2bc2014-03-27 15:31:27 -0700624 * @param disconnectCause The disconnect reason, see {@link android.telephony.DisconnectCause}.
Sailesh Nepal905dfba2014-07-14 08:20:41 -0700625 * @param disconnectMessage Optional message about the disconnect.
Santos Cordon049b7b62014-01-30 05:34:26 -0800626 */
Sailesh Nepale59bb192014-04-01 18:33:59 -0700627 void markCallAsDisconnected(Call call, int disconnectCause, String disconnectMessage) {
628 call.setDisconnectCause(disconnectCause, disconnectMessage);
629 setCallState(call, CallState.DISCONNECTED);
Sailesh Nepal77da19e2014-07-02 21:31:16 -0700630 removeCall(call);
Sailesh Nepal6ab6fb72014-04-01 20:03:19 -0700631 }
632
Ben Gilada0d9f752014-02-26 11:49:03 -0800633 /**
Ihab Awada02bef52014-08-13 18:18:42 -0700634 * Removes an existing disconnected call, and notifies the in-call app.
635 */
636 void markCallAsRemoved(Call call) {
637 removeCall(call);
638 }
639
640 /**
Sailesh Nepalc92c4362014-07-04 18:33:21 -0700641 * Cleans up any calls currently associated with the specified connection service when the
Sailesh Nepal905dfba2014-07-14 08:20:41 -0700642 * service binder disconnects unexpectedly.
Santos Cordon4b2c1192014-03-19 18:15:38 -0700643 *
Sailesh Nepalc92c4362014-07-04 18:33:21 -0700644 * @param service The connection service that disconnected.
Santos Cordon4b2c1192014-03-19 18:15:38 -0700645 */
Sailesh Nepalc92c4362014-07-04 18:33:21 -0700646 void handleConnectionServiceDeath(ConnectionServiceWrapper service) {
Jay Shrauneracb91eb2014-08-08 16:04:53 -0700647 if (service != null) {
Jay Shraunera82c8f72014-08-14 15:49:16 -0700648 for (Call call : mCalls) {
Jay Shrauneracb91eb2014-08-08 16:04:53 -0700649 if (call.getConnectionService() == service) {
650 markCallAsDisconnected(call, DisconnectCause.ERROR_UNSPECIFIED, null);
651 }
Santos Cordon4b2c1192014-03-19 18:15:38 -0700652 }
653 }
654 }
655
Santos Cordondeb8c892014-05-30 01:38:03 -0700656 boolean hasAnyCalls() {
657 return !mCalls.isEmpty();
658 }
659
Santos Cordonc7e85d42014-05-22 02:51:48 -0700660 boolean hasActiveOrHoldingCall() {
Santos Cordon23baed32014-06-27 14:45:39 -0700661 return getFirstCallWithState(CallState.ACTIVE, CallState.ON_HOLD) != null;
Santos Cordonc7e85d42014-05-22 02:51:48 -0700662 }
663
664 boolean hasRingingCall() {
Santos Cordon23baed32014-06-27 14:45:39 -0700665 return getFirstCallWithState(CallState.RINGING) != null;
Santos Cordonc7e85d42014-05-22 02:51:48 -0700666 }
667
Santos Cordondeb8c892014-05-30 01:38:03 -0700668 boolean onMediaButton(int type) {
669 if (hasAnyCalls()) {
670 if (HeadsetMediaButton.SHORT_PRESS == type) {
671 Call ringingCall = getFirstCallWithState(CallState.RINGING);
672 if (ringingCall == null) {
673 mCallAudioManager.toggleMute();
674 return true;
675 } else {
Andrew Lee38931d02014-07-16 10:17:36 -0700676 ringingCall.answer(ringingCall.getVideoState());
Santos Cordondeb8c892014-05-30 01:38:03 -0700677 return true;
678 }
679 } else if (HeadsetMediaButton.LONG_PRESS == type) {
680 Log.d(this, "handleHeadsetHook: longpress -> hangup");
681 Call callToHangup = getFirstCallWithState(
682 CallState.RINGING, CallState.DIALING, CallState.ACTIVE, CallState.ON_HOLD);
683 if (callToHangup != null) {
684 callToHangup.disconnect();
685 return true;
686 }
687 }
688 }
689 return false;
690 }
691
692 /**
Santos Cordon10838c22014-06-11 17:36:04 -0700693 * Checks to see if the specified call is the only high-level call and if so, enable the
694 * "Add-call" button. We allow you to add a second call but not a third or beyond.
695 *
696 * @param call The call to test for add-call.
697 * @return Whether the add-call feature should be enabled for the call.
698 */
699 protected boolean isAddCallCapable(Call call) {
700 if (call.getParentCall() != null) {
701 // Never true for child calls.
702 return false;
703 }
704
705 // Loop through all the other calls and there exists a top level (has no parent) call
706 // that is not the specified call, return false.
707 for (Call otherCall : mCalls) {
708 if (call != otherCall && otherCall.getParentCall() == null) {
709 return false;
710 }
711 }
712 return true;
713 }
714
715 /**
Santos Cordondeb8c892014-05-30 01:38:03 -0700716 * Returns the first call that it finds with the given states. The states are treated as having
717 * priority order so that any call with the first state will be returned before any call with
718 * states listed later in the parameter list.
719 */
Ihab Awad6fb37c82014-08-07 19:48:57 -0700720 Call getFirstCallWithState(int... states) {
721 for (int currentState : states) {
Santos Cordon23baed32014-06-27 14:45:39 -0700722 // check the foreground first
723 if (mForegroundCall != null && mForegroundCall.getState() == currentState) {
724 return mForegroundCall;
725 }
726
Santos Cordondeb8c892014-05-30 01:38:03 -0700727 for (Call call : mCalls) {
728 if (currentState == call.getState()) {
729 return call;
730 }
731 }
732 }
733 return null;
734 }
735
Santos Cordon0fbe6322014-08-14 04:04:25 -0700736 Call createConferenceCall(
737 PhoneAccountHandle phoneAccount,
738 ParcelableConference parcelableConference) {
739 Call call = new Call(
740 mConnectionServiceRepository,
741 null /* handle */,
742 null /* gatewayInfo */,
743 null /* connectionManagerPhoneAccount */,
744 phoneAccount,
745 false /* isIncoming */,
746 true /* isConference */);
747
748 setCallState(call, Call.getStateFromConnectionState(parcelableConference.getState()));
Yorke Lee03f51282014-09-11 09:49:26 -0700749 if (call.getState() == CallState.ACTIVE) {
750 call.setConnectTimeMillis(System.currentTimeMillis());
751 }
Santos Cordon0fbe6322014-08-14 04:04:25 -0700752 call.setCallCapabilities(parcelableConference.getCapabilities());
753
754 // TODO: Move this to be a part of addCall()
755 call.addListener(this);
756 addCall(call);
757 return call;
758 }
759
Yorke Leef86db2e2014-09-12 17:56:48 -0700760 /**
761 * @return the call state currently tracked by {@link PhoneStateBroadcaster}
762 */
763 int getCallState() {
764 return mPhoneStateBroadcaster.getCallState();
765 }
Nancy Chenbc9ef172014-08-15 17:11:57 -0700766
Santos Cordon4b2c1192014-03-19 18:15:38 -0700767 /**
Ben Gilada0d9f752014-02-26 11:49:03 -0800768 * Adds the specified call to the main list of live calls.
769 *
770 * @param call The call to add.
771 */
772 private void addCall(Call call) {
Yorke Leeb701f6d2014-08-12 14:04:19 -0700773 Log.v(this, "addCall(%s)", call);
774
775 call.addListener(this);
Sailesh Nepale59bb192014-04-01 18:33:59 -0700776 mCalls.add(call);
Santos Cordon40f78c22014-04-07 02:11:42 -0700777
Santos Cordondf399862014-08-06 04:39:15 -0700778 // TODO: Update mForegroundCall prior to invoking
Santos Cordon40f78c22014-04-07 02:11:42 -0700779 // onCallAdded for calls which immediately take the foreground (like the first call).
Santos Cordona56f2762014-03-24 15:55:53 -0700780 for (CallsManagerListener listener : mListeners) {
781 listener.onCallAdded(call);
782 }
Sailesh Nepal810735e2014-03-18 18:15:46 -0700783 updateForegroundCall();
Ben Gilada0d9f752014-02-26 11:49:03 -0800784 }
785
Sailesh Nepal810735e2014-03-18 18:15:46 -0700786 private void removeCall(Call call) {
Santos Cordonc499c1c2014-04-14 17:13:14 -0700787 Log.v(this, "removeCall(%s)", call);
Sailesh Nepal4857f472014-04-07 22:26:27 -0700788
Santos Cordon672321e2014-08-21 14:38:58 -0700789 call.setParentCall(null); // need to clean up parent relationship before destroying.
Santos Cordon766d04f2014-05-06 10:28:25 -0700790 call.removeListener(this);
Sailesh Nepalc92c4362014-07-04 18:33:21 -0700791 call.clearConnectionService();
Sailesh Nepale59bb192014-04-01 18:33:59 -0700792
793 boolean shouldNotify = false;
794 if (mCalls.contains(call)) {
795 mCalls.remove(call);
796 shouldNotify = true;
Santos Cordona56f2762014-03-24 15:55:53 -0700797 }
Ben Gilada0d9f752014-02-26 11:49:03 -0800798
Sailesh Nepale59bb192014-04-01 18:33:59 -0700799 // Only broadcast changes for calls that are being tracked.
800 if (shouldNotify) {
801 for (CallsManagerListener listener : mListeners) {
802 listener.onCallRemoved(call);
803 }
804 updateForegroundCall();
Sailesh Nepal810735e2014-03-18 18:15:46 -0700805 }
806 }
Evan Charlton5c670a92014-03-06 14:58:20 -0800807
Sailesh Nepal810735e2014-03-18 18:15:46 -0700808 /**
Santos Cordon1ae2b852014-03-19 03:03:10 -0700809 * Sets the specified state on the specified call.
Sailesh Nepal810735e2014-03-18 18:15:46 -0700810 *
811 * @param call The call.
812 * @param newState The new state of the call.
813 */
Ihab Awad6fb37c82014-08-07 19:48:57 -0700814 private void setCallState(Call call, int newState) {
Jay Shrauneracb91eb2014-08-08 16:04:53 -0700815 if (call == null) {
816 return;
817 }
Ihab Awad6fb37c82014-08-07 19:48:57 -0700818 int oldState = call.getState();
Nancy Chen308ab8b2014-09-02 16:18:30 -0700819 Log.i(this, "setCallState %s -> %s, call: %s", CallState.toString(oldState),
820 CallState.toString(newState), call);
Sailesh Nepal810735e2014-03-18 18:15:46 -0700821 if (newState != oldState) {
822 // Unfortunately, in the telephony world the radio is king. So if the call notifies
823 // us that the call is in a particular state, we allow it even if it doesn't make
Ihab Awad6fb37c82014-08-07 19:48:57 -0700824 // sense (e.g., STATE_ACTIVE -> STATE_RINGING).
Santos Cordondf399862014-08-06 04:39:15 -0700825 // TODO: Consider putting a stop to the above and turning CallState
Sailesh Nepal810735e2014-03-18 18:15:46 -0700826 // into a well-defined state machine.
Santos Cordondf399862014-08-06 04:39:15 -0700827 // TODO: Define expected state transitions here, and log when an
Sailesh Nepal810735e2014-03-18 18:15:46 -0700828 // unexpected transition occurs.
829 call.setState(newState);
830
831 // Only broadcast state change for calls that are being tracked.
Sailesh Nepale59bb192014-04-01 18:33:59 -0700832 if (mCalls.contains(call)) {
Santos Cordona56f2762014-03-24 15:55:53 -0700833 for (CallsManagerListener listener : mListeners) {
834 listener.onCallStateChanged(call, oldState, newState);
835 }
Sailesh Nepal810735e2014-03-18 18:15:46 -0700836 updateForegroundCall();
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800837 }
838 }
839 }
840
841 /**
Sailesh Nepal810735e2014-03-18 18:15:46 -0700842 * Checks which call should be visible to the user and have audio focus.
Evan Charlton5c670a92014-03-06 14:58:20 -0800843 */
Sailesh Nepal810735e2014-03-18 18:15:46 -0700844 private void updateForegroundCall() {
845 Call newForegroundCall = null;
Sailesh Nepale59bb192014-04-01 18:33:59 -0700846 for (Call call : mCalls) {
Santos Cordondf399862014-08-06 04:39:15 -0700847 // TODO: Foreground-ness needs to be explicitly set. No call, regardless
Sailesh Nepalc92c4362014-07-04 18:33:21 -0700848 // of its state will be foreground by default and instead the connection service should
849 // be notified when its calls enter and exit foreground state. Foreground will mean that
Santos Cordon40f78c22014-04-07 02:11:42 -0700850 // the call should play audio and listen to microphone if it wants.
851
852 // Active calls have priority.
853 if (call.isActive()) {
Sailesh Nepal810735e2014-03-18 18:15:46 -0700854 newForegroundCall = call;
Evan Charlton5c670a92014-03-06 14:58:20 -0800855 break;
Sailesh Nepal810735e2014-03-18 18:15:46 -0700856 }
Santos Cordon40f78c22014-04-07 02:11:42 -0700857
858 if (call.isAlive() || call.getState() == CallState.RINGING) {
Sailesh Nepal810735e2014-03-18 18:15:46 -0700859 newForegroundCall = call;
Santos Cordon40f78c22014-04-07 02:11:42 -0700860 // Don't break in case there's an active call that has priority.
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800861 }
862 }
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800863
Sailesh Nepal810735e2014-03-18 18:15:46 -0700864 if (newForegroundCall != mForegroundCall) {
Santos Cordon40f78c22014-04-07 02:11:42 -0700865 Log.v(this, "Updating foreground call, %s -> %s.", mForegroundCall, newForegroundCall);
Sailesh Nepal810735e2014-03-18 18:15:46 -0700866 Call oldForegroundCall = mForegroundCall;
867 mForegroundCall = newForegroundCall;
868
Santos Cordona56f2762014-03-24 15:55:53 -0700869 for (CallsManagerListener listener : mListeners) {
870 listener.onForegroundCallChanged(oldForegroundCall, mForegroundCall);
871 }
Santos Cordon681663d2014-01-30 04:32:15 -0800872 }
873 }
Yorke Leeb701f6d2014-08-12 14:04:19 -0700874
875 private boolean isPotentialMMICode(Uri handle) {
876 return (handle != null && handle.getSchemeSpecificPart() != null
877 && handle.getSchemeSpecificPart().contains("#"));
878 }
Ben Gilad9f2bed32013-12-12 17:43:26 -0800879}