blob: 4879be6637927f3f56376ae711ba9ebaa011db51 [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;
Dianne Hackborne4a59512010-12-07 11:08:07 -080020import java.util.ArrayList;
Dianne Hackborn81038902012-11-26 17:04:09 -080021import java.util.Collections;
22import java.util.Comparator;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023import java.util.Formatter;
Dianne Hackborne4a59512010-12-07 11:08:07 -080024import java.util.List;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025import java.util.Map;
26
Dianne Hackborna7c837f2014-01-15 16:20:44 -080027import android.content.Context;
Dianne Hackborne4a59512010-12-07 11:08:07 -080028import android.content.pm.ApplicationInfo;
Wink Saville52840902011-02-18 12:40:47 -080029import android.telephony.SignalStrength;
Dianne Hackborn5f4a5f92014-01-24 16:59:34 -080030import android.text.format.DateFormat;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031import android.util.Printer;
32import android.util.SparseArray;
Dianne Hackborn1ebccf52010-08-15 13:04:34 -070033import android.util.TimeUtils;
Dianne Hackborna7c837f2014-01-15 16:20:44 -080034import com.android.internal.os.BatterySipper;
35import com.android.internal.os.BatteryStatsHelper;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036
37/**
38 * A class providing access to battery usage statistics, including information on
39 * wakelocks, processes, packages, and services. All times are represented in microseconds
40 * except where indicated otherwise.
41 * @hide
42 */
43public abstract class BatteryStats implements Parcelable {
44
45 private static final boolean LOCAL_LOGV = false;
Dianne Hackborn91268cf2013-06-13 19:06:50 -070046
47 /** @hide */
48 public static final String SERVICE_NAME = "batterystats";
49
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080050 /**
51 * A constant indicating a partial wake lock timer.
52 */
53 public static final int WAKE_TYPE_PARTIAL = 0;
54
55 /**
56 * A constant indicating a full wake lock timer.
57 */
58 public static final int WAKE_TYPE_FULL = 1;
59
60 /**
61 * A constant indicating a window wake lock timer.
62 */
63 public static final int WAKE_TYPE_WINDOW = 2;
64
65 /**
66 * A constant indicating a sensor timer.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080067 */
68 public static final int SENSOR = 3;
The Android Open Source Project10592532009-03-18 17:39:46 -070069
70 /**
Dianne Hackborn58e0eef2010-09-16 01:22:10 -070071 * A constant indicating a a wifi running timer
Dianne Hackborn617f8772009-03-31 15:04:46 -070072 */
Dianne Hackborn58e0eef2010-09-16 01:22:10 -070073 public static final int WIFI_RUNNING = 4;
Dianne Hackborn617f8772009-03-31 15:04:46 -070074
75 /**
The Android Open Source Project10592532009-03-18 17:39:46 -070076 * A constant indicating a full wifi lock timer
The Android Open Source Project10592532009-03-18 17:39:46 -070077 */
Dianne Hackborn617f8772009-03-31 15:04:46 -070078 public static final int FULL_WIFI_LOCK = 5;
The Android Open Source Project10592532009-03-18 17:39:46 -070079
80 /**
Nick Pelly6ccaa542012-06-15 15:22:47 -070081 * A constant indicating a wifi scan
The Android Open Source Project10592532009-03-18 17:39:46 -070082 */
Nick Pelly6ccaa542012-06-15 15:22:47 -070083 public static final int WIFI_SCAN = 6;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084
Robert Greenwalt5347bd42009-05-13 15:10:16 -070085 /**
86 * A constant indicating a wifi multicast timer
Robert Greenwalt5347bd42009-05-13 15:10:16 -070087 */
88 public static final int WIFI_MULTICAST_ENABLED = 7;
89
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080090 /**
Amith Yamasani244fa5c2009-05-22 14:36:07 -070091 * A constant indicating an audio turn on timer
Amith Yamasani244fa5c2009-05-22 14:36:07 -070092 */
93 public static final int AUDIO_TURNED_ON = 7;
94
95 /**
96 * A constant indicating a video turn on timer
Amith Yamasani244fa5c2009-05-22 14:36:07 -070097 */
98 public static final int VIDEO_TURNED_ON = 8;
99
100 /**
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800101 * A constant indicating a vibrator on timer
102 */
103 public static final int VIBRATOR_ON = 9;
104
105 /**
Jeff Sharkey3e013e82013-04-25 14:48:19 -0700106 * A constant indicating a foreground activity timer
107 */
108 public static final int FOREGROUND_ACTIVITY = 10;
109
110 /**
Robert Greenwalta029ea12013-09-25 16:38:12 -0700111 * A constant indicating a wifi batched scan is active
112 */
113 public static final int WIFI_BATCHED_SCAN = 11;
114
115 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800116 * Include all of the data in the stats, including previously saved data.
117 */
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700118 public static final int STATS_SINCE_CHARGED = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800119
120 /**
121 * Include only the last run in the stats.
122 */
123 public static final int STATS_LAST = 1;
124
125 /**
126 * Include only the current run in the stats.
127 */
128 public static final int STATS_CURRENT = 2;
129
130 /**
131 * Include only the run since the last time the device was unplugged in the stats.
132 */
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700133 public static final int STATS_SINCE_UNPLUGGED = 3;
Evan Millare84de8d2009-04-02 22:16:12 -0700134
135 // NOTE: Update this list if you add/change any stats above.
136 // These characters are supposed to represent "total", "last", "current",
Dianne Hackborn3bee5af82010-07-23 00:22:04 -0700137 // and "unplugged". They were shortened for efficiency sake.
Evan Millare84de8d2009-04-02 22:16:12 -0700138 private static final String[] STAT_NAMES = { "t", "l", "c", "u" };
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800139
140 /**
141 * Bump the version on this if the checkin format changes.
142 */
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700143 private static final int BATTERY_STATS_CHECKIN_VERSION = 7;
Evan Millar22ac0432009-03-31 11:33:18 -0700144
145 private static final long BYTES_PER_KB = 1024;
146 private static final long BYTES_PER_MB = 1048576; // 1024^2
147 private static final long BYTES_PER_GB = 1073741824; //1024^3
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800148
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800149
Dianne Hackborne4a59512010-12-07 11:08:07 -0800150 private static final String UID_DATA = "uid";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800151 private static final String APK_DATA = "apk";
Evan Millare84de8d2009-04-02 22:16:12 -0700152 private static final String PROCESS_DATA = "pr";
153 private static final String SENSOR_DATA = "sr";
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800154 private static final String VIBRATOR_DATA = "vib";
Jeff Sharkey3e013e82013-04-25 14:48:19 -0700155 private static final String FOREGROUND_DATA = "fg";
Evan Millare84de8d2009-04-02 22:16:12 -0700156 private static final String WAKELOCK_DATA = "wl";
Evan Millarc64edde2009-04-18 12:26:32 -0700157 private static final String KERNEL_WAKELOCK_DATA = "kwl";
Evan Millare84de8d2009-04-02 22:16:12 -0700158 private static final String NETWORK_DATA = "nt";
159 private static final String USER_ACTIVITY_DATA = "ua";
160 private static final String BATTERY_DATA = "bt";
Dianne Hackbornc1b40e32011-01-05 18:27:40 -0800161 private static final String BATTERY_DISCHARGE_DATA = "dc";
Evan Millare84de8d2009-04-02 22:16:12 -0700162 private static final String BATTERY_LEVEL_DATA = "lv";
Nick Pelly6ccaa542012-06-15 15:22:47 -0700163 private static final String WIFI_DATA = "wfl";
Evan Millare84de8d2009-04-02 22:16:12 -0700164 private static final String MISC_DATA = "m";
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800165 private static final String GLOBAL_NETWORK_DATA = "gn";
Dianne Hackborn099bc622014-01-22 13:39:16 -0800166 private static final String HISTORY_STRING_POOL = "hsp";
Dianne Hackborn8a0de582013-08-07 15:22:07 -0700167 private static final String HISTORY_DATA = "h";
Evan Millare84de8d2009-04-02 22:16:12 -0700168 private static final String SCREEN_BRIGHTNESS_DATA = "br";
169 private static final String SIGNAL_STRENGTH_TIME_DATA = "sgt";
Amith Yamasanif37447b2009-10-08 18:28:01 -0700170 private static final String SIGNAL_SCANNING_TIME_DATA = "sst";
Evan Millare84de8d2009-04-02 22:16:12 -0700171 private static final String SIGNAL_STRENGTH_COUNT_DATA = "sgc";
172 private static final String DATA_CONNECTION_TIME_DATA = "dct";
173 private static final String DATA_CONNECTION_COUNT_DATA = "dcc";
Dianne Hackborna7c837f2014-01-15 16:20:44 -0800174 private static final String POWER_USE_SUMMARY_DATA = "pws";
175 private static final String POWER_USE_ITEM_DATA = "pwi";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800176
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700177 private final StringBuilder mFormatBuilder = new StringBuilder(32);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800178 private final Formatter mFormatter = new Formatter(mFormatBuilder);
179
180 /**
Dianne Hackborn617f8772009-03-31 15:04:46 -0700181 * State for keeping track of counting information.
182 */
183 public static abstract class Counter {
184
185 /**
186 * Returns the count associated with this Counter for the
187 * selected type of statistics.
188 *
189 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT
190 */
Evan Millarc64edde2009-04-18 12:26:32 -0700191 public abstract int getCountLocked(int which);
Dianne Hackborn617f8772009-03-31 15:04:46 -0700192
193 /**
194 * Temporary for debugging.
195 */
196 public abstract void logState(Printer pw, String prefix);
197 }
198
199 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800200 * State for keeping track of timing information.
201 */
202 public static abstract class Timer {
203
204 /**
205 * Returns the count associated with this Timer for the
206 * selected type of statistics.
207 *
208 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT
209 */
Evan Millarc64edde2009-04-18 12:26:32 -0700210 public abstract int getCountLocked(int which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800211
212 /**
213 * Returns the total time in microseconds associated with this Timer for the
214 * selected type of statistics.
215 *
216 * @param batteryRealtime system realtime on battery in microseconds
217 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT
218 * @return a time in microseconds
219 */
Evan Millarc64edde2009-04-18 12:26:32 -0700220 public abstract long getTotalTimeLocked(long batteryRealtime, int which);
Amith Yamasani244fa5c2009-05-22 14:36:07 -0700221
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800222 /**
223 * Temporary for debugging.
224 */
Dianne Hackborn627bba72009-03-24 22:32:56 -0700225 public abstract void logState(Printer pw, String prefix);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800226 }
227
228 /**
229 * The statistics associated with a particular uid.
230 */
231 public static abstract class Uid {
232
233 /**
234 * Returns a mapping containing wakelock statistics.
235 *
236 * @return a Map from Strings to Uid.Wakelock objects.
237 */
238 public abstract Map<String, ? extends Wakelock> getWakelockStats();
239
240 /**
241 * The statistics associated with a particular wake lock.
242 */
243 public static abstract class Wakelock {
244 public abstract Timer getWakeTime(int type);
245 }
246
247 /**
248 * Returns a mapping containing sensor statistics.
249 *
250 * @return a Map from Integer sensor ids to Uid.Sensor objects.
251 */
252 public abstract Map<Integer, ? extends Sensor> getSensorStats();
253
254 /**
Dianne Hackbornb5e31652010-09-07 12:13:55 -0700255 * Returns a mapping containing active process data.
256 */
257 public abstract SparseArray<? extends Pid> getPidStats();
258
259 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800260 * Returns a mapping containing process statistics.
261 *
262 * @return a Map from Strings to Uid.Proc objects.
263 */
264 public abstract Map<String, ? extends Proc> getProcessStats();
265
266 /**
267 * Returns a mapping containing package statistics.
268 *
269 * @return a Map from Strings to Uid.Pkg objects.
270 */
271 public abstract Map<String, ? extends Pkg> getPackageStats();
272
273 /**
274 * {@hide}
275 */
276 public abstract int getUid();
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700277
Dianne Hackborn58e0eef2010-09-16 01:22:10 -0700278 public abstract void noteWifiRunningLocked();
279 public abstract void noteWifiStoppedLocked();
The Android Open Source Project10592532009-03-18 17:39:46 -0700280 public abstract void noteFullWifiLockAcquiredLocked();
281 public abstract void noteFullWifiLockReleasedLocked();
Nick Pelly6ccaa542012-06-15 15:22:47 -0700282 public abstract void noteWifiScanStartedLocked();
283 public abstract void noteWifiScanStoppedLocked();
Robert Greenwalta029ea12013-09-25 16:38:12 -0700284 public abstract void noteWifiBatchedScanStartedLocked(int csph);
285 public abstract void noteWifiBatchedScanStoppedLocked();
Robert Greenwalt5347bd42009-05-13 15:10:16 -0700286 public abstract void noteWifiMulticastEnabledLocked();
287 public abstract void noteWifiMulticastDisabledLocked();
Amith Yamasani244fa5c2009-05-22 14:36:07 -0700288 public abstract void noteAudioTurnedOnLocked();
289 public abstract void noteAudioTurnedOffLocked();
290 public abstract void noteVideoTurnedOnLocked();
291 public abstract void noteVideoTurnedOffLocked();
Jeff Sharkey3e013e82013-04-25 14:48:19 -0700292 public abstract void noteActivityResumedLocked();
293 public abstract void noteActivityPausedLocked();
Dianne Hackborn58e0eef2010-09-16 01:22:10 -0700294 public abstract long getWifiRunningTime(long batteryRealtime, int which);
The Android Open Source Project10592532009-03-18 17:39:46 -0700295 public abstract long getFullWifiLockTime(long batteryRealtime, int which);
Nick Pelly6ccaa542012-06-15 15:22:47 -0700296 public abstract long getWifiScanTime(long batteryRealtime, int which);
Robert Greenwalta029ea12013-09-25 16:38:12 -0700297 public abstract long getWifiBatchedScanTime(int csphBin, long batteryRealtime, int which);
Robert Greenwalt5347bd42009-05-13 15:10:16 -0700298 public abstract long getWifiMulticastTime(long batteryRealtime,
299 int which);
Amith Yamasani244fa5c2009-05-22 14:36:07 -0700300 public abstract long getAudioTurnedOnTime(long batteryRealtime, int which);
301 public abstract long getVideoTurnedOnTime(long batteryRealtime, int which);
Jeff Sharkey3e013e82013-04-25 14:48:19 -0700302 public abstract Timer getForegroundActivityTimer();
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800303 public abstract Timer getVibratorOnTimer();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800304
Robert Greenwalta029ea12013-09-25 16:38:12 -0700305 public static final int NUM_WIFI_BATCHED_SCAN_BINS = 5;
306
Dianne Hackborn617f8772009-03-31 15:04:46 -0700307 /**
Jeff Browndf693de2012-07-27 12:03:38 -0700308 * Note that these must match the constants in android.os.PowerManager.
309 * Also, if the user activity types change, the BatteryStatsImpl.VERSION must
310 * also be bumped.
Dianne Hackborn617f8772009-03-31 15:04:46 -0700311 */
312 static final String[] USER_ACTIVITY_TYPES = {
Jeff Browndf693de2012-07-27 12:03:38 -0700313 "other", "button", "touch"
Dianne Hackborn617f8772009-03-31 15:04:46 -0700314 };
315
Jeff Browndf693de2012-07-27 12:03:38 -0700316 public static final int NUM_USER_ACTIVITY_TYPES = 3;
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700317
Dianne Hackborn617f8772009-03-31 15:04:46 -0700318 public abstract void noteUserActivityLocked(int type);
319 public abstract boolean hasUserActivity();
320 public abstract int getUserActivityCount(int type, int which);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700321
322 public abstract boolean hasNetworkActivity();
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800323 public abstract long getNetworkActivityBytes(int type, int which);
324 public abstract long getNetworkActivityPackets(int type, int which);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700325
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800326 public static abstract class Sensor {
Mathias Agopian7f84c062013-02-04 19:22:47 -0800327 /*
328 * FIXME: it's not correct to use this magic value because it
329 * could clash with a sensor handle (which are defined by
330 * the sensor HAL, and therefore out of our control
331 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800332 // Magic sensor number for the GPS.
333 public static final int GPS = -10000;
334
335 public abstract int getHandle();
336
337 public abstract Timer getSensorTime();
338 }
339
Dianne Hackbornb5e31652010-09-07 12:13:55 -0700340 public class Pid {
341 public long mWakeSum;
342 public long mWakeStart;
343 }
344
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800345 /**
346 * The statistics associated with a particular process.
347 */
348 public static abstract class Proc {
349
Dianne Hackborn287952c2010-09-22 22:34:31 -0700350 public static class ExcessivePower {
351 public static final int TYPE_WAKE = 1;
352 public static final int TYPE_CPU = 2;
353
354 public int type;
Dianne Hackborn9adb9c32010-08-13 14:09:56 -0700355 public long overTime;
356 public long usedTime;
357 }
358
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800359 /**
Dianne Hackborn099bc622014-01-22 13:39:16 -0800360 * Returns true if this process is still active in the battery stats.
361 */
362 public abstract boolean isActive();
363
364 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800365 * Returns the total time (in 1/100 sec) spent executing in user code.
366 *
367 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
368 */
369 public abstract long getUserTime(int which);
370
371 /**
372 * Returns the total time (in 1/100 sec) spent executing in system code.
373 *
374 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
375 */
376 public abstract long getSystemTime(int which);
377
378 /**
379 * Returns the number of times the process has been started.
380 *
381 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
382 */
383 public abstract int getStarts(int which);
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700384
385 /**
386 * Returns the cpu time spent in microseconds while the process was in the foreground.
387 * @param which one of STATS_TOTAL, STATS_LAST, STATS_CURRENT or STATS_UNPLUGGED
388 * @return foreground cpu time in microseconds
389 */
390 public abstract long getForegroundTime(int which);
Amith Yamasanie43530a2009-08-21 13:11:37 -0700391
392 /**
393 * Returns the approximate cpu time spent in microseconds, at a certain CPU speed.
394 * @param speedStep the index of the CPU speed. This is not the actual speed of the
395 * CPU.
396 * @param which one of STATS_TOTAL, STATS_LAST, STATS_CURRENT or STATS_UNPLUGGED
397 * @see BatteryStats#getCpuSpeedSteps()
398 */
399 public abstract long getTimeAtCpuSpeedStep(int speedStep, int which);
Dianne Hackborn9adb9c32010-08-13 14:09:56 -0700400
Dianne Hackborn287952c2010-09-22 22:34:31 -0700401 public abstract int countExcessivePowers();
Dianne Hackborn9adb9c32010-08-13 14:09:56 -0700402
Dianne Hackborn287952c2010-09-22 22:34:31 -0700403 public abstract ExcessivePower getExcessivePower(int i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800404 }
405
406 /**
407 * The statistics associated with a particular package.
408 */
409 public static abstract class Pkg {
410
411 /**
412 * Returns the number of times this package has done something that could wake up the
413 * device from sleep.
414 *
415 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
416 */
417 public abstract int getWakeups(int which);
418
419 /**
420 * Returns a mapping containing service statistics.
421 */
422 public abstract Map<String, ? extends Serv> getServiceStats();
423
424 /**
425 * The statistics associated with a particular service.
426 */
427 public abstract class Serv {
428
429 /**
430 * Returns the amount of time spent started.
431 *
432 * @param batteryUptime elapsed uptime on battery in microseconds.
433 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
434 * @return
435 */
436 public abstract long getStartTime(long batteryUptime, int which);
437
438 /**
439 * Returns the total number of times startService() has been called.
440 *
441 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
442 */
443 public abstract int getStarts(int which);
444
445 /**
446 * Returns the total number times the service has been launched.
447 *
448 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
449 */
450 public abstract int getLaunches(int which);
451 }
452 }
453 }
454
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800455 public final static class HistoryTag {
456 public String string;
457 public int uid;
458
459 public int poolIdx;
460
461 public void setTo(HistoryTag o) {
462 string = o.string;
463 uid = o.uid;
464 poolIdx = o.poolIdx;
465 }
466
467 public void setTo(String _string, int _uid) {
468 string = _string;
469 uid = _uid;
470 poolIdx = -1;
471 }
472
473 public void writeToParcel(Parcel dest, int flags) {
474 dest.writeString(string);
475 dest.writeInt(uid);
476 }
477
478 public void readFromParcel(Parcel src) {
479 string = src.readString();
480 uid = src.readInt();
481 poolIdx = -1;
482 }
483
484 @Override
485 public boolean equals(Object o) {
486 if (this == o) return true;
487 if (o == null || getClass() != o.getClass()) return false;
488
489 HistoryTag that = (HistoryTag) o;
490
491 if (uid != that.uid) return false;
492 if (!string.equals(that.string)) return false;
493
494 return true;
495 }
496
497 @Override
498 public int hashCode() {
499 int result = string.hashCode();
500 result = 31 * result + uid;
501 return result;
502 }
503 }
504
Dianne Hackbornce2ef762010-09-20 11:39:14 -0700505 public final static class HistoryItem implements Parcelable {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700506 public HistoryItem next;
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700507
508 public long time;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800509
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800510 public static final byte CMD_UPDATE = 0; // These can be written as deltas
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800511 public static final byte CMD_NULL = -1;
512 public static final byte CMD_START = 4;
513 public static final byte CMD_OVERFLOW = 5;
514
Dianne Hackborn1fadab52011-04-14 17:57:33 -0700515 public byte cmd = CMD_NULL;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700516
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800517 /**
518 * Return whether the command code is a delta data update.
519 */
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800520 public boolean isDeltaData() {
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800521 return cmd == CMD_UPDATE;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800522 }
523
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700524 public byte batteryLevel;
525 public byte batteryStatus;
526 public byte batteryHealth;
527 public byte batteryPlugType;
528
Sungmin Choic7e9e8b2013-01-16 12:57:36 +0900529 public short batteryTemperature;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700530 public char batteryVoltage;
531
Dianne Hackborn3bee5af82010-07-23 00:22:04 -0700532 // Constants from SCREEN_BRIGHTNESS_*
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700533 public static final int STATE_BRIGHTNESS_SHIFT = 0;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800534 public static final int STATE_BRIGHTNESS_MASK = 0x7;
Dianne Hackborn3bee5af82010-07-23 00:22:04 -0700535 // Constants from SIGNAL_STRENGTH_*
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800536 public static final int STATE_SIGNAL_STRENGTH_SHIFT = 3;
537 public static final int STATE_SIGNAL_STRENGTH_MASK = 0x7 << STATE_SIGNAL_STRENGTH_SHIFT;
Dianne Hackborn3bee5af82010-07-23 00:22:04 -0700538 // Constants from ServiceState.STATE_*
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800539 public static final int STATE_PHONE_STATE_SHIFT = 6;
540 public static final int STATE_PHONE_STATE_MASK = 0x7 << STATE_PHONE_STATE_SHIFT;
Dianne Hackborn3bee5af82010-07-23 00:22:04 -0700541 // Constants from DATA_CONNECTION_*
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800542 public static final int STATE_DATA_CONNECTION_SHIFT = 9;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800543 public static final int STATE_DATA_CONNECTION_MASK = 0x1f << STATE_DATA_CONNECTION_SHIFT;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800544
Dianne Hackborn1fadab52011-04-14 17:57:33 -0700545 // These states always appear directly in the first int token
546 // of a delta change; they should be ones that change relatively
547 // frequently.
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800548 public static final int STATE_WAKE_LOCK_FLAG = 1<<31;
549 public static final int STATE_SENSOR_ON_FLAG = 1<<30;
550 public static final int STATE_GPS_ON_FLAG = 1<<29;
551 public static final int STATE_WIFI_FULL_LOCK_FLAG = 1<<28;
552 public static final int STATE_WIFI_SCAN_FLAG = 1<<29;
553 public static final int STATE_WIFI_MULTICAST_ON_FLAG = 1<<26;
Dianne Hackborn1fadab52011-04-14 17:57:33 -0700554 // These are on the lower bits used for the command; if they change
555 // we need to write another int of data.
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800556 public static final int STATE_WIFI_RUNNING_FLAG = 1<<24;
557 public static final int STATE_PHONE_SCANNING_FLAG = 1<<23;
Dianne Hackborn1fadab52011-04-14 17:57:33 -0700558 public static final int STATE_AUDIO_ON_FLAG = 1<<22;
559 public static final int STATE_VIDEO_ON_FLAG = 1<<21;
560 public static final int STATE_SCREEN_ON_FLAG = 1<<20;
561 public static final int STATE_BATTERY_PLUGGED_FLAG = 1<<19;
562 public static final int STATE_PHONE_IN_CALL_FLAG = 1<<18;
563 public static final int STATE_WIFI_ON_FLAG = 1<<17;
564 public static final int STATE_BLUETOOTH_ON_FLAG = 1<<16;
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700565
Dianne Hackbornf47d8f22010-10-08 10:46:55 -0700566 public static final int MOST_INTERESTING_STATES =
567 STATE_BATTERY_PLUGGED_FLAG | STATE_SCREEN_ON_FLAG
568 | STATE_GPS_ON_FLAG | STATE_PHONE_IN_CALL_FLAG;
569
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700570 public int states;
571
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800572 // The wake lock that was acquired at this point.
573 public HistoryTag wakelockTag;
574
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800575 public static final int EVENT_NONE = 0;
Dianne Hackborn099bc622014-01-22 13:39:16 -0800576 public static final int EVENT_PROC_STARTED = 1;
577 public static final int EVENT_PROC_FINISHED = 2;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800578
579 // For CMD_EVENT.
580 public int eventCode;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800581 public HistoryTag eventTag;
582
583 // Meta-data when reading.
584 public int numReadInts;
585
586 // Pre-allocated objects.
587 public final HistoryTag localWakelockTag = new HistoryTag();
588 public final HistoryTag localEventTag = new HistoryTag();
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800589
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700590 public HistoryItem() {
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700591 }
592
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700593 public HistoryItem(long time, Parcel src) {
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700594 this.time = time;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800595 numReadInts = 2;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -0700596 readFromParcel(src);
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700597 }
598
599 public int describeContents() {
600 return 0;
601 }
602
603 public void writeToParcel(Parcel dest, int flags) {
604 dest.writeLong(time);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700605 int bat = (((int)cmd)&0xff)
606 | ((((int)batteryLevel)<<8)&0xff00)
607 | ((((int)batteryStatus)<<16)&0xf0000)
608 | ((((int)batteryHealth)<<20)&0xf00000)
609 | ((((int)batteryPlugType)<<24)&0xf000000);
610 dest.writeInt(bat);
611 bat = (((int)batteryTemperature)&0xffff)
612 | ((((int)batteryVoltage)<<16)&0xffff0000);
613 dest.writeInt(bat);
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700614 dest.writeInt(states);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800615 if (wakelockTag != null) {
616 dest.writeInt(1);
617 wakelockTag.writeToParcel(dest, flags);
618 } else {
619 dest.writeInt(0);
620 }
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800621 dest.writeInt(eventCode);
622 if (eventCode != EVENT_NONE) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800623 dest.writeInt(eventCode);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800624 eventTag.writeToParcel(dest, flags);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800625 }
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700626 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -0700627
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800628 public void readFromParcel(Parcel src) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800629 int start = src.dataPosition();
Dianne Hackborn0ffc9882011-04-13 18:15:56 -0700630 int bat = src.readInt();
631 cmd = (byte)(bat&0xff);
632 batteryLevel = (byte)((bat>>8)&0xff);
633 batteryStatus = (byte)((bat>>16)&0xf);
634 batteryHealth = (byte)((bat>>20)&0xf);
635 batteryPlugType = (byte)((bat>>24)&0xf);
636 bat = src.readInt();
Sungmin Choic7e9e8b2013-01-16 12:57:36 +0900637 batteryTemperature = (short)(bat&0xffff);
Dianne Hackborn0ffc9882011-04-13 18:15:56 -0700638 batteryVoltage = (char)((bat>>16)&0xffff);
639 states = src.readInt();
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800640 if (src.readInt() != 0) {
641 wakelockTag = localWakelockTag;
642 wakelockTag.readFromParcel(src);
643 } else {
644 wakelockTag = null;
645 }
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800646 eventCode = src.readInt();
647 if (eventCode != EVENT_NONE) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800648 eventTag = localEventTag;
649 eventTag.readFromParcel(src);
Dianne Hackborn1fadab52011-04-14 17:57:33 -0700650 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800651 numReadInts += (src.dataPosition()-start)/4;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -0700652 }
653
Dianne Hackborn1fadab52011-04-14 17:57:33 -0700654 public void clear() {
655 time = 0;
656 cmd = CMD_NULL;
657 batteryLevel = 0;
658 batteryStatus = 0;
659 batteryHealth = 0;
660 batteryPlugType = 0;
661 batteryTemperature = 0;
662 batteryVoltage = 0;
663 states = 0;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800664 wakelockTag = null;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800665 eventCode = EVENT_NONE;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800666 eventTag = null;
Dianne Hackborn1fadab52011-04-14 17:57:33 -0700667 }
668
Dianne Hackbornce2ef762010-09-20 11:39:14 -0700669 public void setTo(HistoryItem o) {
670 time = o.time;
671 cmd = o.cmd;
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800672 setToCommon(o);
673 }
674
675 public void setTo(long time, byte cmd, HistoryItem o) {
676 this.time = time;
677 this.cmd = cmd;
678 setToCommon(o);
679 }
680
681 private void setToCommon(HistoryItem o) {
Dianne Hackbornce2ef762010-09-20 11:39:14 -0700682 batteryLevel = o.batteryLevel;
683 batteryStatus = o.batteryStatus;
684 batteryHealth = o.batteryHealth;
685 batteryPlugType = o.batteryPlugType;
686 batteryTemperature = o.batteryTemperature;
687 batteryVoltage = o.batteryVoltage;
688 states = o.states;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800689 if (o.wakelockTag != null) {
690 wakelockTag = localWakelockTag;
691 wakelockTag.setTo(o.wakelockTag);
692 } else {
693 wakelockTag = null;
694 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800695 eventCode = o.eventCode;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800696 if (o.eventTag != null) {
697 eventTag = localEventTag;
698 eventTag.setTo(o.eventTag);
699 } else {
700 eventTag = null;
701 }
Dianne Hackbornce2ef762010-09-20 11:39:14 -0700702 }
703
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800704 public boolean sameNonEvent(HistoryItem o) {
Dianne Hackborn9adb9c32010-08-13 14:09:56 -0700705 return batteryLevel == o.batteryLevel
706 && batteryStatus == o.batteryStatus
707 && batteryHealth == o.batteryHealth
708 && batteryPlugType == o.batteryPlugType
709 && batteryTemperature == o.batteryTemperature
710 && batteryVoltage == o.batteryVoltage
711 && states == o.states;
712 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800713
714 public boolean same(HistoryItem o) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800715 if (!sameNonEvent(o) || eventCode != o.eventCode) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800716 return false;
717 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800718 if (wakelockTag != o.wakelockTag) {
719 if (wakelockTag == null || o.wakelockTag == null) {
720 return false;
721 }
722 if (!wakelockTag.equals(o.wakelockTag)) {
723 return false;
724 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800725 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800726 if (eventTag != o.eventTag) {
727 if (eventTag == null || o.eventTag == null) {
728 return false;
729 }
730 if (!eventTag.equals(o.eventTag)) {
731 return false;
732 }
733 }
734 return true;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800735 }
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700736 }
737
738 public static final class BitDescription {
739 public final int mask;
740 public final int shift;
741 public final String name;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800742 public final String shortName;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700743 public final String[] values;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800744 public final String[] shortValues;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700745
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800746 public BitDescription(int mask, String name, String shortName) {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700747 this.mask = mask;
748 this.shift = -1;
749 this.name = name;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800750 this.shortName = shortName;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700751 this.values = null;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800752 this.shortValues = null;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700753 }
754
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800755 public BitDescription(int mask, int shift, String name, String shortName,
756 String[] values, String[] shortValues) {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700757 this.mask = mask;
758 this.shift = shift;
759 this.name = name;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800760 this.shortName = shortName;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700761 this.values = values;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800762 this.shortValues = shortValues;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700763 }
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700764 }
765
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800766 public abstract int getHistoryTotalSize();
767
768 public abstract int getHistoryUsedSize();
769
Dianne Hackbornce2ef762010-09-20 11:39:14 -0700770 public abstract boolean startIteratingHistoryLocked();
771
Dianne Hackborn099bc622014-01-22 13:39:16 -0800772 public abstract int getHistoryStringPoolSize();
773
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800774 public abstract int getHistoryStringPoolBytes();
775
776 public abstract String getHistoryTagPoolString(int index);
777
778 public abstract int getHistoryTagPoolUid(int index);
Dianne Hackborn099bc622014-01-22 13:39:16 -0800779
Dianne Hackbornce2ef762010-09-20 11:39:14 -0700780 public abstract boolean getNextHistoryLocked(HistoryItem out);
781
Dianne Hackborn0ffc9882011-04-13 18:15:56 -0700782 public abstract void finishIteratingHistoryLocked();
783
784 public abstract boolean startIteratingOldHistoryLocked();
785
786 public abstract boolean getNextOldHistoryLocked(HistoryItem out);
787
788 public abstract void finishIteratingOldHistoryLocked();
789
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800790 /**
Dianne Hackbornb5e31652010-09-07 12:13:55 -0700791 * Return the base time offset for the battery history.
792 */
793 public abstract long getHistoryBaseTime();
794
795 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800796 * Returns the number of times the device has been started.
797 */
798 public abstract int getStartCount();
799
800 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700801 * 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 -0800802 * running on battery.
803 *
804 * {@hide}
805 */
806 public abstract long getScreenOnTime(long batteryRealtime, int which);
807
Dianne Hackborn617f8772009-03-31 15:04:46 -0700808 public static final int SCREEN_BRIGHTNESS_DARK = 0;
809 public static final int SCREEN_BRIGHTNESS_DIM = 1;
810 public static final int SCREEN_BRIGHTNESS_MEDIUM = 2;
811 public static final int SCREEN_BRIGHTNESS_LIGHT = 3;
812 public static final int SCREEN_BRIGHTNESS_BRIGHT = 4;
813
814 static final String[] SCREEN_BRIGHTNESS_NAMES = {
815 "dark", "dim", "medium", "light", "bright"
816 };
817
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800818 static final String[] SCREEN_BRIGHTNESS_SHORT_NAMES = {
819 "0", "1", "2", "3", "4"
820 };
821
Dianne Hackborn617f8772009-03-31 15:04:46 -0700822 public static final int NUM_SCREEN_BRIGHTNESS_BINS = 5;
823
824 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700825 * Returns the time in microseconds that the screen has been on with
Dianne Hackborn617f8772009-03-31 15:04:46 -0700826 * the given brightness
827 *
828 * {@hide}
829 */
830 public abstract long getScreenBrightnessTime(int brightnessBin,
831 long batteryRealtime, int which);
832
833 public abstract int getInputEventCount(int which);
834
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800835 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700836 * 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 -0800837 * running on battery.
838 *
839 * {@hide}
840 */
841 public abstract long getPhoneOnTime(long batteryRealtime, int which);
Dianne Hackborn627bba72009-03-24 22:32:56 -0700842
843 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700844 * Returns the time in microseconds that the phone has been running with
Dianne Hackborn627bba72009-03-24 22:32:56 -0700845 * the given signal strength.
846 *
847 * {@hide}
848 */
849 public abstract long getPhoneSignalStrengthTime(int strengthBin,
850 long batteryRealtime, int which);
851
Dianne Hackborn617f8772009-03-31 15:04:46 -0700852 /**
Amith Yamasanif37447b2009-10-08 18:28:01 -0700853 * Returns the time in microseconds that the phone has been trying to
854 * acquire a signal.
855 *
856 * {@hide}
857 */
858 public abstract long getPhoneSignalScanningTime(
859 long batteryRealtime, int which);
860
861 /**
Dianne Hackborn617f8772009-03-31 15:04:46 -0700862 * Returns the number of times the phone has entered the given signal strength.
863 *
864 * {@hide}
865 */
866 public abstract int getPhoneSignalStrengthCount(int strengthBin, int which);
867
Dianne Hackborn627bba72009-03-24 22:32:56 -0700868 public static final int DATA_CONNECTION_NONE = 0;
869 public static final int DATA_CONNECTION_GPRS = 1;
870 public static final int DATA_CONNECTION_EDGE = 2;
871 public static final int DATA_CONNECTION_UMTS = 3;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700872 public static final int DATA_CONNECTION_CDMA = 4;
873 public static final int DATA_CONNECTION_EVDO_0 = 5;
874 public static final int DATA_CONNECTION_EVDO_A = 6;
875 public static final int DATA_CONNECTION_1xRTT = 7;
876 public static final int DATA_CONNECTION_HSDPA = 8;
877 public static final int DATA_CONNECTION_HSUPA = 9;
878 public static final int DATA_CONNECTION_HSPA = 10;
879 public static final int DATA_CONNECTION_IDEN = 11;
880 public static final int DATA_CONNECTION_EVDO_B = 12;
Robert Greenwalt962a9902010-11-02 11:10:25 -0700881 public static final int DATA_CONNECTION_LTE = 13;
882 public static final int DATA_CONNECTION_EHRPD = 14;
Patrick Tjinb71703c2013-11-06 09:27:03 -0800883 public static final int DATA_CONNECTION_HSPAP = 15;
884 public static final int DATA_CONNECTION_OTHER = 16;
Robert Greenwalt962a9902010-11-02 11:10:25 -0700885
Dianne Hackborn627bba72009-03-24 22:32:56 -0700886 static final String[] DATA_CONNECTION_NAMES = {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700887 "none", "gprs", "edge", "umts", "cdma", "evdo_0", "evdo_A",
Robert Greenwalt962a9902010-11-02 11:10:25 -0700888 "1xrtt", "hsdpa", "hsupa", "hspa", "iden", "evdo_b", "lte",
Patrick Tjinb71703c2013-11-06 09:27:03 -0800889 "ehrpd", "hspap", "other"
Dianne Hackborn627bba72009-03-24 22:32:56 -0700890 };
891
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700892 public static final int NUM_DATA_CONNECTION_TYPES = DATA_CONNECTION_OTHER+1;
Dianne Hackborn627bba72009-03-24 22:32:56 -0700893
894 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700895 * Returns the time in microseconds that the phone has been running with
Dianne Hackborn627bba72009-03-24 22:32:56 -0700896 * the given data connection.
897 *
898 * {@hide}
899 */
900 public abstract long getPhoneDataConnectionTime(int dataType,
901 long batteryRealtime, int which);
902
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800903 /**
Dianne Hackborn617f8772009-03-31 15:04:46 -0700904 * Returns the number of times the phone has entered the given data
905 * connection type.
906 *
907 * {@hide}
908 */
909 public abstract int getPhoneDataConnectionCount(int dataType, int which);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700910
911 public static final BitDescription[] HISTORY_STATE_DESCRIPTIONS
912 = new BitDescription[] {
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800913 new BitDescription(HistoryItem.STATE_WAKE_LOCK_FLAG, "wake_lock", "w"),
914 new BitDescription(HistoryItem.STATE_SENSOR_ON_FLAG, "sensor", "s"),
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800915 new BitDescription(HistoryItem.STATE_GPS_ON_FLAG, "gps", "g"),
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800916 new BitDescription(HistoryItem.STATE_WIFI_FULL_LOCK_FLAG, "wifi_full_lock", "Wl"),
917 new BitDescription(HistoryItem.STATE_WIFI_SCAN_FLAG, "wifi_scan", "Ws"),
918 new BitDescription(HistoryItem.STATE_WIFI_MULTICAST_ON_FLAG, "wifi_multicast", "Wm"),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800919 new BitDescription(HistoryItem.STATE_WIFI_RUNNING_FLAG, "wifi_running", "Wr"),
920 new BitDescription(HistoryItem.STATE_PHONE_SCANNING_FLAG, "phone_scanning", "Psc"),
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800921 new BitDescription(HistoryItem.STATE_AUDIO_ON_FLAG, "audio", "a"),
922 new BitDescription(HistoryItem.STATE_VIDEO_ON_FLAG, "video", "v"),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800923 new BitDescription(HistoryItem.STATE_SCREEN_ON_FLAG, "screen", "S"),
924 new BitDescription(HistoryItem.STATE_BATTERY_PLUGGED_FLAG, "plugged", "BP"),
925 new BitDescription(HistoryItem.STATE_PHONE_IN_CALL_FLAG, "phone_in_call", "Pcl"),
926 new BitDescription(HistoryItem.STATE_WIFI_ON_FLAG, "wifi", "W"),
927 new BitDescription(HistoryItem.STATE_BLUETOOTH_ON_FLAG, "bluetooth", "b"),
928 new BitDescription(HistoryItem.STATE_DATA_CONNECTION_MASK,
929 HistoryItem.STATE_DATA_CONNECTION_SHIFT, "data_conn", "Pcn",
930 DATA_CONNECTION_NAMES, DATA_CONNECTION_NAMES),
931 new BitDescription(HistoryItem.STATE_PHONE_STATE_MASK,
932 HistoryItem.STATE_PHONE_STATE_SHIFT, "phone_state", "Pst",
933 new String[] {"in", "out", "emergency", "off"},
934 new String[] {"in", "out", "em", "off"}),
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700935 new BitDescription(HistoryItem.STATE_SIGNAL_STRENGTH_MASK,
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800936 HistoryItem.STATE_SIGNAL_STRENGTH_SHIFT, "signal_strength", "Pss",
937 SignalStrength.SIGNAL_STRENGTH_NAMES, new String[] {
938 "0", "1", "2", "3", "4"
939 }),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800940 new BitDescription(HistoryItem.STATE_BRIGHTNESS_MASK,
941 HistoryItem.STATE_BRIGHTNESS_SHIFT, "brightness", "Sb",
942 SCREEN_BRIGHTNESS_NAMES, SCREEN_BRIGHTNESS_SHORT_NAMES),
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700943 };
Dianne Hackborn617f8772009-03-31 15:04:46 -0700944
945 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700946 * Returns the time in microseconds that wifi has been on while the device was
The Android Open Source Project10592532009-03-18 17:39:46 -0700947 * running on battery.
948 *
949 * {@hide}
950 */
951 public abstract long getWifiOnTime(long batteryRealtime, int which);
Eric Shienbroodd4c5f892009-03-24 18:13:20 -0700952
953 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700954 * Returns the time in microseconds that wifi has been on and the driver has
Eric Shienbroodd4c5f892009-03-24 18:13:20 -0700955 * been in the running state while the device was running on battery.
956 *
957 * {@hide}
958 */
Dianne Hackborn58e0eef2010-09-16 01:22:10 -0700959 public abstract long getGlobalWifiRunningTime(long batteryRealtime, int which);
Eric Shienbroodd4c5f892009-03-24 18:13:20 -0700960
The Android Open Source Project10592532009-03-18 17:39:46 -0700961 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700962 * Returns the time in microseconds that bluetooth has been on while the device was
The Android Open Source Project10592532009-03-18 17:39:46 -0700963 * running on battery.
964 *
965 * {@hide}
966 */
967 public abstract long getBluetoothOnTime(long batteryRealtime, int which);
968
Dianne Hackborna7c837f2014-01-15 16:20:44 -0800969 public abstract int getBluetoothPingCount();
970
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800971 public static final int NETWORK_MOBILE_RX_DATA = 0;
972 public static final int NETWORK_MOBILE_TX_DATA = 1;
973 public static final int NETWORK_WIFI_RX_DATA = 2;
974 public static final int NETWORK_WIFI_TX_DATA = 3;
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700975
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800976 public static final int NUM_NETWORK_ACTIVITY_TYPES = NETWORK_WIFI_TX_DATA + 1;
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700977
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800978 public abstract long getNetworkActivityBytes(int type, int which);
979 public abstract long getNetworkActivityPackets(int type, int which);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700980
The Android Open Source Project10592532009-03-18 17:39:46 -0700981 /**
Dianne Hackborn5f4a5f92014-01-24 16:59:34 -0800982 * Return the wall clock time when battery stats data collection started.
983 */
984 public abstract long getStartClockTime();
985
986 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800987 * Return whether we are currently running on battery.
988 */
989 public abstract boolean getIsOnBattery();
990
991 /**
992 * Returns a SparseArray containing the statistics for each uid.
993 */
994 public abstract SparseArray<? extends Uid> getUidStats();
995
996 /**
997 * Returns the current battery uptime in microseconds.
998 *
999 * @param curTime the amount of elapsed realtime in microseconds.
1000 */
1001 public abstract long getBatteryUptime(long curTime);
1002
1003 /**
Amith Yamasani3f7e35c2009-07-13 16:02:45 -07001004 * @deprecated use getRadioDataUptime
1005 */
1006 public long getRadioDataUptimeMs() {
1007 return getRadioDataUptime() / 1000;
1008 }
1009
1010 /**
1011 * Returns the time that the radio was on for data transfers.
1012 * @return the uptime in microseconds while unplugged
1013 */
1014 public abstract long getRadioDataUptime();
1015
1016 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001017 * Returns the current battery realtime in microseconds.
1018 *
1019 * @param curTime the amount of elapsed realtime in microseconds.
1020 */
1021 public abstract long getBatteryRealtime(long curTime);
The Android Open Source Project10592532009-03-18 17:39:46 -07001022
1023 /**
Evan Millar633a1742009-04-02 16:36:33 -07001024 * Returns the battery percentage level at the last time the device was unplugged from power, or
1025 * the last time it booted on battery power.
The Android Open Source Project10592532009-03-18 17:39:46 -07001026 */
Evan Millar633a1742009-04-02 16:36:33 -07001027 public abstract int getDischargeStartLevel();
The Android Open Source Project10592532009-03-18 17:39:46 -07001028
1029 /**
Evan Millar633a1742009-04-02 16:36:33 -07001030 * Returns the current battery percentage level if we are in a discharge cycle, otherwise
1031 * returns the level at the last plug event.
The Android Open Source Project10592532009-03-18 17:39:46 -07001032 */
Evan Millar633a1742009-04-02 16:36:33 -07001033 public abstract int getDischargeCurrentLevel();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001034
1035 /**
Dianne Hackborn3bee5af82010-07-23 00:22:04 -07001036 * Get the amount the battery has discharged since the stats were
1037 * last reset after charging, as a lower-end approximation.
1038 */
1039 public abstract int getLowDischargeAmountSinceCharge();
1040
1041 /**
1042 * Get the amount the battery has discharged since the stats were
1043 * last reset after charging, as an upper-end approximation.
1044 */
1045 public abstract int getHighDischargeAmountSinceCharge();
1046
1047 /**
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08001048 * Get the amount the battery has discharged while the screen was on,
1049 * since the last time power was unplugged.
1050 */
1051 public abstract int getDischargeAmountScreenOn();
1052
1053 /**
1054 * Get the amount the battery has discharged while the screen was on,
1055 * since the last time the device was charged.
1056 */
1057 public abstract int getDischargeAmountScreenOnSinceCharge();
1058
1059 /**
1060 * Get the amount the battery has discharged while the screen was off,
1061 * since the last time power was unplugged.
1062 */
1063 public abstract int getDischargeAmountScreenOff();
1064
1065 /**
1066 * Get the amount the battery has discharged while the screen was off,
1067 * since the last time the device was charged.
1068 */
1069 public abstract int getDischargeAmountScreenOffSinceCharge();
1070
1071 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001072 * Returns the total, last, or current battery uptime in microseconds.
1073 *
1074 * @param curTime the elapsed realtime in microseconds.
1075 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
1076 */
1077 public abstract long computeBatteryUptime(long curTime, int which);
1078
1079 /**
1080 * Returns the total, last, or current battery realtime in microseconds.
1081 *
1082 * @param curTime the current elapsed realtime in microseconds.
1083 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
1084 */
1085 public abstract long computeBatteryRealtime(long curTime, int which);
1086
1087 /**
1088 * Returns the total, last, or current uptime in microseconds.
1089 *
1090 * @param curTime the current elapsed realtime in microseconds.
1091 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
1092 */
1093 public abstract long computeUptime(long curTime, int which);
1094
1095 /**
1096 * Returns the total, last, or current realtime in microseconds.
1097 * *
1098 * @param curTime the current elapsed realtime in microseconds.
1099 * @param which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
1100 */
1101 public abstract long computeRealtime(long curTime, int which);
Evan Millarc64edde2009-04-18 12:26:32 -07001102
1103 public abstract Map<String, ? extends Timer> getKernelWakelockStats();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001104
Amith Yamasanie43530a2009-08-21 13:11:37 -07001105 /** Returns the number of different speeds that the CPU can run at */
1106 public abstract int getCpuSpeedSteps();
1107
Dianne Hackborna7c837f2014-01-15 16:20:44 -08001108 public abstract void writeToParcelWithoutUids(Parcel out, int flags);
1109
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001110 private final static void formatTimeRaw(StringBuilder out, long seconds) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001111 long days = seconds / (60 * 60 * 24);
1112 if (days != 0) {
1113 out.append(days);
1114 out.append("d ");
1115 }
1116 long used = days * 60 * 60 * 24;
1117
1118 long hours = (seconds - used) / (60 * 60);
1119 if (hours != 0 || used != 0) {
1120 out.append(hours);
1121 out.append("h ");
1122 }
1123 used += hours * 60 * 60;
1124
1125 long mins = (seconds-used) / 60;
1126 if (mins != 0 || used != 0) {
1127 out.append(mins);
1128 out.append("m ");
1129 }
1130 used += mins * 60;
1131
1132 if (seconds != 0 || used != 0) {
1133 out.append(seconds-used);
1134 out.append("s ");
1135 }
1136 }
1137
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001138 private final static void formatTime(StringBuilder sb, long time) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001139 long sec = time / 100;
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001140 formatTimeRaw(sb, sec);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001141 sb.append((time - (sec * 100)) * 10);
1142 sb.append("ms ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001143 }
1144
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001145 private final static void formatTimeMs(StringBuilder sb, long time) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001146 long sec = time / 1000;
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001147 formatTimeRaw(sb, sec);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001148 sb.append(time - (sec * 1000));
1149 sb.append("ms ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001150 }
1151
1152 private final String formatRatioLocked(long num, long den) {
1153 if (den == 0L) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001154 return "--%";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001155 }
1156 float perc = ((float)num) / ((float)den) * 100;
1157 mFormatBuilder.setLength(0);
1158 mFormatter.format("%.1f%%", perc);
1159 return mFormatBuilder.toString();
1160 }
1161
Evan Millar22ac0432009-03-31 11:33:18 -07001162 private final String formatBytesLocked(long bytes) {
1163 mFormatBuilder.setLength(0);
1164
1165 if (bytes < BYTES_PER_KB) {
1166 return bytes + "B";
1167 } else if (bytes < BYTES_PER_MB) {
1168 mFormatter.format("%.2fKB", bytes / (double) BYTES_PER_KB);
1169 return mFormatBuilder.toString();
1170 } else if (bytes < BYTES_PER_GB){
1171 mFormatter.format("%.2fMB", bytes / (double) BYTES_PER_MB);
1172 return mFormatBuilder.toString();
1173 } else {
1174 mFormatter.format("%.2fGB", bytes / (double) BYTES_PER_GB);
1175 return mFormatBuilder.toString();
1176 }
1177 }
1178
Dianne Hackbornc24ab862011-10-18 15:55:03 -07001179 private static long computeWakeLock(Timer timer, long batteryRealtime, int which) {
1180 if (timer != null) {
1181 // Convert from microseconds to milliseconds with rounding
1182 long totalTimeMicros = timer.getTotalTimeLocked(batteryRealtime, which);
1183 long totalTimeMillis = (totalTimeMicros + 500) / 1000;
1184 return totalTimeMillis;
1185 }
1186 return 0;
1187 }
1188
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001189 /**
1190 *
1191 * @param sb a StringBuilder object.
1192 * @param timer a Timer object contining the wakelock times.
1193 * @param batteryRealtime the current on-battery time in microseconds.
1194 * @param name the name of the wakelock.
1195 * @param which which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
1196 * @param linePrefix a String to be prepended to each line of output.
1197 * @return the line prefix
1198 */
1199 private static final String printWakeLock(StringBuilder sb, Timer timer,
1200 long batteryRealtime, String name, int which, String linePrefix) {
1201
1202 if (timer != null) {
Dianne Hackbornc24ab862011-10-18 15:55:03 -07001203 long totalTimeMillis = computeWakeLock(timer, batteryRealtime, which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001204
Evan Millarc64edde2009-04-18 12:26:32 -07001205 int count = timer.getCountLocked(which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001206 if (totalTimeMillis != 0) {
1207 sb.append(linePrefix);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001208 formatTimeMs(sb, totalTimeMillis);
Dianne Hackborn81038902012-11-26 17:04:09 -08001209 if (name != null) {
1210 sb.append(name);
1211 sb.append(' ');
1212 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001213 sb.append('(');
1214 sb.append(count);
1215 sb.append(" times)");
1216 return ", ";
1217 }
1218 }
1219 return linePrefix;
1220 }
1221
1222 /**
1223 * Checkin version of wakelock printer. Prints simple comma-separated list.
1224 *
1225 * @param sb a StringBuilder object.
1226 * @param timer a Timer object contining the wakelock times.
1227 * @param now the current time in microseconds.
1228 * @param name the name of the wakelock.
1229 * @param which which one of STATS_TOTAL, STATS_LAST, or STATS_CURRENT.
1230 * @param linePrefix a String to be prepended to each line of output.
1231 * @return the line prefix
1232 */
1233 private static final String printWakeLockCheckin(StringBuilder sb, Timer timer, long now,
Evan Millarc64edde2009-04-18 12:26:32 -07001234 String name, int which, String linePrefix) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001235 long totalTimeMicros = 0;
1236 int count = 0;
1237 if (timer != null) {
Evan Millarc64edde2009-04-18 12:26:32 -07001238 totalTimeMicros = timer.getTotalTimeLocked(now, which);
1239 count = timer.getCountLocked(which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001240 }
1241 sb.append(linePrefix);
1242 sb.append((totalTimeMicros + 500) / 1000); // microseconds to milliseconds with rounding
1243 sb.append(',');
Evan Millarc64edde2009-04-18 12:26:32 -07001244 sb.append(name != null ? name + "," : "");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001245 sb.append(count);
1246 return ",";
1247 }
1248
1249 /**
1250 * Dump a comma-separated line of values for terse checkin mode.
1251 *
1252 * @param pw the PageWriter to dump log to
1253 * @param category category of data (e.g. "total", "last", "unplugged", "current" )
1254 * @param type type of data (e.g. "wakelock", "sensor", "process", "apk" , "process", "network")
1255 * @param args type-dependent data arguments
1256 */
1257 private static final void dumpLine(PrintWriter pw, int uid, String category, String type,
1258 Object... args ) {
1259 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
1260 pw.print(uid); pw.print(',');
1261 pw.print(category); pw.print(',');
Dianne Hackborn13ac0412013-06-25 19:34:49 -07001262 pw.print(type);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001263
1264 for (Object arg : args) {
Dianne Hackborn13ac0412013-06-25 19:34:49 -07001265 pw.print(',');
1266 pw.print(arg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001267 }
Dianne Hackborn13ac0412013-06-25 19:34:49 -07001268 pw.println();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001269 }
1270
1271 /**
1272 * Checkin server version of dump to produce more compact, computer-readable log.
1273 *
1274 * NOTE: all times are expressed in 'ms'.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001275 */
Dianne Hackborna7c837f2014-01-15 16:20:44 -08001276 public final void dumpCheckinLocked(Context context, PrintWriter pw, int which, int reqUid) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001277 final long rawUptime = SystemClock.uptimeMillis() * 1000;
1278 final long rawRealtime = SystemClock.elapsedRealtime() * 1000;
1279 final long batteryUptime = getBatteryUptime(rawUptime);
1280 final long batteryRealtime = getBatteryRealtime(rawRealtime);
1281 final long whichBatteryUptime = computeBatteryUptime(rawUptime, which);
1282 final long whichBatteryRealtime = computeBatteryRealtime(rawRealtime, which);
1283 final long totalRealtime = computeRealtime(rawRealtime, which);
1284 final long totalUptime = computeUptime(rawUptime, which);
1285 final long screenOnTime = getScreenOnTime(batteryRealtime, which);
1286 final long phoneOnTime = getPhoneOnTime(batteryRealtime, which);
The Android Open Source Project10592532009-03-18 17:39:46 -07001287 final long wifiOnTime = getWifiOnTime(batteryRealtime, which);
Dianne Hackborn58e0eef2010-09-16 01:22:10 -07001288 final long wifiRunningTime = getGlobalWifiRunningTime(batteryRealtime, which);
The Android Open Source Project10592532009-03-18 17:39:46 -07001289 final long bluetoothOnTime = getBluetoothOnTime(batteryRealtime, which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001290
1291 StringBuilder sb = new StringBuilder(128);
1292
Evan Millar22ac0432009-03-31 11:33:18 -07001293 SparseArray<? extends Uid> uidStats = getUidStats();
1294 final int NU = uidStats.size();
1295
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001296 String category = STAT_NAMES[which];
Jeff Sharkey3e013e82013-04-25 14:48:19 -07001297
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001298 // Dump "battery" stat
1299 dumpLine(pw, 0 /* uid */, category, BATTERY_DATA,
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001300 which == STATS_SINCE_CHARGED ? getStartCount() : "N/A",
Dianne Hackborn617f8772009-03-31 15:04:46 -07001301 whichBatteryRealtime / 1000, whichBatteryUptime / 1000,
Dianne Hackborn5f4a5f92014-01-24 16:59:34 -08001302 totalRealtime / 1000, totalUptime / 1000,
1303 getStartClockTime());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001304
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001305 // Calculate wakelock times across all uids.
Evan Millar22ac0432009-03-31 11:33:18 -07001306 long fullWakeLockTimeTotal = 0;
1307 long partialWakeLockTimeTotal = 0;
1308
1309 for (int iu = 0; iu < NU; iu++) {
1310 Uid u = uidStats.valueAt(iu);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07001311
Evan Millar22ac0432009-03-31 11:33:18 -07001312 Map<String, ? extends BatteryStats.Uid.Wakelock> wakelocks = u.getWakelockStats();
1313 if (wakelocks.size() > 0) {
1314 for (Map.Entry<String, ? extends BatteryStats.Uid.Wakelock> ent
1315 : wakelocks.entrySet()) {
1316 Uid.Wakelock wl = ent.getValue();
1317
1318 Timer fullWakeTimer = wl.getWakeTime(WAKE_TYPE_FULL);
1319 if (fullWakeTimer != null) {
Evan Millarc64edde2009-04-18 12:26:32 -07001320 fullWakeLockTimeTotal += fullWakeTimer.getTotalTimeLocked(batteryRealtime, which);
Evan Millar22ac0432009-03-31 11:33:18 -07001321 }
1322
1323 Timer partialWakeTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
1324 if (partialWakeTimer != null) {
Evan Millarc64edde2009-04-18 12:26:32 -07001325 partialWakeLockTimeTotal += partialWakeTimer.getTotalTimeLocked(
Evan Millar22ac0432009-03-31 11:33:18 -07001326 batteryRealtime, which);
1327 }
1328 }
1329 }
1330 }
1331
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001332 long mobileRxTotalBytes = getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which);
1333 long mobileTxTotalBytes = getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which);
1334 long wifiRxTotalBytes = getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which);
1335 long wifiTxTotalBytes = getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which);
1336 long mobileRxTotalPackets = getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which);
1337 long mobileTxTotalPackets = getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which);
1338 long wifiRxTotalPackets = getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which);
1339 long wifiTxTotalPackets = getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which);
1340
1341 // Dump network stats
1342 dumpLine(pw, 0 /* uid */, category, GLOBAL_NETWORK_DATA,
1343 mobileRxTotalBytes, mobileTxTotalBytes, wifiRxTotalBytes, wifiTxTotalBytes,
1344 mobileRxTotalPackets, mobileTxTotalPackets, wifiRxTotalPackets, wifiTxTotalPackets);
1345
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001346 // Dump misc stats
1347 dumpLine(pw, 0 /* uid */, category, MISC_DATA,
Eric Shienbroodd4c5f892009-03-24 18:13:20 -07001348 screenOnTime / 1000, phoneOnTime / 1000, wifiOnTime / 1000,
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07001349 wifiRunningTime / 1000, bluetoothOnTime / 1000,
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001350 mobileRxTotalBytes, mobileTxTotalBytes, wifiRxTotalBytes, wifiTxTotalBytes,
Dianne Hackborn617f8772009-03-31 15:04:46 -07001351 fullWakeLockTimeTotal, partialWakeLockTimeTotal,
1352 getInputEventCount(which));
1353
1354 // Dump screen brightness stats
1355 Object[] args = new Object[NUM_SCREEN_BRIGHTNESS_BINS];
1356 for (int i=0; i<NUM_SCREEN_BRIGHTNESS_BINS; i++) {
1357 args[i] = getScreenBrightnessTime(i, batteryRealtime, which) / 1000;
1358 }
1359 dumpLine(pw, 0 /* uid */, category, SCREEN_BRIGHTNESS_DATA, args);
The Android Open Source Project10592532009-03-18 17:39:46 -07001360
Dianne Hackborn627bba72009-03-24 22:32:56 -07001361 // Dump signal strength stats
Wink Saville52840902011-02-18 12:40:47 -08001362 args = new Object[SignalStrength.NUM_SIGNAL_STRENGTH_BINS];
1363 for (int i=0; i<SignalStrength.NUM_SIGNAL_STRENGTH_BINS; i++) {
Dianne Hackborn627bba72009-03-24 22:32:56 -07001364 args[i] = getPhoneSignalStrengthTime(i, batteryRealtime, which) / 1000;
1365 }
Dianne Hackborn617f8772009-03-31 15:04:46 -07001366 dumpLine(pw, 0 /* uid */, category, SIGNAL_STRENGTH_TIME_DATA, args);
Amith Yamasanif37447b2009-10-08 18:28:01 -07001367 dumpLine(pw, 0 /* uid */, category, SIGNAL_SCANNING_TIME_DATA,
1368 getPhoneSignalScanningTime(batteryRealtime, which) / 1000);
Wink Saville52840902011-02-18 12:40:47 -08001369 for (int i=0; i<SignalStrength.NUM_SIGNAL_STRENGTH_BINS; i++) {
Dianne Hackborn617f8772009-03-31 15:04:46 -07001370 args[i] = getPhoneSignalStrengthCount(i, which);
1371 }
1372 dumpLine(pw, 0 /* uid */, category, SIGNAL_STRENGTH_COUNT_DATA, args);
Dianne Hackborn627bba72009-03-24 22:32:56 -07001373
1374 // Dump network type stats
1375 args = new Object[NUM_DATA_CONNECTION_TYPES];
1376 for (int i=0; i<NUM_DATA_CONNECTION_TYPES; i++) {
1377 args[i] = getPhoneDataConnectionTime(i, batteryRealtime, which) / 1000;
1378 }
Dianne Hackborn617f8772009-03-31 15:04:46 -07001379 dumpLine(pw, 0 /* uid */, category, DATA_CONNECTION_TIME_DATA, args);
1380 for (int i=0; i<NUM_DATA_CONNECTION_TYPES; i++) {
1381 args[i] = getPhoneDataConnectionCount(i, which);
1382 }
1383 dumpLine(pw, 0 /* uid */, category, DATA_CONNECTION_COUNT_DATA, args);
Dianne Hackborn627bba72009-03-24 22:32:56 -07001384
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001385 if (which == STATS_SINCE_UNPLUGGED) {
Evan Millare84de8d2009-04-02 22:16:12 -07001386 dumpLine(pw, 0 /* uid */, category, BATTERY_LEVEL_DATA, getDischargeStartLevel(),
Evan Millar633a1742009-04-02 16:36:33 -07001387 getDischargeCurrentLevel());
The Android Open Source Project10592532009-03-18 17:39:46 -07001388 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001389
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08001390 if (which == STATS_SINCE_UNPLUGGED) {
1391 dumpLine(pw, 0 /* uid */, category, BATTERY_DISCHARGE_DATA,
1392 getDischargeStartLevel()-getDischargeCurrentLevel(),
1393 getDischargeStartLevel()-getDischargeCurrentLevel(),
1394 getDischargeAmountScreenOn(), getDischargeAmountScreenOff());
1395 } else {
1396 dumpLine(pw, 0 /* uid */, category, BATTERY_DISCHARGE_DATA,
1397 getLowDischargeAmountSinceCharge(), getHighDischargeAmountSinceCharge(),
1398 getDischargeAmountScreenOn(), getDischargeAmountScreenOff());
1399 }
1400
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001401 if (reqUid < 0) {
1402 Map<String, ? extends BatteryStats.Timer> kernelWakelocks = getKernelWakelockStats();
1403 if (kernelWakelocks.size() > 0) {
1404 for (Map.Entry<String, ? extends BatteryStats.Timer> ent : kernelWakelocks.entrySet()) {
1405 sb.setLength(0);
1406 printWakeLockCheckin(sb, ent.getValue(), batteryRealtime, null, which, "");
1407
1408 dumpLine(pw, 0 /* uid */, category, KERNEL_WAKELOCK_DATA, ent.getKey(),
1409 sb.toString());
1410 }
Evan Millarc64edde2009-04-18 12:26:32 -07001411 }
1412 }
1413
Dianne Hackborna7c837f2014-01-15 16:20:44 -08001414 BatteryStatsHelper helper = new BatteryStatsHelper(context);
1415 helper.create(this);
1416 helper.refreshStats(which, UserHandle.USER_ALL);
1417 List<BatterySipper> sippers = helper.getUsageList();
1418 if (sippers != null && sippers.size() > 0) {
1419 dumpLine(pw, 0 /* uid */, category, POWER_USE_SUMMARY_DATA,
1420 BatteryStatsHelper.makemAh(helper.getPowerProfile().getBatteryCapacity()),
Dianne Hackborn099bc622014-01-22 13:39:16 -08001421 BatteryStatsHelper.makemAh(helper.getComputedPower()),
Dianne Hackborna7c837f2014-01-15 16:20:44 -08001422 BatteryStatsHelper.makemAh(helper.getMinDrainedPower()),
1423 BatteryStatsHelper.makemAh(helper.getMaxDrainedPower()));
1424 for (int i=0; i<sippers.size(); i++) {
1425 BatterySipper bs = sippers.get(i);
1426 int uid = 0;
1427 String label;
1428 switch (bs.drainType) {
1429 case IDLE:
1430 label="idle";
1431 break;
1432 case CELL:
1433 label="cell";
1434 break;
1435 case PHONE:
1436 label="phone";
1437 break;
1438 case WIFI:
1439 label="wifi";
1440 break;
1441 case BLUETOOTH:
1442 label="blue";
1443 break;
1444 case SCREEN:
1445 label="scrn";
1446 break;
1447 case APP:
1448 uid = bs.uidObj.getUid();
1449 label = "uid";
1450 break;
1451 case USER:
1452 uid = UserHandle.getUid(bs.userId, 0);
1453 label = "user";
1454 break;
1455 case UNACCOUNTED:
1456 label = "unacc";
1457 break;
1458 case OVERCOUNTED:
1459 label = "over";
1460 break;
1461 default:
1462 label = "???";
1463 }
1464 dumpLine(pw, uid, category, POWER_USE_ITEM_DATA, label,
1465 BatteryStatsHelper.makemAh(bs.value));
1466 }
1467 }
1468
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001469 for (int iu = 0; iu < NU; iu++) {
1470 final int uid = uidStats.keyAt(iu);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001471 if (reqUid >= 0 && uid != reqUid) {
1472 continue;
1473 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001474 Uid u = uidStats.valueAt(iu);
1475 // Dump Network stats per uid, if any
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001476 long mobileBytesRx = u.getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which);
1477 long mobileBytesTx = u.getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which);
1478 long wifiBytesRx = u.getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which);
1479 long wifiBytesTx = u.getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which);
1480 long mobilePacketsRx = u.getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which);
1481 long mobilePacketsTx = u.getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which);
1482 long wifiPacketsRx = u.getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which);
1483 long wifiPacketsTx = u.getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which);
The Android Open Source Project10592532009-03-18 17:39:46 -07001484 long fullWifiLockOnTime = u.getFullWifiLockTime(batteryRealtime, which);
Nick Pelly6ccaa542012-06-15 15:22:47 -07001485 long wifiScanTime = u.getWifiScanTime(batteryRealtime, which);
Dianne Hackborn58e0eef2010-09-16 01:22:10 -07001486 long uidWifiRunningTime = u.getWifiRunningTime(batteryRealtime, which);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07001487
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001488 if (mobileBytesRx > 0 || mobileBytesTx > 0 || wifiBytesRx > 0 || wifiBytesTx > 0
1489 || mobilePacketsRx > 0 || mobilePacketsTx > 0 || wifiPacketsRx > 0
1490 || wifiPacketsTx > 0) {
1491 dumpLine(pw, uid, category, NETWORK_DATA, mobileBytesRx, mobileBytesTx,
1492 wifiBytesRx, wifiBytesTx,
1493 mobilePacketsRx, mobilePacketsTx,
1494 wifiPacketsRx, wifiPacketsTx);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07001495 }
1496
Nick Pelly6ccaa542012-06-15 15:22:47 -07001497 if (fullWifiLockOnTime != 0 || wifiScanTime != 0
Dianne Hackborn58e0eef2010-09-16 01:22:10 -07001498 || uidWifiRunningTime != 0) {
Nick Pelly6ccaa542012-06-15 15:22:47 -07001499 dumpLine(pw, uid, category, WIFI_DATA,
1500 fullWifiLockOnTime, wifiScanTime, uidWifiRunningTime);
The Android Open Source Project10592532009-03-18 17:39:46 -07001501 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001502
Dianne Hackborn617f8772009-03-31 15:04:46 -07001503 if (u.hasUserActivity()) {
1504 args = new Object[Uid.NUM_USER_ACTIVITY_TYPES];
1505 boolean hasData = false;
1506 for (int i=0; i<Uid.NUM_USER_ACTIVITY_TYPES; i++) {
1507 int val = u.getUserActivityCount(i, which);
1508 args[i] = val;
1509 if (val != 0) hasData = true;
1510 }
1511 if (hasData) {
1512 dumpLine(pw, 0 /* uid */, category, USER_ACTIVITY_DATA, args);
1513 }
1514 }
1515
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001516 Map<String, ? extends BatteryStats.Uid.Wakelock> wakelocks = u.getWakelockStats();
1517 if (wakelocks.size() > 0) {
1518 for (Map.Entry<String, ? extends BatteryStats.Uid.Wakelock> ent
1519 : wakelocks.entrySet()) {
1520 Uid.Wakelock wl = ent.getValue();
1521 String linePrefix = "";
1522 sb.setLength(0);
Evan Millarc64edde2009-04-18 12:26:32 -07001523 linePrefix = printWakeLockCheckin(sb, wl.getWakeTime(WAKE_TYPE_FULL),
1524 batteryRealtime, "f", which, linePrefix);
1525 linePrefix = printWakeLockCheckin(sb, wl.getWakeTime(WAKE_TYPE_PARTIAL),
1526 batteryRealtime, "p", which, linePrefix);
1527 linePrefix = printWakeLockCheckin(sb, wl.getWakeTime(WAKE_TYPE_WINDOW),
1528 batteryRealtime, "w", which, linePrefix);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001529
1530 // Only log if we had at lease one wakelock...
1531 if (sb.length() > 0) {
Dianne Hackborn13ac0412013-06-25 19:34:49 -07001532 String name = ent.getKey();
1533 if (name.indexOf(',') >= 0) {
1534 name = name.replace(',', '_');
1535 }
1536 dumpLine(pw, uid, category, WAKELOCK_DATA, name, sb.toString());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001537 }
1538 }
1539 }
1540
1541 Map<Integer, ? extends BatteryStats.Uid.Sensor> sensors = u.getSensorStats();
1542 if (sensors.size() > 0) {
1543 for (Map.Entry<Integer, ? extends BatteryStats.Uid.Sensor> ent
1544 : sensors.entrySet()) {
1545 Uid.Sensor se = ent.getValue();
1546 int sensorNumber = ent.getKey();
1547 Timer timer = se.getSensorTime();
1548 if (timer != null) {
1549 // Convert from microseconds to milliseconds with rounding
Evan Millarc64edde2009-04-18 12:26:32 -07001550 long totalTime = (timer.getTotalTimeLocked(batteryRealtime, which) + 500) / 1000;
1551 int count = timer.getCountLocked(which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001552 if (totalTime != 0) {
1553 dumpLine(pw, uid, category, SENSOR_DATA, sensorNumber, totalTime, count);
1554 }
1555 }
1556 }
1557 }
1558
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001559 Timer vibTimer = u.getVibratorOnTimer();
1560 if (vibTimer != null) {
1561 // Convert from microseconds to milliseconds with rounding
1562 long totalTime = (vibTimer.getTotalTimeLocked(batteryRealtime, which) + 500) / 1000;
1563 int count = vibTimer.getCountLocked(which);
1564 if (totalTime != 0) {
1565 dumpLine(pw, uid, category, VIBRATOR_DATA, totalTime, count);
1566 }
1567 }
1568
Jeff Sharkey3e013e82013-04-25 14:48:19 -07001569 Timer fgTimer = u.getForegroundActivityTimer();
1570 if (fgTimer != null) {
1571 // Convert from microseconds to milliseconds with rounding
1572 long totalTime = (fgTimer.getTotalTimeLocked(batteryRealtime, which) + 500) / 1000;
1573 int count = fgTimer.getCountLocked(which);
1574 if (totalTime != 0) {
1575 dumpLine(pw, uid, category, FOREGROUND_DATA, totalTime, count);
1576 }
1577 }
1578
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001579 Map<String, ? extends BatteryStats.Uid.Proc> processStats = u.getProcessStats();
1580 if (processStats.size() > 0) {
1581 for (Map.Entry<String, ? extends BatteryStats.Uid.Proc> ent
1582 : processStats.entrySet()) {
1583 Uid.Proc ps = ent.getValue();
Jeff Sharkey3e013e82013-04-25 14:48:19 -07001584
1585 final long userMillis = ps.getUserTime(which) * 10;
1586 final long systemMillis = ps.getSystemTime(which) * 10;
1587 final long foregroundMillis = ps.getForegroundTime(which) * 10;
1588 final long starts = ps.getStarts(which);
1589
1590 if (userMillis != 0 || systemMillis != 0 || foregroundMillis != 0
1591 || starts != 0) {
1592 dumpLine(pw, uid, category, PROCESS_DATA, ent.getKey(), userMillis,
1593 systemMillis, foregroundMillis, starts);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001594 }
1595 }
1596 }
1597
1598 Map<String, ? extends BatteryStats.Uid.Pkg> packageStats = u.getPackageStats();
1599 if (packageStats.size() > 0) {
1600 for (Map.Entry<String, ? extends BatteryStats.Uid.Pkg> ent
1601 : packageStats.entrySet()) {
1602
1603 Uid.Pkg ps = ent.getValue();
1604 int wakeups = ps.getWakeups(which);
1605 Map<String, ? extends Uid.Pkg.Serv> serviceStats = ps.getServiceStats();
1606 for (Map.Entry<String, ? extends BatteryStats.Uid.Pkg.Serv> sent
1607 : serviceStats.entrySet()) {
1608 BatteryStats.Uid.Pkg.Serv ss = sent.getValue();
1609 long startTime = ss.getStartTime(batteryUptime, which);
1610 int starts = ss.getStarts(which);
1611 int launches = ss.getLaunches(which);
1612 if (startTime != 0 || starts != 0 || launches != 0) {
1613 dumpLine(pw, uid, category, APK_DATA,
1614 wakeups, // wakeup alarms
1615 ent.getKey(), // Apk
1616 sent.getKey(), // service
1617 startTime / 1000, // time spent started, in ms
1618 starts,
1619 launches);
1620 }
1621 }
1622 }
1623 }
1624 }
1625 }
1626
Dianne Hackborn81038902012-11-26 17:04:09 -08001627 static final class TimerEntry {
1628 final String mName;
1629 final int mId;
1630 final BatteryStats.Timer mTimer;
1631 final long mTime;
1632 TimerEntry(String name, int id, BatteryStats.Timer timer, long time) {
1633 mName = name;
1634 mId = id;
1635 mTimer = timer;
1636 mTime = time;
1637 }
1638 }
1639
Dianne Hackborna7c837f2014-01-15 16:20:44 -08001640 private void printmAh(PrintWriter printer, double power) {
1641 printer.print(BatteryStatsHelper.makemAh(power));
1642 }
1643
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001644 @SuppressWarnings("unused")
Dianne Hackborna7c837f2014-01-15 16:20:44 -08001645 public final void dumpLocked(Context context, PrintWriter pw, String prefix, final int which,
1646 int reqUid) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001647 final long rawUptime = SystemClock.uptimeMillis() * 1000;
1648 final long rawRealtime = SystemClock.elapsedRealtime() * 1000;
1649 final long batteryUptime = getBatteryUptime(rawUptime);
Eric Shienbroodd4c5f892009-03-24 18:13:20 -07001650 final long batteryRealtime = getBatteryRealtime(rawRealtime);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001651
1652 final long whichBatteryUptime = computeBatteryUptime(rawUptime, which);
1653 final long whichBatteryRealtime = computeBatteryRealtime(rawRealtime, which);
1654 final long totalRealtime = computeRealtime(rawRealtime, which);
1655 final long totalUptime = computeUptime(rawUptime, which);
1656
1657 StringBuilder sb = new StringBuilder(128);
Evan Millar22ac0432009-03-31 11:33:18 -07001658
1659 SparseArray<? extends Uid> uidStats = getUidStats();
1660 final int NU = uidStats.size();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001661
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001662 sb.setLength(0);
1663 sb.append(prefix);
1664 sb.append(" Time on battery: ");
1665 formatTimeMs(sb, whichBatteryRealtime / 1000); sb.append("(");
1666 sb.append(formatRatioLocked(whichBatteryRealtime, totalRealtime));
1667 sb.append(") realtime, ");
1668 formatTimeMs(sb, whichBatteryUptime / 1000);
1669 sb.append("("); sb.append(formatRatioLocked(whichBatteryUptime, totalRealtime));
1670 sb.append(") uptime");
1671 pw.println(sb.toString());
1672 sb.setLength(0);
1673 sb.append(prefix);
1674 sb.append(" Total run time: ");
1675 formatTimeMs(sb, totalRealtime / 1000);
1676 sb.append("realtime, ");
1677 formatTimeMs(sb, totalUptime / 1000);
1678 sb.append("uptime, ");
1679 pw.println(sb.toString());
Dianne Hackborn5f4a5f92014-01-24 16:59:34 -08001680 pw.print(" Start clock time: ");
1681 pw.println(DateFormat.format("yyyy-MM-dd-HH-mm-ss", getStartClockTime()).toString());
1682
The Android Open Source Project10592532009-03-18 17:39:46 -07001683 final long screenOnTime = getScreenOnTime(batteryRealtime, which);
1684 final long phoneOnTime = getPhoneOnTime(batteryRealtime, which);
Dianne Hackborn58e0eef2010-09-16 01:22:10 -07001685 final long wifiRunningTime = getGlobalWifiRunningTime(batteryRealtime, which);
The Android Open Source Project10592532009-03-18 17:39:46 -07001686 final long wifiOnTime = getWifiOnTime(batteryRealtime, which);
1687 final long bluetoothOnTime = getBluetoothOnTime(batteryRealtime, which);
Dianne Hackborn617f8772009-03-31 15:04:46 -07001688 sb.setLength(0);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001689 sb.append(prefix);
1690 sb.append(" Screen on: "); formatTimeMs(sb, screenOnTime / 1000);
1691 sb.append("("); sb.append(formatRatioLocked(screenOnTime, whichBatteryRealtime));
1692 sb.append("), Input events: "); sb.append(getInputEventCount(which));
1693 sb.append(", Active phone call: "); formatTimeMs(sb, phoneOnTime / 1000);
1694 sb.append("("); sb.append(formatRatioLocked(phoneOnTime, whichBatteryRealtime));
1695 sb.append(")");
1696 pw.println(sb.toString());
1697 sb.setLength(0);
1698 sb.append(prefix);
Dianne Hackborn617f8772009-03-31 15:04:46 -07001699 sb.append(" Screen brightnesses: ");
1700 boolean didOne = false;
1701 for (int i=0; i<NUM_SCREEN_BRIGHTNESS_BINS; i++) {
1702 final long time = getScreenBrightnessTime(i, batteryRealtime, which);
1703 if (time == 0) {
1704 continue;
1705 }
1706 if (didOne) sb.append(", ");
1707 didOne = true;
1708 sb.append(SCREEN_BRIGHTNESS_NAMES[i]);
1709 sb.append(" ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001710 formatTimeMs(sb, time/1000);
Dianne Hackborn617f8772009-03-31 15:04:46 -07001711 sb.append("(");
1712 sb.append(formatRatioLocked(time, screenOnTime));
1713 sb.append(")");
1714 }
1715 if (!didOne) sb.append("No activity");
1716 pw.println(sb.toString());
The Android Open Source Project10592532009-03-18 17:39:46 -07001717
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001718 // Calculate wakelock times across all uids.
Evan Millar22ac0432009-03-31 11:33:18 -07001719 long fullWakeLockTimeTotalMicros = 0;
1720 long partialWakeLockTimeTotalMicros = 0;
Dianne Hackborn81038902012-11-26 17:04:09 -08001721
1722 final Comparator<TimerEntry> timerComparator = new Comparator<TimerEntry>() {
1723 @Override
1724 public int compare(TimerEntry lhs, TimerEntry rhs) {
1725 long lhsTime = lhs.mTime;
1726 long rhsTime = rhs.mTime;
1727 if (lhsTime < rhsTime) {
1728 return 1;
1729 }
1730 if (lhsTime > rhsTime) {
1731 return -1;
1732 }
1733 return 0;
1734 }
1735 };
1736
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001737 if (reqUid < 0) {
1738 Map<String, ? extends BatteryStats.Timer> kernelWakelocks = getKernelWakelockStats();
1739 if (kernelWakelocks.size() > 0) {
Dianne Hackborn81038902012-11-26 17:04:09 -08001740 final ArrayList<TimerEntry> timers = new ArrayList<TimerEntry>();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001741 for (Map.Entry<String, ? extends BatteryStats.Timer> ent : kernelWakelocks.entrySet()) {
Dianne Hackborn81038902012-11-26 17:04:09 -08001742 BatteryStats.Timer timer = ent.getValue();
1743 long totalTimeMillis = computeWakeLock(timer, batteryRealtime, which);
1744 if (totalTimeMillis > 0) {
1745 timers.add(new TimerEntry(ent.getKey(), 0, timer, totalTimeMillis));
1746 }
1747 }
1748 Collections.sort(timers, timerComparator);
1749 for (int i=0; i<timers.size(); i++) {
1750 TimerEntry timer = timers.get(i);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001751 String linePrefix = ": ";
1752 sb.setLength(0);
1753 sb.append(prefix);
1754 sb.append(" Kernel Wake lock ");
Dianne Hackborn81038902012-11-26 17:04:09 -08001755 sb.append(timer.mName);
1756 linePrefix = printWakeLock(sb, timer.mTimer, batteryRealtime, null,
1757 which, linePrefix);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001758 if (!linePrefix.equals(": ")) {
1759 sb.append(" realtime");
Jason Parks94b916d2010-07-20 12:39:07 -05001760 // Only print out wake locks that were held
1761 pw.println(sb.toString());
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001762 }
Evan Millarc64edde2009-04-18 12:26:32 -07001763 }
Evan Millarc64edde2009-04-18 12:26:32 -07001764 }
1765 }
Dianne Hackborn81038902012-11-26 17:04:09 -08001766
1767 final ArrayList<TimerEntry> timers = new ArrayList<TimerEntry>();
1768
Evan Millar22ac0432009-03-31 11:33:18 -07001769 for (int iu = 0; iu < NU; iu++) {
1770 Uid u = uidStats.valueAt(iu);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07001771
Evan Millar22ac0432009-03-31 11:33:18 -07001772 Map<String, ? extends BatteryStats.Uid.Wakelock> wakelocks = u.getWakelockStats();
1773 if (wakelocks.size() > 0) {
1774 for (Map.Entry<String, ? extends BatteryStats.Uid.Wakelock> ent
1775 : wakelocks.entrySet()) {
1776 Uid.Wakelock wl = ent.getValue();
1777
1778 Timer fullWakeTimer = wl.getWakeTime(WAKE_TYPE_FULL);
1779 if (fullWakeTimer != null) {
Evan Millarc64edde2009-04-18 12:26:32 -07001780 fullWakeLockTimeTotalMicros += fullWakeTimer.getTotalTimeLocked(
Evan Millar22ac0432009-03-31 11:33:18 -07001781 batteryRealtime, which);
1782 }
1783
1784 Timer partialWakeTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
1785 if (partialWakeTimer != null) {
Dianne Hackborn81038902012-11-26 17:04:09 -08001786 long totalTimeMicros = partialWakeTimer.getTotalTimeLocked(
Evan Millar22ac0432009-03-31 11:33:18 -07001787 batteryRealtime, which);
Dianne Hackborn81038902012-11-26 17:04:09 -08001788 if (totalTimeMicros > 0) {
1789 if (reqUid < 0) {
1790 // Only show the ordered list of all wake
1791 // locks if the caller is not asking for data
1792 // about a specific uid.
1793 timers.add(new TimerEntry(ent.getKey(), u.getUid(),
1794 partialWakeTimer, totalTimeMicros));
1795 }
1796 partialWakeLockTimeTotalMicros += totalTimeMicros;
1797 }
Evan Millar22ac0432009-03-31 11:33:18 -07001798 }
1799 }
1800 }
1801 }
1802
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001803 long mobileRxTotalBytes = getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which);
1804 long mobileTxTotalBytes = getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which);
1805 long wifiRxTotalBytes = getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which);
1806 long wifiTxTotalBytes = getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which);
1807 long mobileRxTotalPackets = getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which);
1808 long mobileTxTotalPackets = getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which);
1809 long wifiRxTotalPackets = getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which);
1810 long wifiTxTotalPackets = getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which);
1811
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001812 pw.print(prefix);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001813 pw.print(" Mobile total received: "); pw.print(formatBytesLocked(mobileRxTotalBytes));
1814 pw.print(", sent: "); pw.print(formatBytesLocked(mobileTxTotalBytes));
1815 pw.print(" (packets received "); pw.print(mobileRxTotalPackets);
1816 pw.print(", sent "); pw.print(mobileTxTotalPackets); pw.println(")");
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07001817 pw.print(prefix);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001818 pw.print(" Wi-Fi total received: "); pw.print(formatBytesLocked(wifiRxTotalBytes));
1819 pw.print(", sent: "); pw.print(formatBytesLocked(wifiTxTotalBytes));
1820 pw.print(" (packets received "); pw.print(wifiRxTotalPackets);
1821 pw.print(", sent "); pw.print(wifiTxTotalPackets); pw.println(")");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001822 sb.setLength(0);
1823 sb.append(prefix);
1824 sb.append(" Total full wakelock time: "); formatTimeMs(sb,
1825 (fullWakeLockTimeTotalMicros + 500) / 1000);
Dianne Hackborn81038902012-11-26 17:04:09 -08001826 sb.append(", Total partial wakelock time: "); formatTimeMs(sb,
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001827 (partialWakeLockTimeTotalMicros + 500) / 1000);
1828 pw.println(sb.toString());
Evan Millar22ac0432009-03-31 11:33:18 -07001829
Dianne Hackborn627bba72009-03-24 22:32:56 -07001830 sb.setLength(0);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001831 sb.append(prefix);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001832 sb.append(" Signal levels:");
Dianne Hackborn617f8772009-03-31 15:04:46 -07001833 didOne = false;
Wink Saville52840902011-02-18 12:40:47 -08001834 for (int i=0; i<SignalStrength.NUM_SIGNAL_STRENGTH_BINS; i++) {
Dianne Hackborn627bba72009-03-24 22:32:56 -07001835 final long time = getPhoneSignalStrengthTime(i, batteryRealtime, which);
1836 if (time == 0) {
1837 continue;
1838 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001839 sb.append("\n ");
Dianne Hackborn627bba72009-03-24 22:32:56 -07001840 didOne = true;
Wink Saville52840902011-02-18 12:40:47 -08001841 sb.append(SignalStrength.SIGNAL_STRENGTH_NAMES[i]);
Dianne Hackborn627bba72009-03-24 22:32:56 -07001842 sb.append(" ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001843 formatTimeMs(sb, time/1000);
Dianne Hackborn627bba72009-03-24 22:32:56 -07001844 sb.append("(");
1845 sb.append(formatRatioLocked(time, whichBatteryRealtime));
Dianne Hackborn617f8772009-03-31 15:04:46 -07001846 sb.append(") ");
1847 sb.append(getPhoneSignalStrengthCount(i, which));
1848 sb.append("x");
Dianne Hackborn627bba72009-03-24 22:32:56 -07001849 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001850 if (!didOne) sb.append(" (no activity)");
Dianne Hackborn627bba72009-03-24 22:32:56 -07001851 pw.println(sb.toString());
Amith Yamasanif37447b2009-10-08 18:28:01 -07001852
1853 sb.setLength(0);
1854 sb.append(prefix);
1855 sb.append(" Signal scanning time: ");
1856 formatTimeMs(sb, getPhoneSignalScanningTime(batteryRealtime, which) / 1000);
1857 pw.println(sb.toString());
1858
Dianne Hackborn627bba72009-03-24 22:32:56 -07001859 sb.setLength(0);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001860 sb.append(prefix);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001861 sb.append(" Radio types:");
Dianne Hackborn627bba72009-03-24 22:32:56 -07001862 didOne = false;
1863 for (int i=0; i<NUM_DATA_CONNECTION_TYPES; i++) {
1864 final long time = getPhoneDataConnectionTime(i, batteryRealtime, which);
1865 if (time == 0) {
1866 continue;
1867 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001868 sb.append("\n ");
Dianne Hackborn627bba72009-03-24 22:32:56 -07001869 didOne = true;
1870 sb.append(DATA_CONNECTION_NAMES[i]);
1871 sb.append(" ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001872 formatTimeMs(sb, time/1000);
Dianne Hackborn627bba72009-03-24 22:32:56 -07001873 sb.append("(");
1874 sb.append(formatRatioLocked(time, whichBatteryRealtime));
Dianne Hackborn617f8772009-03-31 15:04:46 -07001875 sb.append(") ");
1876 sb.append(getPhoneDataConnectionCount(i, which));
1877 sb.append("x");
Dianne Hackborn627bba72009-03-24 22:32:56 -07001878 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001879 if (!didOne) sb.append(" (no activity)");
Dianne Hackborn627bba72009-03-24 22:32:56 -07001880 pw.println(sb.toString());
Amith Yamasani3f7e35c2009-07-13 16:02:45 -07001881
1882 sb.setLength(0);
1883 sb.append(prefix);
1884 sb.append(" Radio data uptime when unplugged: ");
1885 sb.append(getRadioDataUptime() / 1000);
1886 sb.append(" ms");
1887 pw.println(sb.toString());
1888
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001889 sb.setLength(0);
1890 sb.append(prefix);
1891 sb.append(" Wifi on: "); formatTimeMs(sb, wifiOnTime / 1000);
1892 sb.append("("); sb.append(formatRatioLocked(wifiOnTime, whichBatteryRealtime));
1893 sb.append("), Wifi running: "); formatTimeMs(sb, wifiRunningTime / 1000);
1894 sb.append("("); sb.append(formatRatioLocked(wifiRunningTime, whichBatteryRealtime));
1895 sb.append("), Bluetooth on: "); formatTimeMs(sb, bluetoothOnTime / 1000);
1896 sb.append("("); sb.append(formatRatioLocked(bluetoothOnTime, whichBatteryRealtime));
1897 sb.append(")");
1898 pw.println(sb.toString());
Dianne Hackborn617f8772009-03-31 15:04:46 -07001899
The Android Open Source Project10592532009-03-18 17:39:46 -07001900 pw.println(" ");
1901
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001902 if (which == STATS_SINCE_UNPLUGGED) {
The Android Open Source Project10592532009-03-18 17:39:46 -07001903 if (getIsOnBattery()) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001904 pw.print(prefix); pw.println(" Device is currently unplugged");
1905 pw.print(prefix); pw.print(" Discharge cycle start level: ");
1906 pw.println(getDischargeStartLevel());
1907 pw.print(prefix); pw.print(" Discharge cycle current level: ");
1908 pw.println(getDischargeCurrentLevel());
Dianne Hackborn99d04522010-08-20 13:43:00 -07001909 } else {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001910 pw.print(prefix); pw.println(" Device is currently plugged into power");
1911 pw.print(prefix); pw.print(" Last discharge cycle start level: ");
1912 pw.println(getDischargeStartLevel());
1913 pw.print(prefix); pw.print(" Last discharge cycle end level: ");
1914 pw.println(getDischargeCurrentLevel());
The Android Open Source Project10592532009-03-18 17:39:46 -07001915 }
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08001916 pw.print(prefix); pw.print(" Amount discharged while screen on: ");
1917 pw.println(getDischargeAmountScreenOn());
1918 pw.print(prefix); pw.print(" Amount discharged while screen off: ");
1919 pw.println(getDischargeAmountScreenOff());
Dianne Hackborn617f8772009-03-31 15:04:46 -07001920 pw.println(" ");
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07001921 } else {
1922 pw.print(prefix); pw.println(" Device battery use since last full charge");
1923 pw.print(prefix); pw.print(" Amount discharged (lower bound): ");
1924 pw.println(getLowDischargeAmountSinceCharge());
1925 pw.print(prefix); pw.print(" Amount discharged (upper bound): ");
1926 pw.println(getHighDischargeAmountSinceCharge());
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08001927 pw.print(prefix); pw.print(" Amount discharged while screen on: ");
1928 pw.println(getDischargeAmountScreenOnSinceCharge());
1929 pw.print(prefix); pw.print(" Amount discharged while screen off: ");
1930 pw.println(getDischargeAmountScreenOffSinceCharge());
Dianne Hackborn81038902012-11-26 17:04:09 -08001931 pw.println();
The Android Open Source Project10592532009-03-18 17:39:46 -07001932 }
Dianne Hackborn81038902012-11-26 17:04:09 -08001933
Dianne Hackborna7c837f2014-01-15 16:20:44 -08001934 BatteryStatsHelper helper = new BatteryStatsHelper(context);
1935 helper.create(this);
1936 helper.refreshStats(which, UserHandle.USER_ALL);
1937 List<BatterySipper> sippers = helper.getUsageList();
1938 if (sippers != null && sippers.size() > 0) {
1939 pw.print(prefix); pw.println(" Estimated power use (mAh):");
1940 pw.print(prefix); pw.print(" Capacity: ");
1941 printmAh(pw, helper.getPowerProfile().getBatteryCapacity());
Dianne Hackborn099bc622014-01-22 13:39:16 -08001942 pw.print(", Computed drain: "); printmAh(pw, helper.getComputedPower());
Dianne Hackborna7c837f2014-01-15 16:20:44 -08001943 pw.print(", Min drain: "); printmAh(pw, helper.getMinDrainedPower());
1944 pw.print(", Max drain: "); printmAh(pw, helper.getMaxDrainedPower());
1945 pw.println();
1946 for (int i=0; i<sippers.size(); i++) {
1947 BatterySipper bs = sippers.get(i);
1948 switch (bs.drainType) {
1949 case IDLE:
1950 pw.print(prefix); pw.print(" Idle: "); printmAh(pw, bs.value);
1951 pw.println();
1952 break;
1953 case CELL:
1954 pw.print(prefix); pw.print(" Cell standby: "); printmAh(pw, bs.value);
1955 pw.println();
1956 break;
1957 case PHONE:
1958 pw.print(prefix); pw.print(" Phone calls: "); printmAh(pw, bs.value);
1959 pw.println();
1960 break;
1961 case WIFI:
1962 pw.print(prefix); pw.print(" Wifi: "); printmAh(pw, bs.value);
1963 pw.println();
1964 break;
1965 case BLUETOOTH:
1966 pw.print(prefix); pw.print(" Bluetooth: "); printmAh(pw, bs.value);
1967 pw.println();
1968 break;
1969 case SCREEN:
1970 pw.print(prefix); pw.print(" Screen: "); printmAh(pw, bs.value);
1971 pw.println();
1972 break;
1973 case APP:
1974 pw.print(prefix); pw.print(" Uid "); pw.print(bs.uidObj.getUid());
1975 pw.print(": "); printmAh(pw, bs.value); pw.println();
1976 break;
1977 case USER:
1978 pw.print(prefix); pw.print(" User "); pw.print(bs.userId);
1979 pw.print(": "); printmAh(pw, bs.value); pw.println();
1980 break;
1981 case UNACCOUNTED:
1982 pw.print(prefix); pw.print(" Unaccounted: "); printmAh(pw, bs.value);
1983 pw.println();
1984 break;
1985 case OVERCOUNTED:
1986 pw.print(prefix); pw.print(" Over-counted: "); printmAh(pw, bs.value);
1987 pw.println();
1988 break;
1989 }
1990 }
Dianne Hackbornc46809e2014-01-15 16:20:44 -08001991 pw.println();
Dianne Hackborna7c837f2014-01-15 16:20:44 -08001992 }
1993
Dianne Hackborn81038902012-11-26 17:04:09 -08001994 if (timers.size() > 0) {
1995 Collections.sort(timers, timerComparator);
1996 pw.print(prefix); pw.println(" All partial wake locks:");
1997 for (int i=0; i<timers.size(); i++) {
1998 TimerEntry timer = timers.get(i);
1999 sb.setLength(0);
Dianne Hackborna4cc2052013-07-08 17:31:25 -07002000 sb.append(" Wake lock ");
2001 UserHandle.formatUid(sb, timer.mId);
Dianne Hackborn81038902012-11-26 17:04:09 -08002002 sb.append(" ");
2003 sb.append(timer.mName);
2004 printWakeLock(sb, timer.mTimer, batteryRealtime, null, which, ": ");
2005 sb.append(" realtime");
2006 pw.println(sb.toString());
2007 }
2008 timers.clear();
2009 pw.println();
2010 }
Evan Millar22ac0432009-03-31 11:33:18 -07002011
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002012 for (int iu=0; iu<NU; iu++) {
2013 final int uid = uidStats.keyAt(iu);
Dianne Hackborne4a59512010-12-07 11:08:07 -08002014 if (reqUid >= 0 && uid != reqUid && uid != Process.SYSTEM_UID) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002015 continue;
2016 }
2017
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002018 Uid u = uidStats.valueAt(iu);
Dianne Hackborna4cc2052013-07-08 17:31:25 -07002019
2020 pw.print(prefix);
2021 pw.print(" ");
2022 UserHandle.formatUid(pw, uid);
2023 pw.println(":");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002024 boolean uidActivity = false;
2025
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002026 long mobileRxBytes = u.getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which);
2027 long mobileTxBytes = u.getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which);
2028 long wifiRxBytes = u.getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which);
2029 long wifiTxBytes = u.getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which);
2030 long mobileRxPackets = u.getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which);
2031 long mobileTxPackets = u.getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which);
2032 long wifiRxPackets = u.getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which);
2033 long wifiTxPackets = u.getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which);
The Android Open Source Project10592532009-03-18 17:39:46 -07002034 long fullWifiLockOnTime = u.getFullWifiLockTime(batteryRealtime, which);
Nick Pelly6ccaa542012-06-15 15:22:47 -07002035 long wifiScanTime = u.getWifiScanTime(batteryRealtime, which);
Dianne Hackborn58e0eef2010-09-16 01:22:10 -07002036 long uidWifiRunningTime = u.getWifiRunningTime(batteryRealtime, which);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07002037
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002038 if (mobileRxBytes > 0 || mobileTxBytes > 0
2039 || mobileRxPackets > 0 || mobileTxPackets > 0) {
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07002040 pw.print(prefix); pw.print(" Mobile network: ");
2041 pw.print(formatBytesLocked(mobileRxBytes)); pw.print(" received, ");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002042 pw.print(formatBytesLocked(mobileTxBytes));
2043 pw.print(" sent (packets "); pw.print(mobileRxPackets);
2044 pw.print(" received, "); pw.print(mobileTxPackets); pw.println(" sent)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002045 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002046 if (wifiRxBytes > 0 || wifiTxBytes > 0 || wifiRxPackets > 0 || wifiTxPackets > 0) {
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07002047 pw.print(prefix); pw.print(" Wi-Fi network: ");
2048 pw.print(formatBytesLocked(wifiRxBytes)); pw.print(" received, ");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002049 pw.print(formatBytesLocked(wifiTxBytes));
2050 pw.print(" sent (packets "); pw.print(wifiRxPackets);
2051 pw.print(" received, "); pw.print(wifiTxPackets); pw.println(" sent)");
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07002052 }
2053
Dianne Hackborn617f8772009-03-31 15:04:46 -07002054 if (u.hasUserActivity()) {
2055 boolean hasData = false;
Raph Levien4c7a4a72012-08-03 14:32:39 -07002056 for (int i=0; i<Uid.NUM_USER_ACTIVITY_TYPES; i++) {
Dianne Hackborn617f8772009-03-31 15:04:46 -07002057 int val = u.getUserActivityCount(i, which);
2058 if (val != 0) {
2059 if (!hasData) {
2060 sb.setLength(0);
2061 sb.append(" User activity: ");
2062 hasData = true;
2063 } else {
2064 sb.append(", ");
2065 }
2066 sb.append(val);
2067 sb.append(" ");
2068 sb.append(Uid.USER_ACTIVITY_TYPES[i]);
2069 }
2070 }
2071 if (hasData) {
2072 pw.println(sb.toString());
2073 }
2074 }
2075
Nick Pelly6ccaa542012-06-15 15:22:47 -07002076 if (fullWifiLockOnTime != 0 || wifiScanTime != 0
Dianne Hackborn58e0eef2010-09-16 01:22:10 -07002077 || uidWifiRunningTime != 0) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002078 sb.setLength(0);
Dianne Hackborn58e0eef2010-09-16 01:22:10 -07002079 sb.append(prefix); sb.append(" Wifi Running: ");
2080 formatTimeMs(sb, uidWifiRunningTime / 1000);
2081 sb.append("("); sb.append(formatRatioLocked(uidWifiRunningTime,
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002082 whichBatteryRealtime)); sb.append(")\n");
2083 sb.append(prefix); sb.append(" Full Wifi Lock: ");
Nick Pelly6ccaa542012-06-15 15:22:47 -07002084 formatTimeMs(sb, fullWifiLockOnTime / 1000);
2085 sb.append("("); sb.append(formatRatioLocked(fullWifiLockOnTime,
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002086 whichBatteryRealtime)); sb.append(")\n");
Nick Pelly6ccaa542012-06-15 15:22:47 -07002087 sb.append(prefix); sb.append(" Wifi Scan: ");
2088 formatTimeMs(sb, wifiScanTime / 1000);
2089 sb.append("("); sb.append(formatRatioLocked(wifiScanTime,
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002090 whichBatteryRealtime)); sb.append(")");
2091 pw.println(sb.toString());
The Android Open Source Project10592532009-03-18 17:39:46 -07002092 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002093
2094 Map<String, ? extends BatteryStats.Uid.Wakelock> wakelocks = u.getWakelockStats();
2095 if (wakelocks.size() > 0) {
Dianne Hackbornc24ab862011-10-18 15:55:03 -07002096 long totalFull = 0, totalPartial = 0, totalWindow = 0;
2097 int count = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002098 for (Map.Entry<String, ? extends BatteryStats.Uid.Wakelock> ent
2099 : wakelocks.entrySet()) {
2100 Uid.Wakelock wl = ent.getValue();
2101 String linePrefix = ": ";
2102 sb.setLength(0);
2103 sb.append(prefix);
2104 sb.append(" Wake lock ");
2105 sb.append(ent.getKey());
2106 linePrefix = printWakeLock(sb, wl.getWakeTime(WAKE_TYPE_FULL), batteryRealtime,
2107 "full", which, linePrefix);
2108 linePrefix = printWakeLock(sb, wl.getWakeTime(WAKE_TYPE_PARTIAL), batteryRealtime,
2109 "partial", which, linePrefix);
2110 linePrefix = printWakeLock(sb, wl.getWakeTime(WAKE_TYPE_WINDOW), batteryRealtime,
2111 "window", which, linePrefix);
2112 if (!linePrefix.equals(": ")) {
2113 sb.append(" realtime");
Jason Parks94b916d2010-07-20 12:39:07 -05002114 // Only print out wake locks that were held
2115 pw.println(sb.toString());
2116 uidActivity = true;
Dianne Hackbornc24ab862011-10-18 15:55:03 -07002117 count++;
2118 }
2119 totalFull += computeWakeLock(wl.getWakeTime(WAKE_TYPE_FULL),
2120 batteryRealtime, which);
2121 totalPartial += computeWakeLock(wl.getWakeTime(WAKE_TYPE_PARTIAL),
2122 batteryRealtime, which);
2123 totalWindow += computeWakeLock(wl.getWakeTime(WAKE_TYPE_WINDOW),
2124 batteryRealtime, which);
2125 }
2126 if (count > 1) {
2127 if (totalFull != 0 || totalPartial != 0 || totalWindow != 0) {
2128 sb.setLength(0);
2129 sb.append(prefix);
2130 sb.append(" TOTAL wake: ");
2131 boolean needComma = false;
2132 if (totalFull != 0) {
2133 needComma = true;
2134 formatTimeMs(sb, totalFull);
2135 sb.append("full");
2136 }
2137 if (totalPartial != 0) {
2138 if (needComma) {
2139 sb.append(", ");
2140 }
2141 needComma = true;
2142 formatTimeMs(sb, totalPartial);
2143 sb.append("partial");
2144 }
2145 if (totalWindow != 0) {
2146 if (needComma) {
2147 sb.append(", ");
2148 }
2149 needComma = true;
2150 formatTimeMs(sb, totalWindow);
2151 sb.append("window");
2152 }
2153 sb.append(" realtime");
2154 pw.println(sb.toString());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002155 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002156 }
2157 }
2158
2159 Map<Integer, ? extends BatteryStats.Uid.Sensor> sensors = u.getSensorStats();
2160 if (sensors.size() > 0) {
2161 for (Map.Entry<Integer, ? extends BatteryStats.Uid.Sensor> ent
2162 : sensors.entrySet()) {
2163 Uid.Sensor se = ent.getValue();
2164 int sensorNumber = ent.getKey();
2165 sb.setLength(0);
2166 sb.append(prefix);
2167 sb.append(" Sensor ");
2168 int handle = se.getHandle();
2169 if (handle == Uid.Sensor.GPS) {
2170 sb.append("GPS");
2171 } else {
2172 sb.append(handle);
2173 }
2174 sb.append(": ");
2175
2176 Timer timer = se.getSensorTime();
2177 if (timer != null) {
2178 // Convert from microseconds to milliseconds with rounding
Evan Millarc64edde2009-04-18 12:26:32 -07002179 long totalTime = (timer.getTotalTimeLocked(
2180 batteryRealtime, which) + 500) / 1000;
2181 int count = timer.getCountLocked(which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002182 //timer.logState();
2183 if (totalTime != 0) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002184 formatTimeMs(sb, totalTime);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002185 sb.append("realtime (");
2186 sb.append(count);
2187 sb.append(" times)");
2188 } else {
2189 sb.append("(not used)");
2190 }
2191 } else {
2192 sb.append("(not used)");
2193 }
2194
2195 pw.println(sb.toString());
2196 uidActivity = true;
2197 }
2198 }
2199
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002200 Timer vibTimer = u.getVibratorOnTimer();
2201 if (vibTimer != null) {
2202 // Convert from microseconds to milliseconds with rounding
2203 long totalTime = (vibTimer.getTotalTimeLocked(
2204 batteryRealtime, which) + 500) / 1000;
2205 int count = vibTimer.getCountLocked(which);
2206 //timer.logState();
2207 if (totalTime != 0) {
2208 sb.setLength(0);
2209 sb.append(prefix);
2210 sb.append(" Vibrator: ");
2211 formatTimeMs(sb, totalTime);
2212 sb.append("realtime (");
2213 sb.append(count);
2214 sb.append(" times)");
2215 pw.println(sb.toString());
2216 uidActivity = true;
2217 }
2218 }
2219
Jeff Sharkey3e013e82013-04-25 14:48:19 -07002220 Timer fgTimer = u.getForegroundActivityTimer();
2221 if (fgTimer != null) {
2222 // Convert from microseconds to milliseconds with rounding
2223 long totalTime = (fgTimer.getTotalTimeLocked(batteryRealtime, which) + 500) / 1000;
2224 int count = fgTimer.getCountLocked(which);
2225 if (totalTime != 0) {
2226 sb.setLength(0);
2227 sb.append(prefix);
2228 sb.append(" Foreground activities: ");
2229 formatTimeMs(sb, totalTime);
2230 sb.append("realtime (");
2231 sb.append(count);
2232 sb.append(" times)");
2233 pw.println(sb.toString());
2234 uidActivity = true;
2235 }
2236 }
2237
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002238 Map<String, ? extends BatteryStats.Uid.Proc> processStats = u.getProcessStats();
2239 if (processStats.size() > 0) {
2240 for (Map.Entry<String, ? extends BatteryStats.Uid.Proc> ent
2241 : processStats.entrySet()) {
2242 Uid.Proc ps = ent.getValue();
2243 long userTime;
2244 long systemTime;
Jeff Sharkey3e013e82013-04-25 14:48:19 -07002245 long foregroundTime;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002246 int starts;
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07002247 int numExcessive;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002248
2249 userTime = ps.getUserTime(which);
2250 systemTime = ps.getSystemTime(which);
Jeff Sharkey3e013e82013-04-25 14:48:19 -07002251 foregroundTime = ps.getForegroundTime(which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002252 starts = ps.getStarts(which);
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07002253 numExcessive = which == STATS_SINCE_CHARGED
Dianne Hackborn287952c2010-09-22 22:34:31 -07002254 ? ps.countExcessivePowers() : 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002255
Jeff Sharkey3e013e82013-04-25 14:48:19 -07002256 if (userTime != 0 || systemTime != 0 || foregroundTime != 0 || starts != 0
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07002257 || numExcessive != 0) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002258 sb.setLength(0);
2259 sb.append(prefix); sb.append(" Proc ");
2260 sb.append(ent.getKey()); sb.append(":\n");
2261 sb.append(prefix); sb.append(" CPU: ");
2262 formatTime(sb, userTime); sb.append("usr + ");
Jeff Sharkey3e013e82013-04-25 14:48:19 -07002263 formatTime(sb, systemTime); sb.append("krn ; ");
2264 formatTime(sb, foregroundTime); sb.append("fg");
Dianne Hackborn0d903a82010-09-07 23:51:03 -07002265 if (starts != 0) {
Dianne Hackbornb8071d792010-09-09 16:45:15 -07002266 sb.append("\n"); sb.append(prefix); sb.append(" ");
2267 sb.append(starts); sb.append(" proc starts");
Dianne Hackborn0d903a82010-09-07 23:51:03 -07002268 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002269 pw.println(sb.toString());
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07002270 for (int e=0; e<numExcessive; e++) {
Dianne Hackborn287952c2010-09-22 22:34:31 -07002271 Uid.Proc.ExcessivePower ew = ps.getExcessivePower(e);
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07002272 if (ew != null) {
Dianne Hackborn287952c2010-09-22 22:34:31 -07002273 pw.print(prefix); pw.print(" * Killed for ");
2274 if (ew.type == Uid.Proc.ExcessivePower.TYPE_WAKE) {
2275 pw.print("wake lock");
2276 } else if (ew.type == Uid.Proc.ExcessivePower.TYPE_CPU) {
2277 pw.print("cpu");
2278 } else {
2279 pw.print("unknown");
2280 }
2281 pw.print(" use: ");
Dianne Hackborn1ebccf52010-08-15 13:04:34 -07002282 TimeUtils.formatDuration(ew.usedTime, pw);
2283 pw.print(" over ");
2284 TimeUtils.formatDuration(ew.overTime, pw);
Robert Greenwalta029ea12013-09-25 16:38:12 -07002285 if (ew.overTime != 0) {
2286 pw.print(" (");
2287 pw.print((ew.usedTime*100)/ew.overTime);
2288 pw.println("%)");
2289 }
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07002290 }
2291 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002292 uidActivity = true;
2293 }
2294 }
2295 }
2296
2297 Map<String, ? extends BatteryStats.Uid.Pkg> packageStats = u.getPackageStats();
2298 if (packageStats.size() > 0) {
2299 for (Map.Entry<String, ? extends BatteryStats.Uid.Pkg> ent
2300 : packageStats.entrySet()) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002301 pw.print(prefix); pw.print(" Apk "); pw.print(ent.getKey()); pw.println(":");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002302 boolean apkActivity = false;
2303 Uid.Pkg ps = ent.getValue();
2304 int wakeups = ps.getWakeups(which);
2305 if (wakeups != 0) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002306 pw.print(prefix); pw.print(" ");
2307 pw.print(wakeups); pw.println(" wakeup alarms");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002308 apkActivity = true;
2309 }
2310 Map<String, ? extends Uid.Pkg.Serv> serviceStats = ps.getServiceStats();
2311 if (serviceStats.size() > 0) {
2312 for (Map.Entry<String, ? extends BatteryStats.Uid.Pkg.Serv> sent
2313 : serviceStats.entrySet()) {
2314 BatteryStats.Uid.Pkg.Serv ss = sent.getValue();
2315 long startTime = ss.getStartTime(batteryUptime, which);
2316 int starts = ss.getStarts(which);
2317 int launches = ss.getLaunches(which);
2318 if (startTime != 0 || starts != 0 || launches != 0) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002319 sb.setLength(0);
2320 sb.append(prefix); sb.append(" Service ");
2321 sb.append(sent.getKey()); sb.append(":\n");
2322 sb.append(prefix); sb.append(" Created for: ");
2323 formatTimeMs(sb, startTime / 1000);
Jeff Sharkey3e013e82013-04-25 14:48:19 -07002324 sb.append("uptime\n");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002325 sb.append(prefix); sb.append(" Starts: ");
2326 sb.append(starts);
2327 sb.append(", launches: "); sb.append(launches);
2328 pw.println(sb.toString());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002329 apkActivity = true;
2330 }
2331 }
2332 }
2333 if (!apkActivity) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002334 pw.print(prefix); pw.println(" (nothing executed)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002335 }
2336 uidActivity = true;
2337 }
2338 }
2339 if (!uidActivity) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002340 pw.print(prefix); pw.println(" (nothing executed)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002341 }
2342 }
2343 }
2344
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002345 static void printBitDescriptions(PrintWriter pw, int oldval, int newval, HistoryTag wakelockTag,
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002346 BitDescription[] descriptions, boolean longNames) {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002347 int diff = oldval ^ newval;
2348 if (diff == 0) return;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002349 boolean didWake = false;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002350 for (int i=0; i<descriptions.length; i++) {
2351 BitDescription bd = descriptions[i];
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002352 if ((diff&bd.mask) != 0) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002353 pw.print(longNames ? " " : ",");
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002354 if (bd.shift < 0) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002355 pw.print((newval&bd.mask) != 0 ? "+" : "-");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002356 pw.print(longNames ? bd.name : bd.shortName);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002357 if (bd.mask == HistoryItem.STATE_WAKE_LOCK_FLAG && wakelockTag != null) {
2358 didWake = true;
2359 pw.print("=");
2360 if (longNames) {
2361 UserHandle.formatUid(pw, wakelockTag.uid);
2362 pw.print(":\"");
2363 pw.print(wakelockTag.string);
2364 pw.print("\"");
2365 } else {
2366 pw.print(wakelockTag.poolIdx);
2367 }
2368 }
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002369 } else {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002370 pw.print(longNames ? bd.name : bd.shortName);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002371 pw.print("=");
2372 int val = (newval&bd.mask)>>bd.shift;
2373 if (bd.values != null && val >= 0 && val < bd.values.length) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002374 pw.print(longNames? bd.values[val] : bd.shortValues[val]);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002375 } else {
2376 pw.print(val);
2377 }
2378 }
2379 }
2380 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002381 if (!didWake && wakelockTag != null) {
2382 pw.print(longNames ? "wake_lock=" : "w=");
2383 if (longNames) {
2384 UserHandle.formatUid(pw, wakelockTag.uid);
2385 pw.print(":\"");
2386 pw.print(wakelockTag.string);
2387 pw.print("\"");
2388 } else {
2389 pw.print(wakelockTag.poolIdx);
2390 }
2391 }
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002392 }
2393
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002394 public void prepareForDumpLocked() {
2395 }
2396
2397 public static class HistoryPrinter {
2398 int oldState = 0;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002399 int oldLevel = -1;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002400 int oldStatus = -1;
2401 int oldHealth = -1;
2402 int oldPlug = -1;
2403 int oldTemp = -1;
2404 int oldVolt = -1;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002405 long lastTime = -1;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002406
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002407 public void printNextItem(PrintWriter pw, HistoryItem rec, long now, boolean checkin) {
2408 if (!checkin) {
2409 pw.print(" ");
2410 TimeUtils.formatDuration(rec.time-now, pw, TimeUtils.HUNDRED_DAY_FIELD_LEN);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002411 pw.print(" (");
2412 pw.print(rec.numReadInts);
2413 pw.print(") ");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002414 } else {
2415 if (lastTime < 0) {
2416 pw.print("@");
2417 pw.print(rec.time-now);
2418 } else {
2419 pw.print(rec.time-lastTime);
2420 }
2421 lastTime = rec.time;
2422 }
2423 if (rec.cmd == HistoryItem.CMD_START) {
2424 if (checkin) {
2425 pw.print(":");
2426 }
2427 pw.println("START");
2428 } else if (rec.cmd == HistoryItem.CMD_OVERFLOW) {
2429 if (checkin) {
2430 pw.print(":");
2431 }
2432 pw.println("*OVERFLOW*");
2433 } else {
2434 if (!checkin) {
2435 if (rec.batteryLevel < 10) pw.print("00");
2436 else if (rec.batteryLevel < 100) pw.print("0");
2437 pw.print(rec.batteryLevel);
2438 pw.print(" ");
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08002439 if (rec.states < 0) ;
2440 else if (rec.states < 0x10) pw.print("0000000");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002441 else if (rec.states < 0x100) pw.print("000000");
2442 else if (rec.states < 0x1000) pw.print("00000");
2443 else if (rec.states < 0x10000) pw.print("0000");
2444 else if (rec.states < 0x100000) pw.print("000");
2445 else if (rec.states < 0x1000000) pw.print("00");
2446 else if (rec.states < 0x10000000) pw.print("0");
2447 pw.print(Integer.toHexString(rec.states));
2448 } else {
2449 if (oldLevel != rec.batteryLevel) {
2450 oldLevel = rec.batteryLevel;
2451 pw.print(",Bl="); pw.print(rec.batteryLevel);
2452 }
2453 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002454 if (oldStatus != rec.batteryStatus) {
2455 oldStatus = rec.batteryStatus;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002456 pw.print(checkin ? ",Bs=" : " status=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002457 switch (oldStatus) {
2458 case BatteryManager.BATTERY_STATUS_UNKNOWN:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002459 pw.print(checkin ? "?" : "unknown");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002460 break;
2461 case BatteryManager.BATTERY_STATUS_CHARGING:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002462 pw.print(checkin ? "c" : "charging");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002463 break;
2464 case BatteryManager.BATTERY_STATUS_DISCHARGING:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002465 pw.print(checkin ? "d" : "discharging");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002466 break;
2467 case BatteryManager.BATTERY_STATUS_NOT_CHARGING:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002468 pw.print(checkin ? "n" : "not-charging");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002469 break;
2470 case BatteryManager.BATTERY_STATUS_FULL:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002471 pw.print(checkin ? "f" : "full");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002472 break;
2473 default:
2474 pw.print(oldStatus);
2475 break;
2476 }
2477 }
2478 if (oldHealth != rec.batteryHealth) {
2479 oldHealth = rec.batteryHealth;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002480 pw.print(checkin ? ",Bh=" : " health=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002481 switch (oldHealth) {
2482 case BatteryManager.BATTERY_HEALTH_UNKNOWN:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002483 pw.print(checkin ? "?" : "unknown");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002484 break;
2485 case BatteryManager.BATTERY_HEALTH_GOOD:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002486 pw.print(checkin ? "g" : "good");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002487 break;
2488 case BatteryManager.BATTERY_HEALTH_OVERHEAT:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002489 pw.print(checkin ? "h" : "overheat");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002490 break;
2491 case BatteryManager.BATTERY_HEALTH_DEAD:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002492 pw.print(checkin ? "d" : "dead");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002493 break;
2494 case BatteryManager.BATTERY_HEALTH_OVER_VOLTAGE:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002495 pw.print(checkin ? "v" : "over-voltage");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002496 break;
2497 case BatteryManager.BATTERY_HEALTH_UNSPECIFIED_FAILURE:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002498 pw.print(checkin ? "f" : "failure");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002499 break;
2500 default:
2501 pw.print(oldHealth);
2502 break;
2503 }
2504 }
2505 if (oldPlug != rec.batteryPlugType) {
2506 oldPlug = rec.batteryPlugType;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002507 pw.print(checkin ? ",Bp=" : " plug=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002508 switch (oldPlug) {
2509 case 0:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002510 pw.print(checkin ? "n" : "none");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002511 break;
2512 case BatteryManager.BATTERY_PLUGGED_AC:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002513 pw.print(checkin ? "a" : "ac");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002514 break;
2515 case BatteryManager.BATTERY_PLUGGED_USB:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002516 pw.print(checkin ? "u" : "usb");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002517 break;
Brian Muramatsu37a37f42012-08-14 15:21:02 -07002518 case BatteryManager.BATTERY_PLUGGED_WIRELESS:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002519 pw.print(checkin ? "w" : "wireless");
Brian Muramatsu37a37f42012-08-14 15:21:02 -07002520 break;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002521 default:
2522 pw.print(oldPlug);
2523 break;
2524 }
2525 }
2526 if (oldTemp != rec.batteryTemperature) {
2527 oldTemp = rec.batteryTemperature;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002528 pw.print(checkin ? ",Bt=" : " temp=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002529 pw.print(oldTemp);
2530 }
2531 if (oldVolt != rec.batteryVoltage) {
2532 oldVolt = rec.batteryVoltage;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002533 pw.print(checkin ? ",Bv=" : " volt=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002534 pw.print(oldVolt);
2535 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002536 printBitDescriptions(pw, oldState, rec.states, rec.wakelockTag,
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002537 HISTORY_STATE_DESCRIPTIONS, !checkin);
Dianne Hackborn099bc622014-01-22 13:39:16 -08002538 if (rec.eventCode != HistoryItem.EVENT_NONE) {
2539 switch (rec.eventCode) {
2540 case HistoryItem.EVENT_PROC_STARTED:
2541 pw.print(checkin ? ",PrSt=" : " procstart=");
2542 break;
2543 case HistoryItem.EVENT_PROC_FINISHED:
2544 pw.print(checkin ? ",PrFn=" : " procfin=");
2545 break;
2546 default:
2547 if (checkin) {
2548 pw.print(",?cmd_");
2549 pw.print(rec.eventCode);
2550 pw.print("=");
2551 } else {
2552 pw.print(" cmd_");
2553 pw.print(rec.eventCode);
2554 pw.print("=");
2555 }
2556 break;
2557 }
2558 if (checkin) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002559 pw.print(rec.eventTag.poolIdx);
Dianne Hackborn099bc622014-01-22 13:39:16 -08002560 } else {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002561 UserHandle.formatUid(pw, rec.eventTag.uid);
2562 pw.print(":\"");
2563 pw.print(rec.eventTag.string);
2564 pw.print("\"");
Dianne Hackborn099bc622014-01-22 13:39:16 -08002565 }
2566 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002567 pw.println();
2568 }
2569 oldState = rec.states;
2570 }
2571 }
2572
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002573 private void printSizeValue(PrintWriter pw, long size) {
2574 float result = size;
2575 String suffix = "";
2576 if (result >= 10*1024) {
2577 suffix = "KB";
2578 result = result / 1024;
2579 }
2580 if (result >= 10*1024) {
2581 suffix = "MB";
2582 result = result / 1024;
2583 }
2584 if (result >= 10*1024) {
2585 suffix = "GB";
2586 result = result / 1024;
2587 }
2588 if (result >= 10*1024) {
2589 suffix = "TB";
2590 result = result / 1024;
2591 }
2592 if (result >= 10*1024) {
2593 suffix = "PB";
2594 result = result / 1024;
2595 }
2596 pw.print((int)result);
2597 pw.print(suffix);
2598 }
2599
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002600 /**
2601 * Dumps a human-readable summary of the battery statistics to the given PrintWriter.
2602 *
2603 * @param pw a Printer to receive the dump output.
2604 */
2605 @SuppressWarnings("unused")
Dianne Hackborn099bc622014-01-22 13:39:16 -08002606 public void dumpLocked(Context context, PrintWriter pw, boolean isUnpluggedOnly, int reqUid,
2607 boolean historyOnly) {
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002608 prepareForDumpLocked();
2609
2610 long now = getHistoryBaseTime() + SystemClock.elapsedRealtime();
2611
Dianne Hackbornce2ef762010-09-20 11:39:14 -07002612 final HistoryItem rec = new HistoryItem();
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002613 final long historyTotalSize = getHistoryTotalSize();
2614 final long historyUsedSize = getHistoryUsedSize();
Dianne Hackbornce2ef762010-09-20 11:39:14 -07002615 if (startIteratingHistoryLocked()) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002616 try {
2617 pw.print("Battery History (");
2618 pw.print((100*historyUsedSize)/historyTotalSize);
2619 pw.print("% used, ");
2620 printSizeValue(pw, historyUsedSize);
2621 pw.print(" used of ");
2622 printSizeValue(pw, historyTotalSize);
2623 pw.print(", ");
2624 pw.print(getHistoryStringPoolSize());
2625 pw.print(" strings using ");
2626 printSizeValue(pw, getHistoryStringPoolBytes());
2627 pw.println("):");
2628 HistoryPrinter hprinter = new HistoryPrinter();
2629 while (getNextHistoryLocked(rec)) {
2630 hprinter.printNextItem(pw, rec, now, false);
2631 }
2632 pw.println();
2633 } finally {
2634 finishIteratingHistoryLocked();
Dianne Hackborn32907cf2010-06-10 17:50:20 -07002635 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002636 }
2637
2638 if (startIteratingOldHistoryLocked()) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002639 try {
2640 pw.println("Old battery History:");
2641 HistoryPrinter hprinter = new HistoryPrinter();
2642 while (getNextOldHistoryLocked(rec)) {
2643 hprinter.printNextItem(pw, rec, now, false);
2644 }
2645 pw.println();
2646 } finally {
2647 finishIteratingOldHistoryLocked();
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002648 }
Dianne Hackbornb5e31652010-09-07 12:13:55 -07002649 }
Dianne Hackborn099bc622014-01-22 13:39:16 -08002650
2651 if (historyOnly) {
2652 return;
2653 }
2654
Dianne Hackbornb5e31652010-09-07 12:13:55 -07002655 SparseArray<? extends Uid> uidStats = getUidStats();
2656 final int NU = uidStats.size();
2657 boolean didPid = false;
2658 long nowRealtime = SystemClock.elapsedRealtime();
Dianne Hackbornb5e31652010-09-07 12:13:55 -07002659 for (int i=0; i<NU; i++) {
2660 Uid uid = uidStats.valueAt(i);
2661 SparseArray<? extends Uid.Pid> pids = uid.getPidStats();
2662 if (pids != null) {
2663 for (int j=0; j<pids.size(); j++) {
2664 Uid.Pid pid = pids.valueAt(j);
2665 if (!didPid) {
2666 pw.println("Per-PID Stats:");
2667 didPid = true;
2668 }
2669 long time = pid.mWakeSum + (pid.mWakeStart != 0
2670 ? (nowRealtime - pid.mWakeStart) : 0);
2671 pw.print(" PID "); pw.print(pids.keyAt(j));
2672 pw.print(" wake time: ");
2673 TimeUtils.formatDuration(time, pw);
2674 pw.println("");
2675 }
2676 }
2677 }
2678 if (didPid) {
2679 pw.println("");
Dianne Hackborn32907cf2010-06-10 17:50:20 -07002680 }
Jeff Sharkeyec43a6b2013-04-30 13:33:18 -07002681
2682 if (!isUnpluggedOnly) {
2683 pw.println("Statistics since last charge:");
2684 pw.println(" System starts: " + getStartCount()
2685 + ", currently on battery: " + getIsOnBattery());
Dianne Hackborna7c837f2014-01-15 16:20:44 -08002686 dumpLocked(context, pw, "", STATS_SINCE_CHARGED, reqUid);
Jeff Sharkeyec43a6b2013-04-30 13:33:18 -07002687 pw.println("");
2688 }
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002689 pw.println("Statistics since last unplugged:");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08002690 dumpLocked(context, pw, "", STATS_SINCE_UNPLUGGED, reqUid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002691 }
2692
2693 @SuppressWarnings("unused")
Dianne Hackborna7c837f2014-01-15 16:20:44 -08002694 public void dumpCheckinLocked(Context context,
Dianne Hackborn49021f52013-09-04 18:03:40 -07002695 PrintWriter pw, List<ApplicationInfo> apps, boolean isUnpluggedOnly,
Dianne Hackborn099bc622014-01-22 13:39:16 -08002696 boolean includeHistory, boolean historyOnly) {
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07002697 prepareForDumpLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002698
Dianne Hackborn13ac0412013-06-25 19:34:49 -07002699 long now = getHistoryBaseTime() + SystemClock.elapsedRealtime();
2700
Dianne Hackborn099bc622014-01-22 13:39:16 -08002701 if (includeHistory || historyOnly) {
Dianne Hackborn49021f52013-09-04 18:03:40 -07002702 final HistoryItem rec = new HistoryItem();
2703 if (startIteratingHistoryLocked()) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002704 try {
2705 for (int i=0; i<getHistoryStringPoolSize(); i++) {
2706 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
2707 pw.print(HISTORY_STRING_POOL); pw.print(',');
2708 pw.print(i);
2709 pw.print(',');
2710 pw.print(getHistoryTagPoolString(i));
2711 pw.print(',');
2712 pw.print(getHistoryTagPoolUid(i));
2713 pw.println();
2714 }
2715 HistoryPrinter hprinter = new HistoryPrinter();
2716 while (getNextHistoryLocked(rec)) {
2717 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
2718 pw.print(HISTORY_DATA); pw.print(',');
2719 hprinter.printNextItem(pw, rec, now, true);
2720 }
2721 } finally {
2722 finishIteratingHistoryLocked();
Dianne Hackborn099bc622014-01-22 13:39:16 -08002723 }
Dianne Hackborn13ac0412013-06-25 19:34:49 -07002724 }
Dianne Hackborn13ac0412013-06-25 19:34:49 -07002725 }
2726
Dianne Hackborn099bc622014-01-22 13:39:16 -08002727 if (historyOnly) {
2728 return;
2729 }
2730
Dianne Hackborne4a59512010-12-07 11:08:07 -08002731 if (apps != null) {
2732 SparseArray<ArrayList<String>> uids = new SparseArray<ArrayList<String>>();
2733 for (int i=0; i<apps.size(); i++) {
2734 ApplicationInfo ai = apps.get(i);
2735 ArrayList<String> pkgs = uids.get(ai.uid);
2736 if (pkgs == null) {
2737 pkgs = new ArrayList<String>();
2738 uids.put(ai.uid, pkgs);
2739 }
2740 pkgs.add(ai.packageName);
2741 }
2742 SparseArray<? extends Uid> uidStats = getUidStats();
2743 final int NU = uidStats.size();
2744 String[] lineArgs = new String[2];
2745 for (int i=0; i<NU; i++) {
2746 int uid = uidStats.keyAt(i);
2747 ArrayList<String> pkgs = uids.get(uid);
2748 if (pkgs != null) {
2749 for (int j=0; j<pkgs.size(); j++) {
2750 lineArgs[0] = Integer.toString(uid);
2751 lineArgs[1] = pkgs.get(j);
2752 dumpLine(pw, 0 /* uid */, "i" /* category */, UID_DATA,
2753 (Object[])lineArgs);
2754 }
2755 }
2756 }
2757 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002758 if (isUnpluggedOnly) {
Dianne Hackborna7c837f2014-01-15 16:20:44 -08002759 dumpCheckinLocked(context, pw, STATS_SINCE_UNPLUGGED, -1);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002760 }
2761 else {
Dianne Hackborna7c837f2014-01-15 16:20:44 -08002762 dumpCheckinLocked(context, pw, STATS_SINCE_CHARGED, -1);
2763 dumpCheckinLocked(context, pw, STATS_SINCE_UNPLUGGED, -1);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002764 }
2765 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002766}