| /* |
| * Copyright (C) 2018 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.datausage; |
| |
| import static android.net.NetworkPolicyManager.POLICY_REJECT_METERED_BACKGROUND; |
| |
| import static com.android.settings.datausage.lib.AppDataUsageRepository.getAppUid; |
| import static com.android.settings.datausage.lib.AppDataUsageRepository.getAppUidList; |
| |
| import android.app.Activity; |
| import android.app.settings.SettingsEnums; |
| import android.content.Context; |
| import android.content.pm.ApplicationInfo; |
| import android.content.pm.PackageManager; |
| import android.graphics.drawable.Drawable; |
| import android.net.NetworkTemplate; |
| import android.os.Bundle; |
| import android.os.UserHandle; |
| import android.util.ArraySet; |
| import android.util.IconDrawableFactory; |
| import android.util.Log; |
| |
| import androidx.annotation.NonNull; |
| import androidx.annotation.VisibleForTesting; |
| import androidx.preference.Preference; |
| import androidx.preference.Preference.OnPreferenceChangeListener; |
| import androidx.recyclerview.widget.DefaultItemAnimator; |
| import androidx.recyclerview.widget.RecyclerView; |
| |
| import com.android.settings.R; |
| import com.android.settings.applications.AppInfoBase; |
| import com.android.settings.datausage.lib.AppDataUsageDetailsRepository; |
| import com.android.settings.datausage.lib.NetworkTemplates; |
| import com.android.settings.datausage.lib.NetworkUsageDetailsData; |
| import com.android.settings.fuelgauge.datasaver.DynamicDenylistManager; |
| import com.android.settings.network.SubscriptionUtil; |
| import com.android.settings.widget.EntityHeaderController; |
| import com.android.settingslib.AppItem; |
| import com.android.settingslib.RestrictedLockUtils.EnforcedAdmin; |
| import com.android.settingslib.RestrictedLockUtilsInternal; |
| import com.android.settingslib.RestrictedSwitchPreference; |
| import com.android.settingslib.net.UidDetail; |
| import com.android.settingslib.net.UidDetailProvider; |
| |
| import kotlin.Unit; |
| |
| import java.util.ArrayList; |
| import java.util.Collections; |
| import java.util.List; |
| |
| public class AppDataUsage extends DataUsageBaseFragment implements OnPreferenceChangeListener, |
| DataSaverBackend.Listener { |
| |
| private static final String TAG = "AppDataUsage"; |
| |
| static final String ARG_APP_ITEM = "app_item"; |
| static final String ARG_NETWORK_TEMPLATE = "network_template"; |
| static final String ARG_NETWORK_CYCLES = "network_cycles"; |
| static final String ARG_SELECTED_CYCLE = "selected_cycle"; |
| |
| private static final String KEY_TOTAL_USAGE = "total_usage"; |
| private static final String KEY_FOREGROUND_USAGE = "foreground_usage"; |
| private static final String KEY_BACKGROUND_USAGE = "background_usage"; |
| private static final String KEY_RESTRICT_BACKGROUND = "restrict_background"; |
| private static final String KEY_UNRESTRICTED_DATA = "unrestricted_data_saver"; |
| |
| private PackageManager mPackageManager; |
| private final ArraySet<String> mPackages = new ArraySet<>(); |
| private Preference mTotalUsage; |
| private Preference mForegroundUsage; |
| private Preference mBackgroundUsage; |
| private RestrictedSwitchPreference mRestrictBackground; |
| |
| private Drawable mIcon; |
| @VisibleForTesting |
| CharSequence mLabel; |
| @VisibleForTesting |
| String mPackageName; |
| |
| @VisibleForTesting |
| NetworkTemplate mTemplate; |
| private AppItem mAppItem; |
| private RestrictedSwitchPreference mUnrestrictedData; |
| private DataSaverBackend mDataSaverBackend; |
| private Context mContext; |
| private ArrayList<Long> mCycles; |
| private long mSelectedCycle; |
| private boolean mIsLoading; |
| |
| public boolean isSimHardwareVisible(Context context) { |
| return SubscriptionUtil.isSimHardwareVisible(context); |
| } |
| |
| @Override |
| public void onCreate(Bundle icicle) { |
| super.onCreate(icicle); |
| mContext = getContext(); |
| mPackageManager = getPackageManager(); |
| final Bundle args = getArguments(); |
| |
| mAppItem = (args != null) ? (AppItem) args.getParcelable(ARG_APP_ITEM) : null; |
| mTemplate = (args != null) ? (NetworkTemplate) args.getParcelable(ARG_NETWORK_TEMPLATE) |
| : null; |
| mCycles = (args != null) ? (ArrayList) args.getSerializable(ARG_NETWORK_CYCLES) |
| : null; |
| mSelectedCycle = (args != null) ? args.getLong(ARG_SELECTED_CYCLE) : 0L; |
| |
| if (mTemplate == null) { |
| mTemplate = NetworkTemplates.INSTANCE.getDefaultTemplate(mContext); |
| } |
| final Activity activity = requireActivity(); |
| activity.setTitle(NetworkTemplates.getTitleResId(mTemplate)); |
| if (mAppItem == null) { |
| int uid = (args != null) ? args.getInt(AppInfoBase.ARG_PACKAGE_UID, -1) |
| : getActivity().getIntent().getIntExtra(AppInfoBase.ARG_PACKAGE_UID, -1); |
| if (uid == -1) { |
| // TODO: Log error. |
| activity.finish(); |
| } else { |
| addUid(uid); |
| mAppItem = new AppItem(uid); |
| mAppItem.addUid(uid); |
| } |
| } else { |
| for (int i = 0; i < mAppItem.uids.size(); i++) { |
| addUid(mAppItem.uids.keyAt(i)); |
| } |
| } |
| |
| mTotalUsage = findPreference(KEY_TOTAL_USAGE); |
| mForegroundUsage = findPreference(KEY_FOREGROUND_USAGE); |
| mBackgroundUsage = findPreference(KEY_BACKGROUND_USAGE); |
| |
| final List<Integer> uidList = getAppUidList(mAppItem.uids); |
| initCycle(uidList); |
| |
| final UidDetailProvider uidDetailProvider = getUidDetailProvider(); |
| |
| if (mAppItem.key > 0) { |
| if ((!isSimHardwareVisible(mContext)) || !UserHandle.isApp(mAppItem.key)) { |
| final UidDetail uidDetail = uidDetailProvider.getUidDetail(mAppItem.key, true); |
| mIcon = uidDetail.icon; |
| mLabel = uidDetail.label; |
| removePreference(KEY_UNRESTRICTED_DATA); |
| removePreference(KEY_RESTRICT_BACKGROUND); |
| } else { |
| if (mPackages.size() != 0) { |
| int userId = UserHandle.getUserId(mAppItem.key); |
| try { |
| final ApplicationInfo info = mPackageManager.getApplicationInfoAsUser( |
| mPackages.valueAt(0), 0, userId); |
| mIcon = IconDrawableFactory.newInstance(getActivity()).getBadgedIcon(info); |
| mLabel = info.loadLabel(mPackageManager); |
| mPackageName = info.packageName; |
| } catch (PackageManager.NameNotFoundException e) { |
| } |
| use(AppDataUsageAppSettingsController.class).init(mPackages, userId); |
| } |
| mRestrictBackground = findPreference(KEY_RESTRICT_BACKGROUND); |
| mRestrictBackground.setOnPreferenceChangeListener(this); |
| mUnrestrictedData = findPreference(KEY_UNRESTRICTED_DATA); |
| mUnrestrictedData.setOnPreferenceChangeListener(this); |
| } |
| mDataSaverBackend = new DataSaverBackend(mContext); |
| |
| use(AppDataUsageListController.class).init(uidList); |
| } else { |
| final Context context = getActivity(); |
| final UidDetail uidDetail = uidDetailProvider.getUidDetail(mAppItem.key, true); |
| mIcon = uidDetail.icon; |
| mLabel = uidDetail.label; |
| mPackageName = context.getPackageName(); |
| |
| removePreference(KEY_UNRESTRICTED_DATA); |
| removePreference(KEY_RESTRICT_BACKGROUND); |
| } |
| |
| addEntityHeader(); |
| } |
| |
| @Override |
| public void onStart() { |
| super.onStart(); |
| // No animations will occur before bindData() initially updates the cycle. |
| // This is mainly for the cycle spinner, because when the page is entered from the |
| // AppInfoDashboardFragment, there is no way to know whether the cycle data is available |
| // before finished the async loading. |
| // The animator will be set back if any page updates happens after loading, in |
| // setBackPreferenceListAnimatorIfLoaded(). |
| mIsLoading = true; |
| getListView().setItemAnimator(null); |
| } |
| |
| @Override |
| public void onResume() { |
| super.onResume(); |
| if (mDataSaverBackend != null) { |
| mDataSaverBackend.addListener(this); |
| } |
| updatePrefs(); |
| } |
| |
| @Override |
| public void onPause() { |
| super.onPause(); |
| if (mDataSaverBackend != null) { |
| mDataSaverBackend.remListener(this); |
| } |
| } |
| |
| @Override |
| public boolean onPreferenceChange(@NonNull Preference preference, Object newValue) { |
| if (preference == mRestrictBackground) { |
| mDataSaverBackend.setIsDenylisted(mAppItem.key, mPackageName, !(Boolean) newValue); |
| updatePrefs(); |
| return true; |
| } else if (preference == mUnrestrictedData) { |
| mDataSaverBackend.setIsAllowlisted(mAppItem.key, mPackageName, (Boolean) newValue); |
| return true; |
| } |
| return false; |
| } |
| |
| @Override |
| protected int getPreferenceScreenResId() { |
| return R.xml.app_data_usage; |
| } |
| |
| @Override |
| protected String getLogTag() { |
| return TAG; |
| } |
| |
| @VisibleForTesting |
| void updatePrefs() { |
| updatePrefs(getAppRestrictBackground(), getUnrestrictData()); |
| } |
| |
| @VisibleForTesting |
| UidDetailProvider getUidDetailProvider() { |
| return new UidDetailProvider(mContext); |
| } |
| |
| @VisibleForTesting |
| void initCycle(List<Integer> uidList) { |
| var controller = use(AppDataUsageCycleController.class); |
| var repository = new AppDataUsageDetailsRepository(mContext, mTemplate, mCycles, uidList); |
| controller.init(repository, data -> { |
| bindData(data); |
| return Unit.INSTANCE; |
| }); |
| if (mCycles != null) { |
| Log.d(TAG, "setInitialCycles: " + mCycles + " " + mSelectedCycle); |
| controller.setInitialCycles(mCycles, mSelectedCycle); |
| } |
| } |
| |
| /** |
| * Sets back the preference list's animator if the loading is finished. |
| * |
| * The preference list's animator was temporarily removed before loading in onResume(). |
| * When need to update the preference visibility in this page after the loading, adding the |
| * animator back to keeping the usual animations. |
| */ |
| private void setBackPreferenceListAnimatorIfLoaded() { |
| if (mIsLoading) { |
| return; |
| } |
| RecyclerView recyclerView = getListView(); |
| if (recyclerView.getItemAnimator() == null) { |
| recyclerView.setItemAnimator(new DefaultItemAnimator()); |
| } |
| } |
| |
| private void updatePrefs(boolean restrictBackground, boolean unrestrictData) { |
| if (!isSimHardwareVisible(mContext)) { |
| return; |
| } |
| setBackPreferenceListAnimatorIfLoaded(); |
| final EnforcedAdmin admin = RestrictedLockUtilsInternal.checkIfMeteredDataRestricted( |
| mContext, mPackageName, UserHandle.getUserId(mAppItem.key)); |
| if (mRestrictBackground != null) { |
| mRestrictBackground.setChecked(!restrictBackground); |
| mRestrictBackground.setDisabledByAdmin(admin); |
| } |
| if (mUnrestrictedData != null) { |
| if (restrictBackground) { |
| mUnrestrictedData.setVisible(false); |
| } else { |
| mUnrestrictedData.setVisible(true); |
| mUnrestrictedData.setChecked(unrestrictData); |
| mUnrestrictedData.setDisabledByAdmin(admin); |
| } |
| } |
| } |
| |
| private void addUid(int uid) { |
| String[] packages = mPackageManager.getPackagesForUid(getAppUid(uid)); |
| if (packages != null) { |
| Collections.addAll(mPackages, packages); |
| } |
| } |
| |
| @VisibleForTesting |
| void bindData(@NonNull NetworkUsageDetailsData data) { |
| mIsLoading = false; |
| mTotalUsage.setSummary(DataUsageUtils.formatDataUsage(mContext, data.getTotalUsage())); |
| mForegroundUsage.setSummary( |
| DataUsageUtils.formatDataUsage(mContext, data.getForegroundUsage())); |
| mBackgroundUsage.setSummary( |
| DataUsageUtils.formatDataUsage(mContext, data.getBackgroundUsage())); |
| } |
| |
| private boolean getAppRestrictBackground() { |
| final int uid = mAppItem.key; |
| final int uidPolicy = services.mPolicyManager.getUidPolicy(uid); |
| return (uidPolicy & POLICY_REJECT_METERED_BACKGROUND) != 0 |
| && DynamicDenylistManager.getInstance(mContext).isInManualDenylist(uid); |
| } |
| |
| private boolean getUnrestrictData() { |
| if (mDataSaverBackend != null) { |
| return mDataSaverBackend.isAllowlisted(mAppItem.key); |
| } |
| return false; |
| } |
| |
| @VisibleForTesting |
| void addEntityHeader() { |
| String pkg = mPackages.size() != 0 ? mPackages.valueAt(0) : null; |
| int uid = 0; |
| if (pkg != null) { |
| try { |
| uid = mPackageManager.getPackageUidAsUser(pkg, |
| UserHandle.getUserId(mAppItem.key)); |
| } catch (PackageManager.NameNotFoundException e) { |
| Log.w(TAG, "Skipping UID because cannot find package " + pkg); |
| } |
| } |
| |
| final boolean showInfoButton = mAppItem.key > 0; |
| |
| final Activity activity = getActivity(); |
| final Preference pref = EntityHeaderController |
| .newInstance(activity, this, null /* header */) |
| .setUid(uid) |
| .setHasAppInfoLink(showInfoButton) |
| .setButtonActions(EntityHeaderController.ActionType.ACTION_NONE, |
| EntityHeaderController.ActionType.ACTION_NONE) |
| .setIcon(mIcon) |
| .setLabel(mLabel) |
| .setPackageName(pkg) |
| .done(getPrefContext()); |
| getPreferenceScreen().addPreference(pref); |
| } |
| |
| @Override |
| public int getMetricsCategory() { |
| return SettingsEnums.APP_DATA_USAGE; |
| } |
| |
| @Override |
| public void onDataSaverChanged(boolean isDataSaving) { |
| |
| } |
| |
| @Override |
| public void onAllowlistStatusChanged(int uid, boolean isAllowlisted) { |
| if (mAppItem.uids.get(uid, false)) { |
| updatePrefs(getAppRestrictBackground(), isAllowlisted); |
| } |
| } |
| |
| @Override |
| public void onDenylistStatusChanged(int uid, boolean isDenylisted) { |
| if (mAppItem.uids.get(uid, false)) { |
| updatePrefs(isDenylisted, getUnrestrictData()); |
| } |
| } |
| } |