Due to issues w.r.t. attribution across multiple users, we originally duplicated the previous implementation which zeroed out the sizes. This, however, caused system bloat due to the change in how we calculate the system size. By attributing apps which do not exist in the primary profile to the first user that shows up with it installed, we can avoid accidentally attributing it to the system size. Bug: 62623731 Test: Settings unittest & Settings robotest Change-Id: I9514c9ecef62ea6270723f62e6bf27c69b75f180
135 lines
4.8 KiB
Java
135 lines
4.8 KiB
Java
/*
|
|
* Copyright (C) 2017 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.deviceinfo;
|
|
|
|
import android.app.LoaderManager;
|
|
import android.content.Context;
|
|
import android.content.Loader;
|
|
import android.os.Bundle;
|
|
import android.os.UserHandle;
|
|
import android.os.UserManager;
|
|
import android.os.storage.StorageManager;
|
|
import android.os.storage.VolumeInfo;
|
|
import android.support.annotation.VisibleForTesting;
|
|
import android.util.SparseArray;
|
|
|
|
import com.android.internal.logging.nano.MetricsProto;
|
|
import com.android.settings.R;
|
|
import com.android.settings.Utils;
|
|
import com.android.settings.applications.PackageManagerWrapperImpl;
|
|
import com.android.settings.applications.UserManagerWrapperImpl;
|
|
import com.android.settings.core.PreferenceController;
|
|
import com.android.settings.dashboard.DashboardFragment;
|
|
import com.android.settings.deviceinfo.storage.StorageAsyncLoader;
|
|
import com.android.settings.deviceinfo.storage.StorageAsyncLoader.AppsStorageResult;
|
|
import com.android.settings.deviceinfo.storage.StorageItemPreferenceController;
|
|
import com.android.settingslib.applications.StorageStatsSource;
|
|
import com.android.settingslib.deviceinfo.StorageManagerVolumeProvider;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* StorageProfileFragment is a fragment which shows the storage results for a profile of the
|
|
* primary user.
|
|
*/
|
|
public class StorageProfileFragment extends DashboardFragment
|
|
implements LoaderManager.LoaderCallbacks<SparseArray<AppsStorageResult>> {
|
|
private static final String TAG = "StorageProfileFragment";
|
|
public static final String USER_ID_EXTRA = "userId";
|
|
private static final int APPS_JOB_ID = 0;
|
|
|
|
private VolumeInfo mVolume;
|
|
private int mUserId;
|
|
private StorageItemPreferenceController mPreferenceController;
|
|
|
|
@Override
|
|
public void onCreate(Bundle icicle) {
|
|
super.onCreate(icicle);
|
|
final Bundle args = getArguments();
|
|
|
|
// Initialize the storage sizes that we can quickly calc.
|
|
final Context context = getActivity();
|
|
final StorageManager sm = context.getSystemService(StorageManager.class);
|
|
mVolume = Utils.maybeInitializeVolume(sm, args);
|
|
if (mVolume == null) {
|
|
getActivity().finish();
|
|
return;
|
|
}
|
|
|
|
mPreferenceController.setVolume(mVolume);
|
|
mUserId = args.getInt(USER_ID_EXTRA, UserHandle.myUserId());
|
|
mPreferenceController.setUserId(UserHandle.of(mUserId));
|
|
}
|
|
|
|
@Override
|
|
public void onResume() {
|
|
super.onResume();
|
|
getLoaderManager().initLoader(APPS_JOB_ID, Bundle.EMPTY, this);
|
|
}
|
|
|
|
@Override
|
|
public int getMetricsCategory() {
|
|
return MetricsProto.MetricsEvent.SETTINGS_STORAGE_PROFILE;
|
|
}
|
|
|
|
@Override
|
|
protected String getLogTag() {
|
|
return TAG;
|
|
}
|
|
|
|
@Override
|
|
protected int getPreferenceScreenResId() {
|
|
return R.xml.storage_profile_fragment;
|
|
}
|
|
|
|
@Override
|
|
protected List<PreferenceController> getPreferenceControllers(Context context) {
|
|
final List<PreferenceController> controllers = new ArrayList<>();
|
|
final StorageManager sm = context.getSystemService(StorageManager.class);
|
|
mPreferenceController = new StorageItemPreferenceController(context, this,
|
|
mVolume, new StorageManagerVolumeProvider(sm));
|
|
controllers.add(mPreferenceController);
|
|
return controllers;
|
|
}
|
|
|
|
@Override
|
|
public Loader<SparseArray<AppsStorageResult>> onCreateLoader(int id, Bundle args) {
|
|
Context context = getContext();
|
|
return new StorageAsyncLoader(context,
|
|
new UserManagerWrapperImpl(context.getSystemService(UserManager.class)),
|
|
mVolume.fsUuid,
|
|
new StorageStatsSource(context),
|
|
new PackageManagerWrapperImpl(context.getPackageManager()));
|
|
}
|
|
|
|
@Override
|
|
public void onLoadFinished(Loader<SparseArray<AppsStorageResult>> loader,
|
|
SparseArray<AppsStorageResult> result) {
|
|
mPreferenceController.onLoadFinished(result, mUserId);
|
|
}
|
|
|
|
@Override
|
|
public void onLoaderReset(Loader<SparseArray<AppsStorageResult>> loader) {
|
|
}
|
|
|
|
@VisibleForTesting
|
|
void setPreferenceController(StorageItemPreferenceController controller) {
|
|
mPreferenceController = controller;
|
|
}
|
|
}
|