Convert battery framework provided package name to valid one
convert battery framework provided package name to formal one, since some returned package name will append the process name to avoid fetching app label and icon not found. for example: Bug: 188751551 Test: make SettingsgRoboTests Change-Id: If59167d575154f99eba2c7bd81a1d862652ea47b
This commit is contained in:
@@ -76,11 +76,6 @@ public class BatteryDiffEntry {
|
|||||||
mBackgroundUsageTimeInMs = backgroundUsageTimeInMs;
|
mBackgroundUsageTimeInMs = backgroundUsageTimeInMs;
|
||||||
mBatteryHistEntry = batteryHistEntry;
|
mBatteryHistEntry = batteryHistEntry;
|
||||||
mUserManager = context.getSystemService(UserManager.class);
|
mUserManager = context.getSystemService(UserManager.class);
|
||||||
if (foregroundUsageTimeInMs == 0
|
|
||||||
&& backgroundUsageTimeInMs == 0
|
|
||||||
&& consumePower != 0) {
|
|
||||||
Log.w(TAG, "abnornal BatteryDiffEntry:\n" + this);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Sets the total consumed power in a specific time slot. */
|
/** Sets the total consumed power in a specific time slot. */
|
||||||
@@ -128,8 +123,16 @@ public class BatteryDiffEntry {
|
|||||||
|
|
||||||
/** Gets the searching package name for UID battery type. */
|
/** Gets the searching package name for UID battery type. */
|
||||||
public String getPackageName() {
|
public String getPackageName() {
|
||||||
return mDefaultPackageName != null
|
final String packageName = mDefaultPackageName != null
|
||||||
? mDefaultPackageName : mBatteryHistEntry.mPackageName;
|
? mDefaultPackageName : mBatteryHistEntry.mPackageName;
|
||||||
|
if (packageName == null) {
|
||||||
|
return packageName;
|
||||||
|
}
|
||||||
|
// Removes potential appended process name in the PackageName.
|
||||||
|
// From "com.opera.browser:privileged_process0" to "com.opera.browser"
|
||||||
|
final String[] splittedPackageNames = packageName.split(":");
|
||||||
|
return splittedPackageNames != null && splittedPackageNames.length > 0
|
||||||
|
? splittedPackageNames[0] : packageName;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Whether this item is valid for users to launch restriction page? */
|
/** Whether this item is valid for users to launch restriction page? */
|
||||||
@@ -168,8 +171,6 @@ public class BatteryDiffEntry {
|
|||||||
}
|
}
|
||||||
// Both nameAndIcon and restriction configuration have cached data.
|
// Both nameAndIcon and restriction configuration have cached data.
|
||||||
if (nameAndIcon != null && validForRestriction != null) {
|
if (nameAndIcon != null && validForRestriction != null) {
|
||||||
Log.w(TAG, String.format("cannot find cache data nameAndIcon:%s "
|
|
||||||
+ "validForRestriction:%s", nameAndIcon, validForRestriction));
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
mIsLoaded = true;
|
mIsLoaded = true;
|
||||||
@@ -270,7 +271,7 @@ public class BatteryDiffEntry {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void loadNameAndIconForUid() {
|
private void loadNameAndIconForUid() {
|
||||||
final String packageName = mBatteryHistEntry.mPackageName;
|
final String packageName = getPackageName();
|
||||||
final PackageManager packageManager = mContext.getPackageManager();
|
final PackageManager packageManager = mContext.getPackageManager();
|
||||||
// Gets the application label from PackageManager.
|
// Gets the application label from PackageManager.
|
||||||
if (packageName != null && packageName.length() != 0) {
|
if (packageName != null && packageName.length() != 0) {
|
||||||
@@ -332,9 +333,9 @@ public class BatteryDiffEntry {
|
|||||||
/*withSeconds=*/ true, /*collapseTimeUnit=*/ false),
|
/*withSeconds=*/ true, /*collapseTimeUnit=*/ false),
|
||||||
StringUtil.formatElapsedTime(mContext, mBackgroundUsageTimeInMs,
|
StringUtil.formatElapsedTime(mContext, mBackgroundUsageTimeInMs,
|
||||||
/*withSeconds=*/ true, /*collapseTimeUnit=*/ false)))
|
/*withSeconds=*/ true, /*collapseTimeUnit=*/ false)))
|
||||||
.append(String.format("\n\tpackage:%s uid:%d userId:%d",
|
.append(String.format("\n\tpackage:%s|%s uid:%d userId:%d",
|
||||||
mBatteryHistEntry.mPackageName, mBatteryHistEntry.mUid,
|
mBatteryHistEntry.mPackageName, getPackageName(),
|
||||||
mBatteryHistEntry.mUserId));
|
mBatteryHistEntry.mUid, mBatteryHistEntry.mUserId));
|
||||||
return builder.toString();
|
return builder.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -417,10 +417,6 @@ public class BatteryEntry {
|
|||||||
}
|
}
|
||||||
|
|
||||||
final String uidString = Integer.toString(uid);
|
final String uidString = Integer.toString(uid);
|
||||||
if (name == null) {
|
|
||||||
name = uidString;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (icon == null) {
|
if (icon == null) {
|
||||||
icon = pm.getDefaultActivityIcon();
|
icon = pm.getDefaultActivityIcon();
|
||||||
}
|
}
|
||||||
|
@@ -371,6 +371,32 @@ public final class BatteryDiffEntryTest {
|
|||||||
assertThat(entry.mValidForRestriction).isTrue();
|
assertThat(entry.mValidForRestriction).isTrue();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testGetPackageName_returnExpectedResult() {
|
||||||
|
final String expectedPackageName = "com.fake.google.com";
|
||||||
|
final ContentValues values = getContentValuesWithType(
|
||||||
|
ConvertUtils.CONSUMER_TYPE_UID_BATTERY);
|
||||||
|
values.put("packageName", expectedPackageName);
|
||||||
|
final BatteryDiffEntry entry =
|
||||||
|
createBatteryDiffEntry(10, new BatteryHistEntry(values));
|
||||||
|
|
||||||
|
assertThat(entry.getPackageName()).isEqualTo(expectedPackageName);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testGetPackageName_withProcessName_returnExpectedResult() {
|
||||||
|
final String expectedPackageName = "com.fake.google.com";
|
||||||
|
final ContentValues values = getContentValuesWithType(
|
||||||
|
ConvertUtils.CONSUMER_TYPE_UID_BATTERY);
|
||||||
|
values.put(
|
||||||
|
"packageName",
|
||||||
|
expectedPackageName + ":privileged_process0");
|
||||||
|
final BatteryDiffEntry entry =
|
||||||
|
createBatteryDiffEntry(10, new BatteryHistEntry(values));
|
||||||
|
|
||||||
|
assertThat(entry.getPackageName()).isEqualTo(expectedPackageName);
|
||||||
|
}
|
||||||
|
|
||||||
private BatteryDiffEntry createBatteryDiffEntry(
|
private BatteryDiffEntry createBatteryDiffEntry(
|
||||||
int consumerType, long uid, boolean isHidden) {
|
int consumerType, long uid, boolean isHidden) {
|
||||||
final ContentValues values = getContentValuesWithType(consumerType);
|
final ContentValues values = getContentValuesWithType(consumerType);
|
||||||
|
Reference in New Issue
Block a user