blob: da7c54d27d615de945c8ab1a91e6093d2356d197 [file] [log] [blame]
Eric Erfanianccca3152017-02-22 16:32:36 -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
17package com.android.incallui.call;
18
wangqi9982f0d2017-10-11 17:46:07 -070019import android.Manifest.permission;
wangqida410d32018-03-06 16:51:38 -080020import android.annotation.SuppressLint;
wangqi8d407a02018-02-15 15:32:52 -080021import android.annotation.TargetApi;
Eric Erfanianccca3152017-02-22 16:32:36 -080022import android.content.Context;
23import android.hardware.camera2.CameraCharacteristics;
24import android.net.Uri;
erfanian2cf2c342017-12-21 12:01:33 -080025import android.os.Build;
Eric Erfanianccca3152017-02-22 16:32:36 -080026import android.os.Build.VERSION;
27import android.os.Build.VERSION_CODES;
28import android.os.Bundle;
wangqida410d32018-03-06 16:51:38 -080029import android.os.PersistableBundle;
maxwelbd95d0f62018-05-01 17:50:55 -070030import android.os.SystemClock;
Eric Erfanianccca3152017-02-22 16:32:36 -080031import android.os.Trace;
32import android.support.annotation.IntDef;
Eric Erfaniand5e47f62017-03-15 14:41:07 -070033import android.support.annotation.NonNull;
Eric Erfanianccca3152017-02-22 16:32:36 -080034import android.support.annotation.Nullable;
twyendde01c52017-09-22 10:07:31 -070035import android.support.annotation.VisibleForTesting;
wangqif4ba3452018-01-09 11:26:29 -080036import android.support.v4.os.BuildCompat;
Eric Erfanianccca3152017-02-22 16:32:36 -080037import android.telecom.Call;
38import android.telecom.Call.Details;
wangqi219b8702018-02-13 09:34:41 -080039import android.telecom.Call.RttCall;
Eric Erfanian8369df02017-05-03 10:27:13 -070040import android.telecom.CallAudioState;
Eric Erfanianccca3152017-02-22 16:32:36 -080041import android.telecom.Connection;
42import android.telecom.DisconnectCause;
43import android.telecom.GatewayInfo;
44import android.telecom.InCallService.VideoCall;
45import android.telecom.PhoneAccount;
46import android.telecom.PhoneAccountHandle;
47import android.telecom.StatusHints;
48import android.telecom.TelecomManager;
49import android.telecom.VideoProfile;
Eric Erfanianccca3152017-02-22 16:32:36 -080050import android.text.TextUtils;
roldenburg08424ee2018-03-28 17:02:46 -070051import android.widget.Toast;
Eric Erfanianccca3152017-02-22 16:32:36 -080052import com.android.contacts.common.compat.CallCompat;
erfanian2cf2c342017-12-21 12:01:33 -080053import com.android.dialer.assisteddialing.ConcreteCreator;
erfaniand0f207f2017-10-11 12:23:29 -070054import com.android.dialer.assisteddialing.TransformationInfo;
maxwelbb87334b2018-05-14 13:57:32 -070055import com.android.dialer.blocking.FilteredNumbersUtil;
Eric Erfanian8369df02017-05-03 10:27:13 -070056import com.android.dialer.callintent.CallInitiationType;
Eric Erfanianccca3152017-02-22 16:32:36 -080057import com.android.dialer.callintent.CallIntentParser;
Eric Erfanian8369df02017-05-03 10:27:13 -070058import com.android.dialer.callintent.CallSpecificAppData;
Eric Erfanianccca3152017-02-22 16:32:36 -080059import com.android.dialer.common.Assert;
Eric Erfanianccca3152017-02-22 16:32:36 -080060import com.android.dialer.common.LogUtil;
wangqid6b10d52018-04-12 14:44:06 -070061import com.android.dialer.common.concurrent.DefaultFutureCallback;
Eric Erfanian2ca43182017-08-31 06:57:16 -070062import com.android.dialer.compat.telephony.TelephonyManagerCompat;
63import com.android.dialer.configprovider.ConfigProviderBindings;
roldenburg4f026392017-10-13 18:42:20 -070064import com.android.dialer.duo.DuoComponent;
Eric Erfanian8369df02017-05-03 10:27:13 -070065import com.android.dialer.enrichedcall.EnrichedCallCapabilities;
Eric Erfaniand5e47f62017-03-15 14:41:07 -070066import com.android.dialer.enrichedcall.EnrichedCallComponent;
Eric Erfanian2ca43182017-08-31 06:57:16 -070067import com.android.dialer.enrichedcall.EnrichedCallManager;
68import com.android.dialer.enrichedcall.EnrichedCallManager.CapabilitiesListener;
69import com.android.dialer.enrichedcall.EnrichedCallManager.Filter;
70import com.android.dialer.enrichedcall.EnrichedCallManager.StateChangedListener;
Eric Erfanian8369df02017-05-03 10:27:13 -070071import com.android.dialer.enrichedcall.Session;
wangqi9982f0d2017-10-11 17:46:07 -070072import com.android.dialer.location.GeoUtil;
Eric Erfanian8369df02017-05-03 10:27:13 -070073import com.android.dialer.logging.ContactLookupResult;
twyendde01c52017-09-22 10:07:31 -070074import com.android.dialer.logging.ContactLookupResult.Type;
Eric Erfanian8369df02017-05-03 10:27:13 -070075import com.android.dialer.logging.DialerImpression;
76import com.android.dialer.logging.Logger;
twyen73a74c32018-03-07 12:12:24 -080077import com.android.dialer.preferredsim.PreferredAccountRecorder;
wangqied677ef2018-04-04 12:03:00 -070078import com.android.dialer.rtt.RttTranscript;
wangqid6b10d52018-04-12 14:44:06 -070079import com.android.dialer.rtt.RttTranscriptUtil;
maxwelbb87334b2018-05-14 13:57:32 -070080import com.android.dialer.spam.status.SpamStatus;
twyena4745bd2017-12-12 18:40:11 -080081import com.android.dialer.telecom.TelecomCallUtil;
wangqi9982f0d2017-10-11 17:46:07 -070082import com.android.dialer.telecom.TelecomUtil;
Eric Erfanianc857f902017-05-15 14:05:33 -070083import com.android.dialer.theme.R;
maxwelbd95d0f62018-05-01 17:50:55 -070084import com.android.dialer.time.Clock;
wangqi9982f0d2017-10-11 17:46:07 -070085import com.android.dialer.util.PermissionsUtil;
Eric Erfanian8369df02017-05-03 10:27:13 -070086import com.android.incallui.audiomode.AudioModeProvider;
wangqibb94ca62018-04-27 14:34:04 -070087import com.android.incallui.call.state.DialerCallState;
Eric Erfanianccca3152017-02-22 16:32:36 -080088import com.android.incallui.latencyreport.LatencyReport;
wangqibed9e2f2018-04-30 11:55:07 -070089import com.android.incallui.rtt.protocol.RttChatMessage;
Eric Erfaniand5e47f62017-03-15 14:41:07 -070090import com.android.incallui.videotech.VideoTech;
91import com.android.incallui.videotech.VideoTech.VideoTechListener;
roldenburg4f026392017-10-13 18:42:20 -070092import com.android.incallui.videotech.duo.DuoVideoTech;
Eric Erfaniand5e47f62017-03-15 14:41:07 -070093import com.android.incallui.videotech.empty.EmptyVideoTech;
94import com.android.incallui.videotech.ims.ImsVideoTech;
Eric Erfanian90508232017-03-24 09:31:16 -070095import com.android.incallui.videotech.utils.VideoUtils;
maxwelbb87334b2018-05-14 13:57:32 -070096import com.google.common.base.Optional;
wangqid6b10d52018-04-12 14:44:06 -070097import com.google.common.util.concurrent.Futures;
wangqid6b10d52018-04-12 14:44:06 -070098import com.google.common.util.concurrent.MoreExecutors;
wangqibed9e2f2018-04-30 11:55:07 -070099import java.io.IOException;
Eric Erfanianccca3152017-02-22 16:32:36 -0800100import java.lang.annotation.Retention;
101import java.lang.annotation.RetentionPolicy;
102import java.util.ArrayList;
103import java.util.List;
104import java.util.Locale;
105import java.util.Objects;
106import java.util.UUID;
107import java.util.concurrent.CopyOnWriteArrayList;
108import java.util.concurrent.TimeUnit;
109
110/** Describes a single call and its state. */
Eric Erfanian2ca43182017-08-31 06:57:16 -0700111public class DialerCall implements VideoTechListener, StateChangedListener, CapabilitiesListener {
Eric Erfanianccca3152017-02-22 16:32:36 -0800112
113 public static final int CALL_HISTORY_STATUS_UNKNOWN = 0;
114 public static final int CALL_HISTORY_STATUS_PRESENT = 1;
115 public static final int CALL_HISTORY_STATUS_NOT_PRESENT = 2;
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700116
117 // Hard coded property for {@code Call}. Upstreamed change from Motorola.
Eric Erfanian938468d2017-10-24 14:05:52 -0700118 // TODO(a bug): Move it to Telecom in framework.
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700119 public static final int PROPERTY_CODEC_KNOWN = 0x04000000;
120
Eric Erfanianccca3152017-02-22 16:32:36 -0800121 private static final String ID_PREFIX = "DialerCall_";
maxwelbc1401222018-05-03 11:51:02 -0700122
123 @VisibleForTesting
124 public static final String CONFIG_EMERGENCY_CALLBACK_WINDOW_MILLIS =
Eric Erfanianccca3152017-02-22 16:32:36 -0800125 "emergency_callback_window_millis";
maxwelbc1401222018-05-03 11:51:02 -0700126
linyuh183cb712017-12-27 17:02:37 -0800127 private static int idCounter = 0;
Eric Erfanianccca3152017-02-22 16:32:36 -0800128
129 /**
Eric Erfanianc857f902017-05-15 14:05:33 -0700130 * A counter used to append to restricted/private/hidden calls so that users can identify them in
131 * a conversation. This value is reset in {@link CallList#onCallRemoved(Context, Call)} when there
132 * are no live calls.
133 */
linyuh183cb712017-12-27 17:02:37 -0800134 private static int hiddenCounter;
Eric Erfanianc857f902017-05-15 14:05:33 -0700135
136 /**
Eric Erfanianccca3152017-02-22 16:32:36 -0800137 * The unique call ID for every call. This will help us to identify each call and allow us the
138 * ability to stitch impressions to calls if needed.
139 */
140 private final String uniqueCallId = UUID.randomUUID().toString();
141
linyuh183cb712017-12-27 17:02:37 -0800142 private final Call telecomCall;
143 private final LatencyReport latencyReport;
144 private final String id;
145 private final int hiddenId;
146 private final List<String> childCallIds = new ArrayList<>();
147 private final LogState logState = new LogState();
148 private final Context context;
149 private final DialerCallDelegate dialerCallDelegate;
150 private final List<DialerCallListener> listeners = new CopyOnWriteArrayList<>();
151 private final List<CannedTextResponsesLoadedListener> cannedTextResponsesLoadedListeners =
Eric Erfanianccca3152017-02-22 16:32:36 -0800152 new CopyOnWriteArrayList<>();
linyuh183cb712017-12-27 17:02:37 -0800153 private final VideoTechManager videoTechManager;
Eric Erfanianccca3152017-02-22 16:32:36 -0800154
erfaniand05d8992018-03-20 19:42:26 -0700155 private boolean isSpeakEasyCall;
linyuh183cb712017-12-27 17:02:37 -0800156 private boolean isEmergencyCall;
157 private Uri handle;
wangqibb94ca62018-04-27 14:34:04 -0700158 private int state = DialerCallState.INVALID;
linyuh183cb712017-12-27 17:02:37 -0800159 private DisconnectCause disconnectCause;
Eric Erfanianccca3152017-02-22 16:32:36 -0800160
roldenburg08424ee2018-03-28 17:02:46 -0700161 private boolean hasShownLteToWiFiHandoverToast;
Eric Erfanianccca3152017-02-22 16:32:36 -0800162 private boolean hasShownWiFiToLteHandoverToast;
163 private boolean doNotShowDialogForHandoffToWifiFailure;
164
linyuh183cb712017-12-27 17:02:37 -0800165 private String childNumber;
166 private String lastForwardedNumber;
wangqif4ba3452018-01-09 11:26:29 -0800167 private boolean isCallForwarded;
linyuh183cb712017-12-27 17:02:37 -0800168 private String callSubject;
twyen27c37182018-04-24 11:48:12 -0700169 @Nullable private PhoneAccountHandle phoneAccountHandle;
linyuh183cb712017-12-27 17:02:37 -0800170 @CallHistoryStatus private int callHistoryStatus = CALL_HISTORY_STATUS_UNKNOWN;
maxwelbb87334b2018-05-14 13:57:32 -0700171
172 @Nullable private SpamStatus spamStatus;
linyuh183cb712017-12-27 17:02:37 -0800173 private boolean isBlocked;
Eric Erfanian938468d2017-10-24 14:05:52 -0700174
Eric Erfanianccca3152017-02-22 16:32:36 -0800175 private boolean didShowCameraPermission;
wangqida410d32018-03-06 16:51:38 -0800176 private boolean didDismissVideoChargesAlertDialog;
177 private PersistableBundle carrierConfig;
Eric Erfanianccca3152017-02-22 16:32:36 -0800178 private String callProviderLabel;
179 private String callbackNumber;
linyuh183cb712017-12-27 17:02:37 -0800180 private int cameraDirection = CameraDirection.CAMERA_DIRECTION_UNKNOWN;
181 private EnrichedCallCapabilities enrichedCallCapabilities;
182 private Session enrichedCallSession;
Eric Erfanianccca3152017-02-22 16:32:36 -0800183
Eric Erfanian2ca43182017-08-31 06:57:16 -0700184 private int answerAndReleaseButtonDisplayedTimes = 0;
185 private boolean releasedByAnsweringSecondCall = false;
186 // Times when a second call is received but AnswerAndRelease button is not shown
187 // since it's not supported.
188 private int secondCallWithoutAnswerAndReleasedButtonTimes = 0;
roldenburg7bb96232017-10-09 10:32:05 -0700189 private VideoTech videoTech;
Eric Erfanian2ca43182017-08-31 06:57:16 -0700190
wangqi4d705e52017-09-28 12:23:35 -0700191 private com.android.dialer.logging.VideoTech.Type selectedAvailableVideoTechType =
192 com.android.dialer.logging.VideoTech.Type.NONE;
wangqi9982f0d2017-10-11 17:46:07 -0700193 private boolean isVoicemailNumber;
194 private List<PhoneAccountHandle> callCapableAccounts;
195 private String countryIso;
yueg457b3972017-09-18 15:11:47 -0700196
Android Dialer974fc292018-02-01 16:12:25 -0800197 private volatile boolean feedbackRequested = false;
198
maxwelbd95d0f62018-05-01 17:50:55 -0700199 private Clock clock = System::currentTimeMillis;
200
twyen73a74c32018-03-07 12:12:24 -0800201 @Nullable private PreferredAccountRecorder preferredAccountRecorder;
wangqia0c49f62018-04-25 15:04:01 -0700202 private boolean isCallRemoved;
twyen73a74c32018-03-07 12:12:24 -0800203
Eric Erfanianccca3152017-02-22 16:32:36 -0800204 public static String getNumberFromHandle(Uri handle) {
205 return handle == null ? "" : handle.getSchemeSpecificPart();
206 }
207
208 /**
209 * Whether the call is put on hold by remote party. This is different than the {@link
wangqibb94ca62018-04-27 14:34:04 -0700210 * DialerCallState#ONHOLD} state which indicates that the call is being held locally on the
211 * device.
Eric Erfanianccca3152017-02-22 16:32:36 -0800212 */
213 private boolean isRemotelyHeld;
214
Eric Erfanian2ca43182017-08-31 06:57:16 -0700215 /** Indicates whether this call is currently in the process of being merged into a conference. */
216 private boolean isMergeInProcess;
217
Eric Erfanianccca3152017-02-22 16:32:36 -0800218 /**
219 * Indicates whether the phone account associated with this call supports specifying a call
220 * subject.
221 */
linyuh183cb712017-12-27 17:02:37 -0800222 private boolean isCallSubjectSupported;
Eric Erfanianccca3152017-02-22 16:32:36 -0800223
wangqied677ef2018-04-04 12:03:00 -0700224 public RttTranscript getRttTranscript() {
225 return rttTranscript;
226 }
227
228 public void setRttTranscript(RttTranscript rttTranscript) {
229 this.rttTranscript = rttTranscript;
230 }
231
232 private RttTranscript rttTranscript;
233
linyuh183cb712017-12-27 17:02:37 -0800234 private final Call.Callback telecomCallCallback =
Eric Erfanianccca3152017-02-22 16:32:36 -0800235 new Call.Callback() {
236 @Override
237 public void onStateChanged(Call call, int newState) {
238 LogUtil.v("TelecomCallCallback.onStateChanged", "call=" + call + " newState=" + newState);
239 update();
240 }
241
242 @Override
243 public void onParentChanged(Call call, Call newParent) {
244 LogUtil.v(
245 "TelecomCallCallback.onParentChanged", "call=" + call + " newParent=" + newParent);
246 update();
247 }
248
249 @Override
250 public void onChildrenChanged(Call call, List<Call> children) {
251 update();
252 }
253
254 @Override
255 public void onDetailsChanged(Call call, Call.Details details) {
Eric Erfanian2ca43182017-08-31 06:57:16 -0700256 LogUtil.v(
257 "TelecomCallCallback.onDetailsChanged", " call=" + call + " details=" + details);
Eric Erfanianccca3152017-02-22 16:32:36 -0800258 update();
259 }
260
261 @Override
262 public void onCannedTextResponsesLoaded(Call call, List<String> cannedTextResponses) {
263 LogUtil.v(
Eric Erfanian2ca43182017-08-31 06:57:16 -0700264 "TelecomCallCallback.onCannedTextResponsesLoaded",
Eric Erfanianccca3152017-02-22 16:32:36 -0800265 "call=" + call + " cannedTextResponses=" + cannedTextResponses);
linyuh183cb712017-12-27 17:02:37 -0800266 for (CannedTextResponsesLoadedListener listener : cannedTextResponsesLoadedListeners) {
Eric Erfanianccca3152017-02-22 16:32:36 -0800267 listener.onCannedTextResponsesLoaded(DialerCall.this);
268 }
269 }
270
271 @Override
272 public void onPostDialWait(Call call, String remainingPostDialSequence) {
273 LogUtil.v(
Eric Erfanian2ca43182017-08-31 06:57:16 -0700274 "TelecomCallCallback.onPostDialWait",
Eric Erfanianccca3152017-02-22 16:32:36 -0800275 "call=" + call + " remainingPostDialSequence=" + remainingPostDialSequence);
276 update();
277 }
278
279 @Override
280 public void onVideoCallChanged(Call call, VideoCall videoCall) {
281 LogUtil.v(
Eric Erfanian2ca43182017-08-31 06:57:16 -0700282 "TelecomCallCallback.onVideoCallChanged", "call=" + call + " videoCall=" + videoCall);
Eric Erfanianccca3152017-02-22 16:32:36 -0800283 update();
284 }
285
286 @Override
287 public void onCallDestroyed(Call call) {
Eric Erfanian2ca43182017-08-31 06:57:16 -0700288 LogUtil.v("TelecomCallCallback.onCallDestroyed", "call=" + call);
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700289 unregisterCallback();
Eric Erfanianccca3152017-02-22 16:32:36 -0800290 }
291
292 @Override
293 public void onConferenceableCallsChanged(Call call, List<Call> conferenceableCalls) {
294 LogUtil.v(
Eric Erfanian2ca43182017-08-31 06:57:16 -0700295 "TelecomCallCallback.onConferenceableCallsChanged",
Eric Erfanianccca3152017-02-22 16:32:36 -0800296 "call %s, conferenceable calls: %d",
297 call,
298 conferenceableCalls.size());
299 update();
300 }
301
302 @Override
wangqi219b8702018-02-13 09:34:41 -0800303 public void onRttModeChanged(Call call, int mode) {
304 LogUtil.v("TelecomCallCallback.onRttModeChanged", "mode=%d", mode);
305 }
306
307 @Override
308 public void onRttRequest(Call call, int id) {
309 LogUtil.v("TelecomCallCallback.onRttRequest", "id=%d", id);
wangqibc28ea72018-04-02 16:23:00 -0700310 for (DialerCallListener listener : listeners) {
311 listener.onDialerCallUpgradeToRtt(id);
312 }
wangqi219b8702018-02-13 09:34:41 -0800313 }
314
315 @Override
316 public void onRttInitiationFailure(Call call, int reason) {
317 LogUtil.v("TelecomCallCallback.onRttInitiationFailure", "reason=%d", reason);
318 update();
319 }
320
321 @Override
322 public void onRttStatusChanged(Call call, boolean enabled, RttCall rttCall) {
323 LogUtil.v("TelecomCallCallback.onRttStatusChanged", "enabled=%b", enabled);
wangqi81e373e2018-04-24 10:50:57 -0700324 if (enabled) {
325 Logger.get(context)
326 .logCallImpression(
327 DialerImpression.Type.RTT_MID_CALL_ENABLED,
328 getUniqueCallId(),
329 getTimeAddedMs());
330 }
wangqi219b8702018-02-13 09:34:41 -0800331 update();
332 }
333
334 @Override
Eric Erfanianccca3152017-02-22 16:32:36 -0800335 public void onConnectionEvent(android.telecom.Call call, String event, Bundle extras) {
336 LogUtil.v(
Eric Erfanian2ca43182017-08-31 06:57:16 -0700337 "TelecomCallCallback.onConnectionEvent",
Eric Erfanianccca3152017-02-22 16:32:36 -0800338 "Call: " + call + ", Event: " + event + ", Extras: " + extras);
339 switch (event) {
340 // The Previous attempt to Merge two calls together has failed in Telecom. We must
341 // now update the UI to possibly re-enable the Merge button based on the number of
342 // currently conferenceable calls available or Connection Capabilities.
343 case android.telecom.Connection.EVENT_CALL_MERGE_FAILED:
344 update();
345 break;
346 case TelephonyManagerCompat.EVENT_HANDOVER_VIDEO_FROM_WIFI_TO_LTE:
347 notifyWiFiToLteHandover();
348 break;
roldenburg08424ee2018-03-28 17:02:46 -0700349 case TelephonyManagerCompat.EVENT_HANDOVER_VIDEO_FROM_LTE_TO_WIFI:
350 onLteToWifiHandover();
351 break;
Eric Erfanianccca3152017-02-22 16:32:36 -0800352 case TelephonyManagerCompat.EVENT_HANDOVER_TO_WIFI_FAILED:
353 notifyHandoverToWifiFailed();
354 break;
355 case TelephonyManagerCompat.EVENT_CALL_REMOTELY_HELD:
356 isRemotelyHeld = true;
357 update();
358 break;
359 case TelephonyManagerCompat.EVENT_CALL_REMOTELY_UNHELD:
360 isRemotelyHeld = false;
361 update();
362 break;
Eric Erfanianc857f902017-05-15 14:05:33 -0700363 case TelephonyManagerCompat.EVENT_NOTIFY_INTERNATIONAL_CALL_ON_WFC:
364 notifyInternationalCallOnWifi();
365 break;
Eric Erfanian2ca43182017-08-31 06:57:16 -0700366 case TelephonyManagerCompat.EVENT_MERGE_START:
367 LogUtil.i("DialerCall.onConnectionEvent", "merge start");
368 isMergeInProcess = true;
369 break;
370 case TelephonyManagerCompat.EVENT_MERGE_COMPLETE:
371 LogUtil.i("DialerCall.onConnectionEvent", "merge complete");
372 isMergeInProcess = false;
373 break;
wangqif4ba3452018-01-09 11:26:29 -0800374 case TelephonyManagerCompat.EVENT_CALL_FORWARDED:
375 // Only handle this event for P+ since it's unreliable pre-P.
376 if (BuildCompat.isAtLeastP()) {
377 isCallForwarded = true;
378 update();
379 }
380 break;
Eric Erfanianccca3152017-02-22 16:32:36 -0800381 default:
382 break;
383 }
384 }
385 };
Eric Erfanianc857f902017-05-15 14:05:33 -0700386
linyuh183cb712017-12-27 17:02:37 -0800387 private long timeAddedMs;
Eric Erfanianccca3152017-02-22 16:32:36 -0800388
389 public DialerCall(
390 Context context,
391 DialerCallDelegate dialerCallDelegate,
392 Call telecomCall,
393 LatencyReport latencyReport,
394 boolean registerCallback) {
395 Assert.isNotNull(context);
linyuh183cb712017-12-27 17:02:37 -0800396 this.context = context;
397 this.dialerCallDelegate = dialerCallDelegate;
398 this.telecomCall = telecomCall;
399 this.latencyReport = latencyReport;
400 id = ID_PREFIX + Integer.toString(idCounter++);
Eric Erfanianccca3152017-02-22 16:32:36 -0800401
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700402 // Must be after assigning mTelecomCall
linyuh183cb712017-12-27 17:02:37 -0800403 videoTechManager = new VideoTechManager(this);
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700404
405 updateFromTelecomCall();
Eric Erfanianc857f902017-05-15 14:05:33 -0700406 if (isHiddenNumber() && TextUtils.isEmpty(getNumber())) {
linyuh183cb712017-12-27 17:02:37 -0800407 hiddenId = ++hiddenCounter;
Eric Erfanianc857f902017-05-15 14:05:33 -0700408 } else {
linyuh183cb712017-12-27 17:02:37 -0800409 hiddenId = 0;
Eric Erfanianc857f902017-05-15 14:05:33 -0700410 }
Eric Erfanianccca3152017-02-22 16:32:36 -0800411
412 if (registerCallback) {
linyuh183cb712017-12-27 17:02:37 -0800413 this.telecomCall.registerCallback(telecomCallCallback);
Eric Erfanianccca3152017-02-22 16:32:36 -0800414 }
415
linyuh183cb712017-12-27 17:02:37 -0800416 timeAddedMs = System.currentTimeMillis();
Eric Erfanianccca3152017-02-22 16:32:36 -0800417 parseCallSpecificAppData();
Eric Erfanian2ca43182017-08-31 06:57:16 -0700418
419 updateEnrichedCallSession();
Eric Erfanianccca3152017-02-22 16:32:36 -0800420 }
421
422 private static int translateState(int state) {
423 switch (state) {
424 case Call.STATE_NEW:
425 case Call.STATE_CONNECTING:
wangqibb94ca62018-04-27 14:34:04 -0700426 return DialerCallState.CONNECTING;
Eric Erfanianccca3152017-02-22 16:32:36 -0800427 case Call.STATE_SELECT_PHONE_ACCOUNT:
wangqibb94ca62018-04-27 14:34:04 -0700428 return DialerCallState.SELECT_PHONE_ACCOUNT;
Eric Erfanianccca3152017-02-22 16:32:36 -0800429 case Call.STATE_DIALING:
wangqibb94ca62018-04-27 14:34:04 -0700430 return DialerCallState.DIALING;
Eric Erfanianccca3152017-02-22 16:32:36 -0800431 case Call.STATE_PULLING_CALL:
wangqibb94ca62018-04-27 14:34:04 -0700432 return DialerCallState.PULLING;
Eric Erfanianccca3152017-02-22 16:32:36 -0800433 case Call.STATE_RINGING:
wangqibb94ca62018-04-27 14:34:04 -0700434 return DialerCallState.INCOMING;
Eric Erfanianccca3152017-02-22 16:32:36 -0800435 case Call.STATE_ACTIVE:
wangqibb94ca62018-04-27 14:34:04 -0700436 return DialerCallState.ACTIVE;
Eric Erfanianccca3152017-02-22 16:32:36 -0800437 case Call.STATE_HOLDING:
wangqibb94ca62018-04-27 14:34:04 -0700438 return DialerCallState.ONHOLD;
Eric Erfanianccca3152017-02-22 16:32:36 -0800439 case Call.STATE_DISCONNECTED:
wangqibb94ca62018-04-27 14:34:04 -0700440 return DialerCallState.DISCONNECTED;
Eric Erfanianccca3152017-02-22 16:32:36 -0800441 case Call.STATE_DISCONNECTING:
wangqibb94ca62018-04-27 14:34:04 -0700442 return DialerCallState.DISCONNECTING;
Eric Erfanianccca3152017-02-22 16:32:36 -0800443 default:
wangqibb94ca62018-04-27 14:34:04 -0700444 return DialerCallState.INVALID;
Eric Erfanianccca3152017-02-22 16:32:36 -0800445 }
446 }
447
448 public static boolean areSame(DialerCall call1, DialerCall call2) {
449 if (call1 == null && call2 == null) {
450 return true;
451 } else if (call1 == null || call2 == null) {
452 return false;
453 }
454
455 // otherwise compare call Ids
456 return call1.getId().equals(call2.getId());
457 }
458
Eric Erfanianccca3152017-02-22 16:32:36 -0800459 public void addListener(DialerCallListener listener) {
460 Assert.isMainThread();
linyuh183cb712017-12-27 17:02:37 -0800461 listeners.add(listener);
Eric Erfanianccca3152017-02-22 16:32:36 -0800462 }
463
464 public void removeListener(DialerCallListener listener) {
465 Assert.isMainThread();
linyuh183cb712017-12-27 17:02:37 -0800466 listeners.remove(listener);
Eric Erfanianccca3152017-02-22 16:32:36 -0800467 }
468
469 public void addCannedTextResponsesLoadedListener(CannedTextResponsesLoadedListener listener) {
470 Assert.isMainThread();
linyuh183cb712017-12-27 17:02:37 -0800471 cannedTextResponsesLoadedListeners.add(listener);
Eric Erfanianccca3152017-02-22 16:32:36 -0800472 }
473
474 public void removeCannedTextResponsesLoadedListener(CannedTextResponsesLoadedListener listener) {
475 Assert.isMainThread();
linyuh183cb712017-12-27 17:02:37 -0800476 cannedTextResponsesLoadedListeners.remove(listener);
Eric Erfanianccca3152017-02-22 16:32:36 -0800477 }
478
roldenburg08424ee2018-03-28 17:02:46 -0700479 private void onLteToWifiHandover() {
480 LogUtil.enterBlock("DialerCall.onLteToWifiHandover");
481 if (hasShownLteToWiFiHandoverToast) {
482 return;
483 }
484
485 Toast.makeText(context, R.string.video_call_lte_to_wifi_handover_toast, Toast.LENGTH_LONG)
486 .show();
487 hasShownLteToWiFiHandoverToast = true;
488 }
489
Eric Erfanianccca3152017-02-22 16:32:36 -0800490 public void notifyWiFiToLteHandover() {
491 LogUtil.i("DialerCall.notifyWiFiToLteHandover", "");
linyuh183cb712017-12-27 17:02:37 -0800492 for (DialerCallListener listener : listeners) {
Eric Erfanianccca3152017-02-22 16:32:36 -0800493 listener.onWiFiToLteHandover();
494 }
495 }
496
497 public void notifyHandoverToWifiFailed() {
498 LogUtil.i("DialerCall.notifyHandoverToWifiFailed", "");
linyuh183cb712017-12-27 17:02:37 -0800499 for (DialerCallListener listener : listeners) {
Eric Erfanianccca3152017-02-22 16:32:36 -0800500 listener.onHandoverToWifiFailure();
501 }
502 }
503
Eric Erfanianc857f902017-05-15 14:05:33 -0700504 public void notifyInternationalCallOnWifi() {
505 LogUtil.enterBlock("DialerCall.notifyInternationalCallOnWifi");
linyuh183cb712017-12-27 17:02:37 -0800506 for (DialerCallListener dialerCallListener : listeners) {
Eric Erfanianc857f902017-05-15 14:05:33 -0700507 dialerCallListener.onInternationalCallOnWifi();
508 }
509 }
510
Eric Erfanianccca3152017-02-22 16:32:36 -0800511 /* package-private */ Call getTelecomCall() {
linyuh183cb712017-12-27 17:02:37 -0800512 return telecomCall;
Eric Erfanianccca3152017-02-22 16:32:36 -0800513 }
wangqida410d32018-03-06 16:51:38 -0800514
Eric Erfanianccca3152017-02-22 16:32:36 -0800515 public StatusHints getStatusHints() {
linyuh183cb712017-12-27 17:02:37 -0800516 return telecomCall.getDetails().getStatusHints();
Eric Erfanianccca3152017-02-22 16:32:36 -0800517 }
518
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700519 public int getCameraDir() {
linyuh183cb712017-12-27 17:02:37 -0800520 return cameraDirection;
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700521 }
522
523 public void setCameraDir(int cameraDir) {
524 if (cameraDir == CameraDirection.CAMERA_DIRECTION_FRONT_FACING
525 || cameraDir == CameraDirection.CAMERA_DIRECTION_BACK_FACING) {
linyuh183cb712017-12-27 17:02:37 -0800526 cameraDirection = cameraDir;
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700527 } else {
linyuh183cb712017-12-27 17:02:37 -0800528 cameraDirection = CameraDirection.CAMERA_DIRECTION_UNKNOWN;
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700529 }
Eric Erfanianccca3152017-02-22 16:32:36 -0800530 }
531
Eric Erfanian2ca43182017-08-31 06:57:16 -0700532 public boolean wasParentCall() {
linyuh183cb712017-12-27 17:02:37 -0800533 return logState.conferencedCalls != 0;
Eric Erfanian2ca43182017-08-31 06:57:16 -0700534 }
535
wangqi9982f0d2017-10-11 17:46:07 -0700536 public boolean isVoiceMailNumber() {
537 return isVoicemailNumber;
538 }
539
540 public List<PhoneAccountHandle> getCallCapableAccounts() {
541 return callCapableAccounts;
542 }
543
544 public String getCountryIso() {
545 return countryIso;
546 }
547
548 private void updateIsVoiceMailNumber() {
549 if (getHandle() != null && PhoneAccount.SCHEME_VOICEMAIL.equals(getHandle().getScheme())) {
550 isVoicemailNumber = true;
roldenburg37a969d2018-02-22 14:46:44 -0800551 return;
wangqi9982f0d2017-10-11 17:46:07 -0700552 }
553
linyuh183cb712017-12-27 17:02:37 -0800554 if (!PermissionsUtil.hasPermission(context, permission.READ_PHONE_STATE)) {
wangqi9982f0d2017-10-11 17:46:07 -0700555 isVoicemailNumber = false;
roldenburg37a969d2018-02-22 14:46:44 -0800556 return;
wangqi9982f0d2017-10-11 17:46:07 -0700557 }
558
linyuh183cb712017-12-27 17:02:37 -0800559 isVoicemailNumber = TelecomUtil.isVoicemailNumber(context, getAccountHandle(), getNumber());
wangqi9982f0d2017-10-11 17:46:07 -0700560 }
561
Eric Erfanianccca3152017-02-22 16:32:36 -0800562 private void update() {
Eric Erfanian2ca43182017-08-31 06:57:16 -0700563 Trace.beginSection("DialerCall.update");
Eric Erfanianccca3152017-02-22 16:32:36 -0800564 int oldState = getState();
roldenburg7bb96232017-10-09 10:32:05 -0700565 // Clear any cache here that could potentially change on update.
566 videoTech = null;
Eric Erfanianccca3152017-02-22 16:32:36 -0800567 // We want to potentially register a video call callback here.
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700568 updateFromTelecomCall();
wangqibb94ca62018-04-27 14:34:04 -0700569 if (oldState != getState() && getState() == DialerCallState.DISCONNECTED) {
linyuh183cb712017-12-27 17:02:37 -0800570 for (DialerCallListener listener : listeners) {
Eric Erfanianccca3152017-02-22 16:32:36 -0800571 listener.onDialerCallDisconnect();
572 }
linyuh183cb712017-12-27 17:02:37 -0800573 EnrichedCallComponent.get(context)
Eric Erfanian2ca43182017-08-31 06:57:16 -0700574 .getEnrichedCallManager()
575 .unregisterCapabilitiesListener(this);
linyuh183cb712017-12-27 17:02:37 -0800576 EnrichedCallComponent.get(context)
Eric Erfanian2ca43182017-08-31 06:57:16 -0700577 .getEnrichedCallManager()
578 .unregisterStateChangedListener(this);
Eric Erfanianccca3152017-02-22 16:32:36 -0800579 } else {
linyuh183cb712017-12-27 17:02:37 -0800580 for (DialerCallListener listener : listeners) {
Eric Erfanianccca3152017-02-22 16:32:36 -0800581 listener.onDialerCallUpdate();
582 }
583 }
584 Trace.endSection();
585 }
586
wangqi9982f0d2017-10-11 17:46:07 -0700587 @SuppressWarnings("MissingPermission")
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700588 private void updateFromTelecomCall() {
Eric Erfanian2ca43182017-08-31 06:57:16 -0700589 Trace.beginSection("DialerCall.updateFromTelecomCall");
linyuh183cb712017-12-27 17:02:37 -0800590 LogUtil.v("DialerCall.updateFromTelecomCall", telecomCall.toString());
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700591
roldenburg6bd612f2018-01-18 12:57:19 -0800592 videoTechManager.dispatchCallStateChanged(telecomCall.getState(), getAccountHandle());
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700593
linyuh183cb712017-12-27 17:02:37 -0800594 final int translatedState = translateState(telecomCall.getState());
wangqibb94ca62018-04-27 14:34:04 -0700595 if (state != DialerCallState.BLOCKED) {
Eric Erfanianccca3152017-02-22 16:32:36 -0800596 setState(translatedState);
linyuh183cb712017-12-27 17:02:37 -0800597 setDisconnectCause(telecomCall.getDetails().getDisconnectCause());
Eric Erfanianccca3152017-02-22 16:32:36 -0800598 }
599
linyuh183cb712017-12-27 17:02:37 -0800600 childCallIds.clear();
601 final int numChildCalls = telecomCall.getChildren().size();
Eric Erfanianccca3152017-02-22 16:32:36 -0800602 for (int i = 0; i < numChildCalls; i++) {
linyuh183cb712017-12-27 17:02:37 -0800603 childCallIds.add(
604 dialerCallDelegate
605 .getDialerCallFromTelecomCall(telecomCall.getChildren().get(i))
Eric Erfanianccca3152017-02-22 16:32:36 -0800606 .getId());
607 }
608
609 // The number of conferenced calls can change over the course of the call, so use the
610 // maximum number of conferenced child calls as the metric for conference call usage.
linyuh183cb712017-12-27 17:02:37 -0800611 logState.conferencedCalls = Math.max(numChildCalls, logState.conferencedCalls);
Eric Erfanianccca3152017-02-22 16:32:36 -0800612
linyuh183cb712017-12-27 17:02:37 -0800613 updateFromCallExtras(telecomCall.getDetails().getExtras());
Eric Erfanianccca3152017-02-22 16:32:36 -0800614
615 // If the handle of the call has changed, update state for the call determining if it is an
616 // emergency call.
linyuh183cb712017-12-27 17:02:37 -0800617 Uri newHandle = telecomCall.getDetails().getHandle();
618 if (!Objects.equals(handle, newHandle)) {
619 handle = newHandle;
Eric Erfanianccca3152017-02-22 16:32:36 -0800620 updateEmergencyCallState();
621 }
622
linyuh183cb712017-12-27 17:02:37 -0800623 TelecomManager telecomManager = context.getSystemService(TelecomManager.class);
Eric Erfanianccca3152017-02-22 16:32:36 -0800624 // If the phone account handle of the call is set, cache capability bit indicating whether
625 // the phone account supports call subjects.
linyuh183cb712017-12-27 17:02:37 -0800626 PhoneAccountHandle newPhoneAccountHandle = telecomCall.getDetails().getAccountHandle();
627 if (!Objects.equals(phoneAccountHandle, newPhoneAccountHandle)) {
628 phoneAccountHandle = newPhoneAccountHandle;
Eric Erfanianccca3152017-02-22 16:32:36 -0800629
linyuh183cb712017-12-27 17:02:37 -0800630 if (phoneAccountHandle != null) {
631 PhoneAccount phoneAccount = telecomManager.getPhoneAccount(phoneAccountHandle);
Eric Erfanianccca3152017-02-22 16:32:36 -0800632 if (phoneAccount != null) {
linyuh183cb712017-12-27 17:02:37 -0800633 isCallSubjectSupported =
Eric Erfanianccca3152017-02-22 16:32:36 -0800634 phoneAccount.hasCapabilities(PhoneAccount.CAPABILITY_CALL_SUBJECT);
wangqida410d32018-03-06 16:51:38 -0800635 if (phoneAccount.hasCapabilities(PhoneAccount.CAPABILITY_SIM_SUBSCRIPTION)) {
636 cacheCarrierConfiguration(phoneAccountHandle);
637 }
Eric Erfanianccca3152017-02-22 16:32:36 -0800638 }
639 }
640 }
linyuh183cb712017-12-27 17:02:37 -0800641 if (PermissionsUtil.hasPermission(context, permission.READ_PHONE_STATE)) {
wangqi9982f0d2017-10-11 17:46:07 -0700642 updateIsVoiceMailNumber();
643 callCapableAccounts = telecomManager.getCallCapablePhoneAccounts();
linyuh183cb712017-12-27 17:02:37 -0800644 countryIso = GeoUtil.getCurrentCountryIso(context);
wangqi9982f0d2017-10-11 17:46:07 -0700645 }
Eric Erfanian2ca43182017-08-31 06:57:16 -0700646 Trace.endSection();
Eric Erfanianccca3152017-02-22 16:32:36 -0800647 }
648
649 /**
wangqida410d32018-03-06 16:51:38 -0800650 * Caches frequently used carrier configuration locally.
651 *
652 * @param accountHandle The PhoneAccount handle.
653 */
654 @SuppressLint("MissingPermission")
655 private void cacheCarrierConfiguration(PhoneAccountHandle accountHandle) {
656 if (!PermissionsUtil.hasPermission(context, permission.READ_PHONE_STATE)) {
657 return;
658 }
659 if (VERSION.SDK_INT < VERSION_CODES.O) {
660 return;
661 }
662 // TODO(a bug): This may take several seconds to complete, revisit it to move it to worker
663 // thread.
664 carrierConfig =
665 TelephonyManagerCompat.getTelephonyManagerForPhoneAccountHandle(context, accountHandle)
666 .getCarrierConfig();
667 }
668
669 /**
Eric Erfanianccca3152017-02-22 16:32:36 -0800670 * Tests corruption of the {@code callExtras} bundle by calling {@link
671 * Bundle#containsKey(String)}. If the bundle is corrupted a {@link IllegalArgumentException} will
672 * be thrown and caught by this function.
673 *
674 * @param callExtras the bundle to verify
675 * @return {@code true} if the bundle is corrupted, {@code false} otherwise.
676 */
677 protected boolean areCallExtrasCorrupted(Bundle callExtras) {
678 /**
Eric Erfanian938468d2017-10-24 14:05:52 -0700679 * There's currently a bug in Telephony service (a bug) that could corrupt the extras
Eric Erfanianccca3152017-02-22 16:32:36 -0800680 * bundle, resulting in a IllegalArgumentException while validating data under {@link
681 * Bundle#containsKey(String)}.
682 */
683 try {
684 callExtras.containsKey(Connection.EXTRA_CHILD_ADDRESS);
685 return false;
686 } catch (IllegalArgumentException e) {
687 LogUtil.e(
688 "DialerCall.areCallExtrasCorrupted", "callExtras is corrupted, ignoring exception", e);
689 return true;
690 }
691 }
692
693 protected void updateFromCallExtras(Bundle callExtras) {
694 if (callExtras == null || areCallExtrasCorrupted(callExtras)) {
695 /**
696 * If the bundle is corrupted, abandon information update as a work around. These are not
697 * critical for the dialer to function.
698 */
699 return;
700 }
701 // Check for a change in the child address and notify any listeners.
702 if (callExtras.containsKey(Connection.EXTRA_CHILD_ADDRESS)) {
703 String childNumber = callExtras.getString(Connection.EXTRA_CHILD_ADDRESS);
linyuh183cb712017-12-27 17:02:37 -0800704 if (!Objects.equals(childNumber, this.childNumber)) {
705 this.childNumber = childNumber;
706 for (DialerCallListener listener : listeners) {
Eric Erfanianccca3152017-02-22 16:32:36 -0800707 listener.onDialerCallChildNumberChange();
708 }
709 }
710 }
711
712 // Last forwarded number comes in as an array of strings. We want to choose the
713 // last item in the array. The forwarding numbers arrive independently of when the
714 // call is originally set up, so we need to notify the the UI of the change.
715 if (callExtras.containsKey(Connection.EXTRA_LAST_FORWARDED_NUMBER)) {
716 ArrayList<String> lastForwardedNumbers =
717 callExtras.getStringArrayList(Connection.EXTRA_LAST_FORWARDED_NUMBER);
718
719 if (lastForwardedNumbers != null) {
720 String lastForwardedNumber = null;
721 if (!lastForwardedNumbers.isEmpty()) {
722 lastForwardedNumber = lastForwardedNumbers.get(lastForwardedNumbers.size() - 1);
723 }
724
linyuh183cb712017-12-27 17:02:37 -0800725 if (!Objects.equals(lastForwardedNumber, this.lastForwardedNumber)) {
726 this.lastForwardedNumber = lastForwardedNumber;
727 for (DialerCallListener listener : listeners) {
Eric Erfanianccca3152017-02-22 16:32:36 -0800728 listener.onDialerCallLastForwardedNumberChange();
729 }
730 }
731 }
732 }
733
734 // DialerCall subject is present in the extras at the start of call, so we do not need to
735 // notify any other listeners of this.
736 if (callExtras.containsKey(Connection.EXTRA_CALL_SUBJECT)) {
737 String callSubject = callExtras.getString(Connection.EXTRA_CALL_SUBJECT);
linyuh183cb712017-12-27 17:02:37 -0800738 if (!Objects.equals(this.callSubject, callSubject)) {
739 this.callSubject = callSubject;
Eric Erfanianccca3152017-02-22 16:32:36 -0800740 }
741 }
742 }
743
Eric Erfanianccca3152017-02-22 16:32:36 -0800744 public String getId() {
linyuh183cb712017-12-27 17:02:37 -0800745 return id;
Eric Erfanianccca3152017-02-22 16:32:36 -0800746 }
747
Eric Erfanianc857f902017-05-15 14:05:33 -0700748 /**
749 * @return name appended with a number if the number is restricted/unknown and the user has
750 * received more than one restricted/unknown call.
751 */
752 @Nullable
753 public String updateNameIfRestricted(@Nullable String name) {
linyuh183cb712017-12-27 17:02:37 -0800754 if (name != null && isHiddenNumber() && hiddenId != 0 && hiddenCounter > 1) {
755 return context.getString(R.string.unknown_counter, name, hiddenId);
Eric Erfanianc857f902017-05-15 14:05:33 -0700756 }
757 return name;
758 }
759
760 public static void clearRestrictedCount() {
linyuh183cb712017-12-27 17:02:37 -0800761 hiddenCounter = 0;
Eric Erfanianc857f902017-05-15 14:05:33 -0700762 }
763
764 private boolean isHiddenNumber() {
765 return getNumberPresentation() == TelecomManager.PRESENTATION_RESTRICTED
766 || getNumberPresentation() == TelecomManager.PRESENTATION_UNKNOWN;
767 }
768
Eric Erfanianccca3152017-02-22 16:32:36 -0800769 public boolean hasShownWiFiToLteHandoverToast() {
770 return hasShownWiFiToLteHandoverToast;
771 }
772
773 public void setHasShownWiFiToLteHandoverToast() {
774 hasShownWiFiToLteHandoverToast = true;
775 }
776
777 public boolean showWifiHandoverAlertAsToast() {
778 return doNotShowDialogForHandoffToWifiFailure;
779 }
780
781 public void setDoNotShowDialogForHandoffToWifiFailure(boolean bool) {
782 doNotShowDialogForHandoffToWifiFailure = bool;
783 }
784
wangqida410d32018-03-06 16:51:38 -0800785 public boolean showVideoChargesAlertDialog() {
786 if (carrierConfig == null) {
787 return false;
788 }
789 return carrierConfig.getBoolean(
790 TelephonyManagerCompat.CARRIER_CONFIG_KEY_SHOW_VIDEO_CALL_CHARGES_ALERT_DIALOG_BOOL);
791 }
792
Eric Erfanianccca3152017-02-22 16:32:36 -0800793 public long getTimeAddedMs() {
linyuh183cb712017-12-27 17:02:37 -0800794 return timeAddedMs;
Eric Erfanianccca3152017-02-22 16:32:36 -0800795 }
796
797 @Nullable
798 public String getNumber() {
linyuh183cb712017-12-27 17:02:37 -0800799 return TelecomCallUtil.getNumber(telecomCall);
Eric Erfanianccca3152017-02-22 16:32:36 -0800800 }
801
802 public void blockCall() {
linyuh183cb712017-12-27 17:02:37 -0800803 telecomCall.reject(false, null);
wangqibb94ca62018-04-27 14:34:04 -0700804 setState(DialerCallState.BLOCKED);
Eric Erfanianccca3152017-02-22 16:32:36 -0800805 }
806
807 @Nullable
808 public Uri getHandle() {
linyuh183cb712017-12-27 17:02:37 -0800809 return telecomCall == null ? null : telecomCall.getDetails().getHandle();
Eric Erfanianccca3152017-02-22 16:32:36 -0800810 }
811
812 public boolean isEmergencyCall() {
linyuh183cb712017-12-27 17:02:37 -0800813 return isEmergencyCall;
Eric Erfanianccca3152017-02-22 16:32:36 -0800814 }
815
816 public boolean isPotentialEmergencyCallback() {
817 // The property PROPERTY_EMERGENCY_CALLBACK_MODE is only set for CDMA calls when the system
818 // is actually in emergency callback mode (ie data is disabled).
819 if (hasProperty(Details.PROPERTY_EMERGENCY_CALLBACK_MODE)) {
820 return true;
821 }
maxwelbb87334b2018-05-14 13:57:32 -0700822
823 // Call.EXTRA_LAST_EMERGENCY_CALLBACK_TIME_MILLIS is available starting in O
824 if (VERSION.SDK_INT < VERSION_CODES.O) {
825 long timestampMillis = FilteredNumbersUtil.getLastEmergencyCallTimeMillis(context);
826 return isInEmergencyCallbackWindow(timestampMillis);
827 }
828
Eric Erfanianccca3152017-02-22 16:32:36 -0800829 // We want to treat any incoming call that arrives a short time after an outgoing emergency call
830 // as a potential emergency callback.
831 if (getExtras() != null
maxwelbc1401222018-05-03 11:51:02 -0700832 && getExtras().getLong(Call.EXTRA_LAST_EMERGENCY_CALLBACK_TIME_MILLIS, 0) > 0) {
Eric Erfanianccca3152017-02-22 16:32:36 -0800833 long lastEmergencyCallMillis =
maxwelbc1401222018-05-03 11:51:02 -0700834 getExtras().getLong(Call.EXTRA_LAST_EMERGENCY_CALLBACK_TIME_MILLIS, 0);
Eric Erfanianccca3152017-02-22 16:32:36 -0800835 if (isInEmergencyCallbackWindow(lastEmergencyCallMillis)) {
836 return true;
837 }
838 }
839 return false;
840 }
841
842 boolean isInEmergencyCallbackWindow(long timestampMillis) {
843 long emergencyCallbackWindowMillis =
linyuh183cb712017-12-27 17:02:37 -0800844 ConfigProviderBindings.get(context)
Eric Erfanianccca3152017-02-22 16:32:36 -0800845 .getLong(CONFIG_EMERGENCY_CALLBACK_WINDOW_MILLIS, TimeUnit.MINUTES.toMillis(5));
846 return System.currentTimeMillis() - timestampMillis < emergencyCallbackWindowMillis;
847 }
848
849 public int getState() {
linyuh183cb712017-12-27 17:02:37 -0800850 if (telecomCall != null && telecomCall.getParent() != null) {
wangqibb94ca62018-04-27 14:34:04 -0700851 return DialerCallState.CONFERENCED;
Eric Erfanianccca3152017-02-22 16:32:36 -0800852 } else {
linyuh183cb712017-12-27 17:02:37 -0800853 return state;
Eric Erfanianccca3152017-02-22 16:32:36 -0800854 }
855 }
856
yueg265089a2017-10-06 14:35:15 -0700857 public int getNonConferenceState() {
linyuh183cb712017-12-27 17:02:37 -0800858 return state;
yueg265089a2017-10-06 14:35:15 -0700859 }
860
Eric Erfanianccca3152017-02-22 16:32:36 -0800861 public void setState(int state) {
wangqibb94ca62018-04-27 14:34:04 -0700862 if (state == DialerCallState.INCOMING) {
linyuh183cb712017-12-27 17:02:37 -0800863 logState.isIncoming = true;
maxwelbd95d0f62018-05-01 17:50:55 -0700864 }
865 updateCallTiming(state);
866
867 this.state = state;
868 }
869
870 private void updateCallTiming(int newState) {
871 if (newState == DialerCallState.ACTIVE) {
872 if (this.state == DialerCallState.ACTIVE) {
873 LogUtil.i("DialerCall.updateCallTiming", "state is already active");
874 return;
875 }
876 logState.dialerConnectTimeMillis = clock.currentTimeMillis();
877 logState.dialerConnectTimeMillisElapsedRealtime = SystemClock.elapsedRealtime();
878 }
879
880 if (newState == DialerCallState.DISCONNECTED) {
Eric Erfanian2ca43182017-08-31 06:57:16 -0700881 long newDuration =
maxwelbd95d0f62018-05-01 17:50:55 -0700882 getConnectTimeMillis() == 0 ? 0 : clock.currentTimeMillis() - getConnectTimeMillis();
883 if (this.state == DialerCallState.DISCONNECTED) {
Eric Erfanian2ca43182017-08-31 06:57:16 -0700884 LogUtil.i(
885 "DialerCall.setState",
886 "ignoring state transition from DISCONNECTED to DISCONNECTED."
887 + " Duration would have changed from %s to %s",
maxwelbd95d0f62018-05-01 17:50:55 -0700888 logState.telecomDurationMillis,
Eric Erfanian2ca43182017-08-31 06:57:16 -0700889 newDuration);
maxwelbd95d0f62018-05-01 17:50:55 -0700890 return;
Eric Erfanian2ca43182017-08-31 06:57:16 -0700891 }
maxwelbd95d0f62018-05-01 17:50:55 -0700892 logState.telecomDurationMillis = newDuration;
893 logState.dialerDurationMillis =
894 logState.dialerConnectTimeMillis == 0
895 ? 0
896 : clock.currentTimeMillis() - logState.dialerConnectTimeMillis;
897 logState.dialerDurationMillisElapsedRealtime =
898 logState.dialerConnectTimeMillisElapsedRealtime == 0
899 ? 0
900 : SystemClock.elapsedRealtime() - logState.dialerConnectTimeMillisElapsedRealtime;
Eric Erfanianccca3152017-02-22 16:32:36 -0800901 }
maxwelbd95d0f62018-05-01 17:50:55 -0700902 }
903
904 @VisibleForTesting
905 void setClock(Clock clock) {
906 this.clock = clock;
Eric Erfanianccca3152017-02-22 16:32:36 -0800907 }
908
909 public int getNumberPresentation() {
linyuh183cb712017-12-27 17:02:37 -0800910 return telecomCall == null ? -1 : telecomCall.getDetails().getHandlePresentation();
Eric Erfanianccca3152017-02-22 16:32:36 -0800911 }
912
913 public int getCnapNamePresentation() {
linyuh183cb712017-12-27 17:02:37 -0800914 return telecomCall == null ? -1 : telecomCall.getDetails().getCallerDisplayNamePresentation();
Eric Erfanianccca3152017-02-22 16:32:36 -0800915 }
916
917 @Nullable
918 public String getCnapName() {
linyuh183cb712017-12-27 17:02:37 -0800919 return telecomCall == null ? null : getTelecomCall().getDetails().getCallerDisplayName();
Eric Erfanianccca3152017-02-22 16:32:36 -0800920 }
921
922 public Bundle getIntentExtras() {
linyuh183cb712017-12-27 17:02:37 -0800923 return telecomCall.getDetails().getIntentExtras();
Eric Erfanianccca3152017-02-22 16:32:36 -0800924 }
925
926 @Nullable
927 public Bundle getExtras() {
linyuh183cb712017-12-27 17:02:37 -0800928 return telecomCall == null ? null : telecomCall.getDetails().getExtras();
Eric Erfanianccca3152017-02-22 16:32:36 -0800929 }
930
931 /** @return The child number for the call, or {@code null} if none specified. */
932 public String getChildNumber() {
linyuh183cb712017-12-27 17:02:37 -0800933 return childNumber;
Eric Erfanianccca3152017-02-22 16:32:36 -0800934 }
935
936 /** @return The last forwarded number for the call, or {@code null} if none specified. */
937 public String getLastForwardedNumber() {
linyuh183cb712017-12-27 17:02:37 -0800938 return lastForwardedNumber;
Eric Erfanianccca3152017-02-22 16:32:36 -0800939 }
940
wangqif4ba3452018-01-09 11:26:29 -0800941 public boolean isCallForwarded() {
942 return isCallForwarded;
943 }
944
Eric Erfanianccca3152017-02-22 16:32:36 -0800945 /** @return The call subject, or {@code null} if none specified. */
946 public String getCallSubject() {
linyuh183cb712017-12-27 17:02:37 -0800947 return callSubject;
Eric Erfanianccca3152017-02-22 16:32:36 -0800948 }
949
950 /**
951 * @return {@code true} if the call's phone account supports call subjects, {@code false}
952 * otherwise.
953 */
954 public boolean isCallSubjectSupported() {
linyuh183cb712017-12-27 17:02:37 -0800955 return isCallSubjectSupported;
Eric Erfanianccca3152017-02-22 16:32:36 -0800956 }
957
958 /** Returns call disconnect cause, defined by {@link DisconnectCause}. */
959 public DisconnectCause getDisconnectCause() {
wangqibb94ca62018-04-27 14:34:04 -0700960 if (state == DialerCallState.DISCONNECTED || state == DialerCallState.IDLE) {
linyuh183cb712017-12-27 17:02:37 -0800961 return disconnectCause;
Eric Erfanianccca3152017-02-22 16:32:36 -0800962 }
963
964 return new DisconnectCause(DisconnectCause.UNKNOWN);
965 }
966
967 public void setDisconnectCause(DisconnectCause disconnectCause) {
linyuh183cb712017-12-27 17:02:37 -0800968 this.disconnectCause = disconnectCause;
969 logState.disconnectCause = this.disconnectCause;
Eric Erfanianccca3152017-02-22 16:32:36 -0800970 }
971
972 /** Returns the possible text message responses. */
973 public List<String> getCannedSmsResponses() {
linyuh183cb712017-12-27 17:02:37 -0800974 return telecomCall.getCannedTextResponses();
Eric Erfanianccca3152017-02-22 16:32:36 -0800975 }
976
977 /** Checks if the call supports the given set of capabilities supplied as a bit mask. */
978 public boolean can(int capabilities) {
linyuh183cb712017-12-27 17:02:37 -0800979 int supportedCapabilities = telecomCall.getDetails().getCallCapabilities();
Eric Erfanianccca3152017-02-22 16:32:36 -0800980
981 if ((capabilities & Call.Details.CAPABILITY_MERGE_CONFERENCE) != 0) {
982 // We allow you to merge if the capabilities allow it or if it is a call with
983 // conferenceable calls.
linyuh183cb712017-12-27 17:02:37 -0800984 if (telecomCall.getConferenceableCalls().isEmpty()
Eric Erfanianccca3152017-02-22 16:32:36 -0800985 && ((Call.Details.CAPABILITY_MERGE_CONFERENCE & supportedCapabilities) == 0)) {
986 // Cannot merge calls if there are no calls to merge with.
987 return false;
988 }
989 capabilities &= ~Call.Details.CAPABILITY_MERGE_CONFERENCE;
990 }
991 return (capabilities == (capabilities & supportedCapabilities));
992 }
993
994 public boolean hasProperty(int property) {
linyuh183cb712017-12-27 17:02:37 -0800995 return telecomCall.getDetails().hasProperty(property);
Eric Erfanianccca3152017-02-22 16:32:36 -0800996 }
997
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700998 @NonNull
Eric Erfanianccca3152017-02-22 16:32:36 -0800999 public String getUniqueCallId() {
1000 return uniqueCallId;
1001 }
1002
1003 /** Gets the time when the call first became active. */
1004 public long getConnectTimeMillis() {
linyuh183cb712017-12-27 17:02:37 -08001005 return telecomCall.getDetails().getConnectTimeMillis();
Eric Erfanianccca3152017-02-22 16:32:36 -08001006 }
1007
wangqied677ef2018-04-04 12:03:00 -07001008 /**
1009 * Gets the time when the call is created (see {@link Details#getCreationTimeMillis()}). This is
1010 * the same time that is logged as the start time in the Call Log (see {@link
1011 * android.provider.CallLog.Calls#DATE}).
1012 */
1013 @TargetApi(26)
1014 public long getCreationTimeMillis() {
1015 return telecomCall.getDetails().getCreationTimeMillis();
1016 }
1017
Eric Erfanianccca3152017-02-22 16:32:36 -08001018 public boolean isConferenceCall() {
1019 return hasProperty(Call.Details.PROPERTY_CONFERENCE);
1020 }
1021
1022 @Nullable
1023 public GatewayInfo getGatewayInfo() {
linyuh183cb712017-12-27 17:02:37 -08001024 return telecomCall == null ? null : telecomCall.getDetails().getGatewayInfo();
Eric Erfanianccca3152017-02-22 16:32:36 -08001025 }
1026
1027 @Nullable
1028 public PhoneAccountHandle getAccountHandle() {
linyuh183cb712017-12-27 17:02:37 -08001029 return telecomCall == null ? null : telecomCall.getDetails().getAccountHandle();
Eric Erfanianccca3152017-02-22 16:32:36 -08001030 }
1031
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001032 /** @return The {@link VideoCall} instance associated with the {@link Call}. */
Eric Erfanianccca3152017-02-22 16:32:36 -08001033 public VideoCall getVideoCall() {
linyuh183cb712017-12-27 17:02:37 -08001034 return telecomCall == null ? null : telecomCall.getVideoCall();
Eric Erfanianccca3152017-02-22 16:32:36 -08001035 }
1036
1037 public List<String> getChildCallIds() {
linyuh183cb712017-12-27 17:02:37 -08001038 return childCallIds;
Eric Erfanianccca3152017-02-22 16:32:36 -08001039 }
1040
1041 public String getParentId() {
linyuh183cb712017-12-27 17:02:37 -08001042 Call parentCall = telecomCall.getParent();
Eric Erfanianccca3152017-02-22 16:32:36 -08001043 if (parentCall != null) {
linyuh183cb712017-12-27 17:02:37 -08001044 return dialerCallDelegate.getDialerCallFromTelecomCall(parentCall).getId();
Eric Erfanianccca3152017-02-22 16:32:36 -08001045 }
1046 return null;
1047 }
1048
1049 public int getVideoState() {
linyuh183cb712017-12-27 17:02:37 -08001050 return telecomCall.getDetails().getVideoState();
Eric Erfanianccca3152017-02-22 16:32:36 -08001051 }
1052
1053 public boolean isVideoCall() {
roldenburg2cec3802017-10-11 16:26:51 -07001054 return getVideoTech().isTransmittingOrReceiving() || VideoProfile.isVideo(getVideoState());
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001055 }
1056
wangqi8d407a02018-02-15 15:32:52 -08001057 @TargetApi(28)
wangqif6be6172018-03-30 15:57:56 -07001058 public boolean isActiveRttCall() {
wangqi219b8702018-02-13 09:34:41 -08001059 if (BuildCompat.isAtLeastP()) {
1060 return getTelecomCall().isRttActive();
1061 } else {
1062 return false;
1063 }
1064 }
1065
wangqi153af2f2018-02-15 16:21:49 -08001066 @TargetApi(28)
wangqi49f90b32018-05-03 12:34:08 -07001067 @Nullable
wangqi153af2f2018-02-15 16:21:49 -08001068 public RttCall getRttCall() {
wangqif6be6172018-03-30 15:57:56 -07001069 if (!isActiveRttCall()) {
wangqi153af2f2018-02-15 16:21:49 -08001070 return null;
1071 }
1072 return getTelecomCall().getRttCall();
1073 }
1074
wangqif6be6172018-03-30 15:57:56 -07001075 @TargetApi(28)
wangqi810d43d2018-05-09 16:43:35 -07001076 public boolean isPhoneAccountRttCapable() {
wangqif6be6172018-03-30 15:57:56 -07001077 PhoneAccount phoneAccount = getPhoneAccount();
1078 if (phoneAccount == null) {
1079 return false;
1080 }
1081 if (!phoneAccount.hasCapabilities(PhoneAccount.CAPABILITY_RTT)) {
1082 return false;
1083 }
wangqi810d43d2018-05-09 16:43:35 -07001084 return true;
1085 }
1086
1087 @TargetApi(28)
1088 public boolean canUpgradeToRttCall() {
1089 if (!isPhoneAccountRttCapable()) {
1090 return false;
1091 }
wangqif6be6172018-03-30 15:57:56 -07001092 if (isActiveRttCall()) {
1093 return false;
1094 }
1095 if (isVideoCall()) {
1096 return false;
1097 }
1098 if (isConferenceCall()) {
1099 return false;
1100 }
1101 if (CallList.getInstance().hasActiveRttCall()) {
1102 return false;
1103 }
1104 return true;
1105 }
1106
1107 @TargetApi(28)
1108 public void sendRttUpgradeRequest() {
1109 getTelecomCall().sendRttRequest();
1110 }
1111
wangqibc28ea72018-04-02 16:23:00 -07001112 @TargetApi(28)
1113 public void respondToRttRequest(boolean accept, int rttRequestId) {
wangqi81e373e2018-04-24 10:50:57 -07001114 Logger.get(context)
1115 .logCallImpression(
1116 accept
1117 ? DialerImpression.Type.RTT_MID_CALL_ACCEPTED
1118 : DialerImpression.Type.RTT_MID_CALL_REJECTED,
1119 getUniqueCallId(),
1120 getTimeAddedMs());
wangqibc28ea72018-04-02 16:23:00 -07001121 getTelecomCall().respondToRttRequest(rttRequestId, accept);
1122 }
1123
wangqibed9e2f2018-04-30 11:55:07 -07001124 @TargetApi(28)
1125 private void saveRttTranscript() {
1126 if (!BuildCompat.isAtLeastP()) {
1127 return;
1128 }
wangqi49f90b32018-05-03 12:34:08 -07001129 if (getRttCall() != null) {
1130 // Save any remaining text in the buffer that's not shown by UI yet.
1131 // This may happen when the call is switched to background before disconnect.
1132 try {
1133 String messageLeft = getRttCall().readImmediately();
1134 if (!TextUtils.isEmpty(messageLeft)) {
1135 rttTranscript =
1136 RttChatMessage.getRttTranscriptWithNewRemoteMessage(rttTranscript, messageLeft);
1137 }
1138 } catch (IOException e) {
1139 LogUtil.e("DialerCall.saveRttTranscript", "error when reading remaining message", e);
wangqibed9e2f2018-04-30 11:55:07 -07001140 }
wangqibed9e2f2018-04-30 11:55:07 -07001141 }
wangqi6e0d6392018-04-30 16:22:34 -07001142 // Don't save transcript if it's empty.
1143 if (rttTranscript.getMessagesCount() == 0) {
1144 return;
1145 }
wangqibed9e2f2018-04-30 11:55:07 -07001146 Futures.addCallback(
1147 RttTranscriptUtil.saveRttTranscript(context, rttTranscript),
1148 new DefaultFutureCallback<>(),
1149 MoreExecutors.directExecutor());
1150 }
1151
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001152 public boolean hasReceivedVideoUpgradeRequest() {
1153 return VideoUtils.hasReceivedVideoUpgradeRequest(getVideoTech().getSessionModificationState());
1154 }
1155
1156 public boolean hasSentVideoUpgradeRequest() {
1157 return VideoUtils.hasSentVideoUpgradeRequest(getVideoTech().getSessionModificationState());
Eric Erfanianccca3152017-02-22 16:32:36 -08001158 }
1159
wangqi219b8702018-02-13 09:34:41 -08001160 public boolean hasSentRttUpgradeRequest() {
wangqi219b8702018-02-13 09:34:41 -08001161 return false;
1162 }
1163
Eric Erfanianccca3152017-02-22 16:32:36 -08001164 /**
1165 * Determines if the call handle is an emergency number or not and caches the result to avoid
1166 * repeated calls to isEmergencyNumber.
1167 */
1168 private void updateEmergencyCallState() {
linyuh183cb712017-12-27 17:02:37 -08001169 isEmergencyCall = TelecomCallUtil.isEmergencyCall(telecomCall);
Eric Erfanianccca3152017-02-22 16:32:36 -08001170 }
1171
Eric Erfanianccca3152017-02-22 16:32:36 -08001172 public LogState getLogState() {
linyuh183cb712017-12-27 17:02:37 -08001173 return logState;
Eric Erfanianccca3152017-02-22 16:32:36 -08001174 }
1175
1176 /**
1177 * Determines if the call is an external call.
1178 *
1179 * <p>An external call is one which does not exist locally for the {@link
1180 * android.telecom.ConnectionService} it is associated with.
1181 *
Eric Erfanianccca3152017-02-22 16:32:36 -08001182 * @return {@code true} if the call is an external call, {@code false} otherwise.
1183 */
linyuh437ae952018-03-26 12:46:18 -07001184 boolean isExternalCall() {
1185 return hasProperty(CallCompat.Details.PROPERTY_IS_EXTERNAL_CALL);
Eric Erfanianccca3152017-02-22 16:32:36 -08001186 }
1187
1188 /**
Eric Erfanianccca3152017-02-22 16:32:36 -08001189 * Determines if answering this call will cause an ongoing video call to be dropped.
1190 *
1191 * @return {@code true} if answering this call will drop an ongoing video call, {@code false}
1192 * otherwise.
1193 */
1194 public boolean answeringDisconnectsForegroundVideoCall() {
1195 Bundle extras = getExtras();
1196 if (extras == null
1197 || !extras.containsKey(CallCompat.Details.EXTRA_ANSWERING_DROPS_FOREGROUND_CALL)) {
1198 return false;
1199 }
1200 return extras.getBoolean(CallCompat.Details.EXTRA_ANSWERING_DROPS_FOREGROUND_CALL);
1201 }
1202
1203 private void parseCallSpecificAppData() {
1204 if (isExternalCall()) {
1205 return;
1206 }
1207
linyuh183cb712017-12-27 17:02:37 -08001208 logState.callSpecificAppData = CallIntentParser.getCallSpecificAppData(getIntentExtras());
1209 if (logState.callSpecificAppData == null) {
Eric Erfanian8369df02017-05-03 10:27:13 -07001210
linyuh183cb712017-12-27 17:02:37 -08001211 logState.callSpecificAppData =
Eric Erfanian8369df02017-05-03 10:27:13 -07001212 CallSpecificAppData.newBuilder()
1213 .setCallInitiationType(CallInitiationType.Type.EXTERNAL_INITIATION)
1214 .build();
Eric Erfanianccca3152017-02-22 16:32:36 -08001215 }
wangqibb94ca62018-04-27 14:34:04 -07001216 if (getState() == DialerCallState.INCOMING) {
linyuh183cb712017-12-27 17:02:37 -08001217 logState.callSpecificAppData =
1218 logState
Eric Erfanian8369df02017-05-03 10:27:13 -07001219 .callSpecificAppData
1220 .toBuilder()
1221 .setCallInitiationType(CallInitiationType.Type.INCOMING_INITIATION)
1222 .build();
Eric Erfanianccca3152017-02-22 16:32:36 -08001223 }
1224 }
1225
1226 @Override
1227 public String toString() {
linyuh183cb712017-12-27 17:02:37 -08001228 if (telecomCall == null) {
Eric Erfanianccca3152017-02-22 16:32:36 -08001229 // This should happen only in testing since otherwise we would never have a null
1230 // Telecom call.
linyuh183cb712017-12-27 17:02:37 -08001231 return String.valueOf(id);
Eric Erfanianccca3152017-02-22 16:32:36 -08001232 }
1233
1234 return String.format(
1235 Locale.US,
1236 "[%s, %s, %s, %s, children:%s, parent:%s, "
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001237 + "conferenceable:%s, videoState:%s, mSessionModificationState:%d, CameraDir:%s]",
linyuh183cb712017-12-27 17:02:37 -08001238 id,
wangqibb94ca62018-04-27 14:34:04 -07001239 DialerCallState.toString(getState()),
linyuh183cb712017-12-27 17:02:37 -08001240 Details.capabilitiesToString(telecomCall.getDetails().getCallCapabilities()),
1241 Details.propertiesToString(telecomCall.getDetails().getCallProperties()),
1242 childCallIds,
Eric Erfanianccca3152017-02-22 16:32:36 -08001243 getParentId(),
linyuh183cb712017-12-27 17:02:37 -08001244 this.telecomCall.getConferenceableCalls(),
1245 VideoProfile.videoStateToString(telecomCall.getDetails().getVideoState()),
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001246 getVideoTech().getSessionModificationState(),
1247 getCameraDir());
Eric Erfanianccca3152017-02-22 16:32:36 -08001248 }
1249
1250 public String toSimpleString() {
1251 return super.toString();
1252 }
1253
1254 @CallHistoryStatus
1255 public int getCallHistoryStatus() {
linyuh183cb712017-12-27 17:02:37 -08001256 return callHistoryStatus;
Eric Erfanianccca3152017-02-22 16:32:36 -08001257 }
1258
1259 public void setCallHistoryStatus(@CallHistoryStatus int callHistoryStatus) {
linyuh183cb712017-12-27 17:02:37 -08001260 this.callHistoryStatus = callHistoryStatus;
Eric Erfanianccca3152017-02-22 16:32:36 -08001261 }
1262
1263 public boolean didShowCameraPermission() {
1264 return didShowCameraPermission;
1265 }
1266
1267 public void setDidShowCameraPermission(boolean didShow) {
1268 didShowCameraPermission = didShow;
1269 }
1270
wangqida410d32018-03-06 16:51:38 -08001271 public boolean didDismissVideoChargesAlertDialog() {
1272 return didDismissVideoChargesAlertDialog;
1273 }
1274
1275 public void setDidDismissVideoChargesAlertDialog(boolean didDismiss) {
1276 didDismissVideoChargesAlertDialog = didDismiss;
1277 }
1278
maxwelbb87334b2018-05-14 13:57:32 -07001279 public void setSpamStatus(@Nullable SpamStatus spamStatus) {
1280 this.spamStatus = spamStatus;
Eric Erfanianccca3152017-02-22 16:32:36 -08001281 }
1282
maxwelbb87334b2018-05-14 13:57:32 -07001283 public Optional<SpamStatus> getSpamStatus() {
1284 return Optional.fromNullable(spamStatus);
Eric Erfanianccca3152017-02-22 16:32:36 -08001285 }
1286
1287 public boolean isSpam() {
maxwelbb87334b2018-05-14 13:57:32 -07001288 if (spamStatus == null || !spamStatus.isSpam()) {
1289 return false;
1290 }
Eric Erfanianccca3152017-02-22 16:32:36 -08001291
maxwelbb87334b2018-05-14 13:57:32 -07001292 if (!isIncoming()) {
1293 return false;
1294 }
1295
1296 if (isPotentialEmergencyCallback()) {
1297 return false;
1298 }
1299
1300 return true;
Eric Erfanianccca3152017-02-22 16:32:36 -08001301 }
1302
1303 public boolean isBlocked() {
linyuh183cb712017-12-27 17:02:37 -08001304 return isBlocked;
Eric Erfanianccca3152017-02-22 16:32:36 -08001305 }
1306
1307 public void setBlockedStatus(boolean isBlocked) {
linyuh183cb712017-12-27 17:02:37 -08001308 this.isBlocked = isBlocked;
Eric Erfanianccca3152017-02-22 16:32:36 -08001309 }
1310
1311 public boolean isRemotelyHeld() {
1312 return isRemotelyHeld;
1313 }
1314
Eric Erfanian2ca43182017-08-31 06:57:16 -07001315 public boolean isMergeInProcess() {
1316 return isMergeInProcess;
1317 }
1318
Eric Erfanianccca3152017-02-22 16:32:36 -08001319 public boolean isIncoming() {
linyuh183cb712017-12-27 17:02:37 -08001320 return logState.isIncoming;
Eric Erfanianccca3152017-02-22 16:32:36 -08001321 }
1322
erfanian2cf2c342017-12-21 12:01:33 -08001323 /**
1324 * Try and determine if the call used assisted dialing.
1325 *
1326 * <p>We will not be able to verify a call underwent assisted dialing until the Platform
1327 * implmentation is complete in P+.
1328 *
1329 * @return a boolean indicating assisted dialing may have been performed
1330 */
Eric Erfanian2ca43182017-08-31 06:57:16 -07001331 public boolean isAssistedDialed() {
1332 if (getIntentExtras() != null) {
erfaniand2e5d0b2018-03-02 14:54:35 -08001333 // P and below uses the existence of USE_ASSISTED_DIALING to indicate assisted dialing
erfanian2cf2c342017-12-21 12:01:33 -08001334 // was used. The Dialer client is responsible for performing assisted dialing before
1335 // placing the outgoing call.
1336 //
1337 // The existence of the assisted dialing extras indicates that assisted dialing took place.
1338 if (getIntentExtras().getBoolean(TelephonyManagerCompat.USE_ASSISTED_DIALING, false)
1339 && getAssistedDialingExtras() != null
1340 && Build.VERSION.SDK_INT <= ConcreteCreator.BUILD_CODE_CEILING) {
1341 return true;
1342 }
1343 }
1344
Eric Erfanian2ca43182017-08-31 06:57:16 -07001345 return false;
1346 }
1347
erfanian2cf2c342017-12-21 12:01:33 -08001348 @Nullable
erfaniand0f207f2017-10-11 12:23:29 -07001349 public TransformationInfo getAssistedDialingExtras() {
erfanian2cf2c342017-12-21 12:01:33 -08001350 if (getIntentExtras() == null) {
1351 return null;
erfaniand0f207f2017-10-11 12:23:29 -07001352 }
erfanian2cf2c342017-12-21 12:01:33 -08001353
1354 if (getIntentExtras().getBundle(TelephonyManagerCompat.ASSISTED_DIALING_EXTRAS) == null) {
1355 return null;
1356 }
1357
erfanianf2556612018-01-23 09:55:59 -08001358 // Used in N-OMR1
erfanian2cf2c342017-12-21 12:01:33 -08001359 return TransformationInfo.newInstanceFromBundle(
1360 getIntentExtras().getBundle(TelephonyManagerCompat.ASSISTED_DIALING_EXTRAS));
erfaniand0f207f2017-10-11 12:23:29 -07001361 }
1362
Eric Erfanianccca3152017-02-22 16:32:36 -08001363 public LatencyReport getLatencyReport() {
linyuh183cb712017-12-27 17:02:37 -08001364 return latencyReport;
Eric Erfanianccca3152017-02-22 16:32:36 -08001365 }
1366
Eric Erfanian2ca43182017-08-31 06:57:16 -07001367 public int getAnswerAndReleaseButtonDisplayedTimes() {
1368 return answerAndReleaseButtonDisplayedTimes;
1369 }
1370
1371 public void increaseAnswerAndReleaseButtonDisplayedTimes() {
1372 answerAndReleaseButtonDisplayedTimes++;
1373 }
1374
1375 public boolean getReleasedByAnsweringSecondCall() {
1376 return releasedByAnsweringSecondCall;
1377 }
1378
1379 public void setReleasedByAnsweringSecondCall(boolean releasedByAnsweringSecondCall) {
1380 this.releasedByAnsweringSecondCall = releasedByAnsweringSecondCall;
1381 }
1382
1383 public int getSecondCallWithoutAnswerAndReleasedButtonTimes() {
1384 return secondCallWithoutAnswerAndReleasedButtonTimes;
1385 }
1386
1387 public void increaseSecondCallWithoutAnswerAndReleasedButtonTimes() {
1388 secondCallWithoutAnswerAndReleasedButtonTimes++;
1389 }
1390
Eric Erfanian8369df02017-05-03 10:27:13 -07001391 @Nullable
1392 public EnrichedCallCapabilities getEnrichedCallCapabilities() {
linyuh183cb712017-12-27 17:02:37 -08001393 return enrichedCallCapabilities;
Eric Erfanian8369df02017-05-03 10:27:13 -07001394 }
1395
1396 public void setEnrichedCallCapabilities(
1397 @Nullable EnrichedCallCapabilities mEnrichedCallCapabilities) {
linyuh183cb712017-12-27 17:02:37 -08001398 this.enrichedCallCapabilities = mEnrichedCallCapabilities;
Eric Erfanian8369df02017-05-03 10:27:13 -07001399 }
1400
1401 @Nullable
1402 public Session getEnrichedCallSession() {
linyuh183cb712017-12-27 17:02:37 -08001403 return enrichedCallSession;
Eric Erfanian8369df02017-05-03 10:27:13 -07001404 }
1405
1406 public void setEnrichedCallSession(@Nullable Session mEnrichedCallSession) {
linyuh183cb712017-12-27 17:02:37 -08001407 this.enrichedCallSession = mEnrichedCallSession;
Eric Erfanian8369df02017-05-03 10:27:13 -07001408 }
1409
Eric Erfanianccca3152017-02-22 16:32:36 -08001410 public void unregisterCallback() {
linyuh183cb712017-12-27 17:02:37 -08001411 telecomCall.unregisterCallback(telecomCallCallback);
Eric Erfanianccca3152017-02-22 16:32:36 -08001412 }
1413
Eric Erfanianccca3152017-02-22 16:32:36 -08001414 public void phoneAccountSelected(PhoneAccountHandle accountHandle, boolean setDefault) {
1415 LogUtil.i(
1416 "DialerCall.phoneAccountSelected",
1417 "accountHandle: %s, setDefault: %b",
1418 accountHandle,
1419 setDefault);
linyuh183cb712017-12-27 17:02:37 -08001420 telecomCall.phoneAccountSelected(accountHandle, setDefault);
Eric Erfanianccca3152017-02-22 16:32:36 -08001421 }
1422
1423 public void disconnect() {
1424 LogUtil.i("DialerCall.disconnect", "");
wangqibb94ca62018-04-27 14:34:04 -07001425 setState(DialerCallState.DISCONNECTING);
linyuh183cb712017-12-27 17:02:37 -08001426 for (DialerCallListener listener : listeners) {
Eric Erfanianccca3152017-02-22 16:32:36 -08001427 listener.onDialerCallUpdate();
1428 }
linyuh183cb712017-12-27 17:02:37 -08001429 telecomCall.disconnect();
Eric Erfanianccca3152017-02-22 16:32:36 -08001430 }
1431
1432 public void hold() {
1433 LogUtil.i("DialerCall.hold", "");
linyuh183cb712017-12-27 17:02:37 -08001434 telecomCall.hold();
Eric Erfanianccca3152017-02-22 16:32:36 -08001435 }
1436
1437 public void unhold() {
1438 LogUtil.i("DialerCall.unhold", "");
linyuh183cb712017-12-27 17:02:37 -08001439 telecomCall.unhold();
Eric Erfanianccca3152017-02-22 16:32:36 -08001440 }
1441
1442 public void splitFromConference() {
1443 LogUtil.i("DialerCall.splitFromConference", "");
linyuh183cb712017-12-27 17:02:37 -08001444 telecomCall.splitFromConference();
Eric Erfanianccca3152017-02-22 16:32:36 -08001445 }
1446
1447 public void answer(int videoState) {
1448 LogUtil.i("DialerCall.answer", "videoState: " + videoState);
linyuh183cb712017-12-27 17:02:37 -08001449 telecomCall.answer(videoState);
Eric Erfanianccca3152017-02-22 16:32:36 -08001450 }
1451
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001452 public void answer() {
linyuh183cb712017-12-27 17:02:37 -08001453 answer(telecomCall.getDetails().getVideoState());
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001454 }
1455
Eric Erfanianccca3152017-02-22 16:32:36 -08001456 public void reject(boolean rejectWithMessage, String message) {
1457 LogUtil.i("DialerCall.reject", "");
linyuh183cb712017-12-27 17:02:37 -08001458 telecomCall.reject(rejectWithMessage, message);
Eric Erfanianccca3152017-02-22 16:32:36 -08001459 }
1460
1461 /** Return the string label to represent the call provider */
1462 public String getCallProviderLabel() {
1463 if (callProviderLabel == null) {
1464 PhoneAccount account = getPhoneAccount();
1465 if (account != null && !TextUtils.isEmpty(account.getLabel())) {
wangqi9982f0d2017-10-11 17:46:07 -07001466 if (callCapableAccounts != null && callCapableAccounts.size() > 1) {
Eric Erfanianccca3152017-02-22 16:32:36 -08001467 callProviderLabel = account.getLabel().toString();
1468 }
1469 }
1470 if (callProviderLabel == null) {
1471 callProviderLabel = "";
1472 }
1473 }
1474 return callProviderLabel;
1475 }
1476
1477 private PhoneAccount getPhoneAccount() {
1478 PhoneAccountHandle accountHandle = getAccountHandle();
1479 if (accountHandle == null) {
1480 return null;
1481 }
linyuh183cb712017-12-27 17:02:37 -08001482 return context.getSystemService(TelecomManager.class).getPhoneAccount(accountHandle);
Eric Erfanianccca3152017-02-22 16:32:36 -08001483 }
1484
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001485 public VideoTech getVideoTech() {
roldenburg7bb96232017-10-09 10:32:05 -07001486 if (videoTech == null) {
roldenburg6bd612f2018-01-18 12:57:19 -08001487 videoTech = videoTechManager.getVideoTech(getAccountHandle());
roldenburg7bb96232017-10-09 10:32:05 -07001488
1489 // Only store the first video tech type found to be available during the life of the call.
1490 if (selectedAvailableVideoTechType == com.android.dialer.logging.VideoTech.Type.NONE) {
1491 // Update the video tech.
1492 selectedAvailableVideoTechType = videoTech.getVideoTechType();
1493 }
1494 }
Eric Erfanian2ca43182017-08-31 06:57:16 -07001495 return videoTech;
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001496 }
1497
Eric Erfanianccca3152017-02-22 16:32:36 -08001498 public String getCallbackNumber() {
1499 if (callbackNumber == null) {
1500 // Show the emergency callback number if either:
1501 // 1. This is an emergency call.
1502 // 2. The phone is in Emergency Callback Mode, which means we should show the callback
1503 // number.
1504 boolean showCallbackNumber = hasProperty(Details.PROPERTY_EMERGENCY_CALLBACK_MODE);
1505
1506 if (isEmergencyCall() || showCallbackNumber) {
wangqi339b4f32017-09-18 14:32:09 -07001507 callbackNumber =
linyuh183cb712017-12-27 17:02:37 -08001508 context.getSystemService(TelecomManager.class).getLine1Number(getAccountHandle());
Eric Erfanianccca3152017-02-22 16:32:36 -08001509 }
1510
Eric Erfanianccca3152017-02-22 16:32:36 -08001511 if (callbackNumber == null) {
1512 callbackNumber = "";
1513 }
1514 }
1515 return callbackNumber;
1516 }
1517
wangqi97539352017-09-25 11:15:16 -07001518 public String getSimCountryIso() {
1519 String simCountryIso =
linyuh183cb712017-12-27 17:02:37 -08001520 TelephonyManagerCompat.getTelephonyManagerForPhoneAccountHandle(context, getAccountHandle())
wangqi97539352017-09-25 11:15:16 -07001521 .getSimCountryIso();
1522 if (!TextUtils.isEmpty(simCountryIso)) {
1523 simCountryIso = simCountryIso.toUpperCase(Locale.US);
1524 }
1525 return simCountryIso;
1526 }
1527
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001528 @Override
1529 public void onVideoTechStateChanged() {
1530 update();
1531 }
1532
1533 @Override
1534 public void onSessionModificationStateChanged() {
wangqi9982f0d2017-10-11 17:46:07 -07001535 Trace.beginSection("DialerCall.onSessionModificationStateChanged");
linyuh183cb712017-12-27 17:02:37 -08001536 for (DialerCallListener listener : listeners) {
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001537 listener.onDialerCallSessionModificationStateChange();
1538 }
wangqi9982f0d2017-10-11 17:46:07 -07001539 Trace.endSection();
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001540 }
1541
1542 @Override
1543 public void onCameraDimensionsChanged(int width, int height) {
1544 InCallVideoCallCallbackNotifier.getInstance().cameraDimensionsChanged(this, width, height);
1545 }
1546
1547 @Override
1548 public void onPeerDimensionsChanged(int width, int height) {
1549 InCallVideoCallCallbackNotifier.getInstance().peerDimensionsChanged(this, width, height);
1550 }
1551
1552 @Override
1553 public void onVideoUpgradeRequestReceived() {
1554 LogUtil.enterBlock("DialerCall.onVideoUpgradeRequestReceived");
1555
linyuh183cb712017-12-27 17:02:37 -08001556 for (DialerCallListener listener : listeners) {
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001557 listener.onDialerCallUpgradeToVideo();
1558 }
1559
1560 update();
Eric Erfanian8369df02017-05-03 10:27:13 -07001561
linyuh183cb712017-12-27 17:02:37 -08001562 Logger.get(context)
Eric Erfanian8369df02017-05-03 10:27:13 -07001563 .logCallImpression(
1564 DialerImpression.Type.VIDEO_CALL_REQUEST_RECEIVED, getUniqueCallId(), getTimeAddedMs());
1565 }
1566
1567 @Override
1568 public void onUpgradedToVideo(boolean switchToSpeaker) {
1569 LogUtil.enterBlock("DialerCall.onUpgradedToVideo");
1570
1571 if (!switchToSpeaker) {
1572 return;
1573 }
1574
1575 CallAudioState audioState = AudioModeProvider.getInstance().getAudioState();
1576
1577 if (0 != (CallAudioState.ROUTE_BLUETOOTH & audioState.getSupportedRouteMask())) {
1578 LogUtil.e(
1579 "DialerCall.onUpgradedToVideo",
1580 "toggling speakerphone not allowed when bluetooth supported.");
1581 return;
1582 }
1583
1584 if (audioState.getRoute() == CallAudioState.ROUTE_SPEAKER) {
1585 return;
1586 }
1587
1588 TelecomAdapter.getInstance().setAudioRoute(CallAudioState.ROUTE_SPEAKER);
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001589 }
1590
Eric Erfanian2ca43182017-08-31 06:57:16 -07001591 @Override
1592 public void onCapabilitiesUpdated() {
1593 if (getNumber() == null) {
1594 return;
1595 }
1596 EnrichedCallCapabilities capabilities =
linyuh183cb712017-12-27 17:02:37 -08001597 EnrichedCallComponent.get(context).getEnrichedCallManager().getCapabilities(getNumber());
Eric Erfanian2ca43182017-08-31 06:57:16 -07001598 if (capabilities != null) {
1599 setEnrichedCallCapabilities(capabilities);
1600 update();
1601 }
1602 }
1603
1604 @Override
1605 public void onEnrichedCallStateChanged() {
1606 updateEnrichedCallSession();
1607 }
1608
1609 @Override
1610 public void onImpressionLoggingNeeded(DialerImpression.Type impressionType) {
linyuh183cb712017-12-27 17:02:37 -08001611 Logger.get(context).logCallImpression(impressionType, getUniqueCallId(), getTimeAddedMs());
twyendde01c52017-09-22 10:07:31 -07001612 if (impressionType == DialerImpression.Type.LIGHTBRINGER_UPGRADE_REQUESTED) {
1613 if (getLogState().contactLookupResult == Type.NOT_FOUND) {
linyuh183cb712017-12-27 17:02:37 -08001614 Logger.get(context)
twyendde01c52017-09-22 10:07:31 -07001615 .logCallImpression(
1616 DialerImpression.Type.LIGHTBRINGER_NON_CONTACT_UPGRADE_REQUESTED,
1617 getUniqueCallId(),
1618 getTimeAddedMs());
1619 }
1620 }
Eric Erfanian2ca43182017-08-31 06:57:16 -07001621 }
1622
1623 private void updateEnrichedCallSession() {
1624 if (getNumber() == null) {
1625 return;
1626 }
1627 if (getEnrichedCallSession() != null) {
1628 // State changes to existing sessions are currently handled by the UI components (which have
1629 // their own listeners). Someday instead we could remove those and just call update() here and
1630 // have the usual onDialerCallUpdate update the UI.
1631 dispatchOnEnrichedCallSessionUpdate();
1632 return;
1633 }
1634
linyuh183cb712017-12-27 17:02:37 -08001635 EnrichedCallManager manager = EnrichedCallComponent.get(context).getEnrichedCallManager();
Eric Erfanian2ca43182017-08-31 06:57:16 -07001636
1637 Filter filter =
1638 isIncoming()
1639 ? manager.createIncomingCallComposerFilter()
1640 : manager.createOutgoingCallComposerFilter();
1641
1642 Session session = manager.getSession(getUniqueCallId(), getNumber(), filter);
1643 if (session == null) {
1644 return;
1645 }
1646
1647 session.setUniqueDialerCallId(getUniqueCallId());
1648 setEnrichedCallSession(session);
1649
1650 LogUtil.i(
1651 "DialerCall.updateEnrichedCallSession",
1652 "setting session %d's dialer id to %s",
1653 session.getSessionId(),
1654 getUniqueCallId());
1655
1656 dispatchOnEnrichedCallSessionUpdate();
1657 }
1658
1659 private void dispatchOnEnrichedCallSessionUpdate() {
linyuh183cb712017-12-27 17:02:37 -08001660 for (DialerCallListener listener : listeners) {
Eric Erfanian2ca43182017-08-31 06:57:16 -07001661 listener.onEnrichedCallSessionUpdate();
1662 }
1663 }
1664
1665 void onRemovedFromCallList() {
wangqif1861052018-04-19 15:06:06 -07001666 LogUtil.enterBlock("DialerCall.onRemovedFromCallList");
Eric Erfanian2ca43182017-08-31 06:57:16 -07001667 // Ensure we clean up when this call is removed.
wangqia0c49f62018-04-25 15:04:01 -07001668 if (videoTechManager != null) {
1669 videoTechManager.dispatchRemovedFromCallList();
1670 }
wangqibed9e2f2018-04-30 11:55:07 -07001671 // TODO(wangqi): Consider moving this to a DialerCallListener.
wangqia0c49f62018-04-25 15:04:01 -07001672 if (rttTranscript != null && !isCallRemoved) {
wangqibed9e2f2018-04-30 11:55:07 -07001673 saveRttTranscript();
wangqif1861052018-04-19 15:06:06 -07001674 }
wangqia0c49f62018-04-25 15:04:01 -07001675 isCallRemoved = true;
Eric Erfanian2ca43182017-08-31 06:57:16 -07001676 }
1677
wangqi4d705e52017-09-28 12:23:35 -07001678 public com.android.dialer.logging.VideoTech.Type getSelectedAvailableVideoTechType() {
1679 return selectedAvailableVideoTechType;
yueg457b3972017-09-18 15:11:47 -07001680 }
1681
Android Dialer974fc292018-02-01 16:12:25 -08001682 public void markFeedbackRequested() {
1683 feedbackRequested = true;
1684 }
1685
1686 public boolean isFeedbackRequested() {
1687 return feedbackRequested;
1688 }
1689
Eric Erfanianccca3152017-02-22 16:32:36 -08001690 /**
twyen73a74c32018-03-07 12:12:24 -08001691 * If the in call UI has shown the phone account selection dialog for the call, the {@link
1692 * PreferredAccountRecorder} to record the result from the dialog.
1693 */
1694 @Nullable
1695 public PreferredAccountRecorder getPreferredAccountRecorder() {
1696 return preferredAccountRecorder;
1697 }
1698
1699 public void setPreferredAccountRecorder(PreferredAccountRecorder preferredAccountRecorder) {
1700 this.preferredAccountRecorder = preferredAccountRecorder;
1701 }
1702
erfaniand05d8992018-03-20 19:42:26 -07001703 /** Indicates the call is eligible for SpeakEasy */
1704 public boolean isSpeakEasyEligible() {
erfaniandcc84cd2018-04-17 12:41:05 -07001705 return !isPotentialEmergencyCallback()
1706 && !isEmergencyCall()
1707 && !isActiveRttCall()
1708 && !isConferenceCall()
1709 && !isVideoCall()
1710 && !isVoiceMailNumber();
erfaniand05d8992018-03-20 19:42:26 -07001711 }
1712
1713 /** Indicates the user has selected SpeakEasy */
1714 public boolean isSpeakEasyCall() {
1715 if (!isSpeakEasyEligible()) {
1716 return false;
1717 }
1718 return isSpeakEasyCall;
1719 }
1720
1721 /** Sets the user preference for SpeakEasy */
1722 public void setIsSpeakEasyCall(boolean isSpeakEasyCall) {
1723 this.isSpeakEasyCall = isSpeakEasyCall;
erfanian3887ab02018-05-11 11:02:53 -07001724 if (listeners != null) {
1725 for (DialerCallListener listener : listeners) {
1726 listener.onDialerCallSpeakEasyStateChange();
1727 }
1728 }
erfaniand05d8992018-03-20 19:42:26 -07001729 }
1730
twyen73a74c32018-03-07 12:12:24 -08001731 /**
Eric Erfanianccca3152017-02-22 16:32:36 -08001732 * Specifies whether a number is in the call history or not. {@link #CALL_HISTORY_STATUS_UNKNOWN}
1733 * means there is no result.
1734 */
1735 @IntDef({
1736 CALL_HISTORY_STATUS_UNKNOWN,
1737 CALL_HISTORY_STATUS_PRESENT,
1738 CALL_HISTORY_STATUS_NOT_PRESENT
1739 })
1740 @Retention(RetentionPolicy.SOURCE)
1741 public @interface CallHistoryStatus {}
1742
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001743 /** Camera direction constants */
1744 public static class CameraDirection {
Eric Erfanianccca3152017-02-22 16:32:36 -08001745 public static final int CAMERA_DIRECTION_UNKNOWN = -1;
1746 public static final int CAMERA_DIRECTION_FRONT_FACING = CameraCharacteristics.LENS_FACING_FRONT;
1747 public static final int CAMERA_DIRECTION_BACK_FACING = CameraCharacteristics.LENS_FACING_BACK;
Eric Erfanianccca3152017-02-22 16:32:36 -08001748 }
1749
1750 /**
1751 * Tracks any state variables that is useful for logging. There is some amount of overlap with
1752 * existing call member variables, but this duplication helps to ensure that none of these logging
1753 * variables will interface with/and affect call logic.
1754 */
1755 public static class LogState {
1756
1757 public DisconnectCause disconnectCause;
1758 public boolean isIncoming = false;
Eric Erfanian8369df02017-05-03 10:27:13 -07001759 public ContactLookupResult.Type contactLookupResult =
1760 ContactLookupResult.Type.UNKNOWN_LOOKUP_RESULT_TYPE;
Eric Erfanianccca3152017-02-22 16:32:36 -08001761 public CallSpecificAppData callSpecificAppData;
1762 // If this was a conference call, the total number of calls involved in the conference.
1763 public int conferencedCalls = 0;
Eric Erfanianccca3152017-02-22 16:32:36 -08001764 public boolean isLogged = false;
1765
maxwelbd95d0f62018-05-01 17:50:55 -07001766 // Result of subtracting android.telecom.Call.Details#getConnectTimeMillis from the current time
1767 public long telecomDurationMillis = 0;
1768
1769 // Result of a call to System.currentTimeMillis when Dialer sees that a call
1770 // moves to the ACTIVE state
1771 long dialerConnectTimeMillis = 0;
1772
1773 // Same as dialer_connect_time_millis, using SystemClock.elapsedRealtime
1774 // instead
1775 long dialerConnectTimeMillisElapsedRealtime = 0;
1776
1777 // Result of subtracting dialer_connect_time_millis from System.currentTimeMillis
1778 public long dialerDurationMillis = 0;
1779
1780 // Same as dialerDurationMillis, using SystemClock.elapsedRealtime instead
1781 public long dialerDurationMillisElapsedRealtime = 0;
1782
Eric Erfanian8369df02017-05-03 10:27:13 -07001783 private static String lookupToString(ContactLookupResult.Type lookupType) {
Eric Erfanianccca3152017-02-22 16:32:36 -08001784 switch (lookupType) {
Eric Erfanian8369df02017-05-03 10:27:13 -07001785 case LOCAL_CONTACT:
Eric Erfanianccca3152017-02-22 16:32:36 -08001786 return "Local";
Eric Erfanian8369df02017-05-03 10:27:13 -07001787 case LOCAL_CACHE:
Eric Erfanianccca3152017-02-22 16:32:36 -08001788 return "Cache";
Eric Erfanian8369df02017-05-03 10:27:13 -07001789 case REMOTE:
Eric Erfanianccca3152017-02-22 16:32:36 -08001790 return "Remote";
Eric Erfanian8369df02017-05-03 10:27:13 -07001791 case EMERGENCY:
Eric Erfanianccca3152017-02-22 16:32:36 -08001792 return "Emergency";
Eric Erfanian8369df02017-05-03 10:27:13 -07001793 case VOICEMAIL:
Eric Erfanianccca3152017-02-22 16:32:36 -08001794 return "Voicemail";
1795 default:
1796 return "Not found";
1797 }
1798 }
1799
1800 private static String initiationToString(CallSpecificAppData callSpecificAppData) {
1801 if (callSpecificAppData == null) {
1802 return "null";
1803 }
Eric Erfanian8369df02017-05-03 10:27:13 -07001804 switch (callSpecificAppData.getCallInitiationType()) {
1805 case INCOMING_INITIATION:
Eric Erfanianccca3152017-02-22 16:32:36 -08001806 return "Incoming";
Eric Erfanian8369df02017-05-03 10:27:13 -07001807 case DIALPAD:
Eric Erfanianccca3152017-02-22 16:32:36 -08001808 return "Dialpad";
Eric Erfanian8369df02017-05-03 10:27:13 -07001809 case SPEED_DIAL:
Eric Erfanianccca3152017-02-22 16:32:36 -08001810 return "Speed Dial";
Eric Erfanian8369df02017-05-03 10:27:13 -07001811 case REMOTE_DIRECTORY:
Eric Erfanianccca3152017-02-22 16:32:36 -08001812 return "Remote Directory";
Eric Erfanian8369df02017-05-03 10:27:13 -07001813 case SMART_DIAL:
Eric Erfanianccca3152017-02-22 16:32:36 -08001814 return "Smart Dial";
Eric Erfanian8369df02017-05-03 10:27:13 -07001815 case REGULAR_SEARCH:
Eric Erfanianccca3152017-02-22 16:32:36 -08001816 return "Regular Search";
Eric Erfanian8369df02017-05-03 10:27:13 -07001817 case CALL_LOG:
Eric Erfanianccca3152017-02-22 16:32:36 -08001818 return "DialerCall Log";
Eric Erfanian8369df02017-05-03 10:27:13 -07001819 case CALL_LOG_FILTER:
Eric Erfanianccca3152017-02-22 16:32:36 -08001820 return "DialerCall Log Filter";
Eric Erfanian8369df02017-05-03 10:27:13 -07001821 case VOICEMAIL_LOG:
Eric Erfanianccca3152017-02-22 16:32:36 -08001822 return "Voicemail Log";
Eric Erfanian8369df02017-05-03 10:27:13 -07001823 case CALL_DETAILS:
Eric Erfanianccca3152017-02-22 16:32:36 -08001824 return "DialerCall Details";
Eric Erfanian8369df02017-05-03 10:27:13 -07001825 case QUICK_CONTACTS:
Eric Erfanianccca3152017-02-22 16:32:36 -08001826 return "Quick Contacts";
Eric Erfanian8369df02017-05-03 10:27:13 -07001827 case EXTERNAL_INITIATION:
Eric Erfanianccca3152017-02-22 16:32:36 -08001828 return "External";
Eric Erfanian8369df02017-05-03 10:27:13 -07001829 case LAUNCHER_SHORTCUT:
Eric Erfanianccca3152017-02-22 16:32:36 -08001830 return "Launcher Shortcut";
1831 default:
Eric Erfanian8369df02017-05-03 10:27:13 -07001832 return "Unknown: " + callSpecificAppData.getCallInitiationType();
Eric Erfanianccca3152017-02-22 16:32:36 -08001833 }
1834 }
1835
1836 @Override
1837 public String toString() {
1838 return String.format(
1839 Locale.US,
1840 "["
1841 + "%s, " // DisconnectCause toString already describes the object type
1842 + "isIncoming: %s, "
1843 + "contactLookup: %s, "
1844 + "callInitiation: %s, "
1845 + "duration: %s"
1846 + "]",
1847 disconnectCause,
1848 isIncoming,
1849 lookupToString(contactLookupResult),
1850 initiationToString(callSpecificAppData),
maxwelbd95d0f62018-05-01 17:50:55 -07001851 telecomDurationMillis);
Eric Erfanianccca3152017-02-22 16:32:36 -08001852 }
1853 }
1854
roldenburgd7490db2018-01-09 13:51:29 -08001855 /** Coordinates the available VideoTech implementations for a call. */
1856 @VisibleForTesting
1857 public static class VideoTechManager {
Eric Erfaniand8046e52017-04-06 09:41:50 -07001858 private final Context context;
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001859 private final EmptyVideoTech emptyVideoTech = new EmptyVideoTech();
roldenburgd7490db2018-01-09 13:51:29 -08001860 private final VideoTech rcsVideoShare;
Eric Erfanian90508232017-03-24 09:31:16 -07001861 private final List<VideoTech> videoTechs;
roldenburg7bb96232017-10-09 10:32:05 -07001862 private VideoTech savedTech;
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001863
roldenburgd7490db2018-01-09 13:51:29 -08001864 @VisibleForTesting
1865 public VideoTechManager(DialerCall call) {
linyuh183cb712017-12-27 17:02:37 -08001866 this.context = call.context;
Eric Erfaniand8046e52017-04-06 09:41:50 -07001867
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001868 String phoneNumber = call.getNumber();
Eric Erfaniand8046e52017-04-06 09:41:50 -07001869 phoneNumber = phoneNumber != null ? phoneNumber : "";
Eric Erfanian2ca43182017-08-31 06:57:16 -07001870 phoneNumber = phoneNumber.replaceAll("[^+0-9]", "");
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001871
1872 // Insert order here determines the priority of that video tech option
Eric Erfanian8369df02017-05-03 10:27:13 -07001873 videoTechs = new ArrayList<>();
yueg457b3972017-09-18 15:11:47 -07001874
linyuh183cb712017-12-27 17:02:37 -08001875 videoTechs.add(new ImsVideoTech(Logger.get(call.context), call, call.telecomCall));
Eric Erfanian90508232017-03-24 09:31:16 -07001876
roldenburgd7490db2018-01-09 13:51:29 -08001877 rcsVideoShare =
linyuh183cb712017-12-27 17:02:37 -08001878 EnrichedCallComponent.get(call.context)
Eric Erfanian90508232017-03-24 09:31:16 -07001879 .getRcsVideoShareFactory()
1880 .newRcsVideoShare(
linyuh183cb712017-12-27 17:02:37 -08001881 EnrichedCallComponent.get(call.context).getEnrichedCallManager(),
Eric Erfanian90508232017-03-24 09:31:16 -07001882 call,
Eric Erfaniand8046e52017-04-06 09:41:50 -07001883 phoneNumber);
roldenburg3eca69f2018-01-16 12:07:04 -08001884 videoTechs.add(rcsVideoShare);
Eric Erfaniand8046e52017-04-06 09:41:50 -07001885
1886 videoTechs.add(
roldenburg4f026392017-10-13 18:42:20 -07001887 new DuoVideoTech(
linyuh183cb712017-12-27 17:02:37 -08001888 DuoComponent.get(call.context).getDuo(), call, call.telecomCall, phoneNumber));
roldenburgd7490db2018-01-09 13:51:29 -08001889
1890 savedTech = emptyVideoTech;
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001891 }
1892
roldenburgd7490db2018-01-09 13:51:29 -08001893 @VisibleForTesting
roldenburg6bd612f2018-01-18 12:57:19 -08001894 public VideoTech getVideoTech(PhoneAccountHandle phoneAccountHandle) {
roldenburgd7490db2018-01-09 13:51:29 -08001895 if (savedTech == emptyVideoTech) {
1896 for (VideoTech tech : videoTechs) {
roldenburg6bd612f2018-01-18 12:57:19 -08001897 if (tech.isAvailable(context, phoneAccountHandle)) {
roldenburgd7490db2018-01-09 13:51:29 -08001898 savedTech = tech;
1899 savedTech.becomePrimary();
1900 break;
1901 }
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001902 }
roldenburg6bd612f2018-01-18 12:57:19 -08001903 } else if (savedTech instanceof DuoVideoTech
1904 && rcsVideoShare.isAvailable(context, phoneAccountHandle)) {
roldenburgd7490db2018-01-09 13:51:29 -08001905 // RCS Video Share will become available after the capability exchange which is slower than
1906 // Duo reading local contacts for reachability. If Video Share becomes available and we are
1907 // not in the middle of any session changes, let it take over.
1908 savedTech = rcsVideoShare;
1909 rcsVideoShare.becomePrimary();
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001910 }
1911
roldenburgd7490db2018-01-09 13:51:29 -08001912 return savedTech;
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001913 }
1914
roldenburgd7490db2018-01-09 13:51:29 -08001915 @VisibleForTesting
roldenburg6bd612f2018-01-18 12:57:19 -08001916 public void dispatchCallStateChanged(int newState, PhoneAccountHandle phoneAccountHandle) {
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001917 for (VideoTech videoTech : videoTechs) {
roldenburg6bd612f2018-01-18 12:57:19 -08001918 videoTech.onCallStateChanged(context, newState, phoneAccountHandle);
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001919 }
1920 }
Eric Erfanian2ca43182017-08-31 06:57:16 -07001921
1922 void dispatchRemovedFromCallList() {
1923 for (VideoTech videoTech : videoTechs) {
1924 videoTech.onRemovedFromCallList();
1925 }
1926 }
Eric Erfaniand5e47f62017-03-15 14:41:07 -07001927 }
1928
Eric Erfanianccca3152017-02-22 16:32:36 -08001929 /** Called when canned text responses have been loaded. */
1930 public interface CannedTextResponsesLoadedListener {
1931 void onCannedTextResponsesLoaded(DialerCall call);
1932 }
1933}