blob: e627d4940bf2635ada030cb59442a9ef42e9e541 [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 Hackborn37de0982014-05-09 09:32:18 -070024import java.util.HashMap;
Dianne Hackborne4a59512010-12-07 11:08:07 -080025import java.util.List;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026import java.util.Map;
27
Dianne Hackborna7c837f2014-01-15 16:20:44 -080028import android.content.Context;
Dianne Hackborne4a59512010-12-07 11:08:07 -080029import android.content.pm.ApplicationInfo;
Wink Saville52840902011-02-18 12:40:47 -080030import android.telephony.SignalStrength;
Dianne Hackborn5f4a5f92014-01-24 16:59:34 -080031import android.text.format.DateFormat;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032import android.util.Printer;
33import android.util.SparseArray;
Dianne Hackborn37de0982014-05-09 09:32:18 -070034import android.util.SparseIntArray;
Dianne Hackborn1ebccf52010-08-15 13:04:34 -070035import android.util.TimeUtils;
Dianne Hackborna7c837f2014-01-15 16:20:44 -080036import com.android.internal.os.BatterySipper;
37import com.android.internal.os.BatteryStatsHelper;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080038
39/**
40 * A class providing access to battery usage statistics, including information on
41 * wakelocks, processes, packages, and services. All times are represented in microseconds
42 * except where indicated otherwise.
43 * @hide
44 */
45public abstract class BatteryStats implements Parcelable {
46
47 private static final boolean LOCAL_LOGV = false;
Dianne Hackborn91268cf2013-06-13 19:06:50 -070048
49 /** @hide */
50 public static final String SERVICE_NAME = "batterystats";
51
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052 /**
53 * A constant indicating a partial wake lock timer.
54 */
55 public static final int WAKE_TYPE_PARTIAL = 0;
56
57 /**
58 * A constant indicating a full wake lock timer.
59 */
60 public static final int WAKE_TYPE_FULL = 1;
61
62 /**
63 * A constant indicating a window wake lock timer.
64 */
65 public static final int WAKE_TYPE_WINDOW = 2;
66
67 /**
68 * A constant indicating a sensor timer.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080069 */
70 public static final int SENSOR = 3;
The Android Open Source Project10592532009-03-18 17:39:46 -070071
72 /**
Dianne Hackborn58e0eef2010-09-16 01:22:10 -070073 * A constant indicating a a wifi running timer
Dianne Hackborn617f8772009-03-31 15:04:46 -070074 */
Dianne Hackborn58e0eef2010-09-16 01:22:10 -070075 public static final int WIFI_RUNNING = 4;
Dianne Hackborn617f8772009-03-31 15:04:46 -070076
77 /**
The Android Open Source Project10592532009-03-18 17:39:46 -070078 * A constant indicating a full wifi lock timer
The Android Open Source Project10592532009-03-18 17:39:46 -070079 */
Dianne Hackborn617f8772009-03-31 15:04:46 -070080 public static final int FULL_WIFI_LOCK = 5;
The Android Open Source Project10592532009-03-18 17:39:46 -070081
82 /**
Nick Pelly6ccaa542012-06-15 15:22:47 -070083 * A constant indicating a wifi scan
The Android Open Source Project10592532009-03-18 17:39:46 -070084 */
Nick Pelly6ccaa542012-06-15 15:22:47 -070085 public static final int WIFI_SCAN = 6;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086
Robert Greenwalt5347bd42009-05-13 15:10:16 -070087 /**
88 * A constant indicating a wifi multicast timer
Robert Greenwalt5347bd42009-05-13 15:10:16 -070089 */
90 public static final int WIFI_MULTICAST_ENABLED = 7;
91
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080092 /**
Amith Yamasani244fa5c2009-05-22 14:36:07 -070093 * A constant indicating an audio turn on timer
Amith Yamasani244fa5c2009-05-22 14:36:07 -070094 */
95 public static final int AUDIO_TURNED_ON = 7;
96
97 /**
98 * A constant indicating a video turn on timer
Amith Yamasani244fa5c2009-05-22 14:36:07 -070099 */
100 public static final int VIDEO_TURNED_ON = 8;
101
102 /**
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800103 * A constant indicating a vibrator on timer
104 */
105 public static final int VIBRATOR_ON = 9;
106
107 /**
Jeff Sharkey3e013e82013-04-25 14:48:19 -0700108 * A constant indicating a foreground activity timer
109 */
110 public static final int FOREGROUND_ACTIVITY = 10;
111
112 /**
Robert Greenwalta029ea12013-09-25 16:38:12 -0700113 * A constant indicating a wifi batched scan is active
114 */
115 public static final int WIFI_BATCHED_SCAN = 11;
116
117 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800118 * Include all of the data in the stats, including previously saved data.
119 */
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700120 public static final int STATS_SINCE_CHARGED = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800121
122 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800123 * Include only the current run in the stats.
124 */
Dianne Hackborn4590e522014-03-24 13:36:46 -0700125 public static final int STATS_CURRENT = 1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800126
127 /**
128 * Include only the run since the last time the device was unplugged in the stats.
129 */
Dianne Hackborn4590e522014-03-24 13:36:46 -0700130 public static final int STATS_SINCE_UNPLUGGED = 2;
Evan Millare84de8d2009-04-02 22:16:12 -0700131
132 // NOTE: Update this list if you add/change any stats above.
133 // These characters are supposed to represent "total", "last", "current",
Dianne Hackborn3bee5af82010-07-23 00:22:04 -0700134 // and "unplugged". They were shortened for efficiency sake.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700135 private static final String[] STAT_NAMES = { "l", "c", "u" };
136
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800137 /**
138 * Bump the version on this if the checkin format changes.
139 */
Ashish Sharmabffcf1c2014-05-08 17:11:28 -0700140 private static final int BATTERY_STATS_CHECKIN_VERSION = 8;
Evan Millar22ac0432009-03-31 11:33:18 -0700141
142 private static final long BYTES_PER_KB = 1024;
143 private static final long BYTES_PER_MB = 1048576; // 1024^2
144 private static final long BYTES_PER_GB = 1073741824; //1024^3
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800145
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800146
Dianne Hackborne4a59512010-12-07 11:08:07 -0800147 private static final String UID_DATA = "uid";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800148 private static final String APK_DATA = "apk";
Evan Millare84de8d2009-04-02 22:16:12 -0700149 private static final String PROCESS_DATA = "pr";
150 private static final String SENSOR_DATA = "sr";
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800151 private static final String VIBRATOR_DATA = "vib";
Jeff Sharkey3e013e82013-04-25 14:48:19 -0700152 private static final String FOREGROUND_DATA = "fg";
Evan Millare84de8d2009-04-02 22:16:12 -0700153 private static final String WAKELOCK_DATA = "wl";
Evan Millarc64edde2009-04-18 12:26:32 -0700154 private static final String KERNEL_WAKELOCK_DATA = "kwl";
Dianne Hackborna1bd7922014-03-21 11:07:11 -0700155 private static final String WAKEUP_REASON_DATA = "wr";
Evan Millare84de8d2009-04-02 22:16:12 -0700156 private static final String NETWORK_DATA = "nt";
157 private static final String USER_ACTIVITY_DATA = "ua";
158 private static final String BATTERY_DATA = "bt";
Dianne Hackbornc1b40e32011-01-05 18:27:40 -0800159 private static final String BATTERY_DISCHARGE_DATA = "dc";
Evan Millare84de8d2009-04-02 22:16:12 -0700160 private static final String BATTERY_LEVEL_DATA = "lv";
Nick Pelly6ccaa542012-06-15 15:22:47 -0700161 private static final String WIFI_DATA = "wfl";
Evan Millare84de8d2009-04-02 22:16:12 -0700162 private static final String MISC_DATA = "m";
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800163 private static final String GLOBAL_NETWORK_DATA = "gn";
Dianne Hackborn099bc622014-01-22 13:39:16 -0800164 private static final String HISTORY_STRING_POOL = "hsp";
Dianne Hackborn8a0de582013-08-07 15:22:07 -0700165 private static final String HISTORY_DATA = "h";
Evan Millare84de8d2009-04-02 22:16:12 -0700166 private static final String SCREEN_BRIGHTNESS_DATA = "br";
167 private static final String SIGNAL_STRENGTH_TIME_DATA = "sgt";
Amith Yamasanif37447b2009-10-08 18:28:01 -0700168 private static final String SIGNAL_SCANNING_TIME_DATA = "sst";
Evan Millare84de8d2009-04-02 22:16:12 -0700169 private static final String SIGNAL_STRENGTH_COUNT_DATA = "sgc";
170 private static final String DATA_CONNECTION_TIME_DATA = "dct";
171 private static final String DATA_CONNECTION_COUNT_DATA = "dcc";
Dianne Hackbornca1bf212014-02-14 14:18:36 -0800172 private static final String WIFI_STATE_TIME_DATA = "wst";
173 private static final String WIFI_STATE_COUNT_DATA = "wsc";
174 private static final String BLUETOOTH_STATE_TIME_DATA = "bst";
175 private static final String BLUETOOTH_STATE_COUNT_DATA = "bsc";
Dianne Hackborna7c837f2014-01-15 16:20:44 -0800176 private static final String POWER_USE_SUMMARY_DATA = "pws";
177 private static final String POWER_USE_ITEM_DATA = "pwi";
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -0700178 private static final String DISCHARGE_STEP_DATA = "dsd";
179 private static final String CHARGE_STEP_DATA = "csd";
Dianne Hackbornd06dcfd2014-05-02 13:49:30 -0700180 private static final String DISCHARGE_TIME_REMAIN_DATA = "dtr";
181 private static final String CHARGE_TIME_REMAIN_DATA = "ctr";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800182
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700183 private final StringBuilder mFormatBuilder = new StringBuilder(32);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800184 private final Formatter mFormatter = new Formatter(mFormatBuilder);
185
186 /**
Dianne Hackborn617f8772009-03-31 15:04:46 -0700187 * State for keeping track of counting information.
188 */
189 public static abstract class Counter {
190
191 /**
192 * Returns the count associated with this Counter for the
193 * selected type of statistics.
194 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700195 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT
Dianne Hackborn617f8772009-03-31 15:04:46 -0700196 */
Evan Millarc64edde2009-04-18 12:26:32 -0700197 public abstract int getCountLocked(int which);
Dianne Hackborn617f8772009-03-31 15:04:46 -0700198
199 /**
200 * Temporary for debugging.
201 */
202 public abstract void logState(Printer pw, String prefix);
203 }
204
205 /**
Dianne Hackborna1bd7922014-03-21 11:07:11 -0700206 * State for keeping track of long counting information.
207 */
208 public static abstract class LongCounter {
209
210 /**
211 * Returns the count associated with this Counter for the
212 * selected type of statistics.
213 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700214 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT
Dianne Hackborna1bd7922014-03-21 11:07:11 -0700215 */
216 public abstract long getCountLocked(int which);
217
218 /**
219 * Temporary for debugging.
220 */
221 public abstract void logState(Printer pw, String prefix);
222 }
223
224 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800225 * State for keeping track of timing information.
226 */
227 public static abstract class Timer {
228
229 /**
230 * Returns the count associated with this Timer for the
231 * selected type of statistics.
232 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700233 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800234 */
Evan Millarc64edde2009-04-18 12:26:32 -0700235 public abstract int getCountLocked(int which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800236
237 /**
238 * Returns the total time in microseconds associated with this Timer for the
239 * selected type of statistics.
240 *
Dianne Hackborn97ae5382014-03-05 16:43:25 -0800241 * @param elapsedRealtimeUs current elapsed realtime of system in microseconds
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700242 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800243 * @return a time in microseconds
244 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -0800245 public abstract long getTotalTimeLocked(long elapsedRealtimeUs, int which);
Amith Yamasani244fa5c2009-05-22 14:36:07 -0700246
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800247 /**
248 * Temporary for debugging.
249 */
Dianne Hackborn627bba72009-03-24 22:32:56 -0700250 public abstract void logState(Printer pw, String prefix);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800251 }
252
253 /**
254 * The statistics associated with a particular uid.
255 */
256 public static abstract class Uid {
257
258 /**
259 * Returns a mapping containing wakelock statistics.
260 *
261 * @return a Map from Strings to Uid.Wakelock objects.
262 */
263 public abstract Map<String, ? extends Wakelock> getWakelockStats();
264
265 /**
266 * The statistics associated with a particular wake lock.
267 */
268 public static abstract class Wakelock {
269 public abstract Timer getWakeTime(int type);
270 }
271
272 /**
273 * Returns a mapping containing sensor statistics.
274 *
275 * @return a Map from Integer sensor ids to Uid.Sensor objects.
276 */
277 public abstract Map<Integer, ? extends Sensor> getSensorStats();
278
279 /**
Dianne Hackbornb5e31652010-09-07 12:13:55 -0700280 * Returns a mapping containing active process data.
281 */
282 public abstract SparseArray<? extends Pid> getPidStats();
283
284 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800285 * Returns a mapping containing process statistics.
286 *
287 * @return a Map from Strings to Uid.Proc objects.
288 */
289 public abstract Map<String, ? extends Proc> getProcessStats();
290
291 /**
292 * Returns a mapping containing package statistics.
293 *
294 * @return a Map from Strings to Uid.Pkg objects.
295 */
296 public abstract Map<String, ? extends Pkg> getPackageStats();
297
298 /**
299 * {@hide}
300 */
301 public abstract int getUid();
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700302
Dianne Hackbornca1bf212014-02-14 14:18:36 -0800303 public abstract void noteWifiRunningLocked(long elapsedRealtime);
304 public abstract void noteWifiStoppedLocked(long elapsedRealtime);
305 public abstract void noteFullWifiLockAcquiredLocked(long elapsedRealtime);
306 public abstract void noteFullWifiLockReleasedLocked(long elapsedRealtime);
307 public abstract void noteWifiScanStartedLocked(long elapsedRealtime);
308 public abstract void noteWifiScanStoppedLocked(long elapsedRealtime);
309 public abstract void noteWifiBatchedScanStartedLocked(int csph, long elapsedRealtime);
310 public abstract void noteWifiBatchedScanStoppedLocked(long elapsedRealtime);
311 public abstract void noteWifiMulticastEnabledLocked(long elapsedRealtime);
312 public abstract void noteWifiMulticastDisabledLocked(long elapsedRealtime);
313 public abstract void noteAudioTurnedOnLocked(long elapsedRealtime);
314 public abstract void noteAudioTurnedOffLocked(long elapsedRealtime);
315 public abstract void noteVideoTurnedOnLocked(long elapsedRealtime);
316 public abstract void noteVideoTurnedOffLocked(long elapsedRealtime);
317 public abstract void noteActivityResumedLocked(long elapsedRealtime);
318 public abstract void noteActivityPausedLocked(long elapsedRealtime);
Dianne Hackborn97ae5382014-03-05 16:43:25 -0800319 public abstract long getWifiRunningTime(long elapsedRealtimeUs, int which);
320 public abstract long getFullWifiLockTime(long elapsedRealtimeUs, int which);
321 public abstract long getWifiScanTime(long elapsedRealtimeUs, int which);
322 public abstract long getWifiBatchedScanTime(int csphBin, long elapsedRealtimeUs, int which);
323 public abstract long getWifiMulticastTime(long elapsedRealtimeUs, int which);
324 public abstract long getAudioTurnedOnTime(long elapsedRealtimeUs, int which);
325 public abstract long getVideoTurnedOnTime(long elapsedRealtimeUs, int which);
Jeff Sharkey3e013e82013-04-25 14:48:19 -0700326 public abstract Timer getForegroundActivityTimer();
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800327 public abstract Timer getVibratorOnTimer();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800328
Robert Greenwalta029ea12013-09-25 16:38:12 -0700329 public static final int NUM_WIFI_BATCHED_SCAN_BINS = 5;
330
Dianne Hackborn617f8772009-03-31 15:04:46 -0700331 /**
Jeff Browndf693de2012-07-27 12:03:38 -0700332 * Note that these must match the constants in android.os.PowerManager.
333 * Also, if the user activity types change, the BatteryStatsImpl.VERSION must
334 * also be bumped.
Dianne Hackborn617f8772009-03-31 15:04:46 -0700335 */
336 static final String[] USER_ACTIVITY_TYPES = {
Jeff Browndf693de2012-07-27 12:03:38 -0700337 "other", "button", "touch"
Dianne Hackborn617f8772009-03-31 15:04:46 -0700338 };
339
Jeff Browndf693de2012-07-27 12:03:38 -0700340 public static final int NUM_USER_ACTIVITY_TYPES = 3;
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700341
Dianne Hackborn617f8772009-03-31 15:04:46 -0700342 public abstract void noteUserActivityLocked(int type);
343 public abstract boolean hasUserActivity();
344 public abstract int getUserActivityCount(int type, int which);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700345
346 public abstract boolean hasNetworkActivity();
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800347 public abstract long getNetworkActivityBytes(int type, int which);
348 public abstract long getNetworkActivityPackets(int type, int which);
Dianne Hackbornd45665b2014-02-26 12:35:32 -0800349 public abstract long getMobileRadioActiveTime(int which);
350 public abstract int getMobileRadioActiveCount(int which);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700351
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800352 public static abstract class Sensor {
Mathias Agopian7f84c062013-02-04 19:22:47 -0800353 /*
354 * FIXME: it's not correct to use this magic value because it
355 * could clash with a sensor handle (which are defined by
356 * the sensor HAL, and therefore out of our control
357 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800358 // Magic sensor number for the GPS.
359 public static final int GPS = -10000;
360
361 public abstract int getHandle();
362
363 public abstract Timer getSensorTime();
364 }
365
Dianne Hackbornb5e31652010-09-07 12:13:55 -0700366 public class Pid {
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800367 public int mWakeNesting;
368 public long mWakeSumMs;
369 public long mWakeStartMs;
Dianne Hackbornb5e31652010-09-07 12:13:55 -0700370 }
371
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800372 /**
373 * The statistics associated with a particular process.
374 */
375 public static abstract class Proc {
376
Dianne Hackborn287952c2010-09-22 22:34:31 -0700377 public static class ExcessivePower {
378 public static final int TYPE_WAKE = 1;
379 public static final int TYPE_CPU = 2;
380
381 public int type;
Dianne Hackborn9adb9c32010-08-13 14:09:56 -0700382 public long overTime;
383 public long usedTime;
384 }
385
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800386 /**
Dianne Hackborn099bc622014-01-22 13:39:16 -0800387 * Returns true if this process is still active in the battery stats.
388 */
389 public abstract boolean isActive();
390
391 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800392 * Returns the total time (in 1/100 sec) spent executing in user code.
393 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700394 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800395 */
396 public abstract long getUserTime(int which);
397
398 /**
399 * Returns the total time (in 1/100 sec) spent executing in system code.
400 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700401 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800402 */
403 public abstract long getSystemTime(int which);
404
405 /**
406 * Returns the number of times the process has been started.
407 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700408 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800409 */
410 public abstract int getStarts(int which);
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700411
412 /**
413 * Returns the cpu time spent in microseconds while the process was in the foreground.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700414 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700415 * @return foreground cpu time in microseconds
416 */
417 public abstract long getForegroundTime(int which);
Amith Yamasanie43530a2009-08-21 13:11:37 -0700418
419 /**
420 * Returns the approximate cpu time spent in microseconds, at a certain CPU speed.
421 * @param speedStep the index of the CPU speed. This is not the actual speed of the
422 * CPU.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700423 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
Amith Yamasanie43530a2009-08-21 13:11:37 -0700424 * @see BatteryStats#getCpuSpeedSteps()
425 */
426 public abstract long getTimeAtCpuSpeedStep(int speedStep, int which);
Dianne Hackborn9adb9c32010-08-13 14:09:56 -0700427
Dianne Hackborn287952c2010-09-22 22:34:31 -0700428 public abstract int countExcessivePowers();
Dianne Hackborn9adb9c32010-08-13 14:09:56 -0700429
Dianne Hackborn287952c2010-09-22 22:34:31 -0700430 public abstract ExcessivePower getExcessivePower(int i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800431 }
432
433 /**
434 * The statistics associated with a particular package.
435 */
436 public static abstract class Pkg {
437
438 /**
439 * Returns the number of times this package has done something that could wake up the
440 * device from sleep.
441 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700442 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800443 */
444 public abstract int getWakeups(int which);
445
446 /**
447 * Returns a mapping containing service statistics.
448 */
449 public abstract Map<String, ? extends Serv> getServiceStats();
450
451 /**
452 * The statistics associated with a particular service.
453 */
454 public abstract class Serv {
455
456 /**
457 * Returns the amount of time spent started.
458 *
459 * @param batteryUptime elapsed uptime on battery in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700460 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800461 * @return
462 */
463 public abstract long getStartTime(long batteryUptime, int which);
464
465 /**
466 * Returns the total number of times startService() has been called.
467 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700468 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800469 */
470 public abstract int getStarts(int which);
471
472 /**
473 * Returns the total number times the service has been launched.
474 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700475 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800476 */
477 public abstract int getLaunches(int which);
478 }
479 }
480 }
481
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800482 public final static class HistoryTag {
483 public String string;
484 public int uid;
485
486 public int poolIdx;
487
488 public void setTo(HistoryTag o) {
489 string = o.string;
490 uid = o.uid;
491 poolIdx = o.poolIdx;
492 }
493
494 public void setTo(String _string, int _uid) {
495 string = _string;
496 uid = _uid;
497 poolIdx = -1;
498 }
499
500 public void writeToParcel(Parcel dest, int flags) {
501 dest.writeString(string);
502 dest.writeInt(uid);
503 }
504
505 public void readFromParcel(Parcel src) {
506 string = src.readString();
507 uid = src.readInt();
508 poolIdx = -1;
509 }
510
511 @Override
512 public boolean equals(Object o) {
513 if (this == o) return true;
514 if (o == null || getClass() != o.getClass()) return false;
515
516 HistoryTag that = (HistoryTag) o;
517
518 if (uid != that.uid) return false;
519 if (!string.equals(that.string)) return false;
520
521 return true;
522 }
523
524 @Override
525 public int hashCode() {
526 int result = string.hashCode();
527 result = 31 * result + uid;
528 return result;
529 }
530 }
531
Dianne Hackbornce2ef762010-09-20 11:39:14 -0700532 public final static class HistoryItem implements Parcelable {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700533 public HistoryItem next;
Dianne Hackborn9a755432014-05-15 17:05:22 -0700534
535 // The time of this event in milliseconds, as per SystemClock.elapsedRealtime().
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700536 public long time;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800537
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800538 public static final byte CMD_UPDATE = 0; // These can be written as deltas
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800539 public static final byte CMD_NULL = -1;
540 public static final byte CMD_START = 4;
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800541 public static final byte CMD_CURRENT_TIME = 5;
542 public static final byte CMD_OVERFLOW = 6;
Dianne Hackborn37de0982014-05-09 09:32:18 -0700543 public static final byte CMD_RESET = 7;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800544
Dianne Hackborn1fadab52011-04-14 17:57:33 -0700545 public byte cmd = CMD_NULL;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700546
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800547 /**
548 * Return whether the command code is a delta data update.
549 */
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800550 public boolean isDeltaData() {
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800551 return cmd == CMD_UPDATE;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800552 }
553
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700554 public byte batteryLevel;
555 public byte batteryStatus;
556 public byte batteryHealth;
557 public byte batteryPlugType;
558
Sungmin Choic7e9e8b2013-01-16 12:57:36 +0900559 public short batteryTemperature;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700560 public char batteryVoltage;
561
Dianne Hackborn3bee5af82010-07-23 00:22:04 -0700562 // Constants from SCREEN_BRIGHTNESS_*
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700563 public static final int STATE_BRIGHTNESS_SHIFT = 0;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800564 public static final int STATE_BRIGHTNESS_MASK = 0x7;
Dianne Hackborn3bee5af82010-07-23 00:22:04 -0700565 // Constants from SIGNAL_STRENGTH_*
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800566 public static final int STATE_SIGNAL_STRENGTH_SHIFT = 3;
567 public static final int STATE_SIGNAL_STRENGTH_MASK = 0x7 << STATE_SIGNAL_STRENGTH_SHIFT;
Dianne Hackborn3bee5af82010-07-23 00:22:04 -0700568 // Constants from ServiceState.STATE_*
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800569 public static final int STATE_PHONE_STATE_SHIFT = 6;
570 public static final int STATE_PHONE_STATE_MASK = 0x7 << STATE_PHONE_STATE_SHIFT;
Dianne Hackborn3bee5af82010-07-23 00:22:04 -0700571 // Constants from DATA_CONNECTION_*
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800572 public static final int STATE_DATA_CONNECTION_SHIFT = 9;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800573 public static final int STATE_DATA_CONNECTION_MASK = 0x1f << STATE_DATA_CONNECTION_SHIFT;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800574
Dianne Hackborn1fadab52011-04-14 17:57:33 -0700575 // These states always appear directly in the first int token
576 // of a delta change; they should be ones that change relatively
577 // frequently.
Dianne Hackborna1bd7922014-03-21 11:07:11 -0700578 public static final int STATE_CPU_RUNNING_FLAG = 1<<31;
579 public static final int STATE_WAKE_LOCK_FLAG = 1<<30;
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800580 public static final int STATE_GPS_ON_FLAG = 1<<29;
581 public static final int STATE_WIFI_FULL_LOCK_FLAG = 1<<28;
Dianne Hackborne13c4c02014-02-11 17:18:35 -0800582 public static final int STATE_WIFI_SCAN_FLAG = 1<<27;
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800583 public static final int STATE_WIFI_MULTICAST_ON_FLAG = 1<<26;
Dianne Hackborne13c4c02014-02-11 17:18:35 -0800584 public static final int STATE_MOBILE_RADIO_ACTIVE_FLAG = 1<<25;
Dianne Hackborneaf2ac42014-02-07 13:01:07 -0800585 public static final int STATE_WIFI_RUNNING_FLAG = 1<<24;
Dianne Hackborn1fadab52011-04-14 17:57:33 -0700586 // These are on the lower bits used for the command; if they change
587 // we need to write another int of data.
Dianne Hackborna1bd7922014-03-21 11:07:11 -0700588 public static final int STATE_SENSOR_ON_FLAG = 1<<23;
Dianne Hackborn1fadab52011-04-14 17:57:33 -0700589 public static final int STATE_AUDIO_ON_FLAG = 1<<22;
Dianne Hackborna1bd7922014-03-21 11:07:11 -0700590 public static final int STATE_PHONE_SCANNING_FLAG = 1<<21;
Dianne Hackborn1fadab52011-04-14 17:57:33 -0700591 public static final int STATE_SCREEN_ON_FLAG = 1<<20;
592 public static final int STATE_BATTERY_PLUGGED_FLAG = 1<<19;
593 public static final int STATE_PHONE_IN_CALL_FLAG = 1<<18;
594 public static final int STATE_WIFI_ON_FLAG = 1<<17;
595 public static final int STATE_BLUETOOTH_ON_FLAG = 1<<16;
Dianne Hackborn40c87252014-03-19 16:55:40 -0700596
Dianne Hackbornf47d8f22010-10-08 10:46:55 -0700597 public static final int MOST_INTERESTING_STATES =
598 STATE_BATTERY_PLUGGED_FLAG | STATE_SCREEN_ON_FLAG
599 | STATE_GPS_ON_FLAG | STATE_PHONE_IN_CALL_FLAG;
600
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700601 public int states;
602
Dianne Hackborna1bd7922014-03-21 11:07:11 -0700603 public static final int STATE2_VIDEO_ON_FLAG = 1<<0;
Dianne Hackborncbefd8d2014-05-14 11:42:00 -0700604 public static final int STATE2_LOW_POWER_FLAG = 1<<1;
Dianne Hackborn40c87252014-03-19 16:55:40 -0700605 public int states2;
606
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800607 // The wake lock that was acquired at this point.
608 public HistoryTag wakelockTag;
609
Dianne Hackbornc51cf032014-03-02 19:08:15 -0800610 // Kernel wakeup reason at this point.
611 public HistoryTag wakeReasonTag;
612
Dianne Hackborneaf2ac42014-02-07 13:01:07 -0800613 public static final int EVENT_FLAG_START = 0x8000;
614 public static final int EVENT_FLAG_FINISH = 0x4000;
615
616 // No event in this item.
617 public static final int EVENT_NONE = 0x0000;
618 // Event is about a process that is running.
619 public static final int EVENT_PROC = 0x0001;
620 // Event is about an application package that is in the foreground.
621 public static final int EVENT_FOREGROUND = 0x0002;
622 // Event is about an application package that is at the top of the screen.
623 public static final int EVENT_TOP = 0x0003;
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -0800624 // Event is about an application package that is at the top of the screen.
625 public static final int EVENT_SYNC = 0x0004;
Dianne Hackborncbefd8d2014-05-14 11:42:00 -0700626 // Events for all additional wake locks aquired/release within a wake block.
627 // These are not generated by default.
628 public static final int EVENT_WAKE_LOCK = 0x0005;
Dianne Hackborneaf2ac42014-02-07 13:01:07 -0800629 // Number of event types.
Dianne Hackborncbefd8d2014-05-14 11:42:00 -0700630 public static final int EVENT_COUNT = 0x0006;
Dianne Hackborn37de0982014-05-09 09:32:18 -0700631 // Mask to extract out only the type part of the event.
632 public static final int EVENT_TYPE_MASK = ~(EVENT_FLAG_START|EVENT_FLAG_FINISH);
Dianne Hackborneaf2ac42014-02-07 13:01:07 -0800633
634 public static final int EVENT_PROC_START = EVENT_PROC | EVENT_FLAG_START;
635 public static final int EVENT_PROC_FINISH = EVENT_PROC | EVENT_FLAG_FINISH;
636 public static final int EVENT_FOREGROUND_START = EVENT_FOREGROUND | EVENT_FLAG_START;
637 public static final int EVENT_FOREGROUND_FINISH = EVENT_FOREGROUND | EVENT_FLAG_FINISH;
638 public static final int EVENT_TOP_START = EVENT_TOP | EVENT_FLAG_START;
639 public static final int EVENT_TOP_FINISH = EVENT_TOP | EVENT_FLAG_FINISH;
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -0800640 public static final int EVENT_SYNC_START = EVENT_SYNC | EVENT_FLAG_START;
641 public static final int EVENT_SYNC_FINISH = EVENT_SYNC | EVENT_FLAG_FINISH;
Dianne Hackborncbefd8d2014-05-14 11:42:00 -0700642 public static final int EVENT_WAKE_LOCK_START = EVENT_WAKE_LOCK | EVENT_FLAG_START;
643 public static final int EVENT_WAKE_LOCK_FINISH = EVENT_WAKE_LOCK | EVENT_FLAG_FINISH;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800644
645 // For CMD_EVENT.
646 public int eventCode;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800647 public HistoryTag eventTag;
648
Dianne Hackborn9a755432014-05-15 17:05:22 -0700649 // Only set for CMD_CURRENT_TIME or CMD_RESET, as per System.currentTimeMillis().
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800650 public long currentTime;
651
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800652 // Meta-data when reading.
653 public int numReadInts;
654
655 // Pre-allocated objects.
656 public final HistoryTag localWakelockTag = new HistoryTag();
Dianne Hackbornc51cf032014-03-02 19:08:15 -0800657 public final HistoryTag localWakeReasonTag = new HistoryTag();
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800658 public final HistoryTag localEventTag = new HistoryTag();
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800659
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700660 public HistoryItem() {
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700661 }
662
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700663 public HistoryItem(long time, Parcel src) {
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700664 this.time = time;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800665 numReadInts = 2;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -0700666 readFromParcel(src);
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700667 }
668
669 public int describeContents() {
670 return 0;
671 }
672
673 public void writeToParcel(Parcel dest, int flags) {
674 dest.writeLong(time);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700675 int bat = (((int)cmd)&0xff)
676 | ((((int)batteryLevel)<<8)&0xff00)
677 | ((((int)batteryStatus)<<16)&0xf0000)
678 | ((((int)batteryHealth)<<20)&0xf00000)
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800679 | ((((int)batteryPlugType)<<24)&0xf000000)
680 | (wakelockTag != null ? 0x10000000 : 0)
681 | (wakeReasonTag != null ? 0x20000000 : 0)
682 | (eventCode != EVENT_NONE ? 0x40000000 : 0);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700683 dest.writeInt(bat);
684 bat = (((int)batteryTemperature)&0xffff)
685 | ((((int)batteryVoltage)<<16)&0xffff0000);
686 dest.writeInt(bat);
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700687 dest.writeInt(states);
Dianne Hackborna1bd7922014-03-21 11:07:11 -0700688 dest.writeInt(states2);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800689 if (wakelockTag != null) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800690 wakelockTag.writeToParcel(dest, flags);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800691 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -0800692 if (wakeReasonTag != null) {
Dianne Hackbornc51cf032014-03-02 19:08:15 -0800693 wakeReasonTag.writeToParcel(dest, flags);
Dianne Hackbornc51cf032014-03-02 19:08:15 -0800694 }
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800695 if (eventCode != EVENT_NONE) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800696 dest.writeInt(eventCode);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800697 eventTag.writeToParcel(dest, flags);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800698 }
Dianne Hackborn37de0982014-05-09 09:32:18 -0700699 if (cmd == CMD_CURRENT_TIME || cmd == CMD_RESET) {
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800700 dest.writeLong(currentTime);
701 }
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700702 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -0700703
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800704 public void readFromParcel(Parcel src) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800705 int start = src.dataPosition();
Dianne Hackborn0ffc9882011-04-13 18:15:56 -0700706 int bat = src.readInt();
707 cmd = (byte)(bat&0xff);
708 batteryLevel = (byte)((bat>>8)&0xff);
709 batteryStatus = (byte)((bat>>16)&0xf);
710 batteryHealth = (byte)((bat>>20)&0xf);
711 batteryPlugType = (byte)((bat>>24)&0xf);
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800712 int bat2 = src.readInt();
713 batteryTemperature = (short)(bat2&0xffff);
714 batteryVoltage = (char)((bat2>>16)&0xffff);
Dianne Hackborn0ffc9882011-04-13 18:15:56 -0700715 states = src.readInt();
Dianne Hackborna1bd7922014-03-21 11:07:11 -0700716 states2 = src.readInt();
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800717 if ((bat&0x10000000) != 0) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800718 wakelockTag = localWakelockTag;
719 wakelockTag.readFromParcel(src);
720 } else {
721 wakelockTag = null;
722 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800723 if ((bat&0x20000000) != 0) {
Dianne Hackbornc51cf032014-03-02 19:08:15 -0800724 wakeReasonTag = localWakeReasonTag;
725 wakeReasonTag.readFromParcel(src);
726 } else {
727 wakeReasonTag = null;
728 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800729 if ((bat&0x40000000) != 0) {
730 eventCode = src.readInt();
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800731 eventTag = localEventTag;
732 eventTag.readFromParcel(src);
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800733 } else {
734 eventCode = EVENT_NONE;
735 eventTag = null;
736 }
Dianne Hackborn37de0982014-05-09 09:32:18 -0700737 if (cmd == CMD_CURRENT_TIME || cmd == CMD_RESET) {
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800738 currentTime = src.readLong();
739 } else {
740 currentTime = 0;
Dianne Hackborn1fadab52011-04-14 17:57:33 -0700741 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800742 numReadInts += (src.dataPosition()-start)/4;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -0700743 }
744
Dianne Hackborn1fadab52011-04-14 17:57:33 -0700745 public void clear() {
746 time = 0;
747 cmd = CMD_NULL;
748 batteryLevel = 0;
749 batteryStatus = 0;
750 batteryHealth = 0;
751 batteryPlugType = 0;
752 batteryTemperature = 0;
753 batteryVoltage = 0;
754 states = 0;
Dianne Hackborna1bd7922014-03-21 11:07:11 -0700755 states2 = 0;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800756 wakelockTag = null;
Dianne Hackbornc51cf032014-03-02 19:08:15 -0800757 wakeReasonTag = null;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800758 eventCode = EVENT_NONE;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800759 eventTag = null;
Dianne Hackborn1fadab52011-04-14 17:57:33 -0700760 }
761
Dianne Hackbornce2ef762010-09-20 11:39:14 -0700762 public void setTo(HistoryItem o) {
763 time = o.time;
764 cmd = o.cmd;
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800765 setToCommon(o);
766 }
767
768 public void setTo(long time, byte cmd, HistoryItem o) {
769 this.time = time;
770 this.cmd = cmd;
771 setToCommon(o);
772 }
773
774 private void setToCommon(HistoryItem o) {
Dianne Hackbornce2ef762010-09-20 11:39:14 -0700775 batteryLevel = o.batteryLevel;
776 batteryStatus = o.batteryStatus;
777 batteryHealth = o.batteryHealth;
778 batteryPlugType = o.batteryPlugType;
779 batteryTemperature = o.batteryTemperature;
780 batteryVoltage = o.batteryVoltage;
781 states = o.states;
Dianne Hackborna1bd7922014-03-21 11:07:11 -0700782 states2 = o.states2;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800783 if (o.wakelockTag != null) {
784 wakelockTag = localWakelockTag;
785 wakelockTag.setTo(o.wakelockTag);
786 } else {
787 wakelockTag = null;
788 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -0800789 if (o.wakeReasonTag != null) {
790 wakeReasonTag = localWakeReasonTag;
791 wakeReasonTag.setTo(o.wakeReasonTag);
792 } else {
793 wakeReasonTag = null;
794 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800795 eventCode = o.eventCode;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800796 if (o.eventTag != null) {
797 eventTag = localEventTag;
798 eventTag.setTo(o.eventTag);
799 } else {
800 eventTag = null;
801 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800802 currentTime = o.currentTime;
Dianne Hackbornce2ef762010-09-20 11:39:14 -0700803 }
804
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800805 public boolean sameNonEvent(HistoryItem o) {
Dianne Hackborn9adb9c32010-08-13 14:09:56 -0700806 return batteryLevel == o.batteryLevel
807 && batteryStatus == o.batteryStatus
808 && batteryHealth == o.batteryHealth
809 && batteryPlugType == o.batteryPlugType
810 && batteryTemperature == o.batteryTemperature
811 && batteryVoltage == o.batteryVoltage
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800812 && states == o.states
Dianne Hackborna1bd7922014-03-21 11:07:11 -0700813 && states2 == o.states2
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800814 && currentTime == o.currentTime;
Dianne Hackborn9adb9c32010-08-13 14:09:56 -0700815 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800816
817 public boolean same(HistoryItem o) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800818 if (!sameNonEvent(o) || eventCode != o.eventCode) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800819 return false;
820 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800821 if (wakelockTag != o.wakelockTag) {
822 if (wakelockTag == null || o.wakelockTag == null) {
823 return false;
824 }
825 if (!wakelockTag.equals(o.wakelockTag)) {
826 return false;
827 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800828 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -0800829 if (wakeReasonTag != o.wakeReasonTag) {
830 if (wakeReasonTag == null || o.wakeReasonTag == null) {
831 return false;
832 }
833 if (!wakeReasonTag.equals(o.wakeReasonTag)) {
834 return false;
835 }
836 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800837 if (eventTag != o.eventTag) {
838 if (eventTag == null || o.eventTag == null) {
839 return false;
840 }
841 if (!eventTag.equals(o.eventTag)) {
842 return false;
843 }
844 }
845 return true;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800846 }
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700847 }
Dianne Hackborn37de0982014-05-09 09:32:18 -0700848
849 public final static class HistoryEventTracker {
850 private final HashMap<String, SparseIntArray>[] mActiveEvents
851 = (HashMap<String, SparseIntArray>[]) new HashMap[HistoryItem.EVENT_COUNT];
852
853 public boolean updateState(int code, String name, int uid, int poolIdx) {
854 if ((code&HistoryItem.EVENT_FLAG_START) != 0) {
855 int idx = code&HistoryItem.EVENT_TYPE_MASK;
856 HashMap<String, SparseIntArray> active = mActiveEvents[idx];
857 if (active == null) {
858 active = new HashMap<String, SparseIntArray>();
859 mActiveEvents[idx] = active;
860 }
861 SparseIntArray uids = active.get(name);
862 if (uids == null) {
863 uids = new SparseIntArray();
864 active.put(name, uids);
865 }
866 if (uids.indexOfKey(uid) >= 0) {
867 // Already set, nothing to do!
868 return false;
869 }
870 uids.put(uid, poolIdx);
871 } else if ((code&HistoryItem.EVENT_FLAG_FINISH) != 0) {
872 int idx = code&HistoryItem.EVENT_TYPE_MASK;
873 HashMap<String, SparseIntArray> active = mActiveEvents[idx];
874 if (active == null) {
875 // not currently active, nothing to do.
876 return false;
877 }
878 SparseIntArray uids = active.get(name);
879 if (uids == null) {
880 // not currently active, nothing to do.
881 return false;
882 }
883 idx = uids.indexOfKey(uid);
884 if (idx < 0) {
885 // not currently active, nothing to do.
886 return false;
887 }
888 uids.removeAt(idx);
889 if (uids.size() <= 0) {
890 active.remove(name);
891 }
892 }
893 return true;
894 }
895
Dianne Hackborncbefd8d2014-05-14 11:42:00 -0700896 public void removeEvents(int code) {
897 int idx = code&HistoryItem.EVENT_TYPE_MASK;
898 mActiveEvents[idx] = null;
899 }
900
Dianne Hackborn37de0982014-05-09 09:32:18 -0700901 public HashMap<String, SparseIntArray> getStateForEvent(int code) {
902 return mActiveEvents[code];
903 }
904 }
905
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700906 public static final class BitDescription {
907 public final int mask;
908 public final int shift;
909 public final String name;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800910 public final String shortName;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700911 public final String[] values;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800912 public final String[] shortValues;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700913
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800914 public BitDescription(int mask, String name, String shortName) {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700915 this.mask = mask;
916 this.shift = -1;
917 this.name = name;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800918 this.shortName = shortName;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700919 this.values = null;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800920 this.shortValues = null;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700921 }
922
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800923 public BitDescription(int mask, int shift, String name, String shortName,
924 String[] values, String[] shortValues) {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700925 this.mask = mask;
926 this.shift = shift;
927 this.name = name;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800928 this.shortName = shortName;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700929 this.values = values;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800930 this.shortValues = shortValues;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700931 }
Dianne Hackborn32907cf2010-06-10 17:50:20 -0700932 }
Dianne Hackborn37de0982014-05-09 09:32:18 -0700933
Dianne Hackbornfc064132014-06-02 12:42:12 -0700934 /**
935 * Don't allow any more batching in to the current history event. This
936 * is called when printing partial histories, so to ensure that the next
937 * history event will go in to a new batch after what was printed in the
938 * last partial history.
939 */
940 public abstract void commitCurrentHistoryBatchLocked();
941
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800942 public abstract int getHistoryTotalSize();
943
944 public abstract int getHistoryUsedSize();
945
Dianne Hackbornce2ef762010-09-20 11:39:14 -0700946 public abstract boolean startIteratingHistoryLocked();
947
Dianne Hackborn099bc622014-01-22 13:39:16 -0800948 public abstract int getHistoryStringPoolSize();
949
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800950 public abstract int getHistoryStringPoolBytes();
951
952 public abstract String getHistoryTagPoolString(int index);
953
954 public abstract int getHistoryTagPoolUid(int index);
Dianne Hackborn099bc622014-01-22 13:39:16 -0800955
Dianne Hackbornce2ef762010-09-20 11:39:14 -0700956 public abstract boolean getNextHistoryLocked(HistoryItem out);
957
Dianne Hackborn0ffc9882011-04-13 18:15:56 -0700958 public abstract void finishIteratingHistoryLocked();
959
960 public abstract boolean startIteratingOldHistoryLocked();
961
962 public abstract boolean getNextOldHistoryLocked(HistoryItem out);
963
964 public abstract void finishIteratingOldHistoryLocked();
965
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800966 /**
Dianne Hackbornb5e31652010-09-07 12:13:55 -0700967 * Return the base time offset for the battery history.
968 */
969 public abstract long getHistoryBaseTime();
970
971 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800972 * Returns the number of times the device has been started.
973 */
974 public abstract int getStartCount();
975
976 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700977 * 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 -0800978 * running on battery.
979 *
980 * {@hide}
981 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -0800982 public abstract long getScreenOnTime(long elapsedRealtimeUs, int which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800983
Dianne Hackborn77b987f2014-02-26 16:20:52 -0800984 /**
985 * Returns the number of times the screen was turned on.
986 *
987 * {@hide}
988 */
989 public abstract int getScreenOnCount(int which);
990
Jeff Browne95c3cd2014-05-02 16:59:26 -0700991 public abstract long getInteractiveTime(long elapsedRealtimeUs, int which);
992
Dianne Hackborn617f8772009-03-31 15:04:46 -0700993 public static final int SCREEN_BRIGHTNESS_DARK = 0;
994 public static final int SCREEN_BRIGHTNESS_DIM = 1;
995 public static final int SCREEN_BRIGHTNESS_MEDIUM = 2;
996 public static final int SCREEN_BRIGHTNESS_LIGHT = 3;
997 public static final int SCREEN_BRIGHTNESS_BRIGHT = 4;
998
999 static final String[] SCREEN_BRIGHTNESS_NAMES = {
1000 "dark", "dim", "medium", "light", "bright"
1001 };
1002
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001003 static final String[] SCREEN_BRIGHTNESS_SHORT_NAMES = {
1004 "0", "1", "2", "3", "4"
1005 };
1006
Dianne Hackborn617f8772009-03-31 15:04:46 -07001007 public static final int NUM_SCREEN_BRIGHTNESS_BINS = 5;
1008
1009 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07001010 * Returns the time in microseconds that the screen has been on with
Dianne Hackborn617f8772009-03-31 15:04:46 -07001011 * the given brightness
1012 *
1013 * {@hide}
1014 */
1015 public abstract long getScreenBrightnessTime(int brightnessBin,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001016 long elapsedRealtimeUs, int which);
Dianne Hackborn617f8772009-03-31 15:04:46 -07001017
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001018 /**
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001019 * Returns the time in microseconds that low power mode has been enabled while the device was
1020 * running on battery.
1021 *
1022 * {@hide}
1023 */
1024 public abstract long getLowPowerModeEnabledTime(long elapsedRealtimeUs, int which);
1025
1026 /**
1027 * Returns the number of times that low power mode was enabled.
1028 *
1029 * {@hide}
1030 */
1031 public abstract int getLowPowerModeEnabledCount(int which);
1032
1033 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07001034 * 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 -08001035 * running on battery.
1036 *
1037 * {@hide}
1038 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001039 public abstract long getPhoneOnTime(long elapsedRealtimeUs, int which);
Dianne Hackborn627bba72009-03-24 22:32:56 -07001040
1041 /**
Dianne Hackborn77b987f2014-02-26 16:20:52 -08001042 * Returns the number of times a phone call was activated.
1043 *
1044 * {@hide}
1045 */
1046 public abstract int getPhoneOnCount(int which);
1047
1048 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07001049 * Returns the time in microseconds that the phone has been running with
Dianne Hackborn627bba72009-03-24 22:32:56 -07001050 * the given signal strength.
1051 *
1052 * {@hide}
1053 */
1054 public abstract long getPhoneSignalStrengthTime(int strengthBin,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001055 long elapsedRealtimeUs, int which);
Dianne Hackborn627bba72009-03-24 22:32:56 -07001056
Dianne Hackborn617f8772009-03-31 15:04:46 -07001057 /**
Amith Yamasanif37447b2009-10-08 18:28:01 -07001058 * Returns the time in microseconds that the phone has been trying to
1059 * acquire a signal.
1060 *
1061 * {@hide}
1062 */
1063 public abstract long getPhoneSignalScanningTime(
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001064 long elapsedRealtimeUs, int which);
Amith Yamasanif37447b2009-10-08 18:28:01 -07001065
1066 /**
Dianne Hackborn617f8772009-03-31 15:04:46 -07001067 * Returns the number of times the phone has entered the given signal strength.
1068 *
1069 * {@hide}
1070 */
1071 public abstract int getPhoneSignalStrengthCount(int strengthBin, int which);
1072
Dianne Hackborne13c4c02014-02-11 17:18:35 -08001073 /**
1074 * Returns the time in microseconds that the mobile network has been active
1075 * (in a high power state).
1076 *
1077 * {@hide}
1078 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001079 public abstract long getMobileRadioActiveTime(long elapsedRealtimeUs, int which);
Dianne Hackborne13c4c02014-02-11 17:18:35 -08001080
Dianne Hackbornd45665b2014-02-26 12:35:32 -08001081 /**
1082 * Returns the number of times that the mobile network has transitioned to the
1083 * active state.
1084 *
1085 * {@hide}
1086 */
1087 public abstract int getMobileRadioActiveCount(int which);
1088
1089 /**
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001090 * Returns the time in microseconds that is the difference between the mobile radio
1091 * time we saw based on the elapsed timestamp when going down vs. the given time stamp
1092 * from the radio.
1093 *
1094 * {@hide}
1095 */
1096 public abstract long getMobileRadioActiveAdjustedTime(int which);
1097
1098 /**
Dianne Hackbornd45665b2014-02-26 12:35:32 -08001099 * Returns the time in microseconds that the mobile network has been active
1100 * (in a high power state) but not being able to blame on an app.
1101 *
1102 * {@hide}
1103 */
1104 public abstract long getMobileRadioActiveUnknownTime(int which);
1105
1106 /**
Dianne Hackborn77b987f2014-02-26 16:20:52 -08001107 * Return count of number of times radio was up that could not be blamed on apps.
Dianne Hackbornd45665b2014-02-26 12:35:32 -08001108 *
1109 * {@hide}
1110 */
1111 public abstract int getMobileRadioActiveUnknownCount(int which);
Dianne Hackborne13c4c02014-02-11 17:18:35 -08001112
Dianne Hackborn627bba72009-03-24 22:32:56 -07001113 public static final int DATA_CONNECTION_NONE = 0;
1114 public static final int DATA_CONNECTION_GPRS = 1;
1115 public static final int DATA_CONNECTION_EDGE = 2;
1116 public static final int DATA_CONNECTION_UMTS = 3;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001117 public static final int DATA_CONNECTION_CDMA = 4;
1118 public static final int DATA_CONNECTION_EVDO_0 = 5;
1119 public static final int DATA_CONNECTION_EVDO_A = 6;
1120 public static final int DATA_CONNECTION_1xRTT = 7;
1121 public static final int DATA_CONNECTION_HSDPA = 8;
1122 public static final int DATA_CONNECTION_HSUPA = 9;
1123 public static final int DATA_CONNECTION_HSPA = 10;
1124 public static final int DATA_CONNECTION_IDEN = 11;
1125 public static final int DATA_CONNECTION_EVDO_B = 12;
Robert Greenwalt962a9902010-11-02 11:10:25 -07001126 public static final int DATA_CONNECTION_LTE = 13;
1127 public static final int DATA_CONNECTION_EHRPD = 14;
Patrick Tjinb71703c2013-11-06 09:27:03 -08001128 public static final int DATA_CONNECTION_HSPAP = 15;
1129 public static final int DATA_CONNECTION_OTHER = 16;
Robert Greenwalt962a9902010-11-02 11:10:25 -07001130
Dianne Hackborn627bba72009-03-24 22:32:56 -07001131 static final String[] DATA_CONNECTION_NAMES = {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001132 "none", "gprs", "edge", "umts", "cdma", "evdo_0", "evdo_A",
Robert Greenwalt962a9902010-11-02 11:10:25 -07001133 "1xrtt", "hsdpa", "hsupa", "hspa", "iden", "evdo_b", "lte",
Patrick Tjinb71703c2013-11-06 09:27:03 -08001134 "ehrpd", "hspap", "other"
Dianne Hackborn627bba72009-03-24 22:32:56 -07001135 };
1136
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001137 public static final int NUM_DATA_CONNECTION_TYPES = DATA_CONNECTION_OTHER+1;
Dianne Hackborn627bba72009-03-24 22:32:56 -07001138
1139 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07001140 * Returns the time in microseconds that the phone has been running with
Dianne Hackborn627bba72009-03-24 22:32:56 -07001141 * the given data connection.
1142 *
1143 * {@hide}
1144 */
1145 public abstract long getPhoneDataConnectionTime(int dataType,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001146 long elapsedRealtimeUs, int which);
Dianne Hackborn627bba72009-03-24 22:32:56 -07001147
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001148 /**
Dianne Hackborn617f8772009-03-31 15:04:46 -07001149 * Returns the number of times the phone has entered the given data
1150 * connection type.
1151 *
1152 * {@hide}
1153 */
1154 public abstract int getPhoneDataConnectionCount(int dataType, int which);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001155
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001156 public static final BitDescription[] HISTORY_STATE_DESCRIPTIONS
1157 = new BitDescription[] {
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001158 new BitDescription(HistoryItem.STATE_CPU_RUNNING_FLAG, "running", "r"),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001159 new BitDescription(HistoryItem.STATE_WAKE_LOCK_FLAG, "wake_lock", "w"),
1160 new BitDescription(HistoryItem.STATE_SENSOR_ON_FLAG, "sensor", "s"),
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001161 new BitDescription(HistoryItem.STATE_GPS_ON_FLAG, "gps", "g"),
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001162 new BitDescription(HistoryItem.STATE_WIFI_FULL_LOCK_FLAG, "wifi_full_lock", "Wl"),
1163 new BitDescription(HistoryItem.STATE_WIFI_SCAN_FLAG, "wifi_scan", "Ws"),
1164 new BitDescription(HistoryItem.STATE_WIFI_MULTICAST_ON_FLAG, "wifi_multicast", "Wm"),
Dianne Hackborne13c4c02014-02-11 17:18:35 -08001165 new BitDescription(HistoryItem.STATE_MOBILE_RADIO_ACTIVE_FLAG, "mobile_radio", "Pr"),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001166 new BitDescription(HistoryItem.STATE_WIFI_RUNNING_FLAG, "wifi_running", "Wr"),
1167 new BitDescription(HistoryItem.STATE_PHONE_SCANNING_FLAG, "phone_scanning", "Psc"),
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001168 new BitDescription(HistoryItem.STATE_AUDIO_ON_FLAG, "audio", "a"),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001169 new BitDescription(HistoryItem.STATE_SCREEN_ON_FLAG, "screen", "S"),
1170 new BitDescription(HistoryItem.STATE_BATTERY_PLUGGED_FLAG, "plugged", "BP"),
1171 new BitDescription(HistoryItem.STATE_PHONE_IN_CALL_FLAG, "phone_in_call", "Pcl"),
1172 new BitDescription(HistoryItem.STATE_WIFI_ON_FLAG, "wifi", "W"),
1173 new BitDescription(HistoryItem.STATE_BLUETOOTH_ON_FLAG, "bluetooth", "b"),
1174 new BitDescription(HistoryItem.STATE_DATA_CONNECTION_MASK,
1175 HistoryItem.STATE_DATA_CONNECTION_SHIFT, "data_conn", "Pcn",
1176 DATA_CONNECTION_NAMES, DATA_CONNECTION_NAMES),
1177 new BitDescription(HistoryItem.STATE_PHONE_STATE_MASK,
1178 HistoryItem.STATE_PHONE_STATE_SHIFT, "phone_state", "Pst",
1179 new String[] {"in", "out", "emergency", "off"},
1180 new String[] {"in", "out", "em", "off"}),
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001181 new BitDescription(HistoryItem.STATE_SIGNAL_STRENGTH_MASK,
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001182 HistoryItem.STATE_SIGNAL_STRENGTH_SHIFT, "signal_strength", "Pss",
1183 SignalStrength.SIGNAL_STRENGTH_NAMES, new String[] {
1184 "0", "1", "2", "3", "4"
1185 }),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001186 new BitDescription(HistoryItem.STATE_BRIGHTNESS_MASK,
1187 HistoryItem.STATE_BRIGHTNESS_SHIFT, "brightness", "Sb",
1188 SCREEN_BRIGHTNESS_NAMES, SCREEN_BRIGHTNESS_SHORT_NAMES),
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001189 };
Dianne Hackborn617f8772009-03-31 15:04:46 -07001190
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001191 public static final BitDescription[] HISTORY_STATE2_DESCRIPTIONS
1192 = new BitDescription[] {
1193 new BitDescription(HistoryItem.STATE2_VIDEO_ON_FLAG, "video", "v"),
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001194 new BitDescription(HistoryItem.STATE2_LOW_POWER_FLAG, "low_power", "lp"),
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001195 };
1196
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08001197 public static final String[] HISTORY_EVENT_NAMES = new String[] {
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001198 "null", "proc", "fg", "top", "sync", "wake_lock_in"
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08001199 };
1200
1201 public static final String[] HISTORY_EVENT_CHECKIN_NAMES = new String[] {
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001202 "Enl", "Epr", "Efg", "Etp", "Esy", "Ewl"
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08001203 };
1204
Dianne Hackborn617f8772009-03-31 15:04:46 -07001205 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07001206 * Returns the time in microseconds that wifi has been on while the device was
The Android Open Source Project10592532009-03-18 17:39:46 -07001207 * running on battery.
1208 *
1209 * {@hide}
1210 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001211 public abstract long getWifiOnTime(long elapsedRealtimeUs, int which);
Eric Shienbroodd4c5f892009-03-24 18:13:20 -07001212
1213 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07001214 * Returns the time in microseconds that wifi has been on and the driver has
Eric Shienbroodd4c5f892009-03-24 18:13:20 -07001215 * been in the running state while the device was running on battery.
1216 *
1217 * {@hide}
1218 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001219 public abstract long getGlobalWifiRunningTime(long elapsedRealtimeUs, int which);
Eric Shienbroodd4c5f892009-03-24 18:13:20 -07001220
Dianne Hackbornca1bf212014-02-14 14:18:36 -08001221 public static final int WIFI_STATE_OFF = 0;
1222 public static final int WIFI_STATE_OFF_SCANNING = 1;
1223 public static final int WIFI_STATE_ON_NO_NETWORKS = 2;
1224 public static final int WIFI_STATE_ON_DISCONNECTED = 3;
1225 public static final int WIFI_STATE_ON_CONNECTED_STA = 4;
1226 public static final int WIFI_STATE_ON_CONNECTED_P2P = 5;
1227 public static final int WIFI_STATE_ON_CONNECTED_STA_P2P = 6;
1228 public static final int WIFI_STATE_SOFT_AP = 7;
1229
1230 static final String[] WIFI_STATE_NAMES = {
1231 "off", "scanning", "no_net", "disconn",
1232 "sta", "p2p", "sta_p2p", "soft_ap"
1233 };
1234
1235 public static final int NUM_WIFI_STATES = WIFI_STATE_SOFT_AP+1;
1236
1237 /**
1238 * Returns the time in microseconds that WiFi has been running in the given state.
1239 *
1240 * {@hide}
1241 */
1242 public abstract long getWifiStateTime(int wifiState,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001243 long elapsedRealtimeUs, int which);
Dianne Hackbornca1bf212014-02-14 14:18:36 -08001244
1245 /**
1246 * Returns the number of times that WiFi has entered the given state.
1247 *
1248 * {@hide}
1249 */
1250 public abstract int getWifiStateCount(int wifiState, int which);
1251
The Android Open Source Project10592532009-03-18 17:39:46 -07001252 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07001253 * Returns the time in microseconds that bluetooth has been on while the device was
The Android Open Source Project10592532009-03-18 17:39:46 -07001254 * running on battery.
1255 *
1256 * {@hide}
1257 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001258 public abstract long getBluetoothOnTime(long elapsedRealtimeUs, int which);
The Android Open Source Project10592532009-03-18 17:39:46 -07001259
Dianne Hackborna7c837f2014-01-15 16:20:44 -08001260 public abstract int getBluetoothPingCount();
1261
Dianne Hackbornca1bf212014-02-14 14:18:36 -08001262 public static final int BLUETOOTH_STATE_INACTIVE = 0;
1263 public static final int BLUETOOTH_STATE_LOW = 1;
1264 public static final int BLUETOOTH_STATE_MEDIUM = 2;
1265 public static final int BLUETOOTH_STATE_HIGH = 3;
Dianne Hackborne13c4c02014-02-11 17:18:35 -08001266
Dianne Hackbornca1bf212014-02-14 14:18:36 -08001267 static final String[] BLUETOOTH_STATE_NAMES = {
1268 "inactive", "low", "med", "high"
Dianne Hackborne13c4c02014-02-11 17:18:35 -08001269 };
1270
Dianne Hackbornca1bf212014-02-14 14:18:36 -08001271 public static final int NUM_BLUETOOTH_STATES = BLUETOOTH_STATE_HIGH +1;
Dianne Hackborne13c4c02014-02-11 17:18:35 -08001272
1273 /**
1274 * Returns the time in microseconds that Bluetooth has been running in the
1275 * given active state.
1276 *
1277 * {@hide}
1278 */
Dianne Hackbornca1bf212014-02-14 14:18:36 -08001279 public abstract long getBluetoothStateTime(int bluetoothState,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001280 long elapsedRealtimeUs, int which);
Dianne Hackborne13c4c02014-02-11 17:18:35 -08001281
1282 /**
Dianne Hackbornca1bf212014-02-14 14:18:36 -08001283 * Returns the number of times that Bluetooth has entered the given active state.
Dianne Hackborne13c4c02014-02-11 17:18:35 -08001284 *
1285 * {@hide}
1286 */
Dianne Hackbornca1bf212014-02-14 14:18:36 -08001287 public abstract int getBluetoothStateCount(int bluetoothState, int which);
Dianne Hackborne13c4c02014-02-11 17:18:35 -08001288
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001289 public static final int NETWORK_MOBILE_RX_DATA = 0;
1290 public static final int NETWORK_MOBILE_TX_DATA = 1;
1291 public static final int NETWORK_WIFI_RX_DATA = 2;
1292 public static final int NETWORK_WIFI_TX_DATA = 3;
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07001293
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001294 public static final int NUM_NETWORK_ACTIVITY_TYPES = NETWORK_WIFI_TX_DATA + 1;
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07001295
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001296 public abstract long getNetworkActivityBytes(int type, int which);
1297 public abstract long getNetworkActivityPackets(int type, int which);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07001298
The Android Open Source Project10592532009-03-18 17:39:46 -07001299 /**
Dianne Hackborn5f4a5f92014-01-24 16:59:34 -08001300 * Return the wall clock time when battery stats data collection started.
1301 */
1302 public abstract long getStartClockTime();
1303
1304 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001305 * Return whether we are currently running on battery.
1306 */
1307 public abstract boolean getIsOnBattery();
1308
1309 /**
1310 * Returns a SparseArray containing the statistics for each uid.
1311 */
1312 public abstract SparseArray<? extends Uid> getUidStats();
1313
1314 /**
1315 * Returns the current battery uptime in microseconds.
1316 *
1317 * @param curTime the amount of elapsed realtime in microseconds.
1318 */
1319 public abstract long getBatteryUptime(long curTime);
1320
1321 /**
1322 * Returns the current battery realtime in microseconds.
1323 *
1324 * @param curTime the amount of elapsed realtime in microseconds.
1325 */
1326 public abstract long getBatteryRealtime(long curTime);
The Android Open Source Project10592532009-03-18 17:39:46 -07001327
1328 /**
Evan Millar633a1742009-04-02 16:36:33 -07001329 * Returns the battery percentage level at the last time the device was unplugged from power, or
1330 * the last time it booted on battery power.
The Android Open Source Project10592532009-03-18 17:39:46 -07001331 */
Evan Millar633a1742009-04-02 16:36:33 -07001332 public abstract int getDischargeStartLevel();
The Android Open Source Project10592532009-03-18 17:39:46 -07001333
1334 /**
Evan Millar633a1742009-04-02 16:36:33 -07001335 * Returns the current battery percentage level if we are in a discharge cycle, otherwise
1336 * returns the level at the last plug event.
The Android Open Source Project10592532009-03-18 17:39:46 -07001337 */
Evan Millar633a1742009-04-02 16:36:33 -07001338 public abstract int getDischargeCurrentLevel();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001339
1340 /**
Dianne Hackborn3bee5af82010-07-23 00:22:04 -07001341 * Get the amount the battery has discharged since the stats were
1342 * last reset after charging, as a lower-end approximation.
1343 */
1344 public abstract int getLowDischargeAmountSinceCharge();
1345
1346 /**
1347 * Get the amount the battery has discharged since the stats were
1348 * last reset after charging, as an upper-end approximation.
1349 */
1350 public abstract int getHighDischargeAmountSinceCharge();
1351
1352 /**
Dianne Hackborn40c87252014-03-19 16:55:40 -07001353 * Retrieve the discharge amount over the selected discharge period <var>which</var>.
1354 */
1355 public abstract int getDischargeAmount(int which);
1356
1357 /**
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08001358 * Get the amount the battery has discharged while the screen was on,
1359 * since the last time power was unplugged.
1360 */
1361 public abstract int getDischargeAmountScreenOn();
1362
1363 /**
1364 * Get the amount the battery has discharged while the screen was on,
1365 * since the last time the device was charged.
1366 */
1367 public abstract int getDischargeAmountScreenOnSinceCharge();
1368
1369 /**
1370 * Get the amount the battery has discharged while the screen was off,
1371 * since the last time power was unplugged.
1372 */
1373 public abstract int getDischargeAmountScreenOff();
1374
1375 /**
1376 * Get the amount the battery has discharged while the screen was off,
1377 * since the last time the device was charged.
1378 */
1379 public abstract int getDischargeAmountScreenOffSinceCharge();
1380
1381 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001382 * Returns the total, last, or current battery uptime in microseconds.
1383 *
1384 * @param curTime the elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07001385 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001386 */
1387 public abstract long computeBatteryUptime(long curTime, int which);
1388
1389 /**
1390 * Returns the total, last, or current battery realtime in microseconds.
1391 *
1392 * @param curTime the current elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07001393 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001394 */
1395 public abstract long computeBatteryRealtime(long curTime, int which);
1396
1397 /**
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001398 * Returns the total, last, or current battery screen off uptime in microseconds.
1399 *
1400 * @param curTime the elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07001401 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001402 */
1403 public abstract long computeBatteryScreenOffUptime(long curTime, int which);
1404
1405 /**
1406 * Returns the total, last, or current battery screen off realtime in microseconds.
1407 *
1408 * @param curTime the current elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07001409 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001410 */
1411 public abstract long computeBatteryScreenOffRealtime(long curTime, int which);
1412
1413 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001414 * Returns the total, last, or current uptime in microseconds.
1415 *
1416 * @param curTime the current elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07001417 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001418 */
1419 public abstract long computeUptime(long curTime, int which);
1420
1421 /**
1422 * Returns the total, last, or current realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07001423 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001424 * @param curTime the current elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07001425 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001426 */
1427 public abstract long computeRealtime(long curTime, int which);
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07001428
1429 /**
1430 * Compute an approximation for how much run time (in microseconds) is remaining on
1431 * the battery. Returns -1 if no time can be computed: either there is not
1432 * enough current data to make a decision, or the battery is currently
1433 * charging.
1434 *
1435 * @param curTime The current elepsed realtime in microseconds.
1436 */
1437 public abstract long computeBatteryTimeRemaining(long curTime);
1438
1439 /**
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07001440 * Return the historical number of discharge steps we currently have.
1441 */
1442 public abstract int getNumDischargeStepDurations();
1443
1444 /**
1445 * Return the array of discharge step durations; the number of valid
1446 * items in it is returned by {@link #getNumDischargeStepDurations()}.
1447 * These values are in milliseconds.
1448 */
1449 public abstract long[] getDischargeStepDurationsArray();
1450
1451 /**
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07001452 * Compute an approximation for how much time (in microseconds) remains until the battery
1453 * is fully charged. Returns -1 if no time can be computed: either there is not
1454 * enough current data to make a decision, or the battery is currently
1455 * discharging.
1456 *
1457 * @param curTime The current elepsed realtime in microseconds.
1458 */
1459 public abstract long computeChargeTimeRemaining(long curTime);
1460
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07001461 /**
1462 * Return the historical number of charge steps we currently have.
1463 */
1464 public abstract int getNumChargeStepDurations();
1465
1466 /**
1467 * Return the array of charge step durations; the number of valid
1468 * items in it is returned by {@link #getNumChargeStepDurations()}.
1469 * These values are in milliseconds.
1470 */
1471 public abstract long[] getChargeStepDurationsArray();
1472
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001473 public abstract Map<String, ? extends LongCounter> getWakeupReasonStats();
1474
Evan Millarc64edde2009-04-18 12:26:32 -07001475 public abstract Map<String, ? extends Timer> getKernelWakelockStats();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001476
Amith Yamasanie43530a2009-08-21 13:11:37 -07001477 /** Returns the number of different speeds that the CPU can run at */
1478 public abstract int getCpuSpeedSteps();
1479
Dianne Hackborna7c837f2014-01-15 16:20:44 -08001480 public abstract void writeToParcelWithoutUids(Parcel out, int flags);
1481
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001482 private final static void formatTimeRaw(StringBuilder out, long seconds) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001483 long days = seconds / (60 * 60 * 24);
1484 if (days != 0) {
1485 out.append(days);
1486 out.append("d ");
1487 }
1488 long used = days * 60 * 60 * 24;
1489
1490 long hours = (seconds - used) / (60 * 60);
1491 if (hours != 0 || used != 0) {
1492 out.append(hours);
1493 out.append("h ");
1494 }
1495 used += hours * 60 * 60;
1496
1497 long mins = (seconds-used) / 60;
1498 if (mins != 0 || used != 0) {
1499 out.append(mins);
1500 out.append("m ");
1501 }
1502 used += mins * 60;
1503
1504 if (seconds != 0 || used != 0) {
1505 out.append(seconds-used);
1506 out.append("s ");
1507 }
1508 }
1509
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001510 public final static void formatTime(StringBuilder sb, long time) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001511 long sec = time / 100;
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001512 formatTimeRaw(sb, sec);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001513 sb.append((time - (sec * 100)) * 10);
1514 sb.append("ms ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001515 }
1516
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001517 public final static void formatTimeMs(StringBuilder sb, long time) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001518 long sec = time / 1000;
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001519 formatTimeRaw(sb, sec);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001520 sb.append(time - (sec * 1000));
1521 sb.append("ms ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001522 }
1523
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001524 public final static void formatTimeMsNoSpace(StringBuilder sb, long time) {
Dianne Hackbornd45665b2014-02-26 12:35:32 -08001525 long sec = time / 1000;
1526 formatTimeRaw(sb, sec);
1527 sb.append(time - (sec * 1000));
1528 sb.append("ms");
1529 }
1530
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001531 public final String formatRatioLocked(long num, long den) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001532 if (den == 0L) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001533 return "--%";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001534 }
1535 float perc = ((float)num) / ((float)den) * 100;
1536 mFormatBuilder.setLength(0);
1537 mFormatter.format("%.1f%%", perc);
1538 return mFormatBuilder.toString();
1539 }
1540
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001541 final String formatBytesLocked(long bytes) {
Evan Millar22ac0432009-03-31 11:33:18 -07001542 mFormatBuilder.setLength(0);
1543
1544 if (bytes < BYTES_PER_KB) {
1545 return bytes + "B";
1546 } else if (bytes < BYTES_PER_MB) {
1547 mFormatter.format("%.2fKB", bytes / (double) BYTES_PER_KB);
1548 return mFormatBuilder.toString();
1549 } else if (bytes < BYTES_PER_GB){
1550 mFormatter.format("%.2fMB", bytes / (double) BYTES_PER_MB);
1551 return mFormatBuilder.toString();
1552 } else {
1553 mFormatter.format("%.2fGB", bytes / (double) BYTES_PER_GB);
1554 return mFormatBuilder.toString();
1555 }
1556 }
1557
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001558 private static long computeWakeLock(Timer timer, long elapsedRealtimeUs, int which) {
Dianne Hackbornc24ab862011-10-18 15:55:03 -07001559 if (timer != null) {
1560 // Convert from microseconds to milliseconds with rounding
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001561 long totalTimeMicros = timer.getTotalTimeLocked(elapsedRealtimeUs, which);
Dianne Hackbornc24ab862011-10-18 15:55:03 -07001562 long totalTimeMillis = (totalTimeMicros + 500) / 1000;
1563 return totalTimeMillis;
1564 }
1565 return 0;
1566 }
1567
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001568 /**
1569 *
1570 * @param sb a StringBuilder object.
1571 * @param timer a Timer object contining the wakelock times.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001572 * @param elapsedRealtimeUs the current on-battery time in microseconds.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001573 * @param name the name of the wakelock.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07001574 * @param which which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001575 * @param linePrefix a String to be prepended to each line of output.
1576 * @return the line prefix
1577 */
1578 private static final String printWakeLock(StringBuilder sb, Timer timer,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001579 long elapsedRealtimeUs, String name, int which, String linePrefix) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001580
1581 if (timer != null) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001582 long totalTimeMillis = computeWakeLock(timer, elapsedRealtimeUs, which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001583
Evan Millarc64edde2009-04-18 12:26:32 -07001584 int count = timer.getCountLocked(which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001585 if (totalTimeMillis != 0) {
1586 sb.append(linePrefix);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001587 formatTimeMs(sb, totalTimeMillis);
Dianne Hackborn81038902012-11-26 17:04:09 -08001588 if (name != null) {
1589 sb.append(name);
1590 sb.append(' ');
1591 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001592 sb.append('(');
1593 sb.append(count);
1594 sb.append(" times)");
1595 return ", ";
1596 }
1597 }
1598 return linePrefix;
1599 }
1600
1601 /**
1602 * Checkin version of wakelock printer. Prints simple comma-separated list.
1603 *
1604 * @param sb a StringBuilder object.
1605 * @param timer a Timer object contining the wakelock times.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001606 * @param elapsedRealtimeUs the current time in microseconds.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001607 * @param name the name of the wakelock.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07001608 * @param which which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001609 * @param linePrefix a String to be prepended to each line of output.
1610 * @return the line prefix
1611 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001612 private static final String printWakeLockCheckin(StringBuilder sb, Timer timer,
1613 long elapsedRealtimeUs, String name, int which, String linePrefix) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001614 long totalTimeMicros = 0;
1615 int count = 0;
1616 if (timer != null) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001617 totalTimeMicros = timer.getTotalTimeLocked(elapsedRealtimeUs, which);
Evan Millarc64edde2009-04-18 12:26:32 -07001618 count = timer.getCountLocked(which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001619 }
1620 sb.append(linePrefix);
1621 sb.append((totalTimeMicros + 500) / 1000); // microseconds to milliseconds with rounding
1622 sb.append(',');
Evan Millarc64edde2009-04-18 12:26:32 -07001623 sb.append(name != null ? name + "," : "");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001624 sb.append(count);
1625 return ",";
1626 }
1627
1628 /**
1629 * Dump a comma-separated line of values for terse checkin mode.
1630 *
1631 * @param pw the PageWriter to dump log to
1632 * @param category category of data (e.g. "total", "last", "unplugged", "current" )
1633 * @param type type of data (e.g. "wakelock", "sensor", "process", "apk" , "process", "network")
1634 * @param args type-dependent data arguments
1635 */
1636 private static final void dumpLine(PrintWriter pw, int uid, String category, String type,
1637 Object... args ) {
1638 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
1639 pw.print(uid); pw.print(',');
1640 pw.print(category); pw.print(',');
Dianne Hackborn13ac0412013-06-25 19:34:49 -07001641 pw.print(type);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001642
1643 for (Object arg : args) {
Dianne Hackborn13ac0412013-06-25 19:34:49 -07001644 pw.print(',');
1645 pw.print(arg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001646 }
Dianne Hackborn13ac0412013-06-25 19:34:49 -07001647 pw.println();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001648 }
1649
1650 /**
1651 * Checkin server version of dump to produce more compact, computer-readable log.
1652 *
1653 * NOTE: all times are expressed in 'ms'.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001654 */
Dianne Hackborna7c837f2014-01-15 16:20:44 -08001655 public final void dumpCheckinLocked(Context context, PrintWriter pw, int which, int reqUid) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001656 final long rawUptime = SystemClock.uptimeMillis() * 1000;
1657 final long rawRealtime = SystemClock.elapsedRealtime() * 1000;
1658 final long batteryUptime = getBatteryUptime(rawUptime);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001659 final long whichBatteryUptime = computeBatteryUptime(rawUptime, which);
1660 final long whichBatteryRealtime = computeBatteryRealtime(rawRealtime, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001661 final long whichBatteryScreenOffUptime = computeBatteryScreenOffUptime(rawUptime, which);
1662 final long whichBatteryScreenOffRealtime = computeBatteryScreenOffRealtime(rawRealtime,
1663 which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001664 final long totalRealtime = computeRealtime(rawRealtime, which);
1665 final long totalUptime = computeUptime(rawUptime, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001666 final long screenOnTime = getScreenOnTime(rawRealtime, which);
Jeff Browne95c3cd2014-05-02 16:59:26 -07001667 final long interactiveTime = getInteractiveTime(rawRealtime, which);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001668 final long lowPowerModeEnabledTime = getLowPowerModeEnabledTime(rawRealtime, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001669 final long phoneOnTime = getPhoneOnTime(rawRealtime, which);
1670 final long wifiOnTime = getWifiOnTime(rawRealtime, which);
1671 final long wifiRunningTime = getGlobalWifiRunningTime(rawRealtime, which);
1672 final long bluetoothOnTime = getBluetoothOnTime(rawRealtime, which);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001673
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001674 StringBuilder sb = new StringBuilder(128);
1675
Evan Millar22ac0432009-03-31 11:33:18 -07001676 SparseArray<? extends Uid> uidStats = getUidStats();
1677 final int NU = uidStats.size();
1678
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001679 String category = STAT_NAMES[which];
Jeff Sharkey3e013e82013-04-25 14:48:19 -07001680
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001681 // Dump "battery" stat
1682 dumpLine(pw, 0 /* uid */, category, BATTERY_DATA,
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001683 which == STATS_SINCE_CHARGED ? getStartCount() : "N/A",
Dianne Hackborn617f8772009-03-31 15:04:46 -07001684 whichBatteryRealtime / 1000, whichBatteryUptime / 1000,
Dianne Hackborn5f4a5f92014-01-24 16:59:34 -08001685 totalRealtime / 1000, totalUptime / 1000,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001686 getStartClockTime(),
1687 whichBatteryScreenOffRealtime / 1000, whichBatteryScreenOffUptime / 1000);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001688
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001689 // Calculate wakelock times across all uids.
Evan Millar22ac0432009-03-31 11:33:18 -07001690 long fullWakeLockTimeTotal = 0;
1691 long partialWakeLockTimeTotal = 0;
1692
1693 for (int iu = 0; iu < NU; iu++) {
1694 Uid u = uidStats.valueAt(iu);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07001695
Evan Millar22ac0432009-03-31 11:33:18 -07001696 Map<String, ? extends BatteryStats.Uid.Wakelock> wakelocks = u.getWakelockStats();
1697 if (wakelocks.size() > 0) {
1698 for (Map.Entry<String, ? extends BatteryStats.Uid.Wakelock> ent
1699 : wakelocks.entrySet()) {
1700 Uid.Wakelock wl = ent.getValue();
1701
1702 Timer fullWakeTimer = wl.getWakeTime(WAKE_TYPE_FULL);
1703 if (fullWakeTimer != null) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001704 fullWakeLockTimeTotal += fullWakeTimer.getTotalTimeLocked(rawRealtime,
1705 which);
Evan Millar22ac0432009-03-31 11:33:18 -07001706 }
1707
1708 Timer partialWakeTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
1709 if (partialWakeTimer != null) {
Evan Millarc64edde2009-04-18 12:26:32 -07001710 partialWakeLockTimeTotal += partialWakeTimer.getTotalTimeLocked(
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001711 rawRealtime, which);
Evan Millar22ac0432009-03-31 11:33:18 -07001712 }
1713 }
1714 }
1715 }
1716
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001717 long mobileRxTotalBytes = getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which);
1718 long mobileTxTotalBytes = getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which);
1719 long wifiRxTotalBytes = getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which);
1720 long wifiTxTotalBytes = getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which);
1721 long mobileRxTotalPackets = getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which);
1722 long mobileTxTotalPackets = getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which);
1723 long wifiRxTotalPackets = getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which);
1724 long wifiTxTotalPackets = getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which);
1725
1726 // Dump network stats
1727 dumpLine(pw, 0 /* uid */, category, GLOBAL_NETWORK_DATA,
1728 mobileRxTotalBytes, mobileTxTotalBytes, wifiRxTotalBytes, wifiTxTotalBytes,
1729 mobileRxTotalPackets, mobileTxTotalPackets, wifiRxTotalPackets, wifiTxTotalPackets);
1730
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001731 // Dump misc stats
1732 dumpLine(pw, 0 /* uid */, category, MISC_DATA,
Eric Shienbroodd4c5f892009-03-24 18:13:20 -07001733 screenOnTime / 1000, phoneOnTime / 1000, wifiOnTime / 1000,
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07001734 wifiRunningTime / 1000, bluetoothOnTime / 1000,
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001735 mobileRxTotalBytes, mobileTxTotalBytes, wifiRxTotalBytes, wifiTxTotalBytes,
Dianne Hackborn617f8772009-03-31 15:04:46 -07001736 fullWakeLockTimeTotal, partialWakeLockTimeTotal,
Jeff Browne95c3cd2014-05-02 16:59:26 -07001737 0 /*legacy input event count*/, getMobileRadioActiveTime(rawRealtime, which),
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001738 getMobileRadioActiveAdjustedTime(which), interactiveTime / 1000,
1739 lowPowerModeEnabledTime / 1000);
Dianne Hackborn617f8772009-03-31 15:04:46 -07001740
1741 // Dump screen brightness stats
1742 Object[] args = new Object[NUM_SCREEN_BRIGHTNESS_BINS];
1743 for (int i=0; i<NUM_SCREEN_BRIGHTNESS_BINS; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001744 args[i] = getScreenBrightnessTime(i, rawRealtime, which) / 1000;
Dianne Hackborn617f8772009-03-31 15:04:46 -07001745 }
1746 dumpLine(pw, 0 /* uid */, category, SCREEN_BRIGHTNESS_DATA, args);
The Android Open Source Project10592532009-03-18 17:39:46 -07001747
Dianne Hackborn627bba72009-03-24 22:32:56 -07001748 // Dump signal strength stats
Wink Saville52840902011-02-18 12:40:47 -08001749 args = new Object[SignalStrength.NUM_SIGNAL_STRENGTH_BINS];
1750 for (int i=0; i<SignalStrength.NUM_SIGNAL_STRENGTH_BINS; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001751 args[i] = getPhoneSignalStrengthTime(i, rawRealtime, which) / 1000;
Dianne Hackborn627bba72009-03-24 22:32:56 -07001752 }
Dianne Hackborn617f8772009-03-31 15:04:46 -07001753 dumpLine(pw, 0 /* uid */, category, SIGNAL_STRENGTH_TIME_DATA, args);
Amith Yamasanif37447b2009-10-08 18:28:01 -07001754 dumpLine(pw, 0 /* uid */, category, SIGNAL_SCANNING_TIME_DATA,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001755 getPhoneSignalScanningTime(rawRealtime, which) / 1000);
Wink Saville52840902011-02-18 12:40:47 -08001756 for (int i=0; i<SignalStrength.NUM_SIGNAL_STRENGTH_BINS; i++) {
Dianne Hackborn617f8772009-03-31 15:04:46 -07001757 args[i] = getPhoneSignalStrengthCount(i, which);
1758 }
1759 dumpLine(pw, 0 /* uid */, category, SIGNAL_STRENGTH_COUNT_DATA, args);
Dianne Hackborne13c4c02014-02-11 17:18:35 -08001760
Dianne Hackborn627bba72009-03-24 22:32:56 -07001761 // Dump network type stats
1762 args = new Object[NUM_DATA_CONNECTION_TYPES];
1763 for (int i=0; i<NUM_DATA_CONNECTION_TYPES; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001764 args[i] = getPhoneDataConnectionTime(i, rawRealtime, which) / 1000;
Dianne Hackborn627bba72009-03-24 22:32:56 -07001765 }
Dianne Hackborn617f8772009-03-31 15:04:46 -07001766 dumpLine(pw, 0 /* uid */, category, DATA_CONNECTION_TIME_DATA, args);
1767 for (int i=0; i<NUM_DATA_CONNECTION_TYPES; i++) {
1768 args[i] = getPhoneDataConnectionCount(i, which);
1769 }
1770 dumpLine(pw, 0 /* uid */, category, DATA_CONNECTION_COUNT_DATA, args);
Dianne Hackbornca1bf212014-02-14 14:18:36 -08001771
1772 // Dump wifi state stats
1773 args = new Object[NUM_WIFI_STATES];
1774 for (int i=0; i<NUM_WIFI_STATES; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001775 args[i] = getWifiStateTime(i, rawRealtime, which) / 1000;
Dianne Hackbornca1bf212014-02-14 14:18:36 -08001776 }
1777 dumpLine(pw, 0 /* uid */, category, WIFI_STATE_TIME_DATA, args);
1778 for (int i=0; i<NUM_WIFI_STATES; i++) {
1779 args[i] = getWifiStateCount(i, which);
1780 }
1781 dumpLine(pw, 0 /* uid */, category, WIFI_STATE_COUNT_DATA, args);
1782
1783 // Dump bluetooth state stats
1784 args = new Object[NUM_BLUETOOTH_STATES];
1785 for (int i=0; i<NUM_BLUETOOTH_STATES; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001786 args[i] = getBluetoothStateTime(i, rawRealtime, which) / 1000;
Dianne Hackbornca1bf212014-02-14 14:18:36 -08001787 }
1788 dumpLine(pw, 0 /* uid */, category, BLUETOOTH_STATE_TIME_DATA, args);
1789 for (int i=0; i<NUM_BLUETOOTH_STATES; i++) {
1790 args[i] = getBluetoothStateCount(i, which);
1791 }
1792 dumpLine(pw, 0 /* uid */, category, BLUETOOTH_STATE_COUNT_DATA, args);
1793
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001794 if (which == STATS_SINCE_UNPLUGGED) {
Dianne Hackborne13c4c02014-02-11 17:18:35 -08001795 dumpLine(pw, 0 /* uid */, category, BATTERY_LEVEL_DATA, getDischargeStartLevel(),
Evan Millar633a1742009-04-02 16:36:33 -07001796 getDischargeCurrentLevel());
The Android Open Source Project10592532009-03-18 17:39:46 -07001797 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001798
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08001799 if (which == STATS_SINCE_UNPLUGGED) {
1800 dumpLine(pw, 0 /* uid */, category, BATTERY_DISCHARGE_DATA,
1801 getDischargeStartLevel()-getDischargeCurrentLevel(),
1802 getDischargeStartLevel()-getDischargeCurrentLevel(),
1803 getDischargeAmountScreenOn(), getDischargeAmountScreenOff());
1804 } else {
1805 dumpLine(pw, 0 /* uid */, category, BATTERY_DISCHARGE_DATA,
1806 getLowDischargeAmountSinceCharge(), getHighDischargeAmountSinceCharge(),
1807 getDischargeAmountScreenOn(), getDischargeAmountScreenOff());
1808 }
1809
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001810 if (reqUid < 0) {
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001811 Map<String, ? extends Timer> kernelWakelocks = getKernelWakelockStats();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001812 if (kernelWakelocks.size() > 0) {
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001813 for (Map.Entry<String, ? extends Timer> ent : kernelWakelocks.entrySet()) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001814 sb.setLength(0);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001815 printWakeLockCheckin(sb, ent.getValue(), rawRealtime, null, which, "");
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001816 dumpLine(pw, 0 /* uid */, category, KERNEL_WAKELOCK_DATA, ent.getKey(),
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001817 sb.toString());
1818 }
Evan Millarc64edde2009-04-18 12:26:32 -07001819 }
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001820 Map<String, ? extends LongCounter> wakeupReasons = getWakeupReasonStats();
1821 if (wakeupReasons.size() > 0) {
1822 for (Map.Entry<String, ? extends LongCounter> ent : wakeupReasons.entrySet()) {
1823 dumpLine(pw, 0 /* uid */, category, WAKEUP_REASON_DATA,
1824 "\"" + ent.getKey() + "\"", ent.getValue().getCountLocked(which));
1825 }
1826 }
Evan Millarc64edde2009-04-18 12:26:32 -07001827 }
1828
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07001829 BatteryStatsHelper helper = new BatteryStatsHelper(context, false);
Dianne Hackborna7c837f2014-01-15 16:20:44 -08001830 helper.create(this);
1831 helper.refreshStats(which, UserHandle.USER_ALL);
1832 List<BatterySipper> sippers = helper.getUsageList();
1833 if (sippers != null && sippers.size() > 0) {
1834 dumpLine(pw, 0 /* uid */, category, POWER_USE_SUMMARY_DATA,
1835 BatteryStatsHelper.makemAh(helper.getPowerProfile().getBatteryCapacity()),
Dianne Hackborn099bc622014-01-22 13:39:16 -08001836 BatteryStatsHelper.makemAh(helper.getComputedPower()),
Dianne Hackborna7c837f2014-01-15 16:20:44 -08001837 BatteryStatsHelper.makemAh(helper.getMinDrainedPower()),
1838 BatteryStatsHelper.makemAh(helper.getMaxDrainedPower()));
1839 for (int i=0; i<sippers.size(); i++) {
1840 BatterySipper bs = sippers.get(i);
1841 int uid = 0;
1842 String label;
1843 switch (bs.drainType) {
1844 case IDLE:
1845 label="idle";
1846 break;
1847 case CELL:
1848 label="cell";
1849 break;
1850 case PHONE:
1851 label="phone";
1852 break;
1853 case WIFI:
1854 label="wifi";
1855 break;
1856 case BLUETOOTH:
1857 label="blue";
1858 break;
1859 case SCREEN:
1860 label="scrn";
1861 break;
1862 case APP:
1863 uid = bs.uidObj.getUid();
1864 label = "uid";
1865 break;
1866 case USER:
1867 uid = UserHandle.getUid(bs.userId, 0);
1868 label = "user";
1869 break;
1870 case UNACCOUNTED:
1871 label = "unacc";
1872 break;
1873 case OVERCOUNTED:
1874 label = "over";
1875 break;
1876 default:
1877 label = "???";
1878 }
1879 dumpLine(pw, uid, category, POWER_USE_ITEM_DATA, label,
1880 BatteryStatsHelper.makemAh(bs.value));
1881 }
1882 }
1883
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001884 for (int iu = 0; iu < NU; iu++) {
1885 final int uid = uidStats.keyAt(iu);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001886 if (reqUid >= 0 && uid != reqUid) {
1887 continue;
1888 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001889 Uid u = uidStats.valueAt(iu);
1890 // Dump Network stats per uid, if any
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001891 long mobileBytesRx = u.getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which);
1892 long mobileBytesTx = u.getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which);
1893 long wifiBytesRx = u.getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which);
1894 long wifiBytesTx = u.getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which);
1895 long mobilePacketsRx = u.getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which);
1896 long mobilePacketsTx = u.getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which);
Dianne Hackbornd45665b2014-02-26 12:35:32 -08001897 long mobileActiveTime = u.getMobileRadioActiveTime(which);
1898 int mobileActiveCount = u.getMobileRadioActiveCount(which);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001899 long wifiPacketsRx = u.getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which);
1900 long wifiPacketsTx = u.getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001901 long fullWifiLockOnTime = u.getFullWifiLockTime(rawRealtime, which);
1902 long wifiScanTime = u.getWifiScanTime(rawRealtime, which);
1903 long uidWifiRunningTime = u.getWifiRunningTime(rawRealtime, which);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07001904
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001905 if (mobileBytesRx > 0 || mobileBytesTx > 0 || wifiBytesRx > 0 || wifiBytesTx > 0
1906 || mobilePacketsRx > 0 || mobilePacketsTx > 0 || wifiPacketsRx > 0
Dianne Hackbornd45665b2014-02-26 12:35:32 -08001907 || wifiPacketsTx > 0 || mobileActiveTime > 0 || mobileActiveCount > 0) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001908 dumpLine(pw, uid, category, NETWORK_DATA, mobileBytesRx, mobileBytesTx,
1909 wifiBytesRx, wifiBytesTx,
1910 mobilePacketsRx, mobilePacketsTx,
Dianne Hackbornd45665b2014-02-26 12:35:32 -08001911 wifiPacketsRx, wifiPacketsTx,
1912 mobileActiveTime, mobileActiveCount);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07001913 }
1914
Nick Pelly6ccaa542012-06-15 15:22:47 -07001915 if (fullWifiLockOnTime != 0 || wifiScanTime != 0
Dianne Hackborn58e0eef2010-09-16 01:22:10 -07001916 || uidWifiRunningTime != 0) {
Nick Pelly6ccaa542012-06-15 15:22:47 -07001917 dumpLine(pw, uid, category, WIFI_DATA,
1918 fullWifiLockOnTime, wifiScanTime, uidWifiRunningTime);
The Android Open Source Project10592532009-03-18 17:39:46 -07001919 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001920
Dianne Hackborn617f8772009-03-31 15:04:46 -07001921 if (u.hasUserActivity()) {
1922 args = new Object[Uid.NUM_USER_ACTIVITY_TYPES];
1923 boolean hasData = false;
1924 for (int i=0; i<Uid.NUM_USER_ACTIVITY_TYPES; i++) {
1925 int val = u.getUserActivityCount(i, which);
1926 args[i] = val;
1927 if (val != 0) hasData = true;
1928 }
1929 if (hasData) {
1930 dumpLine(pw, 0 /* uid */, category, USER_ACTIVITY_DATA, args);
1931 }
1932 }
1933
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001934 Map<String, ? extends BatteryStats.Uid.Wakelock> wakelocks = u.getWakelockStats();
1935 if (wakelocks.size() > 0) {
1936 for (Map.Entry<String, ? extends BatteryStats.Uid.Wakelock> ent
1937 : wakelocks.entrySet()) {
1938 Uid.Wakelock wl = ent.getValue();
1939 String linePrefix = "";
1940 sb.setLength(0);
Evan Millarc64edde2009-04-18 12:26:32 -07001941 linePrefix = printWakeLockCheckin(sb, wl.getWakeTime(WAKE_TYPE_FULL),
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001942 rawRealtime, "f", which, linePrefix);
Evan Millarc64edde2009-04-18 12:26:32 -07001943 linePrefix = printWakeLockCheckin(sb, wl.getWakeTime(WAKE_TYPE_PARTIAL),
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001944 rawRealtime, "p", which, linePrefix);
Evan Millarc64edde2009-04-18 12:26:32 -07001945 linePrefix = printWakeLockCheckin(sb, wl.getWakeTime(WAKE_TYPE_WINDOW),
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001946 rawRealtime, "w", which, linePrefix);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001947
1948 // Only log if we had at lease one wakelock...
1949 if (sb.length() > 0) {
Dianne Hackborn13ac0412013-06-25 19:34:49 -07001950 String name = ent.getKey();
1951 if (name.indexOf(',') >= 0) {
1952 name = name.replace(',', '_');
1953 }
1954 dumpLine(pw, uid, category, WAKELOCK_DATA, name, sb.toString());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001955 }
1956 }
1957 }
1958
1959 Map<Integer, ? extends BatteryStats.Uid.Sensor> sensors = u.getSensorStats();
1960 if (sensors.size() > 0) {
1961 for (Map.Entry<Integer, ? extends BatteryStats.Uid.Sensor> ent
1962 : sensors.entrySet()) {
1963 Uid.Sensor se = ent.getValue();
1964 int sensorNumber = ent.getKey();
1965 Timer timer = se.getSensorTime();
1966 if (timer != null) {
1967 // Convert from microseconds to milliseconds with rounding
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001968 long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000;
Evan Millarc64edde2009-04-18 12:26:32 -07001969 int count = timer.getCountLocked(which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001970 if (totalTime != 0) {
1971 dumpLine(pw, uid, category, SENSOR_DATA, sensorNumber, totalTime, count);
1972 }
1973 }
1974 }
1975 }
1976
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001977 Timer vibTimer = u.getVibratorOnTimer();
1978 if (vibTimer != null) {
1979 // Convert from microseconds to milliseconds with rounding
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001980 long totalTime = (vibTimer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001981 int count = vibTimer.getCountLocked(which);
1982 if (totalTime != 0) {
1983 dumpLine(pw, uid, category, VIBRATOR_DATA, totalTime, count);
1984 }
1985 }
1986
Jeff Sharkey3e013e82013-04-25 14:48:19 -07001987 Timer fgTimer = u.getForegroundActivityTimer();
1988 if (fgTimer != null) {
1989 // Convert from microseconds to milliseconds with rounding
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001990 long totalTime = (fgTimer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000;
Jeff Sharkey3e013e82013-04-25 14:48:19 -07001991 int count = fgTimer.getCountLocked(which);
1992 if (totalTime != 0) {
1993 dumpLine(pw, uid, category, FOREGROUND_DATA, totalTime, count);
1994 }
1995 }
1996
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001997 Map<String, ? extends BatteryStats.Uid.Proc> processStats = u.getProcessStats();
1998 if (processStats.size() > 0) {
1999 for (Map.Entry<String, ? extends BatteryStats.Uid.Proc> ent
2000 : processStats.entrySet()) {
2001 Uid.Proc ps = ent.getValue();
Jeff Sharkey3e013e82013-04-25 14:48:19 -07002002
2003 final long userMillis = ps.getUserTime(which) * 10;
2004 final long systemMillis = ps.getSystemTime(which) * 10;
2005 final long foregroundMillis = ps.getForegroundTime(which) * 10;
2006 final long starts = ps.getStarts(which);
2007
2008 if (userMillis != 0 || systemMillis != 0 || foregroundMillis != 0
2009 || starts != 0) {
2010 dumpLine(pw, uid, category, PROCESS_DATA, ent.getKey(), userMillis,
2011 systemMillis, foregroundMillis, starts);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002012 }
2013 }
2014 }
2015
2016 Map<String, ? extends BatteryStats.Uid.Pkg> packageStats = u.getPackageStats();
2017 if (packageStats.size() > 0) {
2018 for (Map.Entry<String, ? extends BatteryStats.Uid.Pkg> ent
2019 : packageStats.entrySet()) {
2020
2021 Uid.Pkg ps = ent.getValue();
2022 int wakeups = ps.getWakeups(which);
2023 Map<String, ? extends Uid.Pkg.Serv> serviceStats = ps.getServiceStats();
2024 for (Map.Entry<String, ? extends BatteryStats.Uid.Pkg.Serv> sent
2025 : serviceStats.entrySet()) {
2026 BatteryStats.Uid.Pkg.Serv ss = sent.getValue();
2027 long startTime = ss.getStartTime(batteryUptime, which);
2028 int starts = ss.getStarts(which);
2029 int launches = ss.getLaunches(which);
2030 if (startTime != 0 || starts != 0 || launches != 0) {
2031 dumpLine(pw, uid, category, APK_DATA,
2032 wakeups, // wakeup alarms
2033 ent.getKey(), // Apk
2034 sent.getKey(), // service
2035 startTime / 1000, // time spent started, in ms
2036 starts,
2037 launches);
2038 }
2039 }
2040 }
2041 }
2042 }
2043 }
2044
Dianne Hackborn81038902012-11-26 17:04:09 -08002045 static final class TimerEntry {
2046 final String mName;
2047 final int mId;
2048 final BatteryStats.Timer mTimer;
2049 final long mTime;
2050 TimerEntry(String name, int id, BatteryStats.Timer timer, long time) {
2051 mName = name;
2052 mId = id;
2053 mTimer = timer;
2054 mTime = time;
2055 }
2056 }
2057
Dianne Hackborna7c837f2014-01-15 16:20:44 -08002058 private void printmAh(PrintWriter printer, double power) {
2059 printer.print(BatteryStatsHelper.makemAh(power));
2060 }
2061
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002062 @SuppressWarnings("unused")
Dianne Hackborna7c837f2014-01-15 16:20:44 -08002063 public final void dumpLocked(Context context, PrintWriter pw, String prefix, final int which,
2064 int reqUid) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002065 final long rawUptime = SystemClock.uptimeMillis() * 1000;
2066 final long rawRealtime = SystemClock.elapsedRealtime() * 1000;
2067 final long batteryUptime = getBatteryUptime(rawUptime);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002068
2069 final long whichBatteryUptime = computeBatteryUptime(rawUptime, which);
2070 final long whichBatteryRealtime = computeBatteryRealtime(rawRealtime, which);
2071 final long totalRealtime = computeRealtime(rawRealtime, which);
2072 final long totalUptime = computeUptime(rawUptime, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002073 final long whichBatteryScreenOffUptime = computeBatteryScreenOffUptime(rawUptime, which);
2074 final long whichBatteryScreenOffRealtime = computeBatteryScreenOffRealtime(rawRealtime,
2075 which);
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002076 final long batteryTimeRemaining = computeBatteryTimeRemaining(rawRealtime);
2077 final long chargeTimeRemaining = computeChargeTimeRemaining(rawRealtime);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002078
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002079 StringBuilder sb = new StringBuilder(128);
Evan Millar22ac0432009-03-31 11:33:18 -07002080
2081 SparseArray<? extends Uid> uidStats = getUidStats();
2082 final int NU = uidStats.size();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002083
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002084 sb.setLength(0);
2085 sb.append(prefix);
2086 sb.append(" Time on battery: ");
2087 formatTimeMs(sb, whichBatteryRealtime / 1000); sb.append("(");
2088 sb.append(formatRatioLocked(whichBatteryRealtime, totalRealtime));
2089 sb.append(") realtime, ");
2090 formatTimeMs(sb, whichBatteryUptime / 1000);
2091 sb.append("("); sb.append(formatRatioLocked(whichBatteryUptime, totalRealtime));
2092 sb.append(") uptime");
2093 pw.println(sb.toString());
2094 sb.setLength(0);
2095 sb.append(prefix);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002096 sb.append(" Time on battery screen off: ");
2097 formatTimeMs(sb, whichBatteryScreenOffRealtime / 1000); sb.append("(");
2098 sb.append(formatRatioLocked(whichBatteryScreenOffRealtime, totalRealtime));
2099 sb.append(") realtime, ");
2100 formatTimeMs(sb, whichBatteryScreenOffUptime / 1000);
2101 sb.append("(");
2102 sb.append(formatRatioLocked(whichBatteryScreenOffUptime, totalRealtime));
2103 sb.append(") uptime");
2104 pw.println(sb.toString());
2105 sb.setLength(0);
2106 sb.append(prefix);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002107 sb.append(" Total run time: ");
2108 formatTimeMs(sb, totalRealtime / 1000);
2109 sb.append("realtime, ");
2110 formatTimeMs(sb, totalUptime / 1000);
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002111 sb.append("uptime");
Jeff Browne95c3cd2014-05-02 16:59:26 -07002112 pw.println(sb.toString());
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002113 if (batteryTimeRemaining >= 0) {
2114 sb.setLength(0);
2115 sb.append(prefix);
2116 sb.append(" Battery time remaining: ");
2117 formatTimeMs(sb, batteryTimeRemaining / 1000);
2118 pw.println(sb.toString());
2119 }
2120 if (chargeTimeRemaining >= 0) {
2121 sb.setLength(0);
2122 sb.append(prefix);
2123 sb.append(" Charge time remaining: ");
2124 formatTimeMs(sb, chargeTimeRemaining / 1000);
2125 pw.println(sb.toString());
2126 }
Dianne Hackborn5f4a5f92014-01-24 16:59:34 -08002127 pw.print(" Start clock time: ");
2128 pw.println(DateFormat.format("yyyy-MM-dd-HH-mm-ss", getStartClockTime()).toString());
2129
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002130 final long screenOnTime = getScreenOnTime(rawRealtime, which);
Jeff Browne95c3cd2014-05-02 16:59:26 -07002131 final long interactiveTime = getInteractiveTime(rawRealtime, which);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07002132 final long lowPowerModeEnabledTime = getLowPowerModeEnabledTime(rawRealtime, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002133 final long phoneOnTime = getPhoneOnTime(rawRealtime, which);
2134 final long wifiRunningTime = getGlobalWifiRunningTime(rawRealtime, which);
2135 final long wifiOnTime = getWifiOnTime(rawRealtime, which);
2136 final long bluetoothOnTime = getBluetoothOnTime(rawRealtime, which);
Dianne Hackborn617f8772009-03-31 15:04:46 -07002137 sb.setLength(0);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002138 sb.append(prefix);
2139 sb.append(" Screen on: "); formatTimeMs(sb, screenOnTime / 1000);
2140 sb.append("("); sb.append(formatRatioLocked(screenOnTime, whichBatteryRealtime));
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002141 sb.append(") "); sb.append(getScreenOnCount(which));
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07002142 sb.append("x, Interactive: "); formatTimeMs(sb, interactiveTime / 1000);
2143 sb.append("("); sb.append(formatRatioLocked(interactiveTime, whichBatteryRealtime));
Jeff Browne95c3cd2014-05-02 16:59:26 -07002144 sb.append(")");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002145 pw.println(sb.toString());
2146 sb.setLength(0);
2147 sb.append(prefix);
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002148 sb.append(" Screen brightnesses:");
Dianne Hackborn617f8772009-03-31 15:04:46 -07002149 boolean didOne = false;
2150 for (int i=0; i<NUM_SCREEN_BRIGHTNESS_BINS; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002151 final long time = getScreenBrightnessTime(i, rawRealtime, which);
Dianne Hackborn617f8772009-03-31 15:04:46 -07002152 if (time == 0) {
2153 continue;
2154 }
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002155 sb.append("\n ");
2156 sb.append(prefix);
Dianne Hackborn617f8772009-03-31 15:04:46 -07002157 didOne = true;
2158 sb.append(SCREEN_BRIGHTNESS_NAMES[i]);
2159 sb.append(" ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002160 formatTimeMs(sb, time/1000);
Dianne Hackborn617f8772009-03-31 15:04:46 -07002161 sb.append("(");
2162 sb.append(formatRatioLocked(time, screenOnTime));
2163 sb.append(")");
2164 }
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002165 if (!didOne) sb.append(" (no activity)");
Dianne Hackborn617f8772009-03-31 15:04:46 -07002166 pw.println(sb.toString());
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07002167 if (lowPowerModeEnabledTime != 0) {
2168 sb.setLength(0);
2169 sb.append(prefix);
2170 sb.append(" Low power mode enabled: ");
2171 formatTimeMs(sb, lowPowerModeEnabledTime / 1000);
2172 sb.append("(");
2173 sb.append(formatRatioLocked(lowPowerModeEnabledTime, whichBatteryRealtime));
2174 sb.append(")");
2175 pw.println(sb.toString());
2176 }
2177 if (phoneOnTime != 0) {
2178 sb.setLength(0);
2179 sb.append(prefix);
2180 sb.append(" Active phone call: "); formatTimeMs(sb, phoneOnTime / 1000);
2181 sb.append("("); sb.append(formatRatioLocked(phoneOnTime, whichBatteryRealtime));
2182 sb.append(") "); sb.append(getPhoneOnCount(which));
2183 }
2184
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002185 // Calculate wakelock times across all uids.
Evan Millar22ac0432009-03-31 11:33:18 -07002186 long fullWakeLockTimeTotalMicros = 0;
2187 long partialWakeLockTimeTotalMicros = 0;
Dianne Hackborn81038902012-11-26 17:04:09 -08002188
Dianne Hackborn81038902012-11-26 17:04:09 -08002189 final ArrayList<TimerEntry> timers = new ArrayList<TimerEntry>();
2190
Evan Millar22ac0432009-03-31 11:33:18 -07002191 for (int iu = 0; iu < NU; iu++) {
2192 Uid u = uidStats.valueAt(iu);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07002193
Evan Millar22ac0432009-03-31 11:33:18 -07002194 Map<String, ? extends BatteryStats.Uid.Wakelock> wakelocks = u.getWakelockStats();
2195 if (wakelocks.size() > 0) {
2196 for (Map.Entry<String, ? extends BatteryStats.Uid.Wakelock> ent
2197 : wakelocks.entrySet()) {
2198 Uid.Wakelock wl = ent.getValue();
2199
2200 Timer fullWakeTimer = wl.getWakeTime(WAKE_TYPE_FULL);
2201 if (fullWakeTimer != null) {
Evan Millarc64edde2009-04-18 12:26:32 -07002202 fullWakeLockTimeTotalMicros += fullWakeTimer.getTotalTimeLocked(
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002203 rawRealtime, which);
Evan Millar22ac0432009-03-31 11:33:18 -07002204 }
2205
2206 Timer partialWakeTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
2207 if (partialWakeTimer != null) {
Dianne Hackborn81038902012-11-26 17:04:09 -08002208 long totalTimeMicros = partialWakeTimer.getTotalTimeLocked(
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002209 rawRealtime, which);
Dianne Hackborn81038902012-11-26 17:04:09 -08002210 if (totalTimeMicros > 0) {
2211 if (reqUid < 0) {
2212 // Only show the ordered list of all wake
2213 // locks if the caller is not asking for data
2214 // about a specific uid.
2215 timers.add(new TimerEntry(ent.getKey(), u.getUid(),
2216 partialWakeTimer, totalTimeMicros));
2217 }
2218 partialWakeLockTimeTotalMicros += totalTimeMicros;
2219 }
Evan Millar22ac0432009-03-31 11:33:18 -07002220 }
2221 }
2222 }
2223 }
2224
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002225 long mobileRxTotalBytes = getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which);
2226 long mobileTxTotalBytes = getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which);
2227 long wifiRxTotalBytes = getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which);
2228 long wifiTxTotalBytes = getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which);
2229 long mobileRxTotalPackets = getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which);
2230 long mobileTxTotalPackets = getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which);
2231 long wifiRxTotalPackets = getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which);
2232 long wifiTxTotalPackets = getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which);
2233
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002234 if (fullWakeLockTimeTotalMicros != 0) {
2235 sb.setLength(0);
2236 sb.append(prefix);
2237 sb.append(" Total full wakelock time: "); formatTimeMsNoSpace(sb,
2238 (fullWakeLockTimeTotalMicros + 500) / 1000);
2239 pw.println(sb.toString());
2240 }
2241
2242 if (partialWakeLockTimeTotalMicros != 0) {
2243 sb.setLength(0);
2244 sb.append(prefix);
2245 sb.append(" Total partial wakelock time: "); formatTimeMsNoSpace(sb,
2246 (partialWakeLockTimeTotalMicros + 500) / 1000);
2247 pw.println(sb.toString());
2248 }
2249
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002250 pw.print(prefix);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002251 pw.print(" Mobile total received: "); pw.print(formatBytesLocked(mobileRxTotalBytes));
2252 pw.print(", sent: "); pw.print(formatBytesLocked(mobileTxTotalBytes));
2253 pw.print(" (packets received "); pw.print(mobileRxTotalPackets);
2254 pw.print(", sent "); pw.print(mobileTxTotalPackets); pw.println(")");
Dianne Hackborn627bba72009-03-24 22:32:56 -07002255 sb.setLength(0);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002256 sb.append(prefix);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002257 sb.append(" Signal levels:");
Dianne Hackborn617f8772009-03-31 15:04:46 -07002258 didOne = false;
Wink Saville52840902011-02-18 12:40:47 -08002259 for (int i=0; i<SignalStrength.NUM_SIGNAL_STRENGTH_BINS; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002260 final long time = getPhoneSignalStrengthTime(i, rawRealtime, which);
Dianne Hackborn627bba72009-03-24 22:32:56 -07002261 if (time == 0) {
2262 continue;
2263 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002264 sb.append("\n ");
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002265 sb.append(prefix);
Dianne Hackborn627bba72009-03-24 22:32:56 -07002266 didOne = true;
Wink Saville52840902011-02-18 12:40:47 -08002267 sb.append(SignalStrength.SIGNAL_STRENGTH_NAMES[i]);
Dianne Hackborn627bba72009-03-24 22:32:56 -07002268 sb.append(" ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002269 formatTimeMs(sb, time/1000);
Dianne Hackborn627bba72009-03-24 22:32:56 -07002270 sb.append("(");
2271 sb.append(formatRatioLocked(time, whichBatteryRealtime));
Dianne Hackborn617f8772009-03-31 15:04:46 -07002272 sb.append(") ");
2273 sb.append(getPhoneSignalStrengthCount(i, which));
2274 sb.append("x");
Dianne Hackborn627bba72009-03-24 22:32:56 -07002275 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002276 if (!didOne) sb.append(" (no activity)");
Dianne Hackborn627bba72009-03-24 22:32:56 -07002277 pw.println(sb.toString());
Amith Yamasanif37447b2009-10-08 18:28:01 -07002278
2279 sb.setLength(0);
2280 sb.append(prefix);
2281 sb.append(" Signal scanning time: ");
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002282 formatTimeMsNoSpace(sb, getPhoneSignalScanningTime(rawRealtime, which) / 1000);
Amith Yamasanif37447b2009-10-08 18:28:01 -07002283 pw.println(sb.toString());
2284
Dianne Hackborn627bba72009-03-24 22:32:56 -07002285 sb.setLength(0);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002286 sb.append(prefix);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002287 sb.append(" Radio types:");
Dianne Hackborn627bba72009-03-24 22:32:56 -07002288 didOne = false;
2289 for (int i=0; i<NUM_DATA_CONNECTION_TYPES; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002290 final long time = getPhoneDataConnectionTime(i, rawRealtime, which);
Dianne Hackborn627bba72009-03-24 22:32:56 -07002291 if (time == 0) {
2292 continue;
2293 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002294 sb.append("\n ");
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002295 sb.append(prefix);
Dianne Hackborn627bba72009-03-24 22:32:56 -07002296 didOne = true;
2297 sb.append(DATA_CONNECTION_NAMES[i]);
2298 sb.append(" ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002299 formatTimeMs(sb, time/1000);
Dianne Hackborn627bba72009-03-24 22:32:56 -07002300 sb.append("(");
2301 sb.append(formatRatioLocked(time, whichBatteryRealtime));
Dianne Hackborn617f8772009-03-31 15:04:46 -07002302 sb.append(") ");
2303 sb.append(getPhoneDataConnectionCount(i, which));
2304 sb.append("x");
Dianne Hackborn627bba72009-03-24 22:32:56 -07002305 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002306 if (!didOne) sb.append(" (no activity)");
Dianne Hackborn627bba72009-03-24 22:32:56 -07002307 pw.println(sb.toString());
Amith Yamasani3f7e35c2009-07-13 16:02:45 -07002308
2309 sb.setLength(0);
2310 sb.append(prefix);
Dianne Hackborne13c4c02014-02-11 17:18:35 -08002311 sb.append(" Mobile radio active time: ");
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002312 final long mobileActiveTime = getMobileRadioActiveTime(rawRealtime, which);
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002313 formatTimeMs(sb, mobileActiveTime / 1000);
2314 sb.append("("); sb.append(formatRatioLocked(mobileActiveTime, whichBatteryRealtime));
2315 sb.append(") "); sb.append(getMobileRadioActiveCount(which));
2316 sb.append("x");
Amith Yamasani3f7e35c2009-07-13 16:02:45 -07002317 pw.println(sb.toString());
2318
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002319 final long mobileActiveUnknownTime = getMobileRadioActiveUnknownTime(which);
2320 if (mobileActiveUnknownTime != 0) {
2321 sb.setLength(0);
2322 sb.append(prefix);
2323 sb.append(" Mobile radio active unknown time: ");
2324 formatTimeMs(sb, mobileActiveUnknownTime / 1000);
2325 sb.append("(");
2326 sb.append(formatRatioLocked(mobileActiveUnknownTime, whichBatteryRealtime));
2327 sb.append(") "); sb.append(getMobileRadioActiveUnknownCount(which));
2328 sb.append("x");
2329 pw.println(sb.toString());
2330 }
2331
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002332 final long mobileActiveAdjustedTime = getMobileRadioActiveAdjustedTime(which);
2333 if (mobileActiveAdjustedTime != 0) {
2334 sb.setLength(0);
2335 sb.append(prefix);
2336 sb.append(" Mobile radio active adjusted time: ");
2337 formatTimeMs(sb, mobileActiveAdjustedTime / 1000);
2338 sb.append("(");
2339 sb.append(formatRatioLocked(mobileActiveAdjustedTime, whichBatteryRealtime));
2340 sb.append(")");
2341 pw.println(sb.toString());
2342 }
2343
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002344 pw.print(prefix);
2345 pw.print(" Wi-Fi total received: "); pw.print(formatBytesLocked(wifiRxTotalBytes));
2346 pw.print(", sent: "); pw.print(formatBytesLocked(wifiTxTotalBytes));
2347 pw.print(" (packets received "); pw.print(wifiRxTotalPackets);
2348 pw.print(", sent "); pw.print(wifiTxTotalPackets); pw.println(")");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002349 sb.setLength(0);
2350 sb.append(prefix);
2351 sb.append(" Wifi on: "); formatTimeMs(sb, wifiOnTime / 1000);
2352 sb.append("("); sb.append(formatRatioLocked(wifiOnTime, whichBatteryRealtime));
2353 sb.append("), Wifi running: "); formatTimeMs(sb, wifiRunningTime / 1000);
2354 sb.append("("); sb.append(formatRatioLocked(wifiRunningTime, whichBatteryRealtime));
Dianne Hackbornca1bf212014-02-14 14:18:36 -08002355 sb.append(")");
2356 pw.println(sb.toString());
2357
2358 sb.setLength(0);
2359 sb.append(prefix);
2360 sb.append(" Wifi states:");
2361 didOne = false;
2362 for (int i=0; i<NUM_WIFI_STATES; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002363 final long time = getWifiStateTime(i, rawRealtime, which);
Dianne Hackbornca1bf212014-02-14 14:18:36 -08002364 if (time == 0) {
2365 continue;
2366 }
2367 sb.append("\n ");
2368 didOne = true;
2369 sb.append(WIFI_STATE_NAMES[i]);
2370 sb.append(" ");
2371 formatTimeMs(sb, time/1000);
2372 sb.append("(");
2373 sb.append(formatRatioLocked(time, whichBatteryRealtime));
2374 sb.append(") ");
2375 sb.append(getPhoneDataConnectionCount(i, which));
2376 sb.append("x");
2377 }
2378 if (!didOne) sb.append(" (no activity)");
2379 pw.println(sb.toString());
2380
2381 sb.setLength(0);
2382 sb.append(prefix);
2383 sb.append(" Bluetooth on: "); formatTimeMs(sb, bluetoothOnTime / 1000);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002384 sb.append("("); sb.append(formatRatioLocked(bluetoothOnTime, whichBatteryRealtime));
2385 sb.append(")");
2386 pw.println(sb.toString());
Dianne Hackbornca1bf212014-02-14 14:18:36 -08002387
2388 sb.setLength(0);
2389 sb.append(prefix);
2390 sb.append(" Bluetooth states:");
2391 didOne = false;
2392 for (int i=0; i<NUM_BLUETOOTH_STATES; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002393 final long time = getBluetoothStateTime(i, rawRealtime, which);
Dianne Hackbornca1bf212014-02-14 14:18:36 -08002394 if (time == 0) {
2395 continue;
2396 }
2397 sb.append("\n ");
2398 didOne = true;
2399 sb.append(BLUETOOTH_STATE_NAMES[i]);
2400 sb.append(" ");
2401 formatTimeMs(sb, time/1000);
2402 sb.append("(");
2403 sb.append(formatRatioLocked(time, whichBatteryRealtime));
2404 sb.append(") ");
2405 sb.append(getPhoneDataConnectionCount(i, which));
2406 sb.append("x");
2407 }
2408 if (!didOne) sb.append(" (no activity)");
2409 pw.println(sb.toString());
2410
2411 pw.println();
The Android Open Source Project10592532009-03-18 17:39:46 -07002412
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002413 if (which == STATS_SINCE_UNPLUGGED) {
The Android Open Source Project10592532009-03-18 17:39:46 -07002414 if (getIsOnBattery()) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002415 pw.print(prefix); pw.println(" Device is currently unplugged");
2416 pw.print(prefix); pw.print(" Discharge cycle start level: ");
2417 pw.println(getDischargeStartLevel());
2418 pw.print(prefix); pw.print(" Discharge cycle current level: ");
2419 pw.println(getDischargeCurrentLevel());
Dianne Hackborn99d04522010-08-20 13:43:00 -07002420 } else {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002421 pw.print(prefix); pw.println(" Device is currently plugged into power");
2422 pw.print(prefix); pw.print(" Last discharge cycle start level: ");
2423 pw.println(getDischargeStartLevel());
2424 pw.print(prefix); pw.print(" Last discharge cycle end level: ");
2425 pw.println(getDischargeCurrentLevel());
The Android Open Source Project10592532009-03-18 17:39:46 -07002426 }
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08002427 pw.print(prefix); pw.print(" Amount discharged while screen on: ");
2428 pw.println(getDischargeAmountScreenOn());
2429 pw.print(prefix); pw.print(" Amount discharged while screen off: ");
2430 pw.println(getDischargeAmountScreenOff());
Dianne Hackborn617f8772009-03-31 15:04:46 -07002431 pw.println(" ");
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07002432 } else {
2433 pw.print(prefix); pw.println(" Device battery use since last full charge");
2434 pw.print(prefix); pw.print(" Amount discharged (lower bound): ");
2435 pw.println(getLowDischargeAmountSinceCharge());
2436 pw.print(prefix); pw.print(" Amount discharged (upper bound): ");
2437 pw.println(getHighDischargeAmountSinceCharge());
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08002438 pw.print(prefix); pw.print(" Amount discharged while screen on: ");
2439 pw.println(getDischargeAmountScreenOnSinceCharge());
2440 pw.print(prefix); pw.print(" Amount discharged while screen off: ");
2441 pw.println(getDischargeAmountScreenOffSinceCharge());
Dianne Hackborn81038902012-11-26 17:04:09 -08002442 pw.println();
The Android Open Source Project10592532009-03-18 17:39:46 -07002443 }
Dianne Hackborn81038902012-11-26 17:04:09 -08002444
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002445 BatteryStatsHelper helper = new BatteryStatsHelper(context, false);
Dianne Hackborna7c837f2014-01-15 16:20:44 -08002446 helper.create(this);
2447 helper.refreshStats(which, UserHandle.USER_ALL);
2448 List<BatterySipper> sippers = helper.getUsageList();
2449 if (sippers != null && sippers.size() > 0) {
2450 pw.print(prefix); pw.println(" Estimated power use (mAh):");
2451 pw.print(prefix); pw.print(" Capacity: ");
2452 printmAh(pw, helper.getPowerProfile().getBatteryCapacity());
Dianne Hackborn099bc622014-01-22 13:39:16 -08002453 pw.print(", Computed drain: "); printmAh(pw, helper.getComputedPower());
Dianne Hackborn536456f2014-05-23 16:51:05 -07002454 pw.print(", actual drain: "); printmAh(pw, helper.getMinDrainedPower());
2455 if (helper.getMinDrainedPower() != helper.getMaxDrainedPower()) {
2456 pw.print("-"); printmAh(pw, helper.getMaxDrainedPower());
2457 }
Dianne Hackborna7c837f2014-01-15 16:20:44 -08002458 pw.println();
2459 for (int i=0; i<sippers.size(); i++) {
2460 BatterySipper bs = sippers.get(i);
2461 switch (bs.drainType) {
2462 case IDLE:
2463 pw.print(prefix); pw.print(" Idle: "); printmAh(pw, bs.value);
2464 pw.println();
2465 break;
2466 case CELL:
2467 pw.print(prefix); pw.print(" Cell standby: "); printmAh(pw, bs.value);
2468 pw.println();
2469 break;
2470 case PHONE:
2471 pw.print(prefix); pw.print(" Phone calls: "); printmAh(pw, bs.value);
2472 pw.println();
2473 break;
2474 case WIFI:
2475 pw.print(prefix); pw.print(" Wifi: "); printmAh(pw, bs.value);
2476 pw.println();
2477 break;
2478 case BLUETOOTH:
2479 pw.print(prefix); pw.print(" Bluetooth: "); printmAh(pw, bs.value);
2480 pw.println();
2481 break;
2482 case SCREEN:
2483 pw.print(prefix); pw.print(" Screen: "); printmAh(pw, bs.value);
2484 pw.println();
2485 break;
2486 case APP:
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002487 pw.print(prefix); pw.print(" Uid ");
2488 UserHandle.formatUid(pw, bs.uidObj.getUid());
Dianne Hackborna7c837f2014-01-15 16:20:44 -08002489 pw.print(": "); printmAh(pw, bs.value); pw.println();
2490 break;
2491 case USER:
2492 pw.print(prefix); pw.print(" User "); pw.print(bs.userId);
2493 pw.print(": "); printmAh(pw, bs.value); pw.println();
2494 break;
2495 case UNACCOUNTED:
2496 pw.print(prefix); pw.print(" Unaccounted: "); printmAh(pw, bs.value);
2497 pw.println();
2498 break;
2499 case OVERCOUNTED:
2500 pw.print(prefix); pw.print(" Over-counted: "); printmAh(pw, bs.value);
2501 pw.println();
2502 break;
2503 }
2504 }
Dianne Hackbornc46809e2014-01-15 16:20:44 -08002505 pw.println();
Dianne Hackborna7c837f2014-01-15 16:20:44 -08002506 }
2507
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002508 sippers = helper.getMobilemsppList();
2509 if (sippers != null && sippers.size() > 0) {
2510 pw.print(prefix); pw.println(" Per-app mobile ms per packet:");
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002511 long totalTime = 0;
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002512 for (int i=0; i<sippers.size(); i++) {
2513 BatterySipper bs = sippers.get(i);
2514 sb.setLength(0);
2515 sb.append(prefix); sb.append(" Uid ");
2516 UserHandle.formatUid(sb, bs.uidObj.getUid());
2517 sb.append(": "); sb.append(BatteryStatsHelper.makemAh(bs.mobilemspp));
2518 sb.append(" ("); sb.append(bs.mobileRxPackets+bs.mobileTxPackets);
2519 sb.append(" packets over "); formatTimeMsNoSpace(sb, bs.mobileActive);
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002520 sb.append(") "); sb.append(bs.mobileActiveCount); sb.append("x");
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002521 pw.println(sb.toString());
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002522 totalTime += bs.mobileActive;
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002523 }
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002524 sb.setLength(0);
2525 sb.append(prefix);
2526 sb.append(" TOTAL TIME: ");
2527 formatTimeMs(sb, totalTime);
2528 sb.append("("); sb.append(formatRatioLocked(totalTime, whichBatteryRealtime));
2529 sb.append(")");
2530 pw.println(sb.toString());
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002531 pw.println();
2532 }
2533
Dianne Hackbornc51cf032014-03-02 19:08:15 -08002534 final Comparator<TimerEntry> timerComparator = new Comparator<TimerEntry>() {
2535 @Override
2536 public int compare(TimerEntry lhs, TimerEntry rhs) {
2537 long lhsTime = lhs.mTime;
2538 long rhsTime = rhs.mTime;
2539 if (lhsTime < rhsTime) {
2540 return 1;
2541 }
2542 if (lhsTime > rhsTime) {
2543 return -1;
2544 }
2545 return 0;
2546 }
2547 };
2548
2549 if (reqUid < 0) {
2550 Map<String, ? extends BatteryStats.Timer> kernelWakelocks = getKernelWakelockStats();
2551 if (kernelWakelocks.size() > 0) {
2552 final ArrayList<TimerEntry> ktimers = new ArrayList<TimerEntry>();
2553 for (Map.Entry<String, ? extends BatteryStats.Timer> ent : kernelWakelocks.entrySet()) {
2554 BatteryStats.Timer timer = ent.getValue();
2555 long totalTimeMillis = computeWakeLock(timer, rawRealtime, which);
2556 if (totalTimeMillis > 0) {
2557 ktimers.add(new TimerEntry(ent.getKey(), 0, timer, totalTimeMillis));
2558 }
2559 }
2560 if (ktimers.size() > 0) {
2561 Collections.sort(ktimers, timerComparator);
2562 pw.print(prefix); pw.println(" All kernel wake locks:");
2563 for (int i=0; i<ktimers.size(); i++) {
2564 TimerEntry timer = ktimers.get(i);
2565 String linePrefix = ": ";
2566 sb.setLength(0);
2567 sb.append(prefix);
2568 sb.append(" Kernel Wake lock ");
2569 sb.append(timer.mName);
2570 linePrefix = printWakeLock(sb, timer.mTimer, rawRealtime, null,
2571 which, linePrefix);
2572 if (!linePrefix.equals(": ")) {
2573 sb.append(" realtime");
2574 // Only print out wake locks that were held
2575 pw.println(sb.toString());
2576 }
2577 }
2578 pw.println();
2579 }
2580 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08002581
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002582 if (timers.size() > 0) {
2583 Collections.sort(timers, timerComparator);
2584 pw.print(prefix); pw.println(" All partial wake locks:");
2585 for (int i=0; i<timers.size(); i++) {
2586 TimerEntry timer = timers.get(i);
2587 sb.setLength(0);
2588 sb.append(" Wake lock ");
2589 UserHandle.formatUid(sb, timer.mId);
2590 sb.append(" ");
2591 sb.append(timer.mName);
2592 printWakeLock(sb, timer.mTimer, rawRealtime, null, which, ": ");
2593 sb.append(" realtime");
2594 pw.println(sb.toString());
2595 }
2596 timers.clear();
2597 pw.println();
Dianne Hackborn81038902012-11-26 17:04:09 -08002598 }
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002599
2600 Map<String, ? extends LongCounter> wakeupReasons = getWakeupReasonStats();
2601 if (wakeupReasons.size() > 0) {
2602 pw.print(prefix); pw.println(" All wakeup reasons:");
2603 final ArrayList<TimerEntry> reasons = new ArrayList<TimerEntry>();
2604 for (Map.Entry<String, ? extends LongCounter> ent : wakeupReasons.entrySet()) {
2605 BatteryStats.LongCounter counter = ent.getValue();
2606 reasons.add(new TimerEntry(ent.getKey(), 0, null,
2607 ent.getValue().getCountLocked(which)));
2608 }
2609 Collections.sort(reasons, timerComparator);
2610 for (int i=0; i<reasons.size(); i++) {
2611 TimerEntry timer = reasons.get(i);
2612 String linePrefix = ": ";
2613 sb.setLength(0);
2614 sb.append(prefix);
2615 sb.append(" Wakeup reason ");
2616 sb.append(timer.mName);
2617 sb.append(": ");
2618 formatTimeMs(sb, timer.mTime);
2619 sb.append("realtime");
2620 pw.println(sb.toString());
2621 }
2622 pw.println();
2623 }
Dianne Hackborn81038902012-11-26 17:04:09 -08002624 }
Evan Millar22ac0432009-03-31 11:33:18 -07002625
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002626 for (int iu=0; iu<NU; iu++) {
2627 final int uid = uidStats.keyAt(iu);
Dianne Hackborne4a59512010-12-07 11:08:07 -08002628 if (reqUid >= 0 && uid != reqUid && uid != Process.SYSTEM_UID) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002629 continue;
2630 }
2631
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002632 Uid u = uidStats.valueAt(iu);
Dianne Hackborna4cc2052013-07-08 17:31:25 -07002633
2634 pw.print(prefix);
2635 pw.print(" ");
2636 UserHandle.formatUid(pw, uid);
2637 pw.println(":");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002638 boolean uidActivity = false;
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002639
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002640 long mobileRxBytes = u.getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which);
2641 long mobileTxBytes = u.getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which);
2642 long wifiRxBytes = u.getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which);
2643 long wifiTxBytes = u.getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which);
2644 long mobileRxPackets = u.getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which);
2645 long mobileTxPackets = u.getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which);
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002646 long uidMobileActiveTime = u.getMobileRadioActiveTime(which);
2647 int uidMobileActiveCount = u.getMobileRadioActiveCount(which);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002648 long wifiRxPackets = u.getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which);
2649 long wifiTxPackets = u.getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002650 long fullWifiLockOnTime = u.getFullWifiLockTime(rawRealtime, which);
2651 long wifiScanTime = u.getWifiScanTime(rawRealtime, which);
2652 long uidWifiRunningTime = u.getWifiRunningTime(rawRealtime, which);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07002653
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002654 if (mobileRxBytes > 0 || mobileTxBytes > 0
2655 || mobileRxPackets > 0 || mobileTxPackets > 0) {
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07002656 pw.print(prefix); pw.print(" Mobile network: ");
2657 pw.print(formatBytesLocked(mobileRxBytes)); pw.print(" received, ");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002658 pw.print(formatBytesLocked(mobileTxBytes));
2659 pw.print(" sent (packets "); pw.print(mobileRxPackets);
2660 pw.print(" received, "); pw.print(mobileTxPackets); pw.println(" sent)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002661 }
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002662 if (uidMobileActiveTime > 0 || uidMobileActiveCount > 0) {
2663 sb.setLength(0);
2664 sb.append(prefix); sb.append(" Mobile radio active: ");
2665 formatTimeMs(sb, uidMobileActiveTime / 1000);
2666 sb.append("(");
2667 sb.append(formatRatioLocked(uidMobileActiveTime, mobileActiveTime));
2668 sb.append(") "); sb.append(uidMobileActiveCount); sb.append("x");
2669 long packets = mobileRxPackets + mobileTxPackets;
2670 if (packets == 0) {
2671 packets = 1;
2672 }
2673 sb.append(" @ ");
2674 sb.append(BatteryStatsHelper.makemAh(uidMobileActiveTime / 1000 / (double)packets));
2675 sb.append(" mspp");
2676 pw.println(sb.toString());
2677 }
2678
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002679 if (wifiRxBytes > 0 || wifiTxBytes > 0 || wifiRxPackets > 0 || wifiTxPackets > 0) {
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07002680 pw.print(prefix); pw.print(" Wi-Fi network: ");
2681 pw.print(formatBytesLocked(wifiRxBytes)); pw.print(" received, ");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002682 pw.print(formatBytesLocked(wifiTxBytes));
2683 pw.print(" sent (packets "); pw.print(wifiRxPackets);
2684 pw.print(" received, "); pw.print(wifiTxPackets); pw.println(" sent)");
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07002685 }
2686
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002687 if (fullWifiLockOnTime != 0 || wifiScanTime != 0
2688 || uidWifiRunningTime != 0) {
2689 sb.setLength(0);
2690 sb.append(prefix); sb.append(" Wifi Running: ");
2691 formatTimeMs(sb, uidWifiRunningTime / 1000);
2692 sb.append("("); sb.append(formatRatioLocked(uidWifiRunningTime,
2693 whichBatteryRealtime)); sb.append(")\n");
2694 sb.append(prefix); sb.append(" Full Wifi Lock: ");
2695 formatTimeMs(sb, fullWifiLockOnTime / 1000);
2696 sb.append("("); sb.append(formatRatioLocked(fullWifiLockOnTime,
2697 whichBatteryRealtime)); sb.append(")\n");
2698 sb.append(prefix); sb.append(" Wifi Scan: ");
2699 formatTimeMs(sb, wifiScanTime / 1000);
2700 sb.append("("); sb.append(formatRatioLocked(wifiScanTime,
2701 whichBatteryRealtime)); sb.append(")");
2702 pw.println(sb.toString());
2703 }
2704
Dianne Hackborn617f8772009-03-31 15:04:46 -07002705 if (u.hasUserActivity()) {
2706 boolean hasData = false;
Raph Levien4c7a4a72012-08-03 14:32:39 -07002707 for (int i=0; i<Uid.NUM_USER_ACTIVITY_TYPES; i++) {
Dianne Hackborn617f8772009-03-31 15:04:46 -07002708 int val = u.getUserActivityCount(i, which);
2709 if (val != 0) {
2710 if (!hasData) {
2711 sb.setLength(0);
2712 sb.append(" User activity: ");
2713 hasData = true;
2714 } else {
2715 sb.append(", ");
2716 }
2717 sb.append(val);
2718 sb.append(" ");
2719 sb.append(Uid.USER_ACTIVITY_TYPES[i]);
2720 }
2721 }
2722 if (hasData) {
2723 pw.println(sb.toString());
2724 }
2725 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002726
2727 Map<String, ? extends BatteryStats.Uid.Wakelock> wakelocks = u.getWakelockStats();
2728 if (wakelocks.size() > 0) {
Dianne Hackbornc24ab862011-10-18 15:55:03 -07002729 long totalFull = 0, totalPartial = 0, totalWindow = 0;
2730 int count = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002731 for (Map.Entry<String, ? extends BatteryStats.Uid.Wakelock> ent
2732 : wakelocks.entrySet()) {
2733 Uid.Wakelock wl = ent.getValue();
2734 String linePrefix = ": ";
2735 sb.setLength(0);
2736 sb.append(prefix);
2737 sb.append(" Wake lock ");
2738 sb.append(ent.getKey());
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002739 linePrefix = printWakeLock(sb, wl.getWakeTime(WAKE_TYPE_FULL), rawRealtime,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002740 "full", which, linePrefix);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002741 linePrefix = printWakeLock(sb, wl.getWakeTime(WAKE_TYPE_PARTIAL), rawRealtime,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002742 "partial", which, linePrefix);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002743 linePrefix = printWakeLock(sb, wl.getWakeTime(WAKE_TYPE_WINDOW), rawRealtime,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002744 "window", which, linePrefix);
2745 if (!linePrefix.equals(": ")) {
2746 sb.append(" realtime");
Jason Parks94b916d2010-07-20 12:39:07 -05002747 // Only print out wake locks that were held
2748 pw.println(sb.toString());
2749 uidActivity = true;
Dianne Hackbornc24ab862011-10-18 15:55:03 -07002750 count++;
2751 }
2752 totalFull += computeWakeLock(wl.getWakeTime(WAKE_TYPE_FULL),
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002753 rawRealtime, which);
Dianne Hackbornc24ab862011-10-18 15:55:03 -07002754 totalPartial += computeWakeLock(wl.getWakeTime(WAKE_TYPE_PARTIAL),
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002755 rawRealtime, which);
Dianne Hackbornc24ab862011-10-18 15:55:03 -07002756 totalWindow += computeWakeLock(wl.getWakeTime(WAKE_TYPE_WINDOW),
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002757 rawRealtime, which);
Dianne Hackbornc24ab862011-10-18 15:55:03 -07002758 }
2759 if (count > 1) {
2760 if (totalFull != 0 || totalPartial != 0 || totalWindow != 0) {
2761 sb.setLength(0);
2762 sb.append(prefix);
2763 sb.append(" TOTAL wake: ");
2764 boolean needComma = false;
2765 if (totalFull != 0) {
2766 needComma = true;
2767 formatTimeMs(sb, totalFull);
2768 sb.append("full");
2769 }
2770 if (totalPartial != 0) {
2771 if (needComma) {
2772 sb.append(", ");
2773 }
2774 needComma = true;
2775 formatTimeMs(sb, totalPartial);
2776 sb.append("partial");
2777 }
2778 if (totalWindow != 0) {
2779 if (needComma) {
2780 sb.append(", ");
2781 }
2782 needComma = true;
2783 formatTimeMs(sb, totalWindow);
2784 sb.append("window");
2785 }
2786 sb.append(" realtime");
2787 pw.println(sb.toString());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002788 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002789 }
2790 }
2791
2792 Map<Integer, ? extends BatteryStats.Uid.Sensor> sensors = u.getSensorStats();
2793 if (sensors.size() > 0) {
2794 for (Map.Entry<Integer, ? extends BatteryStats.Uid.Sensor> ent
2795 : sensors.entrySet()) {
2796 Uid.Sensor se = ent.getValue();
2797 int sensorNumber = ent.getKey();
2798 sb.setLength(0);
2799 sb.append(prefix);
2800 sb.append(" Sensor ");
2801 int handle = se.getHandle();
2802 if (handle == Uid.Sensor.GPS) {
2803 sb.append("GPS");
2804 } else {
2805 sb.append(handle);
2806 }
2807 sb.append(": ");
2808
2809 Timer timer = se.getSensorTime();
2810 if (timer != null) {
2811 // Convert from microseconds to milliseconds with rounding
Evan Millarc64edde2009-04-18 12:26:32 -07002812 long totalTime = (timer.getTotalTimeLocked(
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002813 rawRealtime, which) + 500) / 1000;
Evan Millarc64edde2009-04-18 12:26:32 -07002814 int count = timer.getCountLocked(which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002815 //timer.logState();
2816 if (totalTime != 0) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002817 formatTimeMs(sb, totalTime);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002818 sb.append("realtime (");
2819 sb.append(count);
2820 sb.append(" times)");
2821 } else {
2822 sb.append("(not used)");
2823 }
2824 } else {
2825 sb.append("(not used)");
2826 }
2827
2828 pw.println(sb.toString());
2829 uidActivity = true;
2830 }
2831 }
2832
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002833 Timer vibTimer = u.getVibratorOnTimer();
2834 if (vibTimer != null) {
2835 // Convert from microseconds to milliseconds with rounding
2836 long totalTime = (vibTimer.getTotalTimeLocked(
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002837 rawRealtime, which) + 500) / 1000;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002838 int count = vibTimer.getCountLocked(which);
2839 //timer.logState();
2840 if (totalTime != 0) {
2841 sb.setLength(0);
2842 sb.append(prefix);
2843 sb.append(" Vibrator: ");
2844 formatTimeMs(sb, totalTime);
2845 sb.append("realtime (");
2846 sb.append(count);
2847 sb.append(" times)");
2848 pw.println(sb.toString());
2849 uidActivity = true;
2850 }
2851 }
2852
Jeff Sharkey3e013e82013-04-25 14:48:19 -07002853 Timer fgTimer = u.getForegroundActivityTimer();
2854 if (fgTimer != null) {
2855 // Convert from microseconds to milliseconds with rounding
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002856 long totalTime = (fgTimer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000;
Jeff Sharkey3e013e82013-04-25 14:48:19 -07002857 int count = fgTimer.getCountLocked(which);
2858 if (totalTime != 0) {
2859 sb.setLength(0);
2860 sb.append(prefix);
2861 sb.append(" Foreground activities: ");
2862 formatTimeMs(sb, totalTime);
2863 sb.append("realtime (");
2864 sb.append(count);
2865 sb.append(" times)");
2866 pw.println(sb.toString());
2867 uidActivity = true;
2868 }
2869 }
2870
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002871 Map<String, ? extends BatteryStats.Uid.Proc> processStats = u.getProcessStats();
2872 if (processStats.size() > 0) {
2873 for (Map.Entry<String, ? extends BatteryStats.Uid.Proc> ent
2874 : processStats.entrySet()) {
2875 Uid.Proc ps = ent.getValue();
2876 long userTime;
2877 long systemTime;
Jeff Sharkey3e013e82013-04-25 14:48:19 -07002878 long foregroundTime;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002879 int starts;
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07002880 int numExcessive;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002881
2882 userTime = ps.getUserTime(which);
2883 systemTime = ps.getSystemTime(which);
Jeff Sharkey3e013e82013-04-25 14:48:19 -07002884 foregroundTime = ps.getForegroundTime(which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002885 starts = ps.getStarts(which);
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07002886 numExcessive = which == STATS_SINCE_CHARGED
Dianne Hackborn287952c2010-09-22 22:34:31 -07002887 ? ps.countExcessivePowers() : 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002888
Jeff Sharkey3e013e82013-04-25 14:48:19 -07002889 if (userTime != 0 || systemTime != 0 || foregroundTime != 0 || starts != 0
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07002890 || numExcessive != 0) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002891 sb.setLength(0);
2892 sb.append(prefix); sb.append(" Proc ");
2893 sb.append(ent.getKey()); sb.append(":\n");
2894 sb.append(prefix); sb.append(" CPU: ");
2895 formatTime(sb, userTime); sb.append("usr + ");
Jeff Sharkey3e013e82013-04-25 14:48:19 -07002896 formatTime(sb, systemTime); sb.append("krn ; ");
2897 formatTime(sb, foregroundTime); sb.append("fg");
Dianne Hackborn0d903a82010-09-07 23:51:03 -07002898 if (starts != 0) {
Dianne Hackbornb8071d792010-09-09 16:45:15 -07002899 sb.append("\n"); sb.append(prefix); sb.append(" ");
2900 sb.append(starts); sb.append(" proc starts");
Dianne Hackborn0d903a82010-09-07 23:51:03 -07002901 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002902 pw.println(sb.toString());
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07002903 for (int e=0; e<numExcessive; e++) {
Dianne Hackborn287952c2010-09-22 22:34:31 -07002904 Uid.Proc.ExcessivePower ew = ps.getExcessivePower(e);
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07002905 if (ew != null) {
Dianne Hackborn287952c2010-09-22 22:34:31 -07002906 pw.print(prefix); pw.print(" * Killed for ");
2907 if (ew.type == Uid.Proc.ExcessivePower.TYPE_WAKE) {
2908 pw.print("wake lock");
2909 } else if (ew.type == Uid.Proc.ExcessivePower.TYPE_CPU) {
2910 pw.print("cpu");
2911 } else {
2912 pw.print("unknown");
2913 }
2914 pw.print(" use: ");
Dianne Hackborn1ebccf52010-08-15 13:04:34 -07002915 TimeUtils.formatDuration(ew.usedTime, pw);
2916 pw.print(" over ");
2917 TimeUtils.formatDuration(ew.overTime, pw);
Robert Greenwalta029ea12013-09-25 16:38:12 -07002918 if (ew.overTime != 0) {
2919 pw.print(" (");
2920 pw.print((ew.usedTime*100)/ew.overTime);
2921 pw.println("%)");
2922 }
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07002923 }
2924 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002925 uidActivity = true;
2926 }
2927 }
2928 }
2929
2930 Map<String, ? extends BatteryStats.Uid.Pkg> packageStats = u.getPackageStats();
2931 if (packageStats.size() > 0) {
2932 for (Map.Entry<String, ? extends BatteryStats.Uid.Pkg> ent
2933 : packageStats.entrySet()) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002934 pw.print(prefix); pw.print(" Apk "); pw.print(ent.getKey()); pw.println(":");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002935 boolean apkActivity = false;
2936 Uid.Pkg ps = ent.getValue();
2937 int wakeups = ps.getWakeups(which);
2938 if (wakeups != 0) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002939 pw.print(prefix); pw.print(" ");
2940 pw.print(wakeups); pw.println(" wakeup alarms");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002941 apkActivity = true;
2942 }
2943 Map<String, ? extends Uid.Pkg.Serv> serviceStats = ps.getServiceStats();
2944 if (serviceStats.size() > 0) {
2945 for (Map.Entry<String, ? extends BatteryStats.Uid.Pkg.Serv> sent
2946 : serviceStats.entrySet()) {
2947 BatteryStats.Uid.Pkg.Serv ss = sent.getValue();
2948 long startTime = ss.getStartTime(batteryUptime, which);
2949 int starts = ss.getStarts(which);
2950 int launches = ss.getLaunches(which);
2951 if (startTime != 0 || starts != 0 || launches != 0) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002952 sb.setLength(0);
2953 sb.append(prefix); sb.append(" Service ");
2954 sb.append(sent.getKey()); sb.append(":\n");
2955 sb.append(prefix); sb.append(" Created for: ");
2956 formatTimeMs(sb, startTime / 1000);
Jeff Sharkey3e013e82013-04-25 14:48:19 -07002957 sb.append("uptime\n");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002958 sb.append(prefix); sb.append(" Starts: ");
2959 sb.append(starts);
2960 sb.append(", launches: "); sb.append(launches);
2961 pw.println(sb.toString());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002962 apkActivity = true;
2963 }
2964 }
2965 }
2966 if (!apkActivity) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002967 pw.print(prefix); pw.println(" (nothing executed)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002968 }
2969 uidActivity = true;
2970 }
2971 }
2972 if (!uidActivity) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002973 pw.print(prefix); pw.println(" (nothing executed)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002974 }
2975 }
2976 }
2977
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002978 static void printBitDescriptions(PrintWriter pw, int oldval, int newval, HistoryTag wakelockTag,
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002979 BitDescription[] descriptions, boolean longNames) {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002980 int diff = oldval ^ newval;
2981 if (diff == 0) return;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002982 boolean didWake = false;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002983 for (int i=0; i<descriptions.length; i++) {
2984 BitDescription bd = descriptions[i];
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002985 if ((diff&bd.mask) != 0) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002986 pw.print(longNames ? " " : ",");
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002987 if (bd.shift < 0) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002988 pw.print((newval&bd.mask) != 0 ? "+" : "-");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002989 pw.print(longNames ? bd.name : bd.shortName);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08002990 if (bd.mask == HistoryItem.STATE_WAKE_LOCK_FLAG && wakelockTag != null) {
2991 didWake = true;
2992 pw.print("=");
2993 if (longNames) {
2994 UserHandle.formatUid(pw, wakelockTag.uid);
2995 pw.print(":\"");
2996 pw.print(wakelockTag.string);
2997 pw.print("\"");
2998 } else {
2999 pw.print(wakelockTag.poolIdx);
3000 }
3001 }
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07003002 } else {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003003 pw.print(longNames ? bd.name : bd.shortName);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07003004 pw.print("=");
3005 int val = (newval&bd.mask)>>bd.shift;
3006 if (bd.values != null && val >= 0 && val < bd.values.length) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003007 pw.print(longNames? bd.values[val] : bd.shortValues[val]);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07003008 } else {
3009 pw.print(val);
3010 }
3011 }
3012 }
3013 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08003014 if (!didWake && wakelockTag != null) {
Ashish Sharma81850c42014-05-05 13:57:07 -07003015 pw.print(longNames ? " wake_lock=" : ",w=");
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08003016 if (longNames) {
3017 UserHandle.formatUid(pw, wakelockTag.uid);
3018 pw.print(":\"");
3019 pw.print(wakelockTag.string);
3020 pw.print("\"");
3021 } else {
3022 pw.print(wakelockTag.poolIdx);
3023 }
3024 }
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07003025 }
3026
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003027 public void prepareForDumpLocked() {
3028 }
3029
3030 public static class HistoryPrinter {
3031 int oldState = 0;
Dianne Hackborna1bd7922014-03-21 11:07:11 -07003032 int oldState2 = 0;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003033 int oldLevel = -1;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003034 int oldStatus = -1;
3035 int oldHealth = -1;
3036 int oldPlug = -1;
3037 int oldTemp = -1;
3038 int oldVolt = -1;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003039 long lastTime = -1;
Dianne Hackborn99009ea2014-04-18 16:23:42 -07003040 long firstTime = -1;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003041
Dianne Hackborn99009ea2014-04-18 16:23:42 -07003042 public void printNextItem(PrintWriter pw, HistoryItem rec, long baseTime, boolean checkin,
Dianne Hackborna1bd7922014-03-21 11:07:11 -07003043 boolean verbose) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003044 if (!checkin) {
3045 pw.print(" ");
Dianne Hackborn99009ea2014-04-18 16:23:42 -07003046 TimeUtils.formatDuration(rec.time - baseTime, pw, TimeUtils.HUNDRED_DAY_FIELD_LEN);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08003047 pw.print(" (");
3048 pw.print(rec.numReadInts);
3049 pw.print(") ");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003050 } else {
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07003051 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
3052 pw.print(HISTORY_DATA); pw.print(',');
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003053 if (lastTime < 0) {
Dianne Hackborn99009ea2014-04-18 16:23:42 -07003054 pw.print(rec.time - baseTime);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003055 } else {
Dianne Hackborn99009ea2014-04-18 16:23:42 -07003056 pw.print(rec.time - lastTime);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003057 }
3058 lastTime = rec.time;
3059 }
3060 if (rec.cmd == HistoryItem.CMD_START) {
3061 if (checkin) {
3062 pw.print(":");
3063 }
3064 pw.println("START");
Dianne Hackborn37de0982014-05-09 09:32:18 -07003065 } else if (rec.cmd == HistoryItem.CMD_CURRENT_TIME
3066 || rec.cmd == HistoryItem.CMD_RESET) {
Dianne Hackborne5167ca2014-03-08 14:39:10 -08003067 if (checkin) {
3068 pw.print(":");
3069 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07003070 if (rec.cmd == HistoryItem.CMD_RESET) {
3071 pw.print("RESET:");
3072 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08003073 pw.print("TIME:");
3074 if (checkin) {
3075 pw.println(rec.currentTime);
3076 } else {
3077 pw.print(" ");
3078 pw.println(DateFormat.format("yyyy-MM-dd-HH-mm-ss",
3079 rec.currentTime).toString());
3080 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003081 } else if (rec.cmd == HistoryItem.CMD_OVERFLOW) {
3082 if (checkin) {
3083 pw.print(":");
3084 }
3085 pw.println("*OVERFLOW*");
3086 } else {
3087 if (!checkin) {
3088 if (rec.batteryLevel < 10) pw.print("00");
3089 else if (rec.batteryLevel < 100) pw.print("0");
3090 pw.print(rec.batteryLevel);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07003091 if (verbose) {
3092 pw.print(" ");
3093 if (rec.states < 0) ;
3094 else if (rec.states < 0x10) pw.print("0000000");
3095 else if (rec.states < 0x100) pw.print("000000");
3096 else if (rec.states < 0x1000) pw.print("00000");
3097 else if (rec.states < 0x10000) pw.print("0000");
3098 else if (rec.states < 0x100000) pw.print("000");
3099 else if (rec.states < 0x1000000) pw.print("00");
3100 else if (rec.states < 0x10000000) pw.print("0");
3101 pw.print(Integer.toHexString(rec.states));
3102 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003103 } else {
3104 if (oldLevel != rec.batteryLevel) {
3105 oldLevel = rec.batteryLevel;
3106 pw.print(",Bl="); pw.print(rec.batteryLevel);
3107 }
3108 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003109 if (oldStatus != rec.batteryStatus) {
3110 oldStatus = rec.batteryStatus;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003111 pw.print(checkin ? ",Bs=" : " status=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003112 switch (oldStatus) {
3113 case BatteryManager.BATTERY_STATUS_UNKNOWN:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003114 pw.print(checkin ? "?" : "unknown");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003115 break;
3116 case BatteryManager.BATTERY_STATUS_CHARGING:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003117 pw.print(checkin ? "c" : "charging");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003118 break;
3119 case BatteryManager.BATTERY_STATUS_DISCHARGING:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003120 pw.print(checkin ? "d" : "discharging");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003121 break;
3122 case BatteryManager.BATTERY_STATUS_NOT_CHARGING:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003123 pw.print(checkin ? "n" : "not-charging");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003124 break;
3125 case BatteryManager.BATTERY_STATUS_FULL:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003126 pw.print(checkin ? "f" : "full");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003127 break;
3128 default:
3129 pw.print(oldStatus);
3130 break;
3131 }
3132 }
3133 if (oldHealth != rec.batteryHealth) {
3134 oldHealth = rec.batteryHealth;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003135 pw.print(checkin ? ",Bh=" : " health=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003136 switch (oldHealth) {
3137 case BatteryManager.BATTERY_HEALTH_UNKNOWN:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003138 pw.print(checkin ? "?" : "unknown");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003139 break;
3140 case BatteryManager.BATTERY_HEALTH_GOOD:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003141 pw.print(checkin ? "g" : "good");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003142 break;
3143 case BatteryManager.BATTERY_HEALTH_OVERHEAT:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003144 pw.print(checkin ? "h" : "overheat");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003145 break;
3146 case BatteryManager.BATTERY_HEALTH_DEAD:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003147 pw.print(checkin ? "d" : "dead");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003148 break;
3149 case BatteryManager.BATTERY_HEALTH_OVER_VOLTAGE:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003150 pw.print(checkin ? "v" : "over-voltage");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003151 break;
3152 case BatteryManager.BATTERY_HEALTH_UNSPECIFIED_FAILURE:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003153 pw.print(checkin ? "f" : "failure");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003154 break;
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08003155 case BatteryManager.BATTERY_HEALTH_COLD:
3156 pw.print(checkin ? "c" : "cold");
3157 break;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003158 default:
3159 pw.print(oldHealth);
3160 break;
3161 }
3162 }
3163 if (oldPlug != rec.batteryPlugType) {
3164 oldPlug = rec.batteryPlugType;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003165 pw.print(checkin ? ",Bp=" : " plug=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003166 switch (oldPlug) {
3167 case 0:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003168 pw.print(checkin ? "n" : "none");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003169 break;
3170 case BatteryManager.BATTERY_PLUGGED_AC:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003171 pw.print(checkin ? "a" : "ac");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003172 break;
3173 case BatteryManager.BATTERY_PLUGGED_USB:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003174 pw.print(checkin ? "u" : "usb");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003175 break;
Brian Muramatsu37a37f42012-08-14 15:21:02 -07003176 case BatteryManager.BATTERY_PLUGGED_WIRELESS:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003177 pw.print(checkin ? "w" : "wireless");
Brian Muramatsu37a37f42012-08-14 15:21:02 -07003178 break;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003179 default:
3180 pw.print(oldPlug);
3181 break;
3182 }
3183 }
3184 if (oldTemp != rec.batteryTemperature) {
3185 oldTemp = rec.batteryTemperature;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003186 pw.print(checkin ? ",Bt=" : " temp=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003187 pw.print(oldTemp);
3188 }
3189 if (oldVolt != rec.batteryVoltage) {
3190 oldVolt = rec.batteryVoltage;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003191 pw.print(checkin ? ",Bv=" : " volt=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003192 pw.print(oldVolt);
3193 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08003194 printBitDescriptions(pw, oldState, rec.states, rec.wakelockTag,
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003195 HISTORY_STATE_DESCRIPTIONS, !checkin);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07003196 printBitDescriptions(pw, oldState2, rec.states2, null,
3197 HISTORY_STATE2_DESCRIPTIONS, !checkin);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003198 if (rec.wakeReasonTag != null) {
3199 if (checkin) {
Dianne Hackbornd06dcfd2014-05-02 13:49:30 -07003200 pw.print(",wr=");
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003201 pw.print(rec.wakeReasonTag.poolIdx);
3202 } else {
3203 pw.print(" wake_reason=");
3204 pw.print(rec.wakeReasonTag.uid);
3205 pw.print(":\"");
3206 pw.print(rec.wakeReasonTag.string);
3207 pw.print("\"");
3208 }
3209 }
Dianne Hackborn099bc622014-01-22 13:39:16 -08003210 if (rec.eventCode != HistoryItem.EVENT_NONE) {
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08003211 pw.print(checkin ? "," : " ");
3212 if ((rec.eventCode&HistoryItem.EVENT_FLAG_START) != 0) {
3213 pw.print("+");
3214 } else if ((rec.eventCode&HistoryItem.EVENT_FLAG_FINISH) != 0) {
3215 pw.print("-");
Dianne Hackborn099bc622014-01-22 13:39:16 -08003216 }
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08003217 String[] eventNames = checkin ? HISTORY_EVENT_CHECKIN_NAMES
3218 : HISTORY_EVENT_NAMES;
3219 int idx = rec.eventCode & ~(HistoryItem.EVENT_FLAG_START
3220 | HistoryItem.EVENT_FLAG_FINISH);
3221 if (idx >= 0 && idx < eventNames.length) {
3222 pw.print(eventNames[idx]);
3223 } else {
3224 pw.print(checkin ? "Ev" : "event");
3225 pw.print(idx);
3226 }
3227 pw.print("=");
Dianne Hackborn099bc622014-01-22 13:39:16 -08003228 if (checkin) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08003229 pw.print(rec.eventTag.poolIdx);
Dianne Hackborn099bc622014-01-22 13:39:16 -08003230 } else {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08003231 UserHandle.formatUid(pw, rec.eventTag.uid);
3232 pw.print(":\"");
3233 pw.print(rec.eventTag.string);
3234 pw.print("\"");
Dianne Hackborn099bc622014-01-22 13:39:16 -08003235 }
3236 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003237 pw.println();
Dianne Hackborne5167ca2014-03-08 14:39:10 -08003238 oldState = rec.states;
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07003239 oldState2 = rec.states2;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003240 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003241 }
3242 }
3243
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08003244 private void printSizeValue(PrintWriter pw, long size) {
3245 float result = size;
3246 String suffix = "";
3247 if (result >= 10*1024) {
3248 suffix = "KB";
3249 result = result / 1024;
3250 }
3251 if (result >= 10*1024) {
3252 suffix = "MB";
3253 result = result / 1024;
3254 }
3255 if (result >= 10*1024) {
3256 suffix = "GB";
3257 result = result / 1024;
3258 }
3259 if (result >= 10*1024) {
3260 suffix = "TB";
3261 result = result / 1024;
3262 }
3263 if (result >= 10*1024) {
3264 suffix = "PB";
3265 result = result / 1024;
3266 }
3267 pw.print((int)result);
3268 pw.print(suffix);
3269 }
3270
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07003271 private static boolean dumpDurationSteps(PrintWriter pw, String header, long[] steps,
3272 int count, boolean checkin) {
3273 if (count <= 0) {
3274 return false;
3275 }
3276 if (!checkin) {
3277 pw.println(header);
3278 }
3279 String[] lineArgs = new String[1];
3280 for (int i=0; i<count; i++) {
3281 if (checkin) {
3282 lineArgs[0] = Long.toString(steps[i]);
3283 dumpLine(pw, 0 /* uid */, "i" /* category */, header, (Object[])lineArgs);
3284 } else {
3285 pw.print(" #"); pw.print(i); pw.print(": ");
3286 TimeUtils.formatDuration(steps[i], pw);
3287 pw.println();
3288 }
3289 }
3290 return true;
3291 }
3292
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003293 public static final int DUMP_UNPLUGGED_ONLY = 1<<0;
3294 public static final int DUMP_CHARGED_ONLY = 1<<1;
3295 public static final int DUMP_HISTORY_ONLY = 1<<2;
3296 public static final int DUMP_INCLUDE_HISTORY = 1<<3;
Dianne Hackborna1bd7922014-03-21 11:07:11 -07003297 public static final int DUMP_VERBOSE = 1<<4;
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003298
Dianne Hackborn37de0982014-05-09 09:32:18 -07003299 private void dumpHistoryLocked(PrintWriter pw, int flags, long histStart, boolean checkin) {
3300 final HistoryPrinter hprinter = new HistoryPrinter();
3301 final HistoryItem rec = new HistoryItem();
3302 long lastTime = -1;
3303 long baseTime = -1;
3304 boolean printed = false;
3305 HistoryEventTracker tracker = null;
3306 while (getNextHistoryLocked(rec)) {
3307 lastTime = rec.time;
3308 if (baseTime < 0) {
3309 baseTime = lastTime;
3310 }
3311 if (rec.time >= histStart) {
3312 if (histStart >= 0 && !printed) {
3313 if (rec.cmd == HistoryItem.CMD_CURRENT_TIME
Ashish Sharma60200712014-05-23 18:22:20 -07003314 || rec.cmd == HistoryItem.CMD_RESET
3315 || rec.cmd == HistoryItem.CMD_START) {
Dianne Hackborn37de0982014-05-09 09:32:18 -07003316 printed = true;
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07003317 hprinter.printNextItem(pw, rec, baseTime, checkin,
3318 (flags&DUMP_VERBOSE) != 0);
3319 rec.cmd = HistoryItem.CMD_UPDATE;
Dianne Hackborn37de0982014-05-09 09:32:18 -07003320 } else if (rec.currentTime != 0) {
3321 printed = true;
3322 byte cmd = rec.cmd;
3323 rec.cmd = HistoryItem.CMD_CURRENT_TIME;
Dianne Hackborn37de0982014-05-09 09:32:18 -07003324 hprinter.printNextItem(pw, rec, baseTime, checkin,
3325 (flags&DUMP_VERBOSE) != 0);
3326 rec.cmd = cmd;
3327 }
3328 if (tracker != null) {
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07003329 if (rec.cmd != HistoryItem.CMD_UPDATE) {
3330 hprinter.printNextItem(pw, rec, baseTime, checkin,
3331 (flags&DUMP_VERBOSE) != 0);
3332 rec.cmd = HistoryItem.CMD_UPDATE;
3333 }
3334 int oldEventCode = rec.eventCode;
3335 HistoryTag oldEventTag = rec.eventTag;
Dianne Hackborn37de0982014-05-09 09:32:18 -07003336 rec.eventTag = new HistoryTag();
3337 for (int i=0; i<HistoryItem.EVENT_COUNT; i++) {
3338 HashMap<String, SparseIntArray> active
3339 = tracker.getStateForEvent(i);
3340 if (active == null) {
3341 continue;
3342 }
3343 for (HashMap.Entry<String, SparseIntArray> ent
3344 : active.entrySet()) {
3345 SparseIntArray uids = ent.getValue();
3346 for (int j=0; j<uids.size(); j++) {
3347 rec.eventCode = i;
3348 rec.eventTag.string = ent.getKey();
3349 rec.eventTag.uid = uids.keyAt(j);
3350 rec.eventTag.poolIdx = uids.valueAt(j);
Dianne Hackborn37de0982014-05-09 09:32:18 -07003351 hprinter.printNextItem(pw, rec, baseTime, checkin,
3352 (flags&DUMP_VERBOSE) != 0);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07003353 rec.wakeReasonTag = null;
3354 rec.wakelockTag = null;
Dianne Hackborn37de0982014-05-09 09:32:18 -07003355 }
3356 }
3357 }
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07003358 rec.eventCode = oldEventCode;
3359 rec.eventTag = oldEventTag;
Dianne Hackborn37de0982014-05-09 09:32:18 -07003360 tracker = null;
3361 }
3362 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07003363 hprinter.printNextItem(pw, rec, baseTime, checkin,
3364 (flags&DUMP_VERBOSE) != 0);
Dianne Hackborn536456f2014-05-23 16:51:05 -07003365 } else if (false && rec.eventCode != HistoryItem.EVENT_NONE) {
3366 // This is an attempt to aggregate the previous state and generate
3367 // fake events to reflect that state at the point where we start
3368 // printing real events. It doesn't really work right, so is turned off.
Dianne Hackborn37de0982014-05-09 09:32:18 -07003369 if (tracker == null) {
3370 tracker = new HistoryEventTracker();
3371 }
3372 tracker.updateState(rec.eventCode, rec.eventTag.string,
3373 rec.eventTag.uid, rec.eventTag.poolIdx);
3374 }
3375 }
3376 if (histStart >= 0) {
Dianne Hackbornfc064132014-06-02 12:42:12 -07003377 commitCurrentHistoryBatchLocked();
Dianne Hackborn37de0982014-05-09 09:32:18 -07003378 pw.print(checkin ? "NEXT: " : " NEXT: "); pw.println(lastTime+1);
3379 }
3380 }
3381
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003382 /**
3383 * Dumps a human-readable summary of the battery statistics to the given PrintWriter.
3384 *
3385 * @param pw a Printer to receive the dump output.
3386 */
3387 @SuppressWarnings("unused")
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003388 public void dumpLocked(Context context, PrintWriter pw, int flags, int reqUid, long histStart) {
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003389 prepareForDumpLocked();
3390
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003391 final boolean filtering =
3392 (flags&(DUMP_HISTORY_ONLY|DUMP_UNPLUGGED_ONLY|DUMP_CHARGED_ONLY)) != 0;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003393
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003394 if ((flags&DUMP_HISTORY_ONLY) != 0 || !filtering) {
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003395 final long historyTotalSize = getHistoryTotalSize();
3396 final long historyUsedSize = getHistoryUsedSize();
3397 if (startIteratingHistoryLocked()) {
3398 try {
3399 pw.print("Battery History (");
3400 pw.print((100*historyUsedSize)/historyTotalSize);
3401 pw.print("% used, ");
3402 printSizeValue(pw, historyUsedSize);
3403 pw.print(" used of ");
3404 printSizeValue(pw, historyTotalSize);
3405 pw.print(", ");
3406 pw.print(getHistoryStringPoolSize());
3407 pw.print(" strings using ");
3408 printSizeValue(pw, getHistoryStringPoolBytes());
3409 pw.println("):");
Dianne Hackborn37de0982014-05-09 09:32:18 -07003410 dumpHistoryLocked(pw, flags, histStart, false);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003411 pw.println();
3412 } finally {
3413 finishIteratingHistoryLocked();
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08003414 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003415 }
3416
3417 if (startIteratingOldHistoryLocked()) {
3418 try {
Dianne Hackborn37de0982014-05-09 09:32:18 -07003419 final HistoryItem rec = new HistoryItem();
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003420 pw.println("Old battery History:");
3421 HistoryPrinter hprinter = new HistoryPrinter();
Dianne Hackborn99009ea2014-04-18 16:23:42 -07003422 long baseTime = -1;
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003423 while (getNextOldHistoryLocked(rec)) {
Dianne Hackborn99009ea2014-04-18 16:23:42 -07003424 if (baseTime < 0) {
3425 baseTime = rec.time;
3426 }
3427 hprinter.printNextItem(pw, rec, baseTime, false, (flags&DUMP_VERBOSE) != 0);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003428 }
3429 pw.println();
3430 } finally {
3431 finishIteratingOldHistoryLocked();
3432 }
Dianne Hackborn32907cf2010-06-10 17:50:20 -07003433 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003434 }
3435
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003436 if (filtering && (flags&(DUMP_UNPLUGGED_ONLY|DUMP_CHARGED_ONLY)) == 0) {
Dianne Hackborn099bc622014-01-22 13:39:16 -08003437 return;
3438 }
3439
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003440 if (!filtering) {
3441 SparseArray<? extends Uid> uidStats = getUidStats();
3442 final int NU = uidStats.size();
3443 boolean didPid = false;
3444 long nowRealtime = SystemClock.elapsedRealtime();
3445 for (int i=0; i<NU; i++) {
3446 Uid uid = uidStats.valueAt(i);
3447 SparseArray<? extends Uid.Pid> pids = uid.getPidStats();
3448 if (pids != null) {
3449 for (int j=0; j<pids.size(); j++) {
3450 Uid.Pid pid = pids.valueAt(j);
3451 if (!didPid) {
3452 pw.println("Per-PID Stats:");
3453 didPid = true;
3454 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08003455 long time = pid.mWakeSumMs + (pid.mWakeNesting > 0
3456 ? (nowRealtime - pid.mWakeStartMs) : 0);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003457 pw.print(" PID "); pw.print(pids.keyAt(j));
3458 pw.print(" wake time: ");
3459 TimeUtils.formatDuration(time, pw);
3460 pw.println("");
Dianne Hackbornb5e31652010-09-07 12:13:55 -07003461 }
Dianne Hackbornb5e31652010-09-07 12:13:55 -07003462 }
3463 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003464 if (didPid) {
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07003465 pw.println();
3466 }
3467 if (dumpDurationSteps(pw, "Discharge step durations:", getDischargeStepDurationsArray(),
3468 getNumDischargeStepDurations(), false)) {
3469 long timeRemaining = computeBatteryTimeRemaining(SystemClock.elapsedRealtime());
3470 if (timeRemaining >= 0) {
3471 pw.print(" Estimated discharge time remaining: ");
3472 TimeUtils.formatDuration(timeRemaining / 1000, pw);
3473 pw.println();
3474 }
3475 pw.println();
3476 }
3477 if (dumpDurationSteps(pw, "Charge step durations:", getChargeStepDurationsArray(),
3478 getNumChargeStepDurations(), false)) {
3479 long timeRemaining = computeChargeTimeRemaining(SystemClock.elapsedRealtime());
3480 if (timeRemaining >= 0) {
3481 pw.print(" Estimated charge time remaining: ");
3482 TimeUtils.formatDuration(timeRemaining / 1000, pw);
3483 pw.println();
3484 }
3485 pw.println();
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003486 }
Dianne Hackborn32907cf2010-06-10 17:50:20 -07003487 }
Jeff Sharkeyec43a6b2013-04-30 13:33:18 -07003488
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003489 if (!filtering || (flags&DUMP_CHARGED_ONLY) != 0) {
Jeff Sharkeyec43a6b2013-04-30 13:33:18 -07003490 pw.println("Statistics since last charge:");
3491 pw.println(" System starts: " + getStartCount()
3492 + ", currently on battery: " + getIsOnBattery());
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003493 dumpLocked(context, pw, "", STATS_SINCE_CHARGED, reqUid);
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07003494 pw.println();
Jeff Sharkeyec43a6b2013-04-30 13:33:18 -07003495 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003496 if (!filtering || (flags&DUMP_UNPLUGGED_ONLY) != 0) {
3497 pw.println("Statistics since last unplugged:");
3498 dumpLocked(context, pw, "", STATS_SINCE_UNPLUGGED, reqUid);
3499 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003500 }
3501
3502 @SuppressWarnings("unused")
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003503 public void dumpCheckinLocked(Context context, PrintWriter pw,
3504 List<ApplicationInfo> apps, int flags, long histStart) {
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07003505 prepareForDumpLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003506
Dianne Hackborn13ac0412013-06-25 19:34:49 -07003507 long now = getHistoryBaseTime() + SystemClock.elapsedRealtime();
3508
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003509 final boolean filtering =
3510 (flags&(DUMP_HISTORY_ONLY|DUMP_UNPLUGGED_ONLY|DUMP_CHARGED_ONLY)) != 0;
3511
3512 if ((flags&DUMP_INCLUDE_HISTORY) != 0 || (flags&DUMP_HISTORY_ONLY) != 0) {
Dianne Hackborn49021f52013-09-04 18:03:40 -07003513 if (startIteratingHistoryLocked()) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08003514 try {
3515 for (int i=0; i<getHistoryStringPoolSize(); i++) {
3516 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
3517 pw.print(HISTORY_STRING_POOL); pw.print(',');
3518 pw.print(i);
Dianne Hackborn99009ea2014-04-18 16:23:42 -07003519 pw.print(",");
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08003520 pw.print(getHistoryTagPoolUid(i));
Dianne Hackborn99009ea2014-04-18 16:23:42 -07003521 pw.print(",\"");
3522 String str = getHistoryTagPoolString(i);
3523 str = str.replace("\\", "\\\\");
3524 str = str.replace("\"", "\\\"");
3525 pw.print(str);
3526 pw.print("\"");
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08003527 pw.println();
3528 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07003529 dumpHistoryLocked(pw, flags, histStart, true);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08003530 } finally {
3531 finishIteratingHistoryLocked();
Dianne Hackborn099bc622014-01-22 13:39:16 -08003532 }
Dianne Hackborn13ac0412013-06-25 19:34:49 -07003533 }
Dianne Hackborn13ac0412013-06-25 19:34:49 -07003534 }
3535
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003536 if (filtering && (flags&(DUMP_UNPLUGGED_ONLY|DUMP_CHARGED_ONLY)) == 0) {
Dianne Hackborn099bc622014-01-22 13:39:16 -08003537 return;
3538 }
3539
Dianne Hackborne4a59512010-12-07 11:08:07 -08003540 if (apps != null) {
3541 SparseArray<ArrayList<String>> uids = new SparseArray<ArrayList<String>>();
3542 for (int i=0; i<apps.size(); i++) {
3543 ApplicationInfo ai = apps.get(i);
3544 ArrayList<String> pkgs = uids.get(ai.uid);
3545 if (pkgs == null) {
3546 pkgs = new ArrayList<String>();
3547 uids.put(ai.uid, pkgs);
3548 }
3549 pkgs.add(ai.packageName);
3550 }
3551 SparseArray<? extends Uid> uidStats = getUidStats();
3552 final int NU = uidStats.size();
3553 String[] lineArgs = new String[2];
3554 for (int i=0; i<NU; i++) {
3555 int uid = uidStats.keyAt(i);
3556 ArrayList<String> pkgs = uids.get(uid);
3557 if (pkgs != null) {
3558 for (int j=0; j<pkgs.size(); j++) {
3559 lineArgs[0] = Integer.toString(uid);
3560 lineArgs[1] = pkgs.get(j);
3561 dumpLine(pw, 0 /* uid */, "i" /* category */, UID_DATA,
3562 (Object[])lineArgs);
3563 }
3564 }
3565 }
3566 }
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07003567 if (!filtering) {
3568 dumpDurationSteps(pw, DISCHARGE_STEP_DATA, getDischargeStepDurationsArray(),
3569 getNumDischargeStepDurations(), true);
Dianne Hackbornd06dcfd2014-05-02 13:49:30 -07003570 String[] lineArgs = new String[1];
3571 long timeRemaining = computeBatteryTimeRemaining(SystemClock.elapsedRealtime());
3572 if (timeRemaining >= 0) {
3573 lineArgs[0] = Long.toString(timeRemaining);
3574 dumpLine(pw, 0 /* uid */, "i" /* category */, DISCHARGE_TIME_REMAIN_DATA,
3575 (Object[])lineArgs);
3576 }
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07003577 dumpDurationSteps(pw, CHARGE_STEP_DATA, getChargeStepDurationsArray(),
3578 getNumChargeStepDurations(), true);
Dianne Hackbornd06dcfd2014-05-02 13:49:30 -07003579 timeRemaining = computeChargeTimeRemaining(SystemClock.elapsedRealtime());
3580 if (timeRemaining >= 0) {
3581 lineArgs[0] = Long.toString(timeRemaining);
3582 dumpLine(pw, 0 /* uid */, "i" /* category */, CHARGE_TIME_REMAIN_DATA,
3583 (Object[])lineArgs);
3584 }
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07003585 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003586 if (!filtering || (flags&DUMP_CHARGED_ONLY) != 0) {
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003587 dumpCheckinLocked(context, pw, STATS_SINCE_CHARGED, -1);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003588 }
3589 if (!filtering || (flags&DUMP_UNPLUGGED_ONLY) != 0) {
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003590 dumpCheckinLocked(context, pw, STATS_SINCE_UNPLUGGED, -1);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003591 }
3592 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003593}