blob: 2636c2fe8de7329d7ad833943e03fe4f0dd00085 [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;
Santos Cordonf193ba42014-09-12 06:37:39 -070021
22import android.provider.CallLog.Calls;
Tyler Gunn7cc70b42014-09-12 22:17:27 -070023import android.telecom.AudioState;
24import android.telecom.CallState;
25import android.telecom.GatewayInfo;
26import android.telecom.ParcelableConference;
27import android.telecom.PhoneAccountHandle;
Santos Cordonf193ba42014-09-12 06:37:39 -070028import android.telecom.PhoneCapabilities;
Santos Cordon79ff2bc2014-03-27 15:31:27 -070029import android.telephony.DisconnectCause;
Sailesh Nepal8aa6a002014-09-12 10:52:49 -070030import android.telephony.TelephonyManager;
Santos Cordon8e8b8d22013-12-19 14:14:05 -080031
Santos Cordonf193ba42014-09-12 06:37:39 -070032import com.android.internal.util.ArrayUtils;
Sailesh Nepal810735e2014-03-18 18:15:46 -070033import com.google.common.collect.ImmutableCollection;
34import com.google.common.collect.ImmutableList;
Ben Gilad9f2bed32013-12-12 17:43:26 -080035
Santos Cordonf193ba42014-09-12 06:37:39 -070036import java.util.Arrays;
Jay Shraunera82c8f72014-08-14 15:49:16 -070037import java.util.Collections;
Santos Cordon7cdb9092014-07-24 21:33:33 -070038import java.util.List;
Santos Cordonf193ba42014-09-12 06:37:39 -070039import java.util.Objects;
Santos Cordona56f2762014-03-24 15:55:53 -070040import java.util.Set;
Jay Shraunera82c8f72014-08-14 15:49:16 -070041import java.util.concurrent.ConcurrentHashMap;
Ben Gilad9f2bed32013-12-12 17:43:26 -080042
Ben Giladdd8c6082013-12-30 14:44:08 -080043/**
44 * Singleton.
45 *
Jay Shrauneracb91eb2014-08-08 16:04:53 -070046 * NOTE: by design most APIs are package private, use the relevant adapter/s to allow
Ben Giladdd8c6082013-12-30 14:44:08 -080047 * access from other packages specifically refraining from passing the CallsManager instance
Tyler Gunn7cc70b42014-09-12 22:17:27 -070048 * beyond the com.android.server.telecom package boundary.
Ben Giladdd8c6082013-12-30 14:44:08 -080049 */
Santos Cordon64c7e962014-07-02 15:15:27 -070050public final class CallsManager extends Call.ListenerBase {
Ben Gilada0d9f752014-02-26 11:49:03 -080051
Santos Cordondf399862014-08-06 04:39:15 -070052 // TODO: Consider renaming this CallsManagerPlugin.
Sailesh Nepal810735e2014-03-18 18:15:46 -070053 interface CallsManagerListener {
54 void onCallAdded(Call call);
55 void onCallRemoved(Call call);
Ihab Awad6fb37c82014-08-07 19:48:57 -070056 void onCallStateChanged(Call call, int oldState, int newState);
Sailesh Nepalc92c4362014-07-04 18:33:21 -070057 void onConnectionServiceChanged(
Sailesh Nepal8c85dee2014-04-07 22:21:40 -070058 Call call,
Sailesh Nepalc92c4362014-07-04 18:33:21 -070059 ConnectionServiceWrapper oldService,
60 ConnectionServiceWrapper newService);
Sailesh Nepal810735e2014-03-18 18:15:46 -070061 void onIncomingCallAnswered(Call call);
Ihab Awadff7493a2014-06-10 13:47:44 -070062 void onIncomingCallRejected(Call call, boolean rejectWithMessage, String textMessage);
Sailesh Nepal810735e2014-03-18 18:15:46 -070063 void onForegroundCallChanged(Call oldForegroundCall, Call newForegroundCall);
Ihab Awad6fb37c82014-08-07 19:48:57 -070064 void onAudioStateChanged(AudioState oldAudioState, AudioState newAudioState);
Andrew Lee5be64bc2014-09-08 18:35:15 -070065 void onRingbackRequested(Call call, boolean ringback);
Santos Cordona1610702014-06-04 20:22:56 -070066 void onIsConferencedChanged(Call call);
Andrew Lee5be64bc2014-09-08 18:35:15 -070067 void onIsVoipAudioModeChanged(Call call);
Andrew Lee4a796602014-07-11 17:23:03 -070068 void onVideoStateChanged(Call call);
Sailesh Nepal810735e2014-03-18 18:15:46 -070069 }
70
Santos Cordon8e8b8d22013-12-19 14:14:05 -080071 private static final CallsManager INSTANCE = new CallsManager();
Ben Gilad9f2bed32013-12-12 17:43:26 -080072
Santos Cordonf193ba42014-09-12 06:37:39 -070073 private static final int MAXIMUM_LIVE_CALLS = 1;
74 private static final int MAXIMUM_HOLD_CALLS = 1;
75 private static final int MAXIMUM_RINGING_CALLS = 1;
76 private static final int MAXIMUM_OUTGOING_CALLS = 1;
77
78 private static final int[] LIVE_CALL_STATES =
79 {CallState.CONNECTING, CallState.PRE_DIAL_WAIT, CallState.DIALING, CallState.ACTIVE};
80
81 private static final int[] OUTGOING_CALL_STATES =
82 {CallState.CONNECTING, CallState.PRE_DIAL_WAIT, CallState.DIALING};
83
Santos Cordon8e8b8d22013-12-19 14:14:05 -080084 /**
Sailesh Nepale59bb192014-04-01 18:33:59 -070085 * The main call repository. Keeps an instance of all live calls. New incoming and outgoing
86 * calls are added to the map and removed when the calls move to the disconnected state.
Jay Shraunera82c8f72014-08-14 15:49:16 -070087 *
88 * ConcurrentHashMap constructor params: 8 is initial table size, 0.9f is
89 * load factor before resizing, 1 means we only expect a single thread to
90 * access the map so make only a single shard
Santos Cordon681663d2014-01-30 04:32:15 -080091 */
Jay Shraunera82c8f72014-08-14 15:49:16 -070092 private final Set<Call> mCalls = Collections.newSetFromMap(
93 new ConcurrentHashMap<Call, Boolean>(8, 0.9f, 1));
Santos Cordon681663d2014-01-30 04:32:15 -080094
Sailesh Nepal664837f2014-07-14 16:31:51 -070095 private final ConnectionServiceRepository mConnectionServiceRepository =
96 new ConnectionServiceRepository();
Santos Cordonf3671a62014-05-29 21:51:53 -070097 private final DtmfLocalTonePlayer mDtmfLocalTonePlayer = new DtmfLocalTonePlayer();
98 private final InCallController mInCallController = new InCallController();
99 private final CallAudioManager mCallAudioManager;
100 private final Ringer mRinger;
Jay Shraunera82c8f72014-08-14 15:49:16 -0700101 // For this set initial table size to 16 because we add 13 listeners in
102 // the CallsManager constructor.
103 private final Set<CallsManagerListener> mListeners = Collections.newSetFromMap(
104 new ConcurrentHashMap<CallsManagerListener, Boolean>(16, 0.9f, 1));
Santos Cordondeb8c892014-05-30 01:38:03 -0700105 private final HeadsetMediaButton mHeadsetMediaButton;
Sailesh Nepalb88795a2014-07-15 14:53:27 -0700106 private final WiredHeadsetManager mWiredHeadsetManager;
107 private final TtyManager mTtyManager;
Yorke Leed1346872014-07-28 14:38:45 -0700108 private final ProximitySensorManager mProximitySensorManager;
Yorke Leef86db2e2014-09-12 17:56:48 -0700109 private final PhoneStateBroadcaster mPhoneStateBroadcaster;
Santos Cordonf193ba42014-09-12 06:37:39 -0700110 private final CallLogManager mCallLogManager;
Sailesh Nepal84fa5f82014-04-02 11:01:11 -0700111
112 /**
Sailesh Nepal810735e2014-03-18 18:15:46 -0700113 * The call the user is currently interacting with. This is the call that should have audio
114 * focus and be visible in the in-call UI.
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800115 */
Sailesh Nepal810735e2014-03-18 18:15:46 -0700116 private Call mForegroundCall;
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800117
Santos Cordon766d04f2014-05-06 10:28:25 -0700118 /** Singleton accessor. */
119 static CallsManager getInstance() {
120 return INSTANCE;
121 }
Ben Gilad9f2bed32013-12-12 17:43:26 -0800122
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800123 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700124 * Initializes the required Telecom components.
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800125 */
126 private CallsManager() {
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700127 TelecomApp app = TelecomApp.getInstance();
Santos Cordona56f2762014-03-24 15:55:53 -0700128
Santos Cordondeb8c892014-05-30 01:38:03 -0700129 StatusBarNotifier statusBarNotifier = new StatusBarNotifier(app, this);
Sailesh Nepalb88795a2014-07-15 14:53:27 -0700130 mWiredHeadsetManager = new WiredHeadsetManager(app);
131 mCallAudioManager = new CallAudioManager(app, statusBarNotifier, mWiredHeadsetManager);
Santos Cordonc7b8eba2014-04-01 15:26:28 -0700132 InCallTonePlayer.Factory playerFactory = new InCallTonePlayer.Factory(mCallAudioManager);
Santos Cordonae193062014-05-21 21:21:49 -0700133 mRinger = new Ringer(mCallAudioManager, this, playerFactory, app);
Santos Cordondeb8c892014-05-30 01:38:03 -0700134 mHeadsetMediaButton = new HeadsetMediaButton(app, this);
Sailesh Nepalb88795a2014-07-15 14:53:27 -0700135 mTtyManager = new TtyManager(app, mWiredHeadsetManager);
Yorke Leed1346872014-07-28 14:38:45 -0700136 mProximitySensorManager = new ProximitySensorManager(app);
Yorke Leef86db2e2014-09-12 17:56:48 -0700137 mPhoneStateBroadcaster = new PhoneStateBroadcaster();
Santos Cordonf193ba42014-09-12 06:37:39 -0700138 mCallLogManager = new CallLogManager(app);
Santos Cordonae193062014-05-21 21:21:49 -0700139
Santos Cordondeb8c892014-05-30 01:38:03 -0700140 mListeners.add(statusBarNotifier);
Santos Cordonf193ba42014-09-12 06:37:39 -0700141 mListeners.add(mCallLogManager);
Yorke Leef86db2e2014-09-12 17:56:48 -0700142 mListeners.add(mPhoneStateBroadcaster);
Santos Cordonf3671a62014-05-29 21:51:53 -0700143 mListeners.add(mInCallController);
Santos Cordonae193062014-05-21 21:21:49 -0700144 mListeners.add(mRinger);
Santos Cordonc7b8eba2014-04-01 15:26:28 -0700145 mListeners.add(new RingbackPlayer(this, playerFactory));
146 mListeners.add(new InCallToneMonitor(playerFactory, this));
Santos Cordona56f2762014-03-24 15:55:53 -0700147 mListeners.add(mCallAudioManager);
Santos Cordona0e5f1a2014-03-31 21:43:00 -0700148 mListeners.add(app.getMissedCallNotifier());
Santos Cordon92a2d812014-04-30 15:19:01 -0700149 mListeners.add(mDtmfLocalTonePlayer);
Santos Cordon81289982014-06-03 16:03:08 -0700150 mListeners.add(mHeadsetMediaButton);
Ihab Awadff7493a2014-06-10 13:47:44 -0700151 mListeners.add(RespondViaSmsManager.getInstance());
Yorke Leed1346872014-07-28 14:38:45 -0700152 mListeners.add(mProximitySensorManager);
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800153 }
154
Santos Cordon766d04f2014-05-06 10:28:25 -0700155 @Override
Ihab Awad6fb37c82014-08-07 19:48:57 -0700156 public void onSuccessfulOutgoingCall(Call call, int callState) {
Santos Cordon766d04f2014-05-06 10:28:25 -0700157 Log.v(this, "onSuccessfulOutgoingCall, %s", call);
Yorke Leeb701f6d2014-08-12 14:04:19 -0700158
Tyler Gunncde2e502014-08-12 14:35:58 -0700159 setCallState(call, callState);
Yorke Leeb701f6d2014-08-12 14:04:19 -0700160 if (!mCalls.contains(call)) {
161 // Call was not added previously in startOutgoingCall due to it being a potential MMI
162 // code, so add it now.
163 addCall(call);
164 }
165
166 // The call's ConnectionService has been updated.
167 for (CallsManagerListener listener : mListeners) {
168 listener.onConnectionServiceChanged(call, null, call.getConnectionService());
Santos Cordon766d04f2014-05-06 10:28:25 -0700169 }
Santos Cordon6cb7ba92014-05-23 14:09:32 -0700170
171 markCallAsDialing(call);
Santos Cordon766d04f2014-05-06 10:28:25 -0700172 }
173
174 @Override
Sailesh Nepal5a73b032014-06-25 15:53:21 -0700175 public void onFailedOutgoingCall(Call call, int errorCode, String errorMsg) {
176 Log.v(this, "onFailedOutgoingCall, call: %s", call);
Yorke Leeb701f6d2014-08-12 14:04:19 -0700177
Sailesh Nepal5a73b032014-06-25 15:53:21 -0700178 // TODO: Replace disconnect cause with more specific disconnect causes.
179 markCallAsDisconnected(call, errorCode, errorMsg);
180 }
181
182 @Override
Santos Cordonf193ba42014-09-12 06:37:39 -0700183 public void onSuccessfulIncomingCall(Call incomingCall) {
Santos Cordon766d04f2014-05-06 10:28:25 -0700184 Log.d(this, "onSuccessfulIncomingCall");
Santos Cordonf193ba42014-09-12 06:37:39 -0700185 setCallState(incomingCall, CallState.RINGING);
186
187 if (hasMaximumRingingCalls()) {
188 incomingCall.reject(false, null);
189 // since the call was not added to the list of calls, we have to call the missed
190 // call notifier and the call logger manually.
191 TelecomApp.getInstance().getMissedCallNotifier()
192 .showMissedCallNotification(incomingCall);
193 mCallLogManager.logCall(incomingCall, Calls.MISSED_TYPE);
194 } else {
195 addCall(incomingCall);
196 }
Santos Cordon766d04f2014-05-06 10:28:25 -0700197 }
198
199 @Override
200 public void onFailedIncomingCall(Call call) {
Tyler Gunncde2e502014-08-12 14:35:58 -0700201 setCallState(call, CallState.DISCONNECTED);
Santos Cordon766d04f2014-05-06 10:28:25 -0700202 call.removeListener(this);
Ben Gilada0d9f752014-02-26 11:49:03 -0800203 }
204
Ihab Awadcb387ac2014-05-28 16:49:38 -0700205 @Override
Andrew Lee5be64bc2014-09-08 18:35:15 -0700206 public void onRingbackRequested(Call call, boolean ringback) {
Ihab Awadcb387ac2014-05-28 16:49:38 -0700207 for (CallsManagerListener listener : mListeners) {
Andrew Lee5be64bc2014-09-08 18:35:15 -0700208 listener.onRingbackRequested(call, ringback);
Ihab Awadcb387ac2014-05-28 16:49:38 -0700209 }
210 }
211
Evan Charlton352105c2014-06-03 14:10:54 -0700212 @Override
213 public void onPostDialWait(Call call, String remaining) {
214 mInCallController.onPostDialWait(call, remaining);
215 }
216
Santos Cordona1610702014-06-04 20:22:56 -0700217 @Override
Santos Cordona1610702014-06-04 20:22:56 -0700218 public void onParentChanged(Call call) {
219 for (CallsManagerListener listener : mListeners) {
220 listener.onIsConferencedChanged(call);
221 }
222 }
223
224 @Override
225 public void onChildrenChanged(Call call) {
226 for (CallsManagerListener listener : mListeners) {
227 listener.onIsConferencedChanged(call);
228 }
229 }
230
Ihab Awadff7493a2014-06-10 13:47:44 -0700231 @Override
Andrew Lee5be64bc2014-09-08 18:35:15 -0700232 public void onIsVoipAudioModeChanged(Call call) {
Sailesh Nepal7e669572014-07-08 21:29:12 -0700233 for (CallsManagerListener listener : mListeners) {
Andrew Lee5be64bc2014-09-08 18:35:15 -0700234 listener.onIsVoipAudioModeChanged(call);
Sailesh Nepal7e669572014-07-08 21:29:12 -0700235 }
236 }
237
Andrew Lee4a796602014-07-11 17:23:03 -0700238 @Override
239 public void onVideoStateChanged(Call call) {
240 for (CallsManagerListener listener : mListeners) {
241 listener.onVideoStateChanged(call);
242 }
243 }
244
Sailesh Nepal810735e2014-03-18 18:15:46 -0700245 ImmutableCollection<Call> getCalls() {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700246 return ImmutableList.copyOf(mCalls);
Sailesh Nepal810735e2014-03-18 18:15:46 -0700247 }
248
249 Call getForegroundCall() {
250 return mForegroundCall;
251 }
252
Santos Cordonae193062014-05-21 21:21:49 -0700253 Ringer getRinger() {
254 return mRinger;
255 }
256
Santos Cordonf3671a62014-05-29 21:51:53 -0700257 InCallController getInCallController() {
258 return mInCallController;
259 }
260
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700261 boolean hasEmergencyCall() {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700262 for (Call call : mCalls) {
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700263 if (call.isEmergencyCall()) {
264 return true;
265 }
266 }
267 return false;
268 }
269
Ihab Awad6fb37c82014-08-07 19:48:57 -0700270 AudioState getAudioState() {
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700271 return mCallAudioManager.getAudioState();
272 }
273
Sailesh Nepalb88795a2014-07-15 14:53:27 -0700274 boolean isTtySupported() {
275 return mTtyManager.isTtySupported();
276 }
277
278 int getCurrentTtyMode() {
279 return mTtyManager.getCurrentTtyMode();
280 }
281
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800282 /**
Sailesh Nepal664837f2014-07-14 16:31:51 -0700283 * Starts the process to attach the call to a connection service.
Santos Cordon80d9bdc2014-02-13 18:28:46 -0800284 *
Nancy Chenbc9ef172014-08-15 17:11:57 -0700285 * @param phoneAccountHandle The phone account which contains the component name of the
286 * connection service to use for this call.
Evan Charltona05805b2014-03-05 08:21:46 -0800287 * @param extras The optional extras Bundle passed with the intent used for the incoming call.
Santos Cordon80d9bdc2014-02-13 18:28:46 -0800288 */
Evan Charlton89176372014-07-19 18:23:09 -0700289 void processIncomingCallIntent(PhoneAccountHandle phoneAccountHandle, Bundle extras) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800290 Log.d(this, "processIncomingCallIntent");
Sailesh Nepal8aa6a002014-09-12 10:52:49 -0700291 Uri handle = extras.getParcelable(TelephonyManager.EXTRA_INCOMING_NUMBER);
Sailesh Nepal905dfba2014-07-14 08:20:41 -0700292 Call call = new Call(
Sailesh Nepal664837f2014-07-14 16:31:51 -0700293 mConnectionServiceRepository,
Sailesh Nepal8aa6a002014-09-12 10:52:49 -0700294 handle,
Sailesh Nepal664837f2014-07-14 16:31:51 -0700295 null /* gatewayInfo */,
Ihab Awadb78b2762014-07-25 15:16:23 -0700296 null /* connectionManagerPhoneAccount */,
Evan Charlton89176372014-07-19 18:23:09 -0700297 phoneAccountHandle,
Sailesh Nepal664837f2014-07-14 16:31:51 -0700298 true /* isIncoming */,
299 false /* isConference */);
300
Sailesh Nepal905dfba2014-07-14 08:20:41 -0700301 call.setExtras(extras);
Santos Cordondf399862014-08-06 04:39:15 -0700302 // TODO: Move this to be a part of addCall()
Santos Cordon766d04f2014-05-06 10:28:25 -0700303 call.addListener(this);
Sailesh Nepal664837f2014-07-14 16:31:51 -0700304 call.startCreateConnection();
Ben Gilada0d9f752014-02-26 11:49:03 -0800305 }
306
Nancy Chen0d3076c2014-07-30 14:45:44 -0700307 /**
308 * Kicks off the first steps to creating an outgoing call so that InCallUI can launch.
309 *
Nancy Chena9d91da2014-08-12 14:31:06 -0700310 * @param handle Handle to connect the call with.
Nancy Chenbc9ef172014-08-15 17:11:57 -0700311 * @param phoneAccountHandle The phone account which contains the component name of the
312 * connection service to use for this call.
313 * @param extras The optional extras Bundle passed with the intent used for the incoming call.
Nancy Chen0d3076c2014-07-30 14:45:44 -0700314 */
Nancy Chena9d91da2014-08-12 14:31:06 -0700315 Call startOutgoingCall(Uri handle, PhoneAccountHandle phoneAccountHandle, Bundle extras) {
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700316 TelecomApp app = TelecomApp.getInstance();
Nancy Chenbc9ef172014-08-15 17:11:57 -0700317
318 // Only dial with the requested phoneAccount if it is still valid. Otherwise treat this call
319 // as if a phoneAccount was not specified (does the default behavior instead).
Tyler Gunn8e0fef42014-09-08 18:34:44 -0700320 // Note: We will not attempt to dial with a requested phoneAccount if it is disabled.
Nancy Chenbc9ef172014-08-15 17:11:57 -0700321 if (phoneAccountHandle != null) {
322 List<PhoneAccountHandle> enabledAccounts =
Tyler Gunn8e0fef42014-09-08 18:34:44 -0700323 app.getPhoneAccountRegistrar().getEnabledPhoneAccounts(handle.getScheme());
Nancy Chenbc9ef172014-08-15 17:11:57 -0700324 if (!enabledAccounts.contains(phoneAccountHandle)) {
325 phoneAccountHandle = null;
326 }
327 }
328
329 if (phoneAccountHandle == null) {
Tyler Gunn84253572014-09-02 14:50:05 -0700330 // No preset account, check if default exists that supports the URI scheme for the
331 // handle.
Nancy Chenbc9ef172014-08-15 17:11:57 -0700332 PhoneAccountHandle defaultAccountHandle =
Tyler Gunn84253572014-09-02 14:50:05 -0700333 app.getPhoneAccountRegistrar().getDefaultOutgoingPhoneAccount(
334 handle.getScheme());
Nancy Chenbc9ef172014-08-15 17:11:57 -0700335 if (defaultAccountHandle != null) {
336 phoneAccountHandle = defaultAccountHandle;
337 }
338 }
339
Nancy Chen0d3076c2014-07-30 14:45:44 -0700340 // Create a call with original handle. The handle may be changed when the call is attached
341 // to a connection service, but in most cases will remain the same.
Santos Cordonf193ba42014-09-12 06:37:39 -0700342 Call call = new Call(
Nancy Chen0d3076c2014-07-30 14:45:44 -0700343 mConnectionServiceRepository,
344 handle,
345 null /* gatewayInfo */,
346 null /* connectionManagerPhoneAccount */,
347 phoneAccountHandle,
348 false /* isIncoming */,
349 false /* isConference */);
Nancy Chena9d91da2014-08-12 14:31:06 -0700350 call.setExtras(extras);
Nancy Chenbc9ef172014-08-15 17:11:57 -0700351
Santos Cordonf193ba42014-09-12 06:37:39 -0700352 boolean isEmergencyCall = TelephonyUtil.shouldProcessAsEmergency(app, call.getHandle());
353
354 // Do not support any more live calls. Our options are to move a call to hold, disconnect
355 // a call, or cancel this call altogether.
356 if (!makeRoomForOutgoingCall(call, isEmergencyCall)) {
357 // just cancel at this point.
358 return null;
359 }
360
361 if (phoneAccountHandle == null && !isEmergencyCall) {
Nancy Chenbc9ef172014-08-15 17:11:57 -0700362 // This is the state where the user is expected to select an account
363 call.setState(CallState.PRE_DIAL_WAIT);
364 } else {
365 call.setState(CallState.CONNECTING);
366 }
Nancy Chen0d3076c2014-07-30 14:45:44 -0700367
Yorke Leeb701f6d2014-08-12 14:04:19 -0700368 if (!isPotentialMMICode(handle)) {
369 addCall(call);
370 } else {
371 call.addListener(this);
372 }
Nancy Chen0d3076c2014-07-30 14:45:44 -0700373
374 return call;
375 }
376
Ben Gilada0d9f752014-02-26 11:49:03 -0800377 /**
Yorke Lee33501632014-03-17 19:24:12 -0700378 * Attempts to issue/connect the specified call.
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800379 *
Yorke Lee33501632014-03-17 19:24:12 -0700380 * @param handle Handle to connect the call with.
Yorke Lee33501632014-03-17 19:24:12 -0700381 * @param gatewayInfo Optional gateway information that can be used to route the call to the
Nancy Chen53ceedc2014-07-08 18:56:51 -0700382 * actual dialed handle via a gateway provider. May be null.
Sai Cheemalapatib7157e92014-06-11 17:51:55 -0700383 * @param speakerphoneOn Whether or not to turn the speakerphone on once the call connects.
Tyler Gunnc4abd912014-07-08 14:22:10 -0700384 * @param videoState The desired video state for the outgoing call.
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800385 */
Nancy Chenbc9ef172014-08-15 17:11:57 -0700386 void placeOutgoingCall(Call call, Uri handle, GatewayInfo gatewayInfo, boolean speakerphoneOn,
387 int videoState) {
Nancy Chen0d3076c2014-07-30 14:45:44 -0700388 if (call == null) {
389 // don't do anything if the call no longer exists
390 Log.i(this, "Canceling unknown call.");
Santos Cordonb7af09e2014-08-06 04:30:01 -0700391 return;
392 }
393
Nancy Chen201b4372014-09-08 14:18:24 -0700394 final Uri uriHandle = (gatewayInfo == null) ? handle : gatewayInfo.getGatewayAddress();
Yorke Lee33501632014-03-17 19:24:12 -0700395
396 if (gatewayInfo == null) {
Santos Cordonb58f4532014-05-29 11:59:06 -0700397 Log.i(this, "Creating a new outgoing call with handle: %s", Log.piiHandle(uriHandle));
Yorke Lee33501632014-03-17 19:24:12 -0700398 } else {
399 Log.i(this, "Creating a new outgoing call with gateway handle: %s, original handle: %s",
400 Log.pii(uriHandle), Log.pii(handle));
401 }
Santos Cordon766d04f2014-05-06 10:28:25 -0700402
Nancy Chen0d3076c2014-07-30 14:45:44 -0700403 call.setHandle(uriHandle);
404 call.setGatewayInfo(gatewayInfo);
Sai Cheemalapatib7157e92014-06-11 17:51:55 -0700405 call.setStartWithSpeakerphoneOn(speakerphoneOn);
Tyler Gunnc4abd912014-07-08 14:22:10 -0700406 call.setVideoState(videoState);
Santos Cordon766d04f2014-05-06 10:28:25 -0700407
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700408 TelecomApp app = TelecomApp.getInstance();
Santos Cordonf193ba42014-09-12 06:37:39 -0700409 boolean isEmergencyCall = TelephonyUtil.shouldProcessAsEmergency(app, call.getHandle());
410 if (isEmergencyCall) {
Ihab Awad69eb0f52014-07-18 11:20:37 -0700411 // Emergency -- CreateConnectionProcessor will choose accounts automatically
Ihab Awadb78b2762014-07-25 15:16:23 -0700412 call.setTargetPhoneAccount(null);
Nancy Chen53ceedc2014-07-08 18:56:51 -0700413 }
Nancy Chend9de92c2014-07-21 16:09:13 -0700414
Santos Cordonf193ba42014-09-12 06:37:39 -0700415 if (call.getTargetPhoneAccount() != null || isEmergencyCall) {
Nancy Chenbc9ef172014-08-15 17:11:57 -0700416 // If the account has been set, proceed to place the outgoing call.
417 // Otherwise the connection will be initiated when the account is set by the user.
Nancy Chend9de92c2014-07-21 16:09:13 -0700418 call.startCreateConnection();
Nancy Chend9de92c2014-07-21 16:09:13 -0700419 }
Yorke Leef98fb572014-03-05 10:56:55 -0800420 }
421
422 /**
Santos Cordona1610702014-06-04 20:22:56 -0700423 * Attempts to start a conference call for the specified call.
424 *
Santos Cordon12d61822014-07-29 16:02:20 -0700425 * @param call The call to conference.
426 * @param otherCall The other call to conference with.
Santos Cordona1610702014-06-04 20:22:56 -0700427 */
Santos Cordon12d61822014-07-29 16:02:20 -0700428 void conference(Call call, Call otherCall) {
Santos Cordon0fbe6322014-08-14 04:04:25 -0700429 call.conferenceWith(otherCall);
Santos Cordona1610702014-06-04 20:22:56 -0700430 }
431
432 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700433 * Instructs Telecom to answer the specified call. Intended to be invoked by the in-call
434 * app through {@link InCallAdapter} after Telecom notifies it of an incoming call followed by
Santos Cordone3d76ab2014-01-28 17:25:20 -0800435 * the user opting to answer said call.
Andrew Lee38931d02014-07-16 10:17:36 -0700436 *
437 * @param call The call to answer.
438 * @param videoState The video state in which to answer the call.
Santos Cordone3d76ab2014-01-28 17:25:20 -0800439 */
Andrew Lee38931d02014-07-16 10:17:36 -0700440 void answerCall(Call call, int videoState) {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700441 if (!mCalls.contains(call)) {
442 Log.i(this, "Request to answer a non-existent call %s", call);
Santos Cordon61d0f702014-02-19 02:52:23 -0800443 } else {
Santos Cordon40f78c22014-04-07 02:11:42 -0700444 // If the foreground call is not the ringing call and it is currently isActive() or
Ihab Awad6fb37c82014-08-07 19:48:57 -0700445 // STATE_DIALING, put it on hold before answering the call.
Santos Cordon40f78c22014-04-07 02:11:42 -0700446 if (mForegroundCall != null && mForegroundCall != call &&
447 (mForegroundCall.isActive() ||
448 mForegroundCall.getState() == CallState.DIALING)) {
Santos Cordonf193ba42014-09-12 06:37:39 -0700449 if (0 == (mForegroundCall.getCallCapabilities() & PhoneCapabilities.HOLD)) {
450 // This call does not support hold. If it is from a different connection
451 // service, then disconnect it, otherwise allow the connection service to
452 // figure out the right states.
453 if (mForegroundCall.getConnectionService() != call.getConnectionService()) {
454 mForegroundCall.disconnect();
455 }
456 } else {
457 Log.v(this, "Holding active/dialing call %s before answering incoming call %s.",
458 mForegroundCall, call);
459 mForegroundCall.hold();
460 }
Santos Cordondf399862014-08-06 04:39:15 -0700461 // TODO: Wait until we get confirmation of the active call being
Santos Cordon40f78c22014-04-07 02:11:42 -0700462 // on-hold before answering the new call.
Santos Cordondf399862014-08-06 04:39:15 -0700463 // TODO: Import logic from CallManager.acceptCall()
Santos Cordon40f78c22014-04-07 02:11:42 -0700464 }
465
Santos Cordona56f2762014-03-24 15:55:53 -0700466 for (CallsManagerListener listener : mListeners) {
467 listener.onIncomingCallAnswered(call);
468 }
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800469
Santos Cordon61d0f702014-02-19 02:52:23 -0800470 // We do not update the UI until we get confirmation of the answer() through
Sailesh Nepale59bb192014-04-01 18:33:59 -0700471 // {@link #markCallAsActive}.
Andrew Lee38931d02014-07-16 10:17:36 -0700472 call.answer(videoState);
Santos Cordon61d0f702014-02-19 02:52:23 -0800473 }
Santos Cordone3d76ab2014-01-28 17:25:20 -0800474 }
475
476 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700477 * Instructs Telecom to reject the specified call. Intended to be invoked by the in-call
478 * app through {@link InCallAdapter} after Telecom notifies it of an incoming call followed by
Santos Cordone3d76ab2014-01-28 17:25:20 -0800479 * the user opting to reject said call.
Santos Cordone3d76ab2014-01-28 17:25:20 -0800480 */
Ihab Awadff7493a2014-06-10 13:47:44 -0700481 void rejectCall(Call call, boolean rejectWithMessage, String textMessage) {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700482 if (!mCalls.contains(call)) {
483 Log.i(this, "Request to reject a non-existent call %s", call);
Santos Cordon61d0f702014-02-19 02:52:23 -0800484 } else {
Santos Cordona56f2762014-03-24 15:55:53 -0700485 for (CallsManagerListener listener : mListeners) {
Ihab Awadff7493a2014-06-10 13:47:44 -0700486 listener.onIncomingCallRejected(call, rejectWithMessage, textMessage);
Santos Cordona56f2762014-03-24 15:55:53 -0700487 }
Ihab Awadff7493a2014-06-10 13:47:44 -0700488 call.reject(rejectWithMessage, textMessage);
Santos Cordon61d0f702014-02-19 02:52:23 -0800489 }
Santos Cordone3d76ab2014-01-28 17:25:20 -0800490 }
491
492 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700493 * Instructs Telecom to play the specified DTMF tone within the specified call.
Ihab Awad74549ec2014-03-10 15:33:25 -0700494 *
Ihab Awad74549ec2014-03-10 15:33:25 -0700495 * @param digit The DTMF digit to play.
496 */
Sailesh Nepale59bb192014-04-01 18:33:59 -0700497 void playDtmfTone(Call call, char digit) {
498 if (!mCalls.contains(call)) {
499 Log.i(this, "Request to play DTMF in a non-existent call %s", call);
Ihab Awad74549ec2014-03-10 15:33:25 -0700500 } else {
501 call.playDtmfTone(digit);
Santos Cordon92a2d812014-04-30 15:19:01 -0700502 mDtmfLocalTonePlayer.playTone(call, digit);
Ihab Awad74549ec2014-03-10 15:33:25 -0700503 }
504 }
505
506 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700507 * Instructs Telecom to stop the currently playing DTMF tone, if any.
Ihab Awad74549ec2014-03-10 15:33:25 -0700508 */
Sailesh Nepale59bb192014-04-01 18:33:59 -0700509 void stopDtmfTone(Call call) {
510 if (!mCalls.contains(call)) {
511 Log.i(this, "Request to stop DTMF in a non-existent call %s", call);
Ihab Awad74549ec2014-03-10 15:33:25 -0700512 } else {
513 call.stopDtmfTone();
Santos Cordon92a2d812014-04-30 15:19:01 -0700514 mDtmfLocalTonePlayer.stopTone(call);
Ihab Awad74549ec2014-03-10 15:33:25 -0700515 }
516 }
517
518 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700519 * Instructs Telecom to continue (or not) the current post-dial DTMF string, if any.
Ihab Awad74549ec2014-03-10 15:33:25 -0700520 */
Evan Charlton352105c2014-06-03 14:10:54 -0700521 void postDialContinue(Call call, boolean proceed) {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700522 if (!mCalls.contains(call)) {
523 Log.i(this, "Request to continue post-dial string in a non-existent call %s", call);
Ihab Awad74549ec2014-03-10 15:33:25 -0700524 } else {
Evan Charlton352105c2014-06-03 14:10:54 -0700525 call.postDialContinue(proceed);
Ihab Awad74549ec2014-03-10 15:33:25 -0700526 }
527 }
528
529 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700530 * Instructs Telecom to disconnect the specified call. Intended to be invoked by the
Santos Cordone3d76ab2014-01-28 17:25:20 -0800531 * in-call app through {@link InCallAdapter} for an ongoing call. This is usually triggered by
532 * the user hitting the end-call button.
Santos Cordone3d76ab2014-01-28 17:25:20 -0800533 */
Sailesh Nepale59bb192014-04-01 18:33:59 -0700534 void disconnectCall(Call call) {
Santos Cordon682fe6b2014-05-20 08:56:39 -0700535 Log.v(this, "disconnectCall %s", call);
536
Sailesh Nepale59bb192014-04-01 18:33:59 -0700537 if (!mCalls.contains(call)) {
538 Log.w(this, "Unknown call (%s) asked to disconnect", call);
Santos Cordon049b7b62014-01-30 05:34:26 -0800539 } else {
540 call.disconnect();
541 }
Santos Cordone3d76ab2014-01-28 17:25:20 -0800542 }
Santos Cordon681663d2014-01-30 04:32:15 -0800543
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700544 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700545 * Instructs Telecom to disconnect all calls.
Tyler Gunn61b92102014-08-19 07:42:20 -0700546 */
547 void disconnectAllCalls() {
548 Log.v(this, "disconnectAllCalls");
549
550 for (Call call : mCalls) {
551 disconnectCall(call);
552 }
553 }
554
Nancy Chenbc9ef172014-08-15 17:11:57 -0700555
Tyler Gunn61b92102014-08-19 07:42:20 -0700556 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700557 * Instructs Telecom to put the specified call on hold. Intended to be invoked by the
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700558 * in-call app through {@link InCallAdapter} for an ongoing call. This is usually triggered by
559 * the user hitting the hold button during an active call.
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700560 */
Sailesh Nepale59bb192014-04-01 18:33:59 -0700561 void holdCall(Call call) {
562 if (!mCalls.contains(call)) {
563 Log.w(this, "Unknown call (%s) asked to be put on hold", call);
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700564 } else {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700565 Log.d(this, "Putting call on hold: (%s)", call);
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700566 call.hold();
567 }
568 }
569
570 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700571 * Instructs Telecom to release the specified call from hold. Intended to be invoked by
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700572 * the in-call app through {@link InCallAdapter} for an ongoing call. This is usually triggered
573 * by the user hitting the hold button during a held call.
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700574 */
Sailesh Nepale59bb192014-04-01 18:33:59 -0700575 void unholdCall(Call call) {
576 if (!mCalls.contains(call)) {
577 Log.w(this, "Unknown call (%s) asked to be removed from hold", call);
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700578 } else {
Santos Cordonc7e85d42014-05-22 02:51:48 -0700579 Log.d(this, "unholding call: (%s)", call);
Sai Cheemalapati45b3e3f2014-08-15 09:33:00 -0700580 for (Call c : mCalls) {
581 if (c != null && c.isAlive() && c != call) {
582 c.hold();
583 }
584 }
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700585 call.unhold();
586 }
587 }
588
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700589 /** Called by the in-call UI to change the mute state. */
590 void mute(boolean shouldMute) {
591 mCallAudioManager.mute(shouldMute);
592 }
593
594 /**
595 * Called by the in-call UI to change the audio route, for example to change from earpiece to
596 * speaker phone.
597 */
598 void setAudioRoute(int route) {
599 mCallAudioManager.setAudioRoute(route);
600 }
601
Yorke Leed1346872014-07-28 14:38:45 -0700602 /** Called by the in-call UI to turn the proximity sensor on. */
603 void turnOnProximitySensor() {
604 mProximitySensorManager.turnOn();
605 }
606
607 /**
608 * Called by the in-call UI to turn the proximity sensor off.
609 * @param screenOnImmediately If true, the screen will be turned on immediately. Otherwise,
610 * the screen will be kept off until the proximity sensor goes negative.
611 */
612 void turnOffProximitySensor(boolean screenOnImmediately) {
613 mProximitySensorManager.turnOff(screenOnImmediately);
614 }
615
Evan Charlton89176372014-07-19 18:23:09 -0700616 void phoneAccountSelected(Call call, PhoneAccountHandle account) {
Nancy Chen53ceedc2014-07-08 18:56:51 -0700617 if (!mCalls.contains(call)) {
Santos Cordonf193ba42014-09-12 06:37:39 -0700618 Log.i(this, "Attempted to add account to unknown call %s", call);
Nancy Chen53ceedc2014-07-08 18:56:51 -0700619 } else {
Santos Cordonf193ba42014-09-12 06:37:39 -0700620 // TODO: There is an odd race condition here. Since NewOutgoingCallIntentBroadcaster and
621 // the PRE_DIAL_WAIT sequence run in parallel, if the user selects an account before the
622 // NEW_OUTGOING_CALL sequence finishes, we'll start the call immediately without
623 // respecting a rewritten number or a canceled number. This is unlikely since
624 // NEW_OUTGOING_CALL sequence, in practice, runs a lot faster than the user selecting
625 // a phone account from the in-call UI.
Ihab Awadb78b2762014-07-25 15:16:23 -0700626 call.setTargetPhoneAccount(account);
Santos Cordonf193ba42014-09-12 06:37:39 -0700627
628 // Note: emergency calls never go through account selection dialog so they never
629 // arrive here.
630 if (makeRoomForOutgoingCall(call, false /* isEmergencyCall */)) {
631 call.startCreateConnection();
632 } else {
633 call.disconnect();
634 }
Nancy Chen53ceedc2014-07-08 18:56:51 -0700635 }
636 }
637
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700638 /** Called when the audio state changes. */
Ihab Awad6fb37c82014-08-07 19:48:57 -0700639 void onAudioStateChanged(AudioState oldAudioState, AudioState newAudioState) {
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700640 Log.v(this, "onAudioStateChanged, audioState: %s -> %s", oldAudioState, newAudioState);
Santos Cordona56f2762014-03-24 15:55:53 -0700641 for (CallsManagerListener listener : mListeners) {
642 listener.onAudioStateChanged(oldAudioState, newAudioState);
643 }
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700644 }
645
Sailesh Nepale59bb192014-04-01 18:33:59 -0700646 void markCallAsRinging(Call call) {
647 setCallState(call, CallState.RINGING);
Santos Cordon681663d2014-01-30 04:32:15 -0800648 }
649
Sailesh Nepale59bb192014-04-01 18:33:59 -0700650 void markCallAsDialing(Call call) {
651 setCallState(call, CallState.DIALING);
Santos Cordon681663d2014-01-30 04:32:15 -0800652 }
653
Sailesh Nepale59bb192014-04-01 18:33:59 -0700654 void markCallAsActive(Call call) {
Sailesh Nepal8c85dee2014-04-07 22:21:40 -0700655 if (call.getConnectTimeMillis() == 0) {
656 call.setConnectTimeMillis(System.currentTimeMillis());
657 }
Sailesh Nepale59bb192014-04-01 18:33:59 -0700658 setCallState(call, CallState.ACTIVE);
Sailesh Nepal84fa5f82014-04-02 11:01:11 -0700659
Sai Cheemalapatib7157e92014-06-11 17:51:55 -0700660 if (call.getStartWithSpeakerphoneOn()) {
Ihab Awad6fb37c82014-08-07 19:48:57 -0700661 setAudioRoute(AudioState.ROUTE_SPEAKER);
Sai Cheemalapatib7157e92014-06-11 17:51:55 -0700662 }
Santos Cordon681663d2014-01-30 04:32:15 -0800663 }
664
Sailesh Nepale59bb192014-04-01 18:33:59 -0700665 void markCallAsOnHold(Call call) {
666 setCallState(call, CallState.ON_HOLD);
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700667 }
668
Santos Cordon049b7b62014-01-30 05:34:26 -0800669 /**
Santos Cordonf193ba42014-09-12 06:37:39 -0700670 * Marks the specified call as STATE_DISCONNECTED and notifies the in-call app. If this was the
671 * last live call, then also disconnect from the in-call controller.
Santos Cordon049b7b62014-01-30 05:34:26 -0800672 *
Santos Cordon79ff2bc2014-03-27 15:31:27 -0700673 * @param disconnectCause The disconnect reason, see {@link android.telephony.DisconnectCause}.
Sailesh Nepal905dfba2014-07-14 08:20:41 -0700674 * @param disconnectMessage Optional message about the disconnect.
Santos Cordon049b7b62014-01-30 05:34:26 -0800675 */
Sailesh Nepale59bb192014-04-01 18:33:59 -0700676 void markCallAsDisconnected(Call call, int disconnectCause, String disconnectMessage) {
677 call.setDisconnectCause(disconnectCause, disconnectMessage);
678 setCallState(call, CallState.DISCONNECTED);
Sailesh Nepal77da19e2014-07-02 21:31:16 -0700679 removeCall(call);
Sailesh Nepal6ab6fb72014-04-01 20:03:19 -0700680 }
681
Ben Gilada0d9f752014-02-26 11:49:03 -0800682 /**
Ihab Awada02bef52014-08-13 18:18:42 -0700683 * Removes an existing disconnected call, and notifies the in-call app.
684 */
685 void markCallAsRemoved(Call call) {
686 removeCall(call);
687 }
688
689 /**
Sailesh Nepalc92c4362014-07-04 18:33:21 -0700690 * Cleans up any calls currently associated with the specified connection service when the
Sailesh Nepal905dfba2014-07-14 08:20:41 -0700691 * service binder disconnects unexpectedly.
Santos Cordon4b2c1192014-03-19 18:15:38 -0700692 *
Sailesh Nepalc92c4362014-07-04 18:33:21 -0700693 * @param service The connection service that disconnected.
Santos Cordon4b2c1192014-03-19 18:15:38 -0700694 */
Sailesh Nepalc92c4362014-07-04 18:33:21 -0700695 void handleConnectionServiceDeath(ConnectionServiceWrapper service) {
Jay Shrauneracb91eb2014-08-08 16:04:53 -0700696 if (service != null) {
Jay Shraunera82c8f72014-08-14 15:49:16 -0700697 for (Call call : mCalls) {
Jay Shrauneracb91eb2014-08-08 16:04:53 -0700698 if (call.getConnectionService() == service) {
699 markCallAsDisconnected(call, DisconnectCause.ERROR_UNSPECIFIED, null);
700 }
Santos Cordon4b2c1192014-03-19 18:15:38 -0700701 }
702 }
703 }
704
Santos Cordondeb8c892014-05-30 01:38:03 -0700705 boolean hasAnyCalls() {
706 return !mCalls.isEmpty();
707 }
708
Santos Cordonc7e85d42014-05-22 02:51:48 -0700709 boolean hasActiveOrHoldingCall() {
Santos Cordon23baed32014-06-27 14:45:39 -0700710 return getFirstCallWithState(CallState.ACTIVE, CallState.ON_HOLD) != null;
Santos Cordonc7e85d42014-05-22 02:51:48 -0700711 }
712
713 boolean hasRingingCall() {
Santos Cordon23baed32014-06-27 14:45:39 -0700714 return getFirstCallWithState(CallState.RINGING) != null;
Santos Cordonc7e85d42014-05-22 02:51:48 -0700715 }
716
Santos Cordondeb8c892014-05-30 01:38:03 -0700717 boolean onMediaButton(int type) {
718 if (hasAnyCalls()) {
719 if (HeadsetMediaButton.SHORT_PRESS == type) {
720 Call ringingCall = getFirstCallWithState(CallState.RINGING);
721 if (ringingCall == null) {
722 mCallAudioManager.toggleMute();
723 return true;
724 } else {
Andrew Lee38931d02014-07-16 10:17:36 -0700725 ringingCall.answer(ringingCall.getVideoState());
Santos Cordondeb8c892014-05-30 01:38:03 -0700726 return true;
727 }
728 } else if (HeadsetMediaButton.LONG_PRESS == type) {
729 Log.d(this, "handleHeadsetHook: longpress -> hangup");
730 Call callToHangup = getFirstCallWithState(
731 CallState.RINGING, CallState.DIALING, CallState.ACTIVE, CallState.ON_HOLD);
732 if (callToHangup != null) {
733 callToHangup.disconnect();
734 return true;
735 }
736 }
737 }
738 return false;
739 }
740
741 /**
Santos Cordon10838c22014-06-11 17:36:04 -0700742 * Checks to see if the specified call is the only high-level call and if so, enable the
743 * "Add-call" button. We allow you to add a second call but not a third or beyond.
744 *
745 * @param call The call to test for add-call.
746 * @return Whether the add-call feature should be enabled for the call.
747 */
748 protected boolean isAddCallCapable(Call call) {
749 if (call.getParentCall() != null) {
750 // Never true for child calls.
751 return false;
752 }
753
754 // Loop through all the other calls and there exists a top level (has no parent) call
755 // that is not the specified call, return false.
756 for (Call otherCall : mCalls) {
757 if (call != otherCall && otherCall.getParentCall() == null) {
758 return false;
759 }
760 }
761 return true;
762 }
763
Santos Cordonf193ba42014-09-12 06:37:39 -0700764 Call getFirstCallWithState(int... states) {
765 return getFirstCallWithState(null, states);
766 }
767
Santos Cordon10838c22014-06-11 17:36:04 -0700768 /**
Santos Cordondeb8c892014-05-30 01:38:03 -0700769 * Returns the first call that it finds with the given states. The states are treated as having
770 * priority order so that any call with the first state will be returned before any call with
771 * states listed later in the parameter list.
Santos Cordonf193ba42014-09-12 06:37:39 -0700772 *
773 * @param callToSkip Call that this method should skip while searching
Santos Cordondeb8c892014-05-30 01:38:03 -0700774 */
Santos Cordonf193ba42014-09-12 06:37:39 -0700775 Call getFirstCallWithState(Call callToSkip, int... states) {
Ihab Awad6fb37c82014-08-07 19:48:57 -0700776 for (int currentState : states) {
Santos Cordon23baed32014-06-27 14:45:39 -0700777 // check the foreground first
778 if (mForegroundCall != null && mForegroundCall.getState() == currentState) {
779 return mForegroundCall;
780 }
781
Santos Cordondeb8c892014-05-30 01:38:03 -0700782 for (Call call : mCalls) {
Santos Cordonf193ba42014-09-12 06:37:39 -0700783 if (Objects.equals(callToSkip, call)) {
784 continue;
785 }
786
787 // Only operate on top-level calls
788 if (call.getParentCall() != null) {
789 continue;
790 }
791
Santos Cordondeb8c892014-05-30 01:38:03 -0700792 if (currentState == call.getState()) {
793 return call;
794 }
795 }
796 }
797 return null;
798 }
799
Santos Cordon0fbe6322014-08-14 04:04:25 -0700800 Call createConferenceCall(
801 PhoneAccountHandle phoneAccount,
802 ParcelableConference parcelableConference) {
803 Call call = new Call(
804 mConnectionServiceRepository,
805 null /* handle */,
806 null /* gatewayInfo */,
807 null /* connectionManagerPhoneAccount */,
808 phoneAccount,
809 false /* isIncoming */,
810 true /* isConference */);
811
812 setCallState(call, Call.getStateFromConnectionState(parcelableConference.getState()));
Yorke Lee03f51282014-09-11 09:49:26 -0700813 if (call.getState() == CallState.ACTIVE) {
814 call.setConnectTimeMillis(System.currentTimeMillis());
815 }
Santos Cordon0fbe6322014-08-14 04:04:25 -0700816 call.setCallCapabilities(parcelableConference.getCapabilities());
817
818 // TODO: Move this to be a part of addCall()
819 call.addListener(this);
820 addCall(call);
821 return call;
822 }
823
Yorke Leef86db2e2014-09-12 17:56:48 -0700824 /**
825 * @return the call state currently tracked by {@link PhoneStateBroadcaster}
826 */
827 int getCallState() {
828 return mPhoneStateBroadcaster.getCallState();
829 }
Nancy Chenbc9ef172014-08-15 17:11:57 -0700830
Santos Cordon4b2c1192014-03-19 18:15:38 -0700831 /**
Ben Gilada0d9f752014-02-26 11:49:03 -0800832 * Adds the specified call to the main list of live calls.
833 *
834 * @param call The call to add.
835 */
836 private void addCall(Call call) {
Yorke Leeb701f6d2014-08-12 14:04:19 -0700837 Log.v(this, "addCall(%s)", call);
838
839 call.addListener(this);
Sailesh Nepale59bb192014-04-01 18:33:59 -0700840 mCalls.add(call);
Santos Cordon40f78c22014-04-07 02:11:42 -0700841
Santos Cordondf399862014-08-06 04:39:15 -0700842 // TODO: Update mForegroundCall prior to invoking
Santos Cordon40f78c22014-04-07 02:11:42 -0700843 // onCallAdded for calls which immediately take the foreground (like the first call).
Santos Cordona56f2762014-03-24 15:55:53 -0700844 for (CallsManagerListener listener : mListeners) {
845 listener.onCallAdded(call);
846 }
Sailesh Nepal810735e2014-03-18 18:15:46 -0700847 updateForegroundCall();
Ben Gilada0d9f752014-02-26 11:49:03 -0800848 }
849
Sailesh Nepal810735e2014-03-18 18:15:46 -0700850 private void removeCall(Call call) {
Santos Cordonc499c1c2014-04-14 17:13:14 -0700851 Log.v(this, "removeCall(%s)", call);
Sailesh Nepal4857f472014-04-07 22:26:27 -0700852
Santos Cordon672321e2014-08-21 14:38:58 -0700853 call.setParentCall(null); // need to clean up parent relationship before destroying.
Santos Cordon766d04f2014-05-06 10:28:25 -0700854 call.removeListener(this);
Sailesh Nepalc92c4362014-07-04 18:33:21 -0700855 call.clearConnectionService();
Sailesh Nepale59bb192014-04-01 18:33:59 -0700856
857 boolean shouldNotify = false;
858 if (mCalls.contains(call)) {
859 mCalls.remove(call);
860 shouldNotify = true;
Santos Cordona56f2762014-03-24 15:55:53 -0700861 }
Ben Gilada0d9f752014-02-26 11:49:03 -0800862
Sailesh Nepale59bb192014-04-01 18:33:59 -0700863 // Only broadcast changes for calls that are being tracked.
864 if (shouldNotify) {
865 for (CallsManagerListener listener : mListeners) {
866 listener.onCallRemoved(call);
867 }
868 updateForegroundCall();
Sailesh Nepal810735e2014-03-18 18:15:46 -0700869 }
870 }
Evan Charlton5c670a92014-03-06 14:58:20 -0800871
Sailesh Nepal810735e2014-03-18 18:15:46 -0700872 /**
Santos Cordon1ae2b852014-03-19 03:03:10 -0700873 * Sets the specified state on the specified call.
Sailesh Nepal810735e2014-03-18 18:15:46 -0700874 *
875 * @param call The call.
876 * @param newState The new state of the call.
877 */
Ihab Awad6fb37c82014-08-07 19:48:57 -0700878 private void setCallState(Call call, int newState) {
Jay Shrauneracb91eb2014-08-08 16:04:53 -0700879 if (call == null) {
880 return;
881 }
Ihab Awad6fb37c82014-08-07 19:48:57 -0700882 int oldState = call.getState();
Nancy Chen308ab8b2014-09-02 16:18:30 -0700883 Log.i(this, "setCallState %s -> %s, call: %s", CallState.toString(oldState),
884 CallState.toString(newState), call);
Sailesh Nepal810735e2014-03-18 18:15:46 -0700885 if (newState != oldState) {
886 // Unfortunately, in the telephony world the radio is king. So if the call notifies
887 // 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 -0700888 // sense (e.g., STATE_ACTIVE -> STATE_RINGING).
Santos Cordondf399862014-08-06 04:39:15 -0700889 // TODO: Consider putting a stop to the above and turning CallState
Sailesh Nepal810735e2014-03-18 18:15:46 -0700890 // into a well-defined state machine.
Santos Cordondf399862014-08-06 04:39:15 -0700891 // TODO: Define expected state transitions here, and log when an
Sailesh Nepal810735e2014-03-18 18:15:46 -0700892 // unexpected transition occurs.
893 call.setState(newState);
894
895 // Only broadcast state change for calls that are being tracked.
Sailesh Nepale59bb192014-04-01 18:33:59 -0700896 if (mCalls.contains(call)) {
Santos Cordona56f2762014-03-24 15:55:53 -0700897 for (CallsManagerListener listener : mListeners) {
898 listener.onCallStateChanged(call, oldState, newState);
899 }
Sailesh Nepal810735e2014-03-18 18:15:46 -0700900 updateForegroundCall();
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800901 }
902 }
903 }
904
905 /**
Sailesh Nepal810735e2014-03-18 18:15:46 -0700906 * Checks which call should be visible to the user and have audio focus.
Evan Charlton5c670a92014-03-06 14:58:20 -0800907 */
Sailesh Nepal810735e2014-03-18 18:15:46 -0700908 private void updateForegroundCall() {
909 Call newForegroundCall = null;
Sailesh Nepale59bb192014-04-01 18:33:59 -0700910 for (Call call : mCalls) {
Santos Cordondf399862014-08-06 04:39:15 -0700911 // TODO: Foreground-ness needs to be explicitly set. No call, regardless
Sailesh Nepalc92c4362014-07-04 18:33:21 -0700912 // of its state will be foreground by default and instead the connection service should
913 // be notified when its calls enter and exit foreground state. Foreground will mean that
Santos Cordon40f78c22014-04-07 02:11:42 -0700914 // the call should play audio and listen to microphone if it wants.
915
Santos Cordonf193ba42014-09-12 06:37:39 -0700916 // Only top-level calls can be in foreground
917 if (call.getParentCall() != null) {
918 continue;
919 }
920
Santos Cordon40f78c22014-04-07 02:11:42 -0700921 // Active calls have priority.
922 if (call.isActive()) {
Sailesh Nepal810735e2014-03-18 18:15:46 -0700923 newForegroundCall = call;
Evan Charlton5c670a92014-03-06 14:58:20 -0800924 break;
Sailesh Nepal810735e2014-03-18 18:15:46 -0700925 }
Santos Cordon40f78c22014-04-07 02:11:42 -0700926
927 if (call.isAlive() || call.getState() == CallState.RINGING) {
Sailesh Nepal810735e2014-03-18 18:15:46 -0700928 newForegroundCall = call;
Santos Cordon40f78c22014-04-07 02:11:42 -0700929 // Don't break in case there's an active call that has priority.
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800930 }
931 }
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800932
Sailesh Nepal810735e2014-03-18 18:15:46 -0700933 if (newForegroundCall != mForegroundCall) {
Santos Cordon40f78c22014-04-07 02:11:42 -0700934 Log.v(this, "Updating foreground call, %s -> %s.", mForegroundCall, newForegroundCall);
Sailesh Nepal810735e2014-03-18 18:15:46 -0700935 Call oldForegroundCall = mForegroundCall;
936 mForegroundCall = newForegroundCall;
937
Santos Cordona56f2762014-03-24 15:55:53 -0700938 for (CallsManagerListener listener : mListeners) {
939 listener.onForegroundCallChanged(oldForegroundCall, mForegroundCall);
940 }
Santos Cordon681663d2014-01-30 04:32:15 -0800941 }
942 }
Yorke Leeb701f6d2014-08-12 14:04:19 -0700943
944 private boolean isPotentialMMICode(Uri handle) {
945 return (handle != null && handle.getSchemeSpecificPart() != null
946 && handle.getSchemeSpecificPart().contains("#"));
947 }
Santos Cordonf193ba42014-09-12 06:37:39 -0700948
949 private int getNumCallsWithState(int... states) {
950 int count = 0;
951 for (int state : states) {
952 for (Call call : mCalls) {
953 if (call.getState() == state) {
954 count++;
955 }
956 }
957 }
958 return count;
959 }
960
961 private boolean hasMaximumLiveCalls() {
962 return MAXIMUM_LIVE_CALLS <= getNumCallsWithState(LIVE_CALL_STATES);
963 }
964
965 private boolean hasMaximumHoldingCalls() {
966 return MAXIMUM_HOLD_CALLS <= getNumCallsWithState(CallState.ON_HOLD);
967 }
968
969 private boolean hasMaximumRingingCalls() {
970 return MAXIMUM_RINGING_CALLS <= getNumCallsWithState(CallState.RINGING);
971 }
972
973 private boolean hasMaximumOutgoingCalls() {
974 return MAXIMUM_OUTGOING_CALLS <= getNumCallsWithState(OUTGOING_CALL_STATES);
975 }
976
977 private boolean makeRoomForOutgoingCall(Call call, boolean isEmergency) {
978 if (hasMaximumLiveCalls()) {
979 // NOTE: If the amount of live calls changes beyond 1, this logic will probably
980 // have to change.
981 Call liveCall = getFirstCallWithState(call, LIVE_CALL_STATES);
982
983 if (hasMaximumHoldingCalls()) {
984 // There is no more room for any more calls, unless it's an emergency.
985 if (isEmergency) {
986 // Kill the current active call, this is easier then trying to disconnect a
987 // holding call and hold an active call.
988 liveCall.disconnect();
989 return true;
990 }
991 return false; // No more room!
992 }
993
994 // We have room for at least one more holding call at this point.
995
996 // First thing, if we are trying to make a call with the same phone account as the live
997 // call, then allow it so that the connection service can make its own decision about
998 // how to handle the new call relative to the current one.
999 if (Objects.equals(liveCall.getTargetPhoneAccount(), call.getTargetPhoneAccount())) {
1000 return true;
1001 } else if (call.getTargetPhoneAccount() == null) {
1002 // Without a phone account, we can't say reliably that the call will fail.
1003 // If the user chooses the same phone account as the live call, then it's
1004 // still possible that the call can be made (like with CDMA calls not supporting
1005 // hold but they still support adding a call by going immediately into conference
1006 // mode). Return true here and we'll run this code again after user chooses an
1007 // account.
1008 return true;
1009 }
1010
1011 // Try to hold the live call before attempting the new outgoing call.
1012 if (liveCall.can(PhoneCapabilities.HOLD)) {
1013 liveCall.hold();
1014 return true;
1015 }
1016
1017 // The live call cannot be held so we're out of luck here. There's no room.
1018 return false;
1019 }
1020 return true;
1021 }
Ben Gilad9f2bed32013-12-12 17:43:26 -08001022}