1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
|
/*
* Copyright (C) 2008 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 android.content.pm;
import android.annotation.UnsupportedAppUsage;
import android.app.usage.StorageStatsManager;
import android.os.Build;
import android.os.Parcel;
import android.os.Parcelable;
import android.os.UserHandle;
import android.text.TextUtils;
import java.util.Objects;
/**
* implementation of PackageStats associated with a application package.
*
* @deprecated this class is an orphan that could never be obtained from a valid
* public API. If you need package storage statistics use the new
* {@link StorageStatsManager} APIs.
*/
@Deprecated
public class PackageStats implements Parcelable {
/** Name of the package to which this stats applies. */
public String packageName;
/** @hide */
@UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.P, trackingBug = 115609023)
public int userHandle;
/** Size of the code (e.g., APK) */
public long codeSize;
/**
* Size of the internal data size for the application. (e.g.,
* /data/data/<app>)
*/
public long dataSize;
/** Size of cache used by the application. (e.g., /data/data/<app>/cache) */
public long cacheSize;
/**
* Size of the secure container on external storage holding the
* application's code.
*/
public long externalCodeSize;
/**
* Size of the external data used by the application (e.g.,
* <sdcard>/Android/data/<app>)
*/
public long externalDataSize;
/**
* Size of the external cache used by the application (i.e., on the SD
* card). If this is a subdirectory of the data directory, this size will be
* subtracted out of the external data size.
*/
public long externalCacheSize;
/** Size of the external media size used by the application. */
public long externalMediaSize;
/** Size of the package's OBBs placed on external media. */
public long externalObbSize;
public static final @android.annotation.NonNull Parcelable.Creator<PackageStats> CREATOR
= new Parcelable.Creator<PackageStats>() {
public PackageStats createFromParcel(Parcel in) {
return new PackageStats(in);
}
public PackageStats[] newArray(int size) {
return new PackageStats[size];
}
};
public String toString() {
final StringBuilder sb = new StringBuilder("PackageStats{");
sb.append(Integer.toHexString(System.identityHashCode(this)));
sb.append(" ");
sb.append(packageName);
if (codeSize != 0) {
sb.append(" code=");
sb.append(codeSize);
}
if (dataSize != 0) {
sb.append(" data=");
sb.append(dataSize);
}
if (cacheSize != 0) {
sb.append(" cache=");
sb.append(cacheSize);
}
if (externalCodeSize != 0) {
sb.append(" extCode=");
sb.append(externalCodeSize);
}
if (externalDataSize != 0) {
sb.append(" extData=");
sb.append(externalDataSize);
}
if (externalCacheSize != 0) {
sb.append(" extCache=");
sb.append(externalCacheSize);
}
if (externalMediaSize != 0) {
sb.append(" media=");
sb.append(externalMediaSize);
}
if (externalObbSize != 0) {
sb.append(" obb=");
sb.append(externalObbSize);
}
sb.append("}");
return sb.toString();
}
public PackageStats(String pkgName) {
packageName = pkgName;
userHandle = UserHandle.myUserId();
}
/** @hide */
public PackageStats(String pkgName, int userHandle) {
this.packageName = pkgName;
this.userHandle = userHandle;
}
public PackageStats(Parcel source) {
packageName = source.readString();
userHandle = source.readInt();
codeSize = source.readLong();
dataSize = source.readLong();
cacheSize = source.readLong();
externalCodeSize = source.readLong();
externalDataSize = source.readLong();
externalCacheSize = source.readLong();
externalMediaSize = source.readLong();
externalObbSize = source.readLong();
}
public PackageStats(PackageStats pStats) {
packageName = pStats.packageName;
userHandle = pStats.userHandle;
codeSize = pStats.codeSize;
dataSize = pStats.dataSize;
cacheSize = pStats.cacheSize;
externalCodeSize = pStats.externalCodeSize;
externalDataSize = pStats.externalDataSize;
externalCacheSize = pStats.externalCacheSize;
externalMediaSize = pStats.externalMediaSize;
externalObbSize = pStats.externalObbSize;
}
public int describeContents() {
return 0;
}
public void writeToParcel(Parcel dest, int parcelableFlags){
dest.writeString(packageName);
dest.writeInt(userHandle);
dest.writeLong(codeSize);
dest.writeLong(dataSize);
dest.writeLong(cacheSize);
dest.writeLong(externalCodeSize);
dest.writeLong(externalDataSize);
dest.writeLong(externalCacheSize);
dest.writeLong(externalMediaSize);
dest.writeLong(externalObbSize);
}
@Override
public boolean equals(Object obj) {
if (!(obj instanceof PackageStats)) {
return false;
}
final PackageStats otherStats = (PackageStats) obj;
return ((TextUtils.equals(packageName, otherStats.packageName))
&& userHandle == otherStats.userHandle
&& codeSize == otherStats.codeSize
&& dataSize == otherStats.dataSize
&& cacheSize == otherStats.cacheSize
&& externalCodeSize == otherStats.externalCodeSize
&& externalDataSize == otherStats.externalDataSize
&& externalCacheSize == otherStats.externalCacheSize
&& externalMediaSize == otherStats.externalMediaSize
&& externalObbSize == otherStats.externalObbSize);
}
@Override
public int hashCode() {
return Objects.hash(packageName, userHandle, codeSize, dataSize,
cacheSize, externalCodeSize, externalDataSize, externalCacheSize, externalMediaSize,
externalObbSize);
}
}
|