- Since the "Mobile-Data Details Settings" (NETWORK_OPERATOR_SETTINGS) will query Carrier-Config around 70 times during launching, use the Carrier-Config cache to reduce 69 times to speed up the launching time. - It takes about 3ms to query a Carrier-Config each time. - Create a singleton class to share the Carrier-Config for all sub-settings. Bug: 204135235 Test: manual test atest -c ApnPreferenceControllerTest \ AutoSelectPreferenceControllerTest \ BackupCallingPreferenceControllerTest \ CarrierConfigCacheTest \ CarrierPreferenceControllerTest \ CarrierSettingsVersionPreferenceControllerTest \ DataServiceSetupPreferenceControllerTest \ Enable2gPreferenceControllerTest \ EnabledNetworkModePreferenceControllerTest \ Enhanced4gBasePreferenceControllerTest \ MobileNetworkUtilsTest \ NetworkProviderBackupCallingGroupTest \ NrAdvancedCallingPreferenceControllerTest \ PreferredNetworkModePreferenceControllerTest \ TelephonyTogglePreferenceControllerTest \ WifiPickerTrackerHelperTest make RunSettingsRoboTests \ ROBOTEST_FILTER=ContactDiscoveryPreferenceControllerTest make RunSettingsRoboTests \ ROBOTEST_FILTER=VideoCallingPreferenceControllerTest Change-Id: I26f9ac115a754910b5d59e820703f1a0e701bb7f
97 lines
3.1 KiB
Java
97 lines
3.1 KiB
Java
/*
|
|
* Copyright (C) 2019 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.telephony;
|
|
|
|
import android.content.Context;
|
|
import android.content.res.Resources;
|
|
import android.os.PersistableBundle;
|
|
import android.telephony.SubscriptionManager;
|
|
|
|
import com.android.settings.core.TogglePreferenceController;
|
|
import com.android.settings.network.CarrierConfigCache;
|
|
|
|
import java.util.concurrent.atomic.AtomicInteger;
|
|
|
|
/**
|
|
* {@link TogglePreferenceController} that used by all preferences that requires subscription id.
|
|
*/
|
|
public abstract class TelephonyTogglePreferenceController extends TogglePreferenceController
|
|
implements TelephonyAvailabilityCallback, TelephonyAvailabilityHandler {
|
|
protected int mSubId;
|
|
private AtomicInteger mAvailabilityStatus = new AtomicInteger(0);
|
|
private AtomicInteger mSetSessionCount = new AtomicInteger(0);
|
|
|
|
public TelephonyTogglePreferenceController(Context context, String preferenceKey) {
|
|
super(context, preferenceKey);
|
|
mSubId = SubscriptionManager.INVALID_SUBSCRIPTION_ID;
|
|
}
|
|
|
|
@Override
|
|
public int getAvailabilityStatus() {
|
|
if (mSetSessionCount.get() <= 0) {
|
|
mAvailabilityStatus.set(MobileNetworkUtils
|
|
.getAvailability(mContext, mSubId, this::getAvailabilityStatus));
|
|
}
|
|
return mAvailabilityStatus.get();
|
|
}
|
|
|
|
@Override
|
|
public void setAvailabilityStatus(int status) {
|
|
mAvailabilityStatus.set(status);
|
|
mSetSessionCount.getAndIncrement();
|
|
}
|
|
|
|
@Override
|
|
public void unsetAvailabilityStatus() {
|
|
mSetSessionCount.getAndDecrement();
|
|
}
|
|
|
|
@Override
|
|
public boolean isSliceable() {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public int getSliceHighlightMenuRes() {
|
|
// not needed since it's not sliceable
|
|
return NO_RES;
|
|
}
|
|
|
|
/**
|
|
* Get carrier config based on specific subscription id.
|
|
*
|
|
* @param subId is the subscription id
|
|
* @return {@link PersistableBundle} of carrier config, or {@code null} when carrier config
|
|
* is not available.
|
|
*/
|
|
public PersistableBundle getCarrierConfigForSubId(int subId) {
|
|
if (!SubscriptionManager.isValidSubscriptionId(subId)) {
|
|
return null;
|
|
}
|
|
return CarrierConfigCache.getInstance(mContext).getConfigForSubId(subId);
|
|
}
|
|
|
|
/**
|
|
* Returns the resources associated with Subscription.
|
|
*
|
|
* @return Resources associated with Subscription.
|
|
*/
|
|
public Resources getResourcesForSubId() {
|
|
return SubscriptionManager.getResourcesForSubId(mContext, mSubId);
|
|
}
|
|
}
|