Bug: 358238959 Flag: EXEMPT bug fix Test: manual - search preferred Test: atest EnabledNetworkModePreferenceControllerHelperTest Change-Id: Icb86d88eec3bcaaaf1db67f7008173a90957cbbc
60 lines
2.0 KiB
Java
60 lines
2.0 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.telephony.SubscriptionManager;
|
|
|
|
import com.android.settings.core.BasePreferenceController;
|
|
|
|
import java.util.concurrent.atomic.AtomicInteger;
|
|
|
|
/**
|
|
* {@link BasePreferenceController} that used by all preferences that requires subscription id.
|
|
*/
|
|
public abstract class TelephonyBasePreferenceController extends BasePreferenceController
|
|
implements TelephonyAvailabilityCallback, TelephonyAvailabilityHandler {
|
|
protected int mSubId;
|
|
private AtomicInteger mAvailabilityStatus = new AtomicInteger(0);
|
|
private AtomicInteger mSetSessionCount = new AtomicInteger(0);
|
|
|
|
public TelephonyBasePreferenceController(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();
|
|
}
|
|
}
|