blob: 2db5b4e24a830613cb76cf8f7459a30b78e9f87a [file] [log] [blame]
Ben Gilad0407fb22014-01-09 16:18:41 -08001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Ben Gilad9f2bed32013-12-12 17:43:26 -080017package com.android.telecomm;
18
Sailesh Nepalce704b92014-03-17 18:31:43 -070019import android.net.Uri;
Sailesh Nepal84fa5f82014-04-02 11:01:11 -070020import android.os.Bundle;
Santos Cordon0b03b4b2014-01-29 18:01:59 -080021import android.telecomm.CallInfo;
Sailesh Nepal84fa5f82014-04-02 11:01:11 -070022import android.telecomm.CallServiceDescriptor;
Santos Cordon0b03b4b2014-01-29 18:01:59 -080023import android.telecomm.CallState;
Yorke Lee33501632014-03-17 19:24:12 -070024import android.telecomm.GatewayInfo;
Santos Cordon79ff2bc2014-03-27 15:31:27 -070025import android.telephony.DisconnectCause;
Sailesh Nepal6aca10a2014-03-24 16:11:02 -070026import android.telephony.PhoneNumberUtils;
Santos Cordon0b03b4b2014-01-29 18:01:59 -080027
Ben Gilad61925612014-03-11 19:06:36 -070028import com.google.android.collect.Sets;
Santos Cordon61d0f702014-02-19 02:52:23 -080029import com.google.common.base.Preconditions;
30
Sailesh Nepal91990782014-03-08 17:45:52 -080031import java.util.Locale;
Ben Gilad61925612014-03-11 19:06:36 -070032import java.util.Set;
Ben Gilad0407fb22014-01-09 16:18:41 -080033
Ben Gilad2495d572014-01-09 17:26:19 -080034/**
35 * Encapsulates all aspects of a given phone call throughout its lifecycle, starting
36 * from the time the call intent was received by Telecomm (vs. the time the call was
37 * connected etc).
38 */
Ben Gilad0407fb22014-01-09 16:18:41 -080039final class Call {
Ben Gilad0407fb22014-01-09 16:18:41 -080040 /** Additional contact information beyond handle above, optional. */
Ben Gilad0bf5b912014-01-28 17:55:57 -080041 private final ContactInfo mContactInfo;
Ben Gilad0407fb22014-01-09 16:18:41 -080042
Sailesh Nepal810735e2014-03-18 18:15:46 -070043 /** True if this is an incoming call. */
44 private final boolean mIsIncoming;
45
Ben Gilad0407fb22014-01-09 16:18:41 -080046 /**
47 * The time this call was created, typically also the time this call was added to the set
48 * of pending outgoing calls (mPendingOutgoingCalls) that's maintained by the switchboard.
49 * Beyond logging and such, may also be used for bookkeeping and specifically for marking
50 * certain call attempts as failed attempts.
51 */
Sailesh Nepal8c85dee2014-04-07 22:21:40 -070052 private final long mCreationTimeMillis = System.currentTimeMillis();
53
54 private long mConnectTimeMillis;
Ben Gilad0407fb22014-01-09 16:18:41 -080055
Santos Cordon61d0f702014-02-19 02:52:23 -080056 /** The state of the call. */
57 private CallState mState;
58
59 /** The handle with which to establish this call. */
Sailesh Nepalce704b92014-03-17 18:31:43 -070060 private Uri mHandle;
Santos Cordon61d0f702014-02-19 02:52:23 -080061
Yorke Lee33501632014-03-17 19:24:12 -070062 /** The gateway information associated with this call. This stores the original call handle
63 * that the user is attempting to connect to via the gateway, the actual handle to dial in
64 * order to connect the call via the gateway, as well as the package name of the gateway
65 * service. */
66 private final GatewayInfo mGatewayInfo;
67
Ben Gilad0407fb22014-01-09 16:18:41 -080068 /**
Ben Gilad8e55d1d2014-02-26 16:25:56 -080069 * The call service which is attempted or already connecting this call.
Santos Cordon681663d2014-01-30 04:32:15 -080070 */
Santos Cordonc195e362014-02-11 17:05:31 -080071 private CallServiceWrapper mCallService;
Santos Cordon681663d2014-01-30 04:32:15 -080072
Ben Gilad8e55d1d2014-02-26 16:25:56 -080073 /**
74 * The call-service selector for this call.
Ben Gilad8e55d1d2014-02-26 16:25:56 -080075 */
Sailesh Nepal18386a82014-03-19 10:22:40 -070076 private CallServiceSelectorWrapper mCallServiceSelector;
Ben Gilad8e55d1d2014-02-26 16:25:56 -080077
Santos Cordon0b03b4b2014-01-29 18:01:59 -080078 /**
Ben Gilad61925612014-03-11 19:06:36 -070079 * The set of call services that were attempted in the process of placing/switching this call
80 * but turned out unsuitable. Only used in the context of call switching.
81 */
82 private Set<CallServiceWrapper> mIncompatibleCallServices;
83
Sailesh Nepal6aca10a2014-03-24 16:11:02 -070084 private boolean mIsEmergencyCall;
85
Ben Gilad61925612014-03-11 19:06:36 -070086 /**
Santos Cordon79ff2bc2014-03-27 15:31:27 -070087 * Disconnect cause for the call. Only valid if the state of the call is DISCONNECTED.
88 * See {@link android.telephony.DisconnectCause}.
89 */
Sailesh Nepal8c85dee2014-04-07 22:21:40 -070090 private int mDisconnectCause = DisconnectCause.NOT_VALID;
Santos Cordon79ff2bc2014-03-27 15:31:27 -070091
92 /**
93 * Additional disconnect information provided by the call service.
94 */
95 private String mDisconnectMessage;
96
Sailesh Nepal84fa5f82014-04-02 11:01:11 -070097 /** Info used by the call services. */
Sailesh Nepal8c85dee2014-04-07 22:21:40 -070098 private Bundle mExtras = Bundle.EMPTY;
Sailesh Nepal84fa5f82014-04-02 11:01:11 -070099
100 /** The Uri to dial to perform the handoff. If this is null then handoff is not supported. */
101 private Uri mHandoffHandle;
102
103 /**
104 * References the call that is being handed off. This value is non-null for untracked calls
105 * that are being used to perform a handoff.
106 */
107 private Call mOriginalCall;
108
Santos Cordon79ff2bc2014-03-27 15:31:27 -0700109 /**
Sailesh Nepal8c85dee2014-04-07 22:21:40 -0700110 * The descriptor for the call service that this call is being switched to, null if handoff is
111 * not in progress.
112 */
113 private CallServiceDescriptor mHandoffCallServiceDescriptor;
114
115 /**
Sailesh Nepale59bb192014-04-01 18:33:59 -0700116 * Creates an empty call object.
Sailesh Nepal810735e2014-03-18 18:15:46 -0700117 *
118 * @param isIncoming True if this is an incoming call.
Santos Cordon493e8f22014-02-19 03:15:12 -0800119 */
Sailesh Nepal810735e2014-03-18 18:15:46 -0700120 Call(boolean isIncoming) {
Yorke Lee33501632014-03-17 19:24:12 -0700121 this(null, null, null, isIncoming);
Santos Cordon493e8f22014-02-19 03:15:12 -0800122 }
123
124 /**
Ben Gilad0407fb22014-01-09 16:18:41 -0800125 * Persists the specified parameters and initializes the new instance.
126 *
127 * @param handle The handle to dial.
128 * @param contactInfo Information about the entity being called.
Yorke Lee33501632014-03-17 19:24:12 -0700129 * @param gatewayInfo Gateway information to use for the call.
Sailesh Nepal810735e2014-03-18 18:15:46 -0700130 * @param isIncoming True if this is an incoming call.
Ben Gilad0407fb22014-01-09 16:18:41 -0800131 */
Yorke Lee33501632014-03-17 19:24:12 -0700132 Call(Uri handle, ContactInfo contactInfo, GatewayInfo gatewayInfo, boolean isIncoming) {
Santos Cordon0b03b4b2014-01-29 18:01:59 -0800133 mState = CallState.NEW;
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700134 setHandle(handle);
Ben Gilad0407fb22014-01-09 16:18:41 -0800135 mContactInfo = contactInfo;
Yorke Lee33501632014-03-17 19:24:12 -0700136 mGatewayInfo = gatewayInfo;
Sailesh Nepal810735e2014-03-18 18:15:46 -0700137 mIsIncoming = isIncoming;
Ben Gilad0407fb22014-01-09 16:18:41 -0800138 }
139
Santos Cordon61d0f702014-02-19 02:52:23 -0800140 /** {@inheritDoc} */
141 @Override public String toString() {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700142 return String.format(Locale.US, "[%s, %s, %s]", mState,
Sailesh Nepal810735e2014-03-18 18:15:46 -0700143 mCallService == null ? "<null>" : mCallService.getComponentName(),
Santos Cordona0e5f1a2014-03-31 21:43:00 -0700144 Log.piiHandle(mHandle));
Santos Cordon61d0f702014-02-19 02:52:23 -0800145 }
146
Santos Cordon0b03b4b2014-01-29 18:01:59 -0800147 CallState getState() {
148 return mState;
149 }
150
151 /**
152 * Sets the call state. Although there exists the notion of appropriate state transitions
153 * (see {@link CallState}), in practice those expectations break down when cellular systems
154 * misbehave and they do this very often. The result is that we do not enforce state transitions
155 * and instead keep the code resilient to unexpected state changes.
156 */
Sailesh Nepal810735e2014-03-18 18:15:46 -0700157 void setState(CallState newState) {
Santos Cordon79ff2bc2014-03-27 15:31:27 -0700158 Preconditions.checkState(newState != CallState.DISCONNECTED ||
159 mDisconnectCause != DisconnectCause.NOT_VALID);
Sailesh Nepal810735e2014-03-18 18:15:46 -0700160 if (mState != newState) {
161 Log.v(this, "setState %s -> %s", mState, newState);
162 mState = newState;
Sailesh Nepal810735e2014-03-18 18:15:46 -0700163 }
Santos Cordon0b03b4b2014-01-29 18:01:59 -0800164 }
165
Sailesh Nepalce704b92014-03-17 18:31:43 -0700166 Uri getHandle() {
Ben Gilad0bf5b912014-01-28 17:55:57 -0800167 return mHandle;
168 }
169
Sailesh Nepalce704b92014-03-17 18:31:43 -0700170 void setHandle(Uri handle) {
Santos Cordon61d0f702014-02-19 02:52:23 -0800171 mHandle = handle;
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700172 mIsEmergencyCall = mHandle != null && PhoneNumberUtils.isLocalEmergencyNumber(
173 mHandle.getSchemeSpecificPart(), TelecommApp.getInstance());
174 }
175
Santos Cordon79ff2bc2014-03-27 15:31:27 -0700176 /**
177 * @param disconnectCause The reason for the disconnection, any of
178 * {@link android.telephony.DisconnectCause}.
179 * @param disconnectMessage Optional call-service-provided message about the disconnect.
180 */
181 void setDisconnectCause(int disconnectCause, String disconnectMessage) {
182 // TODO: Consider combining this method with a setDisconnected() method that is totally
183 // separate from setState.
184 mDisconnectCause = disconnectCause;
185 mDisconnectMessage = disconnectMessage;
186 }
187
188 int getDisconnectCause() {
189 return mDisconnectCause;
190 }
191
192 String getDisconnectMessage() {
193 return mDisconnectMessage;
194 }
195
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700196 boolean isEmergencyCall() {
197 return mIsEmergencyCall;
Santos Cordon61d0f702014-02-19 02:52:23 -0800198 }
199
Yorke Lee33501632014-03-17 19:24:12 -0700200 /**
201 * @return The original handle this call is associated with. In-call services should use this
202 * handle when indicating in their UI the handle that is being called.
203 */
204 public Uri getOriginalHandle() {
205 if (mGatewayInfo != null && !mGatewayInfo.isEmpty()) {
206 return mGatewayInfo.getOriginalHandle();
207 }
208 return getHandle();
209 }
210
211 GatewayInfo getGatewayInfo() {
212 return mGatewayInfo;
213 }
214
Ben Gilad0bf5b912014-01-28 17:55:57 -0800215 ContactInfo getContactInfo() {
216 return mContactInfo;
217 }
218
Sailesh Nepal810735e2014-03-18 18:15:46 -0700219 boolean isIncoming() {
220 return mIsIncoming;
221 }
222
Ben Gilad0407fb22014-01-09 16:18:41 -0800223 /**
224 * @return The "age" of this call object in milliseconds, which typically also represents the
Sailesh Nepal8c85dee2014-04-07 22:21:40 -0700225 * period since this call was added to the set pending outgoing calls, see
226 * mCreationTimeMillis.
Ben Gilad0407fb22014-01-09 16:18:41 -0800227 */
Sailesh Nepal8c85dee2014-04-07 22:21:40 -0700228 long getAgeMillis() {
229 return System.currentTimeMillis() - mCreationTimeMillis;
Ben Gilad0407fb22014-01-09 16:18:41 -0800230 }
Santos Cordon0b03b4b2014-01-29 18:01:59 -0800231
Yorke Leef98fb572014-03-05 10:56:55 -0800232 /**
233 * @return The time when this call object was created and added to the set of pending outgoing
234 * calls.
235 */
Sailesh Nepal8c85dee2014-04-07 22:21:40 -0700236 long getCreationTimeMillis() {
237 return mCreationTimeMillis;
238 }
239
240 long getConnectTimeMillis() {
241 return mConnectTimeMillis;
242 }
243
244 void setConnectTimeMillis(long connectTimeMillis) {
245 mConnectTimeMillis = connectTimeMillis;
Yorke Leef98fb572014-03-05 10:56:55 -0800246 }
247
Santos Cordonc195e362014-02-11 17:05:31 -0800248 CallServiceWrapper getCallService() {
Santos Cordon681663d2014-01-30 04:32:15 -0800249 return mCallService;
250 }
251
Santos Cordonc195e362014-02-11 17:05:31 -0800252 void setCallService(CallServiceWrapper callService) {
Sailesh Nepal0e5410a2014-04-04 01:20:58 -0700253 setCallService(callService, null);
254 }
255
256 /**
257 * Changes the call service this call is associated with. If callToReplace is non-null then this
258 * call takes its place within the call service.
259 */
260 void setCallService(CallServiceWrapper callService, Call callToReplace) {
Ben Gilad8e55d1d2014-02-26 16:25:56 -0800261 Preconditions.checkNotNull(callService);
262
Yorke Leeadee12d2014-03-13 12:08:30 -0700263 clearCallService();
Ben Gilad8e55d1d2014-02-26 16:25:56 -0800264
265 callService.incrementAssociatedCallCount();
Santos Cordon681663d2014-01-30 04:32:15 -0800266 mCallService = callService;
Sailesh Nepal0e5410a2014-04-04 01:20:58 -0700267 if (callToReplace == null) {
268 mCallService.addCall(this);
269 } else {
270 mCallService.replaceCall(this, callToReplace);
271 }
Santos Cordon681663d2014-01-30 04:32:15 -0800272 }
273
274 /**
275 * Clears the associated call service.
276 */
277 void clearCallService() {
Yorke Leeadee12d2014-03-13 12:08:30 -0700278 if (mCallService != null) {
279 decrementAssociatedCallCount(mCallService);
Sailesh Nepale59bb192014-04-01 18:33:59 -0700280 mCallService.removeCall(this);
Yorke Leeadee12d2014-03-13 12:08:30 -0700281 mCallService = null;
282 }
Ben Gilad8e55d1d2014-02-26 16:25:56 -0800283 }
284
Sailesh Nepal84fa5f82014-04-02 11:01:11 -0700285 CallServiceSelectorWrapper getCallServiceSelector() {
286 return mCallServiceSelector;
287 }
288
Sailesh Nepal18386a82014-03-19 10:22:40 -0700289 void setCallServiceSelector(CallServiceSelectorWrapper selector) {
Ben Gilad8e55d1d2014-02-26 16:25:56 -0800290 Preconditions.checkNotNull(selector);
Sailesh Nepale59bb192014-04-01 18:33:59 -0700291
292 clearCallServiceSelector();
293
Ben Gilad8e55d1d2014-02-26 16:25:56 -0800294 mCallServiceSelector = selector;
Sailesh Nepale59bb192014-04-01 18:33:59 -0700295 mCallServiceSelector.addCall(this);
Ben Gilad8e55d1d2014-02-26 16:25:56 -0800296 }
297
298 void clearCallServiceSelector() {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700299 if (mCallServiceSelector != null) {
300 // TODO(sail): Stop leaking selectors.
301 // decrementAssociatedCallCount(mCallServiceSelector);
302 mCallServiceSelector.removeCall(this);
303 mCallServiceSelector = null;
304 }
Ben Gilad8e55d1d2014-02-26 16:25:56 -0800305 }
306
307 /**
Ben Gilad61925612014-03-11 19:06:36 -0700308 * Adds the specified call service to the list of incompatible services. The set is used when
309 * attempting to switch a phone call between call services such that incompatible services can
310 * be avoided.
311 *
312 * @param callService The incompatible call service.
313 */
314 void addIncompatibleCallService(CallServiceWrapper callService) {
315 if (mIncompatibleCallServices == null) {
316 mIncompatibleCallServices = Sets.newHashSet();
317 }
318 mIncompatibleCallServices.add(callService);
319 }
320
321 /**
322 * Checks whether or not the specified callService was identified as incompatible in the
323 * context of this call.
324 *
325 * @param callService The call service to evaluate.
326 * @return True upon incompatible call services and false otherwise.
327 */
328 boolean isIncompatibleCallService(CallServiceWrapper callService) {
329 return mIncompatibleCallServices != null &&
330 mIncompatibleCallServices.contains(callService);
331 }
332
333 /**
Ben Gilad28e8ad62014-03-06 17:01:54 -0800334 * Aborts ongoing attempts to connect this call. Only applicable to {@link CallState#NEW}
335 * outgoing calls. See {@link #disconnect} for already-connected calls.
Ben Gilad8e55d1d2014-02-26 16:25:56 -0800336 */
337 void abort() {
Ben Gilad28e8ad62014-03-06 17:01:54 -0800338 if (mState == CallState.NEW) {
339 if (mCallService != null) {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700340 mCallService.abort(this);
Ben Gilad28e8ad62014-03-06 17:01:54 -0800341 }
Ben Gilad9c234112014-03-04 16:07:33 -0800342 clearCallService();
343 clearCallServiceSelector();
Ben Gilad8e55d1d2014-02-26 16:25:56 -0800344 }
Santos Cordon681663d2014-01-30 04:32:15 -0800345 }
346
Santos Cordonc195e362014-02-11 17:05:31 -0800347 /**
Ihab Awad74549ec2014-03-10 15:33:25 -0700348 * Plays the specified DTMF tone.
349 */
350 void playDtmfTone(char digit) {
351 if (mCallService == null) {
352 Log.w(this, "playDtmfTone() request on a call without a call service.");
353 } else {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700354 Log.i(this, "Send playDtmfTone to call service for call %s", this);
355 mCallService.playDtmfTone(this, digit);
Ihab Awad74549ec2014-03-10 15:33:25 -0700356 }
357 }
358
359 /**
360 * Stops playing any currently playing DTMF tone.
361 */
362 void stopDtmfTone() {
363 if (mCallService == null) {
364 Log.w(this, "stopDtmfTone() request on a call without a call service.");
365 } else {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700366 Log.i(this, "Send stopDtmfTone to call service for call %s", this);
367 mCallService.stopDtmfTone(this);
Ihab Awad74549ec2014-03-10 15:33:25 -0700368 }
369 }
370
371 /**
Santos Cordon049b7b62014-01-30 05:34:26 -0800372 * Attempts to disconnect the call through the call service.
373 */
374 void disconnect() {
375 if (mCallService == null) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800376 Log.w(this, "disconnect() request on a call without a call service.");
Santos Cordon049b7b62014-01-30 05:34:26 -0800377 } else {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700378 Log.i(this, "Send disconnect to call service for call: %s", this);
Santos Cordonc195e362014-02-11 17:05:31 -0800379 // The call isn't officially disconnected until the call service confirms that the call
380 // was actually disconnected. Only then is the association between call and call service
381 // severed, see {@link CallsManager#markCallAsDisconnected}.
Sailesh Nepale59bb192014-04-01 18:33:59 -0700382 mCallService.disconnect(this);
Santos Cordon049b7b62014-01-30 05:34:26 -0800383 }
384 }
385
Santos Cordon0b03b4b2014-01-29 18:01:59 -0800386 /**
Santos Cordon61d0f702014-02-19 02:52:23 -0800387 * Answers the call if it is ringing.
388 */
389 void answer() {
390 Preconditions.checkNotNull(mCallService);
391
392 // Check to verify that the call is still in the ringing state. A call can change states
393 // between the time the user hits 'answer' and Telecomm receives the command.
394 if (isRinging("answer")) {
395 // At this point, we are asking the call service to answer but we don't assume that
396 // it will work. Instead, we wait until confirmation from the call service that the
397 // call is in a non-RINGING state before changing the UI. See
398 // {@link CallServiceAdapter#setActive} and other set* methods.
Sailesh Nepale59bb192014-04-01 18:33:59 -0700399 mCallService.answer(this);
Santos Cordon61d0f702014-02-19 02:52:23 -0800400 }
401 }
402
403 /**
404 * Rejects the call if it is ringing.
405 */
406 void reject() {
407 Preconditions.checkNotNull(mCallService);
408
409 // Check to verify that the call is still in the ringing state. A call can change states
410 // between the time the user hits 'reject' and Telecomm receives the command.
411 if (isRinging("reject")) {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700412 mCallService.reject(this);
Santos Cordon61d0f702014-02-19 02:52:23 -0800413 }
414 }
415
416 /**
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700417 * Puts the call on hold if it is currently active.
418 */
419 void hold() {
420 Preconditions.checkNotNull(mCallService);
421
422 if (mState == CallState.ACTIVE) {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700423 mCallService.hold(this);
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700424 }
425 }
426
427 /**
428 * Releases the call from hold if it is currently active.
429 */
430 void unhold() {
431 Preconditions.checkNotNull(mCallService);
432
433 if (mState == CallState.ON_HOLD) {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700434 mCallService.unhold(this);
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700435 }
436 }
437
438 /**
Santos Cordon0b03b4b2014-01-29 18:01:59 -0800439 * @return An object containing read-only information about this call.
440 */
Sailesh Nepale59bb192014-04-01 18:33:59 -0700441 CallInfo toCallInfo(String callId) {
Sailesh Nepal84fa5f82014-04-02 11:01:11 -0700442 CallServiceDescriptor descriptor = null;
443 if (mCallService != null) {
444 descriptor = mCallService.getDescriptor();
445 } else if (mOriginalCall != null && mOriginalCall.mCallService != null) {
446 descriptor = mOriginalCall.mCallService.getDescriptor();
447 }
448 return new CallInfo(callId, mState, mHandle, mGatewayInfo, mExtras, descriptor);
Santos Cordon0b03b4b2014-01-29 18:01:59 -0800449 }
450
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700451 /** Checks if this is a live call or not. */
452 boolean isAlive() {
453 switch (mState) {
454 case NEW:
455 case RINGING:
456 case DISCONNECTED:
457 case ABORTED:
458 return false;
459 default:
460 return true;
461 }
462 }
463
Santos Cordon40f78c22014-04-07 02:11:42 -0700464 boolean isActive() {
465 switch (mState) {
466 case ACTIVE:
467 case POST_DIAL:
468 case POST_DIAL_WAIT:
469 return true;
470 default:
471 return false;
472 }
473 }
474
Sailesh Nepal84fa5f82014-04-02 11:01:11 -0700475 Bundle getExtras() {
476 return mExtras;
477 }
478
479 void setExtras(Bundle extras) {
480 mExtras = extras;
481 }
482
483 Uri getHandoffHandle() {
484 return mHandoffHandle;
485 }
486
487 void setHandoffHandle(Uri handoffHandle) {
488 mHandoffHandle = handoffHandle;
489 }
490
491 Call getOriginalCall() {
492 return mOriginalCall;
493 }
494
495 void setOriginalCall(Call originalCall) {
496 mOriginalCall = originalCall;
497 }
498
Sailesh Nepal8c85dee2014-04-07 22:21:40 -0700499 CallServiceDescriptor getHandoffCallServiceDescriptor() {
500 return mHandoffCallServiceDescriptor;
501 }
502
503 void setHandoffCallServiceDescriptor(CallServiceDescriptor descriptor) {
504 mHandoffCallServiceDescriptor = descriptor;
505 }
506
Santos Cordon0b03b4b2014-01-29 18:01:59 -0800507 /**
Santos Cordon61d0f702014-02-19 02:52:23 -0800508 * @return True if the call is ringing, else logs the action name.
509 */
510 private boolean isRinging(String actionName) {
511 if (mState == CallState.RINGING) {
512 return true;
513 }
514
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800515 Log.i(this, "Request to %s a non-ringing call %s", actionName, this);
Santos Cordon61d0f702014-02-19 02:52:23 -0800516 return false;
517 }
518
Ben Gilad8e55d1d2014-02-26 16:25:56 -0800519 @SuppressWarnings("rawtypes")
520 private void decrementAssociatedCallCount(ServiceBinder binder) {
521 if (binder != null) {
522 binder.decrementAssociatedCallCount();
523 }
524 }
Ben Gilad9f2bed32013-12-12 17:43:26 -0800525}