blob: e3f3b87354a9fbba4b69f9fa4dc9850b1402d29a [file] [log] [blame]
Kenny Root15a4d2f2010-03-11 18:20:12 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080017package android.os;
18
19import java.io.PrintWriter;
20import java.util.Formatter;
21import java.util.Map;
22
23import android.util.Log;
24import android.util.Printer;
25import android.util.SparseArray;
26
27/**
28 * A class providing access to battery usage statistics, including information on
29 * wakelocks, processes, packages, and services. All times are represented in microseconds
30 * except where indicated otherwise.
31 * @hide
32 */
33public abstract class BatteryStats implements Parcelable {
34
35 private static final boolean LOCAL_LOGV = false;
36
37 /**
38 * A constant indicating a partial wake lock timer.
39 */
40 public static final int WAKE_TYPE_PARTIAL = 0;
41
42 /**
43 * A constant indicating a full wake lock timer.
44 */
45 public static final int WAKE_TYPE_FULL = 1;
46
47 /**
48 * A constant indicating a window wake lock timer.
49 */
50 public static final int WAKE_TYPE_WINDOW = 2;
51
52 /**
53 * A constant indicating a sensor timer.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054 */
55 public static final int SENSOR = 3;
The Android Open Source Project10592532009-03-18 17:39:46 -070056
57 /**
Dianne Hackborn617f8772009-03-31 15:04:46 -070058 * A constant indicating a a wifi turn on timer
Dianne Hackborn617f8772009-03-31 15:04:46 -070059 */
60 public static final int WIFI_TURNED_ON = 4;
61
62 /**
The Android Open Source Project10592532009-03-18 17:39:46 -070063 * A constant indicating a full wifi lock timer
The Android Open Source Project10592532009-03-18 17:39:46 -070064 */
Dianne Hackborn617f8772009-03-31 15:04:46 -070065 public static final int FULL_WIFI_LOCK = 5;
The Android Open Source Project10592532009-03-18 17:39:46 -070066
67 /**
68 * A constant indicating a scan wifi lock timer
The Android Open Source Project10592532009-03-18 17:39:46 -070069 */
Dianne Hackborn617f8772009-03-31 15:04:46 -070070 public static final int SCAN_WIFI_LOCK = 6;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080071
Robert Greenwalt5347bd42009-05-13 15:10:16 -070072 /**
73 * A constant indicating a wifi multicast timer
Robert Greenwalt5347bd42009-05-13 15:10:16 -070074 */
75 public static final int WIFI_MULTICAST_ENABLED = 7;
76
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080077 /**
Amith Yamasani244fa5c2009-05-22 14:36:07 -070078 * A constant indicating an audio turn on timer
Amith Yamasani244fa5c2009-05-22 14:36:07 -070079 */
80 public static final int AUDIO_TURNED_ON = 7;
81
82 /**
83 * A constant indicating a video turn on timer
Amith Yamasani244fa5c2009-05-22 14:36:07 -070084 */
85 public static final int VIDEO_TURNED_ON = 8;
86
87 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080088 * Include all of the data in the stats, including previously saved data.
89 */
Dianne Hackborn6b7b4842010-06-14 17:17:44 -070090 public static final int STATS_SINCE_CHARGED = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080091
92 /**
93 * Include only the last run in the stats.
94 */
95 public static final int STATS_LAST = 1;
96
97 /**
98 * Include only the current run in the stats.
99 */
100 public static final int STATS_CURRENT = 2;
101
102 /**
103 * Include only the run since the last time the device was unplugged in the stats.
104 */
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700105 public static final int STATS_SINCE_UNPLUGGED = 3;
Evan Millare84de8d2009-04-02 22:16:12 -0700106
107 // NOTE: Update this list if you add/change any stats above.
108 // These characters are supposed to represent "total", "last", "current",
109 // and "unplugged". They were shortened for effeciency sake.
110 private static final String[] STAT_NAMES = { "t", "l", "c", "u" };
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800111
112 /**
113 * Bump the version on this if the checkin format changes.
114 */
Evan Millarc64edde2009-04-18 12:26:32 -0700115 private static final int BATTERY_STATS_CHECKIN_VERSION = 5;
Evan Millar22ac0432009-03-31 11:33:18 -0700116
117 private static final long BYTES_PER_KB = 1024;
118 private static final long BYTES_PER_MB = 1048576; // 1024^2
119 private static final long BYTES_PER_GB = 1073741824; //1024^3
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800120
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800121
122 private static final String APK_DATA = "apk";
Evan Millare84de8d2009-04-02 22:16:12 -0700123 private static final String PROCESS_DATA = "pr";
124 private static final String SENSOR_DATA = "sr";
125 private static final String WAKELOCK_DATA = "wl";
Evan Millarc64edde2009-04-18 12:26:32 -0700126 private static final String KERNEL_WAKELOCK_DATA = "kwl";
Evan Millare84de8d2009-04-02 22:16:12 -0700127 private static final String NETWORK_DATA = "nt";
128 private static final String USER_ACTIVITY_DATA = "ua";
129 private static final String BATTERY_DATA = "bt";
130 private static final String BATTERY_LEVEL_DATA = "lv";
131 private static final String WIFI_LOCK_DATA = "wfl";
132 private static final String MISC_DATA = "m";
133 private static final String SCREEN_BRIGHTNESS_DATA = "br";
134 private static final String SIGNAL_STRENGTH_TIME_DATA = "sgt";
Amith Yamasanif37447b2009-10-08 18:28:01 -0700135 private static final String SIGNAL_SCANNING_TIME_DATA = "sst";
Evan Millare84de8d2009-04-02 22:16:12 -0700136 private static final String SIGNAL_STRENGTH_COUNT_DATA = "sgc";
137 private static final String DATA_CONNECTION_TIME_DATA = "dct";
138 private static final String DATA_CONNECTION_COUNT_DATA = "dcc";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800139
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700140 private final StringBuilder mFormatBuilder = new StringBuilder(32);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800141 private final Formatter mFormatter = new Formatter(mFormatBuilder);
142
143 /**
Dianne Hackborn617f8772009-03-31 15:04:46 -0700144 * State for keeping track of counting information.
145 */
146 public static abstract class Counter {
147
148 /**
149 * Returns the count associated with this Counter for the
150 * selected type of statistics.
151 *
152 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT
153 */
Evan Millarc64edde2009-04-18 12:26:32 -0700154 public abstract int getCountLocked(int which);
Dianne Hackborn617f8772009-03-31 15:04:46 -0700155
156 /**
157 * Temporary for debugging.
158 */
159 public abstract void logState(Printer pw, String prefix);
160 }
161
162 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800163 * State for keeping track of timing information.
164 */
165 public static abstract class Timer {
166
167 /**
168 * Returns the count associated with this Timer for the
169 * selected type of statistics.
170 *
171 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT
172 */
Evan Millarc64edde2009-04-18 12:26:32 -0700173 public abstract int getCountLocked(int which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800174
175 /**
176 * Returns the total time in microseconds associated with this Timer for the
177 * selected type of statistics.
178 *
179 * @param batteryRealtime system realtime on battery in microseconds
180 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT
181 * @return a time in microseconds
182 */
Evan Millarc64edde2009-04-18 12:26:32 -0700183 public abstract long getTotalTimeLocked(long batteryRealtime, int which);
Amith Yamasani244fa5c2009-05-22 14:36:07 -0700184
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800185 /**
186 * Temporary for debugging.
187 */
Dianne Hackborn627bba72009-03-24 22:32:56 -0700188 public abstract void logState(Printer pw, String prefix);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800189 }
190
191 /**
192 * The statistics associated with a particular uid.
193 */
194 public static abstract class Uid {
195
196 /**
197 * Returns a mapping containing wakelock statistics.
198 *
199 * @return a Map from Strings to Uid.Wakelock objects.
200 */
201 public abstract Map<String, ? extends Wakelock> getWakelockStats();
202
203 /**
204 * The statistics associated with a particular wake lock.
205 */
206 public static abstract class Wakelock {
207 public abstract Timer getWakeTime(int type);
208 }
209
210 /**
211 * Returns a mapping containing sensor statistics.
212 *
213 * @return a Map from Integer sensor ids to Uid.Sensor objects.
214 */
215 public abstract Map<Integer, ? extends Sensor> getSensorStats();
216
217 /**
218 * Returns a mapping containing process statistics.
219 *
220 * @return a Map from Strings to Uid.Proc objects.
221 */
222 public abstract Map<String, ? extends Proc> getProcessStats();
223
224 /**
225 * Returns a mapping containing package statistics.
226 *
227 * @return a Map from Strings to Uid.Pkg objects.
228 */
229 public abstract Map<String, ? extends Pkg> getPackageStats();
230
231 /**
232 * {@hide}
233 */
234 public abstract int getUid();
235
236 /**
237 * {@hide}
238 */
239 public abstract long getTcpBytesReceived(int which);
240
241 /**
242 * {@hide}
243 */
244 public abstract long getTcpBytesSent(int which);
The Android Open Source Project10592532009-03-18 17:39:46 -0700245
Dianne Hackborn617f8772009-03-31 15:04:46 -0700246 public abstract void noteWifiTurnedOnLocked();
247 public abstract void noteWifiTurnedOffLocked();
The Android Open Source Project10592532009-03-18 17:39:46 -0700248 public abstract void noteFullWifiLockAcquiredLocked();
249 public abstract void noteFullWifiLockReleasedLocked();
250 public abstract void noteScanWifiLockAcquiredLocked();
251 public abstract void noteScanWifiLockReleasedLocked();
Robert Greenwalt5347bd42009-05-13 15:10:16 -0700252 public abstract void noteWifiMulticastEnabledLocked();
253 public abstract void noteWifiMulticastDisabledLocked();
Amith Yamasani244fa5c2009-05-22 14:36:07 -0700254 public abstract void noteAudioTurnedOnLocked();
255 public abstract void noteAudioTurnedOffLocked();
256 public abstract void noteVideoTurnedOnLocked();
257 public abstract void noteVideoTurnedOffLocked();
Dianne Hackborn617f8772009-03-31 15:04:46 -0700258 public abstract long getWifiTurnedOnTime(long batteryRealtime, int which);
The Android Open Source Project10592532009-03-18 17:39:46 -0700259 public abstract long getFullWifiLockTime(long batteryRealtime, int which);
260 public abstract long getScanWifiLockTime(long batteryRealtime, int which);
Robert Greenwalt5347bd42009-05-13 15:10:16 -0700261 public abstract long getWifiMulticastTime(long batteryRealtime,
262 int which);
Amith Yamasani244fa5c2009-05-22 14:36:07 -0700263 public abstract long getAudioTurnedOnTime(long batteryRealtime, int which);
264 public abstract long getVideoTurnedOnTime(long batteryRealtime, int which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800265
Dianne Hackborn617f8772009-03-31 15:04:46 -0700266 /**
267 * Note that these must match the constants in android.os.LocalPowerManager.
268 */
269 static final String[] USER_ACTIVITY_TYPES = {
270 "other", "cheek", "touch", "long_touch", "touch_up", "button", "unknown"
271 };
272
273 public static final int NUM_USER_ACTIVITY_TYPES = 7;
274
275 public abstract void noteUserActivityLocked(int type);
276 public abstract boolean hasUserActivity();
277 public abstract int getUserActivityCount(int type, int which);
278
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800279 public static abstract class Sensor {
280 // Magic sensor number for the GPS.
281 public static final int GPS = -10000;
282
283 public abstract int getHandle();
284
285 public abstract Timer getSensorTime();
286 }
287
288 /**
289 * The statistics associated with a particular process.
290 */
291 public static abstract class Proc {
292
293 /**
294 * Returns the total time (in 1/100 sec) spent executing in user code.
295 *
296 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
297 */
298 public abstract long getUserTime(int which);
299
300 /**
301 * Returns the total time (in 1/100 sec) spent executing in system code.
302 *
303 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
304 */
305 public abstract long getSystemTime(int which);
306
307 /**
308 * Returns the number of times the process has been started.
309 *
310 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
311 */
312 public abstract int getStarts(int which);
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700313
314 /**
315 * Returns the cpu time spent in microseconds while the process was in the foreground.
316 * @param which one of STATS_TOTAL, STATS_LAST, STATS_CURRENT or STATS_UNPLUGGED
317 * @return foreground cpu time in microseconds
318 */
319 public abstract long getForegroundTime(int which);
Amith Yamasanie43530a2009-08-21 13:11:37 -0700320
321 /**
322 * Returns the approximate cpu time spent in microseconds, at a certain CPU speed.
323 * @param speedStep the index of the CPU speed. This is not the actual speed of the
324 * CPU.
325 * @param which one of STATS_TOTAL, STATS_LAST, STATS_CURRENT or STATS_UNPLUGGED
326 * @see BatteryStats#getCpuSpeedSteps()
327 */
328 public abstract long getTimeAtCpuSpeedStep(int speedStep, int which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800329 }
330
331 /**
332 * The statistics associated with a particular package.
333 */
334 public static abstract class Pkg {
335
336 /**
337 * Returns the number of times this package has done something that could wake up the
338 * device from sleep.
339 *
340 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
341 */
342 public abstract int getWakeups(int which);
343
344 /**
345 * Returns a mapping containing service statistics.
346 */
347 public abstract Map<String, ? extends Serv> getServiceStats();
348
349 /**
350 * The statistics associated with a particular service.
351 */
352 public abstract class Serv {
353
354 /**
355 * Returns the amount of time spent started.
356 *
357 * @param batteryUptime elapsed uptime on battery in microseconds.
358 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
359 * @return
360 */
361 public abstract long getStartTime(long batteryUptime, int which);
362
363 /**
364 * Returns the total number of times startService() has been called.
365 *
366 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
367 */
368 public abstract int getStarts(int which);
369
370 /**
371 * Returns the total number times the service has been launched.
372 *
373 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
374 */
375 public abstract int getLaunches(int which);
376 }
377 }
378 }
379
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700380 public final class HistoryItem implements Parcelable {
381 public HistoryItem next;
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700382
383 public long time;
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700384
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700385 public static final byte CMD_UPDATE = 0;
386 public static final byte CMD_START = 1;
387
388 public byte cmd;
389
390 public byte batteryLevel;
391 public byte batteryStatus;
392 public byte batteryHealth;
393 public byte batteryPlugType;
394
395 public char batteryTemperature;
396 public char batteryVoltage;
397
398 public static final int STATE_BRIGHTNESS_MASK = 0x000000f;
399 public static final int STATE_BRIGHTNESS_SHIFT = 0;
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700400 public static final int STATE_SIGNAL_STRENGTH_MASK = 0x00000f0;
401 public static final int STATE_SIGNAL_STRENGTH_SHIFT = 4;
402 public static final int STATE_PHONE_STATE_MASK = 0x0000f00;
403 public static final int STATE_PHONE_STATE_SHIFT = 8;
404 public static final int STATE_DATA_CONNECTION_MASK = 0x000f000;
405 public static final int STATE_DATA_CONNECTION_SHIFT = 12;
406
407 public static final int STATE_BATTERY_PLUGGED_FLAG = 1<<30;
408 public static final int STATE_SCREEN_ON_FLAG = 1<<29;
409 public static final int STATE_GPS_ON_FLAG = 1<<28;
410 public static final int STATE_PHONE_ON_FLAG = 1<<27;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700411 public static final int STATE_PHONE_SCANNING_FLAG = 1<<26;
412 public static final int STATE_WIFI_ON_FLAG = 1<<25;
413 public static final int STATE_WIFI_RUNNING_FLAG = 1<<24;
414 public static final int STATE_WIFI_FULL_LOCK_FLAG = 1<<23;
415 public static final int STATE_WIFI_SCAN_LOCK_FLAG = 1<<22;
416 public static final int STATE_WIFI_MULTICAST_ON_FLAG = 1<<21;
417 public static final int STATE_BLUETOOTH_ON_FLAG = 1<<20;
418 public static final int STATE_AUDIO_ON_FLAG = 1<<19;
419 public static final int STATE_VIDEO_ON_FLAG = 1<<18;
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700420
421 public int states;
422
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700423 public HistoryItem() {
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700424 }
425
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700426 public HistoryItem(long time, Parcel src) {
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700427 this.time = time;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700428 int bat = src.readInt();
429 cmd = (byte)(bat&0xff);
430 batteryLevel = (byte)((bat>>8)&0xff);
431 batteryStatus = (byte)((bat>>16)&0xf);
432 batteryHealth = (byte)((bat>>20)&0xf);
433 batteryPlugType = (byte)((bat>>24)&0xf);
434 bat = src.readInt();
435 batteryTemperature = (char)(bat&0xffff);
436 batteryVoltage = (char)((bat>>16)&0xffff);
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700437 states = src.readInt();
438 }
439
440 public int describeContents() {
441 return 0;
442 }
443
444 public void writeToParcel(Parcel dest, int flags) {
445 dest.writeLong(time);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700446 int bat = (((int)cmd)&0xff)
447 | ((((int)batteryLevel)<<8)&0xff00)
448 | ((((int)batteryStatus)<<16)&0xf0000)
449 | ((((int)batteryHealth)<<20)&0xf00000)
450 | ((((int)batteryPlugType)<<24)&0xf000000);
451 dest.writeInt(bat);
452 bat = (((int)batteryTemperature)&0xffff)
453 | ((((int)batteryVoltage)<<16)&0xffff0000);
454 dest.writeInt(bat);
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700455 dest.writeInt(states);
456 }
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700457
458 public void setTo(long time, byte cmd, HistoryItem o) {
459 this.time = time;
460 this.cmd = cmd;
461 batteryLevel = o.batteryLevel;
462 batteryStatus = o.batteryStatus;
463 batteryHealth = o.batteryHealth;
464 batteryPlugType = o.batteryPlugType;
465 batteryTemperature = o.batteryTemperature;
466 batteryVoltage = o.batteryVoltage;
467 states = o.states;
468 }
469 }
470
471 public static final class BitDescription {
472 public final int mask;
473 public final int shift;
474 public final String name;
475 public final String[] values;
476
477 public BitDescription(int mask, String name) {
478 this.mask = mask;
479 this.shift = -1;
480 this.name = name;
481 this.values = null;
482 }
483
484 public BitDescription(int mask, int shift, String name, String[] values) {
485 this.mask = mask;
486 this.shift = shift;
487 this.name = name;
488 this.values = values;
489 }
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700490 }
491
492 /**
493 * Return the current history of battery state changes.
494 */
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700495 public abstract HistoryItem getHistory();
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700496
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800497 /**
498 * Returns the number of times the device has been started.
499 */
500 public abstract int getStartCount();
501
502 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700503 * Returns the time in microseconds that the screen has been on while the device was
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800504 * running on battery.
505 *
506 * {@hide}
507 */
508 public abstract long getScreenOnTime(long batteryRealtime, int which);
509
Dianne Hackborn617f8772009-03-31 15:04:46 -0700510 public static final int SCREEN_BRIGHTNESS_DARK = 0;
511 public static final int SCREEN_BRIGHTNESS_DIM = 1;
512 public static final int SCREEN_BRIGHTNESS_MEDIUM = 2;
513 public static final int SCREEN_BRIGHTNESS_LIGHT = 3;
514 public static final int SCREEN_BRIGHTNESS_BRIGHT = 4;
515
516 static final String[] SCREEN_BRIGHTNESS_NAMES = {
517 "dark", "dim", "medium", "light", "bright"
518 };
519
520 public static final int NUM_SCREEN_BRIGHTNESS_BINS = 5;
521
522 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700523 * Returns the time in microseconds that the screen has been on with
Dianne Hackborn617f8772009-03-31 15:04:46 -0700524 * the given brightness
525 *
526 * {@hide}
527 */
528 public abstract long getScreenBrightnessTime(int brightnessBin,
529 long batteryRealtime, int which);
530
531 public abstract int getInputEventCount(int which);
532
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800533 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700534 * Returns the time in microseconds that the phone has been on while the device was
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800535 * running on battery.
536 *
537 * {@hide}
538 */
539 public abstract long getPhoneOnTime(long batteryRealtime, int which);
Eric Shienbroodd4c5f892009-03-24 18:13:20 -0700540
Dianne Hackborn627bba72009-03-24 22:32:56 -0700541 public static final int SIGNAL_STRENGTH_NONE_OR_UNKNOWN = 0;
542 public static final int SIGNAL_STRENGTH_POOR = 1;
543 public static final int SIGNAL_STRENGTH_MODERATE = 2;
544 public static final int SIGNAL_STRENGTH_GOOD = 3;
545 public static final int SIGNAL_STRENGTH_GREAT = 4;
546
547 static final String[] SIGNAL_STRENGTH_NAMES = {
548 "none", "poor", "moderate", "good", "great"
549 };
550
551 public static final int NUM_SIGNAL_STRENGTH_BINS = 5;
552
553 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700554 * Returns the time in microseconds that the phone has been running with
Dianne Hackborn627bba72009-03-24 22:32:56 -0700555 * the given signal strength.
556 *
557 * {@hide}
558 */
559 public abstract long getPhoneSignalStrengthTime(int strengthBin,
560 long batteryRealtime, int which);
561
Dianne Hackborn617f8772009-03-31 15:04:46 -0700562 /**
Amith Yamasanif37447b2009-10-08 18:28:01 -0700563 * Returns the time in microseconds that the phone has been trying to
564 * acquire a signal.
565 *
566 * {@hide}
567 */
568 public abstract long getPhoneSignalScanningTime(
569 long batteryRealtime, int which);
570
571 /**
Dianne Hackborn617f8772009-03-31 15:04:46 -0700572 * Returns the number of times the phone has entered the given signal strength.
573 *
574 * {@hide}
575 */
576 public abstract int getPhoneSignalStrengthCount(int strengthBin, int which);
577
Dianne Hackborn627bba72009-03-24 22:32:56 -0700578 public static final int DATA_CONNECTION_NONE = 0;
579 public static final int DATA_CONNECTION_GPRS = 1;
580 public static final int DATA_CONNECTION_EDGE = 2;
581 public static final int DATA_CONNECTION_UMTS = 3;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700582 public static final int DATA_CONNECTION_CDMA = 4;
583 public static final int DATA_CONNECTION_EVDO_0 = 5;
584 public static final int DATA_CONNECTION_EVDO_A = 6;
585 public static final int DATA_CONNECTION_1xRTT = 7;
586 public static final int DATA_CONNECTION_HSDPA = 8;
587 public static final int DATA_CONNECTION_HSUPA = 9;
588 public static final int DATA_CONNECTION_HSPA = 10;
589 public static final int DATA_CONNECTION_IDEN = 11;
590 public static final int DATA_CONNECTION_EVDO_B = 12;
591 public static final int DATA_CONNECTION_OTHER = 13;
Dianne Hackborn627bba72009-03-24 22:32:56 -0700592
593 static final String[] DATA_CONNECTION_NAMES = {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700594 "none", "gprs", "edge", "umts", "cdma", "evdo_0", "evdo_A",
595 "1xrtt", "hsdpa", "hsupa", "hspa", "iden", "evdo_b", "other"
Dianne Hackborn627bba72009-03-24 22:32:56 -0700596 };
597
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700598 public static final int NUM_DATA_CONNECTION_TYPES = DATA_CONNECTION_OTHER+1;
Dianne Hackborn627bba72009-03-24 22:32:56 -0700599
600 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700601 * Returns the time in microseconds that the phone has been running with
Dianne Hackborn627bba72009-03-24 22:32:56 -0700602 * the given data connection.
603 *
604 * {@hide}
605 */
606 public abstract long getPhoneDataConnectionTime(int dataType,
607 long batteryRealtime, int which);
608
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800609 /**
Dianne Hackborn617f8772009-03-31 15:04:46 -0700610 * Returns the number of times the phone has entered the given data
611 * connection type.
612 *
613 * {@hide}
614 */
615 public abstract int getPhoneDataConnectionCount(int dataType, int which);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700616
617 public static final BitDescription[] HISTORY_STATE_DESCRIPTIONS
618 = new BitDescription[] {
619 new BitDescription(HistoryItem.STATE_BATTERY_PLUGGED_FLAG, "plugged"),
620 new BitDescription(HistoryItem.STATE_SCREEN_ON_FLAG, "screen"),
621 new BitDescription(HistoryItem.STATE_GPS_ON_FLAG, "gps"),
622 new BitDescription(HistoryItem.STATE_PHONE_ON_FLAG, "phone"),
623 new BitDescription(HistoryItem.STATE_PHONE_SCANNING_FLAG, "phone_scanning"),
624 new BitDescription(HistoryItem.STATE_WIFI_ON_FLAG, "wifi"),
625 new BitDescription(HistoryItem.STATE_WIFI_RUNNING_FLAG, "wifi_running"),
626 new BitDescription(HistoryItem.STATE_WIFI_FULL_LOCK_FLAG, "wifi_full_lock"),
627 new BitDescription(HistoryItem.STATE_WIFI_SCAN_LOCK_FLAG, "wifi_scan_lock"),
628 new BitDescription(HistoryItem.STATE_WIFI_MULTICAST_ON_FLAG, "wifi_multicast"),
629 new BitDescription(HistoryItem.STATE_BLUETOOTH_ON_FLAG, "bluetooth"),
630 new BitDescription(HistoryItem.STATE_AUDIO_ON_FLAG, "audio"),
631 new BitDescription(HistoryItem.STATE_VIDEO_ON_FLAG, "video"),
632 new BitDescription(HistoryItem.STATE_BRIGHTNESS_MASK,
633 HistoryItem.STATE_BRIGHTNESS_SHIFT, "brightness",
634 SCREEN_BRIGHTNESS_NAMES),
635 new BitDescription(HistoryItem.STATE_SIGNAL_STRENGTH_MASK,
636 HistoryItem.STATE_SIGNAL_STRENGTH_SHIFT, "signal_strength",
637 SIGNAL_STRENGTH_NAMES),
638 new BitDescription(HistoryItem.STATE_PHONE_STATE_MASK,
639 HistoryItem.STATE_PHONE_STATE_SHIFT, "phone_state",
640 new String[] {"in", "out", "emergency", "off"}),
641 new BitDescription(HistoryItem.STATE_DATA_CONNECTION_MASK,
642 HistoryItem.STATE_DATA_CONNECTION_SHIFT, "data_conn",
643 DATA_CONNECTION_NAMES),
644 };
Dianne Hackborn617f8772009-03-31 15:04:46 -0700645
646 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700647 * Returns the time in microseconds that wifi has been on while the device was
The Android Open Source Project10592532009-03-18 17:39:46 -0700648 * running on battery.
649 *
650 * {@hide}
651 */
652 public abstract long getWifiOnTime(long batteryRealtime, int which);
Eric Shienbroodd4c5f892009-03-24 18:13:20 -0700653
654 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700655 * Returns the time in microseconds that wifi has been on and the driver has
Eric Shienbroodd4c5f892009-03-24 18:13:20 -0700656 * been in the running state while the device was running on battery.
657 *
658 * {@hide}
659 */
660 public abstract long getWifiRunningTime(long batteryRealtime, int which);
661
The Android Open Source Project10592532009-03-18 17:39:46 -0700662 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700663 * Returns the time in microseconds that bluetooth has been on while the device was
The Android Open Source Project10592532009-03-18 17:39:46 -0700664 * running on battery.
665 *
666 * {@hide}
667 */
668 public abstract long getBluetoothOnTime(long batteryRealtime, int which);
669
670 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800671 * Return whether we are currently running on battery.
672 */
673 public abstract boolean getIsOnBattery();
674
675 /**
676 * Returns a SparseArray containing the statistics for each uid.
677 */
678 public abstract SparseArray<? extends Uid> getUidStats();
679
680 /**
681 * Returns the current battery uptime in microseconds.
682 *
683 * @param curTime the amount of elapsed realtime in microseconds.
684 */
685 public abstract long getBatteryUptime(long curTime);
686
687 /**
Amith Yamasani3f7e35c2009-07-13 16:02:45 -0700688 * @deprecated use getRadioDataUptime
689 */
690 public long getRadioDataUptimeMs() {
691 return getRadioDataUptime() / 1000;
692 }
693
694 /**
695 * Returns the time that the radio was on for data transfers.
696 * @return the uptime in microseconds while unplugged
697 */
698 public abstract long getRadioDataUptime();
699
700 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800701 * Returns the current battery realtime in microseconds.
702 *
703 * @param curTime the amount of elapsed realtime in microseconds.
704 */
705 public abstract long getBatteryRealtime(long curTime);
The Android Open Source Project10592532009-03-18 17:39:46 -0700706
707 /**
Evan Millar633a1742009-04-02 16:36:33 -0700708 * Returns the battery percentage level at the last time the device was unplugged from power, or
709 * the last time it booted on battery power.
The Android Open Source Project10592532009-03-18 17:39:46 -0700710 */
Evan Millar633a1742009-04-02 16:36:33 -0700711 public abstract int getDischargeStartLevel();
The Android Open Source Project10592532009-03-18 17:39:46 -0700712
713 /**
Evan Millar633a1742009-04-02 16:36:33 -0700714 * Returns the current battery percentage level if we are in a discharge cycle, otherwise
715 * returns the level at the last plug event.
The Android Open Source Project10592532009-03-18 17:39:46 -0700716 */
Evan Millar633a1742009-04-02 16:36:33 -0700717 public abstract int getDischargeCurrentLevel();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800718
719 /**
720 * Returns the total, last, or current battery uptime in microseconds.
721 *
722 * @param curTime the elapsed realtime in microseconds.
723 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
724 */
725 public abstract long computeBatteryUptime(long curTime, int which);
726
727 /**
728 * Returns the total, last, or current battery realtime in microseconds.
729 *
730 * @param curTime the current elapsed realtime in microseconds.
731 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
732 */
733 public abstract long computeBatteryRealtime(long curTime, int which);
734
735 /**
736 * Returns the total, last, or current uptime in microseconds.
737 *
738 * @param curTime the current elapsed realtime in microseconds.
739 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
740 */
741 public abstract long computeUptime(long curTime, int which);
742
743 /**
744 * Returns the total, last, or current realtime in microseconds.
745 * *
746 * @param curTime the current elapsed realtime in microseconds.
747 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
748 */
749 public abstract long computeRealtime(long curTime, int which);
Evan Millarc64edde2009-04-18 12:26:32 -0700750
751 public abstract Map<String, ? extends Timer> getKernelWakelockStats();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800752
Amith Yamasanie43530a2009-08-21 13:11:37 -0700753 /** Returns the number of different speeds that the CPU can run at */
754 public abstract int getCpuSpeedSteps();
755
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700756 private final static void formatTimeRaw(StringBuilder out, long seconds) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800757 long days = seconds / (60 * 60 * 24);
758 if (days != 0) {
759 out.append(days);
760 out.append("d ");
761 }
762 long used = days * 60 * 60 * 24;
763
764 long hours = (seconds - used) / (60 * 60);
765 if (hours != 0 || used != 0) {
766 out.append(hours);
767 out.append("h ");
768 }
769 used += hours * 60 * 60;
770
771 long mins = (seconds-used) / 60;
772 if (mins != 0 || used != 0) {
773 out.append(mins);
774 out.append("m ");
775 }
776 used += mins * 60;
777
778 if (seconds != 0 || used != 0) {
779 out.append(seconds-used);
780 out.append("s ");
781 }
782 }
783
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700784 private final static void formatTime(StringBuilder sb, long time) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800785 long sec = time / 100;
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700786 formatTimeRaw(sb, sec);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800787 sb.append((time - (sec * 100)) * 10);
788 sb.append("ms ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800789 }
790
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700791 private final static void formatTimeMs(StringBuilder sb, long time) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800792 long sec = time / 1000;
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700793 formatTimeRaw(sb, sec);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800794 sb.append(time - (sec * 1000));
795 sb.append("ms ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800796 }
797
798 private final String formatRatioLocked(long num, long den) {
799 if (den == 0L) {
800 return "---%";
801 }
802 float perc = ((float)num) / ((float)den) * 100;
803 mFormatBuilder.setLength(0);
804 mFormatter.format("%.1f%%", perc);
805 return mFormatBuilder.toString();
806 }
807
Evan Millar22ac0432009-03-31 11:33:18 -0700808 private final String formatBytesLocked(long bytes) {
809 mFormatBuilder.setLength(0);
810
811 if (bytes < BYTES_PER_KB) {
812 return bytes + "B";
813 } else if (bytes < BYTES_PER_MB) {
814 mFormatter.format("%.2fKB", bytes / (double) BYTES_PER_KB);
815 return mFormatBuilder.toString();
816 } else if (bytes < BYTES_PER_GB){
817 mFormatter.format("%.2fMB", bytes / (double) BYTES_PER_MB);
818 return mFormatBuilder.toString();
819 } else {
820 mFormatter.format("%.2fGB", bytes / (double) BYTES_PER_GB);
821 return mFormatBuilder.toString();
822 }
823 }
824
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800825 /**
826 *
827 * @param sb a StringBuilder object.
828 * @param timer a Timer object contining the wakelock times.
829 * @param batteryRealtime the current on-battery time in microseconds.
830 * @param name the name of the wakelock.
831 * @param which which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
832 * @param linePrefix a String to be prepended to each line of output.
833 * @return the line prefix
834 */
835 private static final String printWakeLock(StringBuilder sb, Timer timer,
836 long batteryRealtime, String name, int which, String linePrefix) {
837
838 if (timer != null) {
839 // Convert from microseconds to milliseconds with rounding
Evan Millarc64edde2009-04-18 12:26:32 -0700840 long totalTimeMicros = timer.getTotalTimeLocked(batteryRealtime, which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800841 long totalTimeMillis = (totalTimeMicros + 500) / 1000;
842
Evan Millarc64edde2009-04-18 12:26:32 -0700843 int count = timer.getCountLocked(which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800844 if (totalTimeMillis != 0) {
845 sb.append(linePrefix);
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700846 formatTimeMs(sb, totalTimeMillis);
847 if (name != null) sb.append(name);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800848 sb.append(' ');
849 sb.append('(');
850 sb.append(count);
851 sb.append(" times)");
852 return ", ";
853 }
854 }
855 return linePrefix;
856 }
857
858 /**
859 * Checkin version of wakelock printer. Prints simple comma-separated list.
860 *
861 * @param sb a StringBuilder object.
862 * @param timer a Timer object contining the wakelock times.
863 * @param now the current time in microseconds.
864 * @param name the name of the wakelock.
865 * @param which which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
866 * @param linePrefix a String to be prepended to each line of output.
867 * @return the line prefix
868 */
869 private static final String printWakeLockCheckin(StringBuilder sb, Timer timer, long now,
Evan Millarc64edde2009-04-18 12:26:32 -0700870 String name, int which, String linePrefix) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800871 long totalTimeMicros = 0;
872 int count = 0;
873 if (timer != null) {
Evan Millarc64edde2009-04-18 12:26:32 -0700874 totalTimeMicros = timer.getTotalTimeLocked(now, which);
875 count = timer.getCountLocked(which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800876 }
877 sb.append(linePrefix);
878 sb.append((totalTimeMicros + 500) / 1000); // microseconds to milliseconds with rounding
879 sb.append(',');
Evan Millarc64edde2009-04-18 12:26:32 -0700880 sb.append(name != null ? name + "," : "");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800881 sb.append(count);
882 return ",";
883 }
884
885 /**
886 * Dump a comma-separated line of values for terse checkin mode.
887 *
888 * @param pw the PageWriter to dump log to
889 * @param category category of data (e.g. "total", "last", "unplugged", "current" )
890 * @param type type of data (e.g. "wakelock", "sensor", "process", "apk" , "process", "network")
891 * @param args type-dependent data arguments
892 */
893 private static final void dumpLine(PrintWriter pw, int uid, String category, String type,
894 Object... args ) {
895 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
896 pw.print(uid); pw.print(',');
897 pw.print(category); pw.print(',');
898 pw.print(type);
899
900 for (Object arg : args) {
901 pw.print(',');
902 pw.print(arg);
903 }
904 pw.print('\n');
905 }
906
907 /**
908 * Checkin server version of dump to produce more compact, computer-readable log.
909 *
910 * NOTE: all times are expressed in 'ms'.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800911 */
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800912 public final void dumpCheckinLocked(PrintWriter pw, int which, int reqUid) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800913 final long rawUptime = SystemClock.uptimeMillis() * 1000;
914 final long rawRealtime = SystemClock.elapsedRealtime() * 1000;
915 final long batteryUptime = getBatteryUptime(rawUptime);
916 final long batteryRealtime = getBatteryRealtime(rawRealtime);
917 final long whichBatteryUptime = computeBatteryUptime(rawUptime, which);
918 final long whichBatteryRealtime = computeBatteryRealtime(rawRealtime, which);
919 final long totalRealtime = computeRealtime(rawRealtime, which);
920 final long totalUptime = computeUptime(rawUptime, which);
921 final long screenOnTime = getScreenOnTime(batteryRealtime, which);
922 final long phoneOnTime = getPhoneOnTime(batteryRealtime, which);
The Android Open Source Project10592532009-03-18 17:39:46 -0700923 final long wifiOnTime = getWifiOnTime(batteryRealtime, which);
Eric Shienbroodd4c5f892009-03-24 18:13:20 -0700924 final long wifiRunningTime = getWifiRunningTime(batteryRealtime, which);
The Android Open Source Project10592532009-03-18 17:39:46 -0700925 final long bluetoothOnTime = getBluetoothOnTime(batteryRealtime, which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800926
927 StringBuilder sb = new StringBuilder(128);
928
Evan Millar22ac0432009-03-31 11:33:18 -0700929 SparseArray<? extends Uid> uidStats = getUidStats();
930 final int NU = uidStats.size();
931
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800932 String category = STAT_NAMES[which];
933
934 // Dump "battery" stat
935 dumpLine(pw, 0 /* uid */, category, BATTERY_DATA,
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700936 which == STATS_SINCE_CHARGED ? getStartCount() : "N/A",
Dianne Hackborn617f8772009-03-31 15:04:46 -0700937 whichBatteryRealtime / 1000, whichBatteryUptime / 1000,
938 totalRealtime / 1000, totalUptime / 1000);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800939
Evan Millar22ac0432009-03-31 11:33:18 -0700940 // Calculate total network and wakelock times across all uids.
941 long rxTotal = 0;
942 long txTotal = 0;
943 long fullWakeLockTimeTotal = 0;
944 long partialWakeLockTimeTotal = 0;
945
946 for (int iu = 0; iu < NU; iu++) {
947 Uid u = uidStats.valueAt(iu);
948 rxTotal += u.getTcpBytesReceived(which);
949 txTotal += u.getTcpBytesSent(which);
950
951 Map<String, ? extends BatteryStats.Uid.Wakelock> wakelocks = u.getWakelockStats();
952 if (wakelocks.size() > 0) {
953 for (Map.Entry<String, ? extends BatteryStats.Uid.Wakelock> ent
954 : wakelocks.entrySet()) {
955 Uid.Wakelock wl = ent.getValue();
956
957 Timer fullWakeTimer = wl.getWakeTime(WAKE_TYPE_FULL);
958 if (fullWakeTimer != null) {
Evan Millarc64edde2009-04-18 12:26:32 -0700959 fullWakeLockTimeTotal += fullWakeTimer.getTotalTimeLocked(batteryRealtime, which);
Evan Millar22ac0432009-03-31 11:33:18 -0700960 }
961
962 Timer partialWakeTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
963 if (partialWakeTimer != null) {
Evan Millarc64edde2009-04-18 12:26:32 -0700964 partialWakeLockTimeTotal += partialWakeTimer.getTotalTimeLocked(
Evan Millar22ac0432009-03-31 11:33:18 -0700965 batteryRealtime, which);
966 }
967 }
968 }
969 }
970
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800971 // Dump misc stats
972 dumpLine(pw, 0 /* uid */, category, MISC_DATA,
Eric Shienbroodd4c5f892009-03-24 18:13:20 -0700973 screenOnTime / 1000, phoneOnTime / 1000, wifiOnTime / 1000,
Evan Millar22ac0432009-03-31 11:33:18 -0700974 wifiRunningTime / 1000, bluetoothOnTime / 1000, rxTotal, txTotal,
Dianne Hackborn617f8772009-03-31 15:04:46 -0700975 fullWakeLockTimeTotal, partialWakeLockTimeTotal,
976 getInputEventCount(which));
977
978 // Dump screen brightness stats
979 Object[] args = new Object[NUM_SCREEN_BRIGHTNESS_BINS];
980 for (int i=0; i<NUM_SCREEN_BRIGHTNESS_BINS; i++) {
981 args[i] = getScreenBrightnessTime(i, batteryRealtime, which) / 1000;
982 }
983 dumpLine(pw, 0 /* uid */, category, SCREEN_BRIGHTNESS_DATA, args);
The Android Open Source Project10592532009-03-18 17:39:46 -0700984
Dianne Hackborn627bba72009-03-24 22:32:56 -0700985 // Dump signal strength stats
Dianne Hackborn617f8772009-03-31 15:04:46 -0700986 args = new Object[NUM_SIGNAL_STRENGTH_BINS];
Dianne Hackborn627bba72009-03-24 22:32:56 -0700987 for (int i=0; i<NUM_SIGNAL_STRENGTH_BINS; i++) {
988 args[i] = getPhoneSignalStrengthTime(i, batteryRealtime, which) / 1000;
989 }
Dianne Hackborn617f8772009-03-31 15:04:46 -0700990 dumpLine(pw, 0 /* uid */, category, SIGNAL_STRENGTH_TIME_DATA, args);
Amith Yamasanif37447b2009-10-08 18:28:01 -0700991 dumpLine(pw, 0 /* uid */, category, SIGNAL_SCANNING_TIME_DATA,
992 getPhoneSignalScanningTime(batteryRealtime, which) / 1000);
Dianne Hackborn617f8772009-03-31 15:04:46 -0700993 for (int i=0; i<NUM_SIGNAL_STRENGTH_BINS; i++) {
994 args[i] = getPhoneSignalStrengthCount(i, which);
995 }
996 dumpLine(pw, 0 /* uid */, category, SIGNAL_STRENGTH_COUNT_DATA, args);
Dianne Hackborn627bba72009-03-24 22:32:56 -0700997
998 // Dump network type stats
999 args = new Object[NUM_DATA_CONNECTION_TYPES];
1000 for (int i=0; i<NUM_DATA_CONNECTION_TYPES; i++) {
1001 args[i] = getPhoneDataConnectionTime(i, batteryRealtime, which) / 1000;
1002 }
Dianne Hackborn617f8772009-03-31 15:04:46 -07001003 dumpLine(pw, 0 /* uid */, category, DATA_CONNECTION_TIME_DATA, args);
1004 for (int i=0; i<NUM_DATA_CONNECTION_TYPES; i++) {
1005 args[i] = getPhoneDataConnectionCount(i, which);
1006 }
1007 dumpLine(pw, 0 /* uid */, category, DATA_CONNECTION_COUNT_DATA, args);
Dianne Hackborn627bba72009-03-24 22:32:56 -07001008
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001009 if (which == STATS_SINCE_UNPLUGGED) {
Evan Millare84de8d2009-04-02 22:16:12 -07001010 dumpLine(pw, 0 /* uid */, category, BATTERY_LEVEL_DATA, getDischargeStartLevel(),
Evan Millar633a1742009-04-02 16:36:33 -07001011 getDischargeCurrentLevel());
The Android Open Source Project10592532009-03-18 17:39:46 -07001012 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001013
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001014 if (reqUid < 0) {
1015 Map<String, ? extends BatteryStats.Timer> kernelWakelocks = getKernelWakelockStats();
1016 if (kernelWakelocks.size() > 0) {
1017 for (Map.Entry<String, ? extends BatteryStats.Timer> ent : kernelWakelocks.entrySet()) {
1018 sb.setLength(0);
1019 printWakeLockCheckin(sb, ent.getValue(), batteryRealtime, null, which, "");
1020
1021 dumpLine(pw, 0 /* uid */, category, KERNEL_WAKELOCK_DATA, ent.getKey(),
1022 sb.toString());
1023 }
Evan Millarc64edde2009-04-18 12:26:32 -07001024 }
1025 }
1026
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001027 for (int iu = 0; iu < NU; iu++) {
1028 final int uid = uidStats.keyAt(iu);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001029 if (reqUid >= 0 && uid != reqUid) {
1030 continue;
1031 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001032 Uid u = uidStats.valueAt(iu);
1033 // Dump Network stats per uid, if any
1034 long rx = u.getTcpBytesReceived(which);
1035 long tx = u.getTcpBytesSent(which);
The Android Open Source Project10592532009-03-18 17:39:46 -07001036 long fullWifiLockOnTime = u.getFullWifiLockTime(batteryRealtime, which);
1037 long scanWifiLockOnTime = u.getScanWifiLockTime(batteryRealtime, which);
Dianne Hackborn617f8772009-03-31 15:04:46 -07001038 long wifiTurnedOnTime = u.getWifiTurnedOnTime(batteryRealtime, which);
The Android Open Source Project10592532009-03-18 17:39:46 -07001039
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001040 if (rx > 0 || tx > 0) dumpLine(pw, uid, category, NETWORK_DATA, rx, tx);
The Android Open Source Project10592532009-03-18 17:39:46 -07001041
Dianne Hackborn617f8772009-03-31 15:04:46 -07001042 if (fullWifiLockOnTime != 0 || scanWifiLockOnTime != 0
1043 || wifiTurnedOnTime != 0) {
The Android Open Source Project10592532009-03-18 17:39:46 -07001044 dumpLine(pw, uid, category, WIFI_LOCK_DATA,
Dianne Hackborn617f8772009-03-31 15:04:46 -07001045 fullWifiLockOnTime, scanWifiLockOnTime, wifiTurnedOnTime);
The Android Open Source Project10592532009-03-18 17:39:46 -07001046 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001047
Dianne Hackborn617f8772009-03-31 15:04:46 -07001048 if (u.hasUserActivity()) {
1049 args = new Object[Uid.NUM_USER_ACTIVITY_TYPES];
1050 boolean hasData = false;
1051 for (int i=0; i<Uid.NUM_USER_ACTIVITY_TYPES; i++) {
1052 int val = u.getUserActivityCount(i, which);
1053 args[i] = val;
1054 if (val != 0) hasData = true;
1055 }
1056 if (hasData) {
1057 dumpLine(pw, 0 /* uid */, category, USER_ACTIVITY_DATA, args);
1058 }
1059 }
1060
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001061 Map<String, ? extends BatteryStats.Uid.Wakelock> wakelocks = u.getWakelockStats();
1062 if (wakelocks.size() > 0) {
1063 for (Map.Entry<String, ? extends BatteryStats.Uid.Wakelock> ent
1064 : wakelocks.entrySet()) {
1065 Uid.Wakelock wl = ent.getValue();
1066 String linePrefix = "";
1067 sb.setLength(0);
Evan Millarc64edde2009-04-18 12:26:32 -07001068 linePrefix = printWakeLockCheckin(sb, wl.getWakeTime(WAKE_TYPE_FULL),
1069 batteryRealtime, "f", which, linePrefix);
1070 linePrefix = printWakeLockCheckin(sb, wl.getWakeTime(WAKE_TYPE_PARTIAL),
1071 batteryRealtime, "p", which, linePrefix);
1072 linePrefix = printWakeLockCheckin(sb, wl.getWakeTime(WAKE_TYPE_WINDOW),
1073 batteryRealtime, "w", which, linePrefix);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001074
1075 // Only log if we had at lease one wakelock...
1076 if (sb.length() > 0) {
1077 dumpLine(pw, uid, category, WAKELOCK_DATA, ent.getKey(), sb.toString());
1078 }
1079 }
1080 }
1081
1082 Map<Integer, ? extends BatteryStats.Uid.Sensor> sensors = u.getSensorStats();
1083 if (sensors.size() > 0) {
1084 for (Map.Entry<Integer, ? extends BatteryStats.Uid.Sensor> ent
1085 : sensors.entrySet()) {
1086 Uid.Sensor se = ent.getValue();
1087 int sensorNumber = ent.getKey();
1088 Timer timer = se.getSensorTime();
1089 if (timer != null) {
1090 // Convert from microseconds to milliseconds with rounding
Evan Millarc64edde2009-04-18 12:26:32 -07001091 long totalTime = (timer.getTotalTimeLocked(batteryRealtime, which) + 500) / 1000;
1092 int count = timer.getCountLocked(which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001093 if (totalTime != 0) {
1094 dumpLine(pw, uid, category, SENSOR_DATA, sensorNumber, totalTime, count);
1095 }
1096 }
1097 }
1098 }
1099
1100 Map<String, ? extends BatteryStats.Uid.Proc> processStats = u.getProcessStats();
1101 if (processStats.size() > 0) {
1102 for (Map.Entry<String, ? extends BatteryStats.Uid.Proc> ent
1103 : processStats.entrySet()) {
1104 Uid.Proc ps = ent.getValue();
1105
1106 long userTime = ps.getUserTime(which);
1107 long systemTime = ps.getSystemTime(which);
1108 int starts = ps.getStarts(which);
1109
1110 if (userTime != 0 || systemTime != 0 || starts != 0) {
1111 dumpLine(pw, uid, category, PROCESS_DATA,
1112 ent.getKey(), // proc
1113 userTime * 10, // cpu time in ms
1114 systemTime * 10, // user time in ms
1115 starts); // process starts
1116 }
1117 }
1118 }
1119
1120 Map<String, ? extends BatteryStats.Uid.Pkg> packageStats = u.getPackageStats();
1121 if (packageStats.size() > 0) {
1122 for (Map.Entry<String, ? extends BatteryStats.Uid.Pkg> ent
1123 : packageStats.entrySet()) {
1124
1125 Uid.Pkg ps = ent.getValue();
1126 int wakeups = ps.getWakeups(which);
1127 Map<String, ? extends Uid.Pkg.Serv> serviceStats = ps.getServiceStats();
1128 for (Map.Entry<String, ? extends BatteryStats.Uid.Pkg.Serv> sent
1129 : serviceStats.entrySet()) {
1130 BatteryStats.Uid.Pkg.Serv ss = sent.getValue();
1131 long startTime = ss.getStartTime(batteryUptime, which);
1132 int starts = ss.getStarts(which);
1133 int launches = ss.getLaunches(which);
1134 if (startTime != 0 || starts != 0 || launches != 0) {
1135 dumpLine(pw, uid, category, APK_DATA,
1136 wakeups, // wakeup alarms
1137 ent.getKey(), // Apk
1138 sent.getKey(), // service
1139 startTime / 1000, // time spent started, in ms
1140 starts,
1141 launches);
1142 }
1143 }
1144 }
1145 }
1146 }
1147 }
1148
1149 @SuppressWarnings("unused")
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001150 public final void dumpLocked(PrintWriter pw, String prefix, int which, int reqUid) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001151 final long rawUptime = SystemClock.uptimeMillis() * 1000;
1152 final long rawRealtime = SystemClock.elapsedRealtime() * 1000;
1153 final long batteryUptime = getBatteryUptime(rawUptime);
Eric Shienbroodd4c5f892009-03-24 18:13:20 -07001154 final long batteryRealtime = getBatteryRealtime(rawRealtime);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001155
1156 final long whichBatteryUptime = computeBatteryUptime(rawUptime, which);
1157 final long whichBatteryRealtime = computeBatteryRealtime(rawRealtime, which);
1158 final long totalRealtime = computeRealtime(rawRealtime, which);
1159 final long totalUptime = computeUptime(rawUptime, which);
1160
1161 StringBuilder sb = new StringBuilder(128);
Evan Millar22ac0432009-03-31 11:33:18 -07001162
1163 SparseArray<? extends Uid> uidStats = getUidStats();
1164 final int NU = uidStats.size();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001165
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001166 sb.setLength(0);
1167 sb.append(prefix);
1168 sb.append(" Time on battery: ");
1169 formatTimeMs(sb, whichBatteryRealtime / 1000); sb.append("(");
1170 sb.append(formatRatioLocked(whichBatteryRealtime, totalRealtime));
1171 sb.append(") realtime, ");
1172 formatTimeMs(sb, whichBatteryUptime / 1000);
1173 sb.append("("); sb.append(formatRatioLocked(whichBatteryUptime, totalRealtime));
1174 sb.append(") uptime");
1175 pw.println(sb.toString());
1176 sb.setLength(0);
1177 sb.append(prefix);
1178 sb.append(" Total run time: ");
1179 formatTimeMs(sb, totalRealtime / 1000);
1180 sb.append("realtime, ");
1181 formatTimeMs(sb, totalUptime / 1000);
1182 sb.append("uptime, ");
1183 pw.println(sb.toString());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001184
The Android Open Source Project10592532009-03-18 17:39:46 -07001185 final long screenOnTime = getScreenOnTime(batteryRealtime, which);
1186 final long phoneOnTime = getPhoneOnTime(batteryRealtime, which);
Eric Shienbroodd4c5f892009-03-24 18:13:20 -07001187 final long wifiRunningTime = getWifiRunningTime(batteryRealtime, which);
The Android Open Source Project10592532009-03-18 17:39:46 -07001188 final long wifiOnTime = getWifiOnTime(batteryRealtime, which);
1189 final long bluetoothOnTime = getBluetoothOnTime(batteryRealtime, which);
Dianne Hackborn617f8772009-03-31 15:04:46 -07001190 sb.setLength(0);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001191 sb.append(prefix);
1192 sb.append(" Screen on: "); formatTimeMs(sb, screenOnTime / 1000);
1193 sb.append("("); sb.append(formatRatioLocked(screenOnTime, whichBatteryRealtime));
1194 sb.append("), Input events: "); sb.append(getInputEventCount(which));
1195 sb.append(", Active phone call: "); formatTimeMs(sb, phoneOnTime / 1000);
1196 sb.append("("); sb.append(formatRatioLocked(phoneOnTime, whichBatteryRealtime));
1197 sb.append(")");
1198 pw.println(sb.toString());
1199 sb.setLength(0);
1200 sb.append(prefix);
Dianne Hackborn617f8772009-03-31 15:04:46 -07001201 sb.append(" Screen brightnesses: ");
1202 boolean didOne = false;
1203 for (int i=0; i<NUM_SCREEN_BRIGHTNESS_BINS; i++) {
1204 final long time = getScreenBrightnessTime(i, batteryRealtime, which);
1205 if (time == 0) {
1206 continue;
1207 }
1208 if (didOne) sb.append(", ");
1209 didOne = true;
1210 sb.append(SCREEN_BRIGHTNESS_NAMES[i]);
1211 sb.append(" ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001212 formatTimeMs(sb, time/1000);
Dianne Hackborn617f8772009-03-31 15:04:46 -07001213 sb.append("(");
1214 sb.append(formatRatioLocked(time, screenOnTime));
1215 sb.append(")");
1216 }
1217 if (!didOne) sb.append("No activity");
1218 pw.println(sb.toString());
The Android Open Source Project10592532009-03-18 17:39:46 -07001219
Evan Millar22ac0432009-03-31 11:33:18 -07001220 // Calculate total network and wakelock times across all uids.
1221 long rxTotal = 0;
1222 long txTotal = 0;
1223 long fullWakeLockTimeTotalMicros = 0;
1224 long partialWakeLockTimeTotalMicros = 0;
1225
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001226 if (reqUid < 0) {
1227 Map<String, ? extends BatteryStats.Timer> kernelWakelocks = getKernelWakelockStats();
1228 if (kernelWakelocks.size() > 0) {
1229 for (Map.Entry<String, ? extends BatteryStats.Timer> ent : kernelWakelocks.entrySet()) {
1230
1231 String linePrefix = ": ";
1232 sb.setLength(0);
1233 sb.append(prefix);
1234 sb.append(" Kernel Wake lock ");
1235 sb.append(ent.getKey());
1236 linePrefix = printWakeLock(sb, ent.getValue(), batteryRealtime, null, which,
1237 linePrefix);
1238 if (!linePrefix.equals(": ")) {
1239 sb.append(" realtime");
1240 } else {
1241 sb.append(": (nothing executed)");
1242 }
1243 pw.println(sb.toString());
Evan Millarc64edde2009-04-18 12:26:32 -07001244 }
Evan Millarc64edde2009-04-18 12:26:32 -07001245 }
1246 }
1247
Evan Millar22ac0432009-03-31 11:33:18 -07001248 for (int iu = 0; iu < NU; iu++) {
1249 Uid u = uidStats.valueAt(iu);
1250 rxTotal += u.getTcpBytesReceived(which);
1251 txTotal += u.getTcpBytesSent(which);
1252
1253 Map<String, ? extends BatteryStats.Uid.Wakelock> wakelocks = u.getWakelockStats();
1254 if (wakelocks.size() > 0) {
1255 for (Map.Entry<String, ? extends BatteryStats.Uid.Wakelock> ent
1256 : wakelocks.entrySet()) {
1257 Uid.Wakelock wl = ent.getValue();
1258
1259 Timer fullWakeTimer = wl.getWakeTime(WAKE_TYPE_FULL);
1260 if (fullWakeTimer != null) {
Evan Millarc64edde2009-04-18 12:26:32 -07001261 fullWakeLockTimeTotalMicros += fullWakeTimer.getTotalTimeLocked(
Evan Millar22ac0432009-03-31 11:33:18 -07001262 batteryRealtime, which);
1263 }
1264
1265 Timer partialWakeTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
1266 if (partialWakeTimer != null) {
Evan Millarc64edde2009-04-18 12:26:32 -07001267 partialWakeLockTimeTotalMicros += partialWakeTimer.getTotalTimeLocked(
Evan Millar22ac0432009-03-31 11:33:18 -07001268 batteryRealtime, which);
1269 }
1270 }
1271 }
1272 }
1273
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001274 pw.print(prefix);
1275 pw.print(" Total received: "); pw.print(formatBytesLocked(rxTotal));
1276 pw.print(", Total sent: "); pw.println(formatBytesLocked(txTotal));
1277 sb.setLength(0);
1278 sb.append(prefix);
1279 sb.append(" Total full wakelock time: "); formatTimeMs(sb,
1280 (fullWakeLockTimeTotalMicros + 500) / 1000);
1281 sb.append(", Total partial waklock time: "); formatTimeMs(sb,
1282 (partialWakeLockTimeTotalMicros + 500) / 1000);
1283 pw.println(sb.toString());
Evan Millar22ac0432009-03-31 11:33:18 -07001284
Dianne Hackborn627bba72009-03-24 22:32:56 -07001285 sb.setLength(0);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001286 sb.append(prefix);
Dianne Hackborn617f8772009-03-31 15:04:46 -07001287 sb.append(" Signal levels: ");
1288 didOne = false;
Dianne Hackborn627bba72009-03-24 22:32:56 -07001289 for (int i=0; i<NUM_SIGNAL_STRENGTH_BINS; i++) {
1290 final long time = getPhoneSignalStrengthTime(i, batteryRealtime, which);
1291 if (time == 0) {
1292 continue;
1293 }
1294 if (didOne) sb.append(", ");
1295 didOne = true;
1296 sb.append(SIGNAL_STRENGTH_NAMES[i]);
1297 sb.append(" ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001298 formatTimeMs(sb, time/1000);
Dianne Hackborn627bba72009-03-24 22:32:56 -07001299 sb.append("(");
1300 sb.append(formatRatioLocked(time, whichBatteryRealtime));
Dianne Hackborn617f8772009-03-31 15:04:46 -07001301 sb.append(") ");
1302 sb.append(getPhoneSignalStrengthCount(i, which));
1303 sb.append("x");
Dianne Hackborn627bba72009-03-24 22:32:56 -07001304 }
1305 if (!didOne) sb.append("No activity");
1306 pw.println(sb.toString());
Amith Yamasanif37447b2009-10-08 18:28:01 -07001307
1308 sb.setLength(0);
1309 sb.append(prefix);
1310 sb.append(" Signal scanning time: ");
1311 formatTimeMs(sb, getPhoneSignalScanningTime(batteryRealtime, which) / 1000);
1312 pw.println(sb.toString());
1313
Dianne Hackborn627bba72009-03-24 22:32:56 -07001314 sb.setLength(0);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001315 sb.append(prefix);
Dianne Hackborn617f8772009-03-31 15:04:46 -07001316 sb.append(" Radio types: ");
Dianne Hackborn627bba72009-03-24 22:32:56 -07001317 didOne = false;
1318 for (int i=0; i<NUM_DATA_CONNECTION_TYPES; i++) {
1319 final long time = getPhoneDataConnectionTime(i, batteryRealtime, which);
1320 if (time == 0) {
1321 continue;
1322 }
1323 if (didOne) sb.append(", ");
1324 didOne = true;
1325 sb.append(DATA_CONNECTION_NAMES[i]);
1326 sb.append(" ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001327 formatTimeMs(sb, time/1000);
Dianne Hackborn627bba72009-03-24 22:32:56 -07001328 sb.append("(");
1329 sb.append(formatRatioLocked(time, whichBatteryRealtime));
Dianne Hackborn617f8772009-03-31 15:04:46 -07001330 sb.append(") ");
1331 sb.append(getPhoneDataConnectionCount(i, which));
1332 sb.append("x");
Dianne Hackborn627bba72009-03-24 22:32:56 -07001333 }
1334 if (!didOne) sb.append("No activity");
1335 pw.println(sb.toString());
Amith Yamasani3f7e35c2009-07-13 16:02:45 -07001336
1337 sb.setLength(0);
1338 sb.append(prefix);
1339 sb.append(" Radio data uptime when unplugged: ");
1340 sb.append(getRadioDataUptime() / 1000);
1341 sb.append(" ms");
1342 pw.println(sb.toString());
1343
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001344 sb.setLength(0);
1345 sb.append(prefix);
1346 sb.append(" Wifi on: "); formatTimeMs(sb, wifiOnTime / 1000);
1347 sb.append("("); sb.append(formatRatioLocked(wifiOnTime, whichBatteryRealtime));
1348 sb.append("), Wifi running: "); formatTimeMs(sb, wifiRunningTime / 1000);
1349 sb.append("("); sb.append(formatRatioLocked(wifiRunningTime, whichBatteryRealtime));
1350 sb.append("), Bluetooth on: "); formatTimeMs(sb, bluetoothOnTime / 1000);
1351 sb.append("("); sb.append(formatRatioLocked(bluetoothOnTime, whichBatteryRealtime));
1352 sb.append(")");
1353 pw.println(sb.toString());
Dianne Hackborn617f8772009-03-31 15:04:46 -07001354
The Android Open Source Project10592532009-03-18 17:39:46 -07001355 pw.println(" ");
1356
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001357 if (which == STATS_SINCE_UNPLUGGED) {
The Android Open Source Project10592532009-03-18 17:39:46 -07001358 if (getIsOnBattery()) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001359 pw.print(prefix); pw.println(" Device is currently unplugged");
1360 pw.print(prefix); pw.print(" Discharge cycle start level: ");
1361 pw.println(getDischargeStartLevel());
1362 pw.print(prefix); pw.print(" Discharge cycle current level: ");
1363 pw.println(getDischargeCurrentLevel());
The Android Open Source Project10592532009-03-18 17:39:46 -07001364 } else {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001365 pw.print(prefix); pw.println(" Device is currently plugged into power");
1366 pw.print(prefix); pw.print(" Last discharge cycle start level: ");
1367 pw.println(getDischargeStartLevel());
1368 pw.print(prefix); pw.print(" Last discharge cycle end level: ");
1369 pw.println(getDischargeCurrentLevel());
The Android Open Source Project10592532009-03-18 17:39:46 -07001370 }
Dianne Hackborn617f8772009-03-31 15:04:46 -07001371 pw.println(" ");
The Android Open Source Project10592532009-03-18 17:39:46 -07001372 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001373
Evan Millar22ac0432009-03-31 11:33:18 -07001374
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001375 for (int iu=0; iu<NU; iu++) {
1376 final int uid = uidStats.keyAt(iu);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001377 if (reqUid >= 0 && uid != reqUid) {
1378 continue;
1379 }
1380
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001381 Uid u = uidStats.valueAt(iu);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001382
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001383 pw.println(prefix + " #" + uid + ":");
1384 boolean uidActivity = false;
1385
1386 long tcpReceived = u.getTcpBytesReceived(which);
1387 long tcpSent = u.getTcpBytesSent(which);
The Android Open Source Project10592532009-03-18 17:39:46 -07001388 long fullWifiLockOnTime = u.getFullWifiLockTime(batteryRealtime, which);
1389 long scanWifiLockOnTime = u.getScanWifiLockTime(batteryRealtime, which);
Dianne Hackborn617f8772009-03-31 15:04:46 -07001390 long wifiTurnedOnTime = u.getWifiTurnedOnTime(batteryRealtime, which);
The Android Open Source Project10592532009-03-18 17:39:46 -07001391
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001392 if (tcpReceived != 0 || tcpSent != 0) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001393 pw.print(prefix); pw.print(" Network: ");
1394 pw.print(formatBytesLocked(tcpReceived)); pw.print(" received, ");
1395 pw.print(formatBytesLocked(tcpSent)); pw.println(" sent");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001396 }
Dianne Hackborn617f8772009-03-31 15:04:46 -07001397
1398 if (u.hasUserActivity()) {
1399 boolean hasData = false;
1400 for (int i=0; i<NUM_SCREEN_BRIGHTNESS_BINS; i++) {
1401 int val = u.getUserActivityCount(i, which);
1402 if (val != 0) {
1403 if (!hasData) {
1404 sb.setLength(0);
1405 sb.append(" User activity: ");
1406 hasData = true;
1407 } else {
1408 sb.append(", ");
1409 }
1410 sb.append(val);
1411 sb.append(" ");
1412 sb.append(Uid.USER_ACTIVITY_TYPES[i]);
1413 }
1414 }
1415 if (hasData) {
1416 pw.println(sb.toString());
1417 }
1418 }
1419
1420 if (fullWifiLockOnTime != 0 || scanWifiLockOnTime != 0
1421 || wifiTurnedOnTime != 0) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001422 sb.setLength(0);
1423 sb.append(prefix); sb.append(" Turned Wifi On: ");
1424 formatTimeMs(sb, wifiTurnedOnTime / 1000);
1425 sb.append("("); sb.append(formatRatioLocked(wifiTurnedOnTime,
1426 whichBatteryRealtime)); sb.append(")\n");
1427 sb.append(prefix); sb.append(" Full Wifi Lock: ");
1428 formatTimeMs(sb, fullWifiLockOnTime / 1000);
1429 sb.append("("); sb.append(formatRatioLocked(fullWifiLockOnTime,
1430 whichBatteryRealtime)); sb.append(")\n");
1431 sb.append(prefix); sb.append(" Scan Wifi Lock: ");
1432 formatTimeMs(sb, scanWifiLockOnTime / 1000);
1433 sb.append("("); sb.append(formatRatioLocked(scanWifiLockOnTime,
1434 whichBatteryRealtime)); sb.append(")");
1435 pw.println(sb.toString());
The Android Open Source Project10592532009-03-18 17:39:46 -07001436 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001437
1438 Map<String, ? extends BatteryStats.Uid.Wakelock> wakelocks = u.getWakelockStats();
1439 if (wakelocks.size() > 0) {
1440 for (Map.Entry<String, ? extends BatteryStats.Uid.Wakelock> ent
1441 : wakelocks.entrySet()) {
1442 Uid.Wakelock wl = ent.getValue();
1443 String linePrefix = ": ";
1444 sb.setLength(0);
1445 sb.append(prefix);
1446 sb.append(" Wake lock ");
1447 sb.append(ent.getKey());
1448 linePrefix = printWakeLock(sb, wl.getWakeTime(WAKE_TYPE_FULL), batteryRealtime,
1449 "full", which, linePrefix);
1450 linePrefix = printWakeLock(sb, wl.getWakeTime(WAKE_TYPE_PARTIAL), batteryRealtime,
1451 "partial", which, linePrefix);
1452 linePrefix = printWakeLock(sb, wl.getWakeTime(WAKE_TYPE_WINDOW), batteryRealtime,
1453 "window", which, linePrefix);
1454 if (!linePrefix.equals(": ")) {
1455 sb.append(" realtime");
1456 } else {
1457 sb.append(": (nothing executed)");
1458 }
1459 pw.println(sb.toString());
1460 uidActivity = true;
1461 }
1462 }
1463
1464 Map<Integer, ? extends BatteryStats.Uid.Sensor> sensors = u.getSensorStats();
1465 if (sensors.size() > 0) {
1466 for (Map.Entry<Integer, ? extends BatteryStats.Uid.Sensor> ent
1467 : sensors.entrySet()) {
1468 Uid.Sensor se = ent.getValue();
1469 int sensorNumber = ent.getKey();
1470 sb.setLength(0);
1471 sb.append(prefix);
1472 sb.append(" Sensor ");
1473 int handle = se.getHandle();
1474 if (handle == Uid.Sensor.GPS) {
1475 sb.append("GPS");
1476 } else {
1477 sb.append(handle);
1478 }
1479 sb.append(": ");
1480
1481 Timer timer = se.getSensorTime();
1482 if (timer != null) {
1483 // Convert from microseconds to milliseconds with rounding
Evan Millarc64edde2009-04-18 12:26:32 -07001484 long totalTime = (timer.getTotalTimeLocked(
1485 batteryRealtime, which) + 500) / 1000;
1486 int count = timer.getCountLocked(which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001487 //timer.logState();
1488 if (totalTime != 0) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001489 formatTimeMs(sb, totalTime);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001490 sb.append("realtime (");
1491 sb.append(count);
1492 sb.append(" times)");
1493 } else {
1494 sb.append("(not used)");
1495 }
1496 } else {
1497 sb.append("(not used)");
1498 }
1499
1500 pw.println(sb.toString());
1501 uidActivity = true;
1502 }
1503 }
1504
1505 Map<String, ? extends BatteryStats.Uid.Proc> processStats = u.getProcessStats();
1506 if (processStats.size() > 0) {
1507 for (Map.Entry<String, ? extends BatteryStats.Uid.Proc> ent
1508 : processStats.entrySet()) {
1509 Uid.Proc ps = ent.getValue();
1510 long userTime;
1511 long systemTime;
1512 int starts;
1513
1514 userTime = ps.getUserTime(which);
1515 systemTime = ps.getSystemTime(which);
1516 starts = ps.getStarts(which);
1517
1518 if (userTime != 0 || systemTime != 0 || starts != 0) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001519 sb.setLength(0);
1520 sb.append(prefix); sb.append(" Proc ");
1521 sb.append(ent.getKey()); sb.append(":\n");
1522 sb.append(prefix); sb.append(" CPU: ");
1523 formatTime(sb, userTime); sb.append("usr + ");
1524 formatTime(sb, systemTime); sb.append("krn\n");
1525 sb.append(prefix); sb.append(" "); sb.append(starts);
1526 sb.append(" proc starts");
1527 pw.println(sb.toString());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001528 uidActivity = true;
1529 }
1530 }
1531 }
1532
1533 Map<String, ? extends BatteryStats.Uid.Pkg> packageStats = u.getPackageStats();
1534 if (packageStats.size() > 0) {
1535 for (Map.Entry<String, ? extends BatteryStats.Uid.Pkg> ent
1536 : packageStats.entrySet()) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001537 pw.print(prefix); pw.print(" Apk "); pw.print(ent.getKey()); pw.println(":");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001538 boolean apkActivity = false;
1539 Uid.Pkg ps = ent.getValue();
1540 int wakeups = ps.getWakeups(which);
1541 if (wakeups != 0) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001542 pw.print(prefix); pw.print(" ");
1543 pw.print(wakeups); pw.println(" wakeup alarms");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001544 apkActivity = true;
1545 }
1546 Map<String, ? extends Uid.Pkg.Serv> serviceStats = ps.getServiceStats();
1547 if (serviceStats.size() > 0) {
1548 for (Map.Entry<String, ? extends BatteryStats.Uid.Pkg.Serv> sent
1549 : serviceStats.entrySet()) {
1550 BatteryStats.Uid.Pkg.Serv ss = sent.getValue();
1551 long startTime = ss.getStartTime(batteryUptime, which);
1552 int starts = ss.getStarts(which);
1553 int launches = ss.getLaunches(which);
1554 if (startTime != 0 || starts != 0 || launches != 0) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001555 sb.setLength(0);
1556 sb.append(prefix); sb.append(" Service ");
1557 sb.append(sent.getKey()); sb.append(":\n");
1558 sb.append(prefix); sb.append(" Created for: ");
1559 formatTimeMs(sb, startTime / 1000);
1560 sb.append(" uptime\n");
1561 sb.append(prefix); sb.append(" Starts: ");
1562 sb.append(starts);
1563 sb.append(", launches: "); sb.append(launches);
1564 pw.println(sb.toString());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001565 apkActivity = true;
1566 }
1567 }
1568 }
1569 if (!apkActivity) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001570 pw.print(prefix); pw.println(" (nothing executed)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001571 }
1572 uidActivity = true;
1573 }
1574 }
1575 if (!uidActivity) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001576 pw.print(prefix); pw.println(" (nothing executed)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001577 }
1578 }
1579 }
1580
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001581 void printBitDescriptions(PrintWriter pw, int oldval, int newval, BitDescription[] descriptions) {
1582 int diff = oldval ^ newval;
1583 if (diff == 0) return;
1584 for (int i=0; i<descriptions.length; i++) {
1585 BitDescription bd = descriptions[i];
1586 if ((diff&bd.mask) != 0) {
1587 if (bd.shift < 0) {
1588 pw.print((newval&bd.mask) != 0 ? " +" : " -");
1589 pw.print(bd.name);
1590 } else {
1591 pw.print(" ");
1592 pw.print(bd.name);
1593 pw.print("=");
1594 int val = (newval&bd.mask)>>bd.shift;
1595 if (bd.values != null && val >= 0 && val < bd.values.length) {
1596 pw.print(bd.values[val]);
1597 } else {
1598 pw.print(val);
1599 }
1600 }
1601 }
1602 }
1603 }
1604
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001605 /**
1606 * Dumps a human-readable summary of the battery statistics to the given PrintWriter.
1607 *
1608 * @param pw a Printer to receive the dump output.
1609 */
1610 @SuppressWarnings("unused")
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001611 public void dumpLocked(PrintWriter pw) {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001612 HistoryItem rec = getHistory();
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001613 if (rec != null) {
1614 pw.println("Battery History:");
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001615 int oldState = 0;
1616 int oldStatus = -1;
1617 int oldHealth = -1;
1618 int oldPlug = -1;
1619 int oldTemp = -1;
1620 int oldVolt = -1;
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001621 while (rec != null) {
1622 pw.print(" ");
1623 pw.print(rec.time);
1624 pw.print(" ");
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001625 if (rec.cmd == HistoryItem.CMD_START) {
1626 pw.println(" START");
1627 } else {
1628 if (rec.batteryLevel < 10) pw.print("00");
1629 else if (rec.batteryLevel < 100) pw.print("0");
1630 pw.print(rec.batteryLevel);
1631 pw.print(" ");
1632 if (rec.states < 0x10) pw.print("0000000");
1633 else if (rec.states < 0x100) pw.print("000000");
1634 else if (rec.states < 0x1000) pw.print("00000");
1635 else if (rec.states < 0x10000) pw.print("0000");
1636 else if (rec.states < 0x100000) pw.print("000");
1637 else if (rec.states < 0x1000000) pw.print("00");
1638 else if (rec.states < 0x10000000) pw.print("0");
1639 pw.print(Integer.toHexString(rec.states));
1640 if (oldStatus != rec.batteryStatus) {
1641 oldStatus = rec.batteryStatus;
1642 pw.print(" status=");
1643 switch (oldStatus) {
1644 case BatteryManager.BATTERY_STATUS_UNKNOWN:
1645 pw.print("unknown");
1646 break;
1647 case BatteryManager.BATTERY_STATUS_CHARGING:
1648 pw.print("charging");
1649 break;
1650 case BatteryManager.BATTERY_STATUS_DISCHARGING:
1651 pw.print("discharging");
1652 break;
1653 case BatteryManager.BATTERY_STATUS_NOT_CHARGING:
1654 pw.print("not-charging");
1655 break;
1656 case BatteryManager.BATTERY_STATUS_FULL:
1657 pw.print("full");
1658 break;
1659 default:
1660 pw.print(oldStatus);
1661 break;
1662 }
1663 }
1664 if (oldHealth != rec.batteryHealth) {
1665 oldHealth = rec.batteryHealth;
1666 pw.print(" health=");
1667 switch (oldHealth) {
1668 case BatteryManager.BATTERY_HEALTH_UNKNOWN:
1669 pw.print("unknown");
1670 break;
1671 case BatteryManager.BATTERY_HEALTH_GOOD:
1672 pw.print("good");
1673 break;
1674 case BatteryManager.BATTERY_HEALTH_OVERHEAT:
1675 pw.print("overheat");
1676 break;
1677 case BatteryManager.BATTERY_HEALTH_DEAD:
1678 pw.print("dead");
1679 break;
1680 case BatteryManager.BATTERY_HEALTH_OVER_VOLTAGE:
1681 pw.print("over-voltage");
1682 break;
1683 case BatteryManager.BATTERY_HEALTH_UNSPECIFIED_FAILURE:
1684 pw.print("failure");
1685 break;
1686 default:
1687 pw.print(oldHealth);
1688 break;
1689 }
1690 }
1691 if (oldPlug != rec.batteryPlugType) {
1692 oldPlug = rec.batteryPlugType;
1693 pw.print(" plug=");
1694 switch (oldPlug) {
1695 case 0:
1696 pw.print("none");
1697 break;
1698 case BatteryManager.BATTERY_PLUGGED_AC:
1699 pw.print("ac");
1700 break;
1701 case BatteryManager.BATTERY_PLUGGED_USB:
1702 pw.print("usb");
1703 break;
1704 default:
1705 pw.print(oldPlug);
1706 break;
1707 }
1708 }
1709 if (oldTemp != rec.batteryTemperature) {
1710 oldTemp = rec.batteryTemperature;
1711 pw.print(" temp=");
1712 pw.print(oldTemp);
1713 }
1714 if (oldVolt != rec.batteryVoltage) {
1715 oldVolt = rec.batteryVoltage;
1716 pw.print(" volt=");
1717 pw.print(oldVolt);
1718 }
1719 printBitDescriptions(pw, oldState, rec.states,
1720 HISTORY_STATE_DESCRIPTIONS);
1721 pw.println();
1722 }
1723 oldState = rec.states;
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001724 rec = rec.next;
1725 }
1726 }
1727
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001728 pw.println("Statistics since last charge:");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001729 pw.println(" System starts: " + getStartCount()
1730 + ", currently on battery: " + getIsOnBattery());
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001731 dumpLocked(pw, "", STATS_SINCE_CHARGED, -1);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001732 pw.println("");
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001733 pw.println("Statistics since last unplugged:");
1734 dumpLocked(pw, "", STATS_SINCE_UNPLUGGED, -1);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001735 }
1736
1737 @SuppressWarnings("unused")
1738 public void dumpCheckinLocked(PrintWriter pw, String[] args) {
1739 boolean isUnpluggedOnly = false;
1740
1741 for (String arg : args) {
1742 if ("-u".equals(arg)) {
1743 if (LOCAL_LOGV) Log.v("BatteryStats", "Dumping unplugged data");
1744 isUnpluggedOnly = true;
1745 }
1746 }
1747
1748 if (isUnpluggedOnly) {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001749 dumpCheckinLocked(pw, STATS_SINCE_UNPLUGGED, -1);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001750 }
1751 else {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001752 dumpCheckinLocked(pw, STATS_SINCE_CHARGED, -1);
1753 dumpCheckinLocked(pw, STATS_SINCE_UNPLUGGED, -1);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001754 }
1755 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001756}