blob: 024d7d49e2b587a9d0c836d775c02e49cd794f01 [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 Nepal4538f012014-04-15 11:40:33 -0700142 String component = null;
143 if (mCallService != null && mCallService.getComponentName() != null) {
144 component = mCallService.getComponentName().flattenToShortString();
145 }
146 return String.format(Locale.US, "[%s, %s, %s]", mState, component, Log.piiHandle(mHandle));
Santos Cordon61d0f702014-02-19 02:52:23 -0800147 }
148
Santos Cordon0b03b4b2014-01-29 18:01:59 -0800149 CallState getState() {
150 return mState;
151 }
152
153 /**
154 * Sets the call state. Although there exists the notion of appropriate state transitions
155 * (see {@link CallState}), in practice those expectations break down when cellular systems
156 * misbehave and they do this very often. The result is that we do not enforce state transitions
157 * and instead keep the code resilient to unexpected state changes.
158 */
Sailesh Nepal810735e2014-03-18 18:15:46 -0700159 void setState(CallState newState) {
Santos Cordon79ff2bc2014-03-27 15:31:27 -0700160 Preconditions.checkState(newState != CallState.DISCONNECTED ||
161 mDisconnectCause != DisconnectCause.NOT_VALID);
Sailesh Nepal810735e2014-03-18 18:15:46 -0700162 if (mState != newState) {
163 Log.v(this, "setState %s -> %s", mState, newState);
164 mState = newState;
Sailesh Nepal810735e2014-03-18 18:15:46 -0700165 }
Santos Cordon0b03b4b2014-01-29 18:01:59 -0800166 }
167
Sailesh Nepalce704b92014-03-17 18:31:43 -0700168 Uri getHandle() {
Ben Gilad0bf5b912014-01-28 17:55:57 -0800169 return mHandle;
170 }
171
Sailesh Nepalce704b92014-03-17 18:31:43 -0700172 void setHandle(Uri handle) {
Santos Cordon61d0f702014-02-19 02:52:23 -0800173 mHandle = handle;
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700174 mIsEmergencyCall = mHandle != null && PhoneNumberUtils.isLocalEmergencyNumber(
175 mHandle.getSchemeSpecificPart(), TelecommApp.getInstance());
176 }
177
Santos Cordon79ff2bc2014-03-27 15:31:27 -0700178 /**
179 * @param disconnectCause The reason for the disconnection, any of
180 * {@link android.telephony.DisconnectCause}.
181 * @param disconnectMessage Optional call-service-provided message about the disconnect.
182 */
183 void setDisconnectCause(int disconnectCause, String disconnectMessage) {
184 // TODO: Consider combining this method with a setDisconnected() method that is totally
185 // separate from setState.
186 mDisconnectCause = disconnectCause;
187 mDisconnectMessage = disconnectMessage;
188 }
189
190 int getDisconnectCause() {
191 return mDisconnectCause;
192 }
193
194 String getDisconnectMessage() {
195 return mDisconnectMessage;
196 }
197
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700198 boolean isEmergencyCall() {
199 return mIsEmergencyCall;
Santos Cordon61d0f702014-02-19 02:52:23 -0800200 }
201
Yorke Lee33501632014-03-17 19:24:12 -0700202 /**
203 * @return The original handle this call is associated with. In-call services should use this
204 * handle when indicating in their UI the handle that is being called.
205 */
206 public Uri getOriginalHandle() {
207 if (mGatewayInfo != null && !mGatewayInfo.isEmpty()) {
208 return mGatewayInfo.getOriginalHandle();
209 }
210 return getHandle();
211 }
212
213 GatewayInfo getGatewayInfo() {
214 return mGatewayInfo;
215 }
216
Ben Gilad0bf5b912014-01-28 17:55:57 -0800217 ContactInfo getContactInfo() {
218 return mContactInfo;
219 }
220
Sailesh Nepal810735e2014-03-18 18:15:46 -0700221 boolean isIncoming() {
222 return mIsIncoming;
223 }
224
Ben Gilad0407fb22014-01-09 16:18:41 -0800225 /**
226 * @return The "age" of this call object in milliseconds, which typically also represents the
Sailesh Nepal8c85dee2014-04-07 22:21:40 -0700227 * period since this call was added to the set pending outgoing calls, see
228 * mCreationTimeMillis.
Ben Gilad0407fb22014-01-09 16:18:41 -0800229 */
Sailesh Nepal8c85dee2014-04-07 22:21:40 -0700230 long getAgeMillis() {
231 return System.currentTimeMillis() - mCreationTimeMillis;
Ben Gilad0407fb22014-01-09 16:18:41 -0800232 }
Santos Cordon0b03b4b2014-01-29 18:01:59 -0800233
Yorke Leef98fb572014-03-05 10:56:55 -0800234 /**
235 * @return The time when this call object was created and added to the set of pending outgoing
236 * calls.
237 */
Sailesh Nepal8c85dee2014-04-07 22:21:40 -0700238 long getCreationTimeMillis() {
239 return mCreationTimeMillis;
240 }
241
242 long getConnectTimeMillis() {
243 return mConnectTimeMillis;
244 }
245
246 void setConnectTimeMillis(long connectTimeMillis) {
247 mConnectTimeMillis = connectTimeMillis;
Yorke Leef98fb572014-03-05 10:56:55 -0800248 }
249
Santos Cordonc195e362014-02-11 17:05:31 -0800250 CallServiceWrapper getCallService() {
Santos Cordon681663d2014-01-30 04:32:15 -0800251 return mCallService;
252 }
253
Santos Cordonc195e362014-02-11 17:05:31 -0800254 void setCallService(CallServiceWrapper callService) {
Sailesh Nepal0e5410a2014-04-04 01:20:58 -0700255 setCallService(callService, null);
256 }
257
258 /**
259 * Changes the call service this call is associated with. If callToReplace is non-null then this
260 * call takes its place within the call service.
261 */
262 void setCallService(CallServiceWrapper callService, Call callToReplace) {
Ben Gilad8e55d1d2014-02-26 16:25:56 -0800263 Preconditions.checkNotNull(callService);
264
Yorke Leeadee12d2014-03-13 12:08:30 -0700265 clearCallService();
Ben Gilad8e55d1d2014-02-26 16:25:56 -0800266
267 callService.incrementAssociatedCallCount();
Santos Cordon681663d2014-01-30 04:32:15 -0800268 mCallService = callService;
Sailesh Nepal0e5410a2014-04-04 01:20:58 -0700269 if (callToReplace == null) {
270 mCallService.addCall(this);
271 } else {
272 mCallService.replaceCall(this, callToReplace);
273 }
Santos Cordon681663d2014-01-30 04:32:15 -0800274 }
275
276 /**
277 * Clears the associated call service.
278 */
279 void clearCallService() {
Yorke Leeadee12d2014-03-13 12:08:30 -0700280 if (mCallService != null) {
281 decrementAssociatedCallCount(mCallService);
Sailesh Nepale59bb192014-04-01 18:33:59 -0700282 mCallService.removeCall(this);
Yorke Leeadee12d2014-03-13 12:08:30 -0700283 mCallService = null;
284 }
Ben Gilad8e55d1d2014-02-26 16:25:56 -0800285 }
286
Sailesh Nepal84fa5f82014-04-02 11:01:11 -0700287 CallServiceSelectorWrapper getCallServiceSelector() {
288 return mCallServiceSelector;
289 }
290
Sailesh Nepal18386a82014-03-19 10:22:40 -0700291 void setCallServiceSelector(CallServiceSelectorWrapper selector) {
Ben Gilad8e55d1d2014-02-26 16:25:56 -0800292 Preconditions.checkNotNull(selector);
Sailesh Nepale59bb192014-04-01 18:33:59 -0700293
294 clearCallServiceSelector();
295
Ben Gilad8e55d1d2014-02-26 16:25:56 -0800296 mCallServiceSelector = selector;
Sailesh Nepale59bb192014-04-01 18:33:59 -0700297 mCallServiceSelector.addCall(this);
Ben Gilad8e55d1d2014-02-26 16:25:56 -0800298 }
299
300 void clearCallServiceSelector() {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700301 if (mCallServiceSelector != null) {
302 // TODO(sail): Stop leaking selectors.
303 // decrementAssociatedCallCount(mCallServiceSelector);
304 mCallServiceSelector.removeCall(this);
305 mCallServiceSelector = null;
306 }
Ben Gilad8e55d1d2014-02-26 16:25:56 -0800307 }
308
309 /**
Ben Gilad61925612014-03-11 19:06:36 -0700310 * Adds the specified call service to the list of incompatible services. The set is used when
311 * attempting to switch a phone call between call services such that incompatible services can
312 * be avoided.
313 *
314 * @param callService The incompatible call service.
315 */
316 void addIncompatibleCallService(CallServiceWrapper callService) {
317 if (mIncompatibleCallServices == null) {
318 mIncompatibleCallServices = Sets.newHashSet();
319 }
320 mIncompatibleCallServices.add(callService);
321 }
322
323 /**
324 * Checks whether or not the specified callService was identified as incompatible in the
325 * context of this call.
326 *
327 * @param callService The call service to evaluate.
328 * @return True upon incompatible call services and false otherwise.
329 */
330 boolean isIncompatibleCallService(CallServiceWrapper callService) {
331 return mIncompatibleCallServices != null &&
332 mIncompatibleCallServices.contains(callService);
333 }
334
335 /**
Ben Gilad28e8ad62014-03-06 17:01:54 -0800336 * Aborts ongoing attempts to connect this call. Only applicable to {@link CallState#NEW}
337 * outgoing calls. See {@link #disconnect} for already-connected calls.
Ben Gilad8e55d1d2014-02-26 16:25:56 -0800338 */
339 void abort() {
Ben Gilad28e8ad62014-03-06 17:01:54 -0800340 if (mState == CallState.NEW) {
341 if (mCallService != null) {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700342 mCallService.abort(this);
Ben Gilad28e8ad62014-03-06 17:01:54 -0800343 }
Ben Gilad9c234112014-03-04 16:07:33 -0800344 clearCallService();
345 clearCallServiceSelector();
Ben Gilad8e55d1d2014-02-26 16:25:56 -0800346 }
Santos Cordon681663d2014-01-30 04:32:15 -0800347 }
348
Santos Cordonc195e362014-02-11 17:05:31 -0800349 /**
Ihab Awad74549ec2014-03-10 15:33:25 -0700350 * Plays the specified DTMF tone.
351 */
352 void playDtmfTone(char digit) {
353 if (mCallService == null) {
354 Log.w(this, "playDtmfTone() request on a call without a call service.");
355 } else {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700356 Log.i(this, "Send playDtmfTone to call service for call %s", this);
357 mCallService.playDtmfTone(this, digit);
Ihab Awad74549ec2014-03-10 15:33:25 -0700358 }
359 }
360
361 /**
362 * Stops playing any currently playing DTMF tone.
363 */
364 void stopDtmfTone() {
365 if (mCallService == null) {
366 Log.w(this, "stopDtmfTone() request on a call without a call service.");
367 } else {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700368 Log.i(this, "Send stopDtmfTone to call service for call %s", this);
369 mCallService.stopDtmfTone(this);
Ihab Awad74549ec2014-03-10 15:33:25 -0700370 }
371 }
372
373 /**
Santos Cordon049b7b62014-01-30 05:34:26 -0800374 * Attempts to disconnect the call through the call service.
375 */
376 void disconnect() {
377 if (mCallService == null) {
Ihab Awad4e0f1922014-04-14 17:35:38 -0700378 Log.d(this, "disconnect() request on a call without a call service.");
379 // In case this call is ringing, ensure we abort and clean up right away.
380 CallsManager.getInstance().abortCall(this);
Santos Cordon049b7b62014-01-30 05:34:26 -0800381 } else {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700382 Log.i(this, "Send disconnect to call service for call: %s", this);
Santos Cordonc195e362014-02-11 17:05:31 -0800383 // The call isn't officially disconnected until the call service confirms that the call
384 // was actually disconnected. Only then is the association between call and call service
385 // severed, see {@link CallsManager#markCallAsDisconnected}.
Sailesh Nepale59bb192014-04-01 18:33:59 -0700386 mCallService.disconnect(this);
Santos Cordon049b7b62014-01-30 05:34:26 -0800387 }
388 }
389
Santos Cordon0b03b4b2014-01-29 18:01:59 -0800390 /**
Santos Cordon61d0f702014-02-19 02:52:23 -0800391 * Answers the call if it is ringing.
392 */
393 void answer() {
394 Preconditions.checkNotNull(mCallService);
395
396 // Check to verify that the call is still in the ringing state. A call can change states
397 // between the time the user hits 'answer' and Telecomm receives the command.
398 if (isRinging("answer")) {
399 // At this point, we are asking the call service to answer but we don't assume that
400 // it will work. Instead, we wait until confirmation from the call service that the
401 // call is in a non-RINGING state before changing the UI. See
402 // {@link CallServiceAdapter#setActive} and other set* methods.
Sailesh Nepale59bb192014-04-01 18:33:59 -0700403 mCallService.answer(this);
Santos Cordon61d0f702014-02-19 02:52:23 -0800404 }
405 }
406
407 /**
408 * Rejects the call if it is ringing.
409 */
410 void reject() {
411 Preconditions.checkNotNull(mCallService);
412
413 // Check to verify that the call is still in the ringing state. A call can change states
414 // between the time the user hits 'reject' and Telecomm receives the command.
415 if (isRinging("reject")) {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700416 mCallService.reject(this);
Santos Cordon61d0f702014-02-19 02:52:23 -0800417 }
418 }
419
420 /**
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700421 * Puts the call on hold if it is currently active.
422 */
423 void hold() {
424 Preconditions.checkNotNull(mCallService);
425
426 if (mState == CallState.ACTIVE) {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700427 mCallService.hold(this);
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700428 }
429 }
430
431 /**
432 * Releases the call from hold if it is currently active.
433 */
434 void unhold() {
435 Preconditions.checkNotNull(mCallService);
436
437 if (mState == CallState.ON_HOLD) {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700438 mCallService.unhold(this);
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700439 }
440 }
441
442 /**
Santos Cordon0b03b4b2014-01-29 18:01:59 -0800443 * @return An object containing read-only information about this call.
444 */
Sailesh Nepale59bb192014-04-01 18:33:59 -0700445 CallInfo toCallInfo(String callId) {
Sailesh Nepal84fa5f82014-04-02 11:01:11 -0700446 CallServiceDescriptor descriptor = null;
447 if (mCallService != null) {
448 descriptor = mCallService.getDescriptor();
449 } else if (mOriginalCall != null && mOriginalCall.mCallService != null) {
450 descriptor = mOriginalCall.mCallService.getDescriptor();
451 }
452 return new CallInfo(callId, mState, mHandle, mGatewayInfo, mExtras, descriptor);
Santos Cordon0b03b4b2014-01-29 18:01:59 -0800453 }
454
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700455 /** Checks if this is a live call or not. */
456 boolean isAlive() {
457 switch (mState) {
458 case NEW:
459 case RINGING:
460 case DISCONNECTED:
461 case ABORTED:
462 return false;
463 default:
464 return true;
465 }
466 }
467
Santos Cordon40f78c22014-04-07 02:11:42 -0700468 boolean isActive() {
469 switch (mState) {
470 case ACTIVE:
471 case POST_DIAL:
472 case POST_DIAL_WAIT:
473 return true;
474 default:
475 return false;
476 }
477 }
478
Sailesh Nepal84fa5f82014-04-02 11:01:11 -0700479 Bundle getExtras() {
480 return mExtras;
481 }
482
483 void setExtras(Bundle extras) {
484 mExtras = extras;
485 }
486
487 Uri getHandoffHandle() {
488 return mHandoffHandle;
489 }
490
491 void setHandoffHandle(Uri handoffHandle) {
492 mHandoffHandle = handoffHandle;
493 }
494
495 Call getOriginalCall() {
496 return mOriginalCall;
497 }
498
499 void setOriginalCall(Call originalCall) {
500 mOriginalCall = originalCall;
501 }
502
Sailesh Nepal8c85dee2014-04-07 22:21:40 -0700503 CallServiceDescriptor getHandoffCallServiceDescriptor() {
504 return mHandoffCallServiceDescriptor;
505 }
506
507 void setHandoffCallServiceDescriptor(CallServiceDescriptor descriptor) {
508 mHandoffCallServiceDescriptor = descriptor;
509 }
510
Santos Cordon0b03b4b2014-01-29 18:01:59 -0800511 /**
Santos Cordon61d0f702014-02-19 02:52:23 -0800512 * @return True if the call is ringing, else logs the action name.
513 */
514 private boolean isRinging(String actionName) {
515 if (mState == CallState.RINGING) {
516 return true;
517 }
518
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800519 Log.i(this, "Request to %s a non-ringing call %s", actionName, this);
Santos Cordon61d0f702014-02-19 02:52:23 -0800520 return false;
521 }
522
Ben Gilad8e55d1d2014-02-26 16:25:56 -0800523 @SuppressWarnings("rawtypes")
524 private void decrementAssociatedCallCount(ServiceBinder binder) {
525 if (binder != null) {
526 binder.decrementAssociatedCallCount();
527 }
528 }
Ben Gilad9f2bed32013-12-12 17:43:26 -0800529}