blob: be501f00f4cfe62a2f13ba7b9625f01118316942 [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
17package com.android.telecomm;
18
19import android.content.ComponentName;
20import android.content.pm.PackageManager;
21import android.content.pm.ServiceInfo;
22import android.telecomm.CallServiceDescriptor;
23
24/**
25 * Utilities to deal with the system telephony services. The system telephony services are treated
26 * differently from 3rd party services in some situations (emergency calls, audio focus, etc...).
27 */
28public final class TelephonyUtil {
29 private static final String TAG = ThreadUtil.class.getSimpleName();
30
31 private static final String TELEPHONY_PACKAGE_NAME =
32 "com.android.phone";
33
34 private static final String GSM_CALL_SERVICE_CLASS_NAME =
35 "com.android.services.telephony.GsmCallService";
36
37 private static final String CDMA_CALL_SERVICE_CLASS_NAME =
38 "com.android.services.telephony.CdmaCallService";
39
40 private TelephonyUtil() {}
41
42 static boolean isTelephonySelector(CallServiceSelectorWrapper selector) {
43 return selector.getComponentName().getPackageName().equals(TELEPHONY_PACKAGE_NAME);
44 }
45
Santos Cordon5b7b9b32014-03-26 14:00:22 -070046 static boolean isPstnCallService(CallServiceDescriptor descriptor) {
47 ComponentName componentName = descriptor.getServiceComponent();
48 if (TELEPHONY_PACKAGE_NAME.equals(componentName.getPackageName())) {
49 String className = componentName.getClassName();
50 return GSM_CALL_SERVICE_CLASS_NAME.equals(className) ||
51 CDMA_CALL_SERVICE_CLASS_NAME.equals(className);
52 }
53
54 return false;
55 }
56
Sailesh Nepal18386a82014-03-19 10:22:40 -070057 /**
58 * Returns whether or not the call is currently connected as a cellular call (through the
59 * device's cellular radio).
60 */
61 static boolean isCurrentlyPSTNCall(Call call) {
62 if (Log.DEBUG) {
63 verifyCallServiceExists(GSM_CALL_SERVICE_CLASS_NAME);
64 verifyCallServiceExists(CDMA_CALL_SERVICE_CLASS_NAME);
65 }
66
67 CallServiceWrapper callService = call.getCallService();
68 if (callService == null) {
69 return false;
70 }
Santos Cordon5b7b9b32014-03-26 14:00:22 -070071 return isPstnCallService(callService.getDescriptor());
Sailesh Nepal18386a82014-03-19 10:22:40 -070072 }
73
74 private static void verifyCallServiceExists(String serviceName) {
75 PackageManager packageManager = TelecommApp.getInstance().getPackageManager();
76 try {
77 ServiceInfo info = packageManager.getServiceInfo(
78 new ComponentName(TELEPHONY_PACKAGE_NAME, serviceName), 0);
79 if (info == null) {
80 Log.wtf(TAG, "Error, unable to find call service: %s", serviceName);
81 }
82 } catch (PackageManager.NameNotFoundException e) {
83 Log.wtf(TAG, e, "Error, exception while trying to find call service: %s", serviceName);
84 }
85 }
86}