After this CL, we can follow Guideline:go/hc-mainline-dev#format-code to keep java format consistent. Test: manual Bug: 304439460 Change-Id: I5bb77f81b0bd9be618e34942eaaee8296bc42796
143 lines
3.9 KiB
Java
143 lines
3.9 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.fuelgauge.batterytip;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import android.text.TextUtils;
|
|
import android.util.ArraySet;
|
|
|
|
import androidx.annotation.VisibleForTesting;
|
|
|
|
import java.util.Objects;
|
|
|
|
/** Model class stores app info(e.g. package name, type..) that used in battery tip */
|
|
public class AppInfo implements Comparable<AppInfo>, Parcelable {
|
|
public final String packageName;
|
|
|
|
/**
|
|
* Anomaly type of the app
|
|
*
|
|
* @see StatsManagerConfig.AnomalyType
|
|
*/
|
|
public final ArraySet<Integer> anomalyTypes;
|
|
|
|
public final long screenOnTimeMs;
|
|
public final int uid;
|
|
|
|
private AppInfo(AppInfo.Builder builder) {
|
|
packageName = builder.mPackageName;
|
|
anomalyTypes = builder.mAnomalyTypes;
|
|
screenOnTimeMs = builder.mScreenOnTimeMs;
|
|
uid = builder.mUid;
|
|
}
|
|
|
|
@VisibleForTesting
|
|
AppInfo(Parcel in) {
|
|
packageName = in.readString();
|
|
anomalyTypes = (ArraySet<Integer>) in.readArraySet(null /* loader */);
|
|
screenOnTimeMs = in.readLong();
|
|
uid = in.readInt();
|
|
}
|
|
|
|
@Override
|
|
public int compareTo(AppInfo o) {
|
|
return Long.compare(screenOnTimeMs, o.screenOnTimeMs);
|
|
}
|
|
|
|
@Override
|
|
public int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
@Override
|
|
public void writeToParcel(Parcel dest, int flags) {
|
|
dest.writeString(packageName);
|
|
dest.writeArraySet(anomalyTypes);
|
|
dest.writeLong(screenOnTimeMs);
|
|
dest.writeInt(uid);
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "packageName="
|
|
+ packageName
|
|
+ ",anomalyTypes="
|
|
+ anomalyTypes
|
|
+ ",screenTime="
|
|
+ screenOnTimeMs;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof AppInfo)) {
|
|
return false;
|
|
}
|
|
|
|
AppInfo other = (AppInfo) obj;
|
|
return Objects.equals(anomalyTypes, other.anomalyTypes)
|
|
&& uid == other.uid
|
|
&& screenOnTimeMs == other.screenOnTimeMs
|
|
&& TextUtils.equals(packageName, other.packageName);
|
|
}
|
|
|
|
public static final Parcelable.Creator CREATOR =
|
|
new Parcelable.Creator() {
|
|
public AppInfo createFromParcel(Parcel in) {
|
|
return new AppInfo(in);
|
|
}
|
|
|
|
public AppInfo[] newArray(int size) {
|
|
return new AppInfo[size];
|
|
}
|
|
};
|
|
|
|
public static final class Builder {
|
|
private ArraySet<Integer> mAnomalyTypes = new ArraySet<>();
|
|
private String mPackageName;
|
|
private long mScreenOnTimeMs;
|
|
private int mUid;
|
|
|
|
public Builder addAnomalyType(int type) {
|
|
mAnomalyTypes.add(type);
|
|
return this;
|
|
}
|
|
|
|
public Builder setPackageName(String packageName) {
|
|
mPackageName = packageName;
|
|
return this;
|
|
}
|
|
|
|
public Builder setScreenOnTimeMs(long screenOnTimeMs) {
|
|
mScreenOnTimeMs = screenOnTimeMs;
|
|
return this;
|
|
}
|
|
|
|
public Builder setUid(int uid) {
|
|
mUid = uid;
|
|
return this;
|
|
}
|
|
|
|
public AppInfo build() {
|
|
return new AppInfo(this);
|
|
}
|
|
}
|
|
}
|