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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
|
/*
* Copyright (C) 2014 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.app;
import android.content.res.Configuration;
import android.os.Parcel;
import android.os.Parcelable;
import android.os.SystemClock;
import android.util.ArrayMap;
import java.util.Map;
/**
* Snapshot of current usage stats data.
* @hide
*/
public class UsageStats implements Parcelable {
/** @hide */
public final ArrayMap<String, PackageStats> mPackages = new ArrayMap<String, PackageStats>();
/** @hide */
public final ArrayMap<Configuration, ConfigurationStats> mConfigurations
= new ArrayMap<Configuration, ConfigurationStats>();
public static class PackageStats implements Parcelable {
private final String mPackageName;
private int mLaunchCount;
private long mUsageTime;
private long mResumedTime;
/** @hide */
public final ArrayMap<String, Long> componentResumeTimes;
public static final 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() {
return "PackageStats{"
+ Integer.toHexString(System.identityHashCode(this))
+ " " + mPackageName + "}";
}
/** @hide */
public PackageStats(String pkgName) {
mPackageName = pkgName;
componentResumeTimes = new ArrayMap<String, Long>();
}
/** @hide */
public PackageStats(String pkgName, int count, long time, Map<String, Long> lastResumeTimes) {
mPackageName = pkgName;
mLaunchCount = count;
mUsageTime = time;
componentResumeTimes = new ArrayMap<String, Long>();
componentResumeTimes.putAll(lastResumeTimes);
}
/** @hide */
public PackageStats(Parcel source) {
mPackageName = source.readString();
mLaunchCount = source.readInt();
mUsageTime = source.readLong();
final int N = source.readInt();
componentResumeTimes = new ArrayMap<String, Long>(N);
for (int i = 0; i < N; i++) {
String component = source.readString();
long lastResumeTime = source.readLong();
componentResumeTimes.put(component, lastResumeTime);
}
}
/** @hide */
public PackageStats(PackageStats pStats) {
mPackageName = pStats.mPackageName;
mLaunchCount = pStats.mLaunchCount;
mUsageTime = pStats.mUsageTime;
componentResumeTimes = new ArrayMap<String, Long>(pStats.componentResumeTimes);
}
/** @hide */
public void resume(boolean launched) {
if (launched) {
mLaunchCount++;
}
mResumedTime = SystemClock.elapsedRealtime();
}
/** @hide */
public void pause() {
if (mResumedTime > 0) {
mUsageTime += SystemClock.elapsedRealtime() - mResumedTime;
}
mResumedTime = 0;
}
public final String getPackageName() {
return mPackageName;
}
public final long getUsageTime(long elapsedRealtime) {
return mUsageTime + (mResumedTime > 0 ? (elapsedRealtime- mResumedTime) : 0);
}
public final int getLaunchCount() {
return mLaunchCount;
}
/** @hide */
public boolean clearUsageTimes() {
mLaunchCount = 0;
mUsageTime = 0;
return mResumedTime <= 0 && componentResumeTimes.isEmpty();
}
public final int describeContents() {
return 0;
}
public final void writeToParcel(Parcel dest, int parcelableFlags) {
writeToParcel(dest, parcelableFlags, 0);
}
final void writeToParcel(Parcel dest, int parcelableFlags, long elapsedRealtime) {
dest.writeString(mPackageName);
dest.writeInt(mLaunchCount);
dest.writeLong(elapsedRealtime > 0 ? getUsageTime(elapsedRealtime) : mUsageTime);
dest.writeInt(componentResumeTimes.size());
for (Map.Entry<String, Long> ent : componentResumeTimes.entrySet()) {
dest.writeString(ent.getKey());
dest.writeLong(ent.getValue());
}
}
/** @hide */
public void writeExtendedToParcel(Parcel dest, int parcelableFlags) {
}
}
public static class ConfigurationStats implements Parcelable {
private final Configuration mConfiguration;
private long mLastUsedTime;
private int mUsageCount;
private long mUsageTime;
private long mStartedTime;
public static final Parcelable.Creator<ConfigurationStats> CREATOR
= new Parcelable.Creator<ConfigurationStats>() {
public ConfigurationStats createFromParcel(Parcel in) {
return new ConfigurationStats(in);
}
public ConfigurationStats[] newArray(int size) {
return new ConfigurationStats[size];
}
};
public String toString() {
return "ConfigurationStats{"
+ Integer.toHexString(System.identityHashCode(this))
+ " " + mConfiguration + "}";
}
/** @hide */
public ConfigurationStats(Configuration config) {
mConfiguration = config;
}
/** @hide */
public ConfigurationStats(Parcel source) {
mConfiguration = Configuration.CREATOR.createFromParcel(source);
mLastUsedTime = source.readLong();
mUsageCount = source.readInt();
mUsageTime = source.readLong();
}
/** @hide */
public ConfigurationStats(ConfigurationStats pStats) {
mConfiguration = pStats.mConfiguration;
mLastUsedTime = pStats.mLastUsedTime;
mUsageCount = pStats.mUsageCount;
mUsageTime = pStats.mUsageTime;
}
public final Configuration getConfiguration() {
return mConfiguration;
}
public final long getLastUsedTime() {
return mLastUsedTime;
}
public final long getUsageTime(long elapsedRealtime) {
return mUsageTime + (mStartedTime > 0 ? (elapsedRealtime- mStartedTime) : 0);
}
public final int getUsageCount() {
return mUsageCount;
}
/** @hide */
public void start() {
mLastUsedTime = System.currentTimeMillis();
mUsageCount++;
mStartedTime = SystemClock.elapsedRealtime();
}
/** @hide */
public void stop() {
if (mStartedTime > 0) {
mUsageTime += SystemClock.elapsedRealtime() - mStartedTime;
}
mStartedTime = 0;
}
/** @hide */
public boolean clearUsageTimes() {
mUsageCount = 0;
mUsageTime = 0;
return mLastUsedTime == 0 && mStartedTime <= 0;
}
public final int describeContents() {
return 0;
}
public final void writeToParcel(Parcel dest, int parcelableFlags) {
writeToParcel(dest, parcelableFlags, 0);
}
final void writeToParcel(Parcel dest, int parcelableFlags, long elapsedRealtime) {
mConfiguration.writeToParcel(dest, parcelableFlags);
dest.writeLong(mLastUsedTime);
dest.writeInt(mUsageCount);
dest.writeLong(elapsedRealtime > 0 ? getUsageTime(elapsedRealtime) : mUsageTime);
}
/** @hide */
public void writeExtendedToParcel(Parcel dest, int parcelableFlags) {
}
}
/** @hide */
public UsageStats() {
}
/** @hide */
public UsageStats(Parcel source, boolean extended) {
int N = source.readInt();
for (int i=0; i<N; i++) {
PackageStats pkg = extended ? onNewPackageStats(source) : new PackageStats(source);
mPackages.put(pkg.getPackageName(), pkg);
}
N = source.readInt();
for (int i=0; i<N; i++) {
ConfigurationStats config = extended ? onNewConfigurationStats(source)
: new ConfigurationStats(source);
mConfigurations.put(config.getConfiguration(), config);
}
}
public int getPackageStatsCount() {
return mPackages.size();
}
public PackageStats getPackageStatsAt(int index) {
return mPackages.valueAt(index);
}
public PackageStats getPackageStats(String pkgName) {
return mPackages.get(pkgName);
}
/** @hide */
public PackageStats getOrCreatePackageStats(String pkgName) {
PackageStats ps = mPackages.get(pkgName);
if (ps == null) {
ps = onNewPackageStats(pkgName);
mPackages.put(pkgName, ps);
}
return ps;
}
public int getConfigurationStatsCount() {
return mConfigurations.size();
}
public ConfigurationStats getConfigurationStatsAt(int index) {
return mConfigurations.valueAt(index);
}
public ConfigurationStats getConfigurationStats(Configuration config) {
return mConfigurations.get(config);
}
/** @hide */
public ConfigurationStats getOrCreateConfigurationStats(Configuration config) {
ConfigurationStats cs = mConfigurations.get(config);
if (cs == null) {
cs = onNewConfigurationStats(config);
mConfigurations.put(config, cs);
}
return cs;
}
/** @hide */
public void clearUsageTimes() {
for (int i=mPackages.size()-1; i>=0; i--) {
if (mPackages.valueAt(i).clearUsageTimes()) {
mPackages.removeAt(i);
}
}
for (int i=mConfigurations.size()-1; i>=0; i--) {
if (mConfigurations.valueAt(i).clearUsageTimes()) {
mConfigurations.removeAt(i);
}
}
}
/** @hide */
public PackageStats onNewPackageStats(String pkgName) {
return new PackageStats(pkgName);
}
/** @hide */
public PackageStats onNewPackageStats(Parcel source) {
return new PackageStats(source);
}
/** @hide */
public ConfigurationStats onNewConfigurationStats(Configuration config) {
return new ConfigurationStats(config);
}
/** @hide */
public ConfigurationStats onNewConfigurationStats(Parcel source) {
return new ConfigurationStats(source);
}
public int describeContents() {
return 0;
}
public void writeToParcel(Parcel dest, int parcelableFlags) {
writeToParcelInner(dest, parcelableFlags, false);
}
/** @hide */
public void writeExtendedToParcel(Parcel dest, int parcelableFlags) {
writeToParcelInner(dest, parcelableFlags, true);
}
private void writeToParcelInner(Parcel dest, int parcelableFlags, boolean extended) {
final long elapsedRealtime = SystemClock.elapsedRealtime();
int N = mPackages.size();
dest.writeInt(N);
for (int i=0; i<N; i++) {
PackageStats ps = mPackages.valueAt(i);
ps.writeToParcel(dest, parcelableFlags, elapsedRealtime);
if (extended) {
ps.writeExtendedToParcel(dest, parcelableFlags);
}
}
N = mConfigurations.size();
dest.writeInt(N);
for (int i=0; i<N; i++) {
ConfigurationStats cs = mConfigurations.valueAt(i);
cs.writeToParcel(dest, parcelableFlags, elapsedRealtime);
if (extended) {
cs.writeExtendedToParcel(dest, parcelableFlags);
}
}
}
public static final Parcelable.Creator<UsageStats> CREATOR
= new Parcelable.Creator<UsageStats>() {
public UsageStats createFromParcel(Parcel in) {
return new UsageStats(in, false);
}
public UsageStats[] newArray(int size) {
return new UsageStats[size];
}
};
}
|