This is a code refactor to replace 1. Legacy ImsQuery into ImsExecutorQuery 2. ImsDirectQuery into ImsQuery 3. SystemTty into Tty Bug: 140542283 Test: m RunSettingsRoboTests -j ROBOTEST_FILTER=Enhanced4gBasePreferenceControllerTest Test: m RunSettingsRoboTests -j ROBOTEST_FILTER=Enhanced4gLteSliceHelperTest Test: m RunSettingsRoboTests -j ROBOTEST_FILTER=VideoCallingPreferenceControllerTest Test: m RunSettingsRoboTests -j ROBOTEST_FILTER=WifiCallingPreferenceControllerTest Test: m RunSettingsRoboTests -j ROBOTEST_FILTER=WifiCallingSettingsForSubTest Test: m RunSettingsRoboTests -j ROBOTEST_FILTER=WifiCallingSliceHelperTest Change-Id: I239021c60fff47de307ac7e21641bee56e205861
83 lines
2.4 KiB
Java
83 lines
2.4 KiB
Java
/*
|
|
* Copyright (C) 2020 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package com.android.settings.network.ims;
|
|
|
|
import android.content.Context;
|
|
import android.telecom.TelecomManager;
|
|
import android.telephony.SubscriptionManager;
|
|
|
|
import androidx.annotation.VisibleForTesting;
|
|
|
|
/**
|
|
* Controller class for querying VT status
|
|
*/
|
|
public class VtQueryImsState extends ImsQueryController {
|
|
|
|
private Context mContext;
|
|
private int mSubId;
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param context {@link Context}
|
|
* @param subId subscription's id
|
|
*/
|
|
public VtQueryImsState(Context context, int subId) {
|
|
mContext = context;
|
|
mSubId = subId;
|
|
}
|
|
|
|
/**
|
|
* Implementation of ImsQueryController#isEnabledByUser(int subId)
|
|
*/
|
|
@VisibleForTesting
|
|
ImsQuery isEnabledByUser(int subId) {
|
|
return new ImsQueryVtUserSetting(subId);
|
|
}
|
|
|
|
/**
|
|
* Get allowance status for user to alter configuration
|
|
*
|
|
* @return true when changing configuration by user is allowed.
|
|
*/
|
|
public boolean isAllowUserControl() {
|
|
if (!SubscriptionManager.isValidSubscriptionId(mSubId)) {
|
|
return false;
|
|
}
|
|
return ((!isTtyEnabled(mContext))
|
|
|| (isTtyOnVolteEnabled(mSubId).query()));
|
|
}
|
|
|
|
@VisibleForTesting
|
|
boolean isTtyEnabled(Context context) {
|
|
final TelecomManager telecomManager = context.getSystemService(TelecomManager.class);
|
|
return (telecomManager.getCurrentTtyMode() != TelecomManager.TTY_MODE_OFF);
|
|
}
|
|
|
|
/**
|
|
* Get user's configuration
|
|
*
|
|
* @return true when user's configuration is ON otherwise false.
|
|
*/
|
|
public boolean isEnabledByUser() {
|
|
if (!SubscriptionManager.isValidSubscriptionId(mSubId)) {
|
|
return false;
|
|
}
|
|
return isEnabledByUser(mSubId).query();
|
|
}
|
|
}
|