blob: c4528372987f9ac614c75bac95ff584c47859f0d [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;
Dianne Hackborn1e725a72015-03-24 18:23:19 -070032import android.util.ArrayMap;
Dianne Hackborn9cfba352016-03-24 17:31:28 -070033import android.util.MutableBoolean;
34import android.util.Pair;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035import android.util.Printer;
36import android.util.SparseArray;
Dianne Hackborn37de0982014-05-09 09:32:18 -070037import android.util.SparseIntArray;
Dianne Hackborn1ebccf52010-08-15 13:04:34 -070038import android.util.TimeUtils;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -070039import android.view.Display;
Dianne Hackborna7c837f2014-01-15 16:20:44 -080040import com.android.internal.os.BatterySipper;
41import com.android.internal.os.BatteryStatsHelper;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042
43/**
44 * A class providing access to battery usage statistics, including information on
45 * wakelocks, processes, packages, and services. All times are represented in microseconds
46 * except where indicated otherwise.
47 * @hide
48 */
49public abstract class BatteryStats implements Parcelable {
50
51 private static final boolean LOCAL_LOGV = false;
Dianne Hackborn91268cf2013-06-13 19:06:50 -070052
53 /** @hide */
54 public static final String SERVICE_NAME = "batterystats";
55
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080056 /**
57 * A constant indicating a partial wake lock timer.
58 */
59 public static final int WAKE_TYPE_PARTIAL = 0;
60
61 /**
62 * A constant indicating a full wake lock timer.
63 */
64 public static final int WAKE_TYPE_FULL = 1;
65
66 /**
67 * A constant indicating a window wake lock timer.
68 */
69 public static final int WAKE_TYPE_WINDOW = 2;
Adam Lesinski9425fe22015-06-19 12:02:13 -070070
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080071 /**
72 * A constant indicating a sensor timer.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080073 */
74 public static final int SENSOR = 3;
The Android Open Source Project10592532009-03-18 17:39:46 -070075
76 /**
Dianne Hackborn58e0eef2010-09-16 01:22:10 -070077 * A constant indicating a a wifi running timer
Dianne Hackborn617f8772009-03-31 15:04:46 -070078 */
Dianne Hackborn58e0eef2010-09-16 01:22:10 -070079 public static final int WIFI_RUNNING = 4;
Dianne Hackborn617f8772009-03-31 15:04:46 -070080
81 /**
The Android Open Source Project10592532009-03-18 17:39:46 -070082 * A constant indicating a full wifi lock timer
The Android Open Source Project10592532009-03-18 17:39:46 -070083 */
Dianne Hackborn617f8772009-03-31 15:04:46 -070084 public static final int FULL_WIFI_LOCK = 5;
The Android Open Source Project10592532009-03-18 17:39:46 -070085
86 /**
Nick Pelly6ccaa542012-06-15 15:22:47 -070087 * A constant indicating a wifi scan
The Android Open Source Project10592532009-03-18 17:39:46 -070088 */
Nick Pelly6ccaa542012-06-15 15:22:47 -070089 public static final int WIFI_SCAN = 6;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080090
Dianne Hackborn62793e42015-03-09 11:15:41 -070091 /**
92 * A constant indicating a wifi multicast timer
93 */
94 public static final int WIFI_MULTICAST_ENABLED = 7;
Robert Greenwalt5347bd42009-05-13 15:10:16 -070095
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080096 /**
Amith Yamasani244fa5c2009-05-22 14:36:07 -070097 * A constant indicating a video turn on timer
Amith Yamasani244fa5c2009-05-22 14:36:07 -070098 */
99 public static final int VIDEO_TURNED_ON = 8;
100
101 /**
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800102 * A constant indicating a vibrator on timer
103 */
104 public static final int VIBRATOR_ON = 9;
105
106 /**
Jeff Sharkey3e013e82013-04-25 14:48:19 -0700107 * A constant indicating a foreground activity timer
108 */
109 public static final int FOREGROUND_ACTIVITY = 10;
110
111 /**
Robert Greenwalta029ea12013-09-25 16:38:12 -0700112 * A constant indicating a wifi batched scan is active
113 */
114 public static final int WIFI_BATCHED_SCAN = 11;
115
116 /**
Dianne Hackborn61659e52014-07-09 16:13:01 -0700117 * A constant indicating a process state timer
118 */
119 public static final int PROCESS_STATE = 12;
120
121 /**
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700122 * A constant indicating a sync timer
123 */
124 public static final int SYNC = 13;
125
126 /**
127 * A constant indicating a job timer
128 */
129 public static final int JOB = 14;
130
131 /**
Kweku Adamsd5379872014-11-24 17:34:05 -0800132 * A constant indicating an audio turn on timer
133 */
134 public static final int AUDIO_TURNED_ON = 15;
135
136 /**
Ruben Brunk6d2c3632015-05-26 17:32:16 -0700137 * A constant indicating a flashlight turn on timer
138 */
139 public static final int FLASHLIGHT_TURNED_ON = 16;
140
141 /**
142 * A constant indicating a camera turn on timer
143 */
144 public static final int CAMERA_TURNED_ON = 17;
145
146 /**
Jeff Brown6a8bd7b2015-06-19 15:07:51 -0700147 * A constant indicating a draw wake lock timer.
Adam Lesinski9425fe22015-06-19 12:02:13 -0700148 */
Jeff Brown6a8bd7b2015-06-19 15:07:51 -0700149 public static final int WAKE_TYPE_DRAW = 18;
Adam Lesinski9425fe22015-06-19 12:02:13 -0700150
151 /**
Adam Lesinski9f55cc72016-01-27 20:42:14 -0800152 * A constant indicating a bluetooth scan timer.
153 */
154 public static final int BLUETOOTH_SCAN_ON = 19;
155
156 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800157 * Include all of the data in the stats, including previously saved data.
158 */
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700159 public static final int STATS_SINCE_CHARGED = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800160
161 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800162 * Include only the current run in the stats.
163 */
Dianne Hackborn4590e522014-03-24 13:36:46 -0700164 public static final int STATS_CURRENT = 1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800165
166 /**
167 * Include only the run since the last time the device was unplugged in the stats.
168 */
Dianne Hackborn4590e522014-03-24 13:36:46 -0700169 public static final int STATS_SINCE_UNPLUGGED = 2;
Evan Millare84de8d2009-04-02 22:16:12 -0700170
171 // NOTE: Update this list if you add/change any stats above.
172 // These characters are supposed to represent "total", "last", "current",
Dianne Hackborn3bee5af82010-07-23 00:22:04 -0700173 // and "unplugged". They were shortened for efficiency sake.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700174 private static final String[] STAT_NAMES = { "l", "c", "u" };
175
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800176 /**
Dianne Hackborn0c820db2015-04-14 17:47:34 -0700177 * Current version of checkin data format.
178 */
Dianne Hackborna8d10942015-11-19 17:55:19 -0800179 static final String CHECKIN_VERSION = "17";
Dianne Hackborn0c820db2015-04-14 17:47:34 -0700180
181 /**
182 * Old version, we hit 9 and ran out of room, need to remove.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800183 */
Ashish Sharma213bb2f2014-07-07 17:14:52 -0700184 private static final int BATTERY_STATS_CHECKIN_VERSION = 9;
Dianne Hackborn0c820db2015-04-14 17:47:34 -0700185
Evan Millar22ac0432009-03-31 11:33:18 -0700186 private static final long BYTES_PER_KB = 1024;
187 private static final long BYTES_PER_MB = 1048576; // 1024^2
188 private static final long BYTES_PER_GB = 1073741824; //1024^3
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800189
Dianne Hackborncd0e3352014-08-07 17:08:09 -0700190 private static final String VERSION_DATA = "vers";
Dianne Hackborne4a59512010-12-07 11:08:07 -0800191 private static final String UID_DATA = "uid";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800192 private static final String APK_DATA = "apk";
Evan Millare84de8d2009-04-02 22:16:12 -0700193 private static final String PROCESS_DATA = "pr";
Adam Lesinskia7a4ccc2015-06-26 17:43:04 -0700194 private static final String CPU_DATA = "cpu";
Evan Millare84de8d2009-04-02 22:16:12 -0700195 private static final String SENSOR_DATA = "sr";
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800196 private static final String VIBRATOR_DATA = "vib";
Jeff Sharkey3e013e82013-04-25 14:48:19 -0700197 private static final String FOREGROUND_DATA = "fg";
Dianne Hackborn61659e52014-07-09 16:13:01 -0700198 private static final String STATE_TIME_DATA = "st";
Evan Millare84de8d2009-04-02 22:16:12 -0700199 private static final String WAKELOCK_DATA = "wl";
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700200 private static final String SYNC_DATA = "sy";
201 private static final String JOB_DATA = "jb";
Evan Millarc64edde2009-04-18 12:26:32 -0700202 private static final String KERNEL_WAKELOCK_DATA = "kwl";
Dianne Hackborna1bd7922014-03-21 11:07:11 -0700203 private static final String WAKEUP_REASON_DATA = "wr";
Evan Millare84de8d2009-04-02 22:16:12 -0700204 private static final String NETWORK_DATA = "nt";
205 private static final String USER_ACTIVITY_DATA = "ua";
206 private static final String BATTERY_DATA = "bt";
Dianne Hackbornc1b40e32011-01-05 18:27:40 -0800207 private static final String BATTERY_DISCHARGE_DATA = "dc";
Evan Millare84de8d2009-04-02 22:16:12 -0700208 private static final String BATTERY_LEVEL_DATA = "lv";
Adam Lesinskie283d332015-04-16 12:29:25 -0700209 private static final String GLOBAL_WIFI_DATA = "gwfl";
Nick Pelly6ccaa542012-06-15 15:22:47 -0700210 private static final String WIFI_DATA = "wfl";
Adam Lesinski21f76aa2016-01-25 12:27:06 -0800211 private static final String GLOBAL_WIFI_CONTROLLER_DATA = "gwfcd";
212 private static final String WIFI_CONTROLLER_DATA = "wfcd";
213 private static final String GLOBAL_BLUETOOTH_CONTROLLER_DATA = "gble";
214 private static final String BLUETOOTH_CONTROLLER_DATA = "ble";
Adam Lesinskid9b99be2016-03-30 16:58:51 -0700215 private static final String BLUETOOTH_MISC_DATA = "blem";
Evan Millare84de8d2009-04-02 22:16:12 -0700216 private static final String MISC_DATA = "m";
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800217 private static final String GLOBAL_NETWORK_DATA = "gn";
Adam Lesinski21f76aa2016-01-25 12:27:06 -0800218 private static final String GLOBAL_MODEM_CONTROLLER_DATA = "gmcd";
219 private static final String MODEM_CONTROLLER_DATA = "mcd";
Dianne Hackborn099bc622014-01-22 13:39:16 -0800220 private static final String HISTORY_STRING_POOL = "hsp";
Dianne Hackborn8a0de582013-08-07 15:22:07 -0700221 private static final String HISTORY_DATA = "h";
Evan Millare84de8d2009-04-02 22:16:12 -0700222 private static final String SCREEN_BRIGHTNESS_DATA = "br";
223 private static final String SIGNAL_STRENGTH_TIME_DATA = "sgt";
Amith Yamasanif37447b2009-10-08 18:28:01 -0700224 private static final String SIGNAL_SCANNING_TIME_DATA = "sst";
Evan Millare84de8d2009-04-02 22:16:12 -0700225 private static final String SIGNAL_STRENGTH_COUNT_DATA = "sgc";
226 private static final String DATA_CONNECTION_TIME_DATA = "dct";
227 private static final String DATA_CONNECTION_COUNT_DATA = "dcc";
Dianne Hackbornca1bf212014-02-14 14:18:36 -0800228 private static final String WIFI_STATE_TIME_DATA = "wst";
229 private static final String WIFI_STATE_COUNT_DATA = "wsc";
Dianne Hackborn3251b902014-06-20 14:40:53 -0700230 private static final String WIFI_SUPPL_STATE_TIME_DATA = "wsst";
231 private static final String WIFI_SUPPL_STATE_COUNT_DATA = "wssc";
232 private static final String WIFI_SIGNAL_STRENGTH_TIME_DATA = "wsgt";
233 private static final String WIFI_SIGNAL_STRENGTH_COUNT_DATA = "wsgc";
Dianne Hackborna7c837f2014-01-15 16:20:44 -0800234 private static final String POWER_USE_SUMMARY_DATA = "pws";
235 private static final String POWER_USE_ITEM_DATA = "pwi";
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -0700236 private static final String DISCHARGE_STEP_DATA = "dsd";
237 private static final String CHARGE_STEP_DATA = "csd";
Dianne Hackbornd06dcfd2014-05-02 13:49:30 -0700238 private static final String DISCHARGE_TIME_REMAIN_DATA = "dtr";
239 private static final String CHARGE_TIME_REMAIN_DATA = "ctr";
Ruben Brunk6d2c3632015-05-26 17:32:16 -0700240 private static final String FLASHLIGHT_DATA = "fla";
241 private static final String CAMERA_DATA = "cam";
242 private static final String VIDEO_DATA = "vid";
243 private static final String AUDIO_DATA = "aud";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800244
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700245 private final StringBuilder mFormatBuilder = new StringBuilder(32);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800246 private final Formatter mFormatter = new Formatter(mFormatBuilder);
247
248 /**
Dianne Hackborn617f8772009-03-31 15:04:46 -0700249 * State for keeping track of counting information.
250 */
251 public static abstract class Counter {
252
253 /**
254 * Returns the count associated with this Counter for the
255 * selected type of statistics.
256 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700257 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT
Dianne Hackborn617f8772009-03-31 15:04:46 -0700258 */
Evan Millarc64edde2009-04-18 12:26:32 -0700259 public abstract int getCountLocked(int which);
Dianne Hackborn617f8772009-03-31 15:04:46 -0700260
261 /**
262 * Temporary for debugging.
263 */
264 public abstract void logState(Printer pw, String prefix);
265 }
266
267 /**
Dianne Hackborna1bd7922014-03-21 11:07:11 -0700268 * State for keeping track of long counting information.
269 */
270 public static abstract class LongCounter {
271
272 /**
273 * Returns the count associated with this Counter for the
274 * selected type of statistics.
275 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700276 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT
Dianne Hackborna1bd7922014-03-21 11:07:11 -0700277 */
278 public abstract long getCountLocked(int which);
279
280 /**
281 * Temporary for debugging.
282 */
283 public abstract void logState(Printer pw, String prefix);
284 }
285
286 /**
Adam Lesinski21f76aa2016-01-25 12:27:06 -0800287 * Container class that aggregates counters for transmit, receive, and idle state of a
288 * radio controller.
289 */
290 public static abstract class ControllerActivityCounter {
291 /**
292 * @return a non-null {@link LongCounter} representing time spent (milliseconds) in the
293 * idle state.
294 */
295 public abstract LongCounter getIdleTimeCounter();
296
297 /**
298 * @return a non-null {@link LongCounter} representing time spent (milliseconds) in the
299 * receive state.
300 */
301 public abstract LongCounter getRxTimeCounter();
302
303 /**
304 * An array of {@link LongCounter}, representing various transmit levels, where each level
305 * may draw a different amount of power. The levels themselves are controller-specific.
306 * @return non-null array of {@link LongCounter}s representing time spent (milliseconds) in
307 * various transmit level states.
308 */
309 public abstract LongCounter[] getTxTimeCounters();
310
311 /**
312 * @return a non-null {@link LongCounter} representing the power consumed by the controller
313 * in all states, measured in milli-ampere-milliseconds (mAms). The counter may always
314 * yield a value of 0 if the device doesn't support power calculations.
315 */
316 public abstract LongCounter getPowerCounter();
317 }
318
319 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800320 * State for keeping track of timing information.
321 */
322 public static abstract class Timer {
323
324 /**
325 * Returns the count associated with this Timer for the
326 * selected type of statistics.
327 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700328 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800329 */
Evan Millarc64edde2009-04-18 12:26:32 -0700330 public abstract int getCountLocked(int which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800331
332 /**
333 * Returns the total time in microseconds associated with this Timer for the
334 * selected type of statistics.
335 *
Dianne Hackborn97ae5382014-03-05 16:43:25 -0800336 * @param elapsedRealtimeUs current elapsed realtime of system in microseconds
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700337 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800338 * @return a time in microseconds
339 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -0800340 public abstract long getTotalTimeLocked(long elapsedRealtimeUs, int which);
Amith Yamasani244fa5c2009-05-22 14:36:07 -0700341
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800342 /**
Adam Lesinskie08af192015-03-25 16:42:59 -0700343 * Returns the total time in microseconds associated with this Timer since the
344 * 'mark' was last set.
345 *
346 * @param elapsedRealtimeUs current elapsed realtime of system in microseconds
347 * @return a time in microseconds
348 */
349 public abstract long getTimeSinceMarkLocked(long elapsedRealtimeUs);
350
351 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800352 * Temporary for debugging.
353 */
Dianne Hackborn627bba72009-03-24 22:32:56 -0700354 public abstract void logState(Printer pw, String prefix);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800355 }
356
357 /**
358 * The statistics associated with a particular uid.
359 */
360 public static abstract class Uid {
361
362 /**
363 * Returns a mapping containing wakelock statistics.
364 *
365 * @return a Map from Strings to Uid.Wakelock objects.
366 */
Dianne Hackborn1e725a72015-03-24 18:23:19 -0700367 public abstract ArrayMap<String, ? extends Wakelock> getWakelockStats();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800368
369 /**
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700370 * Returns a mapping containing sync statistics.
371 *
372 * @return a Map from Strings to Timer objects.
373 */
Dianne Hackborn1e725a72015-03-24 18:23:19 -0700374 public abstract ArrayMap<String, ? extends Timer> getSyncStats();
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700375
376 /**
377 * Returns a mapping containing scheduled job statistics.
378 *
379 * @return a Map from Strings to Timer objects.
380 */
Dianne Hackborn1e725a72015-03-24 18:23:19 -0700381 public abstract ArrayMap<String, ? extends Timer> getJobStats();
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700382
383 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800384 * The statistics associated with a particular wake lock.
385 */
386 public static abstract class Wakelock {
387 public abstract Timer getWakeTime(int type);
388 }
389
390 /**
391 * Returns a mapping containing sensor statistics.
392 *
393 * @return a Map from Integer sensor ids to Uid.Sensor objects.
394 */
Dianne Hackborn61659e52014-07-09 16:13:01 -0700395 public abstract SparseArray<? extends Sensor> getSensorStats();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800396
397 /**
Dianne Hackbornb5e31652010-09-07 12:13:55 -0700398 * Returns a mapping containing active process data.
399 */
400 public abstract SparseArray<? extends Pid> getPidStats();
401
402 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800403 * Returns a mapping containing process statistics.
404 *
405 * @return a Map from Strings to Uid.Proc objects.
406 */
Dianne Hackborn1e725a72015-03-24 18:23:19 -0700407 public abstract ArrayMap<String, ? extends Proc> getProcessStats();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800408
409 /**
410 * Returns a mapping containing package statistics.
411 *
412 * @return a Map from Strings to Uid.Pkg objects.
413 */
Dianne Hackborn1e725a72015-03-24 18:23:19 -0700414 public abstract ArrayMap<String, ? extends Pkg> getPackageStats();
Adam Lesinskie08af192015-03-25 16:42:59 -0700415
Adam Lesinski21f76aa2016-01-25 12:27:06 -0800416 public abstract ControllerActivityCounter getWifiControllerActivity();
417 public abstract ControllerActivityCounter getBluetoothControllerActivity();
418 public abstract ControllerActivityCounter getModemControllerActivity();
Adam Lesinski50e47602015-12-04 17:04:54 -0800419
420 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800421 * {@hide}
422 */
423 public abstract int getUid();
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700424
Dianne Hackbornca1bf212014-02-14 14:18:36 -0800425 public abstract void noteWifiRunningLocked(long elapsedRealtime);
426 public abstract void noteWifiStoppedLocked(long elapsedRealtime);
427 public abstract void noteFullWifiLockAcquiredLocked(long elapsedRealtime);
428 public abstract void noteFullWifiLockReleasedLocked(long elapsedRealtime);
429 public abstract void noteWifiScanStartedLocked(long elapsedRealtime);
430 public abstract void noteWifiScanStoppedLocked(long elapsedRealtime);
431 public abstract void noteWifiBatchedScanStartedLocked(int csph, long elapsedRealtime);
432 public abstract void noteWifiBatchedScanStoppedLocked(long elapsedRealtime);
433 public abstract void noteWifiMulticastEnabledLocked(long elapsedRealtime);
434 public abstract void noteWifiMulticastDisabledLocked(long elapsedRealtime);
Dianne Hackbornca1bf212014-02-14 14:18:36 -0800435 public abstract void noteActivityResumedLocked(long elapsedRealtime);
436 public abstract void noteActivityPausedLocked(long elapsedRealtime);
Dianne Hackborn97ae5382014-03-05 16:43:25 -0800437 public abstract long getWifiRunningTime(long elapsedRealtimeUs, int which);
438 public abstract long getFullWifiLockTime(long elapsedRealtimeUs, int which);
439 public abstract long getWifiScanTime(long elapsedRealtimeUs, int which);
Dianne Hackborn62793e42015-03-09 11:15:41 -0700440 public abstract int getWifiScanCount(int which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -0800441 public abstract long getWifiBatchedScanTime(int csphBin, long elapsedRealtimeUs, int which);
Dianne Hackborn62793e42015-03-09 11:15:41 -0700442 public abstract int getWifiBatchedScanCount(int csphBin, int which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -0800443 public abstract long getWifiMulticastTime(long elapsedRealtimeUs, int which);
Ruben Brunk6d2c3632015-05-26 17:32:16 -0700444 public abstract Timer getAudioTurnedOnTimer();
445 public abstract Timer getVideoTurnedOnTimer();
446 public abstract Timer getFlashlightTurnedOnTimer();
447 public abstract Timer getCameraTurnedOnTimer();
Jeff Sharkey3e013e82013-04-25 14:48:19 -0700448 public abstract Timer getForegroundActivityTimer();
Adam Lesinski9f55cc72016-01-27 20:42:14 -0800449 public abstract Timer getBluetoothScanTimer();
Dianne Hackborn61659e52014-07-09 16:13:01 -0700450
Dianne Hackborna0200e32016-03-30 18:01:41 -0700451 // Note: the following times are disjoint. They can be added together to find the
452 // total time a uid has had any processes running at all.
453
454 /**
455 * Time this uid has any processes in the top state (or above such as persistent).
456 */
Dianne Hackborna8d10942015-11-19 17:55:19 -0800457 public static final int PROCESS_STATE_TOP = 0;
Dianne Hackborna0200e32016-03-30 18:01:41 -0700458 /**
459 * Time this uid has any process with a started out bound foreground service, but
460 * none in the "top" state.
461 */
Dianne Hackborna8d10942015-11-19 17:55:19 -0800462 public static final int PROCESS_STATE_FOREGROUND_SERVICE = 1;
Dianne Hackborna0200e32016-03-30 18:01:41 -0700463 /**
464 * Time this uid has any process that is top while the device is sleeping, but none
465 * in the "foreground service" or better state.
466 */
Dianne Hackborna8d10942015-11-19 17:55:19 -0800467 public static final int PROCESS_STATE_TOP_SLEEPING = 2;
Dianne Hackborna0200e32016-03-30 18:01:41 -0700468 /**
469 * Time this uid has any process in an active foreground state, but none in the
470 * "top sleeping" or better state.
471 */
Dianne Hackborna8d10942015-11-19 17:55:19 -0800472 public static final int PROCESS_STATE_FOREGROUND = 3;
Dianne Hackborna0200e32016-03-30 18:01:41 -0700473 /**
474 * Time this uid has any process in an active background state, but none in the
475 * "foreground" or better state.
476 */
Dianne Hackborna8d10942015-11-19 17:55:19 -0800477 public static final int PROCESS_STATE_BACKGROUND = 4;
Dianne Hackborna0200e32016-03-30 18:01:41 -0700478 /**
479 * Time this uid has any processes that are sitting around cached, not in one of the
480 * other active states.
481 */
Dianne Hackborna8d10942015-11-19 17:55:19 -0800482 public static final int PROCESS_STATE_CACHED = 5;
Dianne Hackborna0200e32016-03-30 18:01:41 -0700483 /**
484 * Total number of process states we track.
485 */
Dianne Hackborna8d10942015-11-19 17:55:19 -0800486 public static final int NUM_PROCESS_STATE = 6;
Dianne Hackborn61659e52014-07-09 16:13:01 -0700487
488 static final String[] PROCESS_STATE_NAMES = {
Dianne Hackborna8d10942015-11-19 17:55:19 -0800489 "Top", "Fg Service", "Top Sleeping", "Foreground", "Background", "Cached"
Dianne Hackborn61659e52014-07-09 16:13:01 -0700490 };
491
492 public abstract long getProcessStateTime(int state, long elapsedRealtimeUs, int which);
Joe Onorato713fec82016-03-04 10:34:02 -0800493 public abstract Timer getProcessStateTimer(int state);
Dianne Hackborn61659e52014-07-09 16:13:01 -0700494
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800495 public abstract Timer getVibratorOnTimer();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800496
Robert Greenwalta029ea12013-09-25 16:38:12 -0700497 public static final int NUM_WIFI_BATCHED_SCAN_BINS = 5;
498
Dianne Hackborn617f8772009-03-31 15:04:46 -0700499 /**
Jeff Browndf693de2012-07-27 12:03:38 -0700500 * Note that these must match the constants in android.os.PowerManager.
501 * Also, if the user activity types change, the BatteryStatsImpl.VERSION must
502 * also be bumped.
Dianne Hackborn617f8772009-03-31 15:04:46 -0700503 */
504 static final String[] USER_ACTIVITY_TYPES = {
Phil Weaverda80d672016-03-15 16:25:46 -0700505 "other", "button", "touch", "accessibility"
Dianne Hackborn617f8772009-03-31 15:04:46 -0700506 };
507
Phil Weaverda80d672016-03-15 16:25:46 -0700508 public static final int NUM_USER_ACTIVITY_TYPES = 4;
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700509
Dianne Hackborn617f8772009-03-31 15:04:46 -0700510 public abstract void noteUserActivityLocked(int type);
511 public abstract boolean hasUserActivity();
512 public abstract int getUserActivityCount(int type, int which);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700513
514 public abstract boolean hasNetworkActivity();
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800515 public abstract long getNetworkActivityBytes(int type, int which);
516 public abstract long getNetworkActivityPackets(int type, int which);
Dianne Hackbornd45665b2014-02-26 12:35:32 -0800517 public abstract long getMobileRadioActiveTime(int which);
518 public abstract int getMobileRadioActiveCount(int which);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700519
Adam Lesinski06af1fa2015-05-05 17:35:35 -0700520 /**
521 * Get the total cpu time (in microseconds) this UID had processes executing in userspace.
522 */
523 public abstract long getUserCpuTimeUs(int which);
524
525 /**
526 * Get the total cpu time (in microseconds) this UID had processes executing kernel syscalls.
527 */
528 public abstract long getSystemCpuTimeUs(int which);
529
530 /**
Adam Lesinskia7a4ccc2015-06-26 17:43:04 -0700531 * Get the total cpu power consumed (in milli-ampere-microseconds).
532 */
533 public abstract long getCpuPowerMaUs(int which);
534
535 /**
Adam Lesinski6832f392015-09-05 18:05:40 -0700536 * Returns the approximate cpu time (in milliseconds) spent at a certain CPU speed for a
537 * given CPU cluster.
538 * @param cluster the index of the CPU cluster.
Adam Lesinskia7a4ccc2015-06-26 17:43:04 -0700539 * @param step the index of the CPU speed. This is not the actual speed of the CPU.
Adam Lesinski06af1fa2015-05-05 17:35:35 -0700540 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
Dianne Hackborn08c47a52015-10-15 12:38:14 -0700541 * @see com.android.internal.os.PowerProfile#getNumCpuClusters()
542 * @see com.android.internal.os.PowerProfile#getNumSpeedStepsInCpuCluster(int)
Adam Lesinski06af1fa2015-05-05 17:35:35 -0700543 */
Adam Lesinski6832f392015-09-05 18:05:40 -0700544 public abstract long getTimeAtCpuSpeed(int cluster, int step, int which);
Adam Lesinski06af1fa2015-05-05 17:35:35 -0700545
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800546 public static abstract class Sensor {
Mathias Agopian7f84c062013-02-04 19:22:47 -0800547 /*
548 * FIXME: it's not correct to use this magic value because it
549 * could clash with a sensor handle (which are defined by
550 * the sensor HAL, and therefore out of our control
551 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800552 // Magic sensor number for the GPS.
553 public static final int GPS = -10000;
554
555 public abstract int getHandle();
556
557 public abstract Timer getSensorTime();
558 }
559
Dianne Hackbornb5e31652010-09-07 12:13:55 -0700560 public class Pid {
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800561 public int mWakeNesting;
562 public long mWakeSumMs;
563 public long mWakeStartMs;
Dianne Hackbornb5e31652010-09-07 12:13:55 -0700564 }
565
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800566 /**
567 * The statistics associated with a particular process.
568 */
569 public static abstract class Proc {
570
Dianne Hackborn287952c2010-09-22 22:34:31 -0700571 public static class ExcessivePower {
572 public static final int TYPE_WAKE = 1;
573 public static final int TYPE_CPU = 2;
574
575 public int type;
Dianne Hackborn9adb9c32010-08-13 14:09:56 -0700576 public long overTime;
577 public long usedTime;
578 }
579
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800580 /**
Dianne Hackborn099bc622014-01-22 13:39:16 -0800581 * Returns true if this process is still active in the battery stats.
582 */
583 public abstract boolean isActive();
584
585 /**
Adam Lesinski33dac552015-03-09 15:24:48 -0700586 * Returns the total time (in milliseconds) spent executing in user code.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800587 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700588 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800589 */
590 public abstract long getUserTime(int which);
591
592 /**
Adam Lesinski33dac552015-03-09 15:24:48 -0700593 * Returns the total time (in milliseconds) spent executing in system code.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800594 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700595 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800596 */
597 public abstract long getSystemTime(int which);
598
599 /**
600 * Returns the number of times the process has been started.
601 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700602 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800603 */
604 public abstract int getStarts(int which);
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700605
606 /**
Dianne Hackborn1e01d162014-12-04 17:46:42 -0800607 * Returns the number of times the process has crashed.
608 *
609 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
610 */
611 public abstract int getNumCrashes(int which);
612
613 /**
614 * Returns the number of times the process has ANRed.
615 *
616 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
617 */
618 public abstract int getNumAnrs(int which);
619
620 /**
Adam Lesinski33dac552015-03-09 15:24:48 -0700621 * Returns the cpu time (milliseconds) spent while the process was in the foreground.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700622 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700623 * @return foreground cpu time in microseconds
624 */
625 public abstract long getForegroundTime(int which);
Amith Yamasanie43530a2009-08-21 13:11:37 -0700626
Dianne Hackborn287952c2010-09-22 22:34:31 -0700627 public abstract int countExcessivePowers();
Dianne Hackborn9adb9c32010-08-13 14:09:56 -0700628
Dianne Hackborn287952c2010-09-22 22:34:31 -0700629 public abstract ExcessivePower getExcessivePower(int i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800630 }
631
632 /**
633 * The statistics associated with a particular package.
634 */
635 public static abstract class Pkg {
636
637 /**
Dianne Hackborn1e725a72015-03-24 18:23:19 -0700638 * Returns information about all wakeup alarms that have been triggered for this
639 * package. The mapping keys are tag names for the alarms, the counter contains
640 * the number of times the alarm was triggered while on battery.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800641 */
Dianne Hackborn1e725a72015-03-24 18:23:19 -0700642 public abstract ArrayMap<String, ? extends Counter> getWakeupAlarmStats();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800643
644 /**
645 * Returns a mapping containing service statistics.
646 */
Dianne Hackborn1e725a72015-03-24 18:23:19 -0700647 public abstract ArrayMap<String, ? extends Serv> getServiceStats();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800648
649 /**
650 * The statistics associated with a particular service.
651 */
Joe Onoratoabded112016-02-08 16:49:39 -0800652 public static abstract class Serv {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800653
654 /**
655 * Returns the amount of time spent started.
656 *
657 * @param batteryUptime elapsed uptime on battery in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700658 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800659 * @return
660 */
661 public abstract long getStartTime(long batteryUptime, int which);
662
663 /**
664 * Returns the total number of times startService() has been called.
665 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700666 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800667 */
668 public abstract int getStarts(int which);
669
670 /**
671 * Returns the total number times the service has been launched.
672 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700673 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800674 */
675 public abstract int getLaunches(int which);
676 }
677 }
678 }
679
Dianne Hackbornd4a8af72015-03-03 10:06:15 -0800680 public static final class LevelStepTracker {
681 public long mLastStepTime = -1;
682 public int mNumStepDurations;
683 public final long[] mStepDurations;
684
685 public LevelStepTracker(int maxLevelSteps) {
686 mStepDurations = new long[maxLevelSteps];
687 }
688
689 public LevelStepTracker(int numSteps, long[] steps) {
690 mNumStepDurations = numSteps;
691 mStepDurations = new long[numSteps];
692 System.arraycopy(steps, 0, mStepDurations, 0, numSteps);
693 }
694
695 public long getDurationAt(int index) {
696 return mStepDurations[index] & STEP_LEVEL_TIME_MASK;
697 }
698
699 public int getLevelAt(int index) {
700 return (int)((mStepDurations[index] & STEP_LEVEL_LEVEL_MASK)
701 >> STEP_LEVEL_LEVEL_SHIFT);
702 }
703
704 public int getInitModeAt(int index) {
705 return (int)((mStepDurations[index] & STEP_LEVEL_INITIAL_MODE_MASK)
706 >> STEP_LEVEL_INITIAL_MODE_SHIFT);
707 }
708
709 public int getModModeAt(int index) {
710 return (int)((mStepDurations[index] & STEP_LEVEL_MODIFIED_MODE_MASK)
711 >> STEP_LEVEL_MODIFIED_MODE_SHIFT);
712 }
713
714 private void appendHex(long val, int topOffset, StringBuilder out) {
715 boolean hasData = false;
716 while (topOffset >= 0) {
717 int digit = (int)( (val>>topOffset) & 0xf );
718 topOffset -= 4;
719 if (!hasData && digit == 0) {
720 continue;
721 }
722 hasData = true;
723 if (digit >= 0 && digit <= 9) {
724 out.append((char)('0' + digit));
725 } else {
726 out.append((char)('a' + digit - 10));
727 }
728 }
729 }
730
731 public void encodeEntryAt(int index, StringBuilder out) {
732 long item = mStepDurations[index];
733 long duration = item & STEP_LEVEL_TIME_MASK;
734 int level = (int)((item & STEP_LEVEL_LEVEL_MASK)
735 >> STEP_LEVEL_LEVEL_SHIFT);
736 int initMode = (int)((item & STEP_LEVEL_INITIAL_MODE_MASK)
737 >> STEP_LEVEL_INITIAL_MODE_SHIFT);
738 int modMode = (int)((item & STEP_LEVEL_MODIFIED_MODE_MASK)
739 >> STEP_LEVEL_MODIFIED_MODE_SHIFT);
740 switch ((initMode&STEP_LEVEL_MODE_SCREEN_STATE) + 1) {
741 case Display.STATE_OFF: out.append('f'); break;
742 case Display.STATE_ON: out.append('o'); break;
743 case Display.STATE_DOZE: out.append('d'); break;
744 case Display.STATE_DOZE_SUSPEND: out.append('z'); break;
745 }
746 if ((initMode&STEP_LEVEL_MODE_POWER_SAVE) != 0) {
747 out.append('p');
748 }
Dianne Hackborn88e98df2015-03-23 13:29:14 -0700749 if ((initMode&STEP_LEVEL_MODE_DEVICE_IDLE) != 0) {
750 out.append('i');
751 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -0800752 switch ((modMode&STEP_LEVEL_MODE_SCREEN_STATE) + 1) {
753 case Display.STATE_OFF: out.append('F'); break;
754 case Display.STATE_ON: out.append('O'); break;
755 case Display.STATE_DOZE: out.append('D'); break;
756 case Display.STATE_DOZE_SUSPEND: out.append('Z'); break;
757 }
758 if ((modMode&STEP_LEVEL_MODE_POWER_SAVE) != 0) {
759 out.append('P');
760 }
Dianne Hackborn88e98df2015-03-23 13:29:14 -0700761 if ((modMode&STEP_LEVEL_MODE_DEVICE_IDLE) != 0) {
762 out.append('I');
763 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -0800764 out.append('-');
765 appendHex(level, 4, out);
766 out.append('-');
767 appendHex(duration, STEP_LEVEL_LEVEL_SHIFT-4, out);
768 }
769
770 public void decodeEntryAt(int index, String value) {
771 final int N = value.length();
772 int i = 0;
773 char c;
774 long out = 0;
775 while (i < N && (c=value.charAt(i)) != '-') {
776 i++;
777 switch (c) {
Dianne Hackborn8cfb58b2015-03-04 13:28:36 -0800778 case 'f': out |= (((long)Display.STATE_OFF-1)<<STEP_LEVEL_INITIAL_MODE_SHIFT);
Dianne Hackbornd4a8af72015-03-03 10:06:15 -0800779 break;
Dianne Hackborn8cfb58b2015-03-04 13:28:36 -0800780 case 'o': out |= (((long)Display.STATE_ON-1)<<STEP_LEVEL_INITIAL_MODE_SHIFT);
Dianne Hackbornd4a8af72015-03-03 10:06:15 -0800781 break;
Dianne Hackborn8cfb58b2015-03-04 13:28:36 -0800782 case 'd': out |= (((long)Display.STATE_DOZE-1)<<STEP_LEVEL_INITIAL_MODE_SHIFT);
Dianne Hackbornd4a8af72015-03-03 10:06:15 -0800783 break;
Dianne Hackborn8cfb58b2015-03-04 13:28:36 -0800784 case 'z': out |= (((long)Display.STATE_DOZE_SUSPEND-1)
785 << STEP_LEVEL_INITIAL_MODE_SHIFT);
786 break;
787 case 'p': out |= (((long)STEP_LEVEL_MODE_POWER_SAVE)
788 << STEP_LEVEL_INITIAL_MODE_SHIFT);
789 break;
Dianne Hackborn88e98df2015-03-23 13:29:14 -0700790 case 'i': out |= (((long)STEP_LEVEL_MODE_DEVICE_IDLE)
791 << STEP_LEVEL_INITIAL_MODE_SHIFT);
792 break;
Dianne Hackborn8cfb58b2015-03-04 13:28:36 -0800793 case 'F': out |= (((long)Display.STATE_OFF-1)<<STEP_LEVEL_MODIFIED_MODE_SHIFT);
794 break;
795 case 'O': out |= (((long)Display.STATE_ON-1)<<STEP_LEVEL_MODIFIED_MODE_SHIFT);
796 break;
797 case 'D': out |= (((long)Display.STATE_DOZE-1)<<STEP_LEVEL_MODIFIED_MODE_SHIFT);
798 break;
799 case 'Z': out |= (((long)Display.STATE_DOZE_SUSPEND-1)
800 << STEP_LEVEL_MODIFIED_MODE_SHIFT);
801 break;
802 case 'P': out |= (((long)STEP_LEVEL_MODE_POWER_SAVE)
803 << STEP_LEVEL_MODIFIED_MODE_SHIFT);
Dianne Hackbornd4a8af72015-03-03 10:06:15 -0800804 break;
Dianne Hackborn88e98df2015-03-23 13:29:14 -0700805 case 'I': out |= (((long)STEP_LEVEL_MODE_DEVICE_IDLE)
806 << STEP_LEVEL_MODIFIED_MODE_SHIFT);
807 break;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -0800808 }
809 }
810 i++;
Dianne Hackborn8cfb58b2015-03-04 13:28:36 -0800811 long level = 0;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -0800812 while (i < N && (c=value.charAt(i)) != '-') {
813 i++;
814 level <<= 4;
815 if (c >= '0' && c <= '9') {
816 level += c - '0';
817 } else if (c >= 'a' && c <= 'f') {
818 level += c - 'a' + 10;
819 } else if (c >= 'A' && c <= 'F') {
820 level += c - 'A' + 10;
821 }
822 }
Dianne Hackborn8cfb58b2015-03-04 13:28:36 -0800823 i++;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -0800824 out |= (level << STEP_LEVEL_LEVEL_SHIFT) & STEP_LEVEL_LEVEL_MASK;
825 long duration = 0;
826 while (i < N && (c=value.charAt(i)) != '-') {
827 i++;
828 duration <<= 4;
829 if (c >= '0' && c <= '9') {
830 duration += c - '0';
831 } else if (c >= 'a' && c <= 'f') {
832 duration += c - 'a' + 10;
833 } else if (c >= 'A' && c <= 'F') {
834 duration += c - 'A' + 10;
835 }
836 }
837 mStepDurations[index] = out | (duration & STEP_LEVEL_TIME_MASK);
838 }
839
840 public void init() {
841 mLastStepTime = -1;
842 mNumStepDurations = 0;
843 }
844
845 public void clearTime() {
846 mLastStepTime = -1;
847 }
848
849 public long computeTimePerLevel() {
850 final long[] steps = mStepDurations;
851 final int numSteps = mNumStepDurations;
852
853 // For now we'll do a simple average across all steps.
854 if (numSteps <= 0) {
855 return -1;
856 }
857 long total = 0;
858 for (int i=0; i<numSteps; i++) {
859 total += steps[i] & STEP_LEVEL_TIME_MASK;
860 }
861 return total / numSteps;
862 /*
863 long[] buckets = new long[numSteps];
864 int numBuckets = 0;
865 int numToAverage = 4;
866 int i = 0;
867 while (i < numSteps) {
868 long totalTime = 0;
869 int num = 0;
870 for (int j=0; j<numToAverage && (i+j)<numSteps; j++) {
871 totalTime += steps[i+j] & STEP_LEVEL_TIME_MASK;
872 num++;
873 }
874 buckets[numBuckets] = totalTime / num;
875 numBuckets++;
876 numToAverage *= 2;
877 i += num;
878 }
879 if (numBuckets < 1) {
880 return -1;
881 }
882 long averageTime = buckets[numBuckets-1];
883 for (i=numBuckets-2; i>=0; i--) {
884 averageTime = (averageTime + buckets[i]) / 2;
885 }
886 return averageTime;
887 */
888 }
889
890 public long computeTimeEstimate(long modesOfInterest, long modeValues,
891 int[] outNumOfInterest) {
892 final long[] steps = mStepDurations;
893 final int count = mNumStepDurations;
894 if (count <= 0) {
895 return -1;
896 }
897 long total = 0;
898 int numOfInterest = 0;
899 for (int i=0; i<count; i++) {
900 long initMode = (steps[i] & STEP_LEVEL_INITIAL_MODE_MASK)
901 >> STEP_LEVEL_INITIAL_MODE_SHIFT;
902 long modMode = (steps[i] & STEP_LEVEL_MODIFIED_MODE_MASK)
903 >> STEP_LEVEL_MODIFIED_MODE_SHIFT;
904 // If the modes of interest didn't change during this step period...
905 if ((modMode&modesOfInterest) == 0) {
906 // And the mode values during this period match those we are measuring...
907 if ((initMode&modesOfInterest) == modeValues) {
908 // Then this can be used to estimate the total time!
909 numOfInterest++;
910 total += steps[i] & STEP_LEVEL_TIME_MASK;
911 }
912 }
913 }
914 if (numOfInterest <= 0) {
915 return -1;
916 }
917
918 if (outNumOfInterest != null) {
919 outNumOfInterest[0] = numOfInterest;
920 }
921
922 // The estimated time is the average time we spend in each level, multipled
923 // by 100 -- the total number of battery levels
924 return (total / numOfInterest) * 100;
925 }
926
927 public void addLevelSteps(int numStepLevels, long modeBits, long elapsedRealtime) {
928 int stepCount = mNumStepDurations;
929 final long lastStepTime = mLastStepTime;
930 if (lastStepTime >= 0 && numStepLevels > 0) {
931 final long[] steps = mStepDurations;
932 long duration = elapsedRealtime - lastStepTime;
933 for (int i=0; i<numStepLevels; i++) {
934 System.arraycopy(steps, 0, steps, 1, steps.length-1);
935 long thisDuration = duration / (numStepLevels-i);
936 duration -= thisDuration;
937 if (thisDuration > STEP_LEVEL_TIME_MASK) {
938 thisDuration = STEP_LEVEL_TIME_MASK;
939 }
940 steps[0] = thisDuration | modeBits;
941 }
942 stepCount += numStepLevels;
943 if (stepCount > steps.length) {
944 stepCount = steps.length;
945 }
946 }
947 mNumStepDurations = stepCount;
948 mLastStepTime = elapsedRealtime;
949 }
950
951 public void readFromParcel(Parcel in) {
952 final int N = in.readInt();
Adam Lesinski9ae9cba2015-07-08 17:09:34 -0700953 if (N > mStepDurations.length) {
954 throw new ParcelFormatException("more step durations than available: " + N);
955 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -0800956 mNumStepDurations = N;
957 for (int i=0; i<N; i++) {
958 mStepDurations[i] = in.readLong();
959 }
960 }
961
962 public void writeToParcel(Parcel out) {
963 final int N = mNumStepDurations;
964 out.writeInt(N);
965 for (int i=0; i<N; i++) {
966 out.writeLong(mStepDurations[i]);
967 }
968 }
969 }
970
Dianne Hackborn88e98df2015-03-23 13:29:14 -0700971 public static final class PackageChange {
972 public String mPackageName;
973 public boolean mUpdate;
974 public int mVersionCode;
975 }
976
Dianne Hackbornd4a8af72015-03-03 10:06:15 -0800977 public static final class DailyItem {
978 public long mStartTime;
979 public long mEndTime;
980 public LevelStepTracker mDischargeSteps;
981 public LevelStepTracker mChargeSteps;
Dianne Hackborn88e98df2015-03-23 13:29:14 -0700982 public ArrayList<PackageChange> mPackageChanges;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -0800983 }
984
985 public abstract DailyItem getDailyItemLocked(int daysAgo);
986
987 public abstract long getCurrentDailyStartTime();
988
989 public abstract long getNextMinDailyDeadline();
990
991 public abstract long getNextMaxDailyDeadline();
992
Dianne Hackborn71fc13e2014-02-03 10:50:53 -0800993 public final static class HistoryTag {
994 public String string;
995 public int uid;
996
997 public int poolIdx;
998
999 public void setTo(HistoryTag o) {
1000 string = o.string;
1001 uid = o.uid;
1002 poolIdx = o.poolIdx;
1003 }
1004
1005 public void setTo(String _string, int _uid) {
1006 string = _string;
1007 uid = _uid;
1008 poolIdx = -1;
1009 }
1010
1011 public void writeToParcel(Parcel dest, int flags) {
1012 dest.writeString(string);
1013 dest.writeInt(uid);
1014 }
1015
1016 public void readFromParcel(Parcel src) {
1017 string = src.readString();
1018 uid = src.readInt();
1019 poolIdx = -1;
1020 }
1021
1022 @Override
1023 public boolean equals(Object o) {
1024 if (this == o) return true;
1025 if (o == null || getClass() != o.getClass()) return false;
1026
1027 HistoryTag that = (HistoryTag) o;
1028
1029 if (uid != that.uid) return false;
1030 if (!string.equals(that.string)) return false;
1031
1032 return true;
1033 }
1034
1035 @Override
1036 public int hashCode() {
1037 int result = string.hashCode();
1038 result = 31 * result + uid;
1039 return result;
1040 }
1041 }
1042
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08001043 /**
1044 * Optional detailed information that can go into a history step. This is typically
1045 * generated each time the battery level changes.
1046 */
1047 public final static class HistoryStepDetails {
1048 // Time (in 1/100 second) spent in user space and the kernel since the last step.
1049 public int userTime;
1050 public int systemTime;
1051
1052 // Top three apps using CPU in the last step, with times in 1/100 second.
1053 public int appCpuUid1;
1054 public int appCpuUTime1;
1055 public int appCpuSTime1;
1056 public int appCpuUid2;
1057 public int appCpuUTime2;
1058 public int appCpuSTime2;
1059 public int appCpuUid3;
1060 public int appCpuUTime3;
1061 public int appCpuSTime3;
1062
1063 // Information from /proc/stat
1064 public int statUserTime;
1065 public int statSystemTime;
1066 public int statIOWaitTime;
1067 public int statIrqTime;
1068 public int statSoftIrqTime;
1069 public int statIdlTime;
1070
1071 public HistoryStepDetails() {
1072 clear();
1073 }
1074
1075 public void clear() {
1076 userTime = systemTime = 0;
1077 appCpuUid1 = appCpuUid2 = appCpuUid3 = -1;
1078 appCpuUTime1 = appCpuSTime1 = appCpuUTime2 = appCpuSTime2
1079 = appCpuUTime3 = appCpuSTime3 = 0;
1080 }
1081
1082 public void writeToParcel(Parcel out) {
1083 out.writeInt(userTime);
1084 out.writeInt(systemTime);
1085 out.writeInt(appCpuUid1);
1086 out.writeInt(appCpuUTime1);
1087 out.writeInt(appCpuSTime1);
1088 out.writeInt(appCpuUid2);
1089 out.writeInt(appCpuUTime2);
1090 out.writeInt(appCpuSTime2);
1091 out.writeInt(appCpuUid3);
1092 out.writeInt(appCpuUTime3);
1093 out.writeInt(appCpuSTime3);
1094 out.writeInt(statUserTime);
1095 out.writeInt(statSystemTime);
1096 out.writeInt(statIOWaitTime);
1097 out.writeInt(statIrqTime);
1098 out.writeInt(statSoftIrqTime);
1099 out.writeInt(statIdlTime);
1100 }
1101
1102 public void readFromParcel(Parcel in) {
1103 userTime = in.readInt();
1104 systemTime = in.readInt();
1105 appCpuUid1 = in.readInt();
1106 appCpuUTime1 = in.readInt();
1107 appCpuSTime1 = in.readInt();
1108 appCpuUid2 = in.readInt();
1109 appCpuUTime2 = in.readInt();
1110 appCpuSTime2 = in.readInt();
1111 appCpuUid3 = in.readInt();
1112 appCpuUTime3 = in.readInt();
1113 appCpuSTime3 = in.readInt();
1114 statUserTime = in.readInt();
1115 statSystemTime = in.readInt();
1116 statIOWaitTime = in.readInt();
1117 statIrqTime = in.readInt();
1118 statSoftIrqTime = in.readInt();
1119 statIdlTime = in.readInt();
1120 }
1121 }
1122
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001123 public final static class HistoryItem implements Parcelable {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001124 public HistoryItem next;
Dianne Hackborn9a755432014-05-15 17:05:22 -07001125
1126 // The time of this event in milliseconds, as per SystemClock.elapsedRealtime().
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001127 public long time;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001128
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001129 public static final byte CMD_UPDATE = 0; // These can be written as deltas
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001130 public static final byte CMD_NULL = -1;
1131 public static final byte CMD_START = 4;
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001132 public static final byte CMD_CURRENT_TIME = 5;
1133 public static final byte CMD_OVERFLOW = 6;
Dianne Hackborn37de0982014-05-09 09:32:18 -07001134 public static final byte CMD_RESET = 7;
Dianne Hackborn29cd7f12015-01-08 10:37:05 -08001135 public static final byte CMD_SHUTDOWN = 8;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001136
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001137 public byte cmd = CMD_NULL;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001138
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001139 /**
1140 * Return whether the command code is a delta data update.
1141 */
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001142 public boolean isDeltaData() {
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001143 return cmd == CMD_UPDATE;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001144 }
1145
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001146 public byte batteryLevel;
1147 public byte batteryStatus;
1148 public byte batteryHealth;
1149 public byte batteryPlugType;
1150
Sungmin Choic7e9e8b2013-01-16 12:57:36 +09001151 public short batteryTemperature;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001152 public char batteryVoltage;
1153
Dianne Hackborn3bee5af82010-07-23 00:22:04 -07001154 // Constants from SCREEN_BRIGHTNESS_*
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001155 public static final int STATE_BRIGHTNESS_SHIFT = 0;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001156 public static final int STATE_BRIGHTNESS_MASK = 0x7;
Dianne Hackborn3bee5af82010-07-23 00:22:04 -07001157 // Constants from SIGNAL_STRENGTH_*
Dianne Hackborn3251b902014-06-20 14:40:53 -07001158 public static final int STATE_PHONE_SIGNAL_STRENGTH_SHIFT = 3;
1159 public static final int STATE_PHONE_SIGNAL_STRENGTH_MASK = 0x7 << STATE_PHONE_SIGNAL_STRENGTH_SHIFT;
Dianne Hackborn3bee5af82010-07-23 00:22:04 -07001160 // Constants from ServiceState.STATE_*
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001161 public static final int STATE_PHONE_STATE_SHIFT = 6;
1162 public static final int STATE_PHONE_STATE_MASK = 0x7 << STATE_PHONE_STATE_SHIFT;
Dianne Hackborn3bee5af82010-07-23 00:22:04 -07001163 // Constants from DATA_CONNECTION_*
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001164 public static final int STATE_DATA_CONNECTION_SHIFT = 9;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001165 public static final int STATE_DATA_CONNECTION_MASK = 0x1f << STATE_DATA_CONNECTION_SHIFT;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001166
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001167 // These states always appear directly in the first int token
1168 // of a delta change; they should be ones that change relatively
1169 // frequently.
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001170 public static final int STATE_CPU_RUNNING_FLAG = 1<<31;
1171 public static final int STATE_WAKE_LOCK_FLAG = 1<<30;
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001172 public static final int STATE_GPS_ON_FLAG = 1<<29;
1173 public static final int STATE_WIFI_FULL_LOCK_FLAG = 1<<28;
Dianne Hackborne13c4c02014-02-11 17:18:35 -08001174 public static final int STATE_WIFI_SCAN_FLAG = 1<<27;
Dianne Hackborn0c820db2015-04-14 17:47:34 -07001175 public static final int STATE_WIFI_RADIO_ACTIVE_FLAG = 1<<26;
Dianne Hackborne13c4c02014-02-11 17:18:35 -08001176 public static final int STATE_MOBILE_RADIO_ACTIVE_FLAG = 1<<25;
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001177 // These are on the lower bits used for the command; if they change
1178 // we need to write another int of data.
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001179 public static final int STATE_SENSOR_ON_FLAG = 1<<23;
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001180 public static final int STATE_AUDIO_ON_FLAG = 1<<22;
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001181 public static final int STATE_PHONE_SCANNING_FLAG = 1<<21;
Dianne Hackborn0c820db2015-04-14 17:47:34 -07001182 public static final int STATE_SCREEN_ON_FLAG = 1<<20; // consider moving to states2
1183 public static final int STATE_BATTERY_PLUGGED_FLAG = 1<<19; // consider moving to states2
1184 // empty slot
1185 // empty slot
1186 public static final int STATE_WIFI_MULTICAST_ON_FLAG = 1<<16;
Dianne Hackborn40c87252014-03-19 16:55:40 -07001187
Dianne Hackbornf47d8f22010-10-08 10:46:55 -07001188 public static final int MOST_INTERESTING_STATES =
Dianne Hackborn0c820db2015-04-14 17:47:34 -07001189 STATE_BATTERY_PLUGGED_FLAG | STATE_SCREEN_ON_FLAG;
1190
1191 public static final int SETTLE_TO_ZERO_STATES = 0xffff0000 & ~MOST_INTERESTING_STATES;
Dianne Hackbornf47d8f22010-10-08 10:46:55 -07001192
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001193 public int states;
1194
Dianne Hackborn3251b902014-06-20 14:40:53 -07001195 // Constants from WIFI_SUPPL_STATE_*
1196 public static final int STATE2_WIFI_SUPPL_STATE_SHIFT = 0;
1197 public static final int STATE2_WIFI_SUPPL_STATE_MASK = 0xf;
1198 // Values for NUM_WIFI_SIGNAL_STRENGTH_BINS
1199 public static final int STATE2_WIFI_SIGNAL_STRENGTH_SHIFT = 4;
1200 public static final int STATE2_WIFI_SIGNAL_STRENGTH_MASK =
1201 0x7 << STATE2_WIFI_SIGNAL_STRENGTH_SHIFT;
1202
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001203 public static final int STATE2_POWER_SAVE_FLAG = 1<<31;
Dianne Hackborn3251b902014-06-20 14:40:53 -07001204 public static final int STATE2_VIDEO_ON_FLAG = 1<<30;
1205 public static final int STATE2_WIFI_RUNNING_FLAG = 1<<29;
1206 public static final int STATE2_WIFI_ON_FLAG = 1<<28;
Dianne Hackbornabc7c492014-06-30 16:57:46 -07001207 public static final int STATE2_FLASHLIGHT_FLAG = 1<<27;
Dianne Hackborn08c47a52015-10-15 12:38:14 -07001208 public static final int STATE2_DEVICE_IDLE_SHIFT = 25;
1209 public static final int STATE2_DEVICE_IDLE_MASK = 0x3 << STATE2_DEVICE_IDLE_SHIFT;
1210 public static final int STATE2_CHARGING_FLAG = 1<<24;
1211 public static final int STATE2_PHONE_IN_CALL_FLAG = 1<<23;
1212 public static final int STATE2_BLUETOOTH_ON_FLAG = 1<<22;
1213 public static final int STATE2_CAMERA_FLAG = 1<<21;
Adam Lesinski9f55cc72016-01-27 20:42:14 -08001214 public static final int STATE2_BLUETOOTH_SCAN_FLAG = 1 << 20;
Dianne Hackborn3251b902014-06-20 14:40:53 -07001215
1216 public static final int MOST_INTERESTING_STATES2 =
Dianne Hackborn08c47a52015-10-15 12:38:14 -07001217 STATE2_POWER_SAVE_FLAG | STATE2_WIFI_ON_FLAG | STATE2_DEVICE_IDLE_MASK
Dianne Hackborn0c820db2015-04-14 17:47:34 -07001218 | STATE2_CHARGING_FLAG | STATE2_PHONE_IN_CALL_FLAG | STATE2_BLUETOOTH_ON_FLAG;
1219
1220 public static final int SETTLE_TO_ZERO_STATES2 = 0xffff0000 & ~MOST_INTERESTING_STATES2;
Dianne Hackborn3251b902014-06-20 14:40:53 -07001221
Dianne Hackborn40c87252014-03-19 16:55:40 -07001222 public int states2;
1223
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001224 // The wake lock that was acquired at this point.
1225 public HistoryTag wakelockTag;
1226
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001227 // Kernel wakeup reason at this point.
1228 public HistoryTag wakeReasonTag;
1229
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08001230 // Non-null when there is more detailed information at this step.
1231 public HistoryStepDetails stepDetails;
1232
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08001233 public static final int EVENT_FLAG_START = 0x8000;
1234 public static final int EVENT_FLAG_FINISH = 0x4000;
1235
1236 // No event in this item.
1237 public static final int EVENT_NONE = 0x0000;
1238 // Event is about a process that is running.
1239 public static final int EVENT_PROC = 0x0001;
1240 // Event is about an application package that is in the foreground.
1241 public static final int EVENT_FOREGROUND = 0x0002;
1242 // Event is about an application package that is at the top of the screen.
1243 public static final int EVENT_TOP = 0x0003;
Dianne Hackbornfdb19562014-07-11 16:03:36 -07001244 // Event is about active sync operations.
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -08001245 public static final int EVENT_SYNC = 0x0004;
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001246 // Events for all additional wake locks aquired/release within a wake block.
1247 // These are not generated by default.
1248 public static final int EVENT_WAKE_LOCK = 0x0005;
Dianne Hackbornfdb19562014-07-11 16:03:36 -07001249 // Event is about an application executing a scheduled job.
1250 public static final int EVENT_JOB = 0x0006;
1251 // Events for users running.
1252 public static final int EVENT_USER_RUNNING = 0x0007;
1253 // Events for foreground user.
1254 public static final int EVENT_USER_FOREGROUND = 0x0008;
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001255 // Event for connectivity changed.
Dianne Hackborn1e01d162014-12-04 17:46:42 -08001256 public static final int EVENT_CONNECTIVITY_CHANGED = 0x0009;
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001257 // Event for becoming active taking us out of idle mode.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001258 public static final int EVENT_ACTIVE = 0x000a;
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001259 // Event for a package being installed.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001260 public static final int EVENT_PACKAGE_INSTALLED = 0x000b;
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001261 // Event for a package being uninstalled.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001262 public static final int EVENT_PACKAGE_UNINSTALLED = 0x000c;
Dianne Hackborn1e383822015-04-10 14:02:33 -07001263 // Event for a package being uninstalled.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001264 public static final int EVENT_ALARM = 0x000d;
Dianne Hackborn0c820db2015-04-14 17:47:34 -07001265 // Record that we have decided we need to collect new stats data.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001266 public static final int EVENT_COLLECT_EXTERNAL_STATS = 0x000e;
Amith Yamasani67768492015-06-09 12:23:58 -07001267 // Event for a package becoming inactive due to being unused for a period of time.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001268 public static final int EVENT_PACKAGE_INACTIVE = 0x000f;
Amith Yamasani67768492015-06-09 12:23:58 -07001269 // Event for a package becoming active due to an interaction.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001270 public static final int EVENT_PACKAGE_ACTIVE = 0x0010;
Dianne Hackbornfd854ee2015-07-13 18:00:37 -07001271 // Event for a package being on the temporary whitelist.
1272 public static final int EVENT_TEMP_WHITELIST = 0x0011;
Dianne Hackborn280a64e2015-07-13 14:48:08 -07001273 // Event for the screen waking up.
1274 public static final int EVENT_SCREEN_WAKE_UP = 0x0012;
Amith Yamasani67768492015-06-09 12:23:58 -07001275
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08001276 // Number of event types.
Dianne Hackborn280a64e2015-07-13 14:48:08 -07001277 public static final int EVENT_COUNT = 0x0013;
Dianne Hackborn37de0982014-05-09 09:32:18 -07001278 // Mask to extract out only the type part of the event.
1279 public static final int EVENT_TYPE_MASK = ~(EVENT_FLAG_START|EVENT_FLAG_FINISH);
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08001280
1281 public static final int EVENT_PROC_START = EVENT_PROC | EVENT_FLAG_START;
1282 public static final int EVENT_PROC_FINISH = EVENT_PROC | EVENT_FLAG_FINISH;
1283 public static final int EVENT_FOREGROUND_START = EVENT_FOREGROUND | EVENT_FLAG_START;
1284 public static final int EVENT_FOREGROUND_FINISH = EVENT_FOREGROUND | EVENT_FLAG_FINISH;
1285 public static final int EVENT_TOP_START = EVENT_TOP | EVENT_FLAG_START;
1286 public static final int EVENT_TOP_FINISH = EVENT_TOP | EVENT_FLAG_FINISH;
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -08001287 public static final int EVENT_SYNC_START = EVENT_SYNC | EVENT_FLAG_START;
1288 public static final int EVENT_SYNC_FINISH = EVENT_SYNC | EVENT_FLAG_FINISH;
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001289 public static final int EVENT_WAKE_LOCK_START = EVENT_WAKE_LOCK | EVENT_FLAG_START;
1290 public static final int EVENT_WAKE_LOCK_FINISH = EVENT_WAKE_LOCK | EVENT_FLAG_FINISH;
Dianne Hackbornfdb19562014-07-11 16:03:36 -07001291 public static final int EVENT_JOB_START = EVENT_JOB | EVENT_FLAG_START;
1292 public static final int EVENT_JOB_FINISH = EVENT_JOB | EVENT_FLAG_FINISH;
1293 public static final int EVENT_USER_RUNNING_START = EVENT_USER_RUNNING | EVENT_FLAG_START;
1294 public static final int EVENT_USER_RUNNING_FINISH = EVENT_USER_RUNNING | EVENT_FLAG_FINISH;
1295 public static final int EVENT_USER_FOREGROUND_START =
1296 EVENT_USER_FOREGROUND | EVENT_FLAG_START;
1297 public static final int EVENT_USER_FOREGROUND_FINISH =
1298 EVENT_USER_FOREGROUND | EVENT_FLAG_FINISH;
Dianne Hackborn1e383822015-04-10 14:02:33 -07001299 public static final int EVENT_ALARM_START = EVENT_ALARM | EVENT_FLAG_START;
1300 public static final int EVENT_ALARM_FINISH = EVENT_ALARM | EVENT_FLAG_FINISH;
Dianne Hackbornfd854ee2015-07-13 18:00:37 -07001301 public static final int EVENT_TEMP_WHITELIST_START =
1302 EVENT_TEMP_WHITELIST | EVENT_FLAG_START;
1303 public static final int EVENT_TEMP_WHITELIST_FINISH =
1304 EVENT_TEMP_WHITELIST | EVENT_FLAG_FINISH;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001305
1306 // For CMD_EVENT.
1307 public int eventCode;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001308 public HistoryTag eventTag;
1309
Dianne Hackborn9a755432014-05-15 17:05:22 -07001310 // Only set for CMD_CURRENT_TIME or CMD_RESET, as per System.currentTimeMillis().
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001311 public long currentTime;
1312
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001313 // Meta-data when reading.
1314 public int numReadInts;
1315
1316 // Pre-allocated objects.
1317 public final HistoryTag localWakelockTag = new HistoryTag();
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001318 public final HistoryTag localWakeReasonTag = new HistoryTag();
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001319 public final HistoryTag localEventTag = new HistoryTag();
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001320
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001321 public HistoryItem() {
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001322 }
1323
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001324 public HistoryItem(long time, Parcel src) {
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001325 this.time = time;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001326 numReadInts = 2;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001327 readFromParcel(src);
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001328 }
1329
1330 public int describeContents() {
1331 return 0;
1332 }
1333
1334 public void writeToParcel(Parcel dest, int flags) {
1335 dest.writeLong(time);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001336 int bat = (((int)cmd)&0xff)
1337 | ((((int)batteryLevel)<<8)&0xff00)
1338 | ((((int)batteryStatus)<<16)&0xf0000)
1339 | ((((int)batteryHealth)<<20)&0xf00000)
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001340 | ((((int)batteryPlugType)<<24)&0xf000000)
1341 | (wakelockTag != null ? 0x10000000 : 0)
1342 | (wakeReasonTag != null ? 0x20000000 : 0)
1343 | (eventCode != EVENT_NONE ? 0x40000000 : 0);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001344 dest.writeInt(bat);
1345 bat = (((int)batteryTemperature)&0xffff)
1346 | ((((int)batteryVoltage)<<16)&0xffff0000);
1347 dest.writeInt(bat);
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001348 dest.writeInt(states);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001349 dest.writeInt(states2);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001350 if (wakelockTag != null) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001351 wakelockTag.writeToParcel(dest, flags);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001352 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001353 if (wakeReasonTag != null) {
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001354 wakeReasonTag.writeToParcel(dest, flags);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001355 }
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001356 if (eventCode != EVENT_NONE) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001357 dest.writeInt(eventCode);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001358 eventTag.writeToParcel(dest, flags);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001359 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07001360 if (cmd == CMD_CURRENT_TIME || cmd == CMD_RESET) {
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001361 dest.writeLong(currentTime);
1362 }
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001363 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001364
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001365 public void readFromParcel(Parcel src) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001366 int start = src.dataPosition();
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001367 int bat = src.readInt();
1368 cmd = (byte)(bat&0xff);
1369 batteryLevel = (byte)((bat>>8)&0xff);
1370 batteryStatus = (byte)((bat>>16)&0xf);
1371 batteryHealth = (byte)((bat>>20)&0xf);
1372 batteryPlugType = (byte)((bat>>24)&0xf);
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001373 int bat2 = src.readInt();
1374 batteryTemperature = (short)(bat2&0xffff);
1375 batteryVoltage = (char)((bat2>>16)&0xffff);
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001376 states = src.readInt();
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001377 states2 = src.readInt();
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001378 if ((bat&0x10000000) != 0) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001379 wakelockTag = localWakelockTag;
1380 wakelockTag.readFromParcel(src);
1381 } else {
1382 wakelockTag = null;
1383 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001384 if ((bat&0x20000000) != 0) {
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001385 wakeReasonTag = localWakeReasonTag;
1386 wakeReasonTag.readFromParcel(src);
1387 } else {
1388 wakeReasonTag = null;
1389 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001390 if ((bat&0x40000000) != 0) {
1391 eventCode = src.readInt();
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001392 eventTag = localEventTag;
1393 eventTag.readFromParcel(src);
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001394 } else {
1395 eventCode = EVENT_NONE;
1396 eventTag = null;
1397 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07001398 if (cmd == CMD_CURRENT_TIME || cmd == CMD_RESET) {
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001399 currentTime = src.readLong();
1400 } else {
1401 currentTime = 0;
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001402 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001403 numReadInts += (src.dataPosition()-start)/4;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001404 }
1405
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001406 public void clear() {
1407 time = 0;
1408 cmd = CMD_NULL;
1409 batteryLevel = 0;
1410 batteryStatus = 0;
1411 batteryHealth = 0;
1412 batteryPlugType = 0;
1413 batteryTemperature = 0;
1414 batteryVoltage = 0;
1415 states = 0;
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001416 states2 = 0;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001417 wakelockTag = null;
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001418 wakeReasonTag = null;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001419 eventCode = EVENT_NONE;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001420 eventTag = null;
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001421 }
1422
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001423 public void setTo(HistoryItem o) {
1424 time = o.time;
1425 cmd = o.cmd;
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001426 setToCommon(o);
1427 }
1428
1429 public void setTo(long time, byte cmd, HistoryItem o) {
1430 this.time = time;
1431 this.cmd = cmd;
1432 setToCommon(o);
1433 }
1434
1435 private void setToCommon(HistoryItem o) {
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001436 batteryLevel = o.batteryLevel;
1437 batteryStatus = o.batteryStatus;
1438 batteryHealth = o.batteryHealth;
1439 batteryPlugType = o.batteryPlugType;
1440 batteryTemperature = o.batteryTemperature;
1441 batteryVoltage = o.batteryVoltage;
1442 states = o.states;
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001443 states2 = o.states2;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001444 if (o.wakelockTag != null) {
1445 wakelockTag = localWakelockTag;
1446 wakelockTag.setTo(o.wakelockTag);
1447 } else {
1448 wakelockTag = null;
1449 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001450 if (o.wakeReasonTag != null) {
1451 wakeReasonTag = localWakeReasonTag;
1452 wakeReasonTag.setTo(o.wakeReasonTag);
1453 } else {
1454 wakeReasonTag = null;
1455 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001456 eventCode = o.eventCode;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001457 if (o.eventTag != null) {
1458 eventTag = localEventTag;
1459 eventTag.setTo(o.eventTag);
1460 } else {
1461 eventTag = null;
1462 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001463 currentTime = o.currentTime;
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001464 }
1465
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001466 public boolean sameNonEvent(HistoryItem o) {
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07001467 return batteryLevel == o.batteryLevel
1468 && batteryStatus == o.batteryStatus
1469 && batteryHealth == o.batteryHealth
1470 && batteryPlugType == o.batteryPlugType
1471 && batteryTemperature == o.batteryTemperature
1472 && batteryVoltage == o.batteryVoltage
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001473 && states == o.states
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001474 && states2 == o.states2
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001475 && currentTime == o.currentTime;
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07001476 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001477
1478 public boolean same(HistoryItem o) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001479 if (!sameNonEvent(o) || eventCode != o.eventCode) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001480 return false;
1481 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001482 if (wakelockTag != o.wakelockTag) {
1483 if (wakelockTag == null || o.wakelockTag == null) {
1484 return false;
1485 }
1486 if (!wakelockTag.equals(o.wakelockTag)) {
1487 return false;
1488 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001489 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001490 if (wakeReasonTag != o.wakeReasonTag) {
1491 if (wakeReasonTag == null || o.wakeReasonTag == null) {
1492 return false;
1493 }
1494 if (!wakeReasonTag.equals(o.wakeReasonTag)) {
1495 return false;
1496 }
1497 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001498 if (eventTag != o.eventTag) {
1499 if (eventTag == null || o.eventTag == null) {
1500 return false;
1501 }
1502 if (!eventTag.equals(o.eventTag)) {
1503 return false;
1504 }
1505 }
1506 return true;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001507 }
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001508 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07001509
1510 public final static class HistoryEventTracker {
1511 private final HashMap<String, SparseIntArray>[] mActiveEvents
1512 = (HashMap<String, SparseIntArray>[]) new HashMap[HistoryItem.EVENT_COUNT];
1513
1514 public boolean updateState(int code, String name, int uid, int poolIdx) {
1515 if ((code&HistoryItem.EVENT_FLAG_START) != 0) {
1516 int idx = code&HistoryItem.EVENT_TYPE_MASK;
1517 HashMap<String, SparseIntArray> active = mActiveEvents[idx];
1518 if (active == null) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07001519 active = new HashMap<>();
Dianne Hackborn37de0982014-05-09 09:32:18 -07001520 mActiveEvents[idx] = active;
1521 }
1522 SparseIntArray uids = active.get(name);
1523 if (uids == null) {
1524 uids = new SparseIntArray();
1525 active.put(name, uids);
1526 }
1527 if (uids.indexOfKey(uid) >= 0) {
1528 // Already set, nothing to do!
1529 return false;
1530 }
1531 uids.put(uid, poolIdx);
1532 } else if ((code&HistoryItem.EVENT_FLAG_FINISH) != 0) {
1533 int idx = code&HistoryItem.EVENT_TYPE_MASK;
1534 HashMap<String, SparseIntArray> active = mActiveEvents[idx];
1535 if (active == null) {
1536 // not currently active, nothing to do.
1537 return false;
1538 }
1539 SparseIntArray uids = active.get(name);
1540 if (uids == null) {
1541 // not currently active, nothing to do.
1542 return false;
1543 }
1544 idx = uids.indexOfKey(uid);
1545 if (idx < 0) {
1546 // not currently active, nothing to do.
1547 return false;
1548 }
1549 uids.removeAt(idx);
1550 if (uids.size() <= 0) {
1551 active.remove(name);
1552 }
1553 }
1554 return true;
1555 }
1556
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001557 public void removeEvents(int code) {
1558 int idx = code&HistoryItem.EVENT_TYPE_MASK;
1559 mActiveEvents[idx] = null;
1560 }
1561
Dianne Hackborn37de0982014-05-09 09:32:18 -07001562 public HashMap<String, SparseIntArray> getStateForEvent(int code) {
1563 return mActiveEvents[code];
1564 }
1565 }
1566
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001567 public static final class BitDescription {
1568 public final int mask;
1569 public final int shift;
1570 public final String name;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001571 public final String shortName;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001572 public final String[] values;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001573 public final String[] shortValues;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001574
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001575 public BitDescription(int mask, String name, String shortName) {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001576 this.mask = mask;
1577 this.shift = -1;
1578 this.name = name;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001579 this.shortName = shortName;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001580 this.values = null;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001581 this.shortValues = null;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001582 }
1583
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001584 public BitDescription(int mask, int shift, String name, String shortName,
1585 String[] values, String[] shortValues) {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001586 this.mask = mask;
1587 this.shift = shift;
1588 this.name = name;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001589 this.shortName = shortName;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001590 this.values = values;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001591 this.shortValues = shortValues;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001592 }
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001593 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07001594
Dianne Hackbornfc064132014-06-02 12:42:12 -07001595 /**
1596 * Don't allow any more batching in to the current history event. This
1597 * is called when printing partial histories, so to ensure that the next
1598 * history event will go in to a new batch after what was printed in the
1599 * last partial history.
1600 */
1601 public abstract void commitCurrentHistoryBatchLocked();
1602
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001603 public abstract int getHistoryTotalSize();
1604
1605 public abstract int getHistoryUsedSize();
1606
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001607 public abstract boolean startIteratingHistoryLocked();
1608
Dianne Hackborn099bc622014-01-22 13:39:16 -08001609 public abstract int getHistoryStringPoolSize();
1610
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001611 public abstract int getHistoryStringPoolBytes();
1612
1613 public abstract String getHistoryTagPoolString(int index);
1614
1615 public abstract int getHistoryTagPoolUid(int index);
Dianne Hackborn099bc622014-01-22 13:39:16 -08001616
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001617 public abstract boolean getNextHistoryLocked(HistoryItem out);
1618
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001619 public abstract void finishIteratingHistoryLocked();
1620
1621 public abstract boolean startIteratingOldHistoryLocked();
1622
1623 public abstract boolean getNextOldHistoryLocked(HistoryItem out);
1624
1625 public abstract void finishIteratingOldHistoryLocked();
1626
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001627 /**
Dianne Hackbornb5e31652010-09-07 12:13:55 -07001628 * Return the base time offset for the battery history.
1629 */
1630 public abstract long getHistoryBaseTime();
1631
1632 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001633 * Returns the number of times the device has been started.
1634 */
1635 public abstract int getStartCount();
1636
1637 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07001638 * 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 -08001639 * running on battery.
1640 *
1641 * {@hide}
1642 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001643 public abstract long getScreenOnTime(long elapsedRealtimeUs, int which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001644
Dianne Hackborn77b987f2014-02-26 16:20:52 -08001645 /**
1646 * Returns the number of times the screen was turned on.
1647 *
1648 * {@hide}
1649 */
1650 public abstract int getScreenOnCount(int which);
1651
Jeff Browne95c3cd2014-05-02 16:59:26 -07001652 public abstract long getInteractiveTime(long elapsedRealtimeUs, int which);
1653
Dianne Hackborn617f8772009-03-31 15:04:46 -07001654 public static final int SCREEN_BRIGHTNESS_DARK = 0;
1655 public static final int SCREEN_BRIGHTNESS_DIM = 1;
1656 public static final int SCREEN_BRIGHTNESS_MEDIUM = 2;
1657 public static final int SCREEN_BRIGHTNESS_LIGHT = 3;
1658 public static final int SCREEN_BRIGHTNESS_BRIGHT = 4;
1659
1660 static final String[] SCREEN_BRIGHTNESS_NAMES = {
1661 "dark", "dim", "medium", "light", "bright"
1662 };
1663
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001664 static final String[] SCREEN_BRIGHTNESS_SHORT_NAMES = {
1665 "0", "1", "2", "3", "4"
1666 };
1667
Dianne Hackborn617f8772009-03-31 15:04:46 -07001668 public static final int NUM_SCREEN_BRIGHTNESS_BINS = 5;
Dianne Hackborn3251b902014-06-20 14:40:53 -07001669
Dianne Hackborn617f8772009-03-31 15:04:46 -07001670 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07001671 * Returns the time in microseconds that the screen has been on with
Dianne Hackborn617f8772009-03-31 15:04:46 -07001672 * the given brightness
1673 *
1674 * {@hide}
1675 */
1676 public abstract long getScreenBrightnessTime(int brightnessBin,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001677 long elapsedRealtimeUs, int which);
Dianne Hackborn617f8772009-03-31 15:04:46 -07001678
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001679 /**
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001680 * Returns the time in microseconds that power save mode has been enabled while the device was
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001681 * running on battery.
1682 *
1683 * {@hide}
1684 */
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001685 public abstract long getPowerSaveModeEnabledTime(long elapsedRealtimeUs, int which);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001686
1687 /**
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001688 * Returns the number of times that power save mode was enabled.
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001689 *
1690 * {@hide}
1691 */
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001692 public abstract int getPowerSaveModeEnabledCount(int which);
1693
1694 /**
Dianne Hackborn08c47a52015-10-15 12:38:14 -07001695 * Constant for device idle mode: not active.
1696 */
1697 public static final int DEVICE_IDLE_MODE_OFF = 0;
1698
1699 /**
1700 * Constant for device idle mode: active in lightweight mode.
1701 */
1702 public static final int DEVICE_IDLE_MODE_LIGHT = 1;
1703
1704 /**
1705 * Constant for device idle mode: active in full mode.
1706 */
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07001707 public static final int DEVICE_IDLE_MODE_DEEP = 2;
Dianne Hackborn08c47a52015-10-15 12:38:14 -07001708
1709 /**
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001710 * Returns the time in microseconds that device has been in idle mode while
1711 * running on battery.
1712 *
1713 * {@hide}
1714 */
Dianne Hackborn08c47a52015-10-15 12:38:14 -07001715 public abstract long getDeviceIdleModeTime(int mode, long elapsedRealtimeUs, int which);
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001716
1717 /**
1718 * Returns the number of times that the devie has gone in to idle mode.
1719 *
1720 * {@hide}
1721 */
Dianne Hackborn08c47a52015-10-15 12:38:14 -07001722 public abstract int getDeviceIdleModeCount(int mode, int which);
1723
1724 /**
1725 * Return the longest duration we spent in a particular device idle mode (fully in the
1726 * mode, not in idle maintenance etc).
1727 */
1728 public abstract long getLongestDeviceIdleModeTime(int mode);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001729
1730 /**
Dianne Hackborn88e98df2015-03-23 13:29:14 -07001731 * Returns the time in microseconds that device has been in idling while on
Dianne Hackborn08c47a52015-10-15 12:38:14 -07001732 * battery. This is broader than {@link #getDeviceIdleModeTime} -- it
Dianne Hackborn88e98df2015-03-23 13:29:14 -07001733 * counts all of the time that we consider the device to be idle, whether or not
1734 * it is currently in the actual device idle mode.
1735 *
1736 * {@hide}
1737 */
Dianne Hackborn08c47a52015-10-15 12:38:14 -07001738 public abstract long getDeviceIdlingTime(int mode, long elapsedRealtimeUs, int which);
Dianne Hackborn88e98df2015-03-23 13:29:14 -07001739
1740 /**
1741 * Returns the number of times that the devie has started idling.
1742 *
1743 * {@hide}
1744 */
Dianne Hackborn08c47a52015-10-15 12:38:14 -07001745 public abstract int getDeviceIdlingCount(int mode, int which);
Dianne Hackborn88e98df2015-03-23 13:29:14 -07001746
1747 /**
Dianne Hackborn1e01d162014-12-04 17:46:42 -08001748 * Returns the number of times that connectivity state changed.
1749 *
1750 * {@hide}
1751 */
1752 public abstract int getNumConnectivityChange(int which);
1753
1754 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07001755 * 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 -08001756 * running on battery.
1757 *
1758 * {@hide}
1759 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001760 public abstract long getPhoneOnTime(long elapsedRealtimeUs, int which);
Dianne Hackborn627bba72009-03-24 22:32:56 -07001761
1762 /**
Dianne Hackborn77b987f2014-02-26 16:20:52 -08001763 * Returns the number of times a phone call was activated.
1764 *
1765 * {@hide}
1766 */
1767 public abstract int getPhoneOnCount(int which);
1768
1769 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07001770 * Returns the time in microseconds that the phone has been running with
Dianne Hackborn627bba72009-03-24 22:32:56 -07001771 * the given signal strength.
1772 *
1773 * {@hide}
1774 */
1775 public abstract long getPhoneSignalStrengthTime(int strengthBin,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001776 long elapsedRealtimeUs, int which);
Dianne Hackborn627bba72009-03-24 22:32:56 -07001777
Dianne Hackborn617f8772009-03-31 15:04:46 -07001778 /**
Amith Yamasanif37447b2009-10-08 18:28:01 -07001779 * Returns the time in microseconds that the phone has been trying to
1780 * acquire a signal.
1781 *
1782 * {@hide}
1783 */
1784 public abstract long getPhoneSignalScanningTime(
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001785 long elapsedRealtimeUs, int which);
Amith Yamasanif37447b2009-10-08 18:28:01 -07001786
1787 /**
Dianne Hackborn617f8772009-03-31 15:04:46 -07001788 * Returns the number of times the phone has entered the given signal strength.
1789 *
1790 * {@hide}
1791 */
1792 public abstract int getPhoneSignalStrengthCount(int strengthBin, int which);
1793
Dianne Hackborne13c4c02014-02-11 17:18:35 -08001794 /**
1795 * Returns the time in microseconds that the mobile network has been active
1796 * (in a high power state).
1797 *
1798 * {@hide}
1799 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001800 public abstract long getMobileRadioActiveTime(long elapsedRealtimeUs, int which);
Dianne Hackborne13c4c02014-02-11 17:18:35 -08001801
Dianne Hackbornd45665b2014-02-26 12:35:32 -08001802 /**
1803 * Returns the number of times that the mobile network has transitioned to the
1804 * active state.
1805 *
1806 * {@hide}
1807 */
1808 public abstract int getMobileRadioActiveCount(int which);
1809
1810 /**
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001811 * Returns the time in microseconds that is the difference between the mobile radio
1812 * time we saw based on the elapsed timestamp when going down vs. the given time stamp
1813 * from the radio.
1814 *
1815 * {@hide}
1816 */
1817 public abstract long getMobileRadioActiveAdjustedTime(int which);
1818
1819 /**
Dianne Hackbornd45665b2014-02-26 12:35:32 -08001820 * Returns the time in microseconds that the mobile network has been active
1821 * (in a high power state) but not being able to blame on an app.
1822 *
1823 * {@hide}
1824 */
1825 public abstract long getMobileRadioActiveUnknownTime(int which);
1826
1827 /**
Dianne Hackborn77b987f2014-02-26 16:20:52 -08001828 * Return count of number of times radio was up that could not be blamed on apps.
Dianne Hackbornd45665b2014-02-26 12:35:32 -08001829 *
1830 * {@hide}
1831 */
1832 public abstract int getMobileRadioActiveUnknownCount(int which);
Dianne Hackborne13c4c02014-02-11 17:18:35 -08001833
Dianne Hackborn627bba72009-03-24 22:32:56 -07001834 public static final int DATA_CONNECTION_NONE = 0;
1835 public static final int DATA_CONNECTION_GPRS = 1;
1836 public static final int DATA_CONNECTION_EDGE = 2;
1837 public static final int DATA_CONNECTION_UMTS = 3;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001838 public static final int DATA_CONNECTION_CDMA = 4;
1839 public static final int DATA_CONNECTION_EVDO_0 = 5;
1840 public static final int DATA_CONNECTION_EVDO_A = 6;
1841 public static final int DATA_CONNECTION_1xRTT = 7;
1842 public static final int DATA_CONNECTION_HSDPA = 8;
1843 public static final int DATA_CONNECTION_HSUPA = 9;
1844 public static final int DATA_CONNECTION_HSPA = 10;
1845 public static final int DATA_CONNECTION_IDEN = 11;
1846 public static final int DATA_CONNECTION_EVDO_B = 12;
Robert Greenwalt962a9902010-11-02 11:10:25 -07001847 public static final int DATA_CONNECTION_LTE = 13;
1848 public static final int DATA_CONNECTION_EHRPD = 14;
Patrick Tjinb71703c2013-11-06 09:27:03 -08001849 public static final int DATA_CONNECTION_HSPAP = 15;
1850 public static final int DATA_CONNECTION_OTHER = 16;
Robert Greenwalt962a9902010-11-02 11:10:25 -07001851
Dianne Hackborn627bba72009-03-24 22:32:56 -07001852 static final String[] DATA_CONNECTION_NAMES = {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001853 "none", "gprs", "edge", "umts", "cdma", "evdo_0", "evdo_A",
Robert Greenwalt962a9902010-11-02 11:10:25 -07001854 "1xrtt", "hsdpa", "hsupa", "hspa", "iden", "evdo_b", "lte",
Patrick Tjinb71703c2013-11-06 09:27:03 -08001855 "ehrpd", "hspap", "other"
Dianne Hackborn627bba72009-03-24 22:32:56 -07001856 };
1857
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001858 public static final int NUM_DATA_CONNECTION_TYPES = DATA_CONNECTION_OTHER+1;
Dianne Hackborn627bba72009-03-24 22:32:56 -07001859
1860 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07001861 * Returns the time in microseconds that the phone has been running with
Dianne Hackborn627bba72009-03-24 22:32:56 -07001862 * the given data connection.
1863 *
1864 * {@hide}
1865 */
1866 public abstract long getPhoneDataConnectionTime(int dataType,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001867 long elapsedRealtimeUs, int which);
Dianne Hackborn627bba72009-03-24 22:32:56 -07001868
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001869 /**
Dianne Hackborn617f8772009-03-31 15:04:46 -07001870 * Returns the number of times the phone has entered the given data
1871 * connection type.
1872 *
1873 * {@hide}
1874 */
1875 public abstract int getPhoneDataConnectionCount(int dataType, int which);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001876
Dianne Hackborn3251b902014-06-20 14:40:53 -07001877 public static final int WIFI_SUPPL_STATE_INVALID = 0;
1878 public static final int WIFI_SUPPL_STATE_DISCONNECTED = 1;
1879 public static final int WIFI_SUPPL_STATE_INTERFACE_DISABLED = 2;
1880 public static final int WIFI_SUPPL_STATE_INACTIVE = 3;
1881 public static final int WIFI_SUPPL_STATE_SCANNING = 4;
1882 public static final int WIFI_SUPPL_STATE_AUTHENTICATING = 5;
1883 public static final int WIFI_SUPPL_STATE_ASSOCIATING = 6;
1884 public static final int WIFI_SUPPL_STATE_ASSOCIATED = 7;
1885 public static final int WIFI_SUPPL_STATE_FOUR_WAY_HANDSHAKE = 8;
1886 public static final int WIFI_SUPPL_STATE_GROUP_HANDSHAKE = 9;
1887 public static final int WIFI_SUPPL_STATE_COMPLETED = 10;
1888 public static final int WIFI_SUPPL_STATE_DORMANT = 11;
1889 public static final int WIFI_SUPPL_STATE_UNINITIALIZED = 12;
1890
1891 public static final int NUM_WIFI_SUPPL_STATES = WIFI_SUPPL_STATE_UNINITIALIZED+1;
1892
1893 static final String[] WIFI_SUPPL_STATE_NAMES = {
1894 "invalid", "disconn", "disabled", "inactive", "scanning",
1895 "authenticating", "associating", "associated", "4-way-handshake",
1896 "group-handshake", "completed", "dormant", "uninit"
1897 };
1898
1899 static final String[] WIFI_SUPPL_STATE_SHORT_NAMES = {
1900 "inv", "dsc", "dis", "inact", "scan",
1901 "auth", "ascing", "asced", "4-way",
1902 "group", "compl", "dorm", "uninit"
1903 };
1904
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001905 public static final BitDescription[] HISTORY_STATE_DESCRIPTIONS
1906 = new BitDescription[] {
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001907 new BitDescription(HistoryItem.STATE_CPU_RUNNING_FLAG, "running", "r"),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001908 new BitDescription(HistoryItem.STATE_WAKE_LOCK_FLAG, "wake_lock", "w"),
1909 new BitDescription(HistoryItem.STATE_SENSOR_ON_FLAG, "sensor", "s"),
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001910 new BitDescription(HistoryItem.STATE_GPS_ON_FLAG, "gps", "g"),
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001911 new BitDescription(HistoryItem.STATE_WIFI_FULL_LOCK_FLAG, "wifi_full_lock", "Wl"),
1912 new BitDescription(HistoryItem.STATE_WIFI_SCAN_FLAG, "wifi_scan", "Ws"),
1913 new BitDescription(HistoryItem.STATE_WIFI_MULTICAST_ON_FLAG, "wifi_multicast", "Wm"),
Dianne Hackborn0c820db2015-04-14 17:47:34 -07001914 new BitDescription(HistoryItem.STATE_WIFI_RADIO_ACTIVE_FLAG, "wifi_radio", "Wr"),
Dianne Hackborne13c4c02014-02-11 17:18:35 -08001915 new BitDescription(HistoryItem.STATE_MOBILE_RADIO_ACTIVE_FLAG, "mobile_radio", "Pr"),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001916 new BitDescription(HistoryItem.STATE_PHONE_SCANNING_FLAG, "phone_scanning", "Psc"),
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001917 new BitDescription(HistoryItem.STATE_AUDIO_ON_FLAG, "audio", "a"),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001918 new BitDescription(HistoryItem.STATE_SCREEN_ON_FLAG, "screen", "S"),
1919 new BitDescription(HistoryItem.STATE_BATTERY_PLUGGED_FLAG, "plugged", "BP"),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001920 new BitDescription(HistoryItem.STATE_DATA_CONNECTION_MASK,
1921 HistoryItem.STATE_DATA_CONNECTION_SHIFT, "data_conn", "Pcn",
1922 DATA_CONNECTION_NAMES, DATA_CONNECTION_NAMES),
1923 new BitDescription(HistoryItem.STATE_PHONE_STATE_MASK,
1924 HistoryItem.STATE_PHONE_STATE_SHIFT, "phone_state", "Pst",
1925 new String[] {"in", "out", "emergency", "off"},
1926 new String[] {"in", "out", "em", "off"}),
Dianne Hackborn3251b902014-06-20 14:40:53 -07001927 new BitDescription(HistoryItem.STATE_PHONE_SIGNAL_STRENGTH_MASK,
1928 HistoryItem.STATE_PHONE_SIGNAL_STRENGTH_SHIFT, "phone_signal_strength", "Pss",
1929 SignalStrength.SIGNAL_STRENGTH_NAMES,
1930 new String[] { "0", "1", "2", "3", "4" }),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001931 new BitDescription(HistoryItem.STATE_BRIGHTNESS_MASK,
1932 HistoryItem.STATE_BRIGHTNESS_SHIFT, "brightness", "Sb",
1933 SCREEN_BRIGHTNESS_NAMES, SCREEN_BRIGHTNESS_SHORT_NAMES),
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001934 };
Dianne Hackborn617f8772009-03-31 15:04:46 -07001935
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001936 public static final BitDescription[] HISTORY_STATE2_DESCRIPTIONS
1937 = new BitDescription[] {
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001938 new BitDescription(HistoryItem.STATE2_POWER_SAVE_FLAG, "power_save", "ps"),
Dianne Hackborn3251b902014-06-20 14:40:53 -07001939 new BitDescription(HistoryItem.STATE2_VIDEO_ON_FLAG, "video", "v"),
Dianne Hackborn0c820db2015-04-14 17:47:34 -07001940 new BitDescription(HistoryItem.STATE2_WIFI_RUNNING_FLAG, "wifi_running", "Ww"),
Dianne Hackborn3251b902014-06-20 14:40:53 -07001941 new BitDescription(HistoryItem.STATE2_WIFI_ON_FLAG, "wifi", "W"),
Dianne Hackbornabc7c492014-06-30 16:57:46 -07001942 new BitDescription(HistoryItem.STATE2_FLASHLIGHT_FLAG, "flashlight", "fl"),
Dianne Hackborn08c47a52015-10-15 12:38:14 -07001943 new BitDescription(HistoryItem.STATE2_DEVICE_IDLE_MASK,
1944 HistoryItem.STATE2_DEVICE_IDLE_SHIFT, "device_idle", "di",
1945 new String[] { "off", "light", "full", "???" },
1946 new String[] { "off", "light", "full", "???" }),
Dianne Hackborn0c820db2015-04-14 17:47:34 -07001947 new BitDescription(HistoryItem.STATE2_CHARGING_FLAG, "charging", "ch"),
1948 new BitDescription(HistoryItem.STATE2_PHONE_IN_CALL_FLAG, "phone_in_call", "Pcl"),
1949 new BitDescription(HistoryItem.STATE2_BLUETOOTH_ON_FLAG, "bluetooth", "b"),
Dianne Hackborn3251b902014-06-20 14:40:53 -07001950 new BitDescription(HistoryItem.STATE2_WIFI_SIGNAL_STRENGTH_MASK,
1951 HistoryItem.STATE2_WIFI_SIGNAL_STRENGTH_SHIFT, "wifi_signal_strength", "Wss",
1952 new String[] { "0", "1", "2", "3", "4" },
1953 new String[] { "0", "1", "2", "3", "4" }),
1954 new BitDescription(HistoryItem.STATE2_WIFI_SUPPL_STATE_MASK,
1955 HistoryItem.STATE2_WIFI_SUPPL_STATE_SHIFT, "wifi_suppl", "Wsp",
1956 WIFI_SUPPL_STATE_NAMES, WIFI_SUPPL_STATE_SHORT_NAMES),
Ruben Brunk6d2c3632015-05-26 17:32:16 -07001957 new BitDescription(HistoryItem.STATE2_CAMERA_FLAG, "camera", "ca"),
Adam Lesinski9f55cc72016-01-27 20:42:14 -08001958 new BitDescription(HistoryItem.STATE2_BLUETOOTH_SCAN_FLAG, "ble_scan", "bles"),
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001959 };
1960
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08001961 public static final String[] HISTORY_EVENT_NAMES = new String[] {
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001962 "null", "proc", "fg", "top", "sync", "wake_lock_in", "job", "user", "userfg", "conn",
Dianne Hackborn280a64e2015-07-13 14:48:08 -07001963 "active", "pkginst", "pkgunin", "alarm", "stats", "inactive", "active", "tmpwhitelist",
1964 "screenwake",
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08001965 };
1966
1967 public static final String[] HISTORY_EVENT_CHECKIN_NAMES = new String[] {
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001968 "Enl", "Epr", "Efg", "Etp", "Esy", "Ewl", "Ejb", "Eur", "Euf", "Ecn",
Dianne Hackborn280a64e2015-07-13 14:48:08 -07001969 "Eac", "Epi", "Epu", "Eal", "Est", "Eai", "Eaa", "Etw",
1970 "Esw",
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08001971 };
1972
Dianne Hackborn617f8772009-03-31 15:04:46 -07001973 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07001974 * Returns the time in microseconds that wifi has been on while the device was
The Android Open Source Project10592532009-03-18 17:39:46 -07001975 * running on battery.
1976 *
1977 * {@hide}
1978 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001979 public abstract long getWifiOnTime(long elapsedRealtimeUs, int which);
Eric Shienbroodd4c5f892009-03-24 18:13:20 -07001980
1981 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07001982 * Returns the time in microseconds that wifi has been on and the driver has
Eric Shienbroodd4c5f892009-03-24 18:13:20 -07001983 * been in the running state while the device was running on battery.
1984 *
1985 * {@hide}
1986 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001987 public abstract long getGlobalWifiRunningTime(long elapsedRealtimeUs, int which);
Eric Shienbroodd4c5f892009-03-24 18:13:20 -07001988
Dianne Hackbornca1bf212014-02-14 14:18:36 -08001989 public static final int WIFI_STATE_OFF = 0;
1990 public static final int WIFI_STATE_OFF_SCANNING = 1;
1991 public static final int WIFI_STATE_ON_NO_NETWORKS = 2;
1992 public static final int WIFI_STATE_ON_DISCONNECTED = 3;
1993 public static final int WIFI_STATE_ON_CONNECTED_STA = 4;
1994 public static final int WIFI_STATE_ON_CONNECTED_P2P = 5;
1995 public static final int WIFI_STATE_ON_CONNECTED_STA_P2P = 6;
1996 public static final int WIFI_STATE_SOFT_AP = 7;
1997
1998 static final String[] WIFI_STATE_NAMES = {
1999 "off", "scanning", "no_net", "disconn",
2000 "sta", "p2p", "sta_p2p", "soft_ap"
2001 };
2002
2003 public static final int NUM_WIFI_STATES = WIFI_STATE_SOFT_AP+1;
2004
2005 /**
2006 * Returns the time in microseconds that WiFi has been running in the given state.
2007 *
2008 * {@hide}
2009 */
2010 public abstract long getWifiStateTime(int wifiState,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002011 long elapsedRealtimeUs, int which);
Dianne Hackbornca1bf212014-02-14 14:18:36 -08002012
2013 /**
2014 * Returns the number of times that WiFi has entered the given state.
2015 *
2016 * {@hide}
2017 */
2018 public abstract int getWifiStateCount(int wifiState, int which);
2019
The Android Open Source Project10592532009-03-18 17:39:46 -07002020 /**
Dianne Hackborn3251b902014-06-20 14:40:53 -07002021 * Returns the time in microseconds that the wifi supplicant has been
2022 * in a given state.
2023 *
2024 * {@hide}
2025 */
2026 public abstract long getWifiSupplStateTime(int state, long elapsedRealtimeUs, int which);
2027
2028 /**
2029 * Returns the number of times that the wifi supplicant has transitioned
2030 * to a given state.
2031 *
2032 * {@hide}
2033 */
2034 public abstract int getWifiSupplStateCount(int state, int which);
2035
2036 public static final int NUM_WIFI_SIGNAL_STRENGTH_BINS = 5;
2037
2038 /**
2039 * Returns the time in microseconds that WIFI has been running with
2040 * the given signal strength.
2041 *
2042 * {@hide}
2043 */
2044 public abstract long getWifiSignalStrengthTime(int strengthBin,
2045 long elapsedRealtimeUs, int which);
2046
2047 /**
2048 * Returns the number of times WIFI has entered the given signal strength.
2049 *
2050 * {@hide}
2051 */
2052 public abstract int getWifiSignalStrengthCount(int strengthBin, int which);
2053
2054 /**
Dianne Hackbornabc7c492014-06-30 16:57:46 -07002055 * Returns the time in microseconds that the flashlight has been on while the device was
2056 * running on battery.
2057 *
2058 * {@hide}
2059 */
2060 public abstract long getFlashlightOnTime(long elapsedRealtimeUs, int which);
2061
2062 /**
2063 * Returns the number of times that the flashlight has been turned on while the device was
2064 * running on battery.
2065 *
2066 * {@hide}
2067 */
2068 public abstract long getFlashlightOnCount(int which);
2069
Ruben Brunk5b1308f2015-06-03 18:49:27 -07002070 /**
2071 * Returns the time in microseconds that the camera has been on while the device was
2072 * running on battery.
2073 *
2074 * {@hide}
2075 */
2076 public abstract long getCameraOnTime(long elapsedRealtimeUs, int which);
2077
Adam Lesinski9f55cc72016-01-27 20:42:14 -08002078 /**
2079 * Returns the time in microseconds that bluetooth scans were running while the device was
2080 * on battery.
2081 *
2082 * {@hide}
2083 */
2084 public abstract long getBluetoothScanTime(long elapsedRealtimeUs, int which);
Ruben Brunk5b1308f2015-06-03 18:49:27 -07002085
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002086 public static final int NETWORK_MOBILE_RX_DATA = 0;
2087 public static final int NETWORK_MOBILE_TX_DATA = 1;
2088 public static final int NETWORK_WIFI_RX_DATA = 2;
2089 public static final int NETWORK_WIFI_TX_DATA = 3;
Adam Lesinski50e47602015-12-04 17:04:54 -08002090 public static final int NETWORK_BT_RX_DATA = 4;
2091 public static final int NETWORK_BT_TX_DATA = 5;
2092 public static final int NUM_NETWORK_ACTIVITY_TYPES = NETWORK_BT_TX_DATA + 1;
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07002093
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002094 public abstract long getNetworkActivityBytes(int type, int which);
2095 public abstract long getNetworkActivityPackets(int type, int which);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07002096
Adam Lesinskie08af192015-03-25 16:42:59 -07002097 /**
Adam Lesinski17390762015-04-10 13:17:47 -07002098 * Returns true if the BatteryStats object has detailed WiFi power reports.
Adam Lesinski21f76aa2016-01-25 12:27:06 -08002099 * When true, calling {@link #getWifiControllerActivity()} will yield the
Adam Lesinski17390762015-04-10 13:17:47 -07002100 * actual power data.
2101 */
2102 public abstract boolean hasWifiActivityReporting();
2103
2104 /**
Adam Lesinski21f76aa2016-01-25 12:27:06 -08002105 * Returns a {@link ControllerActivityCounter} which is an aggregate of the times spent
2106 * in various radio controller states, such as transmit, receive, and idle.
2107 * @return non-null {@link ControllerActivityCounter}
Adam Lesinskie08af192015-03-25 16:42:59 -07002108 */
Adam Lesinski21f76aa2016-01-25 12:27:06 -08002109 public abstract ControllerActivityCounter getWifiControllerActivity();
2110
2111 /**
2112 * Returns true if the BatteryStats object has detailed bluetooth power reports.
2113 * When true, calling {@link #getBluetoothControllerActivity()} will yield the
2114 * actual power data.
2115 */
2116 public abstract boolean hasBluetoothActivityReporting();
2117
2118 /**
2119 * Returns a {@link ControllerActivityCounter} which is an aggregate of the times spent
2120 * in various radio controller states, such as transmit, receive, and idle.
2121 * @return non-null {@link ControllerActivityCounter}
2122 */
2123 public abstract ControllerActivityCounter getBluetoothControllerActivity();
2124
2125 /**
2126 * Returns true if the BatteryStats object has detailed modem power reports.
2127 * When true, calling {@link #getModemControllerActivity()} will yield the
2128 * actual power data.
2129 */
2130 public abstract boolean hasModemActivityReporting();
2131
2132 /**
2133 * Returns a {@link ControllerActivityCounter} which is an aggregate of the times spent
2134 * in various radio controller states, such as transmit, receive, and idle.
2135 * @return non-null {@link ControllerActivityCounter}
2136 */
2137 public abstract ControllerActivityCounter getModemControllerActivity();
Adam Lesinski33dac552015-03-09 15:24:48 -07002138
The Android Open Source Project10592532009-03-18 17:39:46 -07002139 /**
Dianne Hackborn5f4a5f92014-01-24 16:59:34 -08002140 * Return the wall clock time when battery stats data collection started.
2141 */
2142 public abstract long getStartClockTime();
2143
2144 /**
Dianne Hackborncd0e3352014-08-07 17:08:09 -07002145 * Return platform version tag that we were running in when the battery stats started.
2146 */
2147 public abstract String getStartPlatformVersion();
2148
2149 /**
2150 * Return platform version tag that we were running in when the battery stats ended.
2151 */
2152 public abstract String getEndPlatformVersion();
2153
2154 /**
2155 * Return the internal version code of the parcelled format.
2156 */
2157 public abstract int getParcelVersion();
2158
2159 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002160 * Return whether we are currently running on battery.
2161 */
2162 public abstract boolean getIsOnBattery();
2163
2164 /**
2165 * Returns a SparseArray containing the statistics for each uid.
2166 */
2167 public abstract SparseArray<? extends Uid> getUidStats();
2168
2169 /**
2170 * Returns the current battery uptime in microseconds.
2171 *
2172 * @param curTime the amount of elapsed realtime in microseconds.
2173 */
2174 public abstract long getBatteryUptime(long curTime);
2175
2176 /**
2177 * Returns the current battery realtime in microseconds.
2178 *
2179 * @param curTime the amount of elapsed realtime in microseconds.
2180 */
2181 public abstract long getBatteryRealtime(long curTime);
The Android Open Source Project10592532009-03-18 17:39:46 -07002182
2183 /**
Evan Millar633a1742009-04-02 16:36:33 -07002184 * Returns the battery percentage level at the last time the device was unplugged from power, or
2185 * the last time it booted on battery power.
The Android Open Source Project10592532009-03-18 17:39:46 -07002186 */
Evan Millar633a1742009-04-02 16:36:33 -07002187 public abstract int getDischargeStartLevel();
The Android Open Source Project10592532009-03-18 17:39:46 -07002188
2189 /**
Evan Millar633a1742009-04-02 16:36:33 -07002190 * Returns the current battery percentage level if we are in a discharge cycle, otherwise
2191 * returns the level at the last plug event.
The Android Open Source Project10592532009-03-18 17:39:46 -07002192 */
Evan Millar633a1742009-04-02 16:36:33 -07002193 public abstract int getDischargeCurrentLevel();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002194
2195 /**
Dianne Hackborn3bee5af82010-07-23 00:22:04 -07002196 * Get the amount the battery has discharged since the stats were
2197 * last reset after charging, as a lower-end approximation.
2198 */
2199 public abstract int getLowDischargeAmountSinceCharge();
2200
2201 /**
2202 * Get the amount the battery has discharged since the stats were
2203 * last reset after charging, as an upper-end approximation.
2204 */
2205 public abstract int getHighDischargeAmountSinceCharge();
2206
2207 /**
Dianne Hackborn40c87252014-03-19 16:55:40 -07002208 * Retrieve the discharge amount over the selected discharge period <var>which</var>.
2209 */
2210 public abstract int getDischargeAmount(int which);
2211
2212 /**
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08002213 * Get the amount the battery has discharged while the screen was on,
2214 * since the last time power was unplugged.
2215 */
2216 public abstract int getDischargeAmountScreenOn();
2217
2218 /**
2219 * Get the amount the battery has discharged while the screen was on,
2220 * since the last time the device was charged.
2221 */
2222 public abstract int getDischargeAmountScreenOnSinceCharge();
2223
2224 /**
2225 * Get the amount the battery has discharged while the screen was off,
2226 * since the last time power was unplugged.
2227 */
2228 public abstract int getDischargeAmountScreenOff();
2229
2230 /**
2231 * Get the amount the battery has discharged while the screen was off,
2232 * since the last time the device was charged.
2233 */
2234 public abstract int getDischargeAmountScreenOffSinceCharge();
2235
2236 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002237 * Returns the total, last, or current battery uptime in microseconds.
2238 *
2239 * @param curTime the elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002240 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002241 */
2242 public abstract long computeBatteryUptime(long curTime, int which);
2243
2244 /**
2245 * Returns the total, last, or current battery realtime in microseconds.
2246 *
2247 * @param curTime the current elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002248 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002249 */
2250 public abstract long computeBatteryRealtime(long curTime, int which);
2251
2252 /**
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002253 * Returns the total, last, or current battery screen off uptime in microseconds.
2254 *
2255 * @param curTime the elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002256 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002257 */
2258 public abstract long computeBatteryScreenOffUptime(long curTime, int which);
2259
2260 /**
2261 * Returns the total, last, or current battery screen off realtime in microseconds.
2262 *
2263 * @param curTime the current elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002264 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002265 */
2266 public abstract long computeBatteryScreenOffRealtime(long curTime, int which);
2267
2268 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002269 * Returns the total, last, or current uptime in microseconds.
2270 *
2271 * @param curTime the current elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002272 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002273 */
2274 public abstract long computeUptime(long curTime, int which);
2275
2276 /**
2277 * Returns the total, last, or current realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002278 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002279 * @param curTime the current elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002280 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002281 */
2282 public abstract long computeRealtime(long curTime, int which);
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002283
2284 /**
2285 * Compute an approximation for how much run time (in microseconds) is remaining on
2286 * the battery. Returns -1 if no time can be computed: either there is not
2287 * enough current data to make a decision, or the battery is currently
2288 * charging.
2289 *
2290 * @param curTime The current elepsed realtime in microseconds.
2291 */
2292 public abstract long computeBatteryTimeRemaining(long curTime);
2293
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07002294 // The part of a step duration that is the actual time.
2295 public static final long STEP_LEVEL_TIME_MASK = 0x000000ffffffffffL;
2296
2297 // Bits in a step duration that are the new battery level we are at.
2298 public static final long STEP_LEVEL_LEVEL_MASK = 0x0000ff0000000000L;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002299 public static final int STEP_LEVEL_LEVEL_SHIFT = 40;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07002300
2301 // Bits in a step duration that are the initial mode we were in at that step.
2302 public static final long STEP_LEVEL_INITIAL_MODE_MASK = 0x00ff000000000000L;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002303 public static final int STEP_LEVEL_INITIAL_MODE_SHIFT = 48;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07002304
2305 // Bits in a step duration that indicate which modes changed during that step.
2306 public static final long STEP_LEVEL_MODIFIED_MODE_MASK = 0xff00000000000000L;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002307 public static final int STEP_LEVEL_MODIFIED_MODE_SHIFT = 56;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07002308
2309 // Step duration mode: the screen is on, off, dozed, etc; value is Display.STATE_* - 1.
2310 public static final int STEP_LEVEL_MODE_SCREEN_STATE = 0x03;
2311
2312 // Step duration mode: power save is on.
2313 public static final int STEP_LEVEL_MODE_POWER_SAVE = 0x04;
2314
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002315 // Step duration mode: device is currently in idle mode.
2316 public static final int STEP_LEVEL_MODE_DEVICE_IDLE = 0x08;
2317
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002318 public static final int[] STEP_LEVEL_MODES_OF_INTEREST = new int[] {
2319 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE,
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002320 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE|STEP_LEVEL_MODE_DEVICE_IDLE,
2321 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_DEVICE_IDLE,
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002322 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE,
2323 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE,
2324 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE,
2325 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE,
2326 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE,
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002327 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE|STEP_LEVEL_MODE_DEVICE_IDLE,
2328 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_DEVICE_IDLE,
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002329 };
2330 public static final int[] STEP_LEVEL_MODE_VALUES = new int[] {
2331 (Display.STATE_OFF-1),
2332 (Display.STATE_OFF-1)|STEP_LEVEL_MODE_POWER_SAVE,
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002333 (Display.STATE_OFF-1)|STEP_LEVEL_MODE_DEVICE_IDLE,
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002334 (Display.STATE_ON-1),
2335 (Display.STATE_ON-1)|STEP_LEVEL_MODE_POWER_SAVE,
2336 (Display.STATE_DOZE-1),
2337 (Display.STATE_DOZE-1)|STEP_LEVEL_MODE_POWER_SAVE,
2338 (Display.STATE_DOZE_SUSPEND-1),
2339 (Display.STATE_DOZE_SUSPEND-1)|STEP_LEVEL_MODE_POWER_SAVE,
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002340 (Display.STATE_DOZE_SUSPEND-1)|STEP_LEVEL_MODE_DEVICE_IDLE,
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002341 };
2342 public static final String[] STEP_LEVEL_MODE_LABELS = new String[] {
2343 "screen off",
2344 "screen off power save",
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002345 "screen off device idle",
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002346 "screen on",
2347 "screen on power save",
2348 "screen doze",
2349 "screen doze power save",
2350 "screen doze-suspend",
2351 "screen doze-suspend power save",
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002352 "screen doze-suspend device idle",
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002353 };
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002354
2355 /**
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002356 * Return the array of discharge step durations.
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002357 */
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002358 public abstract LevelStepTracker getDischargeLevelStepTracker();
2359
2360 /**
2361 * Return the array of daily discharge step durations.
2362 */
2363 public abstract LevelStepTracker getDailyDischargeLevelStepTracker();
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002364
2365 /**
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002366 * Compute an approximation for how much time (in microseconds) remains until the battery
2367 * is fully charged. Returns -1 if no time can be computed: either there is not
2368 * enough current data to make a decision, or the battery is currently
2369 * discharging.
2370 *
2371 * @param curTime The current elepsed realtime in microseconds.
2372 */
2373 public abstract long computeChargeTimeRemaining(long curTime);
2374
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002375 /**
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002376 * Return the array of charge step durations.
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002377 */
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002378 public abstract LevelStepTracker getChargeLevelStepTracker();
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002379
2380 /**
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002381 * Return the array of daily charge step durations.
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002382 */
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002383 public abstract LevelStepTracker getDailyChargeLevelStepTracker();
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002384
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002385 public abstract ArrayList<PackageChange> getDailyPackageChanges();
2386
Dianne Hackbornc3940bc2014-09-05 15:50:25 -07002387 public abstract Map<String, ? extends Timer> getWakeupReasonStats();
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002388
Evan Millarc64edde2009-04-18 12:26:32 -07002389 public abstract Map<String, ? extends Timer> getKernelWakelockStats();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002390
Dianne Hackborna7c837f2014-01-15 16:20:44 -08002391 public abstract void writeToParcelWithoutUids(Parcel out, int flags);
2392
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002393 private final static void formatTimeRaw(StringBuilder out, long seconds) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002394 long days = seconds / (60 * 60 * 24);
2395 if (days != 0) {
2396 out.append(days);
2397 out.append("d ");
2398 }
2399 long used = days * 60 * 60 * 24;
2400
2401 long hours = (seconds - used) / (60 * 60);
2402 if (hours != 0 || used != 0) {
2403 out.append(hours);
2404 out.append("h ");
2405 }
2406 used += hours * 60 * 60;
2407
2408 long mins = (seconds-used) / 60;
2409 if (mins != 0 || used != 0) {
2410 out.append(mins);
2411 out.append("m ");
2412 }
2413 used += mins * 60;
2414
2415 if (seconds != 0 || used != 0) {
2416 out.append(seconds-used);
2417 out.append("s ");
2418 }
2419 }
2420
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002421 public final static void formatTimeMs(StringBuilder sb, long time) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002422 long sec = time / 1000;
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002423 formatTimeRaw(sb, sec);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002424 sb.append(time - (sec * 1000));
2425 sb.append("ms ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002426 }
2427
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002428 public final static void formatTimeMsNoSpace(StringBuilder sb, long time) {
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002429 long sec = time / 1000;
2430 formatTimeRaw(sb, sec);
2431 sb.append(time - (sec * 1000));
2432 sb.append("ms");
2433 }
2434
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002435 public final String formatRatioLocked(long num, long den) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002436 if (den == 0L) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002437 return "--%";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002438 }
2439 float perc = ((float)num) / ((float)den) * 100;
2440 mFormatBuilder.setLength(0);
2441 mFormatter.format("%.1f%%", perc);
2442 return mFormatBuilder.toString();
2443 }
2444
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002445 final String formatBytesLocked(long bytes) {
Evan Millar22ac0432009-03-31 11:33:18 -07002446 mFormatBuilder.setLength(0);
2447
2448 if (bytes < BYTES_PER_KB) {
2449 return bytes + "B";
2450 } else if (bytes < BYTES_PER_MB) {
2451 mFormatter.format("%.2fKB", bytes / (double) BYTES_PER_KB);
2452 return mFormatBuilder.toString();
2453 } else if (bytes < BYTES_PER_GB){
2454 mFormatter.format("%.2fMB", bytes / (double) BYTES_PER_MB);
2455 return mFormatBuilder.toString();
2456 } else {
2457 mFormatter.format("%.2fGB", bytes / (double) BYTES_PER_GB);
2458 return mFormatBuilder.toString();
2459 }
2460 }
2461
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002462 private static long computeWakeLock(Timer timer, long elapsedRealtimeUs, int which) {
Dianne Hackbornc24ab862011-10-18 15:55:03 -07002463 if (timer != null) {
2464 // Convert from microseconds to milliseconds with rounding
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002465 long totalTimeMicros = timer.getTotalTimeLocked(elapsedRealtimeUs, which);
Dianne Hackbornc24ab862011-10-18 15:55:03 -07002466 long totalTimeMillis = (totalTimeMicros + 500) / 1000;
2467 return totalTimeMillis;
2468 }
2469 return 0;
2470 }
2471
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002472 /**
2473 *
2474 * @param sb a StringBuilder object.
2475 * @param timer a Timer object contining the wakelock times.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002476 * @param elapsedRealtimeUs the current on-battery time in microseconds.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002477 * @param name the name of the wakelock.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002478 * @param which which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002479 * @param linePrefix a String to be prepended to each line of output.
2480 * @return the line prefix
2481 */
2482 private static final String printWakeLock(StringBuilder sb, Timer timer,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002483 long elapsedRealtimeUs, String name, int which, String linePrefix) {
Ruben Brunk6d2c3632015-05-26 17:32:16 -07002484
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002485 if (timer != null) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002486 long totalTimeMillis = computeWakeLock(timer, elapsedRealtimeUs, which);
Ruben Brunk6d2c3632015-05-26 17:32:16 -07002487
Evan Millarc64edde2009-04-18 12:26:32 -07002488 int count = timer.getCountLocked(which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002489 if (totalTimeMillis != 0) {
2490 sb.append(linePrefix);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002491 formatTimeMs(sb, totalTimeMillis);
Dianne Hackborn81038902012-11-26 17:04:09 -08002492 if (name != null) {
2493 sb.append(name);
2494 sb.append(' ');
2495 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002496 sb.append('(');
2497 sb.append(count);
2498 sb.append(" times)");
2499 return ", ";
2500 }
2501 }
2502 return linePrefix;
2503 }
Ruben Brunk6d2c3632015-05-26 17:32:16 -07002504
2505 /**
2506 *
2507 * @param pw a PrintWriter object to print to.
2508 * @param sb a StringBuilder object.
2509 * @param timer a Timer object contining the wakelock times.
2510 * @param rawRealtime the current on-battery time in microseconds.
2511 * @param which which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
2512 * @param prefix a String to be prepended to each line of output.
2513 * @param type the name of the timer.
2514 */
2515 private static final boolean printTimer(PrintWriter pw, StringBuilder sb, Timer timer,
2516 long rawRealtime, int which, String prefix, String type) {
2517 if (timer != null) {
2518 // Convert from microseconds to milliseconds with rounding
2519 final long totalTime = (timer.getTotalTimeLocked(
2520 rawRealtime, which) + 500) / 1000;
2521 final int count = timer.getCountLocked(which);
2522 if (totalTime != 0) {
2523 sb.setLength(0);
2524 sb.append(prefix);
2525 sb.append(" ");
2526 sb.append(type);
2527 sb.append(": ");
2528 formatTimeMs(sb, totalTime);
2529 sb.append("realtime (");
2530 sb.append(count);
2531 sb.append(" times)");
2532 pw.println(sb.toString());
2533 return true;
2534 }
2535 }
2536 return false;
2537 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002538
2539 /**
2540 * Checkin version of wakelock printer. Prints simple comma-separated list.
2541 *
2542 * @param sb a StringBuilder object.
2543 * @param timer a Timer object contining the wakelock times.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002544 * @param elapsedRealtimeUs the current time in microseconds.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002545 * @param name the name of the wakelock.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002546 * @param which which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002547 * @param linePrefix a String to be prepended to each line of output.
2548 * @return the line prefix
2549 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002550 private static final String printWakeLockCheckin(StringBuilder sb, Timer timer,
2551 long elapsedRealtimeUs, String name, int which, String linePrefix) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002552 long totalTimeMicros = 0;
2553 int count = 0;
2554 if (timer != null) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002555 totalTimeMicros = timer.getTotalTimeLocked(elapsedRealtimeUs, which);
Evan Millarc64edde2009-04-18 12:26:32 -07002556 count = timer.getCountLocked(which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002557 }
2558 sb.append(linePrefix);
2559 sb.append((totalTimeMicros + 500) / 1000); // microseconds to milliseconds with rounding
2560 sb.append(',');
Evan Millarc64edde2009-04-18 12:26:32 -07002561 sb.append(name != null ? name + "," : "");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002562 sb.append(count);
2563 return ",";
2564 }
2565
Adam Lesinski21f76aa2016-01-25 12:27:06 -08002566 private static final void dumpLineHeader(PrintWriter pw, int uid, String category,
2567 String type) {
2568 pw.print(BATTERY_STATS_CHECKIN_VERSION);
2569 pw.print(',');
2570 pw.print(uid);
2571 pw.print(',');
2572 pw.print(category);
2573 pw.print(',');
2574 pw.print(type);
2575 }
2576
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002577 /**
2578 * Dump a comma-separated line of values for terse checkin mode.
2579 *
2580 * @param pw the PageWriter to dump log to
2581 * @param category category of data (e.g. "total", "last", "unplugged", "current" )
2582 * @param type type of data (e.g. "wakelock", "sensor", "process", "apk" , "process", "network")
2583 * @param args type-dependent data arguments
2584 */
2585 private static final void dumpLine(PrintWriter pw, int uid, String category, String type,
2586 Object... args ) {
Adam Lesinski21f76aa2016-01-25 12:27:06 -08002587 dumpLineHeader(pw, uid, category, type);
Ruben Brunk6d2c3632015-05-26 17:32:16 -07002588 for (Object arg : args) {
Dianne Hackborn13ac0412013-06-25 19:34:49 -07002589 pw.print(',');
2590 pw.print(arg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002591 }
Dianne Hackborn13ac0412013-06-25 19:34:49 -07002592 pw.println();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002593 }
Dianne Hackbornd953c532014-08-16 18:17:38 -07002594
2595 /**
Ruben Brunk6d2c3632015-05-26 17:32:16 -07002596 * Dump a given timer stat for terse checkin mode.
2597 *
2598 * @param pw the PageWriter to dump log to
2599 * @param uid the UID to log
2600 * @param category category of data (e.g. "total", "last", "unplugged", "current" )
2601 * @param type type of data (e.g. "wakelock", "sensor", "process", "apk" , "process", "network")
2602 * @param timer a {@link Timer} to dump stats for
2603 * @param rawRealtime the current elapsed realtime of the system in microseconds
2604 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT
2605 */
2606 private static final void dumpTimer(PrintWriter pw, int uid, String category, String type,
2607 Timer timer, long rawRealtime, int which) {
2608 if (timer != null) {
2609 // Convert from microseconds to milliseconds with rounding
2610 final long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500)
2611 / 1000;
2612 final int count = timer.getCountLocked(which);
2613 if (totalTime != 0) {
2614 dumpLine(pw, uid, category, type, totalTime, count);
2615 }
2616 }
2617 }
2618
2619 /**
Adam Lesinski21f76aa2016-01-25 12:27:06 -08002620 * Checks if the ControllerActivityCounter has any data worth dumping.
2621 */
2622 private static boolean controllerActivityHasData(ControllerActivityCounter counter, int which) {
2623 if (counter == null) {
2624 return false;
2625 }
2626
2627 if (counter.getIdleTimeCounter().getCountLocked(which) != 0
2628 || counter.getRxTimeCounter().getCountLocked(which) != 0
2629 || counter.getPowerCounter().getCountLocked(which) != 0) {
2630 return true;
2631 }
2632
2633 for (LongCounter c : counter.getTxTimeCounters()) {
2634 if (c.getCountLocked(which) != 0) {
2635 return true;
2636 }
2637 }
2638 return false;
2639 }
2640
2641 /**
2642 * Dumps the ControllerActivityCounter if it has any data worth dumping.
2643 * The order of the arguments in the final check in line is:
2644 *
2645 * idle, rx, power, tx...
2646 *
2647 * where tx... is one or more transmit level times.
2648 */
2649 private static final void dumpControllerActivityLine(PrintWriter pw, int uid, String category,
2650 String type,
2651 ControllerActivityCounter counter,
2652 int which) {
2653 if (!controllerActivityHasData(counter, which)) {
2654 return;
2655 }
2656
2657 dumpLineHeader(pw, uid, category, type);
2658 pw.print(",");
2659 pw.print(counter.getIdleTimeCounter().getCountLocked(which));
2660 pw.print(",");
2661 pw.print(counter.getRxTimeCounter().getCountLocked(which));
2662 pw.print(",");
2663 pw.print(counter.getPowerCounter().getCountLocked(which) / (1000 * 60 * 60));
2664 for (LongCounter c : counter.getTxTimeCounters()) {
2665 pw.print(",");
2666 pw.print(c.getCountLocked(which));
2667 }
2668 pw.println();
2669 }
2670
2671 private final void printControllerActivityIfInteresting(PrintWriter pw, StringBuilder sb,
2672 String prefix, String controllerName,
2673 ControllerActivityCounter counter,
2674 int which) {
2675 if (controllerActivityHasData(counter, which)) {
2676 printControllerActivity(pw, sb, prefix, controllerName, counter, which);
2677 }
2678 }
2679
2680 private final void printControllerActivity(PrintWriter pw, StringBuilder sb, String prefix,
2681 String controllerName,
2682 ControllerActivityCounter counter, int which) {
2683 final long idleTimeMs = counter.getIdleTimeCounter().getCountLocked(which);
2684 final long rxTimeMs = counter.getRxTimeCounter().getCountLocked(which);
2685 final long powerDrainMaMs = counter.getPowerCounter().getCountLocked(which);
2686 long totalTxTimeMs = 0;
2687 for (LongCounter txState : counter.getTxTimeCounters()) {
2688 totalTxTimeMs += txState.getCountLocked(which);
2689 }
2690
2691 final long totalTimeMs = idleTimeMs + rxTimeMs + totalTxTimeMs;
2692
2693 sb.setLength(0);
2694 sb.append(prefix);
2695 sb.append(" ");
2696 sb.append(controllerName);
2697 sb.append(" Idle time: ");
2698 formatTimeMs(sb, idleTimeMs);
2699 sb.append("(");
2700 sb.append(formatRatioLocked(idleTimeMs, totalTimeMs));
2701 sb.append(")");
2702 pw.println(sb.toString());
2703
2704 sb.setLength(0);
2705 sb.append(prefix);
2706 sb.append(" ");
2707 sb.append(controllerName);
2708 sb.append(" Rx time: ");
2709 formatTimeMs(sb, rxTimeMs);
2710 sb.append("(");
2711 sb.append(formatRatioLocked(rxTimeMs, totalTimeMs));
2712 sb.append(")");
2713 pw.println(sb.toString());
2714
2715 sb.setLength(0);
2716 sb.append(prefix);
2717 sb.append(" ");
2718 sb.append(controllerName);
2719 sb.append(" Tx time: ");
2720 formatTimeMs(sb, totalTxTimeMs);
2721 sb.append("(");
2722 sb.append(formatRatioLocked(totalTxTimeMs, totalTimeMs));
2723 sb.append(")");
2724 pw.println(sb.toString());
2725
2726 final int numTxLvls = counter.getTxTimeCounters().length;
2727 if (numTxLvls > 1) {
2728 for (int lvl = 0; lvl < numTxLvls; lvl++) {
2729 final long txLvlTimeMs = counter.getTxTimeCounters()[lvl].getCountLocked(which);
2730 sb.setLength(0);
2731 sb.append(prefix);
2732 sb.append(" [");
2733 sb.append(lvl);
2734 sb.append("] ");
2735 formatTimeMs(sb, txLvlTimeMs);
2736 sb.append("(");
2737 sb.append(formatRatioLocked(txLvlTimeMs, totalTxTimeMs));
2738 sb.append(")");
2739 pw.println(sb.toString());
2740 }
2741 }
2742
2743 sb.setLength(0);
2744 sb.append(prefix);
2745 sb.append(" ");
2746 sb.append(controllerName);
2747 sb.append(" Power drain: ").append(
2748 BatteryStatsHelper.makemAh(powerDrainMaMs / (double) (1000*60*60)));
2749 sb.append("mAh");
2750 pw.println(sb.toString());
2751 }
2752
2753 /**
Dianne Hackbornd953c532014-08-16 18:17:38 -07002754 * Temporary for settings.
2755 */
2756 public final void dumpCheckinLocked(Context context, PrintWriter pw, int which, int reqUid) {
2757 dumpCheckinLocked(context, pw, which, reqUid, BatteryStatsHelper.checkWifiOnly(context));
2758 }
2759
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002760 /**
2761 * Checkin server version of dump to produce more compact, computer-readable log.
2762 *
2763 * NOTE: all times are expressed in 'ms'.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002764 */
Dianne Hackbornd953c532014-08-16 18:17:38 -07002765 public final void dumpCheckinLocked(Context context, PrintWriter pw, int which, int reqUid,
2766 boolean wifiOnly) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002767 final long rawUptime = SystemClock.uptimeMillis() * 1000;
2768 final long rawRealtime = SystemClock.elapsedRealtime() * 1000;
2769 final long batteryUptime = getBatteryUptime(rawUptime);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002770 final long whichBatteryUptime = computeBatteryUptime(rawUptime, which);
2771 final long whichBatteryRealtime = computeBatteryRealtime(rawRealtime, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002772 final long whichBatteryScreenOffUptime = computeBatteryScreenOffUptime(rawUptime, which);
2773 final long whichBatteryScreenOffRealtime = computeBatteryScreenOffRealtime(rawRealtime,
2774 which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002775 final long totalRealtime = computeRealtime(rawRealtime, which);
2776 final long totalUptime = computeUptime(rawUptime, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002777 final long screenOnTime = getScreenOnTime(rawRealtime, which);
Jeff Browne95c3cd2014-05-02 16:59:26 -07002778 final long interactiveTime = getInteractiveTime(rawRealtime, which);
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002779 final long powerSaveModeEnabledTime = getPowerSaveModeEnabledTime(rawRealtime, which);
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002780 final long deviceIdleModeLightTime = getDeviceIdleModeTime(DEVICE_IDLE_MODE_LIGHT,
2781 rawRealtime, which);
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07002782 final long deviceIdleModeFullTime = getDeviceIdleModeTime(DEVICE_IDLE_MODE_DEEP,
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002783 rawRealtime, which);
2784 final long deviceLightIdlingTime = getDeviceIdlingTime(DEVICE_IDLE_MODE_LIGHT,
2785 rawRealtime, which);
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07002786 final long deviceIdlingTime = getDeviceIdlingTime(DEVICE_IDLE_MODE_DEEP,
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002787 rawRealtime, which);
Dianne Hackborn1e01d162014-12-04 17:46:42 -08002788 final int connChanges = getNumConnectivityChange(which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002789 final long phoneOnTime = getPhoneOnTime(rawRealtime, which);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07002790
Dianne Hackborn1e725a72015-03-24 18:23:19 -07002791 final StringBuilder sb = new StringBuilder(128);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002792
Dianne Hackborn1e725a72015-03-24 18:23:19 -07002793 final SparseArray<? extends Uid> uidStats = getUidStats();
Evan Millar22ac0432009-03-31 11:33:18 -07002794 final int NU = uidStats.size();
2795
Dianne Hackborn1e725a72015-03-24 18:23:19 -07002796 final String category = STAT_NAMES[which];
Jeff Sharkey3e013e82013-04-25 14:48:19 -07002797
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002798 // Dump "battery" stat
2799 dumpLine(pw, 0 /* uid */, category, BATTERY_DATA,
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002800 which == STATS_SINCE_CHARGED ? getStartCount() : "N/A",
Dianne Hackborn617f8772009-03-31 15:04:46 -07002801 whichBatteryRealtime / 1000, whichBatteryUptime / 1000,
Dianne Hackborn5f4a5f92014-01-24 16:59:34 -08002802 totalRealtime / 1000, totalUptime / 1000,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002803 getStartClockTime(),
2804 whichBatteryScreenOffRealtime / 1000, whichBatteryScreenOffUptime / 1000);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002805
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002806 // Calculate wakelock times across all uids.
Evan Millar22ac0432009-03-31 11:33:18 -07002807 long fullWakeLockTimeTotal = 0;
2808 long partialWakeLockTimeTotal = 0;
2809
2810 for (int iu = 0; iu < NU; iu++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07002811 final Uid u = uidStats.valueAt(iu);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07002812
Dianne Hackborn1e725a72015-03-24 18:23:19 -07002813 final ArrayMap<String, ? extends BatteryStats.Uid.Wakelock> wakelocks
2814 = u.getWakelockStats();
2815 for (int iw=wakelocks.size()-1; iw>=0; iw--) {
2816 final Uid.Wakelock wl = wakelocks.valueAt(iw);
Evan Millar22ac0432009-03-31 11:33:18 -07002817
Dianne Hackborn1e725a72015-03-24 18:23:19 -07002818 final Timer fullWakeTimer = wl.getWakeTime(WAKE_TYPE_FULL);
2819 if (fullWakeTimer != null) {
2820 fullWakeLockTimeTotal += fullWakeTimer.getTotalTimeLocked(rawRealtime,
2821 which);
2822 }
2823
2824 final Timer partialWakeTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
2825 if (partialWakeTimer != null) {
2826 partialWakeLockTimeTotal += partialWakeTimer.getTotalTimeLocked(
2827 rawRealtime, which);
Evan Millar22ac0432009-03-31 11:33:18 -07002828 }
2829 }
2830 }
Adam Lesinskie283d332015-04-16 12:29:25 -07002831
2832 // Dump network stats
Dianne Hackborn1e725a72015-03-24 18:23:19 -07002833 final long mobileRxTotalBytes = getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which);
2834 final long mobileTxTotalBytes = getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which);
2835 final long wifiRxTotalBytes = getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which);
2836 final long wifiTxTotalBytes = getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which);
2837 final long mobileRxTotalPackets = getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which);
2838 final long mobileTxTotalPackets = getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which);
2839 final long wifiRxTotalPackets = getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which);
2840 final long wifiTxTotalPackets = getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which);
Adam Lesinski9f55cc72016-01-27 20:42:14 -08002841 final long btRxTotalBytes = getNetworkActivityBytes(NETWORK_BT_RX_DATA, which);
2842 final long btTxTotalBytes = getNetworkActivityBytes(NETWORK_BT_TX_DATA, which);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002843 dumpLine(pw, 0 /* uid */, category, GLOBAL_NETWORK_DATA,
2844 mobileRxTotalBytes, mobileTxTotalBytes, wifiRxTotalBytes, wifiTxTotalBytes,
Adam Lesinski9f55cc72016-01-27 20:42:14 -08002845 mobileRxTotalPackets, mobileTxTotalPackets, wifiRxTotalPackets, wifiTxTotalPackets,
2846 btRxTotalBytes, btTxTotalBytes);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002847
Adam Lesinski21f76aa2016-01-25 12:27:06 -08002848 // Dump Modem controller stats
2849 dumpControllerActivityLine(pw, 0 /* uid */, category, GLOBAL_MODEM_CONTROLLER_DATA,
2850 getModemControllerActivity(), which);
2851
Adam Lesinskie283d332015-04-16 12:29:25 -07002852 // Dump Wifi controller stats
2853 final long wifiOnTime = getWifiOnTime(rawRealtime, which);
2854 final long wifiRunningTime = getGlobalWifiRunningTime(rawRealtime, which);
Adam Lesinski21f76aa2016-01-25 12:27:06 -08002855 dumpLine(pw, 0 /* uid */, category, GLOBAL_WIFI_DATA, wifiOnTime / 1000,
Adam Lesinski2208e742016-02-19 12:53:31 -08002856 wifiRunningTime / 1000, /* legacy fields follow, keep at 0 */ 0, 0, 0);
Adam Lesinski21f76aa2016-01-25 12:27:06 -08002857
2858 dumpControllerActivityLine(pw, 0 /* uid */, category, GLOBAL_WIFI_CONTROLLER_DATA,
2859 getWifiControllerActivity(), which);
Adam Lesinskie283d332015-04-16 12:29:25 -07002860
2861 // Dump Bluetooth controller stats
Adam Lesinski21f76aa2016-01-25 12:27:06 -08002862 dumpControllerActivityLine(pw, 0 /* uid */, category, GLOBAL_BLUETOOTH_CONTROLLER_DATA,
2863 getBluetoothControllerActivity(), which);
Adam Lesinskie283d332015-04-16 12:29:25 -07002864
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002865 // Dump misc stats
2866 dumpLine(pw, 0 /* uid */, category, MISC_DATA,
Adam Lesinskie283d332015-04-16 12:29:25 -07002867 screenOnTime / 1000, phoneOnTime / 1000,
Ashish Sharma213bb2f2014-07-07 17:14:52 -07002868 fullWakeLockTimeTotal / 1000, partialWakeLockTimeTotal / 1000,
Adam Lesinskie283d332015-04-16 12:29:25 -07002869 getMobileRadioActiveTime(rawRealtime, which) / 1000,
Ashish Sharma213bb2f2014-07-07 17:14:52 -07002870 getMobileRadioActiveAdjustedTime(which) / 1000, interactiveTime / 1000,
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002871 powerSaveModeEnabledTime / 1000, connChanges, deviceIdleModeFullTime / 1000,
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07002872 getDeviceIdleModeCount(DEVICE_IDLE_MODE_DEEP, which), deviceIdlingTime / 1000,
2873 getDeviceIdlingCount(DEVICE_IDLE_MODE_DEEP, which),
Adam Lesinski782327b2015-07-30 16:36:29 -07002874 getMobileRadioActiveCount(which),
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002875 getMobileRadioActiveUnknownTime(which) / 1000, deviceIdleModeLightTime / 1000,
2876 getDeviceIdleModeCount(DEVICE_IDLE_MODE_LIGHT, which), deviceLightIdlingTime / 1000,
2877 getDeviceIdlingCount(DEVICE_IDLE_MODE_LIGHT, which),
2878 getLongestDeviceIdleModeTime(DEVICE_IDLE_MODE_LIGHT),
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07002879 getLongestDeviceIdleModeTime(DEVICE_IDLE_MODE_DEEP));
Dianne Hackborn617f8772009-03-31 15:04:46 -07002880
2881 // Dump screen brightness stats
2882 Object[] args = new Object[NUM_SCREEN_BRIGHTNESS_BINS];
2883 for (int i=0; i<NUM_SCREEN_BRIGHTNESS_BINS; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002884 args[i] = getScreenBrightnessTime(i, rawRealtime, which) / 1000;
Dianne Hackborn617f8772009-03-31 15:04:46 -07002885 }
2886 dumpLine(pw, 0 /* uid */, category, SCREEN_BRIGHTNESS_DATA, args);
The Android Open Source Project10592532009-03-18 17:39:46 -07002887
Dianne Hackborn627bba72009-03-24 22:32:56 -07002888 // Dump signal strength stats
Wink Saville52840902011-02-18 12:40:47 -08002889 args = new Object[SignalStrength.NUM_SIGNAL_STRENGTH_BINS];
2890 for (int i=0; i<SignalStrength.NUM_SIGNAL_STRENGTH_BINS; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002891 args[i] = getPhoneSignalStrengthTime(i, rawRealtime, which) / 1000;
Dianne Hackborn627bba72009-03-24 22:32:56 -07002892 }
Dianne Hackborn617f8772009-03-31 15:04:46 -07002893 dumpLine(pw, 0 /* uid */, category, SIGNAL_STRENGTH_TIME_DATA, args);
Amith Yamasanif37447b2009-10-08 18:28:01 -07002894 dumpLine(pw, 0 /* uid */, category, SIGNAL_SCANNING_TIME_DATA,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002895 getPhoneSignalScanningTime(rawRealtime, which) / 1000);
Wink Saville52840902011-02-18 12:40:47 -08002896 for (int i=0; i<SignalStrength.NUM_SIGNAL_STRENGTH_BINS; i++) {
Dianne Hackborn617f8772009-03-31 15:04:46 -07002897 args[i] = getPhoneSignalStrengthCount(i, which);
2898 }
2899 dumpLine(pw, 0 /* uid */, category, SIGNAL_STRENGTH_COUNT_DATA, args);
Dianne Hackborne13c4c02014-02-11 17:18:35 -08002900
Dianne Hackborn627bba72009-03-24 22:32:56 -07002901 // Dump network type stats
2902 args = new Object[NUM_DATA_CONNECTION_TYPES];
2903 for (int i=0; i<NUM_DATA_CONNECTION_TYPES; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002904 args[i] = getPhoneDataConnectionTime(i, rawRealtime, which) / 1000;
Dianne Hackborn627bba72009-03-24 22:32:56 -07002905 }
Dianne Hackborn617f8772009-03-31 15:04:46 -07002906 dumpLine(pw, 0 /* uid */, category, DATA_CONNECTION_TIME_DATA, args);
2907 for (int i=0; i<NUM_DATA_CONNECTION_TYPES; i++) {
2908 args[i] = getPhoneDataConnectionCount(i, which);
2909 }
2910 dumpLine(pw, 0 /* uid */, category, DATA_CONNECTION_COUNT_DATA, args);
Dianne Hackbornca1bf212014-02-14 14:18:36 -08002911
2912 // Dump wifi state stats
2913 args = new Object[NUM_WIFI_STATES];
2914 for (int i=0; i<NUM_WIFI_STATES; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002915 args[i] = getWifiStateTime(i, rawRealtime, which) / 1000;
Dianne Hackbornca1bf212014-02-14 14:18:36 -08002916 }
2917 dumpLine(pw, 0 /* uid */, category, WIFI_STATE_TIME_DATA, args);
2918 for (int i=0; i<NUM_WIFI_STATES; i++) {
2919 args[i] = getWifiStateCount(i, which);
2920 }
2921 dumpLine(pw, 0 /* uid */, category, WIFI_STATE_COUNT_DATA, args);
2922
Dianne Hackborn3251b902014-06-20 14:40:53 -07002923 // Dump wifi suppl state stats
2924 args = new Object[NUM_WIFI_SUPPL_STATES];
2925 for (int i=0; i<NUM_WIFI_SUPPL_STATES; i++) {
2926 args[i] = getWifiSupplStateTime(i, rawRealtime, which) / 1000;
2927 }
2928 dumpLine(pw, 0 /* uid */, category, WIFI_SUPPL_STATE_TIME_DATA, args);
2929 for (int i=0; i<NUM_WIFI_SUPPL_STATES; i++) {
2930 args[i] = getWifiSupplStateCount(i, which);
2931 }
2932 dumpLine(pw, 0 /* uid */, category, WIFI_SUPPL_STATE_COUNT_DATA, args);
2933
2934 // Dump wifi signal strength stats
2935 args = new Object[NUM_WIFI_SIGNAL_STRENGTH_BINS];
2936 for (int i=0; i<NUM_WIFI_SIGNAL_STRENGTH_BINS; i++) {
2937 args[i] = getWifiSignalStrengthTime(i, rawRealtime, which) / 1000;
2938 }
2939 dumpLine(pw, 0 /* uid */, category, WIFI_SIGNAL_STRENGTH_TIME_DATA, args);
2940 for (int i=0; i<NUM_WIFI_SIGNAL_STRENGTH_BINS; i++) {
2941 args[i] = getWifiSignalStrengthCount(i, which);
2942 }
2943 dumpLine(pw, 0 /* uid */, category, WIFI_SIGNAL_STRENGTH_COUNT_DATA, args);
2944
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002945 if (which == STATS_SINCE_UNPLUGGED) {
Dianne Hackborne13c4c02014-02-11 17:18:35 -08002946 dumpLine(pw, 0 /* uid */, category, BATTERY_LEVEL_DATA, getDischargeStartLevel(),
Evan Millar633a1742009-04-02 16:36:33 -07002947 getDischargeCurrentLevel());
The Android Open Source Project10592532009-03-18 17:39:46 -07002948 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002949
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08002950 if (which == STATS_SINCE_UNPLUGGED) {
2951 dumpLine(pw, 0 /* uid */, category, BATTERY_DISCHARGE_DATA,
2952 getDischargeStartLevel()-getDischargeCurrentLevel(),
2953 getDischargeStartLevel()-getDischargeCurrentLevel(),
2954 getDischargeAmountScreenOn(), getDischargeAmountScreenOff());
2955 } else {
2956 dumpLine(pw, 0 /* uid */, category, BATTERY_DISCHARGE_DATA,
2957 getLowDischargeAmountSinceCharge(), getHighDischargeAmountSinceCharge(),
Dianne Hackborncd0e3352014-08-07 17:08:09 -07002958 getDischargeAmountScreenOnSinceCharge(),
2959 getDischargeAmountScreenOffSinceCharge());
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08002960 }
2961
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002962 if (reqUid < 0) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07002963 final Map<String, ? extends Timer> kernelWakelocks = getKernelWakelockStats();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002964 if (kernelWakelocks.size() > 0) {
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002965 for (Map.Entry<String, ? extends Timer> ent : kernelWakelocks.entrySet()) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002966 sb.setLength(0);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002967 printWakeLockCheckin(sb, ent.getValue(), rawRealtime, null, which, "");
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002968 dumpLine(pw, 0 /* uid */, category, KERNEL_WAKELOCK_DATA, ent.getKey(),
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002969 sb.toString());
2970 }
Evan Millarc64edde2009-04-18 12:26:32 -07002971 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07002972 final Map<String, ? extends Timer> wakeupReasons = getWakeupReasonStats();
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002973 if (wakeupReasons.size() > 0) {
Dianne Hackbornc3940bc2014-09-05 15:50:25 -07002974 for (Map.Entry<String, ? extends Timer> ent : wakeupReasons.entrySet()) {
2975 // Not doing the regular wake lock formatting to remain compatible
2976 // with the old checkin format.
2977 long totalTimeMicros = ent.getValue().getTotalTimeLocked(rawRealtime, which);
2978 int count = ent.getValue().getCountLocked(which);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002979 dumpLine(pw, 0 /* uid */, category, WAKEUP_REASON_DATA,
Dianne Hackbornc3940bc2014-09-05 15:50:25 -07002980 "\"" + ent.getKey() + "\"", (totalTimeMicros + 500) / 1000, count);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002981 }
2982 }
Evan Millarc64edde2009-04-18 12:26:32 -07002983 }
2984
Dianne Hackborn1e725a72015-03-24 18:23:19 -07002985 final BatteryStatsHelper helper = new BatteryStatsHelper(context, false, wifiOnly);
Dianne Hackborna7c837f2014-01-15 16:20:44 -08002986 helper.create(this);
2987 helper.refreshStats(which, UserHandle.USER_ALL);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07002988 final List<BatterySipper> sippers = helper.getUsageList();
Dianne Hackborna7c837f2014-01-15 16:20:44 -08002989 if (sippers != null && sippers.size() > 0) {
2990 dumpLine(pw, 0 /* uid */, category, POWER_USE_SUMMARY_DATA,
2991 BatteryStatsHelper.makemAh(helper.getPowerProfile().getBatteryCapacity()),
Dianne Hackborn099bc622014-01-22 13:39:16 -08002992 BatteryStatsHelper.makemAh(helper.getComputedPower()),
Dianne Hackborna7c837f2014-01-15 16:20:44 -08002993 BatteryStatsHelper.makemAh(helper.getMinDrainedPower()),
2994 BatteryStatsHelper.makemAh(helper.getMaxDrainedPower()));
2995 for (int i=0; i<sippers.size(); i++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07002996 final BatterySipper bs = sippers.get(i);
Dianne Hackborna7c837f2014-01-15 16:20:44 -08002997 int uid = 0;
2998 String label;
2999 switch (bs.drainType) {
3000 case IDLE:
3001 label="idle";
3002 break;
3003 case CELL:
3004 label="cell";
3005 break;
3006 case PHONE:
3007 label="phone";
3008 break;
3009 case WIFI:
3010 label="wifi";
3011 break;
3012 case BLUETOOTH:
3013 label="blue";
3014 break;
3015 case SCREEN:
3016 label="scrn";
3017 break;
Dianne Hackbornabc7c492014-06-30 16:57:46 -07003018 case FLASHLIGHT:
3019 label="flashlight";
3020 break;
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003021 case APP:
3022 uid = bs.uidObj.getUid();
3023 label = "uid";
3024 break;
3025 case USER:
3026 uid = UserHandle.getUid(bs.userId, 0);
3027 label = "user";
3028 break;
3029 case UNACCOUNTED:
3030 label = "unacc";
3031 break;
3032 case OVERCOUNTED:
3033 label = "over";
3034 break;
Ruben Brunk5b1308f2015-06-03 18:49:27 -07003035 case CAMERA:
3036 label = "camera";
3037 break;
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003038 default:
3039 label = "???";
3040 }
3041 dumpLine(pw, uid, category, POWER_USE_ITEM_DATA, label,
Adam Lesinskie08af192015-03-25 16:42:59 -07003042 BatteryStatsHelper.makemAh(bs.totalPowerMah));
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003043 }
3044 }
3045
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003046 for (int iu = 0; iu < NU; iu++) {
3047 final int uid = uidStats.keyAt(iu);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003048 if (reqUid >= 0 && uid != reqUid) {
3049 continue;
3050 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003051 final Uid u = uidStats.valueAt(iu);
Adam Lesinskie283d332015-04-16 12:29:25 -07003052
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003053 // Dump Network stats per uid, if any
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003054 final long mobileBytesRx = u.getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which);
3055 final long mobileBytesTx = u.getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which);
3056 final long wifiBytesRx = u.getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which);
3057 final long wifiBytesTx = u.getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which);
3058 final long mobilePacketsRx = u.getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which);
3059 final long mobilePacketsTx = u.getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which);
3060 final long mobileActiveTime = u.getMobileRadioActiveTime(which);
3061 final int mobileActiveCount = u.getMobileRadioActiveCount(which);
3062 final long wifiPacketsRx = u.getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which);
3063 final long wifiPacketsTx = u.getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which);
Adam Lesinski9f55cc72016-01-27 20:42:14 -08003064 final long btBytesRx = u.getNetworkActivityBytes(NETWORK_BT_RX_DATA, which);
3065 final long btBytesTx = u.getNetworkActivityBytes(NETWORK_BT_TX_DATA, which);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003066 if (mobileBytesRx > 0 || mobileBytesTx > 0 || wifiBytesRx > 0 || wifiBytesTx > 0
3067 || mobilePacketsRx > 0 || mobilePacketsTx > 0 || wifiPacketsRx > 0
Adam Lesinski9f55cc72016-01-27 20:42:14 -08003068 || wifiPacketsTx > 0 || mobileActiveTime > 0 || mobileActiveCount > 0
3069 || btBytesRx > 0 || btBytesTx > 0) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003070 dumpLine(pw, uid, category, NETWORK_DATA, mobileBytesRx, mobileBytesTx,
3071 wifiBytesRx, wifiBytesTx,
3072 mobilePacketsRx, mobilePacketsTx,
Dianne Hackbornd45665b2014-02-26 12:35:32 -08003073 wifiPacketsRx, wifiPacketsTx,
Adam Lesinski9f55cc72016-01-27 20:42:14 -08003074 mobileActiveTime, mobileActiveCount,
3075 btBytesRx, btBytesTx);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07003076 }
3077
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003078 // Dump modem controller data, per UID.
3079 dumpControllerActivityLine(pw, uid, category, MODEM_CONTROLLER_DATA,
3080 u.getModemControllerActivity(), which);
3081
3082 // Dump Wifi controller data, per UID.
Adam Lesinskie283d332015-04-16 12:29:25 -07003083 final long fullWifiLockOnTime = u.getFullWifiLockTime(rawRealtime, which);
3084 final long wifiScanTime = u.getWifiScanTime(rawRealtime, which);
3085 final int wifiScanCount = u.getWifiScanCount(which);
3086 final long uidWifiRunningTime = u.getWifiRunningTime(rawRealtime, which);
Dianne Hackborn62793e42015-03-09 11:15:41 -07003087 if (fullWifiLockOnTime != 0 || wifiScanTime != 0 || wifiScanCount != 0
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003088 || uidWifiRunningTime != 0) {
3089 dumpLine(pw, uid, category, WIFI_DATA, fullWifiLockOnTime, wifiScanTime,
3090 uidWifiRunningTime, wifiScanCount,
3091 /* legacy fields follow, keep at 0 */ 0, 0, 0, 0);
The Android Open Source Project10592532009-03-18 17:39:46 -07003092 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003093
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003094 dumpControllerActivityLine(pw, uid, category, WIFI_CONTROLLER_DATA,
3095 u.getWifiControllerActivity(), which);
3096
Adam Lesinskid9b99be2016-03-30 16:58:51 -07003097 // Dump Bluetooth scan data, per UID.
3098 final long bleScanTimeUs = u.getBluetoothScanTimer().getTotalTimeLocked(
3099 rawRealtime, which);
3100 final int bleScanCount = u.getBluetoothScanTimer().getCountLocked(which);
3101 if (bleScanTimeUs != 0 || bleScanCount != 0) {
3102 dumpLine(pw, uid, category, BLUETOOTH_MISC_DATA,
3103 bleScanTimeUs / 1000, bleScanCount);
3104 }
3105
Adam Lesinski9f55cc72016-01-27 20:42:14 -08003106 dumpControllerActivityLine(pw, uid, category, BLUETOOTH_CONTROLLER_DATA,
3107 u.getBluetoothControllerActivity(), which);
3108
Dianne Hackborn617f8772009-03-31 15:04:46 -07003109 if (u.hasUserActivity()) {
3110 args = new Object[Uid.NUM_USER_ACTIVITY_TYPES];
3111 boolean hasData = false;
3112 for (int i=0; i<Uid.NUM_USER_ACTIVITY_TYPES; i++) {
3113 int val = u.getUserActivityCount(i, which);
3114 args[i] = val;
3115 if (val != 0) hasData = true;
3116 }
3117 if (hasData) {
Ashish Sharmacba12152014-07-07 17:14:52 -07003118 dumpLine(pw, uid /* uid */, category, USER_ACTIVITY_DATA, args);
Dianne Hackborn617f8772009-03-31 15:04:46 -07003119 }
3120 }
3121
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003122 final ArrayMap<String, ? extends Uid.Wakelock> wakelocks = u.getWakelockStats();
3123 for (int iw=wakelocks.size()-1; iw>=0; iw--) {
3124 final Uid.Wakelock wl = wakelocks.valueAt(iw);
3125 String linePrefix = "";
3126 sb.setLength(0);
3127 linePrefix = printWakeLockCheckin(sb, wl.getWakeTime(WAKE_TYPE_FULL),
3128 rawRealtime, "f", which, linePrefix);
3129 linePrefix = printWakeLockCheckin(sb, wl.getWakeTime(WAKE_TYPE_PARTIAL),
3130 rawRealtime, "p", which, linePrefix);
3131 linePrefix = printWakeLockCheckin(sb, wl.getWakeTime(WAKE_TYPE_WINDOW),
3132 rawRealtime, "w", which, linePrefix);
3133
3134 // Only log if we had at lease one wakelock...
3135 if (sb.length() > 0) {
3136 String name = wakelocks.keyAt(iw);
3137 if (name.indexOf(',') >= 0) {
3138 name = name.replace(',', '_');
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003139 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003140 dumpLine(pw, uid, category, WAKELOCK_DATA, name, sb.toString());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003141 }
3142 }
Dianne Hackborn61659e52014-07-09 16:13:01 -07003143
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003144 final ArrayMap<String, ? extends Timer> syncs = u.getSyncStats();
3145 for (int isy=syncs.size()-1; isy>=0; isy--) {
3146 final Timer timer = syncs.valueAt(isy);
3147 // Convert from microseconds to milliseconds with rounding
3148 final long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000;
3149 final int count = timer.getCountLocked(which);
3150 if (totalTime != 0) {
3151 dumpLine(pw, uid, category, SYNC_DATA, syncs.keyAt(isy), totalTime, count);
Dianne Hackbornfdb19562014-07-11 16:03:36 -07003152 }
3153 }
3154
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003155 final ArrayMap<String, ? extends Timer> jobs = u.getJobStats();
3156 for (int ij=jobs.size()-1; ij>=0; ij--) {
3157 final Timer timer = jobs.valueAt(ij);
3158 // Convert from microseconds to milliseconds with rounding
3159 final long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000;
3160 final int count = timer.getCountLocked(which);
3161 if (totalTime != 0) {
3162 dumpLine(pw, uid, category, JOB_DATA, jobs.keyAt(ij), totalTime, count);
Dianne Hackbornfdb19562014-07-11 16:03:36 -07003163 }
3164 }
3165
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003166 dumpTimer(pw, uid, category, FLASHLIGHT_DATA, u.getFlashlightTurnedOnTimer(),
3167 rawRealtime, which);
3168 dumpTimer(pw, uid, category, CAMERA_DATA, u.getCameraTurnedOnTimer(),
3169 rawRealtime, which);
3170 dumpTimer(pw, uid, category, VIDEO_DATA, u.getVideoTurnedOnTimer(),
3171 rawRealtime, which);
3172 dumpTimer(pw, uid, category, AUDIO_DATA, u.getAudioTurnedOnTimer(),
3173 rawRealtime, which);
3174
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003175 final SparseArray<? extends BatteryStats.Uid.Sensor> sensors = u.getSensorStats();
3176 final int NSE = sensors.size();
Dianne Hackborn61659e52014-07-09 16:13:01 -07003177 for (int ise=0; ise<NSE; ise++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003178 final Uid.Sensor se = sensors.valueAt(ise);
3179 final int sensorNumber = sensors.keyAt(ise);
3180 final Timer timer = se.getSensorTime();
Dianne Hackborn61659e52014-07-09 16:13:01 -07003181 if (timer != null) {
3182 // Convert from microseconds to milliseconds with rounding
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003183 final long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500)
3184 / 1000;
3185 final int count = timer.getCountLocked(which);
Dianne Hackborn61659e52014-07-09 16:13:01 -07003186 if (totalTime != 0) {
3187 dumpLine(pw, uid, category, SENSOR_DATA, sensorNumber, totalTime, count);
3188 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003189 }
3190 }
3191
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003192 dumpTimer(pw, uid, category, VIBRATOR_DATA, u.getVibratorOnTimer(),
3193 rawRealtime, which);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08003194
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003195 dumpTimer(pw, uid, category, FOREGROUND_DATA, u.getForegroundActivityTimer(),
3196 rawRealtime, which);
Jeff Sharkey3e013e82013-04-25 14:48:19 -07003197
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003198 final Object[] stateTimes = new Object[Uid.NUM_PROCESS_STATE];
Dianne Hackborn61659e52014-07-09 16:13:01 -07003199 long totalStateTime = 0;
3200 for (int ips=0; ips<Uid.NUM_PROCESS_STATE; ips++) {
Dianne Hackborna8d10942015-11-19 17:55:19 -08003201 final long time = u.getProcessStateTime(ips, rawRealtime, which);
3202 totalStateTime += time;
3203 stateTimes[ips] = (time + 500) / 1000;
Dianne Hackborn61659e52014-07-09 16:13:01 -07003204 }
3205 if (totalStateTime > 0) {
3206 dumpLine(pw, uid, category, STATE_TIME_DATA, stateTimes);
3207 }
3208
Adam Lesinskia7a4ccc2015-06-26 17:43:04 -07003209 final long userCpuTimeUs = u.getUserCpuTimeUs(which);
3210 final long systemCpuTimeUs = u.getSystemCpuTimeUs(which);
3211 final long powerCpuMaUs = u.getCpuPowerMaUs(which);
3212 if (userCpuTimeUs > 0 || systemCpuTimeUs > 0 || powerCpuMaUs > 0) {
3213 dumpLine(pw, uid, category, CPU_DATA, userCpuTimeUs / 1000, systemCpuTimeUs / 1000,
3214 powerCpuMaUs / 1000);
3215 }
3216
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003217 final ArrayMap<String, ? extends BatteryStats.Uid.Proc> processStats
3218 = u.getProcessStats();
3219 for (int ipr=processStats.size()-1; ipr>=0; ipr--) {
3220 final Uid.Proc ps = processStats.valueAt(ipr);
Jeff Sharkey3e013e82013-04-25 14:48:19 -07003221
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003222 final long userMillis = ps.getUserTime(which);
3223 final long systemMillis = ps.getSystemTime(which);
3224 final long foregroundMillis = ps.getForegroundTime(which);
3225 final int starts = ps.getStarts(which);
3226 final int numCrashes = ps.getNumCrashes(which);
3227 final int numAnrs = ps.getNumAnrs(which);
Jeff Sharkey3e013e82013-04-25 14:48:19 -07003228
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003229 if (userMillis != 0 || systemMillis != 0 || foregroundMillis != 0
3230 || starts != 0 || numAnrs != 0 || numCrashes != 0) {
3231 dumpLine(pw, uid, category, PROCESS_DATA, processStats.keyAt(ipr), userMillis,
3232 systemMillis, foregroundMillis, starts, numAnrs, numCrashes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003233 }
3234 }
3235
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003236 final ArrayMap<String, ? extends BatteryStats.Uid.Pkg> packageStats
3237 = u.getPackageStats();
3238 for (int ipkg=packageStats.size()-1; ipkg>=0; ipkg--) {
3239 final Uid.Pkg ps = packageStats.valueAt(ipkg);
3240 int wakeups = 0;
3241 final ArrayMap<String, ? extends Counter> alarms = ps.getWakeupAlarmStats();
3242 for (int iwa=alarms.size()-1; iwa>=0; iwa--) {
3243 wakeups += alarms.valueAt(iwa).getCountLocked(which);
3244 }
3245 final ArrayMap<String, ? extends Uid.Pkg.Serv> serviceStats = ps.getServiceStats();
3246 for (int isvc=serviceStats.size()-1; isvc>=0; isvc--) {
3247 final BatteryStats.Uid.Pkg.Serv ss = serviceStats.valueAt(isvc);
3248 final long startTime = ss.getStartTime(batteryUptime, which);
3249 final int starts = ss.getStarts(which);
3250 final int launches = ss.getLaunches(which);
3251 if (startTime != 0 || starts != 0 || launches != 0) {
3252 dumpLine(pw, uid, category, APK_DATA,
3253 wakeups, // wakeup alarms
3254 packageStats.keyAt(ipkg), // Apk
3255 serviceStats.keyAt(isvc), // service
3256 startTime / 1000, // time spent started, in ms
3257 starts,
3258 launches);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003259 }
3260 }
3261 }
3262 }
3263 }
3264
Dianne Hackborn81038902012-11-26 17:04:09 -08003265 static final class TimerEntry {
3266 final String mName;
3267 final int mId;
3268 final BatteryStats.Timer mTimer;
3269 final long mTime;
3270 TimerEntry(String name, int id, BatteryStats.Timer timer, long time) {
3271 mName = name;
3272 mId = id;
3273 mTimer = timer;
3274 mTime = time;
3275 }
3276 }
3277
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003278 private void printmAh(PrintWriter printer, double power) {
3279 printer.print(BatteryStatsHelper.makemAh(power));
3280 }
3281
Adam Lesinskia7a4ccc2015-06-26 17:43:04 -07003282 private void printmAh(StringBuilder sb, double power) {
3283 sb.append(BatteryStatsHelper.makemAh(power));
3284 }
3285
Dianne Hackbornd953c532014-08-16 18:17:38 -07003286 /**
3287 * Temporary for settings.
3288 */
3289 public final void dumpLocked(Context context, PrintWriter pw, String prefix, int which,
3290 int reqUid) {
3291 dumpLocked(context, pw, prefix, which, reqUid, BatteryStatsHelper.checkWifiOnly(context));
3292 }
3293
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003294 @SuppressWarnings("unused")
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003295 public final void dumpLocked(Context context, PrintWriter pw, String prefix, final int which,
Dianne Hackbornd953c532014-08-16 18:17:38 -07003296 int reqUid, boolean wifiOnly) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003297 final long rawUptime = SystemClock.uptimeMillis() * 1000;
3298 final long rawRealtime = SystemClock.elapsedRealtime() * 1000;
3299 final long batteryUptime = getBatteryUptime(rawUptime);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003300
3301 final long whichBatteryUptime = computeBatteryUptime(rawUptime, which);
3302 final long whichBatteryRealtime = computeBatteryRealtime(rawRealtime, which);
3303 final long totalRealtime = computeRealtime(rawRealtime, which);
3304 final long totalUptime = computeUptime(rawUptime, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003305 final long whichBatteryScreenOffUptime = computeBatteryScreenOffUptime(rawUptime, which);
3306 final long whichBatteryScreenOffRealtime = computeBatteryScreenOffRealtime(rawRealtime,
3307 which);
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07003308 final long batteryTimeRemaining = computeBatteryTimeRemaining(rawRealtime);
3309 final long chargeTimeRemaining = computeChargeTimeRemaining(rawRealtime);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003310
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003311 final StringBuilder sb = new StringBuilder(128);
Evan Millar22ac0432009-03-31 11:33:18 -07003312
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003313 final SparseArray<? extends Uid> uidStats = getUidStats();
Evan Millar22ac0432009-03-31 11:33:18 -07003314 final int NU = uidStats.size();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003315
Dianne Hackborn1d442e02009-04-20 18:14:05 -07003316 sb.setLength(0);
3317 sb.append(prefix);
3318 sb.append(" Time on battery: ");
3319 formatTimeMs(sb, whichBatteryRealtime / 1000); sb.append("(");
3320 sb.append(formatRatioLocked(whichBatteryRealtime, totalRealtime));
3321 sb.append(") realtime, ");
3322 formatTimeMs(sb, whichBatteryUptime / 1000);
3323 sb.append("("); sb.append(formatRatioLocked(whichBatteryUptime, totalRealtime));
3324 sb.append(") uptime");
3325 pw.println(sb.toString());
3326 sb.setLength(0);
3327 sb.append(prefix);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003328 sb.append(" Time on battery screen off: ");
3329 formatTimeMs(sb, whichBatteryScreenOffRealtime / 1000); sb.append("(");
3330 sb.append(formatRatioLocked(whichBatteryScreenOffRealtime, totalRealtime));
3331 sb.append(") realtime, ");
3332 formatTimeMs(sb, whichBatteryScreenOffUptime / 1000);
3333 sb.append("(");
3334 sb.append(formatRatioLocked(whichBatteryScreenOffUptime, totalRealtime));
3335 sb.append(") uptime");
3336 pw.println(sb.toString());
3337 sb.setLength(0);
3338 sb.append(prefix);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07003339 sb.append(" Total run time: ");
3340 formatTimeMs(sb, totalRealtime / 1000);
3341 sb.append("realtime, ");
3342 formatTimeMs(sb, totalUptime / 1000);
Dianne Hackborn77b987f2014-02-26 16:20:52 -08003343 sb.append("uptime");
Jeff Browne95c3cd2014-05-02 16:59:26 -07003344 pw.println(sb.toString());
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07003345 if (batteryTimeRemaining >= 0) {
3346 sb.setLength(0);
3347 sb.append(prefix);
3348 sb.append(" Battery time remaining: ");
3349 formatTimeMs(sb, batteryTimeRemaining / 1000);
3350 pw.println(sb.toString());
3351 }
3352 if (chargeTimeRemaining >= 0) {
3353 sb.setLength(0);
3354 sb.append(prefix);
3355 sb.append(" Charge time remaining: ");
3356 formatTimeMs(sb, chargeTimeRemaining / 1000);
3357 pw.println(sb.toString());
3358 }
Dianne Hackborn5f4a5f92014-01-24 16:59:34 -08003359 pw.print(" Start clock time: ");
3360 pw.println(DateFormat.format("yyyy-MM-dd-HH-mm-ss", getStartClockTime()).toString());
3361
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003362 final long screenOnTime = getScreenOnTime(rawRealtime, which);
Jeff Browne95c3cd2014-05-02 16:59:26 -07003363 final long interactiveTime = getInteractiveTime(rawRealtime, which);
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07003364 final long powerSaveModeEnabledTime = getPowerSaveModeEnabledTime(rawRealtime, which);
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003365 final long deviceIdleModeLightTime = getDeviceIdleModeTime(DEVICE_IDLE_MODE_LIGHT,
3366 rawRealtime, which);
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07003367 final long deviceIdleModeFullTime = getDeviceIdleModeTime(DEVICE_IDLE_MODE_DEEP,
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003368 rawRealtime, which);
3369 final long deviceLightIdlingTime = getDeviceIdlingTime(DEVICE_IDLE_MODE_LIGHT,
3370 rawRealtime, which);
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07003371 final long deviceIdlingTime = getDeviceIdlingTime(DEVICE_IDLE_MODE_DEEP,
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003372 rawRealtime, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003373 final long phoneOnTime = getPhoneOnTime(rawRealtime, which);
3374 final long wifiRunningTime = getGlobalWifiRunningTime(rawRealtime, which);
3375 final long wifiOnTime = getWifiOnTime(rawRealtime, which);
Dianne Hackborn617f8772009-03-31 15:04:46 -07003376 sb.setLength(0);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07003377 sb.append(prefix);
3378 sb.append(" Screen on: "); formatTimeMs(sb, screenOnTime / 1000);
3379 sb.append("("); sb.append(formatRatioLocked(screenOnTime, whichBatteryRealtime));
Dianne Hackborn77b987f2014-02-26 16:20:52 -08003380 sb.append(") "); sb.append(getScreenOnCount(which));
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07003381 sb.append("x, Interactive: "); formatTimeMs(sb, interactiveTime / 1000);
3382 sb.append("("); sb.append(formatRatioLocked(interactiveTime, whichBatteryRealtime));
Jeff Browne95c3cd2014-05-02 16:59:26 -07003383 sb.append(")");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07003384 pw.println(sb.toString());
3385 sb.setLength(0);
3386 sb.append(prefix);
Dianne Hackborn77b987f2014-02-26 16:20:52 -08003387 sb.append(" Screen brightnesses:");
Dianne Hackborn617f8772009-03-31 15:04:46 -07003388 boolean didOne = false;
3389 for (int i=0; i<NUM_SCREEN_BRIGHTNESS_BINS; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003390 final long time = getScreenBrightnessTime(i, rawRealtime, which);
Dianne Hackborn617f8772009-03-31 15:04:46 -07003391 if (time == 0) {
3392 continue;
3393 }
Dianne Hackborn77b987f2014-02-26 16:20:52 -08003394 sb.append("\n ");
3395 sb.append(prefix);
Dianne Hackborn617f8772009-03-31 15:04:46 -07003396 didOne = true;
3397 sb.append(SCREEN_BRIGHTNESS_NAMES[i]);
3398 sb.append(" ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07003399 formatTimeMs(sb, time/1000);
Dianne Hackborn617f8772009-03-31 15:04:46 -07003400 sb.append("(");
3401 sb.append(formatRatioLocked(time, screenOnTime));
3402 sb.append(")");
3403 }
Dianne Hackborn77b987f2014-02-26 16:20:52 -08003404 if (!didOne) sb.append(" (no activity)");
Dianne Hackborn617f8772009-03-31 15:04:46 -07003405 pw.println(sb.toString());
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07003406 if (powerSaveModeEnabledTime != 0) {
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07003407 sb.setLength(0);
3408 sb.append(prefix);
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07003409 sb.append(" Power save mode enabled: ");
3410 formatTimeMs(sb, powerSaveModeEnabledTime / 1000);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07003411 sb.append("(");
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07003412 sb.append(formatRatioLocked(powerSaveModeEnabledTime, whichBatteryRealtime));
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07003413 sb.append(")");
3414 pw.println(sb.toString());
3415 }
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003416 if (deviceLightIdlingTime != 0) {
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07003417 sb.setLength(0);
3418 sb.append(prefix);
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003419 sb.append(" Device light idling: ");
3420 formatTimeMs(sb, deviceLightIdlingTime / 1000);
Dianne Hackborn88e98df2015-03-23 13:29:14 -07003421 sb.append("(");
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003422 sb.append(formatRatioLocked(deviceLightIdlingTime, whichBatteryRealtime));
3423 sb.append(") "); sb.append(getDeviceIdlingCount(DEVICE_IDLE_MODE_LIGHT, which));
Dianne Hackborn88e98df2015-03-23 13:29:14 -07003424 sb.append("x");
3425 pw.println(sb.toString());
3426 }
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003427 if (deviceIdleModeLightTime != 0) {
Dianne Hackborn88e98df2015-03-23 13:29:14 -07003428 sb.setLength(0);
3429 sb.append(prefix);
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003430 sb.append(" Idle mode light time: ");
3431 formatTimeMs(sb, deviceIdleModeLightTime / 1000);
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07003432 sb.append("(");
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003433 sb.append(formatRatioLocked(deviceIdleModeLightTime, whichBatteryRealtime));
3434 sb.append(") ");
3435 sb.append(getDeviceIdleModeCount(DEVICE_IDLE_MODE_LIGHT, which));
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07003436 sb.append("x");
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003437 sb.append(" -- longest ");
3438 formatTimeMs(sb, getLongestDeviceIdleModeTime(DEVICE_IDLE_MODE_LIGHT));
3439 pw.println(sb.toString());
3440 }
3441 if (deviceIdlingTime != 0) {
3442 sb.setLength(0);
3443 sb.append(prefix);
3444 sb.append(" Device full idling: ");
3445 formatTimeMs(sb, deviceIdlingTime / 1000);
3446 sb.append("(");
3447 sb.append(formatRatioLocked(deviceIdlingTime, whichBatteryRealtime));
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07003448 sb.append(") "); sb.append(getDeviceIdlingCount(DEVICE_IDLE_MODE_DEEP, which));
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003449 sb.append("x");
3450 pw.println(sb.toString());
3451 }
3452 if (deviceIdleModeFullTime != 0) {
3453 sb.setLength(0);
3454 sb.append(prefix);
3455 sb.append(" Idle mode full time: ");
3456 formatTimeMs(sb, deviceIdleModeFullTime / 1000);
3457 sb.append("(");
3458 sb.append(formatRatioLocked(deviceIdleModeFullTime, whichBatteryRealtime));
3459 sb.append(") ");
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07003460 sb.append(getDeviceIdleModeCount(DEVICE_IDLE_MODE_DEEP, which));
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003461 sb.append("x");
3462 sb.append(" -- longest ");
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07003463 formatTimeMs(sb, getLongestDeviceIdleModeTime(DEVICE_IDLE_MODE_DEEP));
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07003464 pw.println(sb.toString());
3465 }
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07003466 if (phoneOnTime != 0) {
3467 sb.setLength(0);
3468 sb.append(prefix);
3469 sb.append(" Active phone call: "); formatTimeMs(sb, phoneOnTime / 1000);
3470 sb.append("("); sb.append(formatRatioLocked(phoneOnTime, whichBatteryRealtime));
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07003471 sb.append(") "); sb.append(getPhoneOnCount(which)); sb.append("x");
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07003472 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003473 final int connChanges = getNumConnectivityChange(which);
Dianne Hackborn1e01d162014-12-04 17:46:42 -08003474 if (connChanges != 0) {
3475 pw.print(prefix);
3476 pw.print(" Connectivity changes: "); pw.println(connChanges);
3477 }
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07003478
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003479 // Calculate wakelock times across all uids.
Evan Millar22ac0432009-03-31 11:33:18 -07003480 long fullWakeLockTimeTotalMicros = 0;
3481 long partialWakeLockTimeTotalMicros = 0;
Dianne Hackborn81038902012-11-26 17:04:09 -08003482
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003483 final ArrayList<TimerEntry> timers = new ArrayList<>();
Dianne Hackborn81038902012-11-26 17:04:09 -08003484
Evan Millar22ac0432009-03-31 11:33:18 -07003485 for (int iu = 0; iu < NU; iu++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003486 final Uid u = uidStats.valueAt(iu);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07003487
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003488 final ArrayMap<String, ? extends BatteryStats.Uid.Wakelock> wakelocks
3489 = u.getWakelockStats();
3490 for (int iw=wakelocks.size()-1; iw>=0; iw--) {
3491 final Uid.Wakelock wl = wakelocks.valueAt(iw);
Evan Millar22ac0432009-03-31 11:33:18 -07003492
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003493 final Timer fullWakeTimer = wl.getWakeTime(WAKE_TYPE_FULL);
3494 if (fullWakeTimer != null) {
3495 fullWakeLockTimeTotalMicros += fullWakeTimer.getTotalTimeLocked(
3496 rawRealtime, which);
3497 }
3498
3499 final Timer partialWakeTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
3500 if (partialWakeTimer != null) {
3501 final long totalTimeMicros = partialWakeTimer.getTotalTimeLocked(
3502 rawRealtime, which);
3503 if (totalTimeMicros > 0) {
3504 if (reqUid < 0) {
3505 // Only show the ordered list of all wake
3506 // locks if the caller is not asking for data
3507 // about a specific uid.
3508 timers.add(new TimerEntry(wakelocks.keyAt(iw), u.getUid(),
3509 partialWakeTimer, totalTimeMicros));
Dianne Hackborn81038902012-11-26 17:04:09 -08003510 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003511 partialWakeLockTimeTotalMicros += totalTimeMicros;
Evan Millar22ac0432009-03-31 11:33:18 -07003512 }
3513 }
3514 }
3515 }
3516
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003517 final long mobileRxTotalBytes = getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which);
3518 final long mobileTxTotalBytes = getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which);
3519 final long wifiRxTotalBytes = getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which);
3520 final long wifiTxTotalBytes = getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which);
3521 final long mobileRxTotalPackets = getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which);
3522 final long mobileTxTotalPackets = getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which);
3523 final long wifiRxTotalPackets = getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which);
3524 final long wifiTxTotalPackets = getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which);
Adam Lesinski50e47602015-12-04 17:04:54 -08003525 final long btRxTotalBytes = getNetworkActivityBytes(NETWORK_BT_RX_DATA, which);
3526 final long btTxTotalBytes = getNetworkActivityBytes(NETWORK_BT_TX_DATA, which);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003527
Dianne Hackborn77b987f2014-02-26 16:20:52 -08003528 if (fullWakeLockTimeTotalMicros != 0) {
3529 sb.setLength(0);
3530 sb.append(prefix);
3531 sb.append(" Total full wakelock time: "); formatTimeMsNoSpace(sb,
3532 (fullWakeLockTimeTotalMicros + 500) / 1000);
3533 pw.println(sb.toString());
3534 }
3535
3536 if (partialWakeLockTimeTotalMicros != 0) {
3537 sb.setLength(0);
3538 sb.append(prefix);
3539 sb.append(" Total partial wakelock time: "); formatTimeMsNoSpace(sb,
3540 (partialWakeLockTimeTotalMicros + 500) / 1000);
3541 pw.println(sb.toString());
3542 }
3543
Dianne Hackborn1d442e02009-04-20 18:14:05 -07003544 pw.print(prefix);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003545 pw.print(" Mobile total received: "); pw.print(formatBytesLocked(mobileRxTotalBytes));
3546 pw.print(", sent: "); pw.print(formatBytesLocked(mobileTxTotalBytes));
3547 pw.print(" (packets received "); pw.print(mobileRxTotalPackets);
3548 pw.print(", sent "); pw.print(mobileTxTotalPackets); pw.println(")");
Dianne Hackborn627bba72009-03-24 22:32:56 -07003549 sb.setLength(0);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07003550 sb.append(prefix);
Dianne Hackborn3251b902014-06-20 14:40:53 -07003551 sb.append(" Phone signal levels:");
Dianne Hackborn617f8772009-03-31 15:04:46 -07003552 didOne = false;
Wink Saville52840902011-02-18 12:40:47 -08003553 for (int i=0; i<SignalStrength.NUM_SIGNAL_STRENGTH_BINS; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003554 final long time = getPhoneSignalStrengthTime(i, rawRealtime, which);
Dianne Hackborn627bba72009-03-24 22:32:56 -07003555 if (time == 0) {
3556 continue;
3557 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08003558 sb.append("\n ");
Dianne Hackborn77b987f2014-02-26 16:20:52 -08003559 sb.append(prefix);
Dianne Hackborn627bba72009-03-24 22:32:56 -07003560 didOne = true;
Wink Saville52840902011-02-18 12:40:47 -08003561 sb.append(SignalStrength.SIGNAL_STRENGTH_NAMES[i]);
Dianne Hackborn627bba72009-03-24 22:32:56 -07003562 sb.append(" ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07003563 formatTimeMs(sb, time/1000);
Dianne Hackborn627bba72009-03-24 22:32:56 -07003564 sb.append("(");
3565 sb.append(formatRatioLocked(time, whichBatteryRealtime));
Dianne Hackborn617f8772009-03-31 15:04:46 -07003566 sb.append(") ");
3567 sb.append(getPhoneSignalStrengthCount(i, which));
3568 sb.append("x");
Dianne Hackborn627bba72009-03-24 22:32:56 -07003569 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08003570 if (!didOne) sb.append(" (no activity)");
Dianne Hackborn627bba72009-03-24 22:32:56 -07003571 pw.println(sb.toString());
Amith Yamasanif37447b2009-10-08 18:28:01 -07003572
3573 sb.setLength(0);
3574 sb.append(prefix);
3575 sb.append(" Signal scanning time: ");
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003576 formatTimeMsNoSpace(sb, getPhoneSignalScanningTime(rawRealtime, which) / 1000);
Amith Yamasanif37447b2009-10-08 18:28:01 -07003577 pw.println(sb.toString());
3578
Dianne Hackborn627bba72009-03-24 22:32:56 -07003579 sb.setLength(0);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07003580 sb.append(prefix);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08003581 sb.append(" Radio types:");
Dianne Hackborn627bba72009-03-24 22:32:56 -07003582 didOne = false;
3583 for (int i=0; i<NUM_DATA_CONNECTION_TYPES; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003584 final long time = getPhoneDataConnectionTime(i, rawRealtime, which);
Dianne Hackborn627bba72009-03-24 22:32:56 -07003585 if (time == 0) {
3586 continue;
3587 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08003588 sb.append("\n ");
Dianne Hackborn77b987f2014-02-26 16:20:52 -08003589 sb.append(prefix);
Dianne Hackborn627bba72009-03-24 22:32:56 -07003590 didOne = true;
3591 sb.append(DATA_CONNECTION_NAMES[i]);
3592 sb.append(" ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07003593 formatTimeMs(sb, time/1000);
Dianne Hackborn627bba72009-03-24 22:32:56 -07003594 sb.append("(");
3595 sb.append(formatRatioLocked(time, whichBatteryRealtime));
Dianne Hackborn617f8772009-03-31 15:04:46 -07003596 sb.append(") ");
3597 sb.append(getPhoneDataConnectionCount(i, which));
3598 sb.append("x");
Dianne Hackborn627bba72009-03-24 22:32:56 -07003599 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08003600 if (!didOne) sb.append(" (no activity)");
Dianne Hackborn627bba72009-03-24 22:32:56 -07003601 pw.println(sb.toString());
Amith Yamasani3f7e35c2009-07-13 16:02:45 -07003602
3603 sb.setLength(0);
3604 sb.append(prefix);
Dianne Hackborne13c4c02014-02-11 17:18:35 -08003605 sb.append(" Mobile radio active time: ");
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003606 final long mobileActiveTime = getMobileRadioActiveTime(rawRealtime, which);
Dianne Hackbornd45665b2014-02-26 12:35:32 -08003607 formatTimeMs(sb, mobileActiveTime / 1000);
3608 sb.append("("); sb.append(formatRatioLocked(mobileActiveTime, whichBatteryRealtime));
3609 sb.append(") "); sb.append(getMobileRadioActiveCount(which));
3610 sb.append("x");
Amith Yamasani3f7e35c2009-07-13 16:02:45 -07003611 pw.println(sb.toString());
3612
Dianne Hackbornd45665b2014-02-26 12:35:32 -08003613 final long mobileActiveUnknownTime = getMobileRadioActiveUnknownTime(which);
3614 if (mobileActiveUnknownTime != 0) {
3615 sb.setLength(0);
3616 sb.append(prefix);
3617 sb.append(" Mobile radio active unknown time: ");
3618 formatTimeMs(sb, mobileActiveUnknownTime / 1000);
3619 sb.append("(");
3620 sb.append(formatRatioLocked(mobileActiveUnknownTime, whichBatteryRealtime));
3621 sb.append(") "); sb.append(getMobileRadioActiveUnknownCount(which));
3622 sb.append("x");
3623 pw.println(sb.toString());
3624 }
3625
Dianne Hackborna1bd7922014-03-21 11:07:11 -07003626 final long mobileActiveAdjustedTime = getMobileRadioActiveAdjustedTime(which);
3627 if (mobileActiveAdjustedTime != 0) {
3628 sb.setLength(0);
3629 sb.append(prefix);
3630 sb.append(" Mobile radio active adjusted time: ");
3631 formatTimeMs(sb, mobileActiveAdjustedTime / 1000);
3632 sb.append("(");
3633 sb.append(formatRatioLocked(mobileActiveAdjustedTime, whichBatteryRealtime));
3634 sb.append(")");
3635 pw.println(sb.toString());
3636 }
3637
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003638 printControllerActivity(pw, sb, prefix, "Radio", getModemControllerActivity(), which);
3639
Dianne Hackborn77b987f2014-02-26 16:20:52 -08003640 pw.print(prefix);
3641 pw.print(" Wi-Fi total received: "); pw.print(formatBytesLocked(wifiRxTotalBytes));
3642 pw.print(", sent: "); pw.print(formatBytesLocked(wifiTxTotalBytes));
3643 pw.print(" (packets received "); pw.print(wifiRxTotalPackets);
3644 pw.print(", sent "); pw.print(wifiTxTotalPackets); pw.println(")");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07003645 sb.setLength(0);
3646 sb.append(prefix);
3647 sb.append(" Wifi on: "); formatTimeMs(sb, wifiOnTime / 1000);
3648 sb.append("("); sb.append(formatRatioLocked(wifiOnTime, whichBatteryRealtime));
3649 sb.append("), Wifi running: "); formatTimeMs(sb, wifiRunningTime / 1000);
3650 sb.append("("); sb.append(formatRatioLocked(wifiRunningTime, whichBatteryRealtime));
Dianne Hackbornca1bf212014-02-14 14:18:36 -08003651 sb.append(")");
3652 pw.println(sb.toString());
3653
3654 sb.setLength(0);
3655 sb.append(prefix);
3656 sb.append(" Wifi states:");
3657 didOne = false;
3658 for (int i=0; i<NUM_WIFI_STATES; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003659 final long time = getWifiStateTime(i, rawRealtime, which);
Dianne Hackbornca1bf212014-02-14 14:18:36 -08003660 if (time == 0) {
3661 continue;
3662 }
3663 sb.append("\n ");
3664 didOne = true;
3665 sb.append(WIFI_STATE_NAMES[i]);
3666 sb.append(" ");
3667 formatTimeMs(sb, time/1000);
3668 sb.append("(");
3669 sb.append(formatRatioLocked(time, whichBatteryRealtime));
3670 sb.append(") ");
Dianne Hackborn3251b902014-06-20 14:40:53 -07003671 sb.append(getWifiStateCount(i, which));
3672 sb.append("x");
3673 }
3674 if (!didOne) sb.append(" (no activity)");
3675 pw.println(sb.toString());
3676
3677 sb.setLength(0);
3678 sb.append(prefix);
3679 sb.append(" Wifi supplicant states:");
3680 didOne = false;
3681 for (int i=0; i<NUM_WIFI_SUPPL_STATES; i++) {
3682 final long time = getWifiSupplStateTime(i, rawRealtime, which);
3683 if (time == 0) {
3684 continue;
3685 }
3686 sb.append("\n ");
3687 didOne = true;
3688 sb.append(WIFI_SUPPL_STATE_NAMES[i]);
3689 sb.append(" ");
3690 formatTimeMs(sb, time/1000);
3691 sb.append("(");
3692 sb.append(formatRatioLocked(time, whichBatteryRealtime));
3693 sb.append(") ");
3694 sb.append(getWifiSupplStateCount(i, which));
3695 sb.append("x");
3696 }
3697 if (!didOne) sb.append(" (no activity)");
3698 pw.println(sb.toString());
3699
3700 sb.setLength(0);
3701 sb.append(prefix);
3702 sb.append(" Wifi signal levels:");
3703 didOne = false;
3704 for (int i=0; i<NUM_WIFI_SIGNAL_STRENGTH_BINS; i++) {
3705 final long time = getWifiSignalStrengthTime(i, rawRealtime, which);
3706 if (time == 0) {
3707 continue;
3708 }
3709 sb.append("\n ");
3710 sb.append(prefix);
3711 didOne = true;
3712 sb.append("level(");
3713 sb.append(i);
3714 sb.append(") ");
3715 formatTimeMs(sb, time/1000);
3716 sb.append("(");
3717 sb.append(formatRatioLocked(time, whichBatteryRealtime));
3718 sb.append(") ");
3719 sb.append(getWifiSignalStrengthCount(i, which));
Dianne Hackbornca1bf212014-02-14 14:18:36 -08003720 sb.append("x");
3721 }
3722 if (!didOne) sb.append(" (no activity)");
3723 pw.println(sb.toString());
3724
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003725 printControllerActivity(pw, sb, prefix, "WiFi", getWifiControllerActivity(), which);
Adam Lesinskie08af192015-03-25 16:42:59 -07003726
Adam Lesinski50e47602015-12-04 17:04:54 -08003727 pw.print(prefix);
3728 pw.print(" Bluetooth total received: "); pw.print(formatBytesLocked(btRxTotalBytes));
3729 pw.print(", sent: "); pw.println(formatBytesLocked(btTxTotalBytes));
3730
Adam Lesinski9f55cc72016-01-27 20:42:14 -08003731 final long bluetoothScanTimeMs = getBluetoothScanTime(rawRealtime, which) / 1000;
3732 sb.setLength(0);
3733 sb.append(prefix);
3734 sb.append(" Bluetooth scan time: "); formatTimeMs(sb, bluetoothScanTimeMs);
3735 pw.println(sb.toString());
3736
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003737 printControllerActivity(pw, sb, prefix, "Bluetooth", getBluetoothControllerActivity(),
3738 which);
Adam Lesinskie283d332015-04-16 12:29:25 -07003739
Dianne Hackbornca1bf212014-02-14 14:18:36 -08003740 pw.println();
The Android Open Source Project10592532009-03-18 17:39:46 -07003741
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07003742 if (which == STATS_SINCE_UNPLUGGED) {
The Android Open Source Project10592532009-03-18 17:39:46 -07003743 if (getIsOnBattery()) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07003744 pw.print(prefix); pw.println(" Device is currently unplugged");
3745 pw.print(prefix); pw.print(" Discharge cycle start level: ");
3746 pw.println(getDischargeStartLevel());
3747 pw.print(prefix); pw.print(" Discharge cycle current level: ");
3748 pw.println(getDischargeCurrentLevel());
Dianne Hackborn99d04522010-08-20 13:43:00 -07003749 } else {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07003750 pw.print(prefix); pw.println(" Device is currently plugged into power");
3751 pw.print(prefix); pw.print(" Last discharge cycle start level: ");
3752 pw.println(getDischargeStartLevel());
3753 pw.print(prefix); pw.print(" Last discharge cycle end level: ");
3754 pw.println(getDischargeCurrentLevel());
The Android Open Source Project10592532009-03-18 17:39:46 -07003755 }
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08003756 pw.print(prefix); pw.print(" Amount discharged while screen on: ");
3757 pw.println(getDischargeAmountScreenOn());
3758 pw.print(prefix); pw.print(" Amount discharged while screen off: ");
3759 pw.println(getDischargeAmountScreenOff());
Dianne Hackborn617f8772009-03-31 15:04:46 -07003760 pw.println(" ");
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07003761 } else {
3762 pw.print(prefix); pw.println(" Device battery use since last full charge");
3763 pw.print(prefix); pw.print(" Amount discharged (lower bound): ");
3764 pw.println(getLowDischargeAmountSinceCharge());
3765 pw.print(prefix); pw.print(" Amount discharged (upper bound): ");
3766 pw.println(getHighDischargeAmountSinceCharge());
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08003767 pw.print(prefix); pw.print(" Amount discharged while screen on: ");
3768 pw.println(getDischargeAmountScreenOnSinceCharge());
3769 pw.print(prefix); pw.print(" Amount discharged while screen off: ");
3770 pw.println(getDischargeAmountScreenOffSinceCharge());
Dianne Hackborn81038902012-11-26 17:04:09 -08003771 pw.println();
The Android Open Source Project10592532009-03-18 17:39:46 -07003772 }
Dianne Hackborn81038902012-11-26 17:04:09 -08003773
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003774 final BatteryStatsHelper helper = new BatteryStatsHelper(context, false, wifiOnly);
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003775 helper.create(this);
3776 helper.refreshStats(which, UserHandle.USER_ALL);
3777 List<BatterySipper> sippers = helper.getUsageList();
3778 if (sippers != null && sippers.size() > 0) {
3779 pw.print(prefix); pw.println(" Estimated power use (mAh):");
3780 pw.print(prefix); pw.print(" Capacity: ");
3781 printmAh(pw, helper.getPowerProfile().getBatteryCapacity());
Dianne Hackborn099bc622014-01-22 13:39:16 -08003782 pw.print(", Computed drain: "); printmAh(pw, helper.getComputedPower());
Dianne Hackborn536456f2014-05-23 16:51:05 -07003783 pw.print(", actual drain: "); printmAh(pw, helper.getMinDrainedPower());
3784 if (helper.getMinDrainedPower() != helper.getMaxDrainedPower()) {
3785 pw.print("-"); printmAh(pw, helper.getMaxDrainedPower());
3786 }
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003787 pw.println();
3788 for (int i=0; i<sippers.size(); i++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003789 final BatterySipper bs = sippers.get(i);
Adam Lesinski628ef9c2015-06-10 13:08:57 -07003790 pw.print(prefix);
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003791 switch (bs.drainType) {
3792 case IDLE:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07003793 pw.print(" Idle: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003794 break;
3795 case CELL:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07003796 pw.print(" Cell standby: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003797 break;
3798 case PHONE:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07003799 pw.print(" Phone calls: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003800 break;
3801 case WIFI:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07003802 pw.print(" Wifi: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003803 break;
3804 case BLUETOOTH:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07003805 pw.print(" Bluetooth: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003806 break;
3807 case SCREEN:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07003808 pw.print(" Screen: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003809 break;
Dianne Hackbornabc7c492014-06-30 16:57:46 -07003810 case FLASHLIGHT:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07003811 pw.print(" Flashlight: ");
Dianne Hackbornabc7c492014-06-30 16:57:46 -07003812 break;
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003813 case APP:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07003814 pw.print(" Uid ");
Dianne Hackbornd45665b2014-02-26 12:35:32 -08003815 UserHandle.formatUid(pw, bs.uidObj.getUid());
Adam Lesinski628ef9c2015-06-10 13:08:57 -07003816 pw.print(": ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003817 break;
3818 case USER:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07003819 pw.print(" User "); pw.print(bs.userId);
3820 pw.print(": ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003821 break;
3822 case UNACCOUNTED:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07003823 pw.print(" Unaccounted: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003824 break;
3825 case OVERCOUNTED:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07003826 pw.print(" Over-counted: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003827 break;
Ruben Brunk5b1308f2015-06-03 18:49:27 -07003828 case CAMERA:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07003829 pw.print(" Camera: ");
3830 break;
3831 default:
3832 pw.print(" ???: ");
Ruben Brunk5b1308f2015-06-03 18:49:27 -07003833 break;
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003834 }
Adam Lesinski628ef9c2015-06-10 13:08:57 -07003835 printmAh(pw, bs.totalPowerMah);
3836
Adam Lesinski57123002015-06-12 16:12:07 -07003837 if (bs.usagePowerMah != bs.totalPowerMah) {
3838 // If the usage (generic power) isn't the whole amount, we list out
3839 // what components are involved in the calculation.
3840
Adam Lesinski628ef9c2015-06-10 13:08:57 -07003841 pw.print(" (");
Adam Lesinski57123002015-06-12 16:12:07 -07003842 if (bs.usagePowerMah != 0) {
3843 pw.print(" usage=");
3844 printmAh(pw, bs.usagePowerMah);
3845 }
Adam Lesinski628ef9c2015-06-10 13:08:57 -07003846 if (bs.cpuPowerMah != 0) {
3847 pw.print(" cpu=");
3848 printmAh(pw, bs.cpuPowerMah);
3849 }
3850 if (bs.wakeLockPowerMah != 0) {
3851 pw.print(" wake=");
3852 printmAh(pw, bs.wakeLockPowerMah);
3853 }
3854 if (bs.mobileRadioPowerMah != 0) {
3855 pw.print(" radio=");
3856 printmAh(pw, bs.mobileRadioPowerMah);
3857 }
3858 if (bs.wifiPowerMah != 0) {
3859 pw.print(" wifi=");
3860 printmAh(pw, bs.wifiPowerMah);
3861 }
Adam Lesinski9f55cc72016-01-27 20:42:14 -08003862 if (bs.bluetoothPowerMah != 0) {
3863 pw.print(" bt=");
3864 printmAh(pw, bs.bluetoothPowerMah);
3865 }
Adam Lesinski628ef9c2015-06-10 13:08:57 -07003866 if (bs.gpsPowerMah != 0) {
3867 pw.print(" gps=");
3868 printmAh(pw, bs.gpsPowerMah);
3869 }
3870 if (bs.sensorPowerMah != 0) {
3871 pw.print(" sensor=");
3872 printmAh(pw, bs.sensorPowerMah);
3873 }
3874 if (bs.cameraPowerMah != 0) {
3875 pw.print(" camera=");
3876 printmAh(pw, bs.cameraPowerMah);
3877 }
3878 if (bs.flashlightPowerMah != 0) {
3879 pw.print(" flash=");
3880 printmAh(pw, bs.flashlightPowerMah);
3881 }
3882 pw.print(" )");
3883 }
3884 pw.println();
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003885 }
Dianne Hackbornc46809e2014-01-15 16:20:44 -08003886 pw.println();
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003887 }
3888
Dianne Hackbornd45665b2014-02-26 12:35:32 -08003889 sippers = helper.getMobilemsppList();
3890 if (sippers != null && sippers.size() > 0) {
3891 pw.print(prefix); pw.println(" Per-app mobile ms per packet:");
Dianne Hackborn77b987f2014-02-26 16:20:52 -08003892 long totalTime = 0;
Dianne Hackbornd45665b2014-02-26 12:35:32 -08003893 for (int i=0; i<sippers.size(); i++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003894 final BatterySipper bs = sippers.get(i);
Dianne Hackbornd45665b2014-02-26 12:35:32 -08003895 sb.setLength(0);
3896 sb.append(prefix); sb.append(" Uid ");
3897 UserHandle.formatUid(sb, bs.uidObj.getUid());
3898 sb.append(": "); sb.append(BatteryStatsHelper.makemAh(bs.mobilemspp));
3899 sb.append(" ("); sb.append(bs.mobileRxPackets+bs.mobileTxPackets);
3900 sb.append(" packets over "); formatTimeMsNoSpace(sb, bs.mobileActive);
Dianne Hackborn77b987f2014-02-26 16:20:52 -08003901 sb.append(") "); sb.append(bs.mobileActiveCount); sb.append("x");
Dianne Hackbornd45665b2014-02-26 12:35:32 -08003902 pw.println(sb.toString());
Dianne Hackborn77b987f2014-02-26 16:20:52 -08003903 totalTime += bs.mobileActive;
Dianne Hackbornd45665b2014-02-26 12:35:32 -08003904 }
Dianne Hackborn77b987f2014-02-26 16:20:52 -08003905 sb.setLength(0);
3906 sb.append(prefix);
3907 sb.append(" TOTAL TIME: ");
3908 formatTimeMs(sb, totalTime);
3909 sb.append("("); sb.append(formatRatioLocked(totalTime, whichBatteryRealtime));
3910 sb.append(")");
3911 pw.println(sb.toString());
Dianne Hackbornd45665b2014-02-26 12:35:32 -08003912 pw.println();
3913 }
3914
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003915 final Comparator<TimerEntry> timerComparator = new Comparator<TimerEntry>() {
3916 @Override
3917 public int compare(TimerEntry lhs, TimerEntry rhs) {
3918 long lhsTime = lhs.mTime;
3919 long rhsTime = rhs.mTime;
3920 if (lhsTime < rhsTime) {
3921 return 1;
3922 }
3923 if (lhsTime > rhsTime) {
3924 return -1;
3925 }
3926 return 0;
3927 }
3928 };
3929
3930 if (reqUid < 0) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003931 final Map<String, ? extends BatteryStats.Timer> kernelWakelocks
3932 = getKernelWakelockStats();
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003933 if (kernelWakelocks.size() > 0) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003934 final ArrayList<TimerEntry> ktimers = new ArrayList<>();
3935 for (Map.Entry<String, ? extends BatteryStats.Timer> ent
3936 : kernelWakelocks.entrySet()) {
3937 final BatteryStats.Timer timer = ent.getValue();
3938 final long totalTimeMillis = computeWakeLock(timer, rawRealtime, which);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003939 if (totalTimeMillis > 0) {
3940 ktimers.add(new TimerEntry(ent.getKey(), 0, timer, totalTimeMillis));
3941 }
3942 }
3943 if (ktimers.size() > 0) {
3944 Collections.sort(ktimers, timerComparator);
3945 pw.print(prefix); pw.println(" All kernel wake locks:");
3946 for (int i=0; i<ktimers.size(); i++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003947 final TimerEntry timer = ktimers.get(i);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003948 String linePrefix = ": ";
3949 sb.setLength(0);
3950 sb.append(prefix);
3951 sb.append(" Kernel Wake lock ");
3952 sb.append(timer.mName);
3953 linePrefix = printWakeLock(sb, timer.mTimer, rawRealtime, null,
3954 which, linePrefix);
3955 if (!linePrefix.equals(": ")) {
3956 sb.append(" realtime");
3957 // Only print out wake locks that were held
3958 pw.println(sb.toString());
3959 }
3960 }
3961 pw.println();
3962 }
3963 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08003964
Dianne Hackborna1bd7922014-03-21 11:07:11 -07003965 if (timers.size() > 0) {
3966 Collections.sort(timers, timerComparator);
3967 pw.print(prefix); pw.println(" All partial wake locks:");
3968 for (int i=0; i<timers.size(); i++) {
3969 TimerEntry timer = timers.get(i);
3970 sb.setLength(0);
3971 sb.append(" Wake lock ");
3972 UserHandle.formatUid(sb, timer.mId);
3973 sb.append(" ");
3974 sb.append(timer.mName);
3975 printWakeLock(sb, timer.mTimer, rawRealtime, null, which, ": ");
3976 sb.append(" realtime");
3977 pw.println(sb.toString());
3978 }
3979 timers.clear();
3980 pw.println();
Dianne Hackborn81038902012-11-26 17:04:09 -08003981 }
Dianne Hackborna1bd7922014-03-21 11:07:11 -07003982
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003983 final Map<String, ? extends Timer> wakeupReasons = getWakeupReasonStats();
Dianne Hackborna1bd7922014-03-21 11:07:11 -07003984 if (wakeupReasons.size() > 0) {
3985 pw.print(prefix); pw.println(" All wakeup reasons:");
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003986 final ArrayList<TimerEntry> reasons = new ArrayList<>();
Dianne Hackbornc3940bc2014-09-05 15:50:25 -07003987 for (Map.Entry<String, ? extends Timer> ent : wakeupReasons.entrySet()) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003988 final Timer timer = ent.getValue();
Dianne Hackbornc3940bc2014-09-05 15:50:25 -07003989 reasons.add(new TimerEntry(ent.getKey(), 0, timer,
3990 timer.getCountLocked(which)));
Dianne Hackborna1bd7922014-03-21 11:07:11 -07003991 }
3992 Collections.sort(reasons, timerComparator);
3993 for (int i=0; i<reasons.size(); i++) {
3994 TimerEntry timer = reasons.get(i);
3995 String linePrefix = ": ";
3996 sb.setLength(0);
3997 sb.append(prefix);
3998 sb.append(" Wakeup reason ");
3999 sb.append(timer.mName);
Dianne Hackbornc3940bc2014-09-05 15:50:25 -07004000 printWakeLock(sb, timer.mTimer, rawRealtime, null, which, ": ");
4001 sb.append(" realtime");
Dianne Hackborna1bd7922014-03-21 11:07:11 -07004002 pw.println(sb.toString());
4003 }
4004 pw.println();
4005 }
Dianne Hackborn81038902012-11-26 17:04:09 -08004006 }
Evan Millar22ac0432009-03-31 11:33:18 -07004007
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004008 for (int iu=0; iu<NU; iu++) {
4009 final int uid = uidStats.keyAt(iu);
Dianne Hackborne4a59512010-12-07 11:08:07 -08004010 if (reqUid >= 0 && uid != reqUid && uid != Process.SYSTEM_UID) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08004011 continue;
4012 }
4013
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004014 final Uid u = uidStats.valueAt(iu);
Dianne Hackborna4cc2052013-07-08 17:31:25 -07004015
4016 pw.print(prefix);
4017 pw.print(" ");
4018 UserHandle.formatUid(pw, uid);
4019 pw.println(":");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004020 boolean uidActivity = false;
Dianne Hackbornd45665b2014-02-26 12:35:32 -08004021
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004022 final long mobileRxBytes = u.getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which);
4023 final long mobileTxBytes = u.getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which);
4024 final long wifiRxBytes = u.getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which);
4025 final long wifiTxBytes = u.getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which);
Adam Lesinski50e47602015-12-04 17:04:54 -08004026 final long btRxBytes = u.getNetworkActivityBytes(NETWORK_BT_RX_DATA, which);
4027 final long btTxBytes = u.getNetworkActivityBytes(NETWORK_BT_TX_DATA, which);
4028
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004029 final long mobileRxPackets = u.getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which);
4030 final long mobileTxPackets = u.getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004031 final long wifiRxPackets = u.getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which);
4032 final long wifiTxPackets = u.getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which);
Adam Lesinski50e47602015-12-04 17:04:54 -08004033
4034 final long uidMobileActiveTime = u.getMobileRadioActiveTime(which);
4035 final int uidMobileActiveCount = u.getMobileRadioActiveCount(which);
4036
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004037 final long fullWifiLockOnTime = u.getFullWifiLockTime(rawRealtime, which);
4038 final long wifiScanTime = u.getWifiScanTime(rawRealtime, which);
4039 final int wifiScanCount = u.getWifiScanCount(which);
4040 final long uidWifiRunningTime = u.getWifiRunningTime(rawRealtime, which);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07004041
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004042 if (mobileRxBytes > 0 || mobileTxBytes > 0
4043 || mobileRxPackets > 0 || mobileTxPackets > 0) {
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07004044 pw.print(prefix); pw.print(" Mobile network: ");
4045 pw.print(formatBytesLocked(mobileRxBytes)); pw.print(" received, ");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004046 pw.print(formatBytesLocked(mobileTxBytes));
4047 pw.print(" sent (packets "); pw.print(mobileRxPackets);
4048 pw.print(" received, "); pw.print(mobileTxPackets); pw.println(" sent)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004049 }
Dianne Hackbornd45665b2014-02-26 12:35:32 -08004050 if (uidMobileActiveTime > 0 || uidMobileActiveCount > 0) {
4051 sb.setLength(0);
4052 sb.append(prefix); sb.append(" Mobile radio active: ");
4053 formatTimeMs(sb, uidMobileActiveTime / 1000);
4054 sb.append("(");
4055 sb.append(formatRatioLocked(uidMobileActiveTime, mobileActiveTime));
4056 sb.append(") "); sb.append(uidMobileActiveCount); sb.append("x");
4057 long packets = mobileRxPackets + mobileTxPackets;
4058 if (packets == 0) {
4059 packets = 1;
4060 }
4061 sb.append(" @ ");
4062 sb.append(BatteryStatsHelper.makemAh(uidMobileActiveTime / 1000 / (double)packets));
4063 sb.append(" mspp");
4064 pw.println(sb.toString());
4065 }
4066
Adam Lesinski21f76aa2016-01-25 12:27:06 -08004067 printControllerActivityIfInteresting(pw, sb, prefix + " ", "Modem",
4068 u.getModemControllerActivity(), which);
4069
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004070 if (wifiRxBytes > 0 || wifiTxBytes > 0 || wifiRxPackets > 0 || wifiTxPackets > 0) {
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07004071 pw.print(prefix); pw.print(" Wi-Fi network: ");
4072 pw.print(formatBytesLocked(wifiRxBytes)); pw.print(" received, ");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004073 pw.print(formatBytesLocked(wifiTxBytes));
4074 pw.print(" sent (packets "); pw.print(wifiRxPackets);
4075 pw.print(" received, "); pw.print(wifiTxPackets); pw.println(" sent)");
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07004076 }
4077
Dianne Hackborn62793e42015-03-09 11:15:41 -07004078 if (fullWifiLockOnTime != 0 || wifiScanTime != 0 || wifiScanCount != 0
Dianne Hackbornd45665b2014-02-26 12:35:32 -08004079 || uidWifiRunningTime != 0) {
4080 sb.setLength(0);
4081 sb.append(prefix); sb.append(" Wifi Running: ");
4082 formatTimeMs(sb, uidWifiRunningTime / 1000);
4083 sb.append("("); sb.append(formatRatioLocked(uidWifiRunningTime,
4084 whichBatteryRealtime)); sb.append(")\n");
4085 sb.append(prefix); sb.append(" Full Wifi Lock: ");
4086 formatTimeMs(sb, fullWifiLockOnTime / 1000);
4087 sb.append("("); sb.append(formatRatioLocked(fullWifiLockOnTime,
4088 whichBatteryRealtime)); sb.append(")\n");
4089 sb.append(prefix); sb.append(" Wifi Scan: ");
4090 formatTimeMs(sb, wifiScanTime / 1000);
4091 sb.append("("); sb.append(formatRatioLocked(wifiScanTime,
Dianne Hackborn62793e42015-03-09 11:15:41 -07004092 whichBatteryRealtime)); sb.append(") ");
4093 sb.append(wifiScanCount);
4094 sb.append("x");
Dianne Hackbornd45665b2014-02-26 12:35:32 -08004095 pw.println(sb.toString());
4096 }
4097
Adam Lesinski21f76aa2016-01-25 12:27:06 -08004098 printControllerActivityIfInteresting(pw, sb, prefix + " ", "WiFi",
4099 u.getWifiControllerActivity(), which);
Adam Lesinski049c88b2015-05-28 11:38:12 -07004100
Adam Lesinski50e47602015-12-04 17:04:54 -08004101 if (btRxBytes > 0 || btTxBytes > 0) {
4102 pw.print(prefix); pw.print(" Bluetooth network: ");
4103 pw.print(formatBytesLocked(btRxBytes)); pw.print(" received, ");
4104 pw.print(formatBytesLocked(btTxBytes));
4105 pw.println(" sent");
4106 }
4107
Adam Lesinski9f55cc72016-01-27 20:42:14 -08004108 uidActivity |= printTimer(pw, sb, u.getBluetoothScanTimer(), rawRealtime, which, prefix,
4109 "Bluetooth Scan");
4110
Dianne Hackborn617f8772009-03-31 15:04:46 -07004111 if (u.hasUserActivity()) {
4112 boolean hasData = false;
Raph Levien4c7a4a72012-08-03 14:32:39 -07004113 for (int i=0; i<Uid.NUM_USER_ACTIVITY_TYPES; i++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004114 final int val = u.getUserActivityCount(i, which);
Dianne Hackborn617f8772009-03-31 15:04:46 -07004115 if (val != 0) {
4116 if (!hasData) {
4117 sb.setLength(0);
4118 sb.append(" User activity: ");
4119 hasData = true;
4120 } else {
4121 sb.append(", ");
4122 }
4123 sb.append(val);
4124 sb.append(" ");
4125 sb.append(Uid.USER_ACTIVITY_TYPES[i]);
4126 }
4127 }
4128 if (hasData) {
4129 pw.println(sb.toString());
4130 }
4131 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004132
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004133 final ArrayMap<String, ? extends BatteryStats.Uid.Wakelock> wakelocks
4134 = u.getWakelockStats();
4135 long totalFullWakelock = 0, totalPartialWakelock = 0, totalWindowWakelock = 0;
Jeff Brown6a8bd7b2015-06-19 15:07:51 -07004136 long totalDrawWakelock = 0;
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004137 int countWakelock = 0;
4138 for (int iw=wakelocks.size()-1; iw>=0; iw--) {
4139 final Uid.Wakelock wl = wakelocks.valueAt(iw);
4140 String linePrefix = ": ";
4141 sb.setLength(0);
4142 sb.append(prefix);
4143 sb.append(" Wake lock ");
4144 sb.append(wakelocks.keyAt(iw));
4145 linePrefix = printWakeLock(sb, wl.getWakeTime(WAKE_TYPE_FULL), rawRealtime,
4146 "full", which, linePrefix);
4147 linePrefix = printWakeLock(sb, wl.getWakeTime(WAKE_TYPE_PARTIAL), rawRealtime,
4148 "partial", which, linePrefix);
4149 linePrefix = printWakeLock(sb, wl.getWakeTime(WAKE_TYPE_WINDOW), rawRealtime,
4150 "window", which, linePrefix);
Jeff Brown6a8bd7b2015-06-19 15:07:51 -07004151 linePrefix = printWakeLock(sb, wl.getWakeTime(WAKE_TYPE_DRAW), rawRealtime,
4152 "draw", which, linePrefix);
Adam Lesinski9425fe22015-06-19 12:02:13 -07004153 sb.append(" realtime");
4154 pw.println(sb.toString());
4155 uidActivity = true;
4156 countWakelock++;
4157
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004158 totalFullWakelock += computeWakeLock(wl.getWakeTime(WAKE_TYPE_FULL),
4159 rawRealtime, which);
4160 totalPartialWakelock += computeWakeLock(wl.getWakeTime(WAKE_TYPE_PARTIAL),
4161 rawRealtime, which);
4162 totalWindowWakelock += computeWakeLock(wl.getWakeTime(WAKE_TYPE_WINDOW),
4163 rawRealtime, which);
Jeff Brown6a8bd7b2015-06-19 15:07:51 -07004164 totalDrawWakelock += computeWakeLock(wl.getWakeTime(WAKE_TYPE_DRAW),
Adam Lesinski9425fe22015-06-19 12:02:13 -07004165 rawRealtime, which);
Dianne Hackbornfdb19562014-07-11 16:03:36 -07004166 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004167 if (countWakelock > 1) {
4168 if (totalFullWakelock != 0 || totalPartialWakelock != 0
4169 || totalWindowWakelock != 0) {
Dianne Hackbornfdb19562014-07-11 16:03:36 -07004170 sb.setLength(0);
4171 sb.append(prefix);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004172 sb.append(" TOTAL wake: ");
4173 boolean needComma = false;
4174 if (totalFullWakelock != 0) {
4175 needComma = true;
4176 formatTimeMs(sb, totalFullWakelock);
4177 sb.append("full");
Dianne Hackbornfdb19562014-07-11 16:03:36 -07004178 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004179 if (totalPartialWakelock != 0) {
4180 if (needComma) {
4181 sb.append(", ");
4182 }
4183 needComma = true;
4184 formatTimeMs(sb, totalPartialWakelock);
4185 sb.append("partial");
4186 }
4187 if (totalWindowWakelock != 0) {
4188 if (needComma) {
4189 sb.append(", ");
4190 }
4191 needComma = true;
4192 formatTimeMs(sb, totalWindowWakelock);
4193 sb.append("window");
4194 }
Jeff Brown6a8bd7b2015-06-19 15:07:51 -07004195 if (totalDrawWakelock != 0) {
Adam Lesinski9425fe22015-06-19 12:02:13 -07004196 if (needComma) {
4197 sb.append(",");
4198 }
4199 needComma = true;
Jeff Brown6a8bd7b2015-06-19 15:07:51 -07004200 formatTimeMs(sb, totalDrawWakelock);
4201 sb.append("draw");
Adam Lesinski9425fe22015-06-19 12:02:13 -07004202 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004203 sb.append(" realtime");
Dianne Hackbornfdb19562014-07-11 16:03:36 -07004204 pw.println(sb.toString());
Dianne Hackbornfdb19562014-07-11 16:03:36 -07004205 }
4206 }
4207
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004208 final ArrayMap<String, ? extends Timer> syncs = u.getSyncStats();
4209 for (int isy=syncs.size()-1; isy>=0; isy--) {
4210 final Timer timer = syncs.valueAt(isy);
4211 // Convert from microseconds to milliseconds with rounding
4212 final long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000;
4213 final int count = timer.getCountLocked(which);
4214 sb.setLength(0);
4215 sb.append(prefix);
4216 sb.append(" Sync ");
4217 sb.append(syncs.keyAt(isy));
4218 sb.append(": ");
4219 if (totalTime != 0) {
4220 formatTimeMs(sb, totalTime);
4221 sb.append("realtime (");
4222 sb.append(count);
4223 sb.append(" times)");
4224 } else {
4225 sb.append("(not used)");
4226 }
4227 pw.println(sb.toString());
4228 uidActivity = true;
4229 }
4230
4231 final ArrayMap<String, ? extends Timer> jobs = u.getJobStats();
4232 for (int ij=jobs.size()-1; ij>=0; ij--) {
4233 final Timer timer = jobs.valueAt(ij);
4234 // Convert from microseconds to milliseconds with rounding
4235 final long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000;
4236 final int count = timer.getCountLocked(which);
4237 sb.setLength(0);
4238 sb.append(prefix);
4239 sb.append(" Job ");
4240 sb.append(jobs.keyAt(ij));
4241 sb.append(": ");
4242 if (totalTime != 0) {
4243 formatTimeMs(sb, totalTime);
4244 sb.append("realtime (");
4245 sb.append(count);
4246 sb.append(" times)");
4247 } else {
4248 sb.append("(not used)");
4249 }
4250 pw.println(sb.toString());
4251 uidActivity = true;
4252 }
4253
Ruben Brunk6d2c3632015-05-26 17:32:16 -07004254 uidActivity |= printTimer(pw, sb, u.getFlashlightTurnedOnTimer(), rawRealtime, which,
4255 prefix, "Flashlight");
4256 uidActivity |= printTimer(pw, sb, u.getCameraTurnedOnTimer(), rawRealtime, which,
4257 prefix, "Camera");
4258 uidActivity |= printTimer(pw, sb, u.getVideoTurnedOnTimer(), rawRealtime, which,
4259 prefix, "Video");
4260 uidActivity |= printTimer(pw, sb, u.getAudioTurnedOnTimer(), rawRealtime, which,
4261 prefix, "Audio");
4262
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004263 final SparseArray<? extends BatteryStats.Uid.Sensor> sensors = u.getSensorStats();
4264 final int NSE = sensors.size();
Dianne Hackborn61659e52014-07-09 16:13:01 -07004265 for (int ise=0; ise<NSE; ise++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004266 final Uid.Sensor se = sensors.valueAt(ise);
4267 final int sensorNumber = sensors.keyAt(ise);
Dianne Hackborn61659e52014-07-09 16:13:01 -07004268 sb.setLength(0);
4269 sb.append(prefix);
4270 sb.append(" Sensor ");
4271 int handle = se.getHandle();
4272 if (handle == Uid.Sensor.GPS) {
4273 sb.append("GPS");
4274 } else {
4275 sb.append(handle);
4276 }
4277 sb.append(": ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004278
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004279 final Timer timer = se.getSensorTime();
Dianne Hackborn61659e52014-07-09 16:13:01 -07004280 if (timer != null) {
4281 // Convert from microseconds to milliseconds with rounding
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004282 final long totalTime = (timer.getTotalTimeLocked(
Dianne Hackborn61659e52014-07-09 16:13:01 -07004283 rawRealtime, which) + 500) / 1000;
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004284 final int count = timer.getCountLocked(which);
Dianne Hackborn61659e52014-07-09 16:13:01 -07004285 //timer.logState();
4286 if (totalTime != 0) {
4287 formatTimeMs(sb, totalTime);
4288 sb.append("realtime (");
4289 sb.append(count);
4290 sb.append(" times)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004291 } else {
4292 sb.append("(not used)");
4293 }
Dianne Hackborn61659e52014-07-09 16:13:01 -07004294 } else {
4295 sb.append("(not used)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004296 }
Dianne Hackborn61659e52014-07-09 16:13:01 -07004297
4298 pw.println(sb.toString());
4299 uidActivity = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004300 }
4301
Ruben Brunk6d2c3632015-05-26 17:32:16 -07004302 uidActivity |= printTimer(pw, sb, u.getVibratorOnTimer(), rawRealtime, which, prefix,
4303 "Vibrator");
4304 uidActivity |= printTimer(pw, sb, u.getForegroundActivityTimer(), rawRealtime, which,
4305 prefix, "Foreground activities");
Jeff Sharkey3e013e82013-04-25 14:48:19 -07004306
Dianne Hackborn61659e52014-07-09 16:13:01 -07004307 long totalStateTime = 0;
4308 for (int ips=0; ips<Uid.NUM_PROCESS_STATE; ips++) {
4309 long time = u.getProcessStateTime(ips, rawRealtime, which);
4310 if (time > 0) {
4311 totalStateTime += time;
4312 sb.setLength(0);
4313 sb.append(prefix);
4314 sb.append(" ");
4315 sb.append(Uid.PROCESS_STATE_NAMES[ips]);
4316 sb.append(" for: ");
Dianne Hackborna8d10942015-11-19 17:55:19 -08004317 formatTimeMs(sb, (time + 500) / 1000);
Dianne Hackborn61659e52014-07-09 16:13:01 -07004318 pw.println(sb.toString());
4319 uidActivity = true;
4320 }
4321 }
Dianne Hackborna8d10942015-11-19 17:55:19 -08004322 if (totalStateTime > 0) {
4323 sb.setLength(0);
4324 sb.append(prefix);
4325 sb.append(" Total running: ");
4326 formatTimeMs(sb, (totalStateTime + 500) / 1000);
4327 pw.println(sb.toString());
4328 }
Dianne Hackborn61659e52014-07-09 16:13:01 -07004329
Adam Lesinski06af1fa2015-05-05 17:35:35 -07004330 final long userCpuTimeUs = u.getUserCpuTimeUs(which);
4331 final long systemCpuTimeUs = u.getSystemCpuTimeUs(which);
Adam Lesinskia7a4ccc2015-06-26 17:43:04 -07004332 final long powerCpuMaUs = u.getCpuPowerMaUs(which);
4333 if (userCpuTimeUs > 0 || systemCpuTimeUs > 0 || powerCpuMaUs > 0) {
Adam Lesinski06af1fa2015-05-05 17:35:35 -07004334 sb.setLength(0);
4335 sb.append(prefix);
Adam Lesinski72478f02015-06-17 15:39:43 -07004336 sb.append(" Total cpu time: u=");
4337 formatTimeMs(sb, userCpuTimeUs / 1000);
4338 sb.append("s=");
4339 formatTimeMs(sb, systemCpuTimeUs / 1000);
Adam Lesinskia7a4ccc2015-06-26 17:43:04 -07004340 sb.append("p=");
4341 printmAh(sb, powerCpuMaUs / (1000.0 * 1000.0 * 60.0 * 60.0));
4342 sb.append("mAh");
Adam Lesinski06af1fa2015-05-05 17:35:35 -07004343 pw.println(sb.toString());
4344 }
4345
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004346 final ArrayMap<String, ? extends BatteryStats.Uid.Proc> processStats
4347 = u.getProcessStats();
4348 for (int ipr=processStats.size()-1; ipr>=0; ipr--) {
4349 final Uid.Proc ps = processStats.valueAt(ipr);
4350 long userTime;
4351 long systemTime;
4352 long foregroundTime;
4353 int starts;
4354 int numExcessive;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004355
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004356 userTime = ps.getUserTime(which);
4357 systemTime = ps.getSystemTime(which);
4358 foregroundTime = ps.getForegroundTime(which);
4359 starts = ps.getStarts(which);
4360 final int numCrashes = ps.getNumCrashes(which);
4361 final int numAnrs = ps.getNumAnrs(which);
4362 numExcessive = which == STATS_SINCE_CHARGED
4363 ? ps.countExcessivePowers() : 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004364
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004365 if (userTime != 0 || systemTime != 0 || foregroundTime != 0 || starts != 0
4366 || numExcessive != 0 || numCrashes != 0 || numAnrs != 0) {
4367 sb.setLength(0);
4368 sb.append(prefix); sb.append(" Proc ");
4369 sb.append(processStats.keyAt(ipr)); sb.append(":\n");
4370 sb.append(prefix); sb.append(" CPU: ");
4371 formatTimeMs(sb, userTime); sb.append("usr + ");
4372 formatTimeMs(sb, systemTime); sb.append("krn ; ");
4373 formatTimeMs(sb, foregroundTime); sb.append("fg");
4374 if (starts != 0 || numCrashes != 0 || numAnrs != 0) {
4375 sb.append("\n"); sb.append(prefix); sb.append(" ");
4376 boolean hasOne = false;
4377 if (starts != 0) {
4378 hasOne = true;
4379 sb.append(starts); sb.append(" starts");
Dianne Hackborn0d903a82010-09-07 23:51:03 -07004380 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004381 if (numCrashes != 0) {
4382 if (hasOne) {
4383 sb.append(", ");
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07004384 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004385 hasOne = true;
4386 sb.append(numCrashes); sb.append(" crashes");
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07004387 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004388 if (numAnrs != 0) {
4389 if (hasOne) {
4390 sb.append(", ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004391 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004392 sb.append(numAnrs); sb.append(" anrs");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004393 }
4394 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004395 pw.println(sb.toString());
4396 for (int e=0; e<numExcessive; e++) {
4397 Uid.Proc.ExcessivePower ew = ps.getExcessivePower(e);
4398 if (ew != null) {
4399 pw.print(prefix); pw.print(" * Killed for ");
4400 if (ew.type == Uid.Proc.ExcessivePower.TYPE_WAKE) {
4401 pw.print("wake lock");
4402 } else if (ew.type == Uid.Proc.ExcessivePower.TYPE_CPU) {
4403 pw.print("cpu");
4404 } else {
4405 pw.print("unknown");
4406 }
4407 pw.print(" use: ");
4408 TimeUtils.formatDuration(ew.usedTime, pw);
4409 pw.print(" over ");
4410 TimeUtils.formatDuration(ew.overTime, pw);
4411 if (ew.overTime != 0) {
4412 pw.print(" (");
4413 pw.print((ew.usedTime*100)/ew.overTime);
4414 pw.println("%)");
4415 }
4416 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004417 }
4418 uidActivity = true;
4419 }
4420 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004421
4422 final ArrayMap<String, ? extends BatteryStats.Uid.Pkg> packageStats
4423 = u.getPackageStats();
4424 for (int ipkg=packageStats.size()-1; ipkg>=0; ipkg--) {
4425 pw.print(prefix); pw.print(" Apk "); pw.print(packageStats.keyAt(ipkg));
4426 pw.println(":");
4427 boolean apkActivity = false;
4428 final Uid.Pkg ps = packageStats.valueAt(ipkg);
4429 final ArrayMap<String, ? extends Counter> alarms = ps.getWakeupAlarmStats();
4430 for (int iwa=alarms.size()-1; iwa>=0; iwa--) {
4431 pw.print(prefix); pw.print(" Wakeup alarm ");
4432 pw.print(alarms.keyAt(iwa)); pw.print(": ");
4433 pw.print(alarms.valueAt(iwa).getCountLocked(which));
4434 pw.println(" times");
4435 apkActivity = true;
4436 }
4437 final ArrayMap<String, ? extends Uid.Pkg.Serv> serviceStats = ps.getServiceStats();
4438 for (int isvc=serviceStats.size()-1; isvc>=0; isvc--) {
4439 final BatteryStats.Uid.Pkg.Serv ss = serviceStats.valueAt(isvc);
4440 final long startTime = ss.getStartTime(batteryUptime, which);
4441 final int starts = ss.getStarts(which);
4442 final int launches = ss.getLaunches(which);
4443 if (startTime != 0 || starts != 0 || launches != 0) {
4444 sb.setLength(0);
4445 sb.append(prefix); sb.append(" Service ");
4446 sb.append(serviceStats.keyAt(isvc)); sb.append(":\n");
4447 sb.append(prefix); sb.append(" Created for: ");
4448 formatTimeMs(sb, startTime / 1000);
4449 sb.append("uptime\n");
4450 sb.append(prefix); sb.append(" Starts: ");
4451 sb.append(starts);
4452 sb.append(", launches: "); sb.append(launches);
4453 pw.println(sb.toString());
4454 apkActivity = true;
4455 }
4456 }
4457 if (!apkActivity) {
4458 pw.print(prefix); pw.println(" (nothing executed)");
4459 }
4460 uidActivity = true;
4461 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004462 if (!uidActivity) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004463 pw.print(prefix); pw.println(" (nothing executed)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004464 }
4465 }
4466 }
4467
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08004468 static void printBitDescriptions(PrintWriter pw, int oldval, int newval, HistoryTag wakelockTag,
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004469 BitDescription[] descriptions, boolean longNames) {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07004470 int diff = oldval ^ newval;
4471 if (diff == 0) return;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08004472 boolean didWake = false;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07004473 for (int i=0; i<descriptions.length; i++) {
4474 BitDescription bd = descriptions[i];
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08004475 if ((diff&bd.mask) != 0) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004476 pw.print(longNames ? " " : ",");
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07004477 if (bd.shift < 0) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08004478 pw.print((newval&bd.mask) != 0 ? "+" : "-");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004479 pw.print(longNames ? bd.name : bd.shortName);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08004480 if (bd.mask == HistoryItem.STATE_WAKE_LOCK_FLAG && wakelockTag != null) {
4481 didWake = true;
4482 pw.print("=");
4483 if (longNames) {
4484 UserHandle.formatUid(pw, wakelockTag.uid);
4485 pw.print(":\"");
4486 pw.print(wakelockTag.string);
4487 pw.print("\"");
4488 } else {
4489 pw.print(wakelockTag.poolIdx);
4490 }
4491 }
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07004492 } else {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004493 pw.print(longNames ? bd.name : bd.shortName);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07004494 pw.print("=");
4495 int val = (newval&bd.mask)>>bd.shift;
4496 if (bd.values != null && val >= 0 && val < bd.values.length) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004497 pw.print(longNames? bd.values[val] : bd.shortValues[val]);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07004498 } else {
4499 pw.print(val);
4500 }
4501 }
4502 }
4503 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08004504 if (!didWake && wakelockTag != null) {
Ashish Sharma81850c42014-05-05 13:57:07 -07004505 pw.print(longNames ? " wake_lock=" : ",w=");
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08004506 if (longNames) {
4507 UserHandle.formatUid(pw, wakelockTag.uid);
4508 pw.print(":\"");
4509 pw.print(wakelockTag.string);
4510 pw.print("\"");
4511 } else {
4512 pw.print(wakelockTag.poolIdx);
4513 }
4514 }
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07004515 }
4516
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004517 public void prepareForDumpLocked() {
4518 }
4519
4520 public static class HistoryPrinter {
4521 int oldState = 0;
Dianne Hackborna1bd7922014-03-21 11:07:11 -07004522 int oldState2 = 0;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004523 int oldLevel = -1;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004524 int oldStatus = -1;
4525 int oldHealth = -1;
4526 int oldPlug = -1;
4527 int oldTemp = -1;
4528 int oldVolt = -1;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004529 long lastTime = -1;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004530
Dianne Hackborn3251b902014-06-20 14:40:53 -07004531 void reset() {
4532 oldState = oldState2 = 0;
4533 oldLevel = -1;
4534 oldStatus = -1;
4535 oldHealth = -1;
4536 oldPlug = -1;
4537 oldTemp = -1;
4538 oldVolt = -1;
4539 }
4540
Dianne Hackborn99009ea2014-04-18 16:23:42 -07004541 public void printNextItem(PrintWriter pw, HistoryItem rec, long baseTime, boolean checkin,
Dianne Hackborna1bd7922014-03-21 11:07:11 -07004542 boolean verbose) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004543 if (!checkin) {
4544 pw.print(" ");
Dianne Hackborn99009ea2014-04-18 16:23:42 -07004545 TimeUtils.formatDuration(rec.time - baseTime, pw, TimeUtils.HUNDRED_DAY_FIELD_LEN);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08004546 pw.print(" (");
4547 pw.print(rec.numReadInts);
4548 pw.print(") ");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004549 } else {
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07004550 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
4551 pw.print(HISTORY_DATA); pw.print(',');
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004552 if (lastTime < 0) {
Dianne Hackborn99009ea2014-04-18 16:23:42 -07004553 pw.print(rec.time - baseTime);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004554 } else {
Dianne Hackborn99009ea2014-04-18 16:23:42 -07004555 pw.print(rec.time - lastTime);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004556 }
4557 lastTime = rec.time;
4558 }
4559 if (rec.cmd == HistoryItem.CMD_START) {
4560 if (checkin) {
4561 pw.print(":");
4562 }
4563 pw.println("START");
Dianne Hackborn3251b902014-06-20 14:40:53 -07004564 reset();
Dianne Hackborn37de0982014-05-09 09:32:18 -07004565 } else if (rec.cmd == HistoryItem.CMD_CURRENT_TIME
4566 || rec.cmd == HistoryItem.CMD_RESET) {
Dianne Hackborne5167ca2014-03-08 14:39:10 -08004567 if (checkin) {
4568 pw.print(":");
4569 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07004570 if (rec.cmd == HistoryItem.CMD_RESET) {
4571 pw.print("RESET:");
Dianne Hackborn3251b902014-06-20 14:40:53 -07004572 reset();
Dianne Hackborn37de0982014-05-09 09:32:18 -07004573 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08004574 pw.print("TIME:");
4575 if (checkin) {
4576 pw.println(rec.currentTime);
4577 } else {
4578 pw.print(" ");
4579 pw.println(DateFormat.format("yyyy-MM-dd-HH-mm-ss",
4580 rec.currentTime).toString());
4581 }
Dianne Hackborn29cd7f12015-01-08 10:37:05 -08004582 } else if (rec.cmd == HistoryItem.CMD_SHUTDOWN) {
4583 if (checkin) {
4584 pw.print(":");
4585 }
4586 pw.println("SHUTDOWN");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004587 } else if (rec.cmd == HistoryItem.CMD_OVERFLOW) {
4588 if (checkin) {
4589 pw.print(":");
4590 }
4591 pw.println("*OVERFLOW*");
4592 } else {
4593 if (!checkin) {
4594 if (rec.batteryLevel < 10) pw.print("00");
4595 else if (rec.batteryLevel < 100) pw.print("0");
4596 pw.print(rec.batteryLevel);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07004597 if (verbose) {
4598 pw.print(" ");
4599 if (rec.states < 0) ;
4600 else if (rec.states < 0x10) pw.print("0000000");
4601 else if (rec.states < 0x100) pw.print("000000");
4602 else if (rec.states < 0x1000) pw.print("00000");
4603 else if (rec.states < 0x10000) pw.print("0000");
4604 else if (rec.states < 0x100000) pw.print("000");
4605 else if (rec.states < 0x1000000) pw.print("00");
4606 else if (rec.states < 0x10000000) pw.print("0");
4607 pw.print(Integer.toHexString(rec.states));
4608 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004609 } else {
4610 if (oldLevel != rec.batteryLevel) {
4611 oldLevel = rec.batteryLevel;
4612 pw.print(",Bl="); pw.print(rec.batteryLevel);
4613 }
4614 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004615 if (oldStatus != rec.batteryStatus) {
4616 oldStatus = rec.batteryStatus;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004617 pw.print(checkin ? ",Bs=" : " status=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004618 switch (oldStatus) {
4619 case BatteryManager.BATTERY_STATUS_UNKNOWN:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004620 pw.print(checkin ? "?" : "unknown");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004621 break;
4622 case BatteryManager.BATTERY_STATUS_CHARGING:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004623 pw.print(checkin ? "c" : "charging");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004624 break;
4625 case BatteryManager.BATTERY_STATUS_DISCHARGING:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004626 pw.print(checkin ? "d" : "discharging");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004627 break;
4628 case BatteryManager.BATTERY_STATUS_NOT_CHARGING:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004629 pw.print(checkin ? "n" : "not-charging");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004630 break;
4631 case BatteryManager.BATTERY_STATUS_FULL:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004632 pw.print(checkin ? "f" : "full");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004633 break;
4634 default:
4635 pw.print(oldStatus);
4636 break;
4637 }
4638 }
4639 if (oldHealth != rec.batteryHealth) {
4640 oldHealth = rec.batteryHealth;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004641 pw.print(checkin ? ",Bh=" : " health=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004642 switch (oldHealth) {
4643 case BatteryManager.BATTERY_HEALTH_UNKNOWN:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004644 pw.print(checkin ? "?" : "unknown");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004645 break;
4646 case BatteryManager.BATTERY_HEALTH_GOOD:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004647 pw.print(checkin ? "g" : "good");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004648 break;
4649 case BatteryManager.BATTERY_HEALTH_OVERHEAT:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004650 pw.print(checkin ? "h" : "overheat");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004651 break;
4652 case BatteryManager.BATTERY_HEALTH_DEAD:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004653 pw.print(checkin ? "d" : "dead");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004654 break;
4655 case BatteryManager.BATTERY_HEALTH_OVER_VOLTAGE:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004656 pw.print(checkin ? "v" : "over-voltage");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004657 break;
4658 case BatteryManager.BATTERY_HEALTH_UNSPECIFIED_FAILURE:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004659 pw.print(checkin ? "f" : "failure");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004660 break;
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08004661 case BatteryManager.BATTERY_HEALTH_COLD:
4662 pw.print(checkin ? "c" : "cold");
4663 break;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004664 default:
4665 pw.print(oldHealth);
4666 break;
4667 }
4668 }
4669 if (oldPlug != rec.batteryPlugType) {
4670 oldPlug = rec.batteryPlugType;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004671 pw.print(checkin ? ",Bp=" : " plug=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004672 switch (oldPlug) {
4673 case 0:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004674 pw.print(checkin ? "n" : "none");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004675 break;
4676 case BatteryManager.BATTERY_PLUGGED_AC:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004677 pw.print(checkin ? "a" : "ac");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004678 break;
4679 case BatteryManager.BATTERY_PLUGGED_USB:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004680 pw.print(checkin ? "u" : "usb");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004681 break;
Brian Muramatsu37a37f42012-08-14 15:21:02 -07004682 case BatteryManager.BATTERY_PLUGGED_WIRELESS:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004683 pw.print(checkin ? "w" : "wireless");
Brian Muramatsu37a37f42012-08-14 15:21:02 -07004684 break;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004685 default:
4686 pw.print(oldPlug);
4687 break;
4688 }
4689 }
4690 if (oldTemp != rec.batteryTemperature) {
4691 oldTemp = rec.batteryTemperature;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004692 pw.print(checkin ? ",Bt=" : " temp=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004693 pw.print(oldTemp);
4694 }
4695 if (oldVolt != rec.batteryVoltage) {
4696 oldVolt = rec.batteryVoltage;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004697 pw.print(checkin ? ",Bv=" : " volt=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004698 pw.print(oldVolt);
4699 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08004700 printBitDescriptions(pw, oldState, rec.states, rec.wakelockTag,
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004701 HISTORY_STATE_DESCRIPTIONS, !checkin);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07004702 printBitDescriptions(pw, oldState2, rec.states2, null,
4703 HISTORY_STATE2_DESCRIPTIONS, !checkin);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08004704 if (rec.wakeReasonTag != null) {
4705 if (checkin) {
Dianne Hackbornd06dcfd2014-05-02 13:49:30 -07004706 pw.print(",wr=");
Dianne Hackbornc51cf032014-03-02 19:08:15 -08004707 pw.print(rec.wakeReasonTag.poolIdx);
4708 } else {
4709 pw.print(" wake_reason=");
4710 pw.print(rec.wakeReasonTag.uid);
4711 pw.print(":\"");
4712 pw.print(rec.wakeReasonTag.string);
4713 pw.print("\"");
4714 }
4715 }
Dianne Hackborn099bc622014-01-22 13:39:16 -08004716 if (rec.eventCode != HistoryItem.EVENT_NONE) {
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08004717 pw.print(checkin ? "," : " ");
4718 if ((rec.eventCode&HistoryItem.EVENT_FLAG_START) != 0) {
4719 pw.print("+");
4720 } else if ((rec.eventCode&HistoryItem.EVENT_FLAG_FINISH) != 0) {
4721 pw.print("-");
Dianne Hackborn099bc622014-01-22 13:39:16 -08004722 }
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08004723 String[] eventNames = checkin ? HISTORY_EVENT_CHECKIN_NAMES
4724 : HISTORY_EVENT_NAMES;
4725 int idx = rec.eventCode & ~(HistoryItem.EVENT_FLAG_START
4726 | HistoryItem.EVENT_FLAG_FINISH);
4727 if (idx >= 0 && idx < eventNames.length) {
4728 pw.print(eventNames[idx]);
4729 } else {
4730 pw.print(checkin ? "Ev" : "event");
4731 pw.print(idx);
4732 }
4733 pw.print("=");
Dianne Hackborn099bc622014-01-22 13:39:16 -08004734 if (checkin) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08004735 pw.print(rec.eventTag.poolIdx);
Dianne Hackborn099bc622014-01-22 13:39:16 -08004736 } else {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08004737 UserHandle.formatUid(pw, rec.eventTag.uid);
4738 pw.print(":\"");
4739 pw.print(rec.eventTag.string);
4740 pw.print("\"");
Dianne Hackborn099bc622014-01-22 13:39:16 -08004741 }
4742 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004743 pw.println();
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08004744 if (rec.stepDetails != null) {
4745 if (!checkin) {
4746 pw.print(" Details: cpu=");
4747 pw.print(rec.stepDetails.userTime);
4748 pw.print("u+");
4749 pw.print(rec.stepDetails.systemTime);
4750 pw.print("s");
4751 if (rec.stepDetails.appCpuUid1 >= 0) {
4752 pw.print(" (");
4753 printStepCpuUidDetails(pw, rec.stepDetails.appCpuUid1,
4754 rec.stepDetails.appCpuUTime1, rec.stepDetails.appCpuSTime1);
4755 if (rec.stepDetails.appCpuUid2 >= 0) {
4756 pw.print(", ");
4757 printStepCpuUidDetails(pw, rec.stepDetails.appCpuUid2,
4758 rec.stepDetails.appCpuUTime2, rec.stepDetails.appCpuSTime2);
4759 }
4760 if (rec.stepDetails.appCpuUid3 >= 0) {
4761 pw.print(", ");
4762 printStepCpuUidDetails(pw, rec.stepDetails.appCpuUid3,
4763 rec.stepDetails.appCpuUTime3, rec.stepDetails.appCpuSTime3);
4764 }
4765 pw.print(')');
4766 }
4767 pw.println();
4768 pw.print(" /proc/stat=");
4769 pw.print(rec.stepDetails.statUserTime);
4770 pw.print(" usr, ");
4771 pw.print(rec.stepDetails.statSystemTime);
4772 pw.print(" sys, ");
4773 pw.print(rec.stepDetails.statIOWaitTime);
4774 pw.print(" io, ");
4775 pw.print(rec.stepDetails.statIrqTime);
4776 pw.print(" irq, ");
4777 pw.print(rec.stepDetails.statSoftIrqTime);
4778 pw.print(" sirq, ");
4779 pw.print(rec.stepDetails.statIdlTime);
4780 pw.print(" idle");
4781 int totalRun = rec.stepDetails.statUserTime + rec.stepDetails.statSystemTime
4782 + rec.stepDetails.statIOWaitTime + rec.stepDetails.statIrqTime
4783 + rec.stepDetails.statSoftIrqTime;
4784 int total = totalRun + rec.stepDetails.statIdlTime;
4785 if (total > 0) {
4786 pw.print(" (");
4787 float perc = ((float)totalRun) / ((float)total) * 100;
4788 pw.print(String.format("%.1f%%", perc));
4789 pw.print(" of ");
4790 StringBuilder sb = new StringBuilder(64);
4791 formatTimeMsNoSpace(sb, total*10);
4792 pw.print(sb);
4793 pw.print(")");
4794 }
4795 pw.println();
4796 } else {
4797 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
4798 pw.print(HISTORY_DATA); pw.print(",0,Dcpu=");
4799 pw.print(rec.stepDetails.userTime);
4800 pw.print(":");
4801 pw.print(rec.stepDetails.systemTime);
4802 if (rec.stepDetails.appCpuUid1 >= 0) {
4803 printStepCpuUidCheckinDetails(pw, rec.stepDetails.appCpuUid1,
4804 rec.stepDetails.appCpuUTime1, rec.stepDetails.appCpuSTime1);
4805 if (rec.stepDetails.appCpuUid2 >= 0) {
4806 printStepCpuUidCheckinDetails(pw, rec.stepDetails.appCpuUid2,
4807 rec.stepDetails.appCpuUTime2, rec.stepDetails.appCpuSTime2);
4808 }
4809 if (rec.stepDetails.appCpuUid3 >= 0) {
4810 printStepCpuUidCheckinDetails(pw, rec.stepDetails.appCpuUid3,
4811 rec.stepDetails.appCpuUTime3, rec.stepDetails.appCpuSTime3);
4812 }
4813 }
4814 pw.println();
4815 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
4816 pw.print(HISTORY_DATA); pw.print(",0,Dpst=");
4817 pw.print(rec.stepDetails.statUserTime);
4818 pw.print(',');
4819 pw.print(rec.stepDetails.statSystemTime);
4820 pw.print(',');
4821 pw.print(rec.stepDetails.statIOWaitTime);
4822 pw.print(',');
4823 pw.print(rec.stepDetails.statIrqTime);
4824 pw.print(',');
4825 pw.print(rec.stepDetails.statSoftIrqTime);
4826 pw.print(',');
4827 pw.print(rec.stepDetails.statIdlTime);
4828 pw.println();
4829 }
4830 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08004831 oldState = rec.states;
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07004832 oldState2 = rec.states2;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004833 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004834 }
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08004835
4836 private void printStepCpuUidDetails(PrintWriter pw, int uid, int utime, int stime) {
4837 UserHandle.formatUid(pw, uid);
4838 pw.print("=");
4839 pw.print(utime);
4840 pw.print("u+");
4841 pw.print(stime);
4842 pw.print("s");
4843 }
4844
4845 private void printStepCpuUidCheckinDetails(PrintWriter pw, int uid, int utime, int stime) {
4846 pw.print('/');
4847 pw.print(uid);
4848 pw.print(":");
4849 pw.print(utime);
4850 pw.print(":");
4851 pw.print(stime);
4852 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07004853 }
4854
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08004855 private void printSizeValue(PrintWriter pw, long size) {
4856 float result = size;
4857 String suffix = "";
4858 if (result >= 10*1024) {
4859 suffix = "KB";
4860 result = result / 1024;
4861 }
4862 if (result >= 10*1024) {
4863 suffix = "MB";
4864 result = result / 1024;
4865 }
4866 if (result >= 10*1024) {
4867 suffix = "GB";
4868 result = result / 1024;
4869 }
4870 if (result >= 10*1024) {
4871 suffix = "TB";
4872 result = result / 1024;
4873 }
4874 if (result >= 10*1024) {
4875 suffix = "PB";
4876 result = result / 1024;
4877 }
4878 pw.print((int)result);
4879 pw.print(suffix);
4880 }
4881
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08004882 private static boolean dumpTimeEstimate(PrintWriter pw, String label1, String label2,
4883 String label3, long estimatedTime) {
4884 if (estimatedTime < 0) {
Dianne Hackbornad6a99b2014-11-18 10:11:10 -08004885 return false;
4886 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08004887 pw.print(label1);
4888 pw.print(label2);
4889 pw.print(label3);
Dianne Hackbornad6a99b2014-11-18 10:11:10 -08004890 StringBuilder sb = new StringBuilder(64);
4891 formatTimeMs(sb, estimatedTime);
4892 pw.print(sb);
4893 pw.println();
Dianne Hackbornad6a99b2014-11-18 10:11:10 -08004894 return true;
4895 }
4896
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08004897 private static boolean dumpDurationSteps(PrintWriter pw, String prefix, String header,
4898 LevelStepTracker steps, boolean checkin) {
4899 if (steps == null) {
4900 return false;
4901 }
4902 int count = steps.mNumStepDurations;
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07004903 if (count <= 0) {
4904 return false;
4905 }
4906 if (!checkin) {
4907 pw.println(header);
4908 }
Kweku Adams030980a2015-04-01 16:07:48 -07004909 String[] lineArgs = new String[5];
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07004910 for (int i=0; i<count; i++) {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08004911 long duration = steps.getDurationAt(i);
4912 int level = steps.getLevelAt(i);
4913 long initMode = steps.getInitModeAt(i);
4914 long modMode = steps.getModModeAt(i);
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07004915 if (checkin) {
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07004916 lineArgs[0] = Long.toString(duration);
4917 lineArgs[1] = Integer.toString(level);
4918 if ((modMode&STEP_LEVEL_MODE_SCREEN_STATE) == 0) {
4919 switch ((int)(initMode&STEP_LEVEL_MODE_SCREEN_STATE) + 1) {
4920 case Display.STATE_OFF: lineArgs[2] = "s-"; break;
4921 case Display.STATE_ON: lineArgs[2] = "s+"; break;
4922 case Display.STATE_DOZE: lineArgs[2] = "sd"; break;
4923 case Display.STATE_DOZE_SUSPEND: lineArgs[2] = "sds"; break;
Kweku Adams030980a2015-04-01 16:07:48 -07004924 default: lineArgs[2] = "?"; break;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07004925 }
4926 } else {
4927 lineArgs[2] = "";
4928 }
4929 if ((modMode&STEP_LEVEL_MODE_POWER_SAVE) == 0) {
4930 lineArgs[3] = (initMode&STEP_LEVEL_MODE_POWER_SAVE) != 0 ? "p+" : "p-";
4931 } else {
4932 lineArgs[3] = "";
4933 }
Dianne Hackborn88e98df2015-03-23 13:29:14 -07004934 if ((modMode&STEP_LEVEL_MODE_DEVICE_IDLE) == 0) {
Kweku Adams030980a2015-04-01 16:07:48 -07004935 lineArgs[4] = (initMode&STEP_LEVEL_MODE_DEVICE_IDLE) != 0 ? "i+" : "i-";
Dianne Hackborn88e98df2015-03-23 13:29:14 -07004936 } else {
Kweku Adams030980a2015-04-01 16:07:48 -07004937 lineArgs[4] = "";
Dianne Hackborn88e98df2015-03-23 13:29:14 -07004938 }
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07004939 dumpLine(pw, 0 /* uid */, "i" /* category */, header, (Object[])lineArgs);
4940 } else {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08004941 pw.print(prefix);
4942 pw.print("#"); pw.print(i); pw.print(": ");
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07004943 TimeUtils.formatDuration(duration, pw);
4944 pw.print(" to "); pw.print(level);
4945 boolean haveModes = false;
4946 if ((modMode&STEP_LEVEL_MODE_SCREEN_STATE) == 0) {
4947 pw.print(" (");
4948 switch ((int)(initMode&STEP_LEVEL_MODE_SCREEN_STATE) + 1) {
4949 case Display.STATE_OFF: pw.print("screen-off"); break;
4950 case Display.STATE_ON: pw.print("screen-on"); break;
4951 case Display.STATE_DOZE: pw.print("screen-doze"); break;
4952 case Display.STATE_DOZE_SUSPEND: pw.print("screen-doze-suspend"); break;
Kweku Adams030980a2015-04-01 16:07:48 -07004953 default: pw.print("screen-?"); break;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07004954 }
4955 haveModes = true;
4956 }
4957 if ((modMode&STEP_LEVEL_MODE_POWER_SAVE) == 0) {
4958 pw.print(haveModes ? ", " : " (");
4959 pw.print((initMode&STEP_LEVEL_MODE_POWER_SAVE) != 0
4960 ? "power-save-on" : "power-save-off");
4961 haveModes = true;
4962 }
Dianne Hackborn88e98df2015-03-23 13:29:14 -07004963 if ((modMode&STEP_LEVEL_MODE_DEVICE_IDLE) == 0) {
4964 pw.print(haveModes ? ", " : " (");
4965 pw.print((initMode&STEP_LEVEL_MODE_DEVICE_IDLE) != 0
4966 ? "device-idle-on" : "device-idle-off");
4967 haveModes = true;
4968 }
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07004969 if (haveModes) {
4970 pw.print(")");
4971 }
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07004972 pw.println();
4973 }
4974 }
4975 return true;
4976 }
4977
Dianne Hackbornc51cf032014-03-02 19:08:15 -08004978 public static final int DUMP_CHARGED_ONLY = 1<<1;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08004979 public static final int DUMP_DAILY_ONLY = 1<<2;
4980 public static final int DUMP_HISTORY_ONLY = 1<<3;
4981 public static final int DUMP_INCLUDE_HISTORY = 1<<4;
4982 public static final int DUMP_VERBOSE = 1<<5;
4983 public static final int DUMP_DEVICE_WIFI_ONLY = 1<<6;
Dianne Hackbornc51cf032014-03-02 19:08:15 -08004984
Dianne Hackborn37de0982014-05-09 09:32:18 -07004985 private void dumpHistoryLocked(PrintWriter pw, int flags, long histStart, boolean checkin) {
4986 final HistoryPrinter hprinter = new HistoryPrinter();
4987 final HistoryItem rec = new HistoryItem();
4988 long lastTime = -1;
4989 long baseTime = -1;
4990 boolean printed = false;
4991 HistoryEventTracker tracker = null;
4992 while (getNextHistoryLocked(rec)) {
4993 lastTime = rec.time;
4994 if (baseTime < 0) {
4995 baseTime = lastTime;
4996 }
4997 if (rec.time >= histStart) {
4998 if (histStart >= 0 && !printed) {
4999 if (rec.cmd == HistoryItem.CMD_CURRENT_TIME
Ashish Sharma60200712014-05-23 18:22:20 -07005000 || rec.cmd == HistoryItem.CMD_RESET
Dianne Hackborn29cd7f12015-01-08 10:37:05 -08005001 || rec.cmd == HistoryItem.CMD_START
5002 || rec.cmd == HistoryItem.CMD_SHUTDOWN) {
Dianne Hackborn37de0982014-05-09 09:32:18 -07005003 printed = true;
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07005004 hprinter.printNextItem(pw, rec, baseTime, checkin,
5005 (flags&DUMP_VERBOSE) != 0);
5006 rec.cmd = HistoryItem.CMD_UPDATE;
Dianne Hackborn37de0982014-05-09 09:32:18 -07005007 } else if (rec.currentTime != 0) {
5008 printed = true;
5009 byte cmd = rec.cmd;
5010 rec.cmd = HistoryItem.CMD_CURRENT_TIME;
Dianne Hackborn37de0982014-05-09 09:32:18 -07005011 hprinter.printNextItem(pw, rec, baseTime, checkin,
5012 (flags&DUMP_VERBOSE) != 0);
5013 rec.cmd = cmd;
5014 }
5015 if (tracker != null) {
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07005016 if (rec.cmd != HistoryItem.CMD_UPDATE) {
5017 hprinter.printNextItem(pw, rec, baseTime, checkin,
5018 (flags&DUMP_VERBOSE) != 0);
5019 rec.cmd = HistoryItem.CMD_UPDATE;
5020 }
5021 int oldEventCode = rec.eventCode;
5022 HistoryTag oldEventTag = rec.eventTag;
Dianne Hackborn37de0982014-05-09 09:32:18 -07005023 rec.eventTag = new HistoryTag();
5024 for (int i=0; i<HistoryItem.EVENT_COUNT; i++) {
5025 HashMap<String, SparseIntArray> active
5026 = tracker.getStateForEvent(i);
5027 if (active == null) {
5028 continue;
5029 }
5030 for (HashMap.Entry<String, SparseIntArray> ent
5031 : active.entrySet()) {
5032 SparseIntArray uids = ent.getValue();
5033 for (int j=0; j<uids.size(); j++) {
5034 rec.eventCode = i;
5035 rec.eventTag.string = ent.getKey();
5036 rec.eventTag.uid = uids.keyAt(j);
5037 rec.eventTag.poolIdx = uids.valueAt(j);
Dianne Hackborn37de0982014-05-09 09:32:18 -07005038 hprinter.printNextItem(pw, rec, baseTime, checkin,
5039 (flags&DUMP_VERBOSE) != 0);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07005040 rec.wakeReasonTag = null;
5041 rec.wakelockTag = null;
Dianne Hackborn37de0982014-05-09 09:32:18 -07005042 }
5043 }
5044 }
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07005045 rec.eventCode = oldEventCode;
5046 rec.eventTag = oldEventTag;
Dianne Hackborn37de0982014-05-09 09:32:18 -07005047 tracker = null;
5048 }
5049 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07005050 hprinter.printNextItem(pw, rec, baseTime, checkin,
5051 (flags&DUMP_VERBOSE) != 0);
Dianne Hackborn536456f2014-05-23 16:51:05 -07005052 } else if (false && rec.eventCode != HistoryItem.EVENT_NONE) {
5053 // This is an attempt to aggregate the previous state and generate
5054 // fake events to reflect that state at the point where we start
5055 // printing real events. It doesn't really work right, so is turned off.
Dianne Hackborn37de0982014-05-09 09:32:18 -07005056 if (tracker == null) {
5057 tracker = new HistoryEventTracker();
5058 }
5059 tracker.updateState(rec.eventCode, rec.eventTag.string,
5060 rec.eventTag.uid, rec.eventTag.poolIdx);
5061 }
5062 }
5063 if (histStart >= 0) {
Dianne Hackbornfc064132014-06-02 12:42:12 -07005064 commitCurrentHistoryBatchLocked();
Dianne Hackborn37de0982014-05-09 09:32:18 -07005065 pw.print(checkin ? "NEXT: " : " NEXT: "); pw.println(lastTime+1);
5066 }
5067 }
5068
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08005069 private void dumpDailyLevelStepSummary(PrintWriter pw, String prefix, String label,
5070 LevelStepTracker steps, StringBuilder tmpSb, int[] tmpOutInt) {
5071 if (steps == null) {
5072 return;
5073 }
5074 long timeRemaining = steps.computeTimeEstimate(0, 0, tmpOutInt);
5075 if (timeRemaining >= 0) {
5076 pw.print(prefix); pw.print(label); pw.print(" total time: ");
5077 tmpSb.setLength(0);
5078 formatTimeMs(tmpSb, timeRemaining);
5079 pw.print(tmpSb);
5080 pw.print(" (from "); pw.print(tmpOutInt[0]);
5081 pw.println(" steps)");
5082 }
5083 for (int i=0; i< STEP_LEVEL_MODES_OF_INTEREST.length; i++) {
5084 long estimatedTime = steps.computeTimeEstimate(STEP_LEVEL_MODES_OF_INTEREST[i],
5085 STEP_LEVEL_MODE_VALUES[i], tmpOutInt);
5086 if (estimatedTime > 0) {
5087 pw.print(prefix); pw.print(label); pw.print(" ");
5088 pw.print(STEP_LEVEL_MODE_LABELS[i]);
5089 pw.print(" time: ");
5090 tmpSb.setLength(0);
5091 formatTimeMs(tmpSb, estimatedTime);
5092 pw.print(tmpSb);
5093 pw.print(" (from "); pw.print(tmpOutInt[0]);
5094 pw.println(" steps)");
5095 }
5096 }
5097 }
5098
Dianne Hackborn88e98df2015-03-23 13:29:14 -07005099 private void dumpDailyPackageChanges(PrintWriter pw, String prefix,
5100 ArrayList<PackageChange> changes) {
5101 if (changes == null) {
5102 return;
5103 }
5104 pw.print(prefix); pw.println("Package changes:");
5105 for (int i=0; i<changes.size(); i++) {
5106 PackageChange pc = changes.get(i);
5107 if (pc.mUpdate) {
5108 pw.print(prefix); pw.print(" Update "); pw.print(pc.mPackageName);
5109 pw.print(" vers="); pw.println(pc.mVersionCode);
5110 } else {
5111 pw.print(prefix); pw.print(" Uninstall "); pw.println(pc.mPackageName);
5112 }
5113 }
5114 }
5115
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005116 /**
5117 * Dumps a human-readable summary of the battery statistics to the given PrintWriter.
5118 *
5119 * @param pw a Printer to receive the dump output.
5120 */
5121 @SuppressWarnings("unused")
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005122 public void dumpLocked(Context context, PrintWriter pw, int flags, int reqUid, long histStart) {
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07005123 prepareForDumpLocked();
5124
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08005125 final boolean filtering = (flags
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005126 & (DUMP_HISTORY_ONLY|DUMP_CHARGED_ONLY|DUMP_DAILY_ONLY)) != 0;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07005127
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005128 if ((flags&DUMP_HISTORY_ONLY) != 0 || !filtering) {
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005129 final long historyTotalSize = getHistoryTotalSize();
5130 final long historyUsedSize = getHistoryUsedSize();
5131 if (startIteratingHistoryLocked()) {
5132 try {
5133 pw.print("Battery History (");
5134 pw.print((100*historyUsedSize)/historyTotalSize);
5135 pw.print("% used, ");
5136 printSizeValue(pw, historyUsedSize);
5137 pw.print(" used of ");
5138 printSizeValue(pw, historyTotalSize);
5139 pw.print(", ");
5140 pw.print(getHistoryStringPoolSize());
5141 pw.print(" strings using ");
5142 printSizeValue(pw, getHistoryStringPoolBytes());
5143 pw.println("):");
Dianne Hackborn37de0982014-05-09 09:32:18 -07005144 dumpHistoryLocked(pw, flags, histStart, false);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005145 pw.println();
5146 } finally {
5147 finishIteratingHistoryLocked();
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08005148 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005149 }
5150
5151 if (startIteratingOldHistoryLocked()) {
5152 try {
Dianne Hackborn37de0982014-05-09 09:32:18 -07005153 final HistoryItem rec = new HistoryItem();
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005154 pw.println("Old battery History:");
5155 HistoryPrinter hprinter = new HistoryPrinter();
Dianne Hackborn99009ea2014-04-18 16:23:42 -07005156 long baseTime = -1;
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005157 while (getNextOldHistoryLocked(rec)) {
Dianne Hackborn99009ea2014-04-18 16:23:42 -07005158 if (baseTime < 0) {
5159 baseTime = rec.time;
5160 }
5161 hprinter.printNextItem(pw, rec, baseTime, false, (flags&DUMP_VERBOSE) != 0);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005162 }
5163 pw.println();
5164 } finally {
5165 finishIteratingOldHistoryLocked();
5166 }
Dianne Hackborn32907cf2010-06-10 17:50:20 -07005167 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07005168 }
5169
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005170 if (filtering && (flags&(DUMP_CHARGED_ONLY|DUMP_DAILY_ONLY)) == 0) {
Dianne Hackborn099bc622014-01-22 13:39:16 -08005171 return;
5172 }
5173
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005174 if (!filtering) {
5175 SparseArray<? extends Uid> uidStats = getUidStats();
5176 final int NU = uidStats.size();
5177 boolean didPid = false;
5178 long nowRealtime = SystemClock.elapsedRealtime();
5179 for (int i=0; i<NU; i++) {
5180 Uid uid = uidStats.valueAt(i);
5181 SparseArray<? extends Uid.Pid> pids = uid.getPidStats();
5182 if (pids != null) {
5183 for (int j=0; j<pids.size(); j++) {
5184 Uid.Pid pid = pids.valueAt(j);
5185 if (!didPid) {
5186 pw.println("Per-PID Stats:");
5187 didPid = true;
5188 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08005189 long time = pid.mWakeSumMs + (pid.mWakeNesting > 0
5190 ? (nowRealtime - pid.mWakeStartMs) : 0);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005191 pw.print(" PID "); pw.print(pids.keyAt(j));
5192 pw.print(" wake time: ");
5193 TimeUtils.formatDuration(time, pw);
5194 pw.println("");
Dianne Hackbornb5e31652010-09-07 12:13:55 -07005195 }
Dianne Hackbornb5e31652010-09-07 12:13:55 -07005196 }
5197 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005198 if (didPid) {
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07005199 pw.println();
5200 }
Dianne Hackborncd0e3352014-08-07 17:08:09 -07005201 }
5202
5203 if (!filtering || (flags&DUMP_CHARGED_ONLY) != 0) {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08005204 if (dumpDurationSteps(pw, " ", "Discharge step durations:",
5205 getDischargeLevelStepTracker(), false)) {
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07005206 long timeRemaining = computeBatteryTimeRemaining(SystemClock.elapsedRealtime());
5207 if (timeRemaining >= 0) {
5208 pw.print(" Estimated discharge time remaining: ");
5209 TimeUtils.formatDuration(timeRemaining / 1000, pw);
5210 pw.println();
5211 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08005212 final LevelStepTracker steps = getDischargeLevelStepTracker();
5213 for (int i=0; i< STEP_LEVEL_MODES_OF_INTEREST.length; i++) {
5214 dumpTimeEstimate(pw, " Estimated ", STEP_LEVEL_MODE_LABELS[i], " time: ",
5215 steps.computeTimeEstimate(STEP_LEVEL_MODES_OF_INTEREST[i],
5216 STEP_LEVEL_MODE_VALUES[i], null));
5217 }
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07005218 pw.println();
5219 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08005220 if (dumpDurationSteps(pw, " ", "Charge step durations:",
5221 getChargeLevelStepTracker(), false)) {
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07005222 long timeRemaining = computeChargeTimeRemaining(SystemClock.elapsedRealtime());
5223 if (timeRemaining >= 0) {
5224 pw.print(" Estimated charge time remaining: ");
5225 TimeUtils.formatDuration(timeRemaining / 1000, pw);
5226 pw.println();
5227 }
5228 pw.println();
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005229 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08005230 }
5231 if (!filtering || (flags&(DUMP_CHARGED_ONLY|DUMP_DAILY_ONLY)) != 0) {
5232 pw.println("Daily stats:");
5233 pw.print(" Current start time: ");
5234 pw.println(DateFormat.format("yyyy-MM-dd-HH-mm-ss",
5235 getCurrentDailyStartTime()).toString());
5236 pw.print(" Next min deadline: ");
5237 pw.println(DateFormat.format("yyyy-MM-dd-HH-mm-ss",
5238 getNextMinDailyDeadline()).toString());
5239 pw.print(" Next max deadline: ");
5240 pw.println(DateFormat.format("yyyy-MM-dd-HH-mm-ss",
5241 getNextMaxDailyDeadline()).toString());
5242 StringBuilder sb = new StringBuilder(64);
5243 int[] outInt = new int[1];
5244 LevelStepTracker dsteps = getDailyDischargeLevelStepTracker();
5245 LevelStepTracker csteps = getDailyChargeLevelStepTracker();
Dianne Hackborn88e98df2015-03-23 13:29:14 -07005246 ArrayList<PackageChange> pkgc = getDailyPackageChanges();
5247 if (dsteps.mNumStepDurations > 0 || csteps.mNumStepDurations > 0 || pkgc != null) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005248 if ((flags&DUMP_DAILY_ONLY) != 0 || !filtering) {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08005249 if (dumpDurationSteps(pw, " ", " Current daily discharge step durations:",
5250 dsteps, false)) {
5251 dumpDailyLevelStepSummary(pw, " ", "Discharge", dsteps,
5252 sb, outInt);
5253 }
5254 if (dumpDurationSteps(pw, " ", " Current daily charge step durations:",
5255 csteps, false)) {
5256 dumpDailyLevelStepSummary(pw, " ", "Charge", csteps,
5257 sb, outInt);
5258 }
Dianne Hackborn88e98df2015-03-23 13:29:14 -07005259 dumpDailyPackageChanges(pw, " ", pkgc);
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08005260 } else {
5261 pw.println(" Current daily steps:");
5262 dumpDailyLevelStepSummary(pw, " ", "Discharge", dsteps,
5263 sb, outInt);
5264 dumpDailyLevelStepSummary(pw, " ", "Charge", csteps,
5265 sb, outInt);
5266 }
5267 }
5268 DailyItem dit;
5269 int curIndex = 0;
5270 while ((dit=getDailyItemLocked(curIndex)) != null) {
5271 curIndex++;
5272 if ((flags&DUMP_DAILY_ONLY) != 0) {
5273 pw.println();
5274 }
5275 pw.print(" Daily from ");
5276 pw.print(DateFormat.format("yyyy-MM-dd-HH-mm-ss", dit.mStartTime).toString());
5277 pw.print(" to ");
5278 pw.print(DateFormat.format("yyyy-MM-dd-HH-mm-ss", dit.mEndTime).toString());
5279 pw.println(":");
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005280 if ((flags&DUMP_DAILY_ONLY) != 0 || !filtering) {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08005281 if (dumpDurationSteps(pw, " ",
5282 " Discharge step durations:", dit.mDischargeSteps, false)) {
5283 dumpDailyLevelStepSummary(pw, " ", "Discharge", dit.mDischargeSteps,
5284 sb, outInt);
5285 }
5286 if (dumpDurationSteps(pw, " ",
5287 " Charge step durations:", dit.mChargeSteps, false)) {
5288 dumpDailyLevelStepSummary(pw, " ", "Charge", dit.mChargeSteps,
5289 sb, outInt);
5290 }
Dianne Hackborn88e98df2015-03-23 13:29:14 -07005291 dumpDailyPackageChanges(pw, " ", dit.mPackageChanges);
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08005292 } else {
5293 dumpDailyLevelStepSummary(pw, " ", "Discharge", dit.mDischargeSteps,
5294 sb, outInt);
5295 dumpDailyLevelStepSummary(pw, " ", "Charge", dit.mChargeSteps,
5296 sb, outInt);
5297 }
5298 }
5299 pw.println();
5300 }
5301 if (!filtering || (flags&DUMP_CHARGED_ONLY) != 0) {
Jeff Sharkeyec43a6b2013-04-30 13:33:18 -07005302 pw.println("Statistics since last charge:");
5303 pw.println(" System starts: " + getStartCount()
5304 + ", currently on battery: " + getIsOnBattery());
Dianne Hackbornd953c532014-08-16 18:17:38 -07005305 dumpLocked(context, pw, "", STATS_SINCE_CHARGED, reqUid,
5306 (flags&DUMP_DEVICE_WIFI_ONLY) != 0);
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07005307 pw.println();
Jeff Sharkeyec43a6b2013-04-30 13:33:18 -07005308 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005309 }
5310
5311 @SuppressWarnings("unused")
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005312 public void dumpCheckinLocked(Context context, PrintWriter pw,
5313 List<ApplicationInfo> apps, int flags, long histStart) {
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07005314 prepareForDumpLocked();
Dianne Hackborncd0e3352014-08-07 17:08:09 -07005315
5316 dumpLine(pw, 0 /* uid */, "i" /* category */, VERSION_DATA,
Dianne Hackborn0c820db2015-04-14 17:47:34 -07005317 CHECKIN_VERSION, getParcelVersion(), getStartPlatformVersion(),
5318 getEndPlatformVersion());
Dianne Hackborncd0e3352014-08-07 17:08:09 -07005319
Dianne Hackborn13ac0412013-06-25 19:34:49 -07005320 long now = getHistoryBaseTime() + SystemClock.elapsedRealtime();
5321
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08005322 final boolean filtering = (flags &
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005323 (DUMP_HISTORY_ONLY|DUMP_CHARGED_ONLY|DUMP_DAILY_ONLY)) != 0;
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005324
5325 if ((flags&DUMP_INCLUDE_HISTORY) != 0 || (flags&DUMP_HISTORY_ONLY) != 0) {
Dianne Hackborn49021f52013-09-04 18:03:40 -07005326 if (startIteratingHistoryLocked()) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08005327 try {
5328 for (int i=0; i<getHistoryStringPoolSize(); i++) {
5329 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
5330 pw.print(HISTORY_STRING_POOL); pw.print(',');
5331 pw.print(i);
Dianne Hackborn99009ea2014-04-18 16:23:42 -07005332 pw.print(",");
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08005333 pw.print(getHistoryTagPoolUid(i));
Dianne Hackborn99009ea2014-04-18 16:23:42 -07005334 pw.print(",\"");
5335 String str = getHistoryTagPoolString(i);
5336 str = str.replace("\\", "\\\\");
5337 str = str.replace("\"", "\\\"");
5338 pw.print(str);
5339 pw.print("\"");
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08005340 pw.println();
5341 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07005342 dumpHistoryLocked(pw, flags, histStart, true);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08005343 } finally {
5344 finishIteratingHistoryLocked();
Dianne Hackborn099bc622014-01-22 13:39:16 -08005345 }
Dianne Hackborn13ac0412013-06-25 19:34:49 -07005346 }
Dianne Hackborn13ac0412013-06-25 19:34:49 -07005347 }
5348
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005349 if (filtering && (flags&(DUMP_CHARGED_ONLY|DUMP_DAILY_ONLY)) == 0) {
Dianne Hackborn099bc622014-01-22 13:39:16 -08005350 return;
5351 }
5352
Dianne Hackborne4a59512010-12-07 11:08:07 -08005353 if (apps != null) {
Dianne Hackborn9cfba352016-03-24 17:31:28 -07005354 SparseArray<Pair<ArrayList<String>, MutableBoolean>> uids = new SparseArray<>();
Dianne Hackborne4a59512010-12-07 11:08:07 -08005355 for (int i=0; i<apps.size(); i++) {
5356 ApplicationInfo ai = apps.get(i);
Dianne Hackborn9cfba352016-03-24 17:31:28 -07005357 Pair<ArrayList<String>, MutableBoolean> pkgs = uids.get(
5358 UserHandle.getAppId(ai.uid));
Dianne Hackborne4a59512010-12-07 11:08:07 -08005359 if (pkgs == null) {
Dianne Hackborn9cfba352016-03-24 17:31:28 -07005360 pkgs = new Pair<>(new ArrayList<String>(), new MutableBoolean(false));
5361 uids.put(UserHandle.getAppId(ai.uid), pkgs);
Dianne Hackborne4a59512010-12-07 11:08:07 -08005362 }
Dianne Hackborn9cfba352016-03-24 17:31:28 -07005363 pkgs.first.add(ai.packageName);
Dianne Hackborne4a59512010-12-07 11:08:07 -08005364 }
5365 SparseArray<? extends Uid> uidStats = getUidStats();
5366 final int NU = uidStats.size();
5367 String[] lineArgs = new String[2];
5368 for (int i=0; i<NU; i++) {
Dianne Hackborn9cfba352016-03-24 17:31:28 -07005369 int uid = UserHandle.getAppId(uidStats.keyAt(i));
5370 Pair<ArrayList<String>, MutableBoolean> pkgs = uids.get(uid);
5371 if (pkgs != null && !pkgs.second.value) {
5372 pkgs.second.value = true;
5373 for (int j=0; j<pkgs.first.size(); j++) {
Dianne Hackborne4a59512010-12-07 11:08:07 -08005374 lineArgs[0] = Integer.toString(uid);
Dianne Hackborn9cfba352016-03-24 17:31:28 -07005375 lineArgs[1] = pkgs.first.get(j);
Dianne Hackborne4a59512010-12-07 11:08:07 -08005376 dumpLine(pw, 0 /* uid */, "i" /* category */, UID_DATA,
5377 (Object[])lineArgs);
5378 }
5379 }
5380 }
5381 }
Dianne Hackborncd0e3352014-08-07 17:08:09 -07005382 if (!filtering || (flags&DUMP_CHARGED_ONLY) != 0) {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08005383 dumpDurationSteps(pw, "", DISCHARGE_STEP_DATA, getDischargeLevelStepTracker(), true);
Dianne Hackbornd06dcfd2014-05-02 13:49:30 -07005384 String[] lineArgs = new String[1];
5385 long timeRemaining = computeBatteryTimeRemaining(SystemClock.elapsedRealtime());
5386 if (timeRemaining >= 0) {
5387 lineArgs[0] = Long.toString(timeRemaining);
5388 dumpLine(pw, 0 /* uid */, "i" /* category */, DISCHARGE_TIME_REMAIN_DATA,
5389 (Object[])lineArgs);
5390 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08005391 dumpDurationSteps(pw, "", CHARGE_STEP_DATA, getChargeLevelStepTracker(), true);
Dianne Hackbornd06dcfd2014-05-02 13:49:30 -07005392 timeRemaining = computeChargeTimeRemaining(SystemClock.elapsedRealtime());
5393 if (timeRemaining >= 0) {
5394 lineArgs[0] = Long.toString(timeRemaining);
5395 dumpLine(pw, 0 /* uid */, "i" /* category */, CHARGE_TIME_REMAIN_DATA,
5396 (Object[])lineArgs);
5397 }
Dianne Hackbornd953c532014-08-16 18:17:38 -07005398 dumpCheckinLocked(context, pw, STATS_SINCE_CHARGED, -1,
5399 (flags&DUMP_DEVICE_WIFI_ONLY) != 0);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005400 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005401 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005402}