blob: 82a5a8196e26b398b807e4735d184e34bb16184e [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
Tyler Gunn91d43cf2014-09-17 12:19:39 -070019import android.content.Context;
Sailesh Nepalce704b92014-03-17 18:31:43 -070020import android.net.Uri;
Evan Charltona05805b2014-03-05 08:21:46 -080021import android.os.Bundle;
Santos Cordoncf5b2912014-11-05 21:57:54 -080022import android.os.Handler;
Ihab Awadd1d63e12015-03-26 10:33:44 -070023import android.os.Looper;
Rekha Kumar032f8e42015-04-01 21:45:57 -070024import android.os.SystemProperties;
Yorke Leee4a9c412014-11-14 16:59:42 -080025import android.os.Trace;
Santos Cordonf193ba42014-09-12 06:37:39 -070026import android.provider.CallLog.Calls;
Tyler Gunn7cc70b42014-09-12 22:17:27 -070027import android.telecom.AudioState;
28import android.telecom.CallState;
Tyler Gunnd92e7372015-01-09 15:59:45 -080029import android.telecom.Conference;
Ihab Awad07bc5ee2014-11-12 13:42:52 -080030import android.telecom.Connection;
Andrew Lee701dc002014-09-11 21:29:12 -070031import android.telecom.DisconnectCause;
Tyler Gunn7cc70b42014-09-12 22:17:27 -070032import android.telecom.GatewayInfo;
33import android.telecom.ParcelableConference;
Tyler Gunn6e2b94e2014-10-30 11:05:22 -070034import android.telecom.ParcelableConnection;
Tyler Gunn5b452df2014-10-01 15:02:58 -070035import android.telecom.PhoneAccount;
Tyler Gunn7cc70b42014-09-12 22:17:27 -070036import android.telecom.PhoneAccountHandle;
Tyler Gunn5b452df2014-10-01 15:02:58 -070037import android.telecom.TelecomManager;
Andrew Lee45506232014-10-22 17:54:33 -070038import android.telecom.VideoProfile;
Nancy Chena469f762014-12-09 18:29:20 -080039import android.telephony.PhoneNumberUtils;
Sailesh Nepal8aa6a002014-09-12 10:52:49 -070040import android.telephony.TelephonyManager;
Santos Cordon8e8b8d22013-12-19 14:14:05 -080041
Ihab Awada3653902015-01-23 13:44:46 -080042import com.android.internal.annotations.VisibleForTesting;
Rekha Kumar032f8e42015-04-01 21:45:57 -070043import com.android.internal.telephony.PhoneConstants;
44import com.android.internal.telephony.TelephonyProperties;
Tyler Gunn91d43cf2014-09-17 12:19:39 -070045import com.android.internal.util.IndentingPrintWriter;
Yorke Leee4a9c412014-11-14 16:59:42 -080046
Santos Cordon4bc02452014-11-19 15:51:12 -080047import java.util.Collection;
Jay Shraunera82c8f72014-08-14 15:49:16 -070048import java.util.Collections;
Ihab Awad5b281322014-09-25 18:25:29 -070049import java.util.HashSet;
Santos Cordon7cdb9092014-07-24 21:33:33 -070050import java.util.List;
Santos Cordonf193ba42014-09-12 06:37:39 -070051import java.util.Objects;
Santos Cordona56f2762014-03-24 15:55:53 -070052import java.util.Set;
Jay Shraunera82c8f72014-08-14 15:49:16 -070053import java.util.concurrent.ConcurrentHashMap;
Ben Gilad9f2bed32013-12-12 17:43:26 -080054
Ben Giladdd8c6082013-12-30 14:44:08 -080055/**
56 * Singleton.
57 *
Jay Shrauneracb91eb2014-08-08 16:04:53 -070058 * NOTE: by design most APIs are package private, use the relevant adapter/s to allow
Ben Giladdd8c6082013-12-30 14:44:08 -080059 * access from other packages specifically refraining from passing the CallsManager instance
Tyler Gunn7cc70b42014-09-12 22:17:27 -070060 * beyond the com.android.server.telecom package boundary.
Ben Giladdd8c6082013-12-30 14:44:08 -080061 */
Ihab Awadb63b57e2015-03-22 22:12:28 -070062@VisibleForTesting
63public class CallsManager extends Call.ListenerBase {
Ben Gilada0d9f752014-02-26 11:49:03 -080064
Santos Cordondf399862014-08-06 04:39:15 -070065 // TODO: Consider renaming this CallsManagerPlugin.
Sailesh Nepal810735e2014-03-18 18:15:46 -070066 interface CallsManagerListener {
67 void onCallAdded(Call call);
68 void onCallRemoved(Call call);
Ihab Awad6fb37c82014-08-07 19:48:57 -070069 void onCallStateChanged(Call call, int oldState, int newState);
Sailesh Nepalc92c4362014-07-04 18:33:21 -070070 void onConnectionServiceChanged(
Sailesh Nepal8c85dee2014-04-07 22:21:40 -070071 Call call,
Sailesh Nepalc92c4362014-07-04 18:33:21 -070072 ConnectionServiceWrapper oldService,
73 ConnectionServiceWrapper newService);
Sailesh Nepal810735e2014-03-18 18:15:46 -070074 void onIncomingCallAnswered(Call call);
Ihab Awadff7493a2014-06-10 13:47:44 -070075 void onIncomingCallRejected(Call call, boolean rejectWithMessage, String textMessage);
Sailesh Nepal810735e2014-03-18 18:15:46 -070076 void onForegroundCallChanged(Call oldForegroundCall, Call newForegroundCall);
Ihab Awad6fb37c82014-08-07 19:48:57 -070077 void onAudioStateChanged(AudioState oldAudioState, AudioState newAudioState);
Andrew Lee5be64bc2014-09-08 18:35:15 -070078 void onRingbackRequested(Call call, boolean ringback);
Santos Cordona1610702014-06-04 20:22:56 -070079 void onIsConferencedChanged(Call call);
Andrew Lee5be64bc2014-09-08 18:35:15 -070080 void onIsVoipAudioModeChanged(Call call);
Andrew Lee4a796602014-07-11 17:23:03 -070081 void onVideoStateChanged(Call call);
Santos Cordon91bd74c2014-11-07 16:10:22 -080082 void onCanAddCallChanged(boolean canAddCall);
Rekha Kumar032f8e42015-04-01 21:45:57 -070083 void onCallSubstateChanged(Call call);
Sailesh Nepal810735e2014-03-18 18:15:46 -070084 }
85
Tyler Gunn91d43cf2014-09-17 12:19:39 -070086 private static final String TAG = "CallsManager";
Ben Gilad9f2bed32013-12-12 17:43:26 -080087
Santos Cordonf193ba42014-09-12 06:37:39 -070088 private static final int MAXIMUM_LIVE_CALLS = 1;
89 private static final int MAXIMUM_HOLD_CALLS = 1;
90 private static final int MAXIMUM_RINGING_CALLS = 1;
91 private static final int MAXIMUM_OUTGOING_CALLS = 1;
Santos Cordon91bd74c2014-11-07 16:10:22 -080092 private static final int MAXIMUM_TOP_LEVEL_CALLS = 2;
Santos Cordonf193ba42014-09-12 06:37:39 -070093
94 private static final int[] OUTGOING_CALL_STATES =
95 {CallState.CONNECTING, CallState.PRE_DIAL_WAIT, CallState.DIALING};
96
Santos Cordon91bd74c2014-11-07 16:10:22 -080097 private static final int[] LIVE_CALL_STATES =
98 {CallState.CONNECTING, CallState.PRE_DIAL_WAIT, CallState.DIALING, CallState.ACTIVE};
99
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800100 /**
Sailesh Nepale59bb192014-04-01 18:33:59 -0700101 * The main call repository. Keeps an instance of all live calls. New incoming and outgoing
102 * calls are added to the map and removed when the calls move to the disconnected state.
Santos Cordoncf5b2912014-11-05 21:57:54 -0800103 *
Jay Shraunera82c8f72014-08-14 15:49:16 -0700104 * ConcurrentHashMap constructor params: 8 is initial table size, 0.9f is
105 * load factor before resizing, 1 means we only expect a single thread to
106 * access the map so make only a single shard
Santos Cordon681663d2014-01-30 04:32:15 -0800107 */
Jay Shraunera82c8f72014-08-14 15:49:16 -0700108 private final Set<Call> mCalls = Collections.newSetFromMap(
109 new ConcurrentHashMap<Call, Boolean>(8, 0.9f, 1));
Santos Cordon681663d2014-01-30 04:32:15 -0800110
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700111 private final ConnectionServiceRepository mConnectionServiceRepository;
112 private final DtmfLocalTonePlayer mDtmfLocalTonePlayer;
113 private final InCallController mInCallController;
Santos Cordonf3671a62014-05-29 21:51:53 -0700114 private final CallAudioManager mCallAudioManager;
Ihab Awad8de76912015-02-17 12:25:52 -0800115 private RespondViaSmsManager mRespondViaSmsManager;
Santos Cordonf3671a62014-05-29 21:51:53 -0700116 private final Ringer mRinger;
Santos Cordon61e6f352014-12-03 02:53:34 -0800117 private final InCallWakeLockController mInCallWakeLockController;
Jay Shraunera82c8f72014-08-14 15:49:16 -0700118 // For this set initial table size to 16 because we add 13 listeners in
119 // the CallsManager constructor.
120 private final Set<CallsManagerListener> mListeners = Collections.newSetFromMap(
121 new ConcurrentHashMap<CallsManagerListener, Boolean>(16, 0.9f, 1));
Santos Cordondeb8c892014-05-30 01:38:03 -0700122 private final HeadsetMediaButton mHeadsetMediaButton;
Sailesh Nepalb88795a2014-07-15 14:53:27 -0700123 private final WiredHeadsetManager mWiredHeadsetManager;
124 private final TtyManager mTtyManager;
Yorke Leed1346872014-07-28 14:38:45 -0700125 private final ProximitySensorManager mProximitySensorManager;
Yorke Leef86db2e2014-09-12 17:56:48 -0700126 private final PhoneStateBroadcaster mPhoneStateBroadcaster;
Santos Cordonf193ba42014-09-12 06:37:39 -0700127 private final CallLogManager mCallLogManager;
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700128 private final Context mContext;
Ihab Awad8d5d9dd2015-03-12 11:11:06 -0700129 private final TelecomSystem.SyncRoot mLock;
130 private final ContactsAsyncHelper mContactsAsyncHelper;
Ihab Awadabcbce42015-04-07 14:04:01 -0700131 private final CallerInfoAsyncQueryFactory mCallerInfoAsyncQueryFactory;
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700132 private final PhoneAccountRegistrar mPhoneAccountRegistrar;
133 private final MissedCallNotifier mMissedCallNotifier;
Ihab Awad5b281322014-09-25 18:25:29 -0700134 private final Set<Call> mLocallyDisconnectingCalls = new HashSet<>();
Santos Cordoncf5b2912014-11-05 21:57:54 -0800135 private final Set<Call> mPendingCallsToDisconnect = new HashSet<>();
136 /* Handler tied to thread in which CallManager was initialized. */
Ihab Awadd1d63e12015-03-26 10:33:44 -0700137 private final Handler mHandler = new Handler(Looper.getMainLooper());
Sailesh Nepal84fa5f82014-04-02 11:01:11 -0700138
Santos Cordon91bd74c2014-11-07 16:10:22 -0800139 private boolean mCanAddCall = true;
140
Sailesh Nepal84fa5f82014-04-02 11:01:11 -0700141 /**
Sailesh Nepal810735e2014-03-18 18:15:46 -0700142 * The call the user is currently interacting with. This is the call that should have audio
143 * focus and be visible in the in-call UI.
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800144 */
Sailesh Nepal810735e2014-03-18 18:15:46 -0700145 private Call mForegroundCall;
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800146
Nancy Chena469f762014-12-09 18:29:20 -0800147 private Runnable mStopTone;
148
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700149 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700150 * Initializes the required Telecom components.
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800151 */
Ihab Awad8d5d9dd2015-03-12 11:11:06 -0700152 CallsManager(
153 Context context,
154 TelecomSystem.SyncRoot lock,
155 ContactsAsyncHelper contactsAsyncHelper,
Ihab Awadabcbce42015-04-07 14:04:01 -0700156 CallerInfoAsyncQueryFactory callerInfoAsyncQueryFactory,
Ihab Awad8d5d9dd2015-03-12 11:11:06 -0700157 MissedCallNotifier missedCallNotifier,
158 PhoneAccountRegistrar phoneAccountRegistrar,
159 HeadsetMediaButtonFactory headsetMediaButtonFactory,
160 ProximitySensorManagerFactory proximitySensorManagerFactory,
161 InCallWakeLockControllerFactory inCallWakeLockControllerFactory) {
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700162 mContext = context;
Ihab Awad8d5d9dd2015-03-12 11:11:06 -0700163 mLock = lock;
164 mContactsAsyncHelper = contactsAsyncHelper;
Ihab Awadabcbce42015-04-07 14:04:01 -0700165 mCallerInfoAsyncQueryFactory = callerInfoAsyncQueryFactory;
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700166 mPhoneAccountRegistrar = phoneAccountRegistrar;
167 mMissedCallNotifier = missedCallNotifier;
168 StatusBarNotifier statusBarNotifier = new StatusBarNotifier(context, this);
169 mWiredHeadsetManager = new WiredHeadsetManager(context);
Ihab Awad8de76912015-02-17 12:25:52 -0800170 mCallAudioManager = new CallAudioManager(
171 context, statusBarNotifier, mWiredHeadsetManager, this);
Ihab Awadabcbce42015-04-07 14:04:01 -0700172 InCallTonePlayer.Factory playerFactory =
173 new InCallTonePlayer.Factory(mCallAudioManager, lock);
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700174 mRinger = new Ringer(mCallAudioManager, this, playerFactory, context);
Ihab Awad8de76912015-02-17 12:25:52 -0800175 mHeadsetMediaButton = headsetMediaButtonFactory.create(context, this);
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700176 mTtyManager = new TtyManager(context, mWiredHeadsetManager);
Ihab Awad8de76912015-02-17 12:25:52 -0800177 mProximitySensorManager = proximitySensorManagerFactory.create(context, this);
178 mPhoneStateBroadcaster = new PhoneStateBroadcaster(this);
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700179 mCallLogManager = new CallLogManager(context);
Ihab Awad8d5d9dd2015-03-12 11:11:06 -0700180 mInCallController = new InCallController(context, mLock, this);
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700181 mDtmfLocalTonePlayer = new DtmfLocalTonePlayer(context);
Ihab Awad8de76912015-02-17 12:25:52 -0800182 mConnectionServiceRepository =
Ihab Awad8d5d9dd2015-03-12 11:11:06 -0700183 new ConnectionServiceRepository(mPhoneAccountRegistrar, mContext, mLock, this);
Ihab Awad8de76912015-02-17 12:25:52 -0800184 mInCallWakeLockController = inCallWakeLockControllerFactory.create(context, this);
Santos Cordonae193062014-05-21 21:21:49 -0700185
Santos Cordondeb8c892014-05-30 01:38:03 -0700186 mListeners.add(statusBarNotifier);
Santos Cordonf193ba42014-09-12 06:37:39 -0700187 mListeners.add(mCallLogManager);
Yorke Leef86db2e2014-09-12 17:56:48 -0700188 mListeners.add(mPhoneStateBroadcaster);
Santos Cordonf3671a62014-05-29 21:51:53 -0700189 mListeners.add(mInCallController);
Santos Cordonae193062014-05-21 21:21:49 -0700190 mListeners.add(mRinger);
Santos Cordonc7b8eba2014-04-01 15:26:28 -0700191 mListeners.add(new RingbackPlayer(this, playerFactory));
192 mListeners.add(new InCallToneMonitor(playerFactory, this));
Santos Cordona56f2762014-03-24 15:55:53 -0700193 mListeners.add(mCallAudioManager);
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700194 mListeners.add(missedCallNotifier);
Santos Cordon92a2d812014-04-30 15:19:01 -0700195 mListeners.add(mDtmfLocalTonePlayer);
Santos Cordon81289982014-06-03 16:03:08 -0700196 mListeners.add(mHeadsetMediaButton);
Yorke Leed1346872014-07-28 14:38:45 -0700197 mListeners.add(mProximitySensorManager);
Ihab Awad8d5d9dd2015-03-12 11:11:06 -0700198
Ihab Awadabcbce42015-04-07 14:04:01 -0700199 mMissedCallNotifier.updateOnStartup(
200 mLock, this, mContactsAsyncHelper, mCallerInfoAsyncQueryFactory);
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800201 }
202
Ihab Awad8de76912015-02-17 12:25:52 -0800203 public void setRespondViaSmsManager(RespondViaSmsManager respondViaSmsManager) {
204 if (mRespondViaSmsManager != null) {
205 mListeners.remove(mRespondViaSmsManager);
206 }
207 mRespondViaSmsManager = respondViaSmsManager;
208 mListeners.add(respondViaSmsManager);
209 }
210
211 public RespondViaSmsManager getRespondViaSmsManager() {
212 return mRespondViaSmsManager;
213 }
214
Santos Cordon766d04f2014-05-06 10:28:25 -0700215 @Override
Ihab Awad6fb37c82014-08-07 19:48:57 -0700216 public void onSuccessfulOutgoingCall(Call call, int callState) {
Santos Cordon766d04f2014-05-06 10:28:25 -0700217 Log.v(this, "onSuccessfulOutgoingCall, %s", call);
Yorke Leeb701f6d2014-08-12 14:04:19 -0700218
Tyler Gunncde2e502014-08-12 14:35:58 -0700219 setCallState(call, callState);
Yorke Leeb701f6d2014-08-12 14:04:19 -0700220 if (!mCalls.contains(call)) {
221 // Call was not added previously in startOutgoingCall due to it being a potential MMI
222 // code, so add it now.
223 addCall(call);
224 }
225
226 // The call's ConnectionService has been updated.
227 for (CallsManagerListener listener : mListeners) {
228 listener.onConnectionServiceChanged(call, null, call.getConnectionService());
Santos Cordon766d04f2014-05-06 10:28:25 -0700229 }
Santos Cordon6cb7ba92014-05-23 14:09:32 -0700230
231 markCallAsDialing(call);
Santos Cordon766d04f2014-05-06 10:28:25 -0700232 }
233
234 @Override
Andrew Lee701dc002014-09-11 21:29:12 -0700235 public void onFailedOutgoingCall(Call call, DisconnectCause disconnectCause) {
Sailesh Nepal5a73b032014-06-25 15:53:21 -0700236 Log.v(this, "onFailedOutgoingCall, call: %s", call);
Yorke Leeb701f6d2014-08-12 14:04:19 -0700237
Andrew Leee6288a72014-10-01 13:50:02 -0700238 markCallAsRemoved(call);
Sailesh Nepal5a73b032014-06-25 15:53:21 -0700239 }
240
241 @Override
Santos Cordonf193ba42014-09-12 06:37:39 -0700242 public void onSuccessfulIncomingCall(Call incomingCall) {
Santos Cordon766d04f2014-05-06 10:28:25 -0700243 Log.d(this, "onSuccessfulIncomingCall");
Santos Cordonf193ba42014-09-12 06:37:39 -0700244 setCallState(incomingCall, CallState.RINGING);
245
246 if (hasMaximumRingingCalls()) {
247 incomingCall.reject(false, null);
248 // since the call was not added to the list of calls, we have to call the missed
249 // call notifier and the call logger manually.
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700250 mMissedCallNotifier.showMissedCallNotification(incomingCall);
Santos Cordonf193ba42014-09-12 06:37:39 -0700251 mCallLogManager.logCall(incomingCall, Calls.MISSED_TYPE);
252 } else {
253 addCall(incomingCall);
254 }
Santos Cordon766d04f2014-05-06 10:28:25 -0700255 }
256
257 @Override
258 public void onFailedIncomingCall(Call call) {
Tyler Gunncde2e502014-08-12 14:35:58 -0700259 setCallState(call, CallState.DISCONNECTED);
Santos Cordon766d04f2014-05-06 10:28:25 -0700260 call.removeListener(this);
Ben Gilada0d9f752014-02-26 11:49:03 -0800261 }
262
Ihab Awadcb387ac2014-05-28 16:49:38 -0700263 @Override
Yorke Lee9250e5f2014-10-01 13:39:09 -0700264 public void onSuccessfulUnknownCall(Call call, int callState) {
265 setCallState(call, callState);
266 Log.i(this, "onSuccessfulUnknownCall for call %s", call);
267 addCall(call);
268 }
269
270 @Override
271 public void onFailedUnknownCall(Call call) {
272 Log.i(this, "onFailedUnknownCall for call %s", call);
273 setCallState(call, CallState.DISCONNECTED);
274 call.removeListener(this);
275 }
276
277 @Override
Andrew Lee5be64bc2014-09-08 18:35:15 -0700278 public void onRingbackRequested(Call call, boolean ringback) {
Ihab Awadcb387ac2014-05-28 16:49:38 -0700279 for (CallsManagerListener listener : mListeners) {
Andrew Lee5be64bc2014-09-08 18:35:15 -0700280 listener.onRingbackRequested(call, ringback);
Ihab Awadcb387ac2014-05-28 16:49:38 -0700281 }
282 }
283
Evan Charlton352105c2014-06-03 14:10:54 -0700284 @Override
285 public void onPostDialWait(Call call, String remaining) {
286 mInCallController.onPostDialWait(call, remaining);
287 }
288
Santos Cordona1610702014-06-04 20:22:56 -0700289 @Override
Nancy Chena469f762014-12-09 18:29:20 -0800290 public void onPostDialChar(final Call call, char nextChar) {
291 if (PhoneNumberUtils.is12Key(nextChar)) {
292 // Play tone if it is one of the dialpad digits, canceling out the previously queued
293 // up stopTone runnable since playing a new tone automatically stops the previous tone.
294 if (mStopTone != null) {
295 mHandler.removeCallbacks(mStopTone);
296 }
297
298 mDtmfLocalTonePlayer.playTone(call, nextChar);
299
Ihab Awad8d5d9dd2015-03-12 11:11:06 -0700300 // TODO: Create a LockedRunnable class that does the synchronization automatically.
Nancy Chena469f762014-12-09 18:29:20 -0800301 mStopTone = new Runnable() {
302 @Override
303 public void run() {
Ihab Awad8d5d9dd2015-03-12 11:11:06 -0700304 synchronized (mLock) {
305 // Set a timeout to stop the tone in case there isn't another tone to follow.
306 mDtmfLocalTonePlayer.stopTone(call);
307 }
Nancy Chena469f762014-12-09 18:29:20 -0800308 }
309 };
310 mHandler.postDelayed(
311 mStopTone,
312 Timeouts.getDelayBetweenDtmfTonesMillis(mContext.getContentResolver()));
313 } else if (nextChar == 0 || nextChar == TelecomManager.DTMF_CHARACTER_WAIT ||
314 nextChar == TelecomManager.DTMF_CHARACTER_PAUSE) {
315 // Stop the tone if a tone is playing, removing any other stopTone callbacks since
316 // the previous tone is being stopped anyway.
317 if (mStopTone != null) {
318 mHandler.removeCallbacks(mStopTone);
319 }
320 mDtmfLocalTonePlayer.stopTone(call);
321 } else {
322 Log.w(this, "onPostDialChar: invalid value %d", nextChar);
323 }
324 }
325
326 @Override
Santos Cordona1610702014-06-04 20:22:56 -0700327 public void onParentChanged(Call call) {
Santos Cordon66fe8822014-10-10 16:10:58 -0700328 // parent-child relationship affects which call should be foreground, so do an update.
Santos Cordon91bd74c2014-11-07 16:10:22 -0800329 updateCallsManagerState();
Santos Cordona1610702014-06-04 20:22:56 -0700330 for (CallsManagerListener listener : mListeners) {
331 listener.onIsConferencedChanged(call);
332 }
333 }
334
335 @Override
336 public void onChildrenChanged(Call call) {
Santos Cordon66fe8822014-10-10 16:10:58 -0700337 // parent-child relationship affects which call should be foreground, so do an update.
Santos Cordon91bd74c2014-11-07 16:10:22 -0800338 updateCallsManagerState();
Santos Cordona1610702014-06-04 20:22:56 -0700339 for (CallsManagerListener listener : mListeners) {
340 listener.onIsConferencedChanged(call);
341 }
342 }
343
Ihab Awadff7493a2014-06-10 13:47:44 -0700344 @Override
Andrew Lee5be64bc2014-09-08 18:35:15 -0700345 public void onIsVoipAudioModeChanged(Call call) {
Sailesh Nepal7e669572014-07-08 21:29:12 -0700346 for (CallsManagerListener listener : mListeners) {
Andrew Lee5be64bc2014-09-08 18:35:15 -0700347 listener.onIsVoipAudioModeChanged(call);
Sailesh Nepal7e669572014-07-08 21:29:12 -0700348 }
349 }
350
Andrew Lee4a796602014-07-11 17:23:03 -0700351 @Override
352 public void onVideoStateChanged(Call call) {
353 for (CallsManagerListener listener : mListeners) {
354 listener.onVideoStateChanged(call);
355 }
356 }
357
Santos Cordoncf5b2912014-11-05 21:57:54 -0800358 @Override
359 public boolean onCanceledViaNewOutgoingCallBroadcast(final Call call) {
360 mPendingCallsToDisconnect.add(call);
361 mHandler.postDelayed(new Runnable() {
362 @Override
363 public void run() {
Ihab Awad8d5d9dd2015-03-12 11:11:06 -0700364 synchronized (mLock) {
365 if (mPendingCallsToDisconnect.remove(call)) {
366 Log.i(this, "Delayed disconnection of call: %s", call);
367 call.disconnect();
368 }
Santos Cordoncf5b2912014-11-05 21:57:54 -0800369 }
370 }
371 }, Timeouts.getNewOutgoingCallCancelMillis(mContext.getContentResolver()));
372
373 return true;
374 }
375
Santos Cordon4bc02452014-11-19 15:51:12 -0800376 Collection<Call> getCalls() {
377 return Collections.unmodifiableCollection(mCalls);
Sailesh Nepal810735e2014-03-18 18:15:46 -0700378 }
379
Rekha Kumar032f8e42015-04-01 21:45:57 -0700380 public void onCallSubstateChanged(Call call) {
381 for (CallsManagerListener listener : mListeners) {
382 listener.onCallSubstateChanged(call);
383 }
384 }
385
Sailesh Nepal810735e2014-03-18 18:15:46 -0700386 Call getForegroundCall() {
387 return mForegroundCall;
388 }
389
Santos Cordonae193062014-05-21 21:21:49 -0700390 Ringer getRinger() {
391 return mRinger;
392 }
393
Santos Cordonf3671a62014-05-29 21:51:53 -0700394 InCallController getInCallController() {
395 return mInCallController;
396 }
397
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700398 boolean hasEmergencyCall() {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700399 for (Call call : mCalls) {
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700400 if (call.isEmergencyCall()) {
401 return true;
402 }
403 }
404 return false;
405 }
406
Andrew Lee45506232014-10-22 17:54:33 -0700407 boolean hasVideoCall() {
408 for (Call call : mCalls) {
409 if (call.getVideoState() != VideoProfile.VideoState.AUDIO_ONLY) {
410 return true;
411 }
412 }
413 return false;
414 }
415
Ihab Awad6fb37c82014-08-07 19:48:57 -0700416 AudioState getAudioState() {
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700417 return mCallAudioManager.getAudioState();
418 }
419
Sailesh Nepalb88795a2014-07-15 14:53:27 -0700420 boolean isTtySupported() {
421 return mTtyManager.isTtySupported();
422 }
423
424 int getCurrentTtyMode() {
425 return mTtyManager.getCurrentTtyMode();
426 }
427
Santos Cordon68d1a6b2014-09-19 12:25:58 -0700428 void addListener(CallsManagerListener listener) {
429 mListeners.add(listener);
430 }
431
432 void removeListener(CallsManagerListener listener) {
433 mListeners.remove(listener);
434 }
435
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800436 /**
Sailesh Nepal664837f2014-07-14 16:31:51 -0700437 * Starts the process to attach the call to a connection service.
Santos Cordon80d9bdc2014-02-13 18:28:46 -0800438 *
Nancy Chenbc9ef172014-08-15 17:11:57 -0700439 * @param phoneAccountHandle The phone account which contains the component name of the
440 * connection service to use for this call.
Evan Charltona05805b2014-03-05 08:21:46 -0800441 * @param extras The optional extras Bundle passed with the intent used for the incoming call.
Santos Cordon80d9bdc2014-02-13 18:28:46 -0800442 */
Evan Charlton89176372014-07-19 18:23:09 -0700443 void processIncomingCallIntent(PhoneAccountHandle phoneAccountHandle, Bundle extras) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800444 Log.d(this, "processIncomingCallIntent");
Sailesh Nepal8aa6a002014-09-12 10:52:49 -0700445 Uri handle = extras.getParcelable(TelephonyManager.EXTRA_INCOMING_NUMBER);
Sailesh Nepal905dfba2014-07-14 08:20:41 -0700446 Call call = new Call(
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700447 mContext,
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800448 this,
Ihab Awadd1d63e12015-03-26 10:33:44 -0700449 mLock,
Sailesh Nepal664837f2014-07-14 16:31:51 -0700450 mConnectionServiceRepository,
Ihab Awad8d5d9dd2015-03-12 11:11:06 -0700451 mContactsAsyncHelper,
Ihab Awadabcbce42015-04-07 14:04:01 -0700452 mCallerInfoAsyncQueryFactory,
Sailesh Nepal8aa6a002014-09-12 10:52:49 -0700453 handle,
Sailesh Nepal664837f2014-07-14 16:31:51 -0700454 null /* gatewayInfo */,
Ihab Awadb78b2762014-07-25 15:16:23 -0700455 null /* connectionManagerPhoneAccount */,
Evan Charlton89176372014-07-19 18:23:09 -0700456 phoneAccountHandle,
Sailesh Nepal664837f2014-07-14 16:31:51 -0700457 true /* isIncoming */,
458 false /* isConference */);
459
Sailesh Nepal905dfba2014-07-14 08:20:41 -0700460 call.setExtras(extras);
Santos Cordondf399862014-08-06 04:39:15 -0700461 // TODO: Move this to be a part of addCall()
Santos Cordon766d04f2014-05-06 10:28:25 -0700462 call.addListener(this);
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700463 call.startCreateConnection(mPhoneAccountRegistrar);
Ben Gilada0d9f752014-02-26 11:49:03 -0800464 }
465
Yorke Lee9250e5f2014-10-01 13:39:09 -0700466 void addNewUnknownCall(PhoneAccountHandle phoneAccountHandle, Bundle extras) {
467 Uri handle = extras.getParcelable(TelecomManager.EXTRA_UNKNOWN_CALL_HANDLE);
468 Log.i(this, "addNewUnknownCall with handle: %s", Log.pii(handle));
469 Call call = new Call(
470 mContext,
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800471 this,
Ihab Awadd1d63e12015-03-26 10:33:44 -0700472 mLock,
Yorke Lee9250e5f2014-10-01 13:39:09 -0700473 mConnectionServiceRepository,
Ihab Awad8d5d9dd2015-03-12 11:11:06 -0700474 mContactsAsyncHelper,
Ihab Awadabcbce42015-04-07 14:04:01 -0700475 mCallerInfoAsyncQueryFactory,
Yorke Lee9250e5f2014-10-01 13:39:09 -0700476 handle,
477 null /* gatewayInfo */,
478 null /* connectionManagerPhoneAccount */,
479 phoneAccountHandle,
480 // Use onCreateIncomingConnection in TelephonyConnectionService, so that we attach
481 // to the existing connection instead of trying to create a new one.
482 true /* isIncoming */,
483 false /* isConference */);
Yorke Lee9250e5f2014-10-01 13:39:09 -0700484 call.setIsUnknown(true);
485 call.setExtras(extras);
486 call.addListener(this);
487 call.startCreateConnection(mPhoneAccountRegistrar);
488 }
489
Santos Cordoncf5b2912014-11-05 21:57:54 -0800490 private Call getNewOutgoingCall(Uri handle) {
491 // First check to see if we can reuse any of the calls that are waiting to disconnect.
492 // See {@link Call#abort} and {@link #onCanceledViaNewOutgoingCall} for more information.
Yorke Lee59979512014-12-02 01:03:40 -0800493 Call reusedCall = null;
Santos Cordoncf5b2912014-11-05 21:57:54 -0800494 for (Call pendingCall : mPendingCallsToDisconnect) {
Yorke Lee59979512014-12-02 01:03:40 -0800495 if (reusedCall == null && Objects.equals(pendingCall.getHandle(), handle)) {
Santos Cordoncf5b2912014-11-05 21:57:54 -0800496 mPendingCallsToDisconnect.remove(pendingCall);
497 Log.i(this, "Reusing disconnected call %s", pendingCall);
Yorke Lee59979512014-12-02 01:03:40 -0800498 reusedCall = pendingCall;
499 } else {
500 pendingCall.disconnect();
Santos Cordoncf5b2912014-11-05 21:57:54 -0800501 }
502 }
Yorke Lee59979512014-12-02 01:03:40 -0800503 if (reusedCall != null) {
504 return reusedCall;
505 }
Santos Cordoncf5b2912014-11-05 21:57:54 -0800506
507 // Create a call with original handle. The handle may be changed when the call is attached
508 // to a connection service, but in most cases will remain the same.
509 return new Call(
510 mContext,
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800511 this,
Ihab Awadd1d63e12015-03-26 10:33:44 -0700512 mLock,
Santos Cordoncf5b2912014-11-05 21:57:54 -0800513 mConnectionServiceRepository,
Ihab Awad8d5d9dd2015-03-12 11:11:06 -0700514 mContactsAsyncHelper,
Ihab Awadabcbce42015-04-07 14:04:01 -0700515 mCallerInfoAsyncQueryFactory,
Santos Cordoncf5b2912014-11-05 21:57:54 -0800516 handle,
517 null /* gatewayInfo */,
518 null /* connectionManagerPhoneAccount */,
519 null /* phoneAccountHandle */,
520 false /* isIncoming */,
521 false /* isConference */);
522 }
523
Nancy Chen0d3076c2014-07-30 14:45:44 -0700524 /**
525 * Kicks off the first steps to creating an outgoing call so that InCallUI can launch.
526 *
Nancy Chena9d91da2014-08-12 14:31:06 -0700527 * @param handle Handle to connect the call with.
Nancy Chenbc9ef172014-08-15 17:11:57 -0700528 * @param phoneAccountHandle The phone account which contains the component name of the
529 * connection service to use for this call.
530 * @param extras The optional extras Bundle passed with the intent used for the incoming call.
Nancy Chen0d3076c2014-07-30 14:45:44 -0700531 */
Nancy Chena9d91da2014-08-12 14:31:06 -0700532 Call startOutgoingCall(Uri handle, PhoneAccountHandle phoneAccountHandle, Bundle extras) {
Santos Cordoncf5b2912014-11-05 21:57:54 -0800533 Call call = getNewOutgoingCall(handle);
Nancy Chen1c5926f2014-09-17 14:44:14 -0700534
535 List<PhoneAccountHandle> accounts =
536 mPhoneAccountRegistrar.getCallCapablePhoneAccounts(handle.getScheme());
537
Ihab Awad7e2c7f32014-11-03 09:49:45 -0800538 Log.v(this, "startOutgoingCall found accounts = " + accounts);
539
Nancy Chenbc95db92014-11-24 13:19:18 -0800540 if (mForegroundCall != null && mForegroundCall.getTargetPhoneAccount() != null) {
541 // If there is an ongoing call, use the same phone account to place this new call.
542 phoneAccountHandle = mForegroundCall.getTargetPhoneAccount();
543 }
544
Nancy Chenbc9ef172014-08-15 17:11:57 -0700545 // Only dial with the requested phoneAccount if it is still valid. Otherwise treat this call
546 // as if a phoneAccount was not specified (does the default behavior instead).
Tyler Gunn8e0fef42014-09-08 18:34:44 -0700547 // Note: We will not attempt to dial with a requested phoneAccount if it is disabled.
Nancy Chenbc9ef172014-08-15 17:11:57 -0700548 if (phoneAccountHandle != null) {
Nancy Chen309198e2014-09-15 18:02:49 -0700549 if (!accounts.contains(phoneAccountHandle)) {
Nancy Chenbc9ef172014-08-15 17:11:57 -0700550 phoneAccountHandle = null;
551 }
552 }
553
554 if (phoneAccountHandle == null) {
Tyler Gunn84253572014-09-02 14:50:05 -0700555 // No preset account, check if default exists that supports the URI scheme for the
556 // handle.
Nancy Chenbc9ef172014-08-15 17:11:57 -0700557 PhoneAccountHandle defaultAccountHandle =
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700558 mPhoneAccountRegistrar.getDefaultOutgoingPhoneAccount(
Tyler Gunn84253572014-09-02 14:50:05 -0700559 handle.getScheme());
Nancy Chenbc9ef172014-08-15 17:11:57 -0700560 if (defaultAccountHandle != null) {
561 phoneAccountHandle = defaultAccountHandle;
562 }
563 }
564
Nancy Chen1c5926f2014-09-17 14:44:14 -0700565 call.setTargetPhoneAccount(phoneAccountHandle);
Nancy Chenbc9ef172014-08-15 17:11:57 -0700566
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700567 boolean isEmergencyCall = TelephonyUtil.shouldProcessAsEmergency(mContext,
568 call.getHandle());
Tyler Gunn5b452df2014-10-01 15:02:58 -0700569 boolean isPotentialInCallMMICode = isPotentialInCallMMICode(handle);
Santos Cordonf193ba42014-09-12 06:37:39 -0700570
571 // Do not support any more live calls. Our options are to move a call to hold, disconnect
572 // a call, or cancel this call altogether.
Tyler Gunn5b452df2014-10-01 15:02:58 -0700573 if (!isPotentialInCallMMICode && !makeRoomForOutgoingCall(call, isEmergencyCall)) {
Santos Cordonf193ba42014-09-12 06:37:39 -0700574 // just cancel at this point.
Yorke Lee59979512014-12-02 01:03:40 -0800575 Log.i(this, "No remaining room for outgoing call: %s", call);
Santos Cordoncf5b2912014-11-05 21:57:54 -0800576 if (mCalls.contains(call)) {
577 // This call can already exist if it is a reused call,
578 // See {@link #getNewOutgoingCall}.
579 call.disconnect();
580 }
Santos Cordonf193ba42014-09-12 06:37:39 -0700581 return null;
582 }
583
Nancy Chen8d92f452014-10-20 21:43:44 -0700584 boolean needsAccountSelection = phoneAccountHandle == null && accounts.size() > 1 &&
585 !isEmergencyCall;
586
587 if (needsAccountSelection) {
Nancy Chenbc9ef172014-08-15 17:11:57 -0700588 // This is the state where the user is expected to select an account
589 call.setState(CallState.PRE_DIAL_WAIT);
Nancy Chen1c5926f2014-09-17 14:44:14 -0700590 extras.putParcelableList(android.telecom.Call.AVAILABLE_PHONE_ACCOUNTS, accounts);
Nancy Chenbc9ef172014-08-15 17:11:57 -0700591 } else {
592 call.setState(CallState.CONNECTING);
593 }
Nancy Chen0d3076c2014-07-30 14:45:44 -0700594
Nancy Chen1c5926f2014-09-17 14:44:14 -0700595 call.setExtras(extras);
596
Tyler Gunn504eb832014-10-13 14:15:27 -0700597 // Do not add the call if it is a potential MMI code.
Nancy Chen8d92f452014-10-20 21:43:44 -0700598 if ((isPotentialMMICode(handle) || isPotentialInCallMMICode) && !needsAccountSelection) {
Yorke Leeb701f6d2014-08-12 14:04:19 -0700599 call.addListener(this);
Santos Cordoncf5b2912014-11-05 21:57:54 -0800600 } else if (!mCalls.contains(call)) {
601 // We check if mCalls already contains the call because we could potentially be reusing
602 // a call which was previously added (See {@link #getNewOutgoingCall}).
Tyler Gunn5b452df2014-10-01 15:02:58 -0700603 addCall(call);
Yorke Leeb701f6d2014-08-12 14:04:19 -0700604 }
Nancy Chen0d3076c2014-07-30 14:45:44 -0700605
606 return call;
607 }
608
Ben Gilada0d9f752014-02-26 11:49:03 -0800609 /**
Yorke Lee33501632014-03-17 19:24:12 -0700610 * Attempts to issue/connect the specified call.
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800611 *
Yorke Lee33501632014-03-17 19:24:12 -0700612 * @param handle Handle to connect the call with.
Yorke Lee33501632014-03-17 19:24:12 -0700613 * @param gatewayInfo Optional gateway information that can be used to route the call to the
Nancy Chen53ceedc2014-07-08 18:56:51 -0700614 * actual dialed handle via a gateway provider. May be null.
Sai Cheemalapatib7157e92014-06-11 17:51:55 -0700615 * @param speakerphoneOn Whether or not to turn the speakerphone on once the call connects.
Tyler Gunnc4abd912014-07-08 14:22:10 -0700616 * @param videoState The desired video state for the outgoing call.
Santos Cordon8e8b8d22013-12-19 14:14:05 -0800617 */
Nancy Chenbc9ef172014-08-15 17:11:57 -0700618 void placeOutgoingCall(Call call, Uri handle, GatewayInfo gatewayInfo, boolean speakerphoneOn,
619 int videoState) {
Nancy Chen0d3076c2014-07-30 14:45:44 -0700620 if (call == null) {
621 // don't do anything if the call no longer exists
622 Log.i(this, "Canceling unknown call.");
Santos Cordonb7af09e2014-08-06 04:30:01 -0700623 return;
624 }
625
Nancy Chen201b4372014-09-08 14:18:24 -0700626 final Uri uriHandle = (gatewayInfo == null) ? handle : gatewayInfo.getGatewayAddress();
Yorke Lee33501632014-03-17 19:24:12 -0700627
628 if (gatewayInfo == null) {
Santos Cordonb58f4532014-05-29 11:59:06 -0700629 Log.i(this, "Creating a new outgoing call with handle: %s", Log.piiHandle(uriHandle));
Yorke Lee33501632014-03-17 19:24:12 -0700630 } else {
631 Log.i(this, "Creating a new outgoing call with gateway handle: %s, original handle: %s",
632 Log.pii(uriHandle), Log.pii(handle));
633 }
Santos Cordon766d04f2014-05-06 10:28:25 -0700634
Nancy Chen0d3076c2014-07-30 14:45:44 -0700635 call.setHandle(uriHandle);
636 call.setGatewayInfo(gatewayInfo);
Sai Cheemalapatib7157e92014-06-11 17:51:55 -0700637 call.setStartWithSpeakerphoneOn(speakerphoneOn);
Tyler Gunnc4abd912014-07-08 14:22:10 -0700638 call.setVideoState(videoState);
Santos Cordon766d04f2014-05-06 10:28:25 -0700639
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700640 boolean isEmergencyCall = TelephonyUtil.shouldProcessAsEmergency(mContext,
641 call.getHandle());
Santos Cordonf193ba42014-09-12 06:37:39 -0700642 if (isEmergencyCall) {
Ihab Awad69eb0f52014-07-18 11:20:37 -0700643 // Emergency -- CreateConnectionProcessor will choose accounts automatically
Ihab Awadb78b2762014-07-25 15:16:23 -0700644 call.setTargetPhoneAccount(null);
Nancy Chen53ceedc2014-07-08 18:56:51 -0700645 }
Nancy Chend9de92c2014-07-21 16:09:13 -0700646
Santos Cordonf193ba42014-09-12 06:37:39 -0700647 if (call.getTargetPhoneAccount() != null || isEmergencyCall) {
Nancy Chenbc9ef172014-08-15 17:11:57 -0700648 // If the account has been set, proceed to place the outgoing call.
649 // Otherwise the connection will be initiated when the account is set by the user.
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700650 call.startCreateConnection(mPhoneAccountRegistrar);
Nancy Chend9de92c2014-07-21 16:09:13 -0700651 }
Yorke Leef98fb572014-03-05 10:56:55 -0800652 }
653
654 /**
Santos Cordona1610702014-06-04 20:22:56 -0700655 * Attempts to start a conference call for the specified call.
656 *
Santos Cordon12d61822014-07-29 16:02:20 -0700657 * @param call The call to conference.
658 * @param otherCall The other call to conference with.
Santos Cordona1610702014-06-04 20:22:56 -0700659 */
Santos Cordon12d61822014-07-29 16:02:20 -0700660 void conference(Call call, Call otherCall) {
Santos Cordon0fbe6322014-08-14 04:04:25 -0700661 call.conferenceWith(otherCall);
Santos Cordona1610702014-06-04 20:22:56 -0700662 }
663
664 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700665 * Instructs Telecom to answer the specified call. Intended to be invoked by the in-call
666 * app through {@link InCallAdapter} after Telecom notifies it of an incoming call followed by
Santos Cordone3d76ab2014-01-28 17:25:20 -0800667 * the user opting to answer said call.
Andrew Lee38931d02014-07-16 10:17:36 -0700668 *
669 * @param call The call to answer.
670 * @param videoState The video state in which to answer the call.
Santos Cordone3d76ab2014-01-28 17:25:20 -0800671 */
Andrew Lee38931d02014-07-16 10:17:36 -0700672 void answerCall(Call call, int videoState) {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700673 if (!mCalls.contains(call)) {
674 Log.i(this, "Request to answer a non-existent call %s", call);
Santos Cordon61d0f702014-02-19 02:52:23 -0800675 } else {
Santos Cordon40f78c22014-04-07 02:11:42 -0700676 // If the foreground call is not the ringing call and it is currently isActive() or
Ihab Awad6fb37c82014-08-07 19:48:57 -0700677 // STATE_DIALING, put it on hold before answering the call.
Santos Cordon40f78c22014-04-07 02:11:42 -0700678 if (mForegroundCall != null && mForegroundCall != call &&
679 (mForegroundCall.isActive() ||
680 mForegroundCall.getState() == CallState.DIALING)) {
Ihab Awad07bc5ee2014-11-12 13:42:52 -0800681 if (0 == (mForegroundCall.getConnectionCapabilities()
682 & Connection.CAPABILITY_HOLD)) {
Santos Cordonf193ba42014-09-12 06:37:39 -0700683 // This call does not support hold. If it is from a different connection
684 // service, then disconnect it, otherwise allow the connection service to
685 // figure out the right states.
686 if (mForegroundCall.getConnectionService() != call.getConnectionService()) {
687 mForegroundCall.disconnect();
688 }
689 } else {
Andrew Leee94a8f12014-12-19 16:19:51 -0800690 Call heldCall = getHeldCall();
691 if (heldCall != null) {
692 Log.v(this, "Disconnecting held call %s before holding active call.",
693 heldCall);
694 heldCall.disconnect();
695 }
696
Santos Cordonf193ba42014-09-12 06:37:39 -0700697 Log.v(this, "Holding active/dialing call %s before answering incoming call %s.",
698 mForegroundCall, call);
699 mForegroundCall.hold();
700 }
Santos Cordondf399862014-08-06 04:39:15 -0700701 // TODO: Wait until we get confirmation of the active call being
Santos Cordon40f78c22014-04-07 02:11:42 -0700702 // on-hold before answering the new call.
Santos Cordondf399862014-08-06 04:39:15 -0700703 // TODO: Import logic from CallManager.acceptCall()
Santos Cordon40f78c22014-04-07 02:11:42 -0700704 }
705
Santos Cordona56f2762014-03-24 15:55:53 -0700706 for (CallsManagerListener listener : mListeners) {
707 listener.onIncomingCallAnswered(call);
708 }
Santos Cordon4e9fffe2014-03-04 18:13:41 -0800709
Santos Cordon61d0f702014-02-19 02:52:23 -0800710 // We do not update the UI until we get confirmation of the answer() through
Sailesh Nepale59bb192014-04-01 18:33:59 -0700711 // {@link #markCallAsActive}.
Andrew Lee38931d02014-07-16 10:17:36 -0700712 call.answer(videoState);
Rekha Kumar032f8e42015-04-01 21:45:57 -0700713 if (VideoProfile.VideoState.isVideo(videoState) &&
714 !mWiredHeadsetManager.isPluggedIn() &&
715 !mCallAudioManager.isBluetoothDeviceAvailable() &&
716 isSpeakerEnabledForVideoCalls()) {
717 call.setStartWithSpeakerphoneOn(true);
718 }
Santos Cordon61d0f702014-02-19 02:52:23 -0800719 }
Santos Cordone3d76ab2014-01-28 17:25:20 -0800720 }
721
Rekha Kumar032f8e42015-04-01 21:45:57 -0700722 private static boolean isSpeakerEnabledForVideoCalls() {
723 return (SystemProperties.getInt(TelephonyProperties.PROPERTY_VIDEOCALL_AUDIO_OUTPUT,
724 PhoneConstants.AUDIO_OUTPUT_DEFAULT) ==
725 PhoneConstants.AUDIO_OUTPUT_ENABLE_SPEAKER);
726 }
727
Santos Cordone3d76ab2014-01-28 17:25:20 -0800728 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700729 * Instructs Telecom to reject the specified call. Intended to be invoked by the in-call
730 * app through {@link InCallAdapter} after Telecom notifies it of an incoming call followed by
Santos Cordone3d76ab2014-01-28 17:25:20 -0800731 * the user opting to reject said call.
Santos Cordone3d76ab2014-01-28 17:25:20 -0800732 */
Ihab Awadff7493a2014-06-10 13:47:44 -0700733 void rejectCall(Call call, boolean rejectWithMessage, String textMessage) {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700734 if (!mCalls.contains(call)) {
735 Log.i(this, "Request to reject a non-existent call %s", call);
Santos Cordon61d0f702014-02-19 02:52:23 -0800736 } else {
Santos Cordona56f2762014-03-24 15:55:53 -0700737 for (CallsManagerListener listener : mListeners) {
Ihab Awadff7493a2014-06-10 13:47:44 -0700738 listener.onIncomingCallRejected(call, rejectWithMessage, textMessage);
Santos Cordona56f2762014-03-24 15:55:53 -0700739 }
Ihab Awadff7493a2014-06-10 13:47:44 -0700740 call.reject(rejectWithMessage, textMessage);
Santos Cordon61d0f702014-02-19 02:52:23 -0800741 }
Santos Cordone3d76ab2014-01-28 17:25:20 -0800742 }
743
744 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700745 * Instructs Telecom to play the specified DTMF tone within the specified call.
Ihab Awad74549ec2014-03-10 15:33:25 -0700746 *
Ihab Awad74549ec2014-03-10 15:33:25 -0700747 * @param digit The DTMF digit to play.
748 */
Sailesh Nepale59bb192014-04-01 18:33:59 -0700749 void playDtmfTone(Call call, char digit) {
750 if (!mCalls.contains(call)) {
751 Log.i(this, "Request to play DTMF in a non-existent call %s", call);
Ihab Awad74549ec2014-03-10 15:33:25 -0700752 } else {
753 call.playDtmfTone(digit);
Santos Cordon92a2d812014-04-30 15:19:01 -0700754 mDtmfLocalTonePlayer.playTone(call, digit);
Ihab Awad74549ec2014-03-10 15:33:25 -0700755 }
756 }
757
758 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700759 * Instructs Telecom to stop the currently playing DTMF tone, if any.
Ihab Awad74549ec2014-03-10 15:33:25 -0700760 */
Sailesh Nepale59bb192014-04-01 18:33:59 -0700761 void stopDtmfTone(Call call) {
762 if (!mCalls.contains(call)) {
763 Log.i(this, "Request to stop DTMF in a non-existent call %s", call);
Ihab Awad74549ec2014-03-10 15:33:25 -0700764 } else {
765 call.stopDtmfTone();
Santos Cordon92a2d812014-04-30 15:19:01 -0700766 mDtmfLocalTonePlayer.stopTone(call);
Ihab Awad74549ec2014-03-10 15:33:25 -0700767 }
768 }
769
770 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700771 * Instructs Telecom to continue (or not) the current post-dial DTMF string, if any.
Ihab Awad74549ec2014-03-10 15:33:25 -0700772 */
Evan Charlton352105c2014-06-03 14:10:54 -0700773 void postDialContinue(Call call, boolean proceed) {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700774 if (!mCalls.contains(call)) {
775 Log.i(this, "Request to continue post-dial string in a non-existent call %s", call);
Ihab Awad74549ec2014-03-10 15:33:25 -0700776 } else {
Evan Charlton352105c2014-06-03 14:10:54 -0700777 call.postDialContinue(proceed);
Ihab Awad74549ec2014-03-10 15:33:25 -0700778 }
779 }
780
781 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700782 * Instructs Telecom to disconnect the specified call. Intended to be invoked by the
Santos Cordone3d76ab2014-01-28 17:25:20 -0800783 * in-call app through {@link InCallAdapter} for an ongoing call. This is usually triggered by
784 * the user hitting the end-call button.
Santos Cordone3d76ab2014-01-28 17:25:20 -0800785 */
Sailesh Nepale59bb192014-04-01 18:33:59 -0700786 void disconnectCall(Call call) {
Santos Cordon682fe6b2014-05-20 08:56:39 -0700787 Log.v(this, "disconnectCall %s", call);
788
Sailesh Nepale59bb192014-04-01 18:33:59 -0700789 if (!mCalls.contains(call)) {
790 Log.w(this, "Unknown call (%s) asked to disconnect", call);
Santos Cordon049b7b62014-01-30 05:34:26 -0800791 } else {
Ihab Awad5b281322014-09-25 18:25:29 -0700792 mLocallyDisconnectingCalls.add(call);
Santos Cordon049b7b62014-01-30 05:34:26 -0800793 call.disconnect();
794 }
Santos Cordone3d76ab2014-01-28 17:25:20 -0800795 }
Santos Cordon681663d2014-01-30 04:32:15 -0800796
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700797 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700798 * Instructs Telecom to disconnect all calls.
Tyler Gunn61b92102014-08-19 07:42:20 -0700799 */
800 void disconnectAllCalls() {
801 Log.v(this, "disconnectAllCalls");
802
803 for (Call call : mCalls) {
804 disconnectCall(call);
805 }
806 }
807
Nancy Chenbc9ef172014-08-15 17:11:57 -0700808
Tyler Gunn61b92102014-08-19 07:42:20 -0700809 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700810 * Instructs Telecom to put the specified call on hold. Intended to be invoked by the
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700811 * in-call app through {@link InCallAdapter} for an ongoing call. This is usually triggered by
812 * the user hitting the hold button during an active call.
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700813 */
Sailesh Nepale59bb192014-04-01 18:33:59 -0700814 void holdCall(Call call) {
815 if (!mCalls.contains(call)) {
816 Log.w(this, "Unknown call (%s) asked to be put on hold", call);
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700817 } else {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700818 Log.d(this, "Putting call on hold: (%s)", call);
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700819 call.hold();
820 }
821 }
822
823 /**
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700824 * Instructs Telecom to release the specified call from hold. Intended to be invoked by
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700825 * the in-call app through {@link InCallAdapter} for an ongoing call. This is usually triggered
826 * by the user hitting the hold button during a held call.
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700827 */
Sailesh Nepale59bb192014-04-01 18:33:59 -0700828 void unholdCall(Call call) {
829 if (!mCalls.contains(call)) {
830 Log.w(this, "Unknown call (%s) asked to be removed from hold", call);
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700831 } else {
Santos Cordonc7e85d42014-05-22 02:51:48 -0700832 Log.d(this, "unholding call: (%s)", call);
Sai Cheemalapati45b3e3f2014-08-15 09:33:00 -0700833 for (Call c : mCalls) {
Tyler Gunne44adb42015-01-02 10:55:35 -0800834 // Only attempt to hold parent calls and not the individual children.
835 if (c != null && c.isAlive() && c != call && c.getParentCall() == null) {
Sai Cheemalapati45b3e3f2014-08-15 09:33:00 -0700836 c.hold();
837 }
838 }
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700839 call.unhold();
840 }
841 }
842
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700843 /** Called by the in-call UI to change the mute state. */
844 void mute(boolean shouldMute) {
845 mCallAudioManager.mute(shouldMute);
846 }
847
848 /**
849 * Called by the in-call UI to change the audio route, for example to change from earpiece to
850 * speaker phone.
851 */
852 void setAudioRoute(int route) {
853 mCallAudioManager.setAudioRoute(route);
854 }
855
Yorke Leed1346872014-07-28 14:38:45 -0700856 /** Called by the in-call UI to turn the proximity sensor on. */
857 void turnOnProximitySensor() {
858 mProximitySensorManager.turnOn();
859 }
860
861 /**
862 * Called by the in-call UI to turn the proximity sensor off.
863 * @param screenOnImmediately If true, the screen will be turned on immediately. Otherwise,
864 * the screen will be kept off until the proximity sensor goes negative.
865 */
866 void turnOffProximitySensor(boolean screenOnImmediately) {
867 mProximitySensorManager.turnOff(screenOnImmediately);
868 }
869
Nancy Chenf5e5d3c2014-10-21 18:45:56 -0700870 void phoneAccountSelected(Call call, PhoneAccountHandle account, boolean setDefault) {
Nancy Chen53ceedc2014-07-08 18:56:51 -0700871 if (!mCalls.contains(call)) {
Santos Cordonf193ba42014-09-12 06:37:39 -0700872 Log.i(this, "Attempted to add account to unknown call %s", call);
Nancy Chen53ceedc2014-07-08 18:56:51 -0700873 } else {
Santos Cordonf193ba42014-09-12 06:37:39 -0700874 // TODO: There is an odd race condition here. Since NewOutgoingCallIntentBroadcaster and
875 // the PRE_DIAL_WAIT sequence run in parallel, if the user selects an account before the
876 // NEW_OUTGOING_CALL sequence finishes, we'll start the call immediately without
877 // respecting a rewritten number or a canceled number. This is unlikely since
878 // NEW_OUTGOING_CALL sequence, in practice, runs a lot faster than the user selecting
879 // a phone account from the in-call UI.
Ihab Awadb78b2762014-07-25 15:16:23 -0700880 call.setTargetPhoneAccount(account);
Santos Cordonf193ba42014-09-12 06:37:39 -0700881
882 // Note: emergency calls never go through account selection dialog so they never
883 // arrive here.
884 if (makeRoomForOutgoingCall(call, false /* isEmergencyCall */)) {
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700885 call.startCreateConnection(mPhoneAccountRegistrar);
Santos Cordonf193ba42014-09-12 06:37:39 -0700886 } else {
887 call.disconnect();
888 }
Nancy Chenf5e5d3c2014-10-21 18:45:56 -0700889
890 if (setDefault) {
891 mPhoneAccountRegistrar.setUserSelectedOutgoingPhoneAccount(account);
892 }
Nancy Chen53ceedc2014-07-08 18:56:51 -0700893 }
894 }
895
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700896 /** Called when the audio state changes. */
Ihab Awad6fb37c82014-08-07 19:48:57 -0700897 void onAudioStateChanged(AudioState oldAudioState, AudioState newAudioState) {
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700898 Log.v(this, "onAudioStateChanged, audioState: %s -> %s", oldAudioState, newAudioState);
Santos Cordona56f2762014-03-24 15:55:53 -0700899 for (CallsManagerListener listener : mListeners) {
900 listener.onAudioStateChanged(oldAudioState, newAudioState);
901 }
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700902 }
903
Sailesh Nepale59bb192014-04-01 18:33:59 -0700904 void markCallAsRinging(Call call) {
905 setCallState(call, CallState.RINGING);
Santos Cordon681663d2014-01-30 04:32:15 -0800906 }
907
Sailesh Nepale59bb192014-04-01 18:33:59 -0700908 void markCallAsDialing(Call call) {
909 setCallState(call, CallState.DIALING);
Santos Cordon681663d2014-01-30 04:32:15 -0800910 }
911
Sailesh Nepale59bb192014-04-01 18:33:59 -0700912 void markCallAsActive(Call call) {
913 setCallState(call, CallState.ACTIVE);
Sailesh Nepal84fa5f82014-04-02 11:01:11 -0700914
Sai Cheemalapatib7157e92014-06-11 17:51:55 -0700915 if (call.getStartWithSpeakerphoneOn()) {
Ihab Awad6fb37c82014-08-07 19:48:57 -0700916 setAudioRoute(AudioState.ROUTE_SPEAKER);
Sai Cheemalapatib7157e92014-06-11 17:51:55 -0700917 }
Santos Cordon681663d2014-01-30 04:32:15 -0800918 }
919
Sailesh Nepale59bb192014-04-01 18:33:59 -0700920 void markCallAsOnHold(Call call) {
921 setCallState(call, CallState.ON_HOLD);
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700922 }
923
Santos Cordon049b7b62014-01-30 05:34:26 -0800924 /**
Santos Cordonf193ba42014-09-12 06:37:39 -0700925 * Marks the specified call as STATE_DISCONNECTED and notifies the in-call app. If this was the
926 * last live call, then also disconnect from the in-call controller.
Santos Cordon049b7b62014-01-30 05:34:26 -0800927 *
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800928 * @param disconnectCause The disconnect cause, see {@link android.telecom.DisconnectCause}.
Santos Cordon049b7b62014-01-30 05:34:26 -0800929 */
Andrew Lee701dc002014-09-11 21:29:12 -0700930 void markCallAsDisconnected(Call call, DisconnectCause disconnectCause) {
931 call.setDisconnectCause(disconnectCause);
Sailesh Nepale59bb192014-04-01 18:33:59 -0700932 setCallState(call, CallState.DISCONNECTED);
Sailesh Nepal6ab6fb72014-04-01 20:03:19 -0700933 }
934
Ben Gilada0d9f752014-02-26 11:49:03 -0800935 /**
Ihab Awada02bef52014-08-13 18:18:42 -0700936 * Removes an existing disconnected call, and notifies the in-call app.
937 */
938 void markCallAsRemoved(Call call) {
939 removeCall(call);
Ihab Awad5b281322014-09-25 18:25:29 -0700940 if (mLocallyDisconnectingCalls.contains(call)) {
941 mLocallyDisconnectingCalls.remove(call);
942 if (mForegroundCall != null && mForegroundCall.getState() == CallState.ON_HOLD) {
943 mForegroundCall.unhold();
944 }
945 }
Ihab Awada02bef52014-08-13 18:18:42 -0700946 }
947
948 /**
Sailesh Nepalc92c4362014-07-04 18:33:21 -0700949 * Cleans up any calls currently associated with the specified connection service when the
Sailesh Nepal905dfba2014-07-14 08:20:41 -0700950 * service binder disconnects unexpectedly.
Santos Cordon4b2c1192014-03-19 18:15:38 -0700951 *
Sailesh Nepalc92c4362014-07-04 18:33:21 -0700952 * @param service The connection service that disconnected.
Santos Cordon4b2c1192014-03-19 18:15:38 -0700953 */
Sailesh Nepalc92c4362014-07-04 18:33:21 -0700954 void handleConnectionServiceDeath(ConnectionServiceWrapper service) {
Jay Shrauneracb91eb2014-08-08 16:04:53 -0700955 if (service != null) {
Jay Shraunera82c8f72014-08-14 15:49:16 -0700956 for (Call call : mCalls) {
Jay Shrauneracb91eb2014-08-08 16:04:53 -0700957 if (call.getConnectionService() == service) {
Yorke Lee2af16b62014-11-11 17:36:57 -0800958 if (call.getState() != CallState.DISCONNECTED) {
959 markCallAsDisconnected(call, new DisconnectCause(DisconnectCause.ERROR));
960 }
961 markCallAsRemoved(call);
Jay Shrauneracb91eb2014-08-08 16:04:53 -0700962 }
Santos Cordon4b2c1192014-03-19 18:15:38 -0700963 }
964 }
965 }
966
Santos Cordondeb8c892014-05-30 01:38:03 -0700967 boolean hasAnyCalls() {
968 return !mCalls.isEmpty();
969 }
970
Santos Cordonc7e85d42014-05-22 02:51:48 -0700971 boolean hasActiveOrHoldingCall() {
Santos Cordon23baed32014-06-27 14:45:39 -0700972 return getFirstCallWithState(CallState.ACTIVE, CallState.ON_HOLD) != null;
Santos Cordonc7e85d42014-05-22 02:51:48 -0700973 }
974
975 boolean hasRingingCall() {
Santos Cordon23baed32014-06-27 14:45:39 -0700976 return getFirstCallWithState(CallState.RINGING) != null;
Santos Cordonc7e85d42014-05-22 02:51:48 -0700977 }
978
Santos Cordondeb8c892014-05-30 01:38:03 -0700979 boolean onMediaButton(int type) {
980 if (hasAnyCalls()) {
981 if (HeadsetMediaButton.SHORT_PRESS == type) {
982 Call ringingCall = getFirstCallWithState(CallState.RINGING);
983 if (ringingCall == null) {
984 mCallAudioManager.toggleMute();
985 return true;
986 } else {
Andrew Lee38931d02014-07-16 10:17:36 -0700987 ringingCall.answer(ringingCall.getVideoState());
Santos Cordondeb8c892014-05-30 01:38:03 -0700988 return true;
989 }
990 } else if (HeadsetMediaButton.LONG_PRESS == type) {
991 Log.d(this, "handleHeadsetHook: longpress -> hangup");
992 Call callToHangup = getFirstCallWithState(
993 CallState.RINGING, CallState.DIALING, CallState.ACTIVE, CallState.ON_HOLD);
994 if (callToHangup != null) {
995 callToHangup.disconnect();
996 return true;
997 }
998 }
999 }
1000 return false;
1001 }
1002
1003 /**
Santos Cordon91bd74c2014-11-07 16:10:22 -08001004 * Returns true if telecom supports adding another top-level call.
Santos Cordon10838c22014-06-11 17:36:04 -07001005 */
Santos Cordon91bd74c2014-11-07 16:10:22 -08001006 boolean canAddCall() {
Andrew Lee113ad622014-12-01 18:33:10 -08001007 if (getFirstCallWithState(OUTGOING_CALL_STATES) != null) {
1008 return false;
1009 }
1010
Santos Cordon91bd74c2014-11-07 16:10:22 -08001011 int count = 0;
1012 for (Call call : mCalls) {
1013 if (call.isEmergencyCall()) {
1014 // We never support add call if one of the calls is an emergency call.
1015 return false;
1016 } else if (call.getParentCall() == null) {
1017 count++;
1018 }
Santos Cordon10838c22014-06-11 17:36:04 -07001019
Santos Cordon91bd74c2014-11-07 16:10:22 -08001020 // We do not check states for canAddCall. We treat disconnected calls the same
1021 // and wait until they are removed instead. If we didn't count disconnected calls,
1022 // we could put InCallServices into a state where they are showing two calls but
1023 // also support add-call. Technically it's right, but overall looks better (UI-wise)
1024 // and acts better if we wait until the call is removed.
1025 if (count >= MAXIMUM_TOP_LEVEL_CALLS) {
Santos Cordon10838c22014-06-11 17:36:04 -07001026 return false;
1027 }
1028 }
1029 return true;
1030 }
1031
Ihab Awada3653902015-01-23 13:44:46 -08001032 @VisibleForTesting
1033 public Call getRingingCall() {
Santos Cordon68d1a6b2014-09-19 12:25:58 -07001034 return getFirstCallWithState(CallState.RINGING);
1035 }
1036
1037 Call getActiveCall() {
1038 return getFirstCallWithState(CallState.ACTIVE);
1039 }
1040
Nancy Chen05a9e402014-09-26 14:14:32 -07001041 Call getDialingCall() {
1042 return getFirstCallWithState(CallState.DIALING);
Santos Cordon68d1a6b2014-09-19 12:25:58 -07001043 }
1044
1045 Call getHeldCall() {
1046 return getFirstCallWithState(CallState.ON_HOLD);
1047 }
1048
Santos Cordonc0ca76e2014-10-21 15:54:19 -07001049 int getNumHeldCalls() {
1050 int count = 0;
1051 for (Call call : mCalls) {
1052 if (call.getParentCall() == null && call.getState() == CallState.ON_HOLD) {
1053 count++;
1054 }
1055 }
1056 return count;
1057 }
1058
Santos Cordonf193ba42014-09-12 06:37:39 -07001059 Call getFirstCallWithState(int... states) {
1060 return getFirstCallWithState(null, states);
1061 }
1062
Santos Cordon10838c22014-06-11 17:36:04 -07001063 /**
Santos Cordondeb8c892014-05-30 01:38:03 -07001064 * Returns the first call that it finds with the given states. The states are treated as having
1065 * priority order so that any call with the first state will be returned before any call with
1066 * states listed later in the parameter list.
Santos Cordonf193ba42014-09-12 06:37:39 -07001067 *
1068 * @param callToSkip Call that this method should skip while searching
Santos Cordondeb8c892014-05-30 01:38:03 -07001069 */
Santos Cordonf193ba42014-09-12 06:37:39 -07001070 Call getFirstCallWithState(Call callToSkip, int... states) {
Ihab Awad6fb37c82014-08-07 19:48:57 -07001071 for (int currentState : states) {
Santos Cordon23baed32014-06-27 14:45:39 -07001072 // check the foreground first
1073 if (mForegroundCall != null && mForegroundCall.getState() == currentState) {
1074 return mForegroundCall;
1075 }
1076
Santos Cordondeb8c892014-05-30 01:38:03 -07001077 for (Call call : mCalls) {
Santos Cordonf193ba42014-09-12 06:37:39 -07001078 if (Objects.equals(callToSkip, call)) {
1079 continue;
1080 }
1081
1082 // Only operate on top-level calls
1083 if (call.getParentCall() != null) {
1084 continue;
1085 }
1086
Santos Cordondeb8c892014-05-30 01:38:03 -07001087 if (currentState == call.getState()) {
1088 return call;
1089 }
1090 }
1091 }
1092 return null;
1093 }
1094
Santos Cordon0fbe6322014-08-14 04:04:25 -07001095 Call createConferenceCall(
1096 PhoneAccountHandle phoneAccount,
1097 ParcelableConference parcelableConference) {
Tyler Gunnd92e7372015-01-09 15:59:45 -08001098
1099 // If the parceled conference specifies a connect time, use it; otherwise default to 0,
1100 // which is the default value for new Calls.
1101 long connectTime =
1102 parcelableConference.getConnectTimeMillis() ==
1103 Conference.CONNECT_TIME_NOT_SPECIFIED ? 0 :
1104 parcelableConference.getConnectTimeMillis();
1105
Santos Cordon0fbe6322014-08-14 04:04:25 -07001106 Call call = new Call(
Tyler Gunn91d43cf2014-09-17 12:19:39 -07001107 mContext,
Ihab Awad78a5e6b2015-02-06 10:13:05 -08001108 this,
Ihab Awadd1d63e12015-03-26 10:33:44 -07001109 mLock,
Santos Cordon0fbe6322014-08-14 04:04:25 -07001110 mConnectionServiceRepository,
Ihab Awad8d5d9dd2015-03-12 11:11:06 -07001111 mContactsAsyncHelper,
Ihab Awadabcbce42015-04-07 14:04:01 -07001112 mCallerInfoAsyncQueryFactory,
Santos Cordon0fbe6322014-08-14 04:04:25 -07001113 null /* handle */,
1114 null /* gatewayInfo */,
1115 null /* connectionManagerPhoneAccount */,
1116 phoneAccount,
1117 false /* isIncoming */,
Tyler Gunnd92e7372015-01-09 15:59:45 -08001118 true /* isConference */,
1119 connectTime);
Santos Cordon0fbe6322014-08-14 04:04:25 -07001120
1121 setCallState(call, Call.getStateFromConnectionState(parcelableConference.getState()));
Ihab Awad07bc5ee2014-11-12 13:42:52 -08001122 call.setConnectionCapabilities(parcelableConference.getConnectionCapabilities());
Rekha Kumar032f8e42015-04-01 21:45:57 -07001123 call.setVideoState(parcelableConference.getVideoState());
1124 call.setVideoProvider(parcelableConference.getVideoProvider());
Santos Cordon0fbe6322014-08-14 04:04:25 -07001125
1126 // TODO: Move this to be a part of addCall()
1127 call.addListener(this);
1128 addCall(call);
1129 return call;
1130 }
1131
Yorke Leef86db2e2014-09-12 17:56:48 -07001132 /**
1133 * @return the call state currently tracked by {@link PhoneStateBroadcaster}
1134 */
1135 int getCallState() {
1136 return mPhoneStateBroadcaster.getCallState();
1137 }
Nancy Chenbc9ef172014-08-15 17:11:57 -07001138
Santos Cordon4b2c1192014-03-19 18:15:38 -07001139 /**
Tyler Gunn91d43cf2014-09-17 12:19:39 -07001140 * Retrieves the {@link PhoneAccountRegistrar}.
1141 *
1142 * @return The {@link PhoneAccountRegistrar}.
1143 */
1144 PhoneAccountRegistrar getPhoneAccountRegistrar() {
1145 return mPhoneAccountRegistrar;
1146 }
1147
1148 /**
1149 * Retrieves the {@link MissedCallNotifier}
1150 * @return The {@link MissedCallNotifier}.
1151 */
1152 MissedCallNotifier getMissedCallNotifier() {
1153 return mMissedCallNotifier;
1154 }
1155
1156 /**
Ben Gilada0d9f752014-02-26 11:49:03 -08001157 * Adds the specified call to the main list of live calls.
1158 *
1159 * @param call The call to add.
1160 */
1161 private void addCall(Call call) {
Yorke Leee4a9c412014-11-14 16:59:42 -08001162 Trace.beginSection("addCall");
Yorke Leeb701f6d2014-08-12 14:04:19 -07001163 Log.v(this, "addCall(%s)", call);
Yorke Leeb701f6d2014-08-12 14:04:19 -07001164 call.addListener(this);
Sailesh Nepale59bb192014-04-01 18:33:59 -07001165 mCalls.add(call);
Santos Cordon40f78c22014-04-07 02:11:42 -07001166
Santos Cordondf399862014-08-06 04:39:15 -07001167 // TODO: Update mForegroundCall prior to invoking
Santos Cordon40f78c22014-04-07 02:11:42 -07001168 // onCallAdded for calls which immediately take the foreground (like the first call).
Santos Cordona56f2762014-03-24 15:55:53 -07001169 for (CallsManagerListener listener : mListeners) {
Yorke Leee4a9c412014-11-14 16:59:42 -08001170 if (Log.SYSTRACE_DEBUG) {
1171 Trace.beginSection(listener.getClass().toString() + " addCall");
1172 }
Santos Cordona56f2762014-03-24 15:55:53 -07001173 listener.onCallAdded(call);
Yorke Leee4a9c412014-11-14 16:59:42 -08001174 if (Log.SYSTRACE_DEBUG) {
1175 Trace.endSection();
1176 }
Santos Cordona56f2762014-03-24 15:55:53 -07001177 }
Santos Cordon91bd74c2014-11-07 16:10:22 -08001178 updateCallsManagerState();
Yorke Leee4a9c412014-11-14 16:59:42 -08001179 Trace.endSection();
Ben Gilada0d9f752014-02-26 11:49:03 -08001180 }
1181
Sailesh Nepal810735e2014-03-18 18:15:46 -07001182 private void removeCall(Call call) {
Yorke Leee4a9c412014-11-14 16:59:42 -08001183 Trace.beginSection("removeCall");
Santos Cordonc499c1c2014-04-14 17:13:14 -07001184 Log.v(this, "removeCall(%s)", call);
Sailesh Nepal4857f472014-04-07 22:26:27 -07001185
Santos Cordon672321e2014-08-21 14:38:58 -07001186 call.setParentCall(null); // need to clean up parent relationship before destroying.
Santos Cordon766d04f2014-05-06 10:28:25 -07001187 call.removeListener(this);
Sailesh Nepalc92c4362014-07-04 18:33:21 -07001188 call.clearConnectionService();
Sailesh Nepale59bb192014-04-01 18:33:59 -07001189
1190 boolean shouldNotify = false;
1191 if (mCalls.contains(call)) {
1192 mCalls.remove(call);
1193 shouldNotify = true;
Santos Cordona56f2762014-03-24 15:55:53 -07001194 }
Ben Gilada0d9f752014-02-26 11:49:03 -08001195
Sailesh Nepale59bb192014-04-01 18:33:59 -07001196 // Only broadcast changes for calls that are being tracked.
1197 if (shouldNotify) {
1198 for (CallsManagerListener listener : mListeners) {
Yorke Leee4a9c412014-11-14 16:59:42 -08001199 if (Log.SYSTRACE_DEBUG) {
1200 Trace.beginSection(listener.getClass().toString() + " onCallRemoved");
1201 }
Sailesh Nepale59bb192014-04-01 18:33:59 -07001202 listener.onCallRemoved(call);
Yorke Leee4a9c412014-11-14 16:59:42 -08001203 if (Log.SYSTRACE_DEBUG) {
1204 Trace.endSection();
1205 }
Sailesh Nepale59bb192014-04-01 18:33:59 -07001206 }
Santos Cordon91bd74c2014-11-07 16:10:22 -08001207 updateCallsManagerState();
Yorke Lee604a90f2014-10-20 12:13:32 -07001208 }
Yorke Leee4a9c412014-11-14 16:59:42 -08001209 Trace.endSection();
Sailesh Nepal810735e2014-03-18 18:15:46 -07001210 }
Evan Charlton5c670a92014-03-06 14:58:20 -08001211
Sailesh Nepal810735e2014-03-18 18:15:46 -07001212 /**
Santos Cordon1ae2b852014-03-19 03:03:10 -07001213 * Sets the specified state on the specified call.
Sailesh Nepal810735e2014-03-18 18:15:46 -07001214 *
1215 * @param call The call.
1216 * @param newState The new state of the call.
1217 */
Ihab Awad6fb37c82014-08-07 19:48:57 -07001218 private void setCallState(Call call, int newState) {
Jay Shrauneracb91eb2014-08-08 16:04:53 -07001219 if (call == null) {
1220 return;
1221 }
Ihab Awad6fb37c82014-08-07 19:48:57 -07001222 int oldState = call.getState();
Nancy Chen308ab8b2014-09-02 16:18:30 -07001223 Log.i(this, "setCallState %s -> %s, call: %s", CallState.toString(oldState),
1224 CallState.toString(newState), call);
Sailesh Nepal810735e2014-03-18 18:15:46 -07001225 if (newState != oldState) {
1226 // Unfortunately, in the telephony world the radio is king. So if the call notifies
1227 // 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 -07001228 // sense (e.g., STATE_ACTIVE -> STATE_RINGING).
Santos Cordondf399862014-08-06 04:39:15 -07001229 // TODO: Consider putting a stop to the above and turning CallState
Sailesh Nepal810735e2014-03-18 18:15:46 -07001230 // into a well-defined state machine.
Santos Cordondf399862014-08-06 04:39:15 -07001231 // TODO: Define expected state transitions here, and log when an
Sailesh Nepal810735e2014-03-18 18:15:46 -07001232 // unexpected transition occurs.
1233 call.setState(newState);
1234
Yorke Leee4a9c412014-11-14 16:59:42 -08001235 Trace.beginSection("onCallStateChanged");
Sailesh Nepal810735e2014-03-18 18:15:46 -07001236 // Only broadcast state change for calls that are being tracked.
Sailesh Nepale59bb192014-04-01 18:33:59 -07001237 if (mCalls.contains(call)) {
Santos Cordona56f2762014-03-24 15:55:53 -07001238 for (CallsManagerListener listener : mListeners) {
Yorke Leee4a9c412014-11-14 16:59:42 -08001239 if (Log.SYSTRACE_DEBUG) {
1240 Trace.beginSection(listener.getClass().toString() + " onCallStateChanged");
1241 }
Santos Cordona56f2762014-03-24 15:55:53 -07001242 listener.onCallStateChanged(call, oldState, newState);
Yorke Leee4a9c412014-11-14 16:59:42 -08001243 if (Log.SYSTRACE_DEBUG) {
1244 Trace.endSection();
1245 }
Santos Cordona56f2762014-03-24 15:55:53 -07001246 }
Santos Cordon91bd74c2014-11-07 16:10:22 -08001247 updateCallsManagerState();
Santos Cordon4e9fffe2014-03-04 18:13:41 -08001248 }
Yorke Leee4a9c412014-11-14 16:59:42 -08001249 Trace.endSection();
Santos Cordon4e9fffe2014-03-04 18:13:41 -08001250 }
1251 }
1252
1253 /**
Sailesh Nepal810735e2014-03-18 18:15:46 -07001254 * Checks which call should be visible to the user and have audio focus.
Evan Charlton5c670a92014-03-06 14:58:20 -08001255 */
Sailesh Nepal810735e2014-03-18 18:15:46 -07001256 private void updateForegroundCall() {
Yorke Leee4a9c412014-11-14 16:59:42 -08001257 Trace.beginSection("updateForegroundCall");
Sailesh Nepal810735e2014-03-18 18:15:46 -07001258 Call newForegroundCall = null;
Sailesh Nepale59bb192014-04-01 18:33:59 -07001259 for (Call call : mCalls) {
Santos Cordondf399862014-08-06 04:39:15 -07001260 // TODO: Foreground-ness needs to be explicitly set. No call, regardless
Sailesh Nepalc92c4362014-07-04 18:33:21 -07001261 // of its state will be foreground by default and instead the connection service should
1262 // be notified when its calls enter and exit foreground state. Foreground will mean that
Santos Cordon40f78c22014-04-07 02:11:42 -07001263 // the call should play audio and listen to microphone if it wants.
1264
Santos Cordonf193ba42014-09-12 06:37:39 -07001265 // Only top-level calls can be in foreground
1266 if (call.getParentCall() != null) {
1267 continue;
1268 }
1269
Santos Cordon40f78c22014-04-07 02:11:42 -07001270 // Active calls have priority.
1271 if (call.isActive()) {
Sailesh Nepal810735e2014-03-18 18:15:46 -07001272 newForegroundCall = call;
Evan Charlton5c670a92014-03-06 14:58:20 -08001273 break;
Sailesh Nepal810735e2014-03-18 18:15:46 -07001274 }
Santos Cordon40f78c22014-04-07 02:11:42 -07001275
1276 if (call.isAlive() || call.getState() == CallState.RINGING) {
Sailesh Nepal810735e2014-03-18 18:15:46 -07001277 newForegroundCall = call;
Santos Cordon40f78c22014-04-07 02:11:42 -07001278 // Don't break in case there's an active call that has priority.
Santos Cordon4e9fffe2014-03-04 18:13:41 -08001279 }
1280 }
Santos Cordon4e9fffe2014-03-04 18:13:41 -08001281
Sailesh Nepal810735e2014-03-18 18:15:46 -07001282 if (newForegroundCall != mForegroundCall) {
Santos Cordon40f78c22014-04-07 02:11:42 -07001283 Log.v(this, "Updating foreground call, %s -> %s.", mForegroundCall, newForegroundCall);
Sailesh Nepal810735e2014-03-18 18:15:46 -07001284 Call oldForegroundCall = mForegroundCall;
1285 mForegroundCall = newForegroundCall;
Ihab Awad5b281322014-09-25 18:25:29 -07001286
Santos Cordona56f2762014-03-24 15:55:53 -07001287 for (CallsManagerListener listener : mListeners) {
Yorke Leee4a9c412014-11-14 16:59:42 -08001288 if (Log.SYSTRACE_DEBUG) {
1289 Trace.beginSection(listener.getClass().toString() + " updateForegroundCall");
1290 }
Santos Cordona56f2762014-03-24 15:55:53 -07001291 listener.onForegroundCallChanged(oldForegroundCall, mForegroundCall);
Yorke Leee4a9c412014-11-14 16:59:42 -08001292 if (Log.SYSTRACE_DEBUG) {
1293 Trace.endSection();
1294 }
Santos Cordona56f2762014-03-24 15:55:53 -07001295 }
Santos Cordon681663d2014-01-30 04:32:15 -08001296 }
Yorke Leee4a9c412014-11-14 16:59:42 -08001297 Trace.endSection();
Santos Cordon681663d2014-01-30 04:32:15 -08001298 }
Yorke Leeb701f6d2014-08-12 14:04:19 -07001299
Santos Cordon91bd74c2014-11-07 16:10:22 -08001300 private void updateCanAddCall() {
1301 boolean newCanAddCall = canAddCall();
1302 if (newCanAddCall != mCanAddCall) {
1303 mCanAddCall = newCanAddCall;
1304 for (CallsManagerListener listener : mListeners) {
Yorke Leee4a9c412014-11-14 16:59:42 -08001305 if (Log.SYSTRACE_DEBUG) {
1306 Trace.beginSection(listener.getClass().toString() + " updateCanAddCall");
1307 }
Santos Cordon91bd74c2014-11-07 16:10:22 -08001308 listener.onCanAddCallChanged(mCanAddCall);
Yorke Leee4a9c412014-11-14 16:59:42 -08001309 if (Log.SYSTRACE_DEBUG) {
1310 Trace.endSection();
1311 }
Santos Cordon91bd74c2014-11-07 16:10:22 -08001312 }
1313 }
1314 }
1315
1316 private void updateCallsManagerState() {
1317 updateForegroundCall();
1318 updateCanAddCall();
1319 }
1320
Yorke Leeb701f6d2014-08-12 14:04:19 -07001321 private boolean isPotentialMMICode(Uri handle) {
1322 return (handle != null && handle.getSchemeSpecificPart() != null
1323 && handle.getSchemeSpecificPart().contains("#"));
1324 }
Santos Cordonf193ba42014-09-12 06:37:39 -07001325
Tyler Gunn5b452df2014-10-01 15:02:58 -07001326 /**
1327 * Determines if a dialed number is potentially an In-Call MMI code. In-Call MMI codes are
1328 * MMI codes which can be dialed when one or more calls are in progress.
1329 * <P>
1330 * Checks for numbers formatted similar to the MMI codes defined in:
1331 * {@link com.android.internal.telephony.gsm.GSMPhone#handleInCallMmiCommands(String)}
1332 * and
1333 * {@link com.android.internal.telephony.imsphone.ImsPhone#handleInCallMmiCommands(String)}
1334 *
1335 * @param handle The URI to call.
1336 * @return {@code True} if the URI represents a number which could be an in-call MMI code.
1337 */
1338 private boolean isPotentialInCallMMICode(Uri handle) {
1339 if (handle != null && handle.getSchemeSpecificPart() != null &&
1340 handle.getScheme().equals(PhoneAccount.SCHEME_TEL)) {
1341
1342 String dialedNumber = handle.getSchemeSpecificPart();
1343 return (dialedNumber.equals("0") ||
1344 (dialedNumber.startsWith("1") && dialedNumber.length() <= 2) ||
1345 (dialedNumber.startsWith("2") && dialedNumber.length() <= 2) ||
1346 dialedNumber.equals("3") ||
1347 dialedNumber.equals("4") ||
1348 dialedNumber.equals("5"));
1349 }
1350 return false;
1351 }
1352
Santos Cordonf193ba42014-09-12 06:37:39 -07001353 private int getNumCallsWithState(int... states) {
1354 int count = 0;
1355 for (int state : states) {
1356 for (Call call : mCalls) {
Santos Cordon91bd74c2014-11-07 16:10:22 -08001357 if (call.getParentCall() == null && call.getState() == state) {
Santos Cordonf193ba42014-09-12 06:37:39 -07001358 count++;
1359 }
1360 }
1361 }
1362 return count;
1363 }
1364
1365 private boolean hasMaximumLiveCalls() {
1366 return MAXIMUM_LIVE_CALLS <= getNumCallsWithState(LIVE_CALL_STATES);
1367 }
1368
1369 private boolean hasMaximumHoldingCalls() {
1370 return MAXIMUM_HOLD_CALLS <= getNumCallsWithState(CallState.ON_HOLD);
1371 }
1372
1373 private boolean hasMaximumRingingCalls() {
1374 return MAXIMUM_RINGING_CALLS <= getNumCallsWithState(CallState.RINGING);
1375 }
1376
1377 private boolean hasMaximumOutgoingCalls() {
1378 return MAXIMUM_OUTGOING_CALLS <= getNumCallsWithState(OUTGOING_CALL_STATES);
1379 }
1380
1381 private boolean makeRoomForOutgoingCall(Call call, boolean isEmergency) {
1382 if (hasMaximumLiveCalls()) {
1383 // NOTE: If the amount of live calls changes beyond 1, this logic will probably
1384 // have to change.
1385 Call liveCall = getFirstCallWithState(call, LIVE_CALL_STATES);
Anju Mathapatic88574c2014-12-16 14:46:19 +05301386 Log.i(this, "makeRoomForOutgoingCall call = " + call + " livecall = " +
1387 liveCall);
Santos Cordonf193ba42014-09-12 06:37:39 -07001388
Santos Cordond1766502014-09-26 15:45:39 -07001389 if (call == liveCall) {
1390 // If the call is already the foreground call, then we are golden.
1391 // This can happen after the user selects an account in the PRE_DIAL_WAIT
1392 // state since the call was already populated into the list.
1393 return true;
1394 }
1395
Andrew Leee6595182014-09-23 18:43:05 -07001396 if (hasMaximumOutgoingCalls()) {
1397 // Disconnect the current outgoing call if it's not an emergency call. If the user
1398 // tries to make two outgoing calls to different emergency call numbers, we will try
1399 // to connect the first outgoing call.
1400 if (isEmergency) {
1401 Call outgoingCall = getFirstCallWithState(OUTGOING_CALL_STATES);
1402 if (!outgoingCall.isEmergencyCall()) {
1403 outgoingCall.disconnect();
1404 return true;
1405 }
1406 }
1407 return false;
1408 }
1409
Santos Cordonf193ba42014-09-12 06:37:39 -07001410 if (hasMaximumHoldingCalls()) {
1411 // There is no more room for any more calls, unless it's an emergency.
1412 if (isEmergency) {
1413 // Kill the current active call, this is easier then trying to disconnect a
1414 // holding call and hold an active call.
1415 liveCall.disconnect();
1416 return true;
1417 }
1418 return false; // No more room!
1419 }
1420
1421 // We have room for at least one more holding call at this point.
1422
1423 // First thing, if we are trying to make a call with the same phone account as the live
1424 // call, then allow it so that the connection service can make its own decision about
1425 // how to handle the new call relative to the current one.
1426 if (Objects.equals(liveCall.getTargetPhoneAccount(), call.getTargetPhoneAccount())) {
1427 return true;
1428 } else if (call.getTargetPhoneAccount() == null) {
1429 // Without a phone account, we can't say reliably that the call will fail.
1430 // If the user chooses the same phone account as the live call, then it's
1431 // still possible that the call can be made (like with CDMA calls not supporting
1432 // hold but they still support adding a call by going immediately into conference
1433 // mode). Return true here and we'll run this code again after user chooses an
1434 // account.
1435 return true;
1436 }
1437
1438 // Try to hold the live call before attempting the new outgoing call.
Ihab Awad07bc5ee2014-11-12 13:42:52 -08001439 if (liveCall.can(Connection.CAPABILITY_HOLD)) {
Santos Cordonf193ba42014-09-12 06:37:39 -07001440 liveCall.hold();
1441 return true;
1442 }
1443
1444 // The live call cannot be held so we're out of luck here. There's no room.
1445 return false;
1446 }
1447 return true;
1448 }
Tyler Gunn91d43cf2014-09-17 12:19:39 -07001449
1450 /**
Tyler Gunn6e2b94e2014-10-30 11:05:22 -07001451 * Creates a new call for an existing connection.
1452 *
1453 * @param callId The id of the new call.
1454 * @param connection The connection information.
1455 * @return The new call.
1456 */
1457 Call createCallForExistingConnection(String callId, ParcelableConnection connection) {
1458 Call call = new Call(
1459 mContext,
Ihab Awad78a5e6b2015-02-06 10:13:05 -08001460 this,
Ihab Awadd1d63e12015-03-26 10:33:44 -07001461 mLock,
Tyler Gunn6e2b94e2014-10-30 11:05:22 -07001462 mConnectionServiceRepository,
Ihab Awad8d5d9dd2015-03-12 11:11:06 -07001463 mContactsAsyncHelper,
Ihab Awadabcbce42015-04-07 14:04:01 -07001464 mCallerInfoAsyncQueryFactory,
Tyler Gunn6e2b94e2014-10-30 11:05:22 -07001465 connection.getHandle() /* handle */,
1466 null /* gatewayInfo */,
1467 null /* connectionManagerPhoneAccount */,
1468 connection.getPhoneAccount(), /* targetPhoneAccountHandle */
1469 false /* isIncoming */,
1470 false /* isConference */);
1471
1472 setCallState(call, Call.getStateFromConnectionState(connection.getState()));
Ihab Awad07bc5ee2014-11-12 13:42:52 -08001473 call.setConnectionCapabilities(connection.getConnectionCapabilities());
Tyler Gunn6e2b94e2014-10-30 11:05:22 -07001474 call.setCallerDisplayName(connection.getCallerDisplayName(),
1475 connection.getCallerDisplayNamePresentation());
1476
1477 call.addListener(this);
1478 addCall(call);
1479
1480 return call;
1481 }
1482
1483 /**
Tyler Gunn91d43cf2014-09-17 12:19:39 -07001484 * Dumps the state of the {@link CallsManager}.
1485 *
1486 * @param pw The {@code IndentingPrintWriter} to write the state to.
1487 */
1488 public void dump(IndentingPrintWriter pw) {
1489 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DUMP, TAG);
Tyler Gunn91d43cf2014-09-17 12:19:39 -07001490 if (mCalls != null) {
1491 pw.println("mCalls: ");
1492 pw.increaseIndent();
1493 for (Call call : mCalls) {
1494 pw.println(call);
1495 }
1496 pw.decreaseIndent();
1497 }
Tyler Gunn9787e0e2014-10-14 14:36:12 -07001498 pw.println("mForegroundCall: " + (mForegroundCall == null ? "none" : mForegroundCall));
1499
1500 if (mCallAudioManager != null) {
1501 pw.println("mCallAudioManager:");
1502 pw.increaseIndent();
1503 mCallAudioManager.dump(pw);
1504 pw.decreaseIndent();
1505 }
1506
1507 if (mTtyManager != null) {
1508 pw.println("mTtyManager:");
1509 pw.increaseIndent();
1510 mTtyManager.dump(pw);
1511 pw.decreaseIndent();
1512 }
1513
1514 if (mInCallController != null) {
1515 pw.println("mInCallController:");
1516 pw.increaseIndent();
1517 mInCallController.dump(pw);
1518 pw.decreaseIndent();
1519 }
1520
1521 if (mConnectionServiceRepository != null) {
1522 pw.println("mConnectionServiceRepository:");
1523 pw.increaseIndent();
1524 mConnectionServiceRepository.dump(pw);
1525 pw.decreaseIndent();
1526 }
Tyler Gunn91d43cf2014-09-17 12:19:39 -07001527 }
Ben Gilad9f2bed32013-12-12 17:43:26 -08001528}