blob: b33f862d029dec9e3df765bfd7dfa1c589629edc [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) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800378 Log.w(this, "disconnect() request on a call without a call service.");
Santos Cordon049b7b62014-01-30 05:34:26 -0800379 } else {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700380 Log.i(this, "Send disconnect to call service for call: %s", this);
Santos Cordonc195e362014-02-11 17:05:31 -0800381 // The call isn't officially disconnected until the call service confirms that the call
382 // was actually disconnected. Only then is the association between call and call service
383 // severed, see {@link CallsManager#markCallAsDisconnected}.
Sailesh Nepale59bb192014-04-01 18:33:59 -0700384 mCallService.disconnect(this);
Santos Cordon049b7b62014-01-30 05:34:26 -0800385 }
386 }
387
Santos Cordon0b03b4b2014-01-29 18:01:59 -0800388 /**
Santos Cordon61d0f702014-02-19 02:52:23 -0800389 * Answers the call if it is ringing.
390 */
391 void answer() {
392 Preconditions.checkNotNull(mCallService);
393
394 // Check to verify that the call is still in the ringing state. A call can change states
395 // between the time the user hits 'answer' and Telecomm receives the command.
396 if (isRinging("answer")) {
397 // At this point, we are asking the call service to answer but we don't assume that
398 // it will work. Instead, we wait until confirmation from the call service that the
399 // call is in a non-RINGING state before changing the UI. See
400 // {@link CallServiceAdapter#setActive} and other set* methods.
Sailesh Nepale59bb192014-04-01 18:33:59 -0700401 mCallService.answer(this);
Santos Cordon61d0f702014-02-19 02:52:23 -0800402 }
403 }
404
405 /**
406 * Rejects the call if it is ringing.
407 */
408 void reject() {
409 Preconditions.checkNotNull(mCallService);
410
411 // Check to verify that the call is still in the ringing state. A call can change states
412 // between the time the user hits 'reject' and Telecomm receives the command.
413 if (isRinging("reject")) {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700414 mCallService.reject(this);
Santos Cordon61d0f702014-02-19 02:52:23 -0800415 }
416 }
417
418 /**
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700419 * Puts the call on hold if it is currently active.
420 */
421 void hold() {
422 Preconditions.checkNotNull(mCallService);
423
424 if (mState == CallState.ACTIVE) {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700425 mCallService.hold(this);
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700426 }
427 }
428
429 /**
430 * Releases the call from hold if it is currently active.
431 */
432 void unhold() {
433 Preconditions.checkNotNull(mCallService);
434
435 if (mState == CallState.ON_HOLD) {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700436 mCallService.unhold(this);
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700437 }
438 }
439
440 /**
Santos Cordon0b03b4b2014-01-29 18:01:59 -0800441 * @return An object containing read-only information about this call.
442 */
Sailesh Nepale59bb192014-04-01 18:33:59 -0700443 CallInfo toCallInfo(String callId) {
Sailesh Nepal84fa5f82014-04-02 11:01:11 -0700444 CallServiceDescriptor descriptor = null;
445 if (mCallService != null) {
446 descriptor = mCallService.getDescriptor();
447 } else if (mOriginalCall != null && mOriginalCall.mCallService != null) {
448 descriptor = mOriginalCall.mCallService.getDescriptor();
449 }
450 return new CallInfo(callId, mState, mHandle, mGatewayInfo, mExtras, descriptor);
Santos Cordon0b03b4b2014-01-29 18:01:59 -0800451 }
452
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700453 /** Checks if this is a live call or not. */
454 boolean isAlive() {
455 switch (mState) {
456 case NEW:
457 case RINGING:
458 case DISCONNECTED:
459 case ABORTED:
460 return false;
461 default:
462 return true;
463 }
464 }
465
Santos Cordon40f78c22014-04-07 02:11:42 -0700466 boolean isActive() {
467 switch (mState) {
468 case ACTIVE:
469 case POST_DIAL:
470 case POST_DIAL_WAIT:
471 return true;
472 default:
473 return false;
474 }
475 }
476
Sailesh Nepal84fa5f82014-04-02 11:01:11 -0700477 Bundle getExtras() {
478 return mExtras;
479 }
480
481 void setExtras(Bundle extras) {
482 mExtras = extras;
483 }
484
485 Uri getHandoffHandle() {
486 return mHandoffHandle;
487 }
488
489 void setHandoffHandle(Uri handoffHandle) {
490 mHandoffHandle = handoffHandle;
491 }
492
493 Call getOriginalCall() {
494 return mOriginalCall;
495 }
496
497 void setOriginalCall(Call originalCall) {
498 mOriginalCall = originalCall;
499 }
500
Sailesh Nepal8c85dee2014-04-07 22:21:40 -0700501 CallServiceDescriptor getHandoffCallServiceDescriptor() {
502 return mHandoffCallServiceDescriptor;
503 }
504
505 void setHandoffCallServiceDescriptor(CallServiceDescriptor descriptor) {
506 mHandoffCallServiceDescriptor = descriptor;
507 }
508
Santos Cordon0b03b4b2014-01-29 18:01:59 -0800509 /**
Santos Cordon61d0f702014-02-19 02:52:23 -0800510 * @return True if the call is ringing, else logs the action name.
511 */
512 private boolean isRinging(String actionName) {
513 if (mState == CallState.RINGING) {
514 return true;
515 }
516
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800517 Log.i(this, "Request to %s a non-ringing call %s", actionName, this);
Santos Cordon61d0f702014-02-19 02:52:23 -0800518 return false;
519 }
520
Ben Gilad8e55d1d2014-02-26 16:25:56 -0800521 @SuppressWarnings("rawtypes")
522 private void decrementAssociatedCallCount(ServiceBinder binder) {
523 if (binder != null) {
524 binder.decrementAssociatedCallCount();
525 }
526 }
Ben Gilad9f2bed32013-12-12 17:43:26 -0800527}