The telephony APIs were changed, the Settings needs the refactoring. Bug: 206801604 Test: build pass. atest QuerySimSlotIndexTest (PASS) atest SelectableSubscriptionsTest (PASS) Change-Id: Ic3244333b7d3750b88ecb3dbc5d7036da50b9d4d
91 lines
3.3 KiB
Java
91 lines
3.3 KiB
Java
/*
|
|
* Copyright (C) 2021 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.helper;
|
|
|
|
import android.telephony.SubscriptionManager;
|
|
import android.telephony.TelephonyManager;
|
|
import android.telephony.UiccPortInfo;
|
|
import android.telephony.UiccSlotInfo;
|
|
|
|
import java.util.Arrays;
|
|
import java.util.concurrent.Callable;
|
|
import java.util.concurrent.atomic.AtomicIntegerArray;
|
|
import java.util.stream.IntStream;
|
|
|
|
/**
|
|
* This is a Callable class which query logical slot index within device
|
|
*/
|
|
public class QuerySimSlotIndex implements Callable<AtomicIntegerArray> {
|
|
private static final String TAG = "QuerySimSlotIndex";
|
|
|
|
private TelephonyManager mTelephonyManager;
|
|
private boolean mDisabledSlotsIncluded;
|
|
private boolean mOnlySlotWithSim;
|
|
|
|
/**
|
|
* Constructor of class
|
|
* @param TelephonyManager
|
|
* @param disabledSlotsIncluded query both active and inactive slots when true,
|
|
* only query active slot when false.
|
|
* @param onlySlotWithSim query slot index with SIM available when true,
|
|
* include absent ones when false.
|
|
*/
|
|
public QuerySimSlotIndex(TelephonyManager telephonyManager,
|
|
boolean disabledSlotsIncluded, boolean onlySlotWithSim) {
|
|
mTelephonyManager = telephonyManager;
|
|
mDisabledSlotsIncluded = disabledSlotsIncluded;
|
|
mOnlySlotWithSim = onlySlotWithSim;
|
|
}
|
|
|
|
/**
|
|
* Implementation of Callable
|
|
* @return slot index in AtomicIntegerArray
|
|
*/
|
|
public AtomicIntegerArray call() {
|
|
UiccSlotInfo [] slotInfo = mTelephonyManager.getUiccSlotsInfo();
|
|
if (slotInfo == null) {
|
|
return new AtomicIntegerArray(0);
|
|
}
|
|
int slotIndexFilter = mOnlySlotWithSim ? 0 : SubscriptionManager.INVALID_SIM_SLOT_INDEX;
|
|
|
|
return new AtomicIntegerArray(Arrays.stream(slotInfo)
|
|
.flatMapToInt(slot -> mapToLogicalSlotIndex(slot))
|
|
.filter(slotIndex -> (slotIndex >= slotIndexFilter))
|
|
.toArray());
|
|
}
|
|
|
|
protected IntStream mapToLogicalSlotIndex(UiccSlotInfo slotInfo) {
|
|
if (slotInfo == null) {
|
|
return IntStream.of(SubscriptionManager.INVALID_SIM_SLOT_INDEX);
|
|
}
|
|
if (slotInfo.getCardStateInfo() == UiccSlotInfo.CARD_STATE_INFO_ABSENT) {
|
|
return IntStream.of(SubscriptionManager.INVALID_SIM_SLOT_INDEX);
|
|
}
|
|
return slotInfo.getPorts().stream()
|
|
.filter(port -> filterPort(port))
|
|
.mapToInt(port -> port.getLogicalSlotIndex());
|
|
}
|
|
|
|
protected boolean filterPort(UiccPortInfo uiccPortInfo) {
|
|
if (mDisabledSlotsIncluded) {
|
|
return true;
|
|
}
|
|
if (uiccPortInfo == null) {
|
|
return false;
|
|
}
|
|
return uiccPortInfo.isActive();
|
|
}
|
|
} |