For wifi, a old API: buildTemplateWifiWildcard will includes the merged wifi which is included to mobile usage. It should not double count again. Call new API: buildTemplateWifi with NetworkId: NetworkTemplate.WIFI_NETWORKID_ALL and null subscriberId to get non-merged wifi usage. Test: make RunSettingsRoboTests ROBOTEST_FILTER=AppDataUsageTest Test: make RunSettingsRoboTests ROBOTEST_FILTER=AppDataUsagePreferenceControllerTest Test: make RunSettingsRoboTests ROBOTEST_FILTER=DataUsageSummaryTest Test: make RunSettingsRoboTests ROBOTEST_FILTER=DataUsageSummaryPreferenceTest Test: make RunSettingsRoboTests ROBOTEST_FILTER=DataUsageSummaryPreferenceControllerTest Test: make RunSettingsRoboTests ROBOTEST_FILTER=DataUsageUtilsTest Test: make RunSettingsRoboTests ROBOTEST_FILTER=NetworkProviderSettingsTest Test: make RunSettingsRoboTests ROBOTEST_FILTER=SettingsDumpServiceTest Test: make RunSettingsRoboTests ROBOTEST_FILTER=WifiSettingsTest Test: make RunSettingsRoboTests ROBOTEST_FILTER=DataUsageInfoControllerTest Test: Manual Test, wifi data usage count correctly. Bug: 176396812 Change-Id: Ia4d8fa67ea3cb75c2d35be9ab60e5c5ffa391ffb
154 lines
5.3 KiB
Java
154 lines
5.3 KiB
Java
/*
|
|
* 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.applications.appinfo;
|
|
|
|
import android.content.Context;
|
|
import android.net.NetworkTemplate;
|
|
import android.os.Bundle;
|
|
import android.text.format.DateUtils;
|
|
import android.text.format.Formatter;
|
|
|
|
import androidx.annotation.VisibleForTesting;
|
|
import androidx.loader.app.LoaderManager;
|
|
import androidx.loader.content.Loader;
|
|
import androidx.preference.Preference;
|
|
import androidx.preference.PreferenceScreen;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.SettingsPreferenceFragment;
|
|
import com.android.settings.Utils;
|
|
import com.android.settings.datausage.AppDataUsage;
|
|
import com.android.settings.datausage.DataUsageUtils;
|
|
import com.android.settingslib.AppItem;
|
|
import com.android.settingslib.core.lifecycle.LifecycleObserver;
|
|
import com.android.settingslib.core.lifecycle.events.OnPause;
|
|
import com.android.settingslib.core.lifecycle.events.OnResume;
|
|
import com.android.settingslib.net.NetworkCycleDataForUid;
|
|
import com.android.settingslib.net.NetworkCycleDataForUidLoader;
|
|
|
|
import java.util.List;
|
|
|
|
public class AppDataUsagePreferenceController extends AppInfoPreferenceControllerBase
|
|
implements LoaderManager.LoaderCallbacks<List<NetworkCycleDataForUid>>, LifecycleObserver,
|
|
OnResume, OnPause {
|
|
|
|
private List<NetworkCycleDataForUid> mAppUsageData;
|
|
|
|
public AppDataUsagePreferenceController(Context context, String key) {
|
|
super(context, key);
|
|
}
|
|
|
|
@Override
|
|
public int getAvailabilityStatus() {
|
|
return isBandwidthControlEnabled() ? AVAILABLE : CONDITIONALLY_UNAVAILABLE;
|
|
}
|
|
|
|
@Override
|
|
public void displayPreference(PreferenceScreen screen) {
|
|
super.displayPreference(screen);
|
|
}
|
|
|
|
@Override
|
|
public void updateState(Preference preference) {
|
|
preference.setSummary(getDataSummary());
|
|
}
|
|
|
|
@Override
|
|
public void onResume() {
|
|
if (isAvailable()) {
|
|
final int uid = mParent.getAppEntry().info.uid;
|
|
final AppItem app = new AppItem(uid);
|
|
app.addUid(uid);
|
|
mParent.getLoaderManager().restartLoader(mParent.LOADER_CHART_DATA, null /* args */,
|
|
this);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onPause() {
|
|
if (isAvailable()) {
|
|
mParent.getLoaderManager().destroyLoader(mParent.LOADER_CHART_DATA);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public Loader<List<NetworkCycleDataForUid>> onCreateLoader(int id, Bundle args) {
|
|
final NetworkTemplate template = getTemplate(mContext);
|
|
return NetworkCycleDataForUidLoader.builder(mContext)
|
|
.addUid(mParent.getAppEntry().info.uid)
|
|
.setRetrieveDetail(false)
|
|
.setNetworkTemplate(template)
|
|
.build();
|
|
}
|
|
|
|
@Override
|
|
public void onLoadFinished(Loader<List<NetworkCycleDataForUid>> loader,
|
|
List<NetworkCycleDataForUid> data) {
|
|
mAppUsageData = data;
|
|
updateState(mPreference);
|
|
}
|
|
|
|
@Override
|
|
public void onLoaderReset(Loader<List<NetworkCycleDataForUid>> loader) {
|
|
// Leave last result.
|
|
}
|
|
|
|
@Override
|
|
protected Class<? extends SettingsPreferenceFragment> getDetailFragmentClass() {
|
|
return AppDataUsage.class;
|
|
}
|
|
|
|
private CharSequence getDataSummary() {
|
|
if (mAppUsageData != null) {
|
|
long totalBytes = 0;
|
|
long startTime = System.currentTimeMillis();
|
|
for (NetworkCycleDataForUid data : mAppUsageData) {
|
|
totalBytes += data.getTotalUsage();
|
|
final long cycleStart = data.getStartTime();
|
|
if (cycleStart < startTime) {
|
|
startTime = cycleStart;
|
|
}
|
|
}
|
|
if (totalBytes == 0) {
|
|
return mContext.getString(R.string.no_data_usage);
|
|
}
|
|
return mContext.getString(R.string.data_summary_format,
|
|
Formatter.formatFileSize(mContext, totalBytes, Formatter.FLAG_IEC_UNITS),
|
|
DateUtils.formatDateTime(mContext, startTime,
|
|
DateUtils.FORMAT_SHOW_DATE | DateUtils.FORMAT_ABBREV_MONTH));
|
|
}
|
|
return mContext.getString(R.string.computing_size);
|
|
}
|
|
|
|
private static NetworkTemplate getTemplate(Context context) {
|
|
if (DataUsageUtils.hasReadyMobileRadio(context)) {
|
|
return NetworkTemplate.buildTemplateMobileWildcard();
|
|
}
|
|
if (DataUsageUtils.hasWifiRadio(context)) {
|
|
return NetworkTemplate.buildTemplateWifi(NetworkTemplate.WIFI_NETWORKID_ALL,
|
|
null /* subscriberId */);
|
|
}
|
|
return NetworkTemplate.buildTemplateEthernet();
|
|
}
|
|
|
|
@VisibleForTesting
|
|
boolean isBandwidthControlEnabled() {
|
|
return Utils.isBandwidthControlEnabled();
|
|
}
|
|
|
|
}
|