Merge "[Settings] Replace isVolteEnabledByPlatform"
This commit is contained in:
58
src/com/android/settings/network/ims/BooleanConsumer.java
Normal file
58
src/com/android/settings/network/ims/BooleanConsumer.java
Normal file
@@ -0,0 +1,58 @@
|
||||
/*
|
||||
* 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 java.util.concurrent.Semaphore;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
import java.util.concurrent.atomic.AtomicBoolean;
|
||||
import java.util.function.Consumer;
|
||||
|
||||
class BooleanConsumer extends Semaphore implements Consumer<Boolean> {
|
||||
|
||||
private static final String TAG = "BooleanConsumer";
|
||||
|
||||
BooleanConsumer() {
|
||||
super(0);
|
||||
mValue = new AtomicBoolean();
|
||||
}
|
||||
|
||||
private volatile AtomicBoolean mValue;
|
||||
|
||||
/**
|
||||
* Get boolean value reported from callback
|
||||
*
|
||||
* @param timeout callback waiting time in milliseconds
|
||||
* @return boolean value reported
|
||||
* @throws InterruptedException when thread get interrupted
|
||||
*/
|
||||
boolean get(long timeout) throws InterruptedException {
|
||||
tryAcquire(timeout, TimeUnit.MILLISECONDS);
|
||||
return mValue.get();
|
||||
}
|
||||
|
||||
/**
|
||||
* Implementation of {@link Consumer#accept(Boolean)}
|
||||
*
|
||||
* @param value boolean reported from {@link Consumer#accept(Boolean)}
|
||||
*/
|
||||
public void accept(Boolean value) {
|
||||
if (value != null) {
|
||||
mValue.set(value.booleanValue());
|
||||
}
|
||||
release();
|
||||
}
|
||||
}
|
@@ -17,16 +17,24 @@
|
||||
package com.android.settings.network.ims;
|
||||
|
||||
import android.telephony.AccessNetworkConstants;
|
||||
import android.telephony.SubscriptionManager;
|
||||
import android.telephony.ims.ImsException;
|
||||
import android.telephony.ims.ImsMmTelManager;
|
||||
import android.telephony.ims.feature.MmTelFeature;
|
||||
import android.telephony.ims.stub.ImsRegistrationImplBase;
|
||||
|
||||
import androidx.annotation.VisibleForTesting;
|
||||
|
||||
import java.util.concurrent.ExecutorService;
|
||||
import java.util.concurrent.Executors;
|
||||
|
||||
/**
|
||||
* Controller class for querying IMS status
|
||||
*/
|
||||
abstract class ImsQueryController {
|
||||
|
||||
private static final long TIMEOUT_MILLIS = 2000;
|
||||
|
||||
private volatile int mCapability;
|
||||
private volatile int mTech;
|
||||
private volatile int mTransportType;
|
||||
@@ -54,6 +62,24 @@ abstract class ImsQueryController {
|
||||
return (new ImsQueryTtyOnVolteStat(subId)).query();
|
||||
}
|
||||
|
||||
@VisibleForTesting
|
||||
boolean isEnabledByPlatform(int subId) throws InterruptedException, ImsException,
|
||||
IllegalArgumentException {
|
||||
if (!SubscriptionManager.isValidSubscriptionId(subId)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
final ImsMmTelManager imsMmTelManager = ImsMmTelManager.createForSubscriptionId(subId);
|
||||
// TODO: have a shared thread pool instead of create ExecutorService
|
||||
// everytime to improve performance.
|
||||
final ExecutorService executor = Executors.newSingleThreadExecutor();
|
||||
final BooleanConsumer booleanResult = new BooleanConsumer();
|
||||
imsMmTelManager.isSupported(mCapability, mTransportType, executor, booleanResult);
|
||||
// get() will be blocked until end of execution(isSupported()) within thread(executor)
|
||||
// or timeout after TIMEOUT_MILLIS milliseconds
|
||||
return booleanResult.get(TIMEOUT_MILLIS);
|
||||
}
|
||||
|
||||
@VisibleForTesting
|
||||
boolean isProvisionedOnDevice(int subId) {
|
||||
return (new ImsQueryProvisioningStat(subId, mCapability, mTech)).query();
|
||||
|
@@ -20,8 +20,10 @@ import android.content.Context;
|
||||
import android.telecom.TelecomManager;
|
||||
import android.telephony.AccessNetworkConstants;
|
||||
import android.telephony.SubscriptionManager;
|
||||
import android.telephony.ims.ImsException;
|
||||
import android.telephony.ims.feature.MmTelFeature;
|
||||
import android.telephony.ims.stub.ImsRegistrationImplBase;
|
||||
import android.util.Log;
|
||||
|
||||
import androidx.annotation.VisibleForTesting;
|
||||
|
||||
@@ -34,6 +36,8 @@ import com.android.settings.network.telephony.MobileNetworkUtils;
|
||||
*/
|
||||
public class VolteQueryImsState extends ImsQueryController {
|
||||
|
||||
private static final String LOG_TAG = "VolteQueryImsState";
|
||||
|
||||
private Context mContext;
|
||||
private int mSubId;
|
||||
|
||||
@@ -71,13 +75,15 @@ public class VolteQueryImsState extends ImsQueryController {
|
||||
* @return true when VoLTE has been enabled, otherwise false
|
||||
*/
|
||||
public boolean isVoLteProvisioned() {
|
||||
final ImsManager imsManager = getImsManager(mSubId);
|
||||
if (imsManager == null) {
|
||||
if (!isProvisionedOnDevice(mSubId)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return imsManager.isVolteEnabledByPlatform()
|
||||
&& isProvisionedOnDevice(mSubId);
|
||||
try {
|
||||
return isEnabledByPlatform(mSubId);
|
||||
} catch (InterruptedException | IllegalArgumentException | ImsException exception) {
|
||||
Log.w(LOG_TAG, "fail to get VoLte supporting status. subId=" + mSubId, exception);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user