blob: a76821a73c7ea2767932642cc75e318228dafb88 [file] [log] [blame]
Sailesh Nepal18386a82014-03-19 10:22:40 -07001/*
2 * Copyright 2014, The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Tyler Gunn7cc70b42014-09-12 22:17:27 -070017package com.android.server.telecom;
Sailesh Nepal18386a82014-03-19 10:22:40 -070018
19import android.content.ComponentName;
Ihab Awad69eb0f52014-07-18 11:20:37 -070020import android.content.Context;
21import android.net.Uri;
Yorke Leec1272112014-10-16 09:50:00 -070022import android.telecom.PhoneAccount;
23import android.telecom.PhoneAccountHandle;
Ihab Awad69eb0f52014-07-18 11:20:37 -070024import android.telephony.PhoneNumberUtils;
Brad Ebingere6c481a2016-05-12 14:13:26 -070025import android.telephony.SubscriptionManager;
26import android.telephony.TelephonyManager;
Sailesh Nepal18386a82014-03-19 10:22:40 -070027
Hall Liuada03012015-10-26 15:44:00 -070028import com.android.internal.annotations.VisibleForTesting;
29
Brad Ebingere6c481a2016-05-12 14:13:26 -070030import java.util.Collections;
31import java.util.Comparator;
32import java.util.List;
33
Sailesh Nepal18386a82014-03-19 10:22:40 -070034/**
35 * Utilities to deal with the system telephony services. The system telephony services are treated
36 * differently from 3rd party services in some situations (emergency calls, audio focus, etc...).
37 */
38public final class TelephonyUtil {
Sailesh Nepal4a515502014-06-26 12:58:17 -070039 private static final String TELEPHONY_PACKAGE_NAME = "com.android.phone";
Sailesh Nepal18386a82014-03-19 10:22:40 -070040
Ihab Awad55a34282014-06-18 10:31:09 -070041 private static final String PSTN_CALL_SERVICE_CLASS_NAME =
Ihab Awad69eb0f52014-07-18 11:20:37 -070042 "com.android.services.telephony.TelephonyConnectionService";
Sailesh Nepal18386a82014-03-19 10:22:40 -070043
Yorke Leec1272112014-10-16 09:50:00 -070044 private static final PhoneAccountHandle DEFAULT_EMERGENCY_PHONE_ACCOUNT_HANDLE =
45 new PhoneAccountHandle(
46 new ComponentName(TELEPHONY_PACKAGE_NAME, PSTN_CALL_SERVICE_CLASS_NAME), "E");
47
Sailesh Nepal18386a82014-03-19 10:22:40 -070048 private TelephonyUtil() {}
49
Yorke Leec1272112014-10-16 09:50:00 -070050 /**
51 * @return fallback {@link PhoneAccount} to be used by Telecom for emergency calls in the
52 * rare case that Telephony has not registered any phone accounts yet. Details about this
53 * account are not expected to be displayed in the UI, so the description, etc are not
54 * populated.
55 */
Hall Liuada03012015-10-26 15:44:00 -070056 @VisibleForTesting
57 public static PhoneAccount getDefaultEmergencyPhoneAccount() {
Yorke Leec1272112014-10-16 09:50:00 -070058 return PhoneAccount.builder(DEFAULT_EMERGENCY_PHONE_ACCOUNT_HANDLE, "E")
59 .setCapabilities(PhoneAccount.CAPABILITY_SIM_SUBSCRIPTION |
60 PhoneAccount.CAPABILITY_CALL_PROVIDER |
Santos Cordonea5cb932015-05-07 16:28:38 -070061 PhoneAccount.CAPABILITY_PLACE_EMERGENCY_CALLS)
62 .setIsEnabled(true)
63 .build();
Yorke Leec1272112014-10-16 09:50:00 -070064 }
65
Sailesh Nepal905dfba2014-07-14 08:20:41 -070066 static boolean isPstnComponentName(ComponentName componentName) {
Sailesh Nepal4a515502014-06-26 12:58:17 -070067 final ComponentName pstnComponentName = new ComponentName(
68 TELEPHONY_PACKAGE_NAME, PSTN_CALL_SERVICE_CLASS_NAME);
Sailesh Nepal905dfba2014-07-14 08:20:41 -070069 return pstnComponentName.equals(componentName);
Sailesh Nepal18386a82014-03-19 10:22:40 -070070 }
71
Ihab Awad8d5d9dd2015-03-12 11:11:06 -070072 public static boolean shouldProcessAsEmergency(Context context, Uri handle) {
Santos Cordon971e3292015-07-09 12:46:21 -070073 return handle != null && PhoneNumberUtils.isLocalEmergencyNumber(
Ihab Awad69eb0f52014-07-18 11:20:37 -070074 context, handle.getSchemeSpecificPart());
Sailesh Nepal18386a82014-03-19 10:22:40 -070075 }
Brad Ebingere6c481a2016-05-12 14:13:26 -070076
77 public static void sortSimPhoneAccounts(Context context, List<PhoneAccount> accounts) {
78 final TelephonyManager telephonyManager = TelephonyManager.from(context);
79
80 // Sort the accounts according to how we want to display them.
81 Collections.sort(accounts, new Comparator<PhoneAccount>() {
82 @Override
83 public int compare(PhoneAccount account1, PhoneAccount account2) {
84 int retval = 0;
85
86 // SIM accounts go first
87 boolean isSim1 = account1.hasCapabilities(PhoneAccount.CAPABILITY_SIM_SUBSCRIPTION);
88 boolean isSim2 = account2.hasCapabilities(PhoneAccount.CAPABILITY_SIM_SUBSCRIPTION);
89 if (isSim1 != isSim2) {
90 retval = isSim1 ? -1 : 1;
91 }
92
93 int subId1 = telephonyManager.getSubIdForPhoneAccount(account1);
94 int subId2 = telephonyManager.getSubIdForPhoneAccount(account2);
95 if (subId1 != SubscriptionManager.INVALID_SUBSCRIPTION_ID &&
96 subId2 != SubscriptionManager.INVALID_SUBSCRIPTION_ID) {
Sanket Padawe05cb0f92017-03-20 15:05:53 -070097 retval = (SubscriptionManager.getSlotIndex(subId1) <
98 SubscriptionManager.getSlotIndex(subId2)) ? -1 : 1;
Brad Ebingere6c481a2016-05-12 14:13:26 -070099 }
100
101 // Then order by package
102 if (retval == 0) {
103 String pkg1 = account1.getAccountHandle().getComponentName().getPackageName();
104 String pkg2 = account2.getAccountHandle().getComponentName().getPackageName();
105 retval = pkg1.compareTo(pkg2);
106 }
107
108 // Finally, order by label
109 if (retval == 0) {
110 String label1 = nullToEmpty(account1.getLabel().toString());
111 String label2 = nullToEmpty(account2.getLabel().toString());
112 retval = label1.compareTo(label2);
113 }
114
115 // Then by hashcode
116 if (retval == 0) {
117 retval = account1.hashCode() - account2.hashCode();
118 }
119 return retval;
120 }
121 });
122 }
123
124 private static String nullToEmpty(String str) {
125 return str == null ? "" : str;
126 }
Sailesh Nepal18386a82014-03-19 10:22:40 -0700127}