blob: 808b218e643c3497dc5b570c93614aeda9c15988 [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
Sudheer Shankab2f83c12017-11-13 19:25:01 -080019import android.app.ActivityManager;
Dianne Hackborn94326cb2017-06-28 16:17:20 -070020import android.app.job.JobParameters;
Dianne Hackborna7c837f2014-01-15 16:20:44 -080021import android.content.Context;
Dianne Hackborne4a59512010-12-07 11:08:07 -080022import android.content.pm.ApplicationInfo;
Bookatz8bdae8d2018-01-16 11:24:30 -080023import android.server.ServerProtoEnums;
Kweku Adams2f73ecd2017-09-27 16:59:19 -070024import android.service.batterystats.BatteryStatsServiceDumpProto;
Wink Saville52840902011-02-18 12:40:47 -080025import android.telephony.SignalStrength;
Dianne Hackborn5f4a5f92014-01-24 16:59:34 -080026import android.text.format.DateFormat;
Dianne Hackborn1e725a72015-03-24 18:23:19 -070027import android.util.ArrayMap;
James Carr2dd7e5e2016-07-20 18:48:39 -070028import android.util.LongSparseArray;
Dianne Hackborn9cfba352016-03-24 17:31:28 -070029import android.util.MutableBoolean;
30import android.util.Pair;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031import android.util.Printer;
32import android.util.SparseArray;
Dianne Hackborn37de0982014-05-09 09:32:18 -070033import android.util.SparseIntArray;
Dianne Hackborn1ebccf52010-08-15 13:04:34 -070034import android.util.TimeUtils;
Kweku Adams2f73ecd2017-09-27 16:59:19 -070035import android.util.proto.ProtoOutputStream;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -070036import android.view.Display;
Amith Yamasaniab9ad192016-12-06 12:46:59 -080037
Sudheer Shankab2f83c12017-11-13 19:25:01 -080038import com.android.internal.annotations.VisibleForTesting;
Siddharth Ray78ccaf52017-12-23 16:16:21 -080039import com.android.internal.location.gnssmetrics.GnssMetrics;
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
Kweku Adams2f73ecd2017-09-27 16:59:19 -070043import java.io.FileDescriptor;
Michael Wachenschwanzb05a3c52017-07-07 17:47:04 -070044import java.io.PrintWriter;
45import java.util.ArrayList;
46import java.util.Collections;
47import java.util.Comparator;
48import java.util.Formatter;
49import java.util.HashMap;
50import java.util.List;
51import java.util.Map;
52
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053/**
54 * A class providing access to battery usage statistics, including information on
55 * wakelocks, processes, packages, and services. All times are represented in microseconds
56 * except where indicated otherwise.
57 * @hide
58 */
59public abstract class BatteryStats implements Parcelable {
Joe Onorato92fd23f2016-07-25 11:18:42 -070060 private static final String TAG = "BatteryStats";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080061
62 private static final boolean LOCAL_LOGV = false;
Bookatz82b341172017-09-07 19:06:08 -070063 /** Fetching RPM stats is too slow to do each time screen changes, so disable it. */
64 protected static final boolean SCREEN_OFF_RPM_STATS_ENABLED = false;
Dianne Hackborn91268cf2013-06-13 19:06:50 -070065
66 /** @hide */
67 public static final String SERVICE_NAME = "batterystats";
68
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080069 /**
70 * A constant indicating a partial wake lock timer.
71 */
72 public static final int WAKE_TYPE_PARTIAL = 0;
73
74 /**
75 * A constant indicating a full wake lock timer.
76 */
77 public static final int WAKE_TYPE_FULL = 1;
78
79 /**
80 * A constant indicating a window wake lock timer.
81 */
82 public static final int WAKE_TYPE_WINDOW = 2;
Adam Lesinski9425fe22015-06-19 12:02:13 -070083
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084 /**
85 * A constant indicating a sensor timer.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086 */
87 public static final int SENSOR = 3;
Mike Mac2f518a2017-09-19 16:06:03 -070088
The Android Open Source Project10592532009-03-18 17:39:46 -070089 /**
Dianne Hackborn58e0eef2010-09-16 01:22:10 -070090 * A constant indicating a a wifi running timer
Dianne Hackborn617f8772009-03-31 15:04:46 -070091 */
Dianne Hackborn58e0eef2010-09-16 01:22:10 -070092 public static final int WIFI_RUNNING = 4;
Mike Mac2f518a2017-09-19 16:06:03 -070093
Dianne Hackborn617f8772009-03-31 15:04:46 -070094 /**
The Android Open Source Project10592532009-03-18 17:39:46 -070095 * A constant indicating a full wifi lock timer
The Android Open Source Project10592532009-03-18 17:39:46 -070096 */
Dianne Hackborn617f8772009-03-31 15:04:46 -070097 public static final int FULL_WIFI_LOCK = 5;
Mike Mac2f518a2017-09-19 16:06:03 -070098
The Android Open Source Project10592532009-03-18 17:39:46 -070099 /**
Nick Pelly6ccaa542012-06-15 15:22:47 -0700100 * A constant indicating a wifi scan
The Android Open Source Project10592532009-03-18 17:39:46 -0700101 */
Nick Pelly6ccaa542012-06-15 15:22:47 -0700102 public static final int WIFI_SCAN = 6;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800103
Dianne Hackborn62793e42015-03-09 11:15:41 -0700104 /**
105 * A constant indicating a wifi multicast timer
106 */
107 public static final int WIFI_MULTICAST_ENABLED = 7;
Robert Greenwalt5347bd42009-05-13 15:10:16 -0700108
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800109 /**
Amith Yamasani244fa5c2009-05-22 14:36:07 -0700110 * A constant indicating a video turn on timer
Amith Yamasani244fa5c2009-05-22 14:36:07 -0700111 */
112 public static final int VIDEO_TURNED_ON = 8;
113
114 /**
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800115 * A constant indicating a vibrator on timer
116 */
117 public static final int VIBRATOR_ON = 9;
118
119 /**
Jeff Sharkey3e013e82013-04-25 14:48:19 -0700120 * A constant indicating a foreground activity timer
121 */
122 public static final int FOREGROUND_ACTIVITY = 10;
123
124 /**
Robert Greenwalta029ea12013-09-25 16:38:12 -0700125 * A constant indicating a wifi batched scan is active
126 */
127 public static final int WIFI_BATCHED_SCAN = 11;
128
129 /**
Dianne Hackborn61659e52014-07-09 16:13:01 -0700130 * A constant indicating a process state timer
131 */
132 public static final int PROCESS_STATE = 12;
133
134 /**
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700135 * A constant indicating a sync timer
136 */
137 public static final int SYNC = 13;
138
139 /**
140 * A constant indicating a job timer
141 */
142 public static final int JOB = 14;
143
144 /**
Kweku Adamsd5379872014-11-24 17:34:05 -0800145 * A constant indicating an audio turn on timer
146 */
147 public static final int AUDIO_TURNED_ON = 15;
148
149 /**
Ruben Brunk6d2c3632015-05-26 17:32:16 -0700150 * A constant indicating a flashlight turn on timer
151 */
152 public static final int FLASHLIGHT_TURNED_ON = 16;
153
154 /**
155 * A constant indicating a camera turn on timer
156 */
157 public static final int CAMERA_TURNED_ON = 17;
158
159 /**
Jeff Brown6a8bd7b2015-06-19 15:07:51 -0700160 * A constant indicating a draw wake lock timer.
Adam Lesinski9425fe22015-06-19 12:02:13 -0700161 */
Jeff Brown6a8bd7b2015-06-19 15:07:51 -0700162 public static final int WAKE_TYPE_DRAW = 18;
Adam Lesinski9425fe22015-06-19 12:02:13 -0700163
164 /**
Adam Lesinski9f55cc72016-01-27 20:42:14 -0800165 * A constant indicating a bluetooth scan timer.
166 */
167 public static final int BLUETOOTH_SCAN_ON = 19;
168
169 /**
Bookatzc8c44962017-05-11 12:12:54 -0700170 * A constant indicating an aggregated partial wake lock timer.
171 */
172 public static final int AGGREGATED_WAKE_TYPE_PARTIAL = 20;
173
174 /**
Bookatzb1f04f32017-05-19 13:57:32 -0700175 * A constant indicating a bluetooth scan timer for unoptimized scans.
176 */
177 public static final int BLUETOOTH_UNOPTIMIZED_SCAN_ON = 21;
178
179 /**
Michael Wachenschwanzb05a3c52017-07-07 17:47:04 -0700180 * A constant indicating a foreground service timer
181 */
182 public static final int FOREGROUND_SERVICE = 22;
183
184 /**
Ahmed ElArabawyf88571f2017-11-28 12:18:10 -0800185 * A constant indicating an aggregate wifi multicast timer
186 */
187 public static final int WIFI_AGGREGATE_MULTICAST_ENABLED = 23;
188
189 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800190 * Include all of the data in the stats, including previously saved data.
191 */
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700192 public static final int STATS_SINCE_CHARGED = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800193
194 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800195 * Include only the current run in the stats.
196 */
Dianne Hackborn4590e522014-03-24 13:36:46 -0700197 public static final int STATS_CURRENT = 1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800198
199 /**
200 * Include only the run since the last time the device was unplugged in the stats.
201 */
Dianne Hackborn4590e522014-03-24 13:36:46 -0700202 public static final int STATS_SINCE_UNPLUGGED = 2;
Evan Millare84de8d2009-04-02 22:16:12 -0700203
204 // NOTE: Update this list if you add/change any stats above.
Kweku Adams2f73ecd2017-09-27 16:59:19 -0700205 // These characters are supposed to represent "total", "last", "current",
Dianne Hackborn3bee5af82010-07-23 00:22:04 -0700206 // and "unplugged". They were shortened for efficiency sake.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700207 private static final String[] STAT_NAMES = { "l", "c", "u" };
208
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800209 /**
Dianne Hackborn0c820db2015-04-14 17:47:34 -0700210 * Current version of checkin data format.
Joe Onorato92fd23f2016-07-25 11:18:42 -0700211 *
212 * New in version 19:
213 * - Wakelock data (wl) gets current and max times.
Amith Yamasaniab9ad192016-12-06 12:46:59 -0800214 * New in version 20:
Bookatz2bffb5b2017-04-13 11:59:33 -0700215 * - Background timers and counters for: Sensor, BluetoothScan, WifiScan, Jobs, Syncs.
Bookatz506a8182017-05-01 14:18:42 -0700216 * New in version 21:
217 * - Actual (not just apportioned) Wakelock time is also recorded.
Bookatzc8c44962017-05-11 12:12:54 -0700218 * - Aggregated partial wakelock time (per uid, instead of per wakelock) is recorded.
Bookatzb1f04f32017-05-19 13:57:32 -0700219 * - BLE scan result count
220 * - CPU frequency time per uid
221 * New in version 22:
222 * - BLE scan result background count, BLE unoptimized scan time
Bookatz98d4d5c2017-08-01 19:07:54 -0700223 * - Background partial wakelock time & count
224 * New in version 23:
225 * - Logging smeared power model values
226 * New in version 24:
227 * - Fixed bugs in background timers and BLE scan time
228 * New in version 25:
229 * - Package wakeup alarms are now on screen-off timebase
Bookatz50df7112017-08-04 14:53:26 -0700230 * New in version 26:
Bookatz82b341172017-09-07 19:06:08 -0700231 * - Resource power manager (rpm) states [but screenOffRpm is disabled from working properly]
Mike Mac2f518a2017-09-19 16:06:03 -0700232 * New in version 27:
233 * - Always On Display (screen doze mode) time and power
Mike Ma15313c92017-11-15 17:58:21 -0800234 * New in version 28:
235 * - Light/Deep Doze power
Ahmed ElArabawyddd09692017-10-30 17:58:29 -0700236 * - WiFi Multicast Wakelock statistics (count & duration)
Kweku Adamsa8943cb2017-12-22 13:21:06 -0800237 * New in version 29:
238 * - Process states re-ordered. TOP_SLEEPING now below BACKGROUND. HEAVY_WEIGHT introduced.
239 * - CPU times per UID process state
zhouwenjie46712bc2018-01-11 15:21:27 -0800240 * New in version 30:
241 * - Uid.PROCESS_STATE_FOREGROUND_SERVICE only tracks
242 * ActivityManager.PROCESS_STATE_FOREGROUND_SERVICE.
Dianne Hackborn0c820db2015-04-14 17:47:34 -0700243 */
zhouwenjie46712bc2018-01-11 15:21:27 -0800244 static final int CHECKIN_VERSION = 30;
Dianne Hackborn0c820db2015-04-14 17:47:34 -0700245
246 /**
247 * Old version, we hit 9 and ran out of room, need to remove.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800248 */
Ashish Sharma213bb2f2014-07-07 17:14:52 -0700249 private static final int BATTERY_STATS_CHECKIN_VERSION = 9;
Dianne Hackborn0c820db2015-04-14 17:47:34 -0700250
Evan Millar22ac0432009-03-31 11:33:18 -0700251 private static final long BYTES_PER_KB = 1024;
252 private static final long BYTES_PER_MB = 1048576; // 1024^2
253 private static final long BYTES_PER_GB = 1073741824; //1024^3
Bookatz506a8182017-05-01 14:18:42 -0700254
Dianne Hackborncd0e3352014-08-07 17:08:09 -0700255 private static final String VERSION_DATA = "vers";
Dianne Hackborne4a59512010-12-07 11:08:07 -0800256 private static final String UID_DATA = "uid";
Joe Onorato1476d322016-05-05 14:46:15 -0700257 private static final String WAKEUP_ALARM_DATA = "wua";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800258 private static final String APK_DATA = "apk";
Evan Millare84de8d2009-04-02 22:16:12 -0700259 private static final String PROCESS_DATA = "pr";
Adam Lesinskia7a4ccc2015-06-26 17:43:04 -0700260 private static final String CPU_DATA = "cpu";
Sudheer Shanka9b735c52017-05-09 18:26:18 -0700261 private static final String GLOBAL_CPU_FREQ_DATA = "gcf";
262 private static final String CPU_TIMES_AT_FREQ_DATA = "ctf";
Bookatz50df7112017-08-04 14:53:26 -0700263 // rpm line is:
264 // BATTERY_STATS_CHECKIN_VERSION, uid, which, "rpm", state/voter name, total time, total count,
265 // screen-off time, screen-off count
266 private static final String RESOURCE_POWER_MANAGER_DATA = "rpm";
Evan Millare84de8d2009-04-02 22:16:12 -0700267 private static final String SENSOR_DATA = "sr";
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800268 private static final String VIBRATOR_DATA = "vib";
Michael Wachenschwanzb05a3c52017-07-07 17:47:04 -0700269 private static final String FOREGROUND_ACTIVITY_DATA = "fg";
270 // fgs line is:
271 // BATTERY_STATS_CHECKIN_VERSION, uid, category, "fgs",
272 // foreground service time, count
273 private static final String FOREGROUND_SERVICE_DATA = "fgs";
Dianne Hackborn61659e52014-07-09 16:13:01 -0700274 private static final String STATE_TIME_DATA = "st";
Bookatz506a8182017-05-01 14:18:42 -0700275 // wl line is:
276 // BATTERY_STATS_CHECKIN_VERSION, uid, which, "wl", name,
Bookatz5b5ec322017-05-26 09:40:38 -0700277 // full totalTime, 'f', count, current duration, max duration, total duration,
278 // partial totalTime, 'p', count, current duration, max duration, total duration,
279 // bg partial totalTime, 'bp', count, current duration, max duration, total duration,
280 // window totalTime, 'w', count, current duration, max duration, total duration
Bookatz506a8182017-05-01 14:18:42 -0700281 // [Currently, full and window wakelocks have durations current = max = total = -1]
Evan Millare84de8d2009-04-02 22:16:12 -0700282 private static final String WAKELOCK_DATA = "wl";
Bookatzc8c44962017-05-11 12:12:54 -0700283 // awl line is:
284 // BATTERY_STATS_CHECKIN_VERSION, uid, which, "awl",
285 // cumulative partial wakelock duration, cumulative background partial wakelock duration
286 private static final String AGGREGATED_WAKELOCK_DATA = "awl";
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700287 private static final String SYNC_DATA = "sy";
288 private static final String JOB_DATA = "jb";
Dianne Hackborn94326cb2017-06-28 16:17:20 -0700289 private static final String JOB_COMPLETION_DATA = "jbc";
Evan Millarc64edde2009-04-18 12:26:32 -0700290 private static final String KERNEL_WAKELOCK_DATA = "kwl";
Dianne Hackborna1bd7922014-03-21 11:07:11 -0700291 private static final String WAKEUP_REASON_DATA = "wr";
Evan Millare84de8d2009-04-02 22:16:12 -0700292 private static final String NETWORK_DATA = "nt";
293 private static final String USER_ACTIVITY_DATA = "ua";
294 private static final String BATTERY_DATA = "bt";
Dianne Hackbornc1b40e32011-01-05 18:27:40 -0800295 private static final String BATTERY_DISCHARGE_DATA = "dc";
Evan Millare84de8d2009-04-02 22:16:12 -0700296 private static final String BATTERY_LEVEL_DATA = "lv";
Adam Lesinskie283d332015-04-16 12:29:25 -0700297 private static final String GLOBAL_WIFI_DATA = "gwfl";
Nick Pelly6ccaa542012-06-15 15:22:47 -0700298 private static final String WIFI_DATA = "wfl";
Adam Lesinski21f76aa2016-01-25 12:27:06 -0800299 private static final String GLOBAL_WIFI_CONTROLLER_DATA = "gwfcd";
300 private static final String WIFI_CONTROLLER_DATA = "wfcd";
301 private static final String GLOBAL_BLUETOOTH_CONTROLLER_DATA = "gble";
302 private static final String BLUETOOTH_CONTROLLER_DATA = "ble";
Adam Lesinskid9b99be2016-03-30 16:58:51 -0700303 private static final String BLUETOOTH_MISC_DATA = "blem";
Evan Millare84de8d2009-04-02 22:16:12 -0700304 private static final String MISC_DATA = "m";
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800305 private static final String GLOBAL_NETWORK_DATA = "gn";
Adam Lesinski21f76aa2016-01-25 12:27:06 -0800306 private static final String GLOBAL_MODEM_CONTROLLER_DATA = "gmcd";
307 private static final String MODEM_CONTROLLER_DATA = "mcd";
Dianne Hackborn099bc622014-01-22 13:39:16 -0800308 private static final String HISTORY_STRING_POOL = "hsp";
Dianne Hackborn8a0de582013-08-07 15:22:07 -0700309 private static final String HISTORY_DATA = "h";
Evan Millare84de8d2009-04-02 22:16:12 -0700310 private static final String SCREEN_BRIGHTNESS_DATA = "br";
311 private static final String SIGNAL_STRENGTH_TIME_DATA = "sgt";
Amith Yamasanif37447b2009-10-08 18:28:01 -0700312 private static final String SIGNAL_SCANNING_TIME_DATA = "sst";
Evan Millare84de8d2009-04-02 22:16:12 -0700313 private static final String SIGNAL_STRENGTH_COUNT_DATA = "sgc";
314 private static final String DATA_CONNECTION_TIME_DATA = "dct";
315 private static final String DATA_CONNECTION_COUNT_DATA = "dcc";
Dianne Hackbornca1bf212014-02-14 14:18:36 -0800316 private static final String WIFI_STATE_TIME_DATA = "wst";
317 private static final String WIFI_STATE_COUNT_DATA = "wsc";
Dianne Hackborn3251b902014-06-20 14:40:53 -0700318 private static final String WIFI_SUPPL_STATE_TIME_DATA = "wsst";
319 private static final String WIFI_SUPPL_STATE_COUNT_DATA = "wssc";
320 private static final String WIFI_SIGNAL_STRENGTH_TIME_DATA = "wsgt";
321 private static final String WIFI_SIGNAL_STRENGTH_COUNT_DATA = "wsgc";
Dianne Hackborna7c837f2014-01-15 16:20:44 -0800322 private static final String POWER_USE_SUMMARY_DATA = "pws";
323 private static final String POWER_USE_ITEM_DATA = "pwi";
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -0700324 private static final String DISCHARGE_STEP_DATA = "dsd";
325 private static final String CHARGE_STEP_DATA = "csd";
Dianne Hackbornd06dcfd2014-05-02 13:49:30 -0700326 private static final String DISCHARGE_TIME_REMAIN_DATA = "dtr";
327 private static final String CHARGE_TIME_REMAIN_DATA = "ctr";
Ruben Brunk6d2c3632015-05-26 17:32:16 -0700328 private static final String FLASHLIGHT_DATA = "fla";
329 private static final String CAMERA_DATA = "cam";
330 private static final String VIDEO_DATA = "vid";
331 private static final String AUDIO_DATA = "aud";
Ahmed ElArabawyddd09692017-10-30 17:58:29 -0700332 private static final String WIFI_MULTICAST_TOTAL_DATA = "wmct";
333 private static final String WIFI_MULTICAST_DATA = "wmc";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800334
Adam Lesinski010bf372016-04-11 12:18:18 -0700335 public static final String RESULT_RECEIVER_CONTROLLER_KEY = "controller_activity";
336
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700337 private final StringBuilder mFormatBuilder = new StringBuilder(32);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800338 private final Formatter mFormatter = new Formatter(mFormatBuilder);
339
Siddharth Rayb50a6842017-12-14 15:15:28 -0800340 private static final String CELLULAR_CONTROLLER_NAME = "Cellular";
341 private static final String WIFI_CONTROLLER_NAME = "WiFi";
342
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800343 /**
Sudheer Shanka9b735c52017-05-09 18:26:18 -0700344 * Indicates times spent by the uid at each cpu frequency in all process states.
345 *
346 * Other types might include times spent in foreground, background etc.
347 */
Sudheer Shankab2f83c12017-11-13 19:25:01 -0800348 @VisibleForTesting
349 public static final String UID_TIMES_TYPE_ALL = "A";
Sudheer Shanka9b735c52017-05-09 18:26:18 -0700350
351 /**
Dianne Hackborn617f8772009-03-31 15:04:46 -0700352 * State for keeping track of counting information.
353 */
354 public static abstract class Counter {
355
356 /**
357 * Returns the count associated with this Counter for the
358 * selected type of statistics.
359 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700360 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT
Dianne Hackborn617f8772009-03-31 15:04:46 -0700361 */
Evan Millarc64edde2009-04-18 12:26:32 -0700362 public abstract int getCountLocked(int which);
Dianne Hackborn617f8772009-03-31 15:04:46 -0700363
364 /**
365 * Temporary for debugging.
366 */
367 public abstract void logState(Printer pw, String prefix);
368 }
369
370 /**
Dianne Hackborna1bd7922014-03-21 11:07:11 -0700371 * State for keeping track of long counting information.
372 */
373 public static abstract class LongCounter {
374
375 /**
376 * Returns the count associated with this Counter for the
377 * selected type of statistics.
378 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700379 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT
Dianne Hackborna1bd7922014-03-21 11:07:11 -0700380 */
381 public abstract long getCountLocked(int which);
382
383 /**
384 * Temporary for debugging.
385 */
386 public abstract void logState(Printer pw, String prefix);
387 }
388
389 /**
Sudheer Shanka9b735c52017-05-09 18:26:18 -0700390 * State for keeping track of array of long counting information.
391 */
392 public static abstract class LongCounterArray {
393 /**
394 * Returns the counts associated with this Counter for the
395 * selected type of statistics.
396 *
397 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT
398 */
399 public abstract long[] getCountsLocked(int which);
400
401 /**
402 * Temporary for debugging.
403 */
404 public abstract void logState(Printer pw, String prefix);
405 }
406
407 /**
Adam Lesinski21f76aa2016-01-25 12:27:06 -0800408 * Container class that aggregates counters for transmit, receive, and idle state of a
409 * radio controller.
410 */
411 public static abstract class ControllerActivityCounter {
412 /**
413 * @return a non-null {@link LongCounter} representing time spent (milliseconds) in the
414 * idle state.
415 */
416 public abstract LongCounter getIdleTimeCounter();
417
418 /**
419 * @return a non-null {@link LongCounter} representing time spent (milliseconds) in the
Siddharth Rayb50a6842017-12-14 15:15:28 -0800420 * scan state.
421 */
422 public abstract LongCounter getScanTimeCounter();
423
Siddharth Rayed754702018-02-15 12:44:37 -0800424 /**
425 * @return a non-null {@link LongCounter} representing time spent (milliseconds) in the
426 * sleep state.
427 */
428 public abstract LongCounter getSleepTimeCounter();
Siddharth Rayb50a6842017-12-14 15:15:28 -0800429
430 /**
431 * @return a non-null {@link LongCounter} representing time spent (milliseconds) in the
Adam Lesinski21f76aa2016-01-25 12:27:06 -0800432 * receive state.
433 */
434 public abstract LongCounter getRxTimeCounter();
435
436 /**
437 * An array of {@link LongCounter}, representing various transmit levels, where each level
438 * may draw a different amount of power. The levels themselves are controller-specific.
439 * @return non-null array of {@link LongCounter}s representing time spent (milliseconds) in
440 * various transmit level states.
441 */
442 public abstract LongCounter[] getTxTimeCounters();
443
444 /**
445 * @return a non-null {@link LongCounter} representing the power consumed by the controller
446 * in all states, measured in milli-ampere-milliseconds (mAms). The counter may always
447 * yield a value of 0 if the device doesn't support power calculations.
448 */
449 public abstract LongCounter getPowerCounter();
450 }
451
452 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800453 * State for keeping track of timing information.
454 */
455 public static abstract class Timer {
456
457 /**
458 * Returns the count associated with this Timer for the
459 * selected type of statistics.
460 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700461 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800462 */
Evan Millarc64edde2009-04-18 12:26:32 -0700463 public abstract int getCountLocked(int which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800464
465 /**
466 * Returns the total time in microseconds associated with this Timer for the
467 * selected type of statistics.
468 *
Dianne Hackborn97ae5382014-03-05 16:43:25 -0800469 * @param elapsedRealtimeUs current elapsed realtime of system in microseconds
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700470 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800471 * @return a time in microseconds
472 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -0800473 public abstract long getTotalTimeLocked(long elapsedRealtimeUs, int which);
Amith Yamasani244fa5c2009-05-22 14:36:07 -0700474
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800475 /**
Adam Lesinskie08af192015-03-25 16:42:59 -0700476 * Returns the total time in microseconds associated with this Timer since the
477 * 'mark' was last set.
478 *
479 * @param elapsedRealtimeUs current elapsed realtime of system in microseconds
480 * @return a time in microseconds
481 */
482 public abstract long getTimeSinceMarkLocked(long elapsedRealtimeUs);
483
484 /**
Joe Onorato92fd23f2016-07-25 11:18:42 -0700485 * Returns the max duration if it is being tracked.
Kweku Adams103351f2017-10-16 14:39:34 -0700486 * Not all Timer subclasses track the max, total, and current durations.
Joe Onorato92fd23f2016-07-25 11:18:42 -0700487 */
488 public long getMaxDurationMsLocked(long elapsedRealtimeMs) {
489 return -1;
490 }
491
492 /**
493 * Returns the current time the timer has been active, if it is being tracked.
Kweku Adams103351f2017-10-16 14:39:34 -0700494 * Not all Timer subclasses track the max, total, and current durations.
Joe Onorato92fd23f2016-07-25 11:18:42 -0700495 */
496 public long getCurrentDurationMsLocked(long elapsedRealtimeMs) {
497 return -1;
498 }
499
500 /**
Kweku Adams103351f2017-10-16 14:39:34 -0700501 * Returns the total time the timer has been active, if it is being tracked.
Bookatz867c0d72017-03-07 18:23:42 -0800502 *
503 * Returns the total cumulative duration (i.e. sum of past durations) that this timer has
504 * been on since reset.
505 * This may differ from getTotalTimeLocked(elapsedRealtimeUs, STATS_SINCE_CHARGED)/1000 since,
506 * depending on the Timer, getTotalTimeLocked may represent the total 'blamed' or 'pooled'
507 * time, rather than the actual time. By contrast, getTotalDurationMsLocked always gives
508 * the actual total time.
Kweku Adams103351f2017-10-16 14:39:34 -0700509 * Not all Timer subclasses track the max, total, and current durations.
Bookatz867c0d72017-03-07 18:23:42 -0800510 */
511 public long getTotalDurationMsLocked(long elapsedRealtimeMs) {
512 return -1;
513 }
514
515 /**
Bookatzaa4594a2017-03-24 12:39:56 -0700516 * Returns the secondary Timer held by the Timer, if one exists. This secondary timer may be
517 * used, for example, for tracking background usage. Secondary timers are never pooled.
518 *
519 * Not all Timer subclasses have a secondary timer; those that don't return null.
520 */
521 public Timer getSubTimer() {
522 return null;
523 }
524
525 /**
Joe Onorato92fd23f2016-07-25 11:18:42 -0700526 * Returns whether the timer is currently running. Some types of timers
527 * (e.g. BatchTimers) don't know whether the event is currently active,
528 * and report false.
529 */
530 public boolean isRunningLocked() {
531 return false;
532 }
533
534 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800535 * Temporary for debugging.
536 */
Dianne Hackborn627bba72009-03-24 22:32:56 -0700537 public abstract void logState(Printer pw, String prefix);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800538 }
539
540 /**
Sudheer Shankab2f83c12017-11-13 19:25:01 -0800541 * Maps the ActivityManager procstate into corresponding BatteryStats procstate.
542 */
543 public static int mapToInternalProcessState(int procState) {
544 if (procState == ActivityManager.PROCESS_STATE_NONEXISTENT) {
545 return ActivityManager.PROCESS_STATE_NONEXISTENT;
546 } else if (procState == ActivityManager.PROCESS_STATE_TOP) {
547 return Uid.PROCESS_STATE_TOP;
Dianne Hackborn10fc4fd2017-12-19 17:23:13 -0800548 } else if (procState == ActivityManager.PROCESS_STATE_FOREGROUND_SERVICE) {
549 // State when app has put itself in the foreground.
Sudheer Shankab2f83c12017-11-13 19:25:01 -0800550 return Uid.PROCESS_STATE_FOREGROUND_SERVICE;
551 } else if (procState <= ActivityManager.PROCESS_STATE_IMPORTANT_FOREGROUND) {
552 // Persistent and other foreground states go here.
553 return Uid.PROCESS_STATE_FOREGROUND;
554 } else if (procState <= ActivityManager.PROCESS_STATE_RECEIVER) {
555 return Uid.PROCESS_STATE_BACKGROUND;
556 } else if (procState <= ActivityManager.PROCESS_STATE_TOP_SLEEPING) {
557 return Uid.PROCESS_STATE_TOP_SLEEPING;
558 } else if (procState <= ActivityManager.PROCESS_STATE_HEAVY_WEIGHT) {
559 return Uid.PROCESS_STATE_HEAVY_WEIGHT;
560 } else {
561 return Uid.PROCESS_STATE_CACHED;
562 }
563 }
564
565 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800566 * The statistics associated with a particular uid.
567 */
568 public static abstract class Uid {
569
570 /**
571 * Returns a mapping containing wakelock statistics.
572 *
573 * @return a Map from Strings to Uid.Wakelock objects.
574 */
Dianne Hackborn1e725a72015-03-24 18:23:19 -0700575 public abstract ArrayMap<String, ? extends Wakelock> getWakelockStats();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800576
577 /**
Ahmed ElArabawyddd09692017-10-30 17:58:29 -0700578 * Returns the WiFi Multicast Wakelock statistics.
579 *
580 * @return a Timer Object for the per uid Multicast statistics.
581 */
582 public abstract Timer getMulticastWakelockStats();
583
584 /**
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700585 * Returns a mapping containing sync statistics.
586 *
587 * @return a Map from Strings to Timer objects.
588 */
Dianne Hackborn1e725a72015-03-24 18:23:19 -0700589 public abstract ArrayMap<String, ? extends Timer> getSyncStats();
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700590
591 /**
592 * Returns a mapping containing scheduled job statistics.
593 *
594 * @return a Map from Strings to Timer objects.
595 */
Dianne Hackborn1e725a72015-03-24 18:23:19 -0700596 public abstract ArrayMap<String, ? extends Timer> getJobStats();
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700597
598 /**
Dianne Hackborn94326cb2017-06-28 16:17:20 -0700599 * Returns statistics about how jobs have completed.
600 *
601 * @return A Map of String job names to completion type -> count mapping.
602 */
603 public abstract ArrayMap<String, SparseIntArray> getJobCompletionStats();
604
605 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800606 * The statistics associated with a particular wake lock.
607 */
608 public static abstract class Wakelock {
609 public abstract Timer getWakeTime(int type);
610 }
611
612 /**
Bookatzc8c44962017-05-11 12:12:54 -0700613 * The cumulative time the uid spent holding any partial wakelocks. This will generally
614 * differ from summing over the Wakelocks in getWakelockStats since the latter may have
615 * wakelocks that overlap in time (and therefore over-counts).
616 */
617 public abstract Timer getAggregatedPartialWakelockTimer();
618
619 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800620 * Returns a mapping containing sensor statistics.
621 *
622 * @return a Map from Integer sensor ids to Uid.Sensor objects.
623 */
Dianne Hackborn61659e52014-07-09 16:13:01 -0700624 public abstract SparseArray<? extends Sensor> getSensorStats();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800625
626 /**
Dianne Hackbornb5e31652010-09-07 12:13:55 -0700627 * Returns a mapping containing active process data.
628 */
629 public abstract SparseArray<? extends Pid> getPidStats();
Bookatzc8c44962017-05-11 12:12:54 -0700630
Dianne Hackbornb5e31652010-09-07 12:13:55 -0700631 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800632 * Returns a mapping containing process statistics.
633 *
634 * @return a Map from Strings to Uid.Proc objects.
635 */
Dianne Hackborn1e725a72015-03-24 18:23:19 -0700636 public abstract ArrayMap<String, ? extends Proc> getProcessStats();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800637
638 /**
639 * Returns a mapping containing package statistics.
640 *
641 * @return a Map from Strings to Uid.Pkg objects.
642 */
Dianne Hackborn1e725a72015-03-24 18:23:19 -0700643 public abstract ArrayMap<String, ? extends Pkg> getPackageStats();
Adam Lesinskie08af192015-03-25 16:42:59 -0700644
Adam Lesinski21f76aa2016-01-25 12:27:06 -0800645 public abstract ControllerActivityCounter getWifiControllerActivity();
646 public abstract ControllerActivityCounter getBluetoothControllerActivity();
647 public abstract ControllerActivityCounter getModemControllerActivity();
Adam Lesinski50e47602015-12-04 17:04:54 -0800648
649 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800650 * {@hide}
651 */
652 public abstract int getUid();
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700653
Dianne Hackbornca1bf212014-02-14 14:18:36 -0800654 public abstract void noteWifiRunningLocked(long elapsedRealtime);
655 public abstract void noteWifiStoppedLocked(long elapsedRealtime);
656 public abstract void noteFullWifiLockAcquiredLocked(long elapsedRealtime);
657 public abstract void noteFullWifiLockReleasedLocked(long elapsedRealtime);
658 public abstract void noteWifiScanStartedLocked(long elapsedRealtime);
659 public abstract void noteWifiScanStoppedLocked(long elapsedRealtime);
660 public abstract void noteWifiBatchedScanStartedLocked(int csph, long elapsedRealtime);
661 public abstract void noteWifiBatchedScanStoppedLocked(long elapsedRealtime);
662 public abstract void noteWifiMulticastEnabledLocked(long elapsedRealtime);
663 public abstract void noteWifiMulticastDisabledLocked(long elapsedRealtime);
Dianne Hackbornca1bf212014-02-14 14:18:36 -0800664 public abstract void noteActivityResumedLocked(long elapsedRealtime);
665 public abstract void noteActivityPausedLocked(long elapsedRealtime);
Dianne Hackborn97ae5382014-03-05 16:43:25 -0800666 public abstract long getWifiRunningTime(long elapsedRealtimeUs, int which);
667 public abstract long getFullWifiLockTime(long elapsedRealtimeUs, int which);
668 public abstract long getWifiScanTime(long elapsedRealtimeUs, int which);
Dianne Hackborn62793e42015-03-09 11:15:41 -0700669 public abstract int getWifiScanCount(int which);
Kweku Adams103351f2017-10-16 14:39:34 -0700670 /**
671 * Returns the timer keeping track of wifi scans.
672 */
673 public abstract Timer getWifiScanTimer();
Bookatz867c0d72017-03-07 18:23:42 -0800674 public abstract int getWifiScanBackgroundCount(int which);
675 public abstract long getWifiScanActualTime(long elapsedRealtimeUs);
676 public abstract long getWifiScanBackgroundTime(long elapsedRealtimeUs);
Kweku Adams103351f2017-10-16 14:39:34 -0700677 /**
678 * Returns the timer keeping track of background wifi scans.
679 */
680 public abstract Timer getWifiScanBackgroundTimer();
Dianne Hackborn97ae5382014-03-05 16:43:25 -0800681 public abstract long getWifiBatchedScanTime(int csphBin, long elapsedRealtimeUs, int which);
Dianne Hackborn62793e42015-03-09 11:15:41 -0700682 public abstract int getWifiBatchedScanCount(int csphBin, int which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -0800683 public abstract long getWifiMulticastTime(long elapsedRealtimeUs, int which);
Ruben Brunk6d2c3632015-05-26 17:32:16 -0700684 public abstract Timer getAudioTurnedOnTimer();
685 public abstract Timer getVideoTurnedOnTimer();
686 public abstract Timer getFlashlightTurnedOnTimer();
687 public abstract Timer getCameraTurnedOnTimer();
Jeff Sharkey3e013e82013-04-25 14:48:19 -0700688 public abstract Timer getForegroundActivityTimer();
Michael Wachenschwanzb05a3c52017-07-07 17:47:04 -0700689
690 /**
691 * Returns the timer keeping track of Foreground Service time
692 */
693 public abstract Timer getForegroundServiceTimer();
Adam Lesinski9f55cc72016-01-27 20:42:14 -0800694 public abstract Timer getBluetoothScanTimer();
Bookatz867c0d72017-03-07 18:23:42 -0800695 public abstract Timer getBluetoothScanBackgroundTimer();
Bookatzb1f04f32017-05-19 13:57:32 -0700696 public abstract Timer getBluetoothUnoptimizedScanTimer();
697 public abstract Timer getBluetoothUnoptimizedScanBackgroundTimer();
Bookatz956f36bf2017-04-28 09:48:17 -0700698 public abstract Counter getBluetoothScanResultCounter();
Bookatzb1f04f32017-05-19 13:57:32 -0700699 public abstract Counter getBluetoothScanResultBgCounter();
Dianne Hackborn61659e52014-07-09 16:13:01 -0700700
Sudheer Shanka9b735c52017-05-09 18:26:18 -0700701 public abstract long[] getCpuFreqTimes(int which);
702 public abstract long[] getScreenOffCpuFreqTimes(int which);
Mike Ma3d422c32017-10-25 11:08:57 -0700703 /**
704 * Returns cpu active time of an uid.
705 */
706 public abstract long getCpuActiveTime();
707 /**
708 * Returns cpu times of an uid on each cluster
709 */
710 public abstract long[] getCpuClusterTimes();
Sudheer Shanka9b735c52017-05-09 18:26:18 -0700711
Sudheer Shankab2f83c12017-11-13 19:25:01 -0800712 /**
713 * Returns cpu times of an uid at a particular process state.
714 */
715 public abstract long[] getCpuFreqTimes(int which, int procState);
716 /**
717 * Returns cpu times of an uid while the screen if off at a particular process state.
718 */
719 public abstract long[] getScreenOffCpuFreqTimes(int which, int procState);
720
Dianne Hackborna0200e32016-03-30 18:01:41 -0700721 // Note: the following times are disjoint. They can be added together to find the
722 // total time a uid has had any processes running at all.
723
724 /**
zhouwenjie46712bc2018-01-11 15:21:27 -0800725 * Time this uid has any processes in the top state.
Dianne Hackborna0200e32016-03-30 18:01:41 -0700726 */
Dianne Hackborna8d10942015-11-19 17:55:19 -0800727 public static final int PROCESS_STATE_TOP = 0;
Dianne Hackborna0200e32016-03-30 18:01:41 -0700728 /**
zhouwenjie46712bc2018-01-11 15:21:27 -0800729 * Time this uid has any process with a started foreground service, but
Dianne Hackborna0200e32016-03-30 18:01:41 -0700730 * none in the "top" state.
731 */
Dianne Hackborna8d10942015-11-19 17:55:19 -0800732 public static final int PROCESS_STATE_FOREGROUND_SERVICE = 1;
Dianne Hackborna0200e32016-03-30 18:01:41 -0700733 /**
Dianne Hackborna0200e32016-03-30 18:01:41 -0700734 * Time this uid has any process in an active foreground state, but none in the
zhouwenjie46712bc2018-01-11 15:21:27 -0800735 * "foreground service" or better state. Persistent and other foreground states go here.
Dianne Hackborna0200e32016-03-30 18:01:41 -0700736 */
Dianne Hackbornbad8d912017-12-18 16:45:52 -0800737 public static final int PROCESS_STATE_FOREGROUND = 2;
Dianne Hackborna0200e32016-03-30 18:01:41 -0700738 /**
739 * Time this uid has any process in an active background state, but none in the
740 * "foreground" or better state.
741 */
Dianne Hackbornbad8d912017-12-18 16:45:52 -0800742 public static final int PROCESS_STATE_BACKGROUND = 3;
743 /**
744 * Time this uid has any process that is top while the device is sleeping, but not
745 * active for any other reason. We kind-of consider it a kind of cached process
746 * for execution restrictions.
747 */
748 public static final int PROCESS_STATE_TOP_SLEEPING = 4;
749 /**
750 * Time this uid has any process that is in the background but it has an activity
751 * marked as "can't save state". This is essentially a cached process, though the
752 * system will try much harder than normal to avoid killing it.
753 */
754 public static final int PROCESS_STATE_HEAVY_WEIGHT = 5;
Dianne Hackborna0200e32016-03-30 18:01:41 -0700755 /**
756 * Time this uid has any processes that are sitting around cached, not in one of the
757 * other active states.
758 */
Dianne Hackbornbad8d912017-12-18 16:45:52 -0800759 public static final int PROCESS_STATE_CACHED = 6;
Dianne Hackborna0200e32016-03-30 18:01:41 -0700760 /**
761 * Total number of process states we track.
762 */
Dianne Hackbornbad8d912017-12-18 16:45:52 -0800763 public static final int NUM_PROCESS_STATE = 7;
Dianne Hackborn61659e52014-07-09 16:13:01 -0700764
Sudheer Shankab2f83c12017-11-13 19:25:01 -0800765 // Used in dump
Dianne Hackborn61659e52014-07-09 16:13:01 -0700766 static final String[] PROCESS_STATE_NAMES = {
Dianne Hackbornbad8d912017-12-18 16:45:52 -0800767 "Top", "Fg Service", "Foreground", "Background", "Top Sleeping", "Heavy Weight",
768 "Cached"
Dianne Hackborn61659e52014-07-09 16:13:01 -0700769 };
770
Sudheer Shankab2f83c12017-11-13 19:25:01 -0800771 // Used in checkin dump
772 @VisibleForTesting
773 public static final String[] UID_PROCESS_TYPES = {
774 "T", // TOP
775 "FS", // FOREGROUND_SERVICE
776 "F", // FOREGROUND
777 "B", // BACKGROUND
778 "TS", // TOP_SLEEPING
779 "HW", // HEAVY_WEIGHT
780 "C" // CACHED
781 };
782
783 /**
784 * When the process exits one of these states, we need to make sure cpu time in this state
785 * is not attributed to any non-critical process states.
786 */
787 public static final int[] CRITICAL_PROC_STATES = {
788 PROCESS_STATE_TOP, PROCESS_STATE_FOREGROUND_SERVICE, PROCESS_STATE_FOREGROUND
789 };
790
Dianne Hackborn61659e52014-07-09 16:13:01 -0700791 public abstract long getProcessStateTime(int state, long elapsedRealtimeUs, int which);
Joe Onorato713fec82016-03-04 10:34:02 -0800792 public abstract Timer getProcessStateTimer(int state);
Dianne Hackborn61659e52014-07-09 16:13:01 -0700793
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800794 public abstract Timer getVibratorOnTimer();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800795
Robert Greenwalta029ea12013-09-25 16:38:12 -0700796 public static final int NUM_WIFI_BATCHED_SCAN_BINS = 5;
797
Dianne Hackborn617f8772009-03-31 15:04:46 -0700798 /**
Jeff Browndf693de2012-07-27 12:03:38 -0700799 * Note that these must match the constants in android.os.PowerManager.
800 * Also, if the user activity types change, the BatteryStatsImpl.VERSION must
801 * also be bumped.
Dianne Hackborn617f8772009-03-31 15:04:46 -0700802 */
803 static final String[] USER_ACTIVITY_TYPES = {
Phil Weaverda80d672016-03-15 16:25:46 -0700804 "other", "button", "touch", "accessibility"
Dianne Hackborn617f8772009-03-31 15:04:46 -0700805 };
Bookatzc8c44962017-05-11 12:12:54 -0700806
Phil Weaverda80d672016-03-15 16:25:46 -0700807 public static final int NUM_USER_ACTIVITY_TYPES = 4;
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700808
Dianne Hackborn617f8772009-03-31 15:04:46 -0700809 public abstract void noteUserActivityLocked(int type);
810 public abstract boolean hasUserActivity();
811 public abstract int getUserActivityCount(int type, int which);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700812
813 public abstract boolean hasNetworkActivity();
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800814 public abstract long getNetworkActivityBytes(int type, int which);
815 public abstract long getNetworkActivityPackets(int type, int which);
Dianne Hackbornd45665b2014-02-26 12:35:32 -0800816 public abstract long getMobileRadioActiveTime(int which);
817 public abstract int getMobileRadioActiveCount(int which);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700818
Adam Lesinski06af1fa2015-05-05 17:35:35 -0700819 /**
820 * Get the total cpu time (in microseconds) this UID had processes executing in userspace.
821 */
822 public abstract long getUserCpuTimeUs(int which);
823
824 /**
825 * Get the total cpu time (in microseconds) this UID had processes executing kernel syscalls.
826 */
827 public abstract long getSystemCpuTimeUs(int which);
828
829 /**
Sudheer Shanka71f34b32017-07-21 00:14:24 -0700830 * Returns the approximate cpu time (in microseconds) spent at a certain CPU speed for a
Adam Lesinski6832f392015-09-05 18:05:40 -0700831 * given CPU cluster.
832 * @param cluster the index of the CPU cluster.
Adam Lesinskia7a4ccc2015-06-26 17:43:04 -0700833 * @param step the index of the CPU speed. This is not the actual speed of the CPU.
Adam Lesinski06af1fa2015-05-05 17:35:35 -0700834 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
Dianne Hackborn08c47a52015-10-15 12:38:14 -0700835 * @see com.android.internal.os.PowerProfile#getNumCpuClusters()
836 * @see com.android.internal.os.PowerProfile#getNumSpeedStepsInCpuCluster(int)
Adam Lesinski06af1fa2015-05-05 17:35:35 -0700837 */
Adam Lesinski6832f392015-09-05 18:05:40 -0700838 public abstract long getTimeAtCpuSpeed(int cluster, int step, int which);
Adam Lesinski06af1fa2015-05-05 17:35:35 -0700839
Adam Lesinski5f056f62016-07-14 16:56:08 -0700840 /**
841 * Returns the number of times this UID woke up the Application Processor to
842 * process a mobile radio packet.
843 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
844 */
845 public abstract long getMobileRadioApWakeupCount(int which);
846
847 /**
848 * Returns the number of times this UID woke up the Application Processor to
849 * process a WiFi packet.
850 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
851 */
852 public abstract long getWifiRadioApWakeupCount(int which);
853
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800854 public static abstract class Sensor {
Mathias Agopian7f84c062013-02-04 19:22:47 -0800855 /*
856 * FIXME: it's not correct to use this magic value because it
857 * could clash with a sensor handle (which are defined by
858 * the sensor HAL, and therefore out of our control
859 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800860 // Magic sensor number for the GPS.
861 public static final int GPS = -10000;
Amith Yamasaniab9ad192016-12-06 12:46:59 -0800862
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800863 public abstract int getHandle();
Amith Yamasaniab9ad192016-12-06 12:46:59 -0800864
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800865 public abstract Timer getSensorTime();
Amith Yamasaniab9ad192016-12-06 12:46:59 -0800866
Bookatz867c0d72017-03-07 18:23:42 -0800867 /** Returns a Timer for sensor usage when app is in the background. */
868 public abstract Timer getSensorBackgroundTime();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800869 }
870
Dianne Hackbornb5e31652010-09-07 12:13:55 -0700871 public class Pid {
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800872 public int mWakeNesting;
873 public long mWakeSumMs;
874 public long mWakeStartMs;
Dianne Hackbornb5e31652010-09-07 12:13:55 -0700875 }
876
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800877 /**
878 * The statistics associated with a particular process.
879 */
880 public static abstract class Proc {
881
Dianne Hackborn287952c2010-09-22 22:34:31 -0700882 public static class ExcessivePower {
883 public static final int TYPE_WAKE = 1;
884 public static final int TYPE_CPU = 2;
885
886 public int type;
Dianne Hackborn9adb9c32010-08-13 14:09:56 -0700887 public long overTime;
888 public long usedTime;
889 }
890
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800891 /**
Dianne Hackborn099bc622014-01-22 13:39:16 -0800892 * Returns true if this process is still active in the battery stats.
893 */
894 public abstract boolean isActive();
895
896 /**
Adam Lesinski33dac552015-03-09 15:24:48 -0700897 * Returns the total time (in milliseconds) spent executing in user code.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800898 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700899 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800900 */
901 public abstract long getUserTime(int which);
902
903 /**
Adam Lesinski33dac552015-03-09 15:24:48 -0700904 * Returns the total time (in milliseconds) spent executing in system code.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800905 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700906 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800907 */
908 public abstract long getSystemTime(int which);
909
910 /**
911 * Returns the number of times the process has been started.
912 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700913 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800914 */
915 public abstract int getStarts(int which);
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700916
917 /**
Dianne Hackborn1e01d162014-12-04 17:46:42 -0800918 * Returns the number of times the process has crashed.
919 *
920 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
921 */
922 public abstract int getNumCrashes(int which);
923
924 /**
925 * Returns the number of times the process has ANRed.
926 *
927 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
928 */
929 public abstract int getNumAnrs(int which);
930
931 /**
Adam Lesinski33dac552015-03-09 15:24:48 -0700932 * Returns the cpu time (milliseconds) spent while the process was in the foreground.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700933 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700934 * @return foreground cpu time in microseconds
935 */
936 public abstract long getForegroundTime(int which);
Amith Yamasanie43530a2009-08-21 13:11:37 -0700937
Dianne Hackborn287952c2010-09-22 22:34:31 -0700938 public abstract int countExcessivePowers();
Dianne Hackborn9adb9c32010-08-13 14:09:56 -0700939
Dianne Hackborn287952c2010-09-22 22:34:31 -0700940 public abstract ExcessivePower getExcessivePower(int i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800941 }
942
943 /**
944 * The statistics associated with a particular package.
945 */
946 public static abstract class Pkg {
947
948 /**
Dianne Hackborn1e725a72015-03-24 18:23:19 -0700949 * Returns information about all wakeup alarms that have been triggered for this
950 * package. The mapping keys are tag names for the alarms, the counter contains
951 * the number of times the alarm was triggered while on battery.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800952 */
Dianne Hackborn1e725a72015-03-24 18:23:19 -0700953 public abstract ArrayMap<String, ? extends Counter> getWakeupAlarmStats();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800954
955 /**
956 * Returns a mapping containing service statistics.
957 */
Dianne Hackborn1e725a72015-03-24 18:23:19 -0700958 public abstract ArrayMap<String, ? extends Serv> getServiceStats();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800959
960 /**
961 * The statistics associated with a particular service.
962 */
Joe Onoratoabded112016-02-08 16:49:39 -0800963 public static abstract class Serv {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800964
965 /**
966 * Returns the amount of time spent started.
967 *
968 * @param batteryUptime elapsed uptime on battery in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700969 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800970 * @return
971 */
972 public abstract long getStartTime(long batteryUptime, int which);
973
974 /**
975 * Returns the total number of times startService() has been called.
976 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700977 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800978 */
979 public abstract int getStarts(int which);
980
981 /**
982 * Returns the total number times the service has been launched.
983 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700984 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800985 */
986 public abstract int getLaunches(int which);
987 }
988 }
989 }
990
Dianne Hackbornd4a8af72015-03-03 10:06:15 -0800991 public static final class LevelStepTracker {
992 public long mLastStepTime = -1;
993 public int mNumStepDurations;
994 public final long[] mStepDurations;
995
996 public LevelStepTracker(int maxLevelSteps) {
997 mStepDurations = new long[maxLevelSteps];
998 }
999
1000 public LevelStepTracker(int numSteps, long[] steps) {
1001 mNumStepDurations = numSteps;
1002 mStepDurations = new long[numSteps];
1003 System.arraycopy(steps, 0, mStepDurations, 0, numSteps);
1004 }
1005
1006 public long getDurationAt(int index) {
1007 return mStepDurations[index] & STEP_LEVEL_TIME_MASK;
1008 }
1009
1010 public int getLevelAt(int index) {
1011 return (int)((mStepDurations[index] & STEP_LEVEL_LEVEL_MASK)
1012 >> STEP_LEVEL_LEVEL_SHIFT);
1013 }
1014
1015 public int getInitModeAt(int index) {
1016 return (int)((mStepDurations[index] & STEP_LEVEL_INITIAL_MODE_MASK)
1017 >> STEP_LEVEL_INITIAL_MODE_SHIFT);
1018 }
1019
1020 public int getModModeAt(int index) {
1021 return (int)((mStepDurations[index] & STEP_LEVEL_MODIFIED_MODE_MASK)
1022 >> STEP_LEVEL_MODIFIED_MODE_SHIFT);
1023 }
1024
1025 private void appendHex(long val, int topOffset, StringBuilder out) {
1026 boolean hasData = false;
1027 while (topOffset >= 0) {
1028 int digit = (int)( (val>>topOffset) & 0xf );
1029 topOffset -= 4;
1030 if (!hasData && digit == 0) {
1031 continue;
1032 }
1033 hasData = true;
1034 if (digit >= 0 && digit <= 9) {
1035 out.append((char)('0' + digit));
1036 } else {
1037 out.append((char)('a' + digit - 10));
1038 }
1039 }
1040 }
1041
1042 public void encodeEntryAt(int index, StringBuilder out) {
1043 long item = mStepDurations[index];
1044 long duration = item & STEP_LEVEL_TIME_MASK;
1045 int level = (int)((item & STEP_LEVEL_LEVEL_MASK)
1046 >> STEP_LEVEL_LEVEL_SHIFT);
1047 int initMode = (int)((item & STEP_LEVEL_INITIAL_MODE_MASK)
1048 >> STEP_LEVEL_INITIAL_MODE_SHIFT);
1049 int modMode = (int)((item & STEP_LEVEL_MODIFIED_MODE_MASK)
1050 >> STEP_LEVEL_MODIFIED_MODE_SHIFT);
1051 switch ((initMode&STEP_LEVEL_MODE_SCREEN_STATE) + 1) {
1052 case Display.STATE_OFF: out.append('f'); break;
1053 case Display.STATE_ON: out.append('o'); break;
1054 case Display.STATE_DOZE: out.append('d'); break;
1055 case Display.STATE_DOZE_SUSPEND: out.append('z'); break;
1056 }
1057 if ((initMode&STEP_LEVEL_MODE_POWER_SAVE) != 0) {
1058 out.append('p');
1059 }
Dianne Hackborn88e98df2015-03-23 13:29:14 -07001060 if ((initMode&STEP_LEVEL_MODE_DEVICE_IDLE) != 0) {
1061 out.append('i');
1062 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001063 switch ((modMode&STEP_LEVEL_MODE_SCREEN_STATE) + 1) {
1064 case Display.STATE_OFF: out.append('F'); break;
1065 case Display.STATE_ON: out.append('O'); break;
1066 case Display.STATE_DOZE: out.append('D'); break;
1067 case Display.STATE_DOZE_SUSPEND: out.append('Z'); break;
1068 }
1069 if ((modMode&STEP_LEVEL_MODE_POWER_SAVE) != 0) {
1070 out.append('P');
1071 }
Dianne Hackborn88e98df2015-03-23 13:29:14 -07001072 if ((modMode&STEP_LEVEL_MODE_DEVICE_IDLE) != 0) {
1073 out.append('I');
1074 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001075 out.append('-');
1076 appendHex(level, 4, out);
1077 out.append('-');
1078 appendHex(duration, STEP_LEVEL_LEVEL_SHIFT-4, out);
1079 }
1080
1081 public void decodeEntryAt(int index, String value) {
1082 final int N = value.length();
1083 int i = 0;
1084 char c;
1085 long out = 0;
1086 while (i < N && (c=value.charAt(i)) != '-') {
1087 i++;
1088 switch (c) {
Dianne Hackborn8cfb58b2015-03-04 13:28:36 -08001089 case 'f': out |= (((long)Display.STATE_OFF-1)<<STEP_LEVEL_INITIAL_MODE_SHIFT);
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001090 break;
Dianne Hackborn8cfb58b2015-03-04 13:28:36 -08001091 case 'o': out |= (((long)Display.STATE_ON-1)<<STEP_LEVEL_INITIAL_MODE_SHIFT);
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001092 break;
Dianne Hackborn8cfb58b2015-03-04 13:28:36 -08001093 case 'd': out |= (((long)Display.STATE_DOZE-1)<<STEP_LEVEL_INITIAL_MODE_SHIFT);
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001094 break;
Dianne Hackborn8cfb58b2015-03-04 13:28:36 -08001095 case 'z': out |= (((long)Display.STATE_DOZE_SUSPEND-1)
1096 << STEP_LEVEL_INITIAL_MODE_SHIFT);
1097 break;
1098 case 'p': out |= (((long)STEP_LEVEL_MODE_POWER_SAVE)
1099 << STEP_LEVEL_INITIAL_MODE_SHIFT);
1100 break;
Dianne Hackborn88e98df2015-03-23 13:29:14 -07001101 case 'i': out |= (((long)STEP_LEVEL_MODE_DEVICE_IDLE)
1102 << STEP_LEVEL_INITIAL_MODE_SHIFT);
1103 break;
Dianne Hackborn8cfb58b2015-03-04 13:28:36 -08001104 case 'F': out |= (((long)Display.STATE_OFF-1)<<STEP_LEVEL_MODIFIED_MODE_SHIFT);
1105 break;
1106 case 'O': out |= (((long)Display.STATE_ON-1)<<STEP_LEVEL_MODIFIED_MODE_SHIFT);
1107 break;
1108 case 'D': out |= (((long)Display.STATE_DOZE-1)<<STEP_LEVEL_MODIFIED_MODE_SHIFT);
1109 break;
1110 case 'Z': out |= (((long)Display.STATE_DOZE_SUSPEND-1)
1111 << STEP_LEVEL_MODIFIED_MODE_SHIFT);
1112 break;
1113 case 'P': out |= (((long)STEP_LEVEL_MODE_POWER_SAVE)
1114 << STEP_LEVEL_MODIFIED_MODE_SHIFT);
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001115 break;
Dianne Hackborn88e98df2015-03-23 13:29:14 -07001116 case 'I': out |= (((long)STEP_LEVEL_MODE_DEVICE_IDLE)
1117 << STEP_LEVEL_MODIFIED_MODE_SHIFT);
1118 break;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001119 }
1120 }
1121 i++;
Dianne Hackborn8cfb58b2015-03-04 13:28:36 -08001122 long level = 0;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001123 while (i < N && (c=value.charAt(i)) != '-') {
1124 i++;
1125 level <<= 4;
1126 if (c >= '0' && c <= '9') {
1127 level += c - '0';
1128 } else if (c >= 'a' && c <= 'f') {
1129 level += c - 'a' + 10;
1130 } else if (c >= 'A' && c <= 'F') {
1131 level += c - 'A' + 10;
1132 }
1133 }
Dianne Hackborn8cfb58b2015-03-04 13:28:36 -08001134 i++;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001135 out |= (level << STEP_LEVEL_LEVEL_SHIFT) & STEP_LEVEL_LEVEL_MASK;
1136 long duration = 0;
1137 while (i < N && (c=value.charAt(i)) != '-') {
1138 i++;
1139 duration <<= 4;
1140 if (c >= '0' && c <= '9') {
1141 duration += c - '0';
1142 } else if (c >= 'a' && c <= 'f') {
1143 duration += c - 'a' + 10;
1144 } else if (c >= 'A' && c <= 'F') {
1145 duration += c - 'A' + 10;
1146 }
1147 }
1148 mStepDurations[index] = out | (duration & STEP_LEVEL_TIME_MASK);
1149 }
1150
1151 public void init() {
1152 mLastStepTime = -1;
1153 mNumStepDurations = 0;
1154 }
1155
1156 public void clearTime() {
1157 mLastStepTime = -1;
1158 }
1159
1160 public long computeTimePerLevel() {
1161 final long[] steps = mStepDurations;
1162 final int numSteps = mNumStepDurations;
1163
1164 // For now we'll do a simple average across all steps.
1165 if (numSteps <= 0) {
1166 return -1;
1167 }
1168 long total = 0;
1169 for (int i=0; i<numSteps; i++) {
1170 total += steps[i] & STEP_LEVEL_TIME_MASK;
1171 }
1172 return total / numSteps;
1173 /*
1174 long[] buckets = new long[numSteps];
1175 int numBuckets = 0;
1176 int numToAverage = 4;
1177 int i = 0;
1178 while (i < numSteps) {
1179 long totalTime = 0;
1180 int num = 0;
1181 for (int j=0; j<numToAverage && (i+j)<numSteps; j++) {
1182 totalTime += steps[i+j] & STEP_LEVEL_TIME_MASK;
1183 num++;
1184 }
1185 buckets[numBuckets] = totalTime / num;
1186 numBuckets++;
1187 numToAverage *= 2;
1188 i += num;
1189 }
1190 if (numBuckets < 1) {
1191 return -1;
1192 }
1193 long averageTime = buckets[numBuckets-1];
1194 for (i=numBuckets-2; i>=0; i--) {
1195 averageTime = (averageTime + buckets[i]) / 2;
1196 }
1197 return averageTime;
1198 */
1199 }
1200
1201 public long computeTimeEstimate(long modesOfInterest, long modeValues,
1202 int[] outNumOfInterest) {
1203 final long[] steps = mStepDurations;
1204 final int count = mNumStepDurations;
1205 if (count <= 0) {
1206 return -1;
1207 }
1208 long total = 0;
1209 int numOfInterest = 0;
1210 for (int i=0; i<count; i++) {
1211 long initMode = (steps[i] & STEP_LEVEL_INITIAL_MODE_MASK)
1212 >> STEP_LEVEL_INITIAL_MODE_SHIFT;
1213 long modMode = (steps[i] & STEP_LEVEL_MODIFIED_MODE_MASK)
1214 >> STEP_LEVEL_MODIFIED_MODE_SHIFT;
1215 // If the modes of interest didn't change during this step period...
1216 if ((modMode&modesOfInterest) == 0) {
1217 // And the mode values during this period match those we are measuring...
1218 if ((initMode&modesOfInterest) == modeValues) {
1219 // Then this can be used to estimate the total time!
1220 numOfInterest++;
1221 total += steps[i] & STEP_LEVEL_TIME_MASK;
1222 }
1223 }
1224 }
1225 if (numOfInterest <= 0) {
1226 return -1;
1227 }
1228
1229 if (outNumOfInterest != null) {
1230 outNumOfInterest[0] = numOfInterest;
1231 }
1232
1233 // The estimated time is the average time we spend in each level, multipled
1234 // by 100 -- the total number of battery levels
1235 return (total / numOfInterest) * 100;
1236 }
1237
1238 public void addLevelSteps(int numStepLevels, long modeBits, long elapsedRealtime) {
1239 int stepCount = mNumStepDurations;
1240 final long lastStepTime = mLastStepTime;
1241 if (lastStepTime >= 0 && numStepLevels > 0) {
1242 final long[] steps = mStepDurations;
1243 long duration = elapsedRealtime - lastStepTime;
1244 for (int i=0; i<numStepLevels; i++) {
1245 System.arraycopy(steps, 0, steps, 1, steps.length-1);
1246 long thisDuration = duration / (numStepLevels-i);
1247 duration -= thisDuration;
1248 if (thisDuration > STEP_LEVEL_TIME_MASK) {
1249 thisDuration = STEP_LEVEL_TIME_MASK;
1250 }
1251 steps[0] = thisDuration | modeBits;
1252 }
1253 stepCount += numStepLevels;
1254 if (stepCount > steps.length) {
1255 stepCount = steps.length;
1256 }
1257 }
1258 mNumStepDurations = stepCount;
1259 mLastStepTime = elapsedRealtime;
1260 }
1261
1262 public void readFromParcel(Parcel in) {
1263 final int N = in.readInt();
Adam Lesinski9ae9cba2015-07-08 17:09:34 -07001264 if (N > mStepDurations.length) {
1265 throw new ParcelFormatException("more step durations than available: " + N);
1266 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001267 mNumStepDurations = N;
1268 for (int i=0; i<N; i++) {
1269 mStepDurations[i] = in.readLong();
1270 }
1271 }
1272
1273 public void writeToParcel(Parcel out) {
1274 final int N = mNumStepDurations;
1275 out.writeInt(N);
1276 for (int i=0; i<N; i++) {
1277 out.writeLong(mStepDurations[i]);
1278 }
1279 }
1280 }
1281
Dianne Hackborn88e98df2015-03-23 13:29:14 -07001282 public static final class PackageChange {
1283 public String mPackageName;
1284 public boolean mUpdate;
Dianne Hackborn3accca02013-09-20 09:32:11 -07001285 public long mVersionCode;
Dianne Hackborn88e98df2015-03-23 13:29:14 -07001286 }
1287
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001288 public static final class DailyItem {
1289 public long mStartTime;
1290 public long mEndTime;
1291 public LevelStepTracker mDischargeSteps;
1292 public LevelStepTracker mChargeSteps;
Dianne Hackborn88e98df2015-03-23 13:29:14 -07001293 public ArrayList<PackageChange> mPackageChanges;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001294 }
1295
1296 public abstract DailyItem getDailyItemLocked(int daysAgo);
1297
1298 public abstract long getCurrentDailyStartTime();
1299
1300 public abstract long getNextMinDailyDeadline();
1301
1302 public abstract long getNextMaxDailyDeadline();
1303
Sudheer Shanka9b735c52017-05-09 18:26:18 -07001304 public abstract long[] getCpuFreqs();
1305
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001306 public final static class HistoryTag {
1307 public String string;
1308 public int uid;
1309
1310 public int poolIdx;
1311
1312 public void setTo(HistoryTag o) {
1313 string = o.string;
1314 uid = o.uid;
1315 poolIdx = o.poolIdx;
1316 }
1317
1318 public void setTo(String _string, int _uid) {
1319 string = _string;
1320 uid = _uid;
1321 poolIdx = -1;
1322 }
1323
1324 public void writeToParcel(Parcel dest, int flags) {
1325 dest.writeString(string);
1326 dest.writeInt(uid);
1327 }
1328
1329 public void readFromParcel(Parcel src) {
1330 string = src.readString();
1331 uid = src.readInt();
1332 poolIdx = -1;
1333 }
1334
1335 @Override
1336 public boolean equals(Object o) {
1337 if (this == o) return true;
1338 if (o == null || getClass() != o.getClass()) return false;
1339
1340 HistoryTag that = (HistoryTag) o;
1341
1342 if (uid != that.uid) return false;
1343 if (!string.equals(that.string)) return false;
1344
1345 return true;
1346 }
1347
1348 @Override
1349 public int hashCode() {
1350 int result = string.hashCode();
1351 result = 31 * result + uid;
1352 return result;
1353 }
1354 }
1355
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08001356 /**
1357 * Optional detailed information that can go into a history step. This is typically
1358 * generated each time the battery level changes.
1359 */
1360 public final static class HistoryStepDetails {
1361 // Time (in 1/100 second) spent in user space and the kernel since the last step.
1362 public int userTime;
1363 public int systemTime;
1364
1365 // Top three apps using CPU in the last step, with times in 1/100 second.
1366 public int appCpuUid1;
1367 public int appCpuUTime1;
1368 public int appCpuSTime1;
1369 public int appCpuUid2;
1370 public int appCpuUTime2;
1371 public int appCpuSTime2;
1372 public int appCpuUid3;
1373 public int appCpuUTime3;
1374 public int appCpuSTime3;
1375
1376 // Information from /proc/stat
1377 public int statUserTime;
1378 public int statSystemTime;
1379 public int statIOWaitTime;
1380 public int statIrqTime;
1381 public int statSoftIrqTime;
1382 public int statIdlTime;
1383
Badhri Jagan Sridharan68cdf192016-04-03 21:57:15 -07001384 // Platform-level low power state stats
1385 public String statPlatformIdleState;
Ahmed ElArabawyd8b44112017-05-23 21:25:02 +00001386 public String statSubsystemPowerState;
Badhri Jagan Sridharan68cdf192016-04-03 21:57:15 -07001387
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08001388 public HistoryStepDetails() {
1389 clear();
1390 }
1391
1392 public void clear() {
1393 userTime = systemTime = 0;
1394 appCpuUid1 = appCpuUid2 = appCpuUid3 = -1;
1395 appCpuUTime1 = appCpuSTime1 = appCpuUTime2 = appCpuSTime2
1396 = appCpuUTime3 = appCpuSTime3 = 0;
1397 }
1398
1399 public void writeToParcel(Parcel out) {
1400 out.writeInt(userTime);
1401 out.writeInt(systemTime);
1402 out.writeInt(appCpuUid1);
1403 out.writeInt(appCpuUTime1);
1404 out.writeInt(appCpuSTime1);
1405 out.writeInt(appCpuUid2);
1406 out.writeInt(appCpuUTime2);
1407 out.writeInt(appCpuSTime2);
1408 out.writeInt(appCpuUid3);
1409 out.writeInt(appCpuUTime3);
1410 out.writeInt(appCpuSTime3);
1411 out.writeInt(statUserTime);
1412 out.writeInt(statSystemTime);
1413 out.writeInt(statIOWaitTime);
1414 out.writeInt(statIrqTime);
1415 out.writeInt(statSoftIrqTime);
1416 out.writeInt(statIdlTime);
Badhri Jagan Sridharan68cdf192016-04-03 21:57:15 -07001417 out.writeString(statPlatformIdleState);
Ahmed ElArabawyd8b44112017-05-23 21:25:02 +00001418 out.writeString(statSubsystemPowerState);
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08001419 }
1420
1421 public void readFromParcel(Parcel in) {
1422 userTime = in.readInt();
1423 systemTime = in.readInt();
1424 appCpuUid1 = in.readInt();
1425 appCpuUTime1 = in.readInt();
1426 appCpuSTime1 = in.readInt();
1427 appCpuUid2 = in.readInt();
1428 appCpuUTime2 = in.readInt();
1429 appCpuSTime2 = in.readInt();
1430 appCpuUid3 = in.readInt();
1431 appCpuUTime3 = in.readInt();
1432 appCpuSTime3 = in.readInt();
1433 statUserTime = in.readInt();
1434 statSystemTime = in.readInt();
1435 statIOWaitTime = in.readInt();
1436 statIrqTime = in.readInt();
1437 statSoftIrqTime = in.readInt();
1438 statIdlTime = in.readInt();
Badhri Jagan Sridharan68cdf192016-04-03 21:57:15 -07001439 statPlatformIdleState = in.readString();
Ahmed ElArabawyd8b44112017-05-23 21:25:02 +00001440 statSubsystemPowerState = in.readString();
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08001441 }
1442 }
1443
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001444 public final static class HistoryItem implements Parcelable {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001445 public HistoryItem next;
Dianne Hackborn9a755432014-05-15 17:05:22 -07001446
1447 // The time of this event in milliseconds, as per SystemClock.elapsedRealtime().
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001448 public long time;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001449
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001450 public static final byte CMD_UPDATE = 0; // These can be written as deltas
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001451 public static final byte CMD_NULL = -1;
1452 public static final byte CMD_START = 4;
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001453 public static final byte CMD_CURRENT_TIME = 5;
1454 public static final byte CMD_OVERFLOW = 6;
Dianne Hackborn37de0982014-05-09 09:32:18 -07001455 public static final byte CMD_RESET = 7;
Dianne Hackborn29cd7f12015-01-08 10:37:05 -08001456 public static final byte CMD_SHUTDOWN = 8;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001457
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001458 public byte cmd = CMD_NULL;
Bookatzc8c44962017-05-11 12:12:54 -07001459
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001460 /**
1461 * Return whether the command code is a delta data update.
1462 */
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001463 public boolean isDeltaData() {
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001464 return cmd == CMD_UPDATE;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001465 }
1466
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001467 public byte batteryLevel;
1468 public byte batteryStatus;
1469 public byte batteryHealth;
1470 public byte batteryPlugType;
Bookatzc8c44962017-05-11 12:12:54 -07001471
Sungmin Choic7e9e8b2013-01-16 12:57:36 +09001472 public short batteryTemperature;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001473 public char batteryVoltage;
Adam Lesinski926969b2016-04-28 17:31:12 -07001474
Adam Lesinskia8018ac2016-05-03 10:18:10 -07001475 // The charge of the battery in micro-Ampere-hours.
1476 public int batteryChargeUAh;
Bookatzc8c44962017-05-11 12:12:54 -07001477
Dianne Hackborn3bee5af82010-07-23 00:22:04 -07001478 // Constants from SCREEN_BRIGHTNESS_*
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001479 public static final int STATE_BRIGHTNESS_SHIFT = 0;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001480 public static final int STATE_BRIGHTNESS_MASK = 0x7;
Dianne Hackborn3bee5af82010-07-23 00:22:04 -07001481 // Constants from SIGNAL_STRENGTH_*
Dianne Hackborn3251b902014-06-20 14:40:53 -07001482 public static final int STATE_PHONE_SIGNAL_STRENGTH_SHIFT = 3;
1483 public static final int STATE_PHONE_SIGNAL_STRENGTH_MASK = 0x7 << STATE_PHONE_SIGNAL_STRENGTH_SHIFT;
Dianne Hackborn3bee5af82010-07-23 00:22:04 -07001484 // Constants from ServiceState.STATE_*
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001485 public static final int STATE_PHONE_STATE_SHIFT = 6;
1486 public static final int STATE_PHONE_STATE_MASK = 0x7 << STATE_PHONE_STATE_SHIFT;
Dianne Hackborn3bee5af82010-07-23 00:22:04 -07001487 // Constants from DATA_CONNECTION_*
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001488 public static final int STATE_DATA_CONNECTION_SHIFT = 9;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001489 public static final int STATE_DATA_CONNECTION_MASK = 0x1f << STATE_DATA_CONNECTION_SHIFT;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001490
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001491 // These states always appear directly in the first int token
1492 // of a delta change; they should be ones that change relatively
1493 // frequently.
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001494 public static final int STATE_CPU_RUNNING_FLAG = 1<<31;
1495 public static final int STATE_WAKE_LOCK_FLAG = 1<<30;
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001496 public static final int STATE_GPS_ON_FLAG = 1<<29;
1497 public static final int STATE_WIFI_FULL_LOCK_FLAG = 1<<28;
Dianne Hackborne13c4c02014-02-11 17:18:35 -08001498 public static final int STATE_WIFI_SCAN_FLAG = 1<<27;
Dianne Hackborn0c820db2015-04-14 17:47:34 -07001499 public static final int STATE_WIFI_RADIO_ACTIVE_FLAG = 1<<26;
Dianne Hackborne13c4c02014-02-11 17:18:35 -08001500 public static final int STATE_MOBILE_RADIO_ACTIVE_FLAG = 1<<25;
Adam Lesinski926969b2016-04-28 17:31:12 -07001501 // Do not use, this is used for coulomb delta count.
1502 private static final int STATE_RESERVED_0 = 1<<24;
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001503 // These are on the lower bits used for the command; if they change
1504 // we need to write another int of data.
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001505 public static final int STATE_SENSOR_ON_FLAG = 1<<23;
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001506 public static final int STATE_AUDIO_ON_FLAG = 1<<22;
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001507 public static final int STATE_PHONE_SCANNING_FLAG = 1<<21;
Dianne Hackborn0c820db2015-04-14 17:47:34 -07001508 public static final int STATE_SCREEN_ON_FLAG = 1<<20; // consider moving to states2
1509 public static final int STATE_BATTERY_PLUGGED_FLAG = 1<<19; // consider moving to states2
Mike Mac2f518a2017-09-19 16:06:03 -07001510 public static final int STATE_SCREEN_DOZE_FLAG = 1 << 18;
Dianne Hackborn0c820db2015-04-14 17:47:34 -07001511 // empty slot
1512 public static final int STATE_WIFI_MULTICAST_ON_FLAG = 1<<16;
Dianne Hackborn40c87252014-03-19 16:55:40 -07001513
Dianne Hackbornf47d8f22010-10-08 10:46:55 -07001514 public static final int MOST_INTERESTING_STATES =
Mike Mac2f518a2017-09-19 16:06:03 -07001515 STATE_BATTERY_PLUGGED_FLAG | STATE_SCREEN_ON_FLAG | STATE_SCREEN_DOZE_FLAG;
Dianne Hackborn0c820db2015-04-14 17:47:34 -07001516
1517 public static final int SETTLE_TO_ZERO_STATES = 0xffff0000 & ~MOST_INTERESTING_STATES;
Dianne Hackbornf47d8f22010-10-08 10:46:55 -07001518
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001519 public int states;
1520
Dianne Hackborn3251b902014-06-20 14:40:53 -07001521 // Constants from WIFI_SUPPL_STATE_*
1522 public static final int STATE2_WIFI_SUPPL_STATE_SHIFT = 0;
1523 public static final int STATE2_WIFI_SUPPL_STATE_MASK = 0xf;
1524 // Values for NUM_WIFI_SIGNAL_STRENGTH_BINS
1525 public static final int STATE2_WIFI_SIGNAL_STRENGTH_SHIFT = 4;
1526 public static final int STATE2_WIFI_SIGNAL_STRENGTH_MASK =
1527 0x7 << STATE2_WIFI_SIGNAL_STRENGTH_SHIFT;
Siddharth Ray78ccaf52017-12-23 16:16:21 -08001528 // Values for NUM_GPS_SIGNAL_QUALITY_LEVELS
1529 public static final int STATE2_GPS_SIGNAL_QUALITY_SHIFT = 7;
1530 public static final int STATE2_GPS_SIGNAL_QUALITY_MASK =
1531 0x1 << STATE2_GPS_SIGNAL_QUALITY_SHIFT;
Dianne Hackborn3251b902014-06-20 14:40:53 -07001532
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001533 public static final int STATE2_POWER_SAVE_FLAG = 1<<31;
Dianne Hackborn3251b902014-06-20 14:40:53 -07001534 public static final int STATE2_VIDEO_ON_FLAG = 1<<30;
1535 public static final int STATE2_WIFI_RUNNING_FLAG = 1<<29;
1536 public static final int STATE2_WIFI_ON_FLAG = 1<<28;
Dianne Hackbornabc7c492014-06-30 16:57:46 -07001537 public static final int STATE2_FLASHLIGHT_FLAG = 1<<27;
Dianne Hackborn08c47a52015-10-15 12:38:14 -07001538 public static final int STATE2_DEVICE_IDLE_SHIFT = 25;
1539 public static final int STATE2_DEVICE_IDLE_MASK = 0x3 << STATE2_DEVICE_IDLE_SHIFT;
1540 public static final int STATE2_CHARGING_FLAG = 1<<24;
1541 public static final int STATE2_PHONE_IN_CALL_FLAG = 1<<23;
1542 public static final int STATE2_BLUETOOTH_ON_FLAG = 1<<22;
1543 public static final int STATE2_CAMERA_FLAG = 1<<21;
Adam Lesinski9f55cc72016-01-27 20:42:14 -08001544 public static final int STATE2_BLUETOOTH_SCAN_FLAG = 1 << 20;
Siddharth Rayf5e796a2018-01-22 18:18:17 -08001545 public static final int STATE2_CELLULAR_HIGH_TX_POWER_FLAG = 1 << 19;
Dianne Hackborn3251b902014-06-20 14:40:53 -07001546
1547 public static final int MOST_INTERESTING_STATES2 =
Mike Mac2f518a2017-09-19 16:06:03 -07001548 STATE2_POWER_SAVE_FLAG | STATE2_WIFI_ON_FLAG | STATE2_DEVICE_IDLE_MASK
1549 | STATE2_CHARGING_FLAG | STATE2_PHONE_IN_CALL_FLAG | STATE2_BLUETOOTH_ON_FLAG;
Dianne Hackborn0c820db2015-04-14 17:47:34 -07001550
1551 public static final int SETTLE_TO_ZERO_STATES2 = 0xffff0000 & ~MOST_INTERESTING_STATES2;
Dianne Hackborn3251b902014-06-20 14:40:53 -07001552
Dianne Hackborn40c87252014-03-19 16:55:40 -07001553 public int states2;
1554
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001555 // The wake lock that was acquired at this point.
1556 public HistoryTag wakelockTag;
1557
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001558 // Kernel wakeup reason at this point.
1559 public HistoryTag wakeReasonTag;
1560
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08001561 // Non-null when there is more detailed information at this step.
1562 public HistoryStepDetails stepDetails;
1563
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08001564 public static final int EVENT_FLAG_START = 0x8000;
1565 public static final int EVENT_FLAG_FINISH = 0x4000;
1566
1567 // No event in this item.
1568 public static final int EVENT_NONE = 0x0000;
1569 // Event is about a process that is running.
1570 public static final int EVENT_PROC = 0x0001;
1571 // Event is about an application package that is in the foreground.
1572 public static final int EVENT_FOREGROUND = 0x0002;
1573 // Event is about an application package that is at the top of the screen.
1574 public static final int EVENT_TOP = 0x0003;
Dianne Hackbornfdb19562014-07-11 16:03:36 -07001575 // Event is about active sync operations.
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -08001576 public static final int EVENT_SYNC = 0x0004;
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001577 // Events for all additional wake locks aquired/release within a wake block.
1578 // These are not generated by default.
1579 public static final int EVENT_WAKE_LOCK = 0x0005;
Dianne Hackbornfdb19562014-07-11 16:03:36 -07001580 // Event is about an application executing a scheduled job.
1581 public static final int EVENT_JOB = 0x0006;
1582 // Events for users running.
1583 public static final int EVENT_USER_RUNNING = 0x0007;
1584 // Events for foreground user.
1585 public static final int EVENT_USER_FOREGROUND = 0x0008;
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001586 // Event for connectivity changed.
Dianne Hackborn1e01d162014-12-04 17:46:42 -08001587 public static final int EVENT_CONNECTIVITY_CHANGED = 0x0009;
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001588 // Event for becoming active taking us out of idle mode.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001589 public static final int EVENT_ACTIVE = 0x000a;
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001590 // Event for a package being installed.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001591 public static final int EVENT_PACKAGE_INSTALLED = 0x000b;
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001592 // Event for a package being uninstalled.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001593 public static final int EVENT_PACKAGE_UNINSTALLED = 0x000c;
Dianne Hackborn1e383822015-04-10 14:02:33 -07001594 // Event for a package being uninstalled.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001595 public static final int EVENT_ALARM = 0x000d;
Dianne Hackborn0c820db2015-04-14 17:47:34 -07001596 // Record that we have decided we need to collect new stats data.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001597 public static final int EVENT_COLLECT_EXTERNAL_STATS = 0x000e;
Amith Yamasani67768492015-06-09 12:23:58 -07001598 // Event for a package becoming inactive due to being unused for a period of time.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001599 public static final int EVENT_PACKAGE_INACTIVE = 0x000f;
Amith Yamasani67768492015-06-09 12:23:58 -07001600 // Event for a package becoming active due to an interaction.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001601 public static final int EVENT_PACKAGE_ACTIVE = 0x0010;
Dianne Hackbornfd854ee2015-07-13 18:00:37 -07001602 // Event for a package being on the temporary whitelist.
1603 public static final int EVENT_TEMP_WHITELIST = 0x0011;
Dianne Hackborn280a64e2015-07-13 14:48:08 -07001604 // Event for the screen waking up.
1605 public static final int EVENT_SCREEN_WAKE_UP = 0x0012;
Adam Lesinski5f056f62016-07-14 16:56:08 -07001606 // Event for the UID that woke up the application processor.
1607 // Used for wakeups coming from WiFi, modem, etc.
1608 public static final int EVENT_WAKEUP_AP = 0x0013;
Dianne Hackbornd0db6f02016-07-18 14:14:20 -07001609 // Event for reporting that a specific partial wake lock has been held for a long duration.
1610 public static final int EVENT_LONG_WAKE_LOCK = 0x0014;
Amith Yamasani67768492015-06-09 12:23:58 -07001611
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08001612 // Number of event types.
Adam Lesinski041d9172016-12-12 12:03:56 -08001613 public static final int EVENT_COUNT = 0x0016;
Dianne Hackborn37de0982014-05-09 09:32:18 -07001614 // Mask to extract out only the type part of the event.
1615 public static final int EVENT_TYPE_MASK = ~(EVENT_FLAG_START|EVENT_FLAG_FINISH);
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08001616
1617 public static final int EVENT_PROC_START = EVENT_PROC | EVENT_FLAG_START;
1618 public static final int EVENT_PROC_FINISH = EVENT_PROC | EVENT_FLAG_FINISH;
1619 public static final int EVENT_FOREGROUND_START = EVENT_FOREGROUND | EVENT_FLAG_START;
1620 public static final int EVENT_FOREGROUND_FINISH = EVENT_FOREGROUND | EVENT_FLAG_FINISH;
1621 public static final int EVENT_TOP_START = EVENT_TOP | EVENT_FLAG_START;
1622 public static final int EVENT_TOP_FINISH = EVENT_TOP | EVENT_FLAG_FINISH;
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -08001623 public static final int EVENT_SYNC_START = EVENT_SYNC | EVENT_FLAG_START;
1624 public static final int EVENT_SYNC_FINISH = EVENT_SYNC | EVENT_FLAG_FINISH;
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001625 public static final int EVENT_WAKE_LOCK_START = EVENT_WAKE_LOCK | EVENT_FLAG_START;
1626 public static final int EVENT_WAKE_LOCK_FINISH = EVENT_WAKE_LOCK | EVENT_FLAG_FINISH;
Dianne Hackbornfdb19562014-07-11 16:03:36 -07001627 public static final int EVENT_JOB_START = EVENT_JOB | EVENT_FLAG_START;
1628 public static final int EVENT_JOB_FINISH = EVENT_JOB | EVENT_FLAG_FINISH;
1629 public static final int EVENT_USER_RUNNING_START = EVENT_USER_RUNNING | EVENT_FLAG_START;
1630 public static final int EVENT_USER_RUNNING_FINISH = EVENT_USER_RUNNING | EVENT_FLAG_FINISH;
1631 public static final int EVENT_USER_FOREGROUND_START =
1632 EVENT_USER_FOREGROUND | EVENT_FLAG_START;
1633 public static final int EVENT_USER_FOREGROUND_FINISH =
1634 EVENT_USER_FOREGROUND | EVENT_FLAG_FINISH;
Dianne Hackborn1e383822015-04-10 14:02:33 -07001635 public static final int EVENT_ALARM_START = EVENT_ALARM | EVENT_FLAG_START;
1636 public static final int EVENT_ALARM_FINISH = EVENT_ALARM | EVENT_FLAG_FINISH;
Dianne Hackbornfd854ee2015-07-13 18:00:37 -07001637 public static final int EVENT_TEMP_WHITELIST_START =
1638 EVENT_TEMP_WHITELIST | EVENT_FLAG_START;
1639 public static final int EVENT_TEMP_WHITELIST_FINISH =
1640 EVENT_TEMP_WHITELIST | EVENT_FLAG_FINISH;
Dianne Hackbornd0db6f02016-07-18 14:14:20 -07001641 public static final int EVENT_LONG_WAKE_LOCK_START =
1642 EVENT_LONG_WAKE_LOCK | EVENT_FLAG_START;
1643 public static final int EVENT_LONG_WAKE_LOCK_FINISH =
1644 EVENT_LONG_WAKE_LOCK | EVENT_FLAG_FINISH;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001645
1646 // For CMD_EVENT.
1647 public int eventCode;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001648 public HistoryTag eventTag;
1649
Dianne Hackborn9a755432014-05-15 17:05:22 -07001650 // Only set for CMD_CURRENT_TIME or CMD_RESET, as per System.currentTimeMillis().
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001651 public long currentTime;
1652
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001653 // Meta-data when reading.
1654 public int numReadInts;
1655
1656 // Pre-allocated objects.
1657 public final HistoryTag localWakelockTag = new HistoryTag();
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001658 public final HistoryTag localWakeReasonTag = new HistoryTag();
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001659 public final HistoryTag localEventTag = new HistoryTag();
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001660
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001661 public HistoryItem() {
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001662 }
Bookatzc8c44962017-05-11 12:12:54 -07001663
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001664 public HistoryItem(long time, Parcel src) {
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001665 this.time = time;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001666 numReadInts = 2;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001667 readFromParcel(src);
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001668 }
Bookatzc8c44962017-05-11 12:12:54 -07001669
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001670 public int describeContents() {
1671 return 0;
1672 }
1673
1674 public void writeToParcel(Parcel dest, int flags) {
1675 dest.writeLong(time);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001676 int bat = (((int)cmd)&0xff)
1677 | ((((int)batteryLevel)<<8)&0xff00)
1678 | ((((int)batteryStatus)<<16)&0xf0000)
1679 | ((((int)batteryHealth)<<20)&0xf00000)
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001680 | ((((int)batteryPlugType)<<24)&0xf000000)
1681 | (wakelockTag != null ? 0x10000000 : 0)
1682 | (wakeReasonTag != null ? 0x20000000 : 0)
1683 | (eventCode != EVENT_NONE ? 0x40000000 : 0);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001684 dest.writeInt(bat);
1685 bat = (((int)batteryTemperature)&0xffff)
1686 | ((((int)batteryVoltage)<<16)&0xffff0000);
1687 dest.writeInt(bat);
Adam Lesinskia8018ac2016-05-03 10:18:10 -07001688 dest.writeInt(batteryChargeUAh);
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001689 dest.writeInt(states);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001690 dest.writeInt(states2);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001691 if (wakelockTag != null) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001692 wakelockTag.writeToParcel(dest, flags);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001693 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001694 if (wakeReasonTag != null) {
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001695 wakeReasonTag.writeToParcel(dest, flags);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001696 }
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001697 if (eventCode != EVENT_NONE) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001698 dest.writeInt(eventCode);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001699 eventTag.writeToParcel(dest, flags);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001700 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07001701 if (cmd == CMD_CURRENT_TIME || cmd == CMD_RESET) {
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001702 dest.writeLong(currentTime);
1703 }
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001704 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001705
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001706 public void readFromParcel(Parcel src) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001707 int start = src.dataPosition();
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001708 int bat = src.readInt();
1709 cmd = (byte)(bat&0xff);
1710 batteryLevel = (byte)((bat>>8)&0xff);
1711 batteryStatus = (byte)((bat>>16)&0xf);
1712 batteryHealth = (byte)((bat>>20)&0xf);
1713 batteryPlugType = (byte)((bat>>24)&0xf);
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001714 int bat2 = src.readInt();
1715 batteryTemperature = (short)(bat2&0xffff);
1716 batteryVoltage = (char)((bat2>>16)&0xffff);
Adam Lesinskia8018ac2016-05-03 10:18:10 -07001717 batteryChargeUAh = src.readInt();
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001718 states = src.readInt();
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001719 states2 = src.readInt();
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001720 if ((bat&0x10000000) != 0) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001721 wakelockTag = localWakelockTag;
1722 wakelockTag.readFromParcel(src);
1723 } else {
1724 wakelockTag = null;
1725 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001726 if ((bat&0x20000000) != 0) {
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001727 wakeReasonTag = localWakeReasonTag;
1728 wakeReasonTag.readFromParcel(src);
1729 } else {
1730 wakeReasonTag = null;
1731 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001732 if ((bat&0x40000000) != 0) {
1733 eventCode = src.readInt();
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001734 eventTag = localEventTag;
1735 eventTag.readFromParcel(src);
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001736 } else {
1737 eventCode = EVENT_NONE;
1738 eventTag = null;
1739 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07001740 if (cmd == CMD_CURRENT_TIME || cmd == CMD_RESET) {
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001741 currentTime = src.readLong();
1742 } else {
1743 currentTime = 0;
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001744 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001745 numReadInts += (src.dataPosition()-start)/4;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001746 }
1747
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001748 public void clear() {
1749 time = 0;
1750 cmd = CMD_NULL;
1751 batteryLevel = 0;
1752 batteryStatus = 0;
1753 batteryHealth = 0;
1754 batteryPlugType = 0;
1755 batteryTemperature = 0;
1756 batteryVoltage = 0;
Adam Lesinskia8018ac2016-05-03 10:18:10 -07001757 batteryChargeUAh = 0;
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001758 states = 0;
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001759 states2 = 0;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001760 wakelockTag = null;
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001761 wakeReasonTag = null;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001762 eventCode = EVENT_NONE;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001763 eventTag = null;
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001764 }
Bookatzc8c44962017-05-11 12:12:54 -07001765
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001766 public void setTo(HistoryItem o) {
1767 time = o.time;
1768 cmd = o.cmd;
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001769 setToCommon(o);
1770 }
1771
1772 public void setTo(long time, byte cmd, HistoryItem o) {
1773 this.time = time;
1774 this.cmd = cmd;
1775 setToCommon(o);
1776 }
1777
1778 private void setToCommon(HistoryItem o) {
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001779 batteryLevel = o.batteryLevel;
1780 batteryStatus = o.batteryStatus;
1781 batteryHealth = o.batteryHealth;
1782 batteryPlugType = o.batteryPlugType;
1783 batteryTemperature = o.batteryTemperature;
1784 batteryVoltage = o.batteryVoltage;
Adam Lesinskia8018ac2016-05-03 10:18:10 -07001785 batteryChargeUAh = o.batteryChargeUAh;
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001786 states = o.states;
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001787 states2 = o.states2;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001788 if (o.wakelockTag != null) {
1789 wakelockTag = localWakelockTag;
1790 wakelockTag.setTo(o.wakelockTag);
1791 } else {
1792 wakelockTag = null;
1793 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001794 if (o.wakeReasonTag != null) {
1795 wakeReasonTag = localWakeReasonTag;
1796 wakeReasonTag.setTo(o.wakeReasonTag);
1797 } else {
1798 wakeReasonTag = null;
1799 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001800 eventCode = o.eventCode;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001801 if (o.eventTag != null) {
1802 eventTag = localEventTag;
1803 eventTag.setTo(o.eventTag);
1804 } else {
1805 eventTag = null;
1806 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001807 currentTime = o.currentTime;
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001808 }
1809
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001810 public boolean sameNonEvent(HistoryItem o) {
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07001811 return batteryLevel == o.batteryLevel
1812 && batteryStatus == o.batteryStatus
1813 && batteryHealth == o.batteryHealth
1814 && batteryPlugType == o.batteryPlugType
1815 && batteryTemperature == o.batteryTemperature
1816 && batteryVoltage == o.batteryVoltage
Adam Lesinskia8018ac2016-05-03 10:18:10 -07001817 && batteryChargeUAh == o.batteryChargeUAh
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001818 && states == o.states
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001819 && states2 == o.states2
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001820 && currentTime == o.currentTime;
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07001821 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001822
1823 public boolean same(HistoryItem o) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001824 if (!sameNonEvent(o) || eventCode != o.eventCode) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001825 return false;
1826 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001827 if (wakelockTag != o.wakelockTag) {
1828 if (wakelockTag == null || o.wakelockTag == null) {
1829 return false;
1830 }
1831 if (!wakelockTag.equals(o.wakelockTag)) {
1832 return false;
1833 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001834 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001835 if (wakeReasonTag != o.wakeReasonTag) {
1836 if (wakeReasonTag == null || o.wakeReasonTag == null) {
1837 return false;
1838 }
1839 if (!wakeReasonTag.equals(o.wakeReasonTag)) {
1840 return false;
1841 }
1842 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001843 if (eventTag != o.eventTag) {
1844 if (eventTag == null || o.eventTag == null) {
1845 return false;
1846 }
1847 if (!eventTag.equals(o.eventTag)) {
1848 return false;
1849 }
1850 }
1851 return true;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001852 }
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001853 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07001854
1855 public final static class HistoryEventTracker {
1856 private final HashMap<String, SparseIntArray>[] mActiveEvents
1857 = (HashMap<String, SparseIntArray>[]) new HashMap[HistoryItem.EVENT_COUNT];
1858
1859 public boolean updateState(int code, String name, int uid, int poolIdx) {
1860 if ((code&HistoryItem.EVENT_FLAG_START) != 0) {
1861 int idx = code&HistoryItem.EVENT_TYPE_MASK;
1862 HashMap<String, SparseIntArray> active = mActiveEvents[idx];
1863 if (active == null) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07001864 active = new HashMap<>();
Dianne Hackborn37de0982014-05-09 09:32:18 -07001865 mActiveEvents[idx] = active;
1866 }
1867 SparseIntArray uids = active.get(name);
1868 if (uids == null) {
1869 uids = new SparseIntArray();
1870 active.put(name, uids);
1871 }
1872 if (uids.indexOfKey(uid) >= 0) {
1873 // Already set, nothing to do!
1874 return false;
1875 }
1876 uids.put(uid, poolIdx);
1877 } else if ((code&HistoryItem.EVENT_FLAG_FINISH) != 0) {
1878 int idx = code&HistoryItem.EVENT_TYPE_MASK;
1879 HashMap<String, SparseIntArray> active = mActiveEvents[idx];
1880 if (active == null) {
1881 // not currently active, nothing to do.
1882 return false;
1883 }
1884 SparseIntArray uids = active.get(name);
1885 if (uids == null) {
1886 // not currently active, nothing to do.
1887 return false;
1888 }
1889 idx = uids.indexOfKey(uid);
1890 if (idx < 0) {
1891 // not currently active, nothing to do.
1892 return false;
1893 }
1894 uids.removeAt(idx);
1895 if (uids.size() <= 0) {
1896 active.remove(name);
1897 }
1898 }
1899 return true;
1900 }
1901
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001902 public void removeEvents(int code) {
1903 int idx = code&HistoryItem.EVENT_TYPE_MASK;
1904 mActiveEvents[idx] = null;
1905 }
1906
Dianne Hackborn37de0982014-05-09 09:32:18 -07001907 public HashMap<String, SparseIntArray> getStateForEvent(int code) {
1908 return mActiveEvents[code];
1909 }
1910 }
1911
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001912 public static final class BitDescription {
1913 public final int mask;
1914 public final int shift;
1915 public final String name;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001916 public final String shortName;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001917 public final String[] values;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001918 public final String[] shortValues;
Bookatzc8c44962017-05-11 12:12:54 -07001919
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001920 public BitDescription(int mask, String name, String shortName) {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001921 this.mask = mask;
1922 this.shift = -1;
1923 this.name = name;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001924 this.shortName = shortName;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001925 this.values = null;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001926 this.shortValues = null;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001927 }
Bookatzc8c44962017-05-11 12:12:54 -07001928
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001929 public BitDescription(int mask, int shift, String name, String shortName,
1930 String[] values, String[] shortValues) {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001931 this.mask = mask;
1932 this.shift = shift;
1933 this.name = name;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001934 this.shortName = shortName;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001935 this.values = values;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001936 this.shortValues = shortValues;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001937 }
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001938 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07001939
Dianne Hackbornfc064132014-06-02 12:42:12 -07001940 /**
1941 * Don't allow any more batching in to the current history event. This
1942 * is called when printing partial histories, so to ensure that the next
1943 * history event will go in to a new batch after what was printed in the
1944 * last partial history.
1945 */
1946 public abstract void commitCurrentHistoryBatchLocked();
1947
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001948 public abstract int getHistoryTotalSize();
1949
1950 public abstract int getHistoryUsedSize();
1951
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001952 public abstract boolean startIteratingHistoryLocked();
1953
Dianne Hackborn099bc622014-01-22 13:39:16 -08001954 public abstract int getHistoryStringPoolSize();
1955
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001956 public abstract int getHistoryStringPoolBytes();
1957
1958 public abstract String getHistoryTagPoolString(int index);
1959
1960 public abstract int getHistoryTagPoolUid(int index);
Dianne Hackborn099bc622014-01-22 13:39:16 -08001961
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001962 public abstract boolean getNextHistoryLocked(HistoryItem out);
1963
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001964 public abstract void finishIteratingHistoryLocked();
1965
1966 public abstract boolean startIteratingOldHistoryLocked();
1967
1968 public abstract boolean getNextOldHistoryLocked(HistoryItem out);
1969
1970 public abstract void finishIteratingOldHistoryLocked();
1971
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001972 /**
Dianne Hackbornb5e31652010-09-07 12:13:55 -07001973 * Return the base time offset for the battery history.
1974 */
1975 public abstract long getHistoryBaseTime();
Bookatzc8c44962017-05-11 12:12:54 -07001976
Dianne Hackbornb5e31652010-09-07 12:13:55 -07001977 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001978 * Returns the number of times the device has been started.
1979 */
1980 public abstract int getStartCount();
Bookatzc8c44962017-05-11 12:12:54 -07001981
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001982 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07001983 * 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 -08001984 * running on battery.
Bookatzc8c44962017-05-11 12:12:54 -07001985 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001986 * {@hide}
1987 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001988 public abstract long getScreenOnTime(long elapsedRealtimeUs, int which);
Bookatzc8c44962017-05-11 12:12:54 -07001989
Dianne Hackborn77b987f2014-02-26 16:20:52 -08001990 /**
1991 * Returns the number of times the screen was turned on.
1992 *
1993 * {@hide}
1994 */
1995 public abstract int getScreenOnCount(int which);
1996
Mike Mac2f518a2017-09-19 16:06:03 -07001997 /**
1998 * Returns the time in microseconds that the screen has been dozing while the device was
1999 * running on battery.
2000 *
2001 * {@hide}
2002 */
2003 public abstract long getScreenDozeTime(long elapsedRealtimeUs, int which);
2004
2005 /**
2006 * Returns the number of times the screen was turned dozing.
2007 *
2008 * {@hide}
2009 */
2010 public abstract int getScreenDozeCount(int which);
2011
Jeff Browne95c3cd2014-05-02 16:59:26 -07002012 public abstract long getInteractiveTime(long elapsedRealtimeUs, int which);
2013
Dianne Hackborn617f8772009-03-31 15:04:46 -07002014 public static final int SCREEN_BRIGHTNESS_DARK = 0;
2015 public static final int SCREEN_BRIGHTNESS_DIM = 1;
2016 public static final int SCREEN_BRIGHTNESS_MEDIUM = 2;
2017 public static final int SCREEN_BRIGHTNESS_LIGHT = 3;
2018 public static final int SCREEN_BRIGHTNESS_BRIGHT = 4;
Bookatzc8c44962017-05-11 12:12:54 -07002019
Dianne Hackborn617f8772009-03-31 15:04:46 -07002020 static final String[] SCREEN_BRIGHTNESS_NAMES = {
2021 "dark", "dim", "medium", "light", "bright"
2022 };
Bookatzc8c44962017-05-11 12:12:54 -07002023
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002024 static final String[] SCREEN_BRIGHTNESS_SHORT_NAMES = {
2025 "0", "1", "2", "3", "4"
2026 };
2027
Dianne Hackborn617f8772009-03-31 15:04:46 -07002028 public static final int NUM_SCREEN_BRIGHTNESS_BINS = 5;
Dianne Hackborn3251b902014-06-20 14:40:53 -07002029
Dianne Hackborn617f8772009-03-31 15:04:46 -07002030 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07002031 * Returns the time in microseconds that the screen has been on with
Dianne Hackborn617f8772009-03-31 15:04:46 -07002032 * the given brightness
Bookatzc8c44962017-05-11 12:12:54 -07002033 *
Dianne Hackborn617f8772009-03-31 15:04:46 -07002034 * {@hide}
2035 */
2036 public abstract long getScreenBrightnessTime(int brightnessBin,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002037 long elapsedRealtimeUs, int which);
Dianne Hackborn617f8772009-03-31 15:04:46 -07002038
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002039 /**
Kweku Adams87b19ec2017-10-09 12:40:03 -07002040 * Returns the {@link Timer} object that tracks the given screen brightness.
2041 *
2042 * {@hide}
2043 */
2044 public abstract Timer getScreenBrightnessTimer(int brightnessBin);
2045
2046 /**
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002047 * Returns the time in microseconds that power save mode has been enabled while the device was
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07002048 * running on battery.
2049 *
2050 * {@hide}
2051 */
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002052 public abstract long getPowerSaveModeEnabledTime(long elapsedRealtimeUs, int which);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07002053
2054 /**
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002055 * Returns the number of times that power save mode was enabled.
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07002056 *
2057 * {@hide}
2058 */
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002059 public abstract int getPowerSaveModeEnabledCount(int which);
2060
2061 /**
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002062 * Constant for device idle mode: not active.
2063 */
Bookatz8bdae8d2018-01-16 11:24:30 -08002064 public static final int DEVICE_IDLE_MODE_OFF = ServerProtoEnums.DEVICE_IDLE_MODE_OFF; // 0
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002065
2066 /**
2067 * Constant for device idle mode: active in lightweight mode.
2068 */
Bookatz8bdae8d2018-01-16 11:24:30 -08002069 public static final int DEVICE_IDLE_MODE_LIGHT = ServerProtoEnums.DEVICE_IDLE_MODE_LIGHT; // 1
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002070
2071 /**
2072 * Constant for device idle mode: active in full mode.
2073 */
Bookatz8bdae8d2018-01-16 11:24:30 -08002074 public static final int DEVICE_IDLE_MODE_DEEP = ServerProtoEnums.DEVICE_IDLE_MODE_DEEP; // 2
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002075
2076 /**
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002077 * Returns the time in microseconds that device has been in idle mode while
2078 * running on battery.
2079 *
2080 * {@hide}
2081 */
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002082 public abstract long getDeviceIdleModeTime(int mode, long elapsedRealtimeUs, int which);
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002083
2084 /**
2085 * Returns the number of times that the devie has gone in to idle mode.
2086 *
2087 * {@hide}
2088 */
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002089 public abstract int getDeviceIdleModeCount(int mode, int which);
2090
2091 /**
2092 * Return the longest duration we spent in a particular device idle mode (fully in the
2093 * mode, not in idle maintenance etc).
2094 */
2095 public abstract long getLongestDeviceIdleModeTime(int mode);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07002096
2097 /**
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002098 * Returns the time in microseconds that device has been in idling while on
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002099 * battery. This is broader than {@link #getDeviceIdleModeTime} -- it
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002100 * counts all of the time that we consider the device to be idle, whether or not
2101 * it is currently in the actual device idle mode.
2102 *
2103 * {@hide}
2104 */
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002105 public abstract long getDeviceIdlingTime(int mode, long elapsedRealtimeUs, int which);
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002106
2107 /**
Bookatz8c6571b2017-10-24 15:04:41 -07002108 * Returns the number of times that the device has started idling.
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002109 *
2110 * {@hide}
2111 */
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002112 public abstract int getDeviceIdlingCount(int mode, int which);
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002113
2114 /**
Dianne Hackborn1e01d162014-12-04 17:46:42 -08002115 * Returns the number of times that connectivity state changed.
2116 *
2117 * {@hide}
2118 */
2119 public abstract int getNumConnectivityChange(int which);
2120
Siddharth Ray78ccaf52017-12-23 16:16:21 -08002121
2122 /**
2123 * Returns the time in microseconds that the phone has been running with
2124 * the given GPS signal quality level
2125 *
2126 * {@hide}
2127 */
2128 public abstract long getGpsSignalQualityTime(int strengthBin,
2129 long elapsedRealtimeUs, int which);
2130
2131 /**
2132 * Returns the GPS battery drain in mA-ms
2133 *
2134 * {@hide}
2135 */
2136 public abstract long getGpsBatteryDrainMaMs();
2137
Dianne Hackborn1e01d162014-12-04 17:46:42 -08002138 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07002139 * 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 -08002140 * running on battery.
Bookatzc8c44962017-05-11 12:12:54 -07002141 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002142 * {@hide}
2143 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002144 public abstract long getPhoneOnTime(long elapsedRealtimeUs, int which);
Bookatzc8c44962017-05-11 12:12:54 -07002145
Dianne Hackborn627bba72009-03-24 22:32:56 -07002146 /**
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002147 * Returns the number of times a phone call was activated.
2148 *
2149 * {@hide}
2150 */
2151 public abstract int getPhoneOnCount(int which);
2152
2153 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07002154 * Returns the time in microseconds that the phone has been running with
Dianne Hackborn627bba72009-03-24 22:32:56 -07002155 * the given signal strength.
Bookatzc8c44962017-05-11 12:12:54 -07002156 *
Dianne Hackborn627bba72009-03-24 22:32:56 -07002157 * {@hide}
2158 */
2159 public abstract long getPhoneSignalStrengthTime(int strengthBin,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002160 long elapsedRealtimeUs, int which);
Dianne Hackborn627bba72009-03-24 22:32:56 -07002161
Dianne Hackborn617f8772009-03-31 15:04:46 -07002162 /**
Amith Yamasanif37447b2009-10-08 18:28:01 -07002163 * Returns the time in microseconds that the phone has been trying to
2164 * acquire a signal.
2165 *
2166 * {@hide}
2167 */
2168 public abstract long getPhoneSignalScanningTime(
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002169 long elapsedRealtimeUs, int which);
Amith Yamasanif37447b2009-10-08 18:28:01 -07002170
2171 /**
Kweku Adams87b19ec2017-10-09 12:40:03 -07002172 * Returns the {@link Timer} object that tracks how much the phone has been trying to
2173 * acquire a signal.
2174 *
2175 * {@hide}
2176 */
2177 public abstract Timer getPhoneSignalScanningTimer();
2178
2179 /**
Dianne Hackborn617f8772009-03-31 15:04:46 -07002180 * Returns the number of times the phone has entered the given signal strength.
Bookatzc8c44962017-05-11 12:12:54 -07002181 *
Dianne Hackborn617f8772009-03-31 15:04:46 -07002182 * {@hide}
2183 */
2184 public abstract int getPhoneSignalStrengthCount(int strengthBin, int which);
2185
Dianne Hackborne13c4c02014-02-11 17:18:35 -08002186 /**
Kweku Adams87b19ec2017-10-09 12:40:03 -07002187 * Return the {@link Timer} object used to track the given signal strength's duration and
2188 * counts.
2189 */
2190 protected abstract Timer getPhoneSignalStrengthTimer(int strengthBin);
2191
2192 /**
Dianne Hackborne13c4c02014-02-11 17:18:35 -08002193 * Returns the time in microseconds that the mobile network has been active
2194 * (in a high power state).
2195 *
2196 * {@hide}
2197 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002198 public abstract long getMobileRadioActiveTime(long elapsedRealtimeUs, int which);
Dianne Hackborne13c4c02014-02-11 17:18:35 -08002199
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002200 /**
2201 * Returns the number of times that the mobile network has transitioned to the
2202 * active state.
2203 *
2204 * {@hide}
2205 */
2206 public abstract int getMobileRadioActiveCount(int which);
2207
2208 /**
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002209 * Returns the time in microseconds that is the difference between the mobile radio
2210 * time we saw based on the elapsed timestamp when going down vs. the given time stamp
2211 * from the radio.
2212 *
2213 * {@hide}
2214 */
2215 public abstract long getMobileRadioActiveAdjustedTime(int which);
2216
2217 /**
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002218 * Returns the time in microseconds that the mobile network has been active
2219 * (in a high power state) but not being able to blame on an app.
2220 *
2221 * {@hide}
2222 */
2223 public abstract long getMobileRadioActiveUnknownTime(int which);
2224
2225 /**
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002226 * Return count of number of times radio was up that could not be blamed on apps.
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002227 *
2228 * {@hide}
2229 */
2230 public abstract int getMobileRadioActiveUnknownCount(int which);
Dianne Hackborne13c4c02014-02-11 17:18:35 -08002231
Dianne Hackborn627bba72009-03-24 22:32:56 -07002232 public static final int DATA_CONNECTION_NONE = 0;
2233 public static final int DATA_CONNECTION_GPRS = 1;
2234 public static final int DATA_CONNECTION_EDGE = 2;
2235 public static final int DATA_CONNECTION_UMTS = 3;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002236 public static final int DATA_CONNECTION_CDMA = 4;
2237 public static final int DATA_CONNECTION_EVDO_0 = 5;
2238 public static final int DATA_CONNECTION_EVDO_A = 6;
2239 public static final int DATA_CONNECTION_1xRTT = 7;
2240 public static final int DATA_CONNECTION_HSDPA = 8;
2241 public static final int DATA_CONNECTION_HSUPA = 9;
2242 public static final int DATA_CONNECTION_HSPA = 10;
2243 public static final int DATA_CONNECTION_IDEN = 11;
2244 public static final int DATA_CONNECTION_EVDO_B = 12;
Robert Greenwalt962a9902010-11-02 11:10:25 -07002245 public static final int DATA_CONNECTION_LTE = 13;
2246 public static final int DATA_CONNECTION_EHRPD = 14;
Patrick Tjinb71703c2013-11-06 09:27:03 -08002247 public static final int DATA_CONNECTION_HSPAP = 15;
Siddharth Rayc72081d2018-02-13 11:31:54 -08002248 public static final int DATA_CONNECTION_GSM = 16;
2249 public static final int DATA_CONNECTION_TD_SCDMA = 17;
2250 public static final int DATA_CONNECTION_IWLAN = 18;
2251 public static final int DATA_CONNECTION_LTE_CA = 19;
2252 public static final int DATA_CONNECTION_OTHER = 20;
Robert Greenwalt962a9902010-11-02 11:10:25 -07002253
Dianne Hackborn627bba72009-03-24 22:32:56 -07002254 static final String[] DATA_CONNECTION_NAMES = {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002255 "none", "gprs", "edge", "umts", "cdma", "evdo_0", "evdo_A",
Robert Greenwalt962a9902010-11-02 11:10:25 -07002256 "1xrtt", "hsdpa", "hsupa", "hspa", "iden", "evdo_b", "lte",
Siddharth Rayc72081d2018-02-13 11:31:54 -08002257 "ehrpd", "hspap", "gsm", "td_scdma", "iwlan", "lte_ca", "other"
Dianne Hackborn627bba72009-03-24 22:32:56 -07002258 };
Bookatzc8c44962017-05-11 12:12:54 -07002259
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002260 public static final int NUM_DATA_CONNECTION_TYPES = DATA_CONNECTION_OTHER+1;
Bookatzc8c44962017-05-11 12:12:54 -07002261
Dianne Hackborn627bba72009-03-24 22:32:56 -07002262 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07002263 * Returns the time in microseconds that the phone has been running with
Dianne Hackborn627bba72009-03-24 22:32:56 -07002264 * the given data connection.
Bookatzc8c44962017-05-11 12:12:54 -07002265 *
Dianne Hackborn627bba72009-03-24 22:32:56 -07002266 * {@hide}
2267 */
2268 public abstract long getPhoneDataConnectionTime(int dataType,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002269 long elapsedRealtimeUs, int which);
Dianne Hackborn627bba72009-03-24 22:32:56 -07002270
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002271 /**
Dianne Hackborn617f8772009-03-31 15:04:46 -07002272 * Returns the number of times the phone has entered the given data
2273 * connection type.
Bookatzc8c44962017-05-11 12:12:54 -07002274 *
Dianne Hackborn617f8772009-03-31 15:04:46 -07002275 * {@hide}
2276 */
2277 public abstract int getPhoneDataConnectionCount(int dataType, int which);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002278
Kweku Adams87b19ec2017-10-09 12:40:03 -07002279 /**
2280 * Returns the {@link Timer} object that tracks the phone's data connection type stats.
2281 */
2282 public abstract Timer getPhoneDataConnectionTimer(int dataType);
2283
Dianne Hackborn3251b902014-06-20 14:40:53 -07002284 public static final int WIFI_SUPPL_STATE_INVALID = 0;
2285 public static final int WIFI_SUPPL_STATE_DISCONNECTED = 1;
2286 public static final int WIFI_SUPPL_STATE_INTERFACE_DISABLED = 2;
2287 public static final int WIFI_SUPPL_STATE_INACTIVE = 3;
2288 public static final int WIFI_SUPPL_STATE_SCANNING = 4;
2289 public static final int WIFI_SUPPL_STATE_AUTHENTICATING = 5;
2290 public static final int WIFI_SUPPL_STATE_ASSOCIATING = 6;
2291 public static final int WIFI_SUPPL_STATE_ASSOCIATED = 7;
2292 public static final int WIFI_SUPPL_STATE_FOUR_WAY_HANDSHAKE = 8;
2293 public static final int WIFI_SUPPL_STATE_GROUP_HANDSHAKE = 9;
2294 public static final int WIFI_SUPPL_STATE_COMPLETED = 10;
2295 public static final int WIFI_SUPPL_STATE_DORMANT = 11;
2296 public static final int WIFI_SUPPL_STATE_UNINITIALIZED = 12;
2297
2298 public static final int NUM_WIFI_SUPPL_STATES = WIFI_SUPPL_STATE_UNINITIALIZED+1;
2299
2300 static final String[] WIFI_SUPPL_STATE_NAMES = {
2301 "invalid", "disconn", "disabled", "inactive", "scanning",
2302 "authenticating", "associating", "associated", "4-way-handshake",
2303 "group-handshake", "completed", "dormant", "uninit"
2304 };
2305
2306 static final String[] WIFI_SUPPL_STATE_SHORT_NAMES = {
2307 "inv", "dsc", "dis", "inact", "scan",
2308 "auth", "ascing", "asced", "4-way",
2309 "group", "compl", "dorm", "uninit"
2310 };
2311
Mike Mac2f518a2017-09-19 16:06:03 -07002312 public static final BitDescription[] HISTORY_STATE_DESCRIPTIONS = new BitDescription[] {
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002313 new BitDescription(HistoryItem.STATE_CPU_RUNNING_FLAG, "running", "r"),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08002314 new BitDescription(HistoryItem.STATE_WAKE_LOCK_FLAG, "wake_lock", "w"),
2315 new BitDescription(HistoryItem.STATE_SENSOR_ON_FLAG, "sensor", "s"),
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002316 new BitDescription(HistoryItem.STATE_GPS_ON_FLAG, "gps", "g"),
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002317 new BitDescription(HistoryItem.STATE_WIFI_FULL_LOCK_FLAG, "wifi_full_lock", "Wl"),
2318 new BitDescription(HistoryItem.STATE_WIFI_SCAN_FLAG, "wifi_scan", "Ws"),
2319 new BitDescription(HistoryItem.STATE_WIFI_MULTICAST_ON_FLAG, "wifi_multicast", "Wm"),
Dianne Hackborn0c820db2015-04-14 17:47:34 -07002320 new BitDescription(HistoryItem.STATE_WIFI_RADIO_ACTIVE_FLAG, "wifi_radio", "Wr"),
Dianne Hackborne13c4c02014-02-11 17:18:35 -08002321 new BitDescription(HistoryItem.STATE_MOBILE_RADIO_ACTIVE_FLAG, "mobile_radio", "Pr"),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08002322 new BitDescription(HistoryItem.STATE_PHONE_SCANNING_FLAG, "phone_scanning", "Psc"),
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002323 new BitDescription(HistoryItem.STATE_AUDIO_ON_FLAG, "audio", "a"),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08002324 new BitDescription(HistoryItem.STATE_SCREEN_ON_FLAG, "screen", "S"),
2325 new BitDescription(HistoryItem.STATE_BATTERY_PLUGGED_FLAG, "plugged", "BP"),
Mike Mac2f518a2017-09-19 16:06:03 -07002326 new BitDescription(HistoryItem.STATE_SCREEN_DOZE_FLAG, "screen_doze", "Sd"),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08002327 new BitDescription(HistoryItem.STATE_DATA_CONNECTION_MASK,
2328 HistoryItem.STATE_DATA_CONNECTION_SHIFT, "data_conn", "Pcn",
2329 DATA_CONNECTION_NAMES, DATA_CONNECTION_NAMES),
2330 new BitDescription(HistoryItem.STATE_PHONE_STATE_MASK,
2331 HistoryItem.STATE_PHONE_STATE_SHIFT, "phone_state", "Pst",
2332 new String[] {"in", "out", "emergency", "off"},
2333 new String[] {"in", "out", "em", "off"}),
Dianne Hackborn3251b902014-06-20 14:40:53 -07002334 new BitDescription(HistoryItem.STATE_PHONE_SIGNAL_STRENGTH_MASK,
2335 HistoryItem.STATE_PHONE_SIGNAL_STRENGTH_SHIFT, "phone_signal_strength", "Pss",
2336 SignalStrength.SIGNAL_STRENGTH_NAMES,
2337 new String[] { "0", "1", "2", "3", "4" }),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08002338 new BitDescription(HistoryItem.STATE_BRIGHTNESS_MASK,
2339 HistoryItem.STATE_BRIGHTNESS_SHIFT, "brightness", "Sb",
2340 SCREEN_BRIGHTNESS_NAMES, SCREEN_BRIGHTNESS_SHORT_NAMES),
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002341 };
Dianne Hackborn617f8772009-03-31 15:04:46 -07002342
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002343 public static final BitDescription[] HISTORY_STATE2_DESCRIPTIONS
2344 = new BitDescription[] {
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002345 new BitDescription(HistoryItem.STATE2_POWER_SAVE_FLAG, "power_save", "ps"),
Dianne Hackborn3251b902014-06-20 14:40:53 -07002346 new BitDescription(HistoryItem.STATE2_VIDEO_ON_FLAG, "video", "v"),
Dianne Hackborn0c820db2015-04-14 17:47:34 -07002347 new BitDescription(HistoryItem.STATE2_WIFI_RUNNING_FLAG, "wifi_running", "Ww"),
Dianne Hackborn3251b902014-06-20 14:40:53 -07002348 new BitDescription(HistoryItem.STATE2_WIFI_ON_FLAG, "wifi", "W"),
Dianne Hackbornabc7c492014-06-30 16:57:46 -07002349 new BitDescription(HistoryItem.STATE2_FLASHLIGHT_FLAG, "flashlight", "fl"),
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002350 new BitDescription(HistoryItem.STATE2_DEVICE_IDLE_MASK,
2351 HistoryItem.STATE2_DEVICE_IDLE_SHIFT, "device_idle", "di",
2352 new String[] { "off", "light", "full", "???" },
2353 new String[] { "off", "light", "full", "???" }),
Dianne Hackborn0c820db2015-04-14 17:47:34 -07002354 new BitDescription(HistoryItem.STATE2_CHARGING_FLAG, "charging", "ch"),
2355 new BitDescription(HistoryItem.STATE2_PHONE_IN_CALL_FLAG, "phone_in_call", "Pcl"),
2356 new BitDescription(HistoryItem.STATE2_BLUETOOTH_ON_FLAG, "bluetooth", "b"),
Dianne Hackborn3251b902014-06-20 14:40:53 -07002357 new BitDescription(HistoryItem.STATE2_WIFI_SIGNAL_STRENGTH_MASK,
2358 HistoryItem.STATE2_WIFI_SIGNAL_STRENGTH_SHIFT, "wifi_signal_strength", "Wss",
2359 new String[] { "0", "1", "2", "3", "4" },
2360 new String[] { "0", "1", "2", "3", "4" }),
2361 new BitDescription(HistoryItem.STATE2_WIFI_SUPPL_STATE_MASK,
2362 HistoryItem.STATE2_WIFI_SUPPL_STATE_SHIFT, "wifi_suppl", "Wsp",
2363 WIFI_SUPPL_STATE_NAMES, WIFI_SUPPL_STATE_SHORT_NAMES),
Ruben Brunk6d2c3632015-05-26 17:32:16 -07002364 new BitDescription(HistoryItem.STATE2_CAMERA_FLAG, "camera", "ca"),
Adam Lesinski9f55cc72016-01-27 20:42:14 -08002365 new BitDescription(HistoryItem.STATE2_BLUETOOTH_SCAN_FLAG, "ble_scan", "bles"),
Siddharth Rayf5e796a2018-01-22 18:18:17 -08002366 new BitDescription(HistoryItem.STATE2_CELLULAR_HIGH_TX_POWER_FLAG,
2367 "cellular_high_tx_power", "Chtp"),
Siddharth Ray78ccaf52017-12-23 16:16:21 -08002368 new BitDescription(HistoryItem.STATE2_GPS_SIGNAL_QUALITY_MASK,
2369 HistoryItem.STATE2_GPS_SIGNAL_QUALITY_SHIFT, "gps_signal_quality", "Gss",
Siddharth Rayf5e796a2018-01-22 18:18:17 -08002370 new String[] { "poor", "good"}, new String[] { "poor", "good"})
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002371 };
2372
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08002373 public static final String[] HISTORY_EVENT_NAMES = new String[] {
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002374 "null", "proc", "fg", "top", "sync", "wake_lock_in", "job", "user", "userfg", "conn",
Kweku Adams134c59b2017-03-08 16:48:01 -08002375 "active", "pkginst", "pkgunin", "alarm", "stats", "pkginactive", "pkgactive",
2376 "tmpwhitelist", "screenwake", "wakeupap", "longwake", "est_capacity"
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08002377 };
2378
2379 public static final String[] HISTORY_EVENT_CHECKIN_NAMES = new String[] {
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002380 "Enl", "Epr", "Efg", "Etp", "Esy", "Ewl", "Ejb", "Eur", "Euf", "Ecn",
Dianne Hackborn280a64e2015-07-13 14:48:08 -07002381 "Eac", "Epi", "Epu", "Eal", "Est", "Eai", "Eaa", "Etw",
Adam Lesinski041d9172016-12-12 12:03:56 -08002382 "Esw", "Ewa", "Elw", "Eec"
2383 };
2384
2385 @FunctionalInterface
2386 public interface IntToString {
2387 String applyAsString(int val);
2388 }
2389
2390 private static final IntToString sUidToString = UserHandle::formatUid;
2391 private static final IntToString sIntToString = Integer::toString;
2392
2393 public static final IntToString[] HISTORY_EVENT_INT_FORMATTERS = new IntToString[] {
2394 sUidToString, sUidToString, sUidToString, sUidToString, sUidToString, sUidToString,
2395 sUidToString, sUidToString, sUidToString, sUidToString, sUidToString, sUidToString,
2396 sUidToString, sUidToString, sUidToString, sUidToString, sUidToString, sUidToString,
2397 sUidToString, sUidToString, sUidToString, sIntToString
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08002398 };
2399
Dianne Hackborn617f8772009-03-31 15:04:46 -07002400 /**
Ahmed ElArabawyf88571f2017-11-28 12:18:10 -08002401 * Returns total time for WiFi Multicast Wakelock timer.
2402 * Note that this may be different from the sum of per uid timer values.
2403 *
2404 * {@hide}
2405 */
2406 public abstract long getWifiMulticastWakelockTime(long elapsedRealtimeUs, int which);
2407
2408 /**
2409 * Returns total time for WiFi Multicast Wakelock timer
2410 * Note that this may be different from the sum of per uid timer values.
2411 *
2412 * {@hide}
2413 */
2414 public abstract int getWifiMulticastWakelockCount(int which);
2415
2416 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07002417 * Returns the time in microseconds that wifi has been on while the device was
The Android Open Source Project10592532009-03-18 17:39:46 -07002418 * running on battery.
Bookatzc8c44962017-05-11 12:12:54 -07002419 *
The Android Open Source Project10592532009-03-18 17:39:46 -07002420 * {@hide}
2421 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002422 public abstract long getWifiOnTime(long elapsedRealtimeUs, int which);
Eric Shienbroodd4c5f892009-03-24 18:13:20 -07002423
2424 /**
Siddharth Rayb50a6842017-12-14 15:15:28 -08002425 * Returns the time in microseconds that wifi has been active while the device was
2426 * running on battery.
2427 *
2428 * {@hide}
2429 */
2430 public abstract long getWifiActiveTime(long elapsedRealtimeUs, int which);
2431
2432 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07002433 * Returns the time in microseconds that wifi has been on and the driver has
Eric Shienbroodd4c5f892009-03-24 18:13:20 -07002434 * been in the running state while the device was running on battery.
2435 *
2436 * {@hide}
2437 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002438 public abstract long getGlobalWifiRunningTime(long elapsedRealtimeUs, int which);
Eric Shienbroodd4c5f892009-03-24 18:13:20 -07002439
Dianne Hackbornca1bf212014-02-14 14:18:36 -08002440 public static final int WIFI_STATE_OFF = 0;
2441 public static final int WIFI_STATE_OFF_SCANNING = 1;
2442 public static final int WIFI_STATE_ON_NO_NETWORKS = 2;
2443 public static final int WIFI_STATE_ON_DISCONNECTED = 3;
2444 public static final int WIFI_STATE_ON_CONNECTED_STA = 4;
2445 public static final int WIFI_STATE_ON_CONNECTED_P2P = 5;
2446 public static final int WIFI_STATE_ON_CONNECTED_STA_P2P = 6;
2447 public static final int WIFI_STATE_SOFT_AP = 7;
2448
2449 static final String[] WIFI_STATE_NAMES = {
2450 "off", "scanning", "no_net", "disconn",
2451 "sta", "p2p", "sta_p2p", "soft_ap"
2452 };
2453
2454 public static final int NUM_WIFI_STATES = WIFI_STATE_SOFT_AP+1;
2455
2456 /**
2457 * Returns the time in microseconds that WiFi has been running in the given state.
2458 *
2459 * {@hide}
2460 */
2461 public abstract long getWifiStateTime(int wifiState,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002462 long elapsedRealtimeUs, int which);
Dianne Hackbornca1bf212014-02-14 14:18:36 -08002463
2464 /**
2465 * Returns the number of times that WiFi has entered the given state.
2466 *
2467 * {@hide}
2468 */
2469 public abstract int getWifiStateCount(int wifiState, int which);
2470
The Android Open Source Project10592532009-03-18 17:39:46 -07002471 /**
Kweku Adams87b19ec2017-10-09 12:40:03 -07002472 * Returns the {@link Timer} object that tracks the given WiFi state.
2473 *
2474 * {@hide}
2475 */
2476 public abstract Timer getWifiStateTimer(int wifiState);
2477
2478 /**
Dianne Hackborn3251b902014-06-20 14:40:53 -07002479 * Returns the time in microseconds that the wifi supplicant has been
2480 * in a given state.
2481 *
2482 * {@hide}
2483 */
2484 public abstract long getWifiSupplStateTime(int state, long elapsedRealtimeUs, int which);
2485
2486 /**
2487 * Returns the number of times that the wifi supplicant has transitioned
2488 * to a given state.
2489 *
2490 * {@hide}
2491 */
2492 public abstract int getWifiSupplStateCount(int state, int which);
2493
Kweku Adams87b19ec2017-10-09 12:40:03 -07002494 /**
2495 * Returns the {@link Timer} object that tracks the given wifi supplicant state.
2496 *
2497 * {@hide}
2498 */
2499 public abstract Timer getWifiSupplStateTimer(int state);
2500
Dianne Hackborn3251b902014-06-20 14:40:53 -07002501 public static final int NUM_WIFI_SIGNAL_STRENGTH_BINS = 5;
2502
2503 /**
2504 * Returns the time in microseconds that WIFI has been running with
2505 * the given signal strength.
2506 *
2507 * {@hide}
2508 */
2509 public abstract long getWifiSignalStrengthTime(int strengthBin,
2510 long elapsedRealtimeUs, int which);
2511
2512 /**
2513 * Returns the number of times WIFI has entered the given signal strength.
2514 *
2515 * {@hide}
2516 */
2517 public abstract int getWifiSignalStrengthCount(int strengthBin, int which);
2518
2519 /**
Kweku Adams87b19ec2017-10-09 12:40:03 -07002520 * Returns the {@link Timer} object that tracks the given WIFI signal strength.
2521 *
2522 * {@hide}
2523 */
2524 public abstract Timer getWifiSignalStrengthTimer(int strengthBin);
2525
2526 /**
Dianne Hackbornabc7c492014-06-30 16:57:46 -07002527 * Returns the time in microseconds that the flashlight has been on while the device was
2528 * running on battery.
2529 *
2530 * {@hide}
2531 */
2532 public abstract long getFlashlightOnTime(long elapsedRealtimeUs, int which);
2533
2534 /**
2535 * Returns the number of times that the flashlight has been turned on while the device was
2536 * running on battery.
2537 *
2538 * {@hide}
2539 */
2540 public abstract long getFlashlightOnCount(int which);
2541
Ruben Brunk5b1308f2015-06-03 18:49:27 -07002542 /**
2543 * Returns the time in microseconds that the camera has been on while the device was
2544 * running on battery.
2545 *
2546 * {@hide}
2547 */
2548 public abstract long getCameraOnTime(long elapsedRealtimeUs, int which);
2549
Adam Lesinski9f55cc72016-01-27 20:42:14 -08002550 /**
2551 * Returns the time in microseconds that bluetooth scans were running while the device was
2552 * on battery.
2553 *
2554 * {@hide}
2555 */
2556 public abstract long getBluetoothScanTime(long elapsedRealtimeUs, int which);
Ruben Brunk5b1308f2015-06-03 18:49:27 -07002557
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002558 public static final int NETWORK_MOBILE_RX_DATA = 0;
2559 public static final int NETWORK_MOBILE_TX_DATA = 1;
2560 public static final int NETWORK_WIFI_RX_DATA = 2;
2561 public static final int NETWORK_WIFI_TX_DATA = 3;
Adam Lesinski50e47602015-12-04 17:04:54 -08002562 public static final int NETWORK_BT_RX_DATA = 4;
2563 public static final int NETWORK_BT_TX_DATA = 5;
Amith Yamasani59fe8412017-03-03 16:28:52 -08002564 public static final int NETWORK_MOBILE_BG_RX_DATA = 6;
2565 public static final int NETWORK_MOBILE_BG_TX_DATA = 7;
2566 public static final int NETWORK_WIFI_BG_RX_DATA = 8;
2567 public static final int NETWORK_WIFI_BG_TX_DATA = 9;
2568 public static final int NUM_NETWORK_ACTIVITY_TYPES = NETWORK_WIFI_BG_TX_DATA + 1;
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07002569
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002570 public abstract long getNetworkActivityBytes(int type, int which);
2571 public abstract long getNetworkActivityPackets(int type, int which);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07002572
Adam Lesinskie08af192015-03-25 16:42:59 -07002573 /**
Adam Lesinski17390762015-04-10 13:17:47 -07002574 * Returns true if the BatteryStats object has detailed WiFi power reports.
Adam Lesinski21f76aa2016-01-25 12:27:06 -08002575 * When true, calling {@link #getWifiControllerActivity()} will yield the
Adam Lesinski17390762015-04-10 13:17:47 -07002576 * actual power data.
2577 */
2578 public abstract boolean hasWifiActivityReporting();
2579
2580 /**
Adam Lesinski21f76aa2016-01-25 12:27:06 -08002581 * Returns a {@link ControllerActivityCounter} which is an aggregate of the times spent
2582 * in various radio controller states, such as transmit, receive, and idle.
2583 * @return non-null {@link ControllerActivityCounter}
Adam Lesinskie08af192015-03-25 16:42:59 -07002584 */
Adam Lesinski21f76aa2016-01-25 12:27:06 -08002585 public abstract ControllerActivityCounter getWifiControllerActivity();
2586
2587 /**
2588 * Returns true if the BatteryStats object has detailed bluetooth power reports.
2589 * When true, calling {@link #getBluetoothControllerActivity()} will yield the
2590 * actual power data.
2591 */
2592 public abstract boolean hasBluetoothActivityReporting();
2593
2594 /**
2595 * Returns a {@link ControllerActivityCounter} which is an aggregate of the times spent
2596 * in various radio controller states, such as transmit, receive, and idle.
2597 * @return non-null {@link ControllerActivityCounter}
2598 */
2599 public abstract ControllerActivityCounter getBluetoothControllerActivity();
2600
2601 /**
2602 * Returns true if the BatteryStats object has detailed modem power reports.
2603 * When true, calling {@link #getModemControllerActivity()} will yield the
2604 * actual power data.
2605 */
2606 public abstract boolean hasModemActivityReporting();
2607
2608 /**
2609 * Returns a {@link ControllerActivityCounter} which is an aggregate of the times spent
2610 * in various radio controller states, such as transmit, receive, and idle.
2611 * @return non-null {@link ControllerActivityCounter}
2612 */
2613 public abstract ControllerActivityCounter getModemControllerActivity();
Adam Lesinski33dac552015-03-09 15:24:48 -07002614
The Android Open Source Project10592532009-03-18 17:39:46 -07002615 /**
Dianne Hackborn5f4a5f92014-01-24 16:59:34 -08002616 * Return the wall clock time when battery stats data collection started.
2617 */
2618 public abstract long getStartClockTime();
2619
2620 /**
Dianne Hackborncd0e3352014-08-07 17:08:09 -07002621 * Return platform version tag that we were running in when the battery stats started.
2622 */
2623 public abstract String getStartPlatformVersion();
2624
2625 /**
2626 * Return platform version tag that we were running in when the battery stats ended.
2627 */
2628 public abstract String getEndPlatformVersion();
2629
2630 /**
2631 * Return the internal version code of the parcelled format.
2632 */
2633 public abstract int getParcelVersion();
2634
2635 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002636 * Return whether we are currently running on battery.
2637 */
2638 public abstract boolean getIsOnBattery();
Bookatzc8c44962017-05-11 12:12:54 -07002639
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002640 /**
2641 * Returns a SparseArray containing the statistics for each uid.
2642 */
2643 public abstract SparseArray<? extends Uid> getUidStats();
2644
2645 /**
2646 * Returns the current battery uptime in microseconds.
2647 *
2648 * @param curTime the amount of elapsed realtime in microseconds.
2649 */
2650 public abstract long getBatteryUptime(long curTime);
2651
2652 /**
2653 * Returns the current battery realtime in microseconds.
2654 *
2655 * @param curTime the amount of elapsed realtime in microseconds.
2656 */
2657 public abstract long getBatteryRealtime(long curTime);
Bookatzc8c44962017-05-11 12:12:54 -07002658
The Android Open Source Project10592532009-03-18 17:39:46 -07002659 /**
Evan Millar633a1742009-04-02 16:36:33 -07002660 * Returns the battery percentage level at the last time the device was unplugged from power, or
Bookatzc8c44962017-05-11 12:12:54 -07002661 * the last time it booted on battery power.
The Android Open Source Project10592532009-03-18 17:39:46 -07002662 */
Evan Millar633a1742009-04-02 16:36:33 -07002663 public abstract int getDischargeStartLevel();
Bookatzc8c44962017-05-11 12:12:54 -07002664
The Android Open Source Project10592532009-03-18 17:39:46 -07002665 /**
Evan Millar633a1742009-04-02 16:36:33 -07002666 * Returns the current battery percentage level if we are in a discharge cycle, otherwise
2667 * returns the level at the last plug event.
The Android Open Source Project10592532009-03-18 17:39:46 -07002668 */
Evan Millar633a1742009-04-02 16:36:33 -07002669 public abstract int getDischargeCurrentLevel();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002670
2671 /**
Dianne Hackborn3bee5af82010-07-23 00:22:04 -07002672 * Get the amount the battery has discharged since the stats were
2673 * last reset after charging, as a lower-end approximation.
2674 */
2675 public abstract int getLowDischargeAmountSinceCharge();
2676
2677 /**
2678 * Get the amount the battery has discharged since the stats were
2679 * last reset after charging, as an upper-end approximation.
2680 */
2681 public abstract int getHighDischargeAmountSinceCharge();
2682
2683 /**
Dianne Hackborn40c87252014-03-19 16:55:40 -07002684 * Retrieve the discharge amount over the selected discharge period <var>which</var>.
2685 */
2686 public abstract int getDischargeAmount(int which);
2687
2688 /**
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08002689 * Get the amount the battery has discharged while the screen was on,
2690 * since the last time power was unplugged.
2691 */
2692 public abstract int getDischargeAmountScreenOn();
2693
2694 /**
2695 * Get the amount the battery has discharged while the screen was on,
2696 * since the last time the device was charged.
2697 */
2698 public abstract int getDischargeAmountScreenOnSinceCharge();
2699
2700 /**
2701 * Get the amount the battery has discharged while the screen was off,
2702 * since the last time power was unplugged.
2703 */
2704 public abstract int getDischargeAmountScreenOff();
2705
2706 /**
2707 * Get the amount the battery has discharged while the screen was off,
2708 * since the last time the device was charged.
2709 */
2710 public abstract int getDischargeAmountScreenOffSinceCharge();
2711
2712 /**
Kweku Adams87b19ec2017-10-09 12:40:03 -07002713 * Get the amount the battery has discharged while the screen was dozing,
Mike Mac2f518a2017-09-19 16:06:03 -07002714 * since the last time power was unplugged.
2715 */
2716 public abstract int getDischargeAmountScreenDoze();
2717
2718 /**
Kweku Adams87b19ec2017-10-09 12:40:03 -07002719 * Get the amount the battery has discharged while the screen was dozing,
Mike Mac2f518a2017-09-19 16:06:03 -07002720 * since the last time the device was charged.
2721 */
2722 public abstract int getDischargeAmountScreenDozeSinceCharge();
2723
2724 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002725 * Returns the total, last, or current battery uptime in microseconds.
2726 *
2727 * @param curTime the elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002728 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002729 */
2730 public abstract long computeBatteryUptime(long curTime, int which);
2731
2732 /**
2733 * Returns the total, last, or current battery realtime in microseconds.
2734 *
2735 * @param curTime the current elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002736 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002737 */
2738 public abstract long computeBatteryRealtime(long curTime, int which);
2739
2740 /**
Mike Mac2f518a2017-09-19 16:06:03 -07002741 * Returns the total, last, or current battery screen off/doze uptime in microseconds.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002742 *
2743 * @param curTime the elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002744 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002745 */
2746 public abstract long computeBatteryScreenOffUptime(long curTime, int which);
2747
2748 /**
Mike Mac2f518a2017-09-19 16:06:03 -07002749 * Returns the total, last, or current battery screen off/doze realtime in microseconds.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002750 *
2751 * @param curTime the current elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002752 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002753 */
2754 public abstract long computeBatteryScreenOffRealtime(long curTime, int which);
2755
2756 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002757 * Returns the total, last, or current uptime in microseconds.
2758 *
2759 * @param curTime the current elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002760 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002761 */
2762 public abstract long computeUptime(long curTime, int which);
2763
2764 /**
2765 * Returns the total, last, or current realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002766 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002767 * @param curTime the current elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002768 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002769 */
2770 public abstract long computeRealtime(long curTime, int which);
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002771
2772 /**
2773 * Compute an approximation for how much run time (in microseconds) is remaining on
2774 * the battery. Returns -1 if no time can be computed: either there is not
2775 * enough current data to make a decision, or the battery is currently
2776 * charging.
2777 *
2778 * @param curTime The current elepsed realtime in microseconds.
2779 */
2780 public abstract long computeBatteryTimeRemaining(long curTime);
2781
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07002782 // The part of a step duration that is the actual time.
2783 public static final long STEP_LEVEL_TIME_MASK = 0x000000ffffffffffL;
2784
2785 // Bits in a step duration that are the new battery level we are at.
2786 public static final long STEP_LEVEL_LEVEL_MASK = 0x0000ff0000000000L;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002787 public static final int STEP_LEVEL_LEVEL_SHIFT = 40;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07002788
2789 // Bits in a step duration that are the initial mode we were in at that step.
2790 public static final long STEP_LEVEL_INITIAL_MODE_MASK = 0x00ff000000000000L;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002791 public static final int STEP_LEVEL_INITIAL_MODE_SHIFT = 48;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07002792
2793 // Bits in a step duration that indicate which modes changed during that step.
2794 public static final long STEP_LEVEL_MODIFIED_MODE_MASK = 0xff00000000000000L;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002795 public static final int STEP_LEVEL_MODIFIED_MODE_SHIFT = 56;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07002796
2797 // Step duration mode: the screen is on, off, dozed, etc; value is Display.STATE_* - 1.
2798 public static final int STEP_LEVEL_MODE_SCREEN_STATE = 0x03;
2799
Santos Cordone94f0502017-02-24 12:31:20 -08002800 // The largest value for screen state that is tracked in battery states. Any values above
2801 // this should be mapped back to one of the tracked values before being tracked here.
2802 public static final int MAX_TRACKED_SCREEN_STATE = Display.STATE_DOZE_SUSPEND;
2803
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07002804 // Step duration mode: power save is on.
2805 public static final int STEP_LEVEL_MODE_POWER_SAVE = 0x04;
2806
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002807 // Step duration mode: device is currently in idle mode.
2808 public static final int STEP_LEVEL_MODE_DEVICE_IDLE = 0x08;
2809
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002810 public static final int[] STEP_LEVEL_MODES_OF_INTEREST = new int[] {
2811 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE,
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002812 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE|STEP_LEVEL_MODE_DEVICE_IDLE,
2813 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_DEVICE_IDLE,
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002814 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE,
2815 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE,
2816 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE,
2817 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE,
2818 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE,
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002819 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE|STEP_LEVEL_MODE_DEVICE_IDLE,
2820 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_DEVICE_IDLE,
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002821 };
2822 public static final int[] STEP_LEVEL_MODE_VALUES = new int[] {
2823 (Display.STATE_OFF-1),
2824 (Display.STATE_OFF-1)|STEP_LEVEL_MODE_POWER_SAVE,
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002825 (Display.STATE_OFF-1)|STEP_LEVEL_MODE_DEVICE_IDLE,
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002826 (Display.STATE_ON-1),
2827 (Display.STATE_ON-1)|STEP_LEVEL_MODE_POWER_SAVE,
2828 (Display.STATE_DOZE-1),
2829 (Display.STATE_DOZE-1)|STEP_LEVEL_MODE_POWER_SAVE,
2830 (Display.STATE_DOZE_SUSPEND-1),
2831 (Display.STATE_DOZE_SUSPEND-1)|STEP_LEVEL_MODE_POWER_SAVE,
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002832 (Display.STATE_DOZE_SUSPEND-1)|STEP_LEVEL_MODE_DEVICE_IDLE,
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002833 };
2834 public static final String[] STEP_LEVEL_MODE_LABELS = new String[] {
2835 "screen off",
2836 "screen off power save",
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002837 "screen off device idle",
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002838 "screen on",
2839 "screen on power save",
2840 "screen doze",
2841 "screen doze power save",
2842 "screen doze-suspend",
2843 "screen doze-suspend power save",
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002844 "screen doze-suspend device idle",
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002845 };
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002846
2847 /**
Mike Mac2f518a2017-09-19 16:06:03 -07002848 * Return the amount of battery discharge while the screen was off, measured in
Adam Lesinski3ee3f632016-06-08 13:55:55 -07002849 * micro-Ampere-hours. This will be non-zero only if the device's battery has
2850 * a coulomb counter.
2851 */
Kweku Adams87b19ec2017-10-09 12:40:03 -07002852 public abstract long getUahDischargeScreenOff(int which);
Mike Mac2f518a2017-09-19 16:06:03 -07002853
2854 /**
2855 * Return the amount of battery discharge while the screen was in doze mode, measured in
2856 * micro-Ampere-hours. This will be non-zero only if the device's battery has
2857 * a coulomb counter.
2858 */
Kweku Adams87b19ec2017-10-09 12:40:03 -07002859 public abstract long getUahDischargeScreenDoze(int which);
Mike Mac2f518a2017-09-19 16:06:03 -07002860
2861 /**
2862 * Return the amount of battery discharge measured in micro-Ampere-hours. This will be
2863 * non-zero only if the device's battery has a coulomb counter.
2864 */
Kweku Adams87b19ec2017-10-09 12:40:03 -07002865 public abstract long getUahDischarge(int which);
Adam Lesinski3ee3f632016-06-08 13:55:55 -07002866
2867 /**
Mike Ma15313c92017-11-15 17:58:21 -08002868 * @return the amount of battery discharge while the device is in light idle mode, measured in
2869 * micro-Ampere-hours.
2870 */
2871 public abstract long getUahDischargeLightDoze(int which);
2872
2873 /**
2874 * @return the amount of battery discharge while the device is in deep idle mode, measured in
2875 * micro-Ampere-hours.
2876 */
2877 public abstract long getUahDischargeDeepDoze(int which);
2878
2879 /**
Adam Lesinskif9b20a92016-06-17 17:30:01 -07002880 * Returns the estimated real battery capacity, which may be less than the capacity
2881 * declared by the PowerProfile.
2882 * @return The estimated battery capacity in mAh.
2883 */
2884 public abstract int getEstimatedBatteryCapacity();
2885
2886 /**
Jocelyn Dangc627d102017-04-14 13:15:14 -07002887 * @return The minimum learned battery capacity in uAh.
2888 */
2889 public abstract int getMinLearnedBatteryCapacity();
2890
2891 /**
2892 * @return The maximum learned battery capacity in uAh.
2893 */
2894 public abstract int getMaxLearnedBatteryCapacity() ;
2895
2896 /**
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002897 * Return the array of discharge step durations.
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002898 */
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002899 public abstract LevelStepTracker getDischargeLevelStepTracker();
2900
2901 /**
2902 * Return the array of daily discharge step durations.
2903 */
2904 public abstract LevelStepTracker getDailyDischargeLevelStepTracker();
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002905
2906 /**
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002907 * Compute an approximation for how much time (in microseconds) remains until the battery
2908 * is fully charged. Returns -1 if no time can be computed: either there is not
2909 * enough current data to make a decision, or the battery is currently
2910 * discharging.
2911 *
2912 * @param curTime The current elepsed realtime in microseconds.
2913 */
2914 public abstract long computeChargeTimeRemaining(long curTime);
2915
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002916 /**
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002917 * Return the array of charge step durations.
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002918 */
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002919 public abstract LevelStepTracker getChargeLevelStepTracker();
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002920
2921 /**
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002922 * Return the array of daily charge step durations.
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002923 */
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002924 public abstract LevelStepTracker getDailyChargeLevelStepTracker();
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002925
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002926 public abstract ArrayList<PackageChange> getDailyPackageChanges();
2927
Dianne Hackbornc3940bc2014-09-05 15:50:25 -07002928 public abstract Map<String, ? extends Timer> getWakeupReasonStats();
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002929
Evan Millarc64edde2009-04-18 12:26:32 -07002930 public abstract Map<String, ? extends Timer> getKernelWakelockStats();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002931
Bookatz50df7112017-08-04 14:53:26 -07002932 /**
2933 * Returns Timers tracking the total time of each Resource Power Manager state and voter.
2934 */
2935 public abstract Map<String, ? extends Timer> getRpmStats();
2936 /**
2937 * Returns Timers tracking the screen-off time of each Resource Power Manager state and voter.
2938 */
2939 public abstract Map<String, ? extends Timer> getScreenOffRpmStats();
2940
2941
James Carr2dd7e5e2016-07-20 18:48:39 -07002942 public abstract LongSparseArray<? extends Timer> getKernelMemoryStats();
2943
Dianne Hackborna7c837f2014-01-15 16:20:44 -08002944 public abstract void writeToParcelWithoutUids(Parcel out, int flags);
2945
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002946 private final static void formatTimeRaw(StringBuilder out, long seconds) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002947 long days = seconds / (60 * 60 * 24);
2948 if (days != 0) {
2949 out.append(days);
2950 out.append("d ");
2951 }
2952 long used = days * 60 * 60 * 24;
2953
2954 long hours = (seconds - used) / (60 * 60);
2955 if (hours != 0 || used != 0) {
2956 out.append(hours);
2957 out.append("h ");
2958 }
2959 used += hours * 60 * 60;
2960
2961 long mins = (seconds-used) / 60;
2962 if (mins != 0 || used != 0) {
2963 out.append(mins);
2964 out.append("m ");
2965 }
2966 used += mins * 60;
2967
2968 if (seconds != 0 || used != 0) {
2969 out.append(seconds-used);
2970 out.append("s ");
2971 }
2972 }
2973
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002974 public final static void formatTimeMs(StringBuilder sb, long time) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002975 long sec = time / 1000;
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002976 formatTimeRaw(sb, sec);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002977 sb.append(time - (sec * 1000));
2978 sb.append("ms ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002979 }
2980
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002981 public final static void formatTimeMsNoSpace(StringBuilder sb, long time) {
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002982 long sec = time / 1000;
2983 formatTimeRaw(sb, sec);
2984 sb.append(time - (sec * 1000));
2985 sb.append("ms");
2986 }
2987
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002988 public final String formatRatioLocked(long num, long den) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002989 if (den == 0L) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002990 return "--%";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002991 }
2992 float perc = ((float)num) / ((float)den) * 100;
2993 mFormatBuilder.setLength(0);
2994 mFormatter.format("%.1f%%", perc);
2995 return mFormatBuilder.toString();
2996 }
2997
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002998 final String formatBytesLocked(long bytes) {
Evan Millar22ac0432009-03-31 11:33:18 -07002999 mFormatBuilder.setLength(0);
Bookatzc8c44962017-05-11 12:12:54 -07003000
Evan Millar22ac0432009-03-31 11:33:18 -07003001 if (bytes < BYTES_PER_KB) {
3002 return bytes + "B";
3003 } else if (bytes < BYTES_PER_MB) {
3004 mFormatter.format("%.2fKB", bytes / (double) BYTES_PER_KB);
3005 return mFormatBuilder.toString();
3006 } else if (bytes < BYTES_PER_GB){
3007 mFormatter.format("%.2fMB", bytes / (double) BYTES_PER_MB);
3008 return mFormatBuilder.toString();
3009 } else {
3010 mFormatter.format("%.2fGB", bytes / (double) BYTES_PER_GB);
3011 return mFormatBuilder.toString();
3012 }
3013 }
3014
Kweku Adams103351f2017-10-16 14:39:34 -07003015 private static long roundUsToMs(long timeUs) {
3016 return (timeUs + 500) / 1000;
3017 }
3018
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003019 private static long computeWakeLock(Timer timer, long elapsedRealtimeUs, int which) {
Dianne Hackbornc24ab862011-10-18 15:55:03 -07003020 if (timer != null) {
3021 // Convert from microseconds to milliseconds with rounding
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003022 long totalTimeMicros = timer.getTotalTimeLocked(elapsedRealtimeUs, which);
Dianne Hackbornc24ab862011-10-18 15:55:03 -07003023 long totalTimeMillis = (totalTimeMicros + 500) / 1000;
3024 return totalTimeMillis;
3025 }
3026 return 0;
3027 }
3028
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003029 /**
3030 *
3031 * @param sb a StringBuilder object.
3032 * @param timer a Timer object contining the wakelock times.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003033 * @param elapsedRealtimeUs the current on-battery time in microseconds.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003034 * @param name the name of the wakelock.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07003035 * @param which which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003036 * @param linePrefix a String to be prepended to each line of output.
3037 * @return the line prefix
3038 */
3039 private static final String printWakeLock(StringBuilder sb, Timer timer,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003040 long elapsedRealtimeUs, String name, int which, String linePrefix) {
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003041
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003042 if (timer != null) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003043 long totalTimeMillis = computeWakeLock(timer, elapsedRealtimeUs, which);
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003044
Evan Millarc64edde2009-04-18 12:26:32 -07003045 int count = timer.getCountLocked(which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003046 if (totalTimeMillis != 0) {
3047 sb.append(linePrefix);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07003048 formatTimeMs(sb, totalTimeMillis);
Dianne Hackborn81038902012-11-26 17:04:09 -08003049 if (name != null) {
3050 sb.append(name);
3051 sb.append(' ');
3052 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003053 sb.append('(');
3054 sb.append(count);
3055 sb.append(" times)");
Joe Onorato92fd23f2016-07-25 11:18:42 -07003056 final long maxDurationMs = timer.getMaxDurationMsLocked(elapsedRealtimeUs/1000);
3057 if (maxDurationMs >= 0) {
3058 sb.append(" max=");
3059 sb.append(maxDurationMs);
3060 }
Bookatz506a8182017-05-01 14:18:42 -07003061 // Put actual time if it is available and different from totalTimeMillis.
3062 final long totalDurMs = timer.getTotalDurationMsLocked(elapsedRealtimeUs/1000);
3063 if (totalDurMs > totalTimeMillis) {
3064 sb.append(" actual=");
3065 sb.append(totalDurMs);
3066 }
Joe Onorato92fd23f2016-07-25 11:18:42 -07003067 if (timer.isRunningLocked()) {
3068 final long currentMs = timer.getCurrentDurationMsLocked(elapsedRealtimeUs/1000);
3069 if (currentMs >= 0) {
3070 sb.append(" (running for ");
3071 sb.append(currentMs);
3072 sb.append("ms)");
3073 } else {
3074 sb.append(" (running)");
3075 }
3076 }
3077
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003078 return ", ";
3079 }
3080 }
3081 return linePrefix;
3082 }
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003083
3084 /**
Joe Onorato92fd23f2016-07-25 11:18:42 -07003085 * Prints details about a timer, if its total time was greater than 0.
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003086 *
3087 * @param pw a PrintWriter object to print to.
3088 * @param sb a StringBuilder object.
3089 * @param timer a Timer object contining the wakelock times.
Bookatz867c0d72017-03-07 18:23:42 -08003090 * @param rawRealtimeUs the current on-battery time in microseconds.
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003091 * @param which which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
3092 * @param prefix a String to be prepended to each line of output.
3093 * @param type the name of the timer.
Joe Onorato92fd23f2016-07-25 11:18:42 -07003094 * @return true if anything was printed.
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003095 */
3096 private static final boolean printTimer(PrintWriter pw, StringBuilder sb, Timer timer,
Joe Onorato92fd23f2016-07-25 11:18:42 -07003097 long rawRealtimeUs, int which, String prefix, String type) {
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003098 if (timer != null) {
3099 // Convert from microseconds to milliseconds with rounding
Joe Onorato92fd23f2016-07-25 11:18:42 -07003100 final long totalTimeMs = (timer.getTotalTimeLocked(
3101 rawRealtimeUs, which) + 500) / 1000;
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003102 final int count = timer.getCountLocked(which);
Joe Onorato92fd23f2016-07-25 11:18:42 -07003103 if (totalTimeMs != 0) {
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003104 sb.setLength(0);
3105 sb.append(prefix);
3106 sb.append(" ");
3107 sb.append(type);
3108 sb.append(": ");
Joe Onorato92fd23f2016-07-25 11:18:42 -07003109 formatTimeMs(sb, totalTimeMs);
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003110 sb.append("realtime (");
3111 sb.append(count);
3112 sb.append(" times)");
Joe Onorato92fd23f2016-07-25 11:18:42 -07003113 final long maxDurationMs = timer.getMaxDurationMsLocked(rawRealtimeUs/1000);
3114 if (maxDurationMs >= 0) {
3115 sb.append(" max=");
3116 sb.append(maxDurationMs);
3117 }
3118 if (timer.isRunningLocked()) {
3119 final long currentMs = timer.getCurrentDurationMsLocked(rawRealtimeUs/1000);
3120 if (currentMs >= 0) {
3121 sb.append(" (running for ");
3122 sb.append(currentMs);
3123 sb.append("ms)");
3124 } else {
3125 sb.append(" (running)");
3126 }
3127 }
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003128 pw.println(sb.toString());
3129 return true;
3130 }
3131 }
3132 return false;
3133 }
Bookatzc8c44962017-05-11 12:12:54 -07003134
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003135 /**
3136 * Checkin version of wakelock printer. Prints simple comma-separated list.
Bookatzc8c44962017-05-11 12:12:54 -07003137 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003138 * @param sb a StringBuilder object.
3139 * @param timer a Timer object contining the wakelock times.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003140 * @param elapsedRealtimeUs the current time in microseconds.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003141 * @param name the name of the wakelock.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07003142 * @param which which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003143 * @param linePrefix a String to be prepended to each line of output.
3144 * @return the line prefix
3145 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003146 private static final String printWakeLockCheckin(StringBuilder sb, Timer timer,
3147 long elapsedRealtimeUs, String name, int which, String linePrefix) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003148 long totalTimeMicros = 0;
3149 int count = 0;
Bookatz941d98f2017-05-02 19:25:18 -07003150 long max = 0;
3151 long current = 0;
3152 long totalDuration = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003153 if (timer != null) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003154 totalTimeMicros = timer.getTotalTimeLocked(elapsedRealtimeUs, which);
Bookatz506a8182017-05-01 14:18:42 -07003155 count = timer.getCountLocked(which);
Joe Onorato92fd23f2016-07-25 11:18:42 -07003156 current = timer.getCurrentDurationMsLocked(elapsedRealtimeUs/1000);
3157 max = timer.getMaxDurationMsLocked(elapsedRealtimeUs/1000);
Bookatz506a8182017-05-01 14:18:42 -07003158 totalDuration = timer.getTotalDurationMsLocked(elapsedRealtimeUs/1000);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003159 }
3160 sb.append(linePrefix);
3161 sb.append((totalTimeMicros + 500) / 1000); // microseconds to milliseconds with rounding
3162 sb.append(',');
Evan Millarc64edde2009-04-18 12:26:32 -07003163 sb.append(name != null ? name + "," : "");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003164 sb.append(count);
Joe Onorato92fd23f2016-07-25 11:18:42 -07003165 sb.append(',');
3166 sb.append(current);
3167 sb.append(',');
3168 sb.append(max);
Bookatz506a8182017-05-01 14:18:42 -07003169 // Partial, full, and window wakelocks are pooled, so totalDuration is meaningful (albeit
3170 // not always tracked). Kernel wakelocks (which have name == null) have no notion of
3171 // totalDuration independent of totalTimeMicros (since they are not pooled).
3172 if (name != null) {
3173 sb.append(',');
3174 sb.append(totalDuration);
3175 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003176 return ",";
3177 }
Bookatz506a8182017-05-01 14:18:42 -07003178
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003179 private static final void dumpLineHeader(PrintWriter pw, int uid, String category,
3180 String type) {
3181 pw.print(BATTERY_STATS_CHECKIN_VERSION);
3182 pw.print(',');
3183 pw.print(uid);
3184 pw.print(',');
3185 pw.print(category);
3186 pw.print(',');
3187 pw.print(type);
3188 }
3189
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003190 /**
3191 * Dump a comma-separated line of values for terse checkin mode.
Bookatzc8c44962017-05-11 12:12:54 -07003192 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003193 * @param pw the PageWriter to dump log to
3194 * @param category category of data (e.g. "total", "last", "unplugged", "current" )
3195 * @param type type of data (e.g. "wakelock", "sensor", "process", "apk" , "process", "network")
3196 * @param args type-dependent data arguments
3197 */
Bookatzc8c44962017-05-11 12:12:54 -07003198 private static final void dumpLine(PrintWriter pw, int uid, String category, String type,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003199 Object... args ) {
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003200 dumpLineHeader(pw, uid, category, type);
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003201 for (Object arg : args) {
Dianne Hackborn13ac0412013-06-25 19:34:49 -07003202 pw.print(',');
3203 pw.print(arg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003204 }
Dianne Hackborn13ac0412013-06-25 19:34:49 -07003205 pw.println();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003206 }
Dianne Hackbornd953c532014-08-16 18:17:38 -07003207
3208 /**
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003209 * Dump a given timer stat for terse checkin mode.
3210 *
3211 * @param pw the PageWriter to dump log to
3212 * @param uid the UID to log
3213 * @param category category of data (e.g. "total", "last", "unplugged", "current" )
3214 * @param type type of data (e.g. "wakelock", "sensor", "process", "apk" , "process", "network")
3215 * @param timer a {@link Timer} to dump stats for
3216 * @param rawRealtime the current elapsed realtime of the system in microseconds
3217 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT
3218 */
3219 private static final void dumpTimer(PrintWriter pw, int uid, String category, String type,
3220 Timer timer, long rawRealtime, int which) {
3221 if (timer != null) {
3222 // Convert from microseconds to milliseconds with rounding
Kweku Adams103351f2017-10-16 14:39:34 -07003223 final long totalTime = roundUsToMs(timer.getTotalTimeLocked(rawRealtime, which));
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003224 final int count = timer.getCountLocked(which);
Kweku Adams87b19ec2017-10-09 12:40:03 -07003225 if (totalTime != 0 || count != 0) {
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003226 dumpLine(pw, uid, category, type, totalTime, count);
3227 }
3228 }
3229 }
3230
3231 /**
Kweku Adams2f73ecd2017-09-27 16:59:19 -07003232 * Dump a given timer stat to the proto stream.
3233 *
3234 * @param proto the ProtoOutputStream to log to
3235 * @param fieldId type of data, the field to save to (e.g. AggregatedBatteryStats.WAKELOCK)
3236 * @param timer a {@link Timer} to dump stats for
3237 * @param rawRealtimeUs the current elapsed realtime of the system in microseconds
3238 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT
3239 */
3240 private static void dumpTimer(ProtoOutputStream proto, long fieldId,
Kweku Adams87b19ec2017-10-09 12:40:03 -07003241 Timer timer, long rawRealtimeUs, int which) {
Kweku Adams2f73ecd2017-09-27 16:59:19 -07003242 if (timer == null) {
3243 return;
3244 }
3245 // Convert from microseconds to milliseconds with rounding
Kweku Adams103351f2017-10-16 14:39:34 -07003246 final long timeMs = roundUsToMs(timer.getTotalTimeLocked(rawRealtimeUs, which));
Kweku Adams2f73ecd2017-09-27 16:59:19 -07003247 final int count = timer.getCountLocked(which);
Kweku Adams103351f2017-10-16 14:39:34 -07003248 final long maxDurationMs = timer.getMaxDurationMsLocked(rawRealtimeUs / 1000);
3249 final long curDurationMs = timer.getCurrentDurationMsLocked(rawRealtimeUs / 1000);
3250 final long totalDurationMs = timer.getTotalDurationMsLocked(rawRealtimeUs / 1000);
3251 if (timeMs != 0 || count != 0 || maxDurationMs != -1 || curDurationMs != -1
3252 || totalDurationMs != -1) {
Kweku Adams2f73ecd2017-09-27 16:59:19 -07003253 final long token = proto.start(fieldId);
Kweku Adams103351f2017-10-16 14:39:34 -07003254 proto.write(TimerProto.DURATION_MS, timeMs);
Kweku Adams2f73ecd2017-09-27 16:59:19 -07003255 proto.write(TimerProto.COUNT, count);
Kweku Adams103351f2017-10-16 14:39:34 -07003256 // These values will be -1 for timers that don't implement the functionality.
3257 if (maxDurationMs != -1) {
3258 proto.write(TimerProto.MAX_DURATION_MS, maxDurationMs);
3259 }
3260 if (curDurationMs != -1) {
3261 proto.write(TimerProto.CURRENT_DURATION_MS, curDurationMs);
3262 }
3263 if (totalDurationMs != -1) {
3264 proto.write(TimerProto.TOTAL_DURATION_MS, totalDurationMs);
3265 }
Kweku Adams2f73ecd2017-09-27 16:59:19 -07003266 proto.end(token);
3267 }
3268 }
3269
3270 /**
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003271 * Checks if the ControllerActivityCounter has any data worth dumping.
3272 */
3273 private static boolean controllerActivityHasData(ControllerActivityCounter counter, int which) {
3274 if (counter == null) {
3275 return false;
3276 }
3277
3278 if (counter.getIdleTimeCounter().getCountLocked(which) != 0
3279 || counter.getRxTimeCounter().getCountLocked(which) != 0
3280 || counter.getPowerCounter().getCountLocked(which) != 0) {
3281 return true;
3282 }
3283
3284 for (LongCounter c : counter.getTxTimeCounters()) {
3285 if (c.getCountLocked(which) != 0) {
3286 return true;
3287 }
3288 }
3289 return false;
3290 }
3291
3292 /**
3293 * Dumps the ControllerActivityCounter if it has any data worth dumping.
3294 * The order of the arguments in the final check in line is:
3295 *
3296 * idle, rx, power, tx...
3297 *
3298 * where tx... is one or more transmit level times.
3299 */
3300 private static final void dumpControllerActivityLine(PrintWriter pw, int uid, String category,
3301 String type,
3302 ControllerActivityCounter counter,
3303 int which) {
3304 if (!controllerActivityHasData(counter, which)) {
3305 return;
3306 }
3307
3308 dumpLineHeader(pw, uid, category, type);
3309 pw.print(",");
3310 pw.print(counter.getIdleTimeCounter().getCountLocked(which));
3311 pw.print(",");
3312 pw.print(counter.getRxTimeCounter().getCountLocked(which));
3313 pw.print(",");
3314 pw.print(counter.getPowerCounter().getCountLocked(which) / (1000 * 60 * 60));
3315 for (LongCounter c : counter.getTxTimeCounters()) {
3316 pw.print(",");
3317 pw.print(c.getCountLocked(which));
3318 }
3319 pw.println();
3320 }
3321
Kweku Adams2f73ecd2017-09-27 16:59:19 -07003322 /**
3323 * Dumps the ControllerActivityCounter if it has any data worth dumping.
3324 */
3325 private static void dumpControllerActivityProto(ProtoOutputStream proto, long fieldId,
3326 ControllerActivityCounter counter,
3327 int which) {
3328 if (!controllerActivityHasData(counter, which)) {
3329 return;
3330 }
3331
3332 final long cToken = proto.start(fieldId);
3333
3334 proto.write(ControllerActivityProto.IDLE_DURATION_MS,
3335 counter.getIdleTimeCounter().getCountLocked(which));
3336 proto.write(ControllerActivityProto.RX_DURATION_MS,
3337 counter.getRxTimeCounter().getCountLocked(which));
3338 proto.write(ControllerActivityProto.POWER_MAH,
3339 counter.getPowerCounter().getCountLocked(which) / (1000 * 60 * 60));
3340
3341 long tToken;
3342 LongCounter[] txCounters = counter.getTxTimeCounters();
3343 for (int i = 0; i < txCounters.length; ++i) {
3344 LongCounter c = txCounters[i];
3345 tToken = proto.start(ControllerActivityProto.TX);
3346 proto.write(ControllerActivityProto.TxLevel.LEVEL, i);
3347 proto.write(ControllerActivityProto.TxLevel.DURATION_MS, c.getCountLocked(which));
3348 proto.end(tToken);
3349 }
3350
3351 proto.end(cToken);
3352 }
3353
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003354 private final void printControllerActivityIfInteresting(PrintWriter pw, StringBuilder sb,
3355 String prefix, String controllerName,
3356 ControllerActivityCounter counter,
3357 int which) {
3358 if (controllerActivityHasData(counter, which)) {
3359 printControllerActivity(pw, sb, prefix, controllerName, counter, which);
3360 }
3361 }
3362
3363 private final void printControllerActivity(PrintWriter pw, StringBuilder sb, String prefix,
3364 String controllerName,
3365 ControllerActivityCounter counter, int which) {
3366 final long idleTimeMs = counter.getIdleTimeCounter().getCountLocked(which);
3367 final long rxTimeMs = counter.getRxTimeCounter().getCountLocked(which);
3368 final long powerDrainMaMs = counter.getPowerCounter().getCountLocked(which);
Siddharth Ray3c648c42017-10-02 17:30:58 -07003369 // Battery real time
3370 final long totalControllerActivityTimeMs
3371 = computeBatteryRealtime(SystemClock.elapsedRealtime() * 1000, which) / 1000;
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003372 long totalTxTimeMs = 0;
3373 for (LongCounter txState : counter.getTxTimeCounters()) {
3374 totalTxTimeMs += txState.getCountLocked(which);
3375 }
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003376
Siddharth Rayb50a6842017-12-14 15:15:28 -08003377 if (controllerName.equals(WIFI_CONTROLLER_NAME)) {
3378 final long scanTimeMs = counter.getScanTimeCounter().getCountLocked(which);
3379 sb.setLength(0);
3380 sb.append(prefix);
3381 sb.append(" ");
3382 sb.append(controllerName);
3383 sb.append(" Scan time: ");
3384 formatTimeMs(sb, scanTimeMs);
3385 sb.append("(");
3386 sb.append(formatRatioLocked(scanTimeMs, totalControllerActivityTimeMs));
3387 sb.append(")");
3388 pw.println(sb.toString());
Siddharth Rayed754702018-02-15 12:44:37 -08003389
3390 final long sleepTimeMs
3391 = totalControllerActivityTimeMs - (idleTimeMs + rxTimeMs + totalTxTimeMs);
3392 sb.setLength(0);
3393 sb.append(prefix);
3394 sb.append(" ");
3395 sb.append(controllerName);
3396 sb.append(" Sleep time: ");
3397 formatTimeMs(sb, sleepTimeMs);
3398 sb.append("(");
3399 sb.append(formatRatioLocked(sleepTimeMs, totalControllerActivityTimeMs));
3400 sb.append(")");
3401 pw.println(sb.toString());
Siddharth Rayb50a6842017-12-14 15:15:28 -08003402 }
3403
Siddharth Rayed754702018-02-15 12:44:37 -08003404 if (controllerName.equals(CELLULAR_CONTROLLER_NAME)) {
3405 final long sleepTimeMs = counter.getSleepTimeCounter().getCountLocked(which);
3406 sb.setLength(0);
3407 sb.append(prefix);
3408 sb.append(" ");
3409 sb.append(controllerName);
3410 sb.append(" Sleep time: ");
3411 formatTimeMs(sb, sleepTimeMs);
3412 sb.append("(");
3413 sb.append(formatRatioLocked(sleepTimeMs, totalControllerActivityTimeMs));
3414 sb.append(")");
3415 pw.println(sb.toString());
3416 }
Siddharth Ray3c648c42017-10-02 17:30:58 -07003417
3418 sb.setLength(0);
3419 sb.append(prefix);
3420 sb.append(" ");
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003421 sb.append(controllerName);
3422 sb.append(" Idle time: ");
3423 formatTimeMs(sb, idleTimeMs);
3424 sb.append("(");
Siddharth Ray3c648c42017-10-02 17:30:58 -07003425 sb.append(formatRatioLocked(idleTimeMs, totalControllerActivityTimeMs));
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003426 sb.append(")");
3427 pw.println(sb.toString());
3428
3429 sb.setLength(0);
3430 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07003431 sb.append(" ");
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003432 sb.append(controllerName);
3433 sb.append(" Rx time: ");
3434 formatTimeMs(sb, rxTimeMs);
3435 sb.append("(");
Siddharth Ray3c648c42017-10-02 17:30:58 -07003436 sb.append(formatRatioLocked(rxTimeMs, totalControllerActivityTimeMs));
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003437 sb.append(")");
3438 pw.println(sb.toString());
3439
3440 sb.setLength(0);
3441 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07003442 sb.append(" ");
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003443 sb.append(controllerName);
3444 sb.append(" Tx time: ");
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003445
Siddharth Ray3c648c42017-10-02 17:30:58 -07003446 String [] powerLevel;
3447 switch(controllerName) {
Siddharth Rayb50a6842017-12-14 15:15:28 -08003448 case CELLULAR_CONTROLLER_NAME:
Siddharth Ray3c648c42017-10-02 17:30:58 -07003449 powerLevel = new String[] {
3450 " less than 0dBm: ",
3451 " 0dBm to 8dBm: ",
3452 " 8dBm to 15dBm: ",
3453 " 15dBm to 20dBm: ",
3454 " above 20dBm: "};
3455 break;
3456 default:
3457 powerLevel = new String[] {"[0]", "[1]", "[2]", "[3]", "[4]"};
3458 break;
3459 }
3460 final int numTxLvls = Math.min(counter.getTxTimeCounters().length, powerLevel.length);
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003461 if (numTxLvls > 1) {
Siddharth Ray3c648c42017-10-02 17:30:58 -07003462 pw.println(sb.toString());
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003463 for (int lvl = 0; lvl < numTxLvls; lvl++) {
3464 final long txLvlTimeMs = counter.getTxTimeCounters()[lvl].getCountLocked(which);
3465 sb.setLength(0);
3466 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07003467 sb.append(" ");
3468 sb.append(powerLevel[lvl]);
3469 sb.append(" ");
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003470 formatTimeMs(sb, txLvlTimeMs);
3471 sb.append("(");
Siddharth Ray3c648c42017-10-02 17:30:58 -07003472 sb.append(formatRatioLocked(txLvlTimeMs, totalControllerActivityTimeMs));
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003473 sb.append(")");
3474 pw.println(sb.toString());
3475 }
Siddharth Ray3c648c42017-10-02 17:30:58 -07003476 } else {
3477 final long txLvlTimeMs = counter.getTxTimeCounters()[0].getCountLocked(which);
3478 formatTimeMs(sb, txLvlTimeMs);
3479 sb.append("(");
3480 sb.append(formatRatioLocked(txLvlTimeMs, totalControllerActivityTimeMs));
3481 sb.append(")");
3482 pw.println(sb.toString());
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003483 }
3484
Siddharth Ray3c648c42017-10-02 17:30:58 -07003485 if (powerDrainMaMs > 0) {
3486 sb.setLength(0);
3487 sb.append(prefix);
3488 sb.append(" ");
3489 sb.append(controllerName);
3490 sb.append(" Battery drain: ").append(
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003491 BatteryStatsHelper.makemAh(powerDrainMaMs / (double) (1000*60*60)));
Siddharth Ray3c648c42017-10-02 17:30:58 -07003492 sb.append("mAh");
3493 pw.println(sb.toString());
3494 }
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003495 }
3496
3497 /**
Dianne Hackbornd953c532014-08-16 18:17:38 -07003498 * Temporary for settings.
3499 */
3500 public final void dumpCheckinLocked(Context context, PrintWriter pw, int which, int reqUid) {
3501 dumpCheckinLocked(context, pw, which, reqUid, BatteryStatsHelper.checkWifiOnly(context));
3502 }
3503
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003504 /**
3505 * Checkin server version of dump to produce more compact, computer-readable log.
Bookatzc8c44962017-05-11 12:12:54 -07003506 *
Kweku Adams87b19ec2017-10-09 12:40:03 -07003507 * NOTE: all times are expressed in microseconds, unless specified otherwise.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003508 */
Dianne Hackbornd953c532014-08-16 18:17:38 -07003509 public final void dumpCheckinLocked(Context context, PrintWriter pw, int which, int reqUid,
3510 boolean wifiOnly) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003511 final long rawUptime = SystemClock.uptimeMillis() * 1000;
Kweku Adams87b19ec2017-10-09 12:40:03 -07003512 final long rawRealtimeMs = SystemClock.elapsedRealtime();
3513 final long rawRealtime = rawRealtimeMs * 1000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003514 final long batteryUptime = getBatteryUptime(rawUptime);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003515 final long whichBatteryUptime = computeBatteryUptime(rawUptime, which);
3516 final long whichBatteryRealtime = computeBatteryRealtime(rawRealtime, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003517 final long whichBatteryScreenOffUptime = computeBatteryScreenOffUptime(rawUptime, which);
3518 final long whichBatteryScreenOffRealtime = computeBatteryScreenOffRealtime(rawRealtime,
3519 which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003520 final long totalRealtime = computeRealtime(rawRealtime, which);
3521 final long totalUptime = computeUptime(rawUptime, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003522 final long screenOnTime = getScreenOnTime(rawRealtime, which);
Mike Mac2f518a2017-09-19 16:06:03 -07003523 final long screenDozeTime = getScreenDozeTime(rawRealtime, which);
Jeff Browne95c3cd2014-05-02 16:59:26 -07003524 final long interactiveTime = getInteractiveTime(rawRealtime, which);
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07003525 final long powerSaveModeEnabledTime = getPowerSaveModeEnabledTime(rawRealtime, which);
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003526 final long deviceIdleModeLightTime = getDeviceIdleModeTime(DEVICE_IDLE_MODE_LIGHT,
3527 rawRealtime, which);
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07003528 final long deviceIdleModeFullTime = getDeviceIdleModeTime(DEVICE_IDLE_MODE_DEEP,
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003529 rawRealtime, which);
3530 final long deviceLightIdlingTime = getDeviceIdlingTime(DEVICE_IDLE_MODE_LIGHT,
3531 rawRealtime, which);
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07003532 final long deviceIdlingTime = getDeviceIdlingTime(DEVICE_IDLE_MODE_DEEP,
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003533 rawRealtime, which);
Dianne Hackborn1e01d162014-12-04 17:46:42 -08003534 final int connChanges = getNumConnectivityChange(which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003535 final long phoneOnTime = getPhoneOnTime(rawRealtime, which);
Kweku Adams87b19ec2017-10-09 12:40:03 -07003536 final long dischargeCount = getUahDischarge(which);
3537 final long dischargeScreenOffCount = getUahDischargeScreenOff(which);
3538 final long dischargeScreenDozeCount = getUahDischargeScreenDoze(which);
Mike Ma15313c92017-11-15 17:58:21 -08003539 final long dischargeLightDozeCount = getUahDischargeLightDoze(which);
3540 final long dischargeDeepDozeCount = getUahDischargeDeepDoze(which);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07003541
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003542 final StringBuilder sb = new StringBuilder(128);
Bookatzc8c44962017-05-11 12:12:54 -07003543
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003544 final SparseArray<? extends Uid> uidStats = getUidStats();
Evan Millar22ac0432009-03-31 11:33:18 -07003545 final int NU = uidStats.size();
Bookatzc8c44962017-05-11 12:12:54 -07003546
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003547 final String category = STAT_NAMES[which];
Jeff Sharkey3e013e82013-04-25 14:48:19 -07003548
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003549 // Dump "battery" stat
Jocelyn Dangc627d102017-04-14 13:15:14 -07003550 dumpLine(pw, 0 /* uid */, category, BATTERY_DATA,
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07003551 which == STATS_SINCE_CHARGED ? getStartCount() : "N/A",
Dianne Hackborn617f8772009-03-31 15:04:46 -07003552 whichBatteryRealtime / 1000, whichBatteryUptime / 1000,
Dianne Hackborn5f4a5f92014-01-24 16:59:34 -08003553 totalRealtime / 1000, totalUptime / 1000,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003554 getStartClockTime(),
Adam Lesinskif9b20a92016-06-17 17:30:01 -07003555 whichBatteryScreenOffRealtime / 1000, whichBatteryScreenOffUptime / 1000,
Jocelyn Dangc627d102017-04-14 13:15:14 -07003556 getEstimatedBatteryCapacity(),
Mike Mac2f518a2017-09-19 16:06:03 -07003557 getMinLearnedBatteryCapacity(), getMaxLearnedBatteryCapacity(),
3558 screenDozeTime / 1000);
Adam Lesinski67c134f2016-06-10 15:15:08 -07003559
Bookatzc8c44962017-05-11 12:12:54 -07003560
Ahmed ElArabawyf88571f2017-11-28 12:18:10 -08003561 // Calculate wakelock times across all uids.
Evan Millar22ac0432009-03-31 11:33:18 -07003562 long fullWakeLockTimeTotal = 0;
3563 long partialWakeLockTimeTotal = 0;
Bookatzc8c44962017-05-11 12:12:54 -07003564
Evan Millar22ac0432009-03-31 11:33:18 -07003565 for (int iu = 0; iu < NU; iu++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003566 final Uid u = uidStats.valueAt(iu);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07003567
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003568 final ArrayMap<String, ? extends BatteryStats.Uid.Wakelock> wakelocks
3569 = u.getWakelockStats();
3570 for (int iw=wakelocks.size()-1; iw>=0; iw--) {
3571 final Uid.Wakelock wl = wakelocks.valueAt(iw);
Evan Millar22ac0432009-03-31 11:33:18 -07003572
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003573 final Timer fullWakeTimer = wl.getWakeTime(WAKE_TYPE_FULL);
3574 if (fullWakeTimer != null) {
3575 fullWakeLockTimeTotal += fullWakeTimer.getTotalTimeLocked(rawRealtime,
3576 which);
3577 }
3578
3579 final Timer partialWakeTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
3580 if (partialWakeTimer != null) {
3581 partialWakeLockTimeTotal += partialWakeTimer.getTotalTimeLocked(
3582 rawRealtime, which);
Evan Millar22ac0432009-03-31 11:33:18 -07003583 }
3584 }
3585 }
Adam Lesinskie283d332015-04-16 12:29:25 -07003586
3587 // Dump network stats
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003588 final long mobileRxTotalBytes = getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which);
3589 final long mobileTxTotalBytes = getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which);
3590 final long wifiRxTotalBytes = getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which);
3591 final long wifiTxTotalBytes = getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which);
3592 final long mobileRxTotalPackets = getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which);
3593 final long mobileTxTotalPackets = getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which);
3594 final long wifiRxTotalPackets = getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which);
3595 final long wifiTxTotalPackets = getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which);
Adam Lesinski9f55cc72016-01-27 20:42:14 -08003596 final long btRxTotalBytes = getNetworkActivityBytes(NETWORK_BT_RX_DATA, which);
3597 final long btTxTotalBytes = getNetworkActivityBytes(NETWORK_BT_TX_DATA, which);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003598 dumpLine(pw, 0 /* uid */, category, GLOBAL_NETWORK_DATA,
3599 mobileRxTotalBytes, mobileTxTotalBytes, wifiRxTotalBytes, wifiTxTotalBytes,
Adam Lesinski9f55cc72016-01-27 20:42:14 -08003600 mobileRxTotalPackets, mobileTxTotalPackets, wifiRxTotalPackets, wifiTxTotalPackets,
3601 btRxTotalBytes, btTxTotalBytes);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003602
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003603 // Dump Modem controller stats
3604 dumpControllerActivityLine(pw, 0 /* uid */, category, GLOBAL_MODEM_CONTROLLER_DATA,
3605 getModemControllerActivity(), which);
3606
Adam Lesinskie283d332015-04-16 12:29:25 -07003607 // Dump Wifi controller stats
3608 final long wifiOnTime = getWifiOnTime(rawRealtime, which);
3609 final long wifiRunningTime = getGlobalWifiRunningTime(rawRealtime, which);
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003610 dumpLine(pw, 0 /* uid */, category, GLOBAL_WIFI_DATA, wifiOnTime / 1000,
Adam Lesinski2208e742016-02-19 12:53:31 -08003611 wifiRunningTime / 1000, /* legacy fields follow, keep at 0 */ 0, 0, 0);
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003612
3613 dumpControllerActivityLine(pw, 0 /* uid */, category, GLOBAL_WIFI_CONTROLLER_DATA,
3614 getWifiControllerActivity(), which);
Adam Lesinskie283d332015-04-16 12:29:25 -07003615
3616 // Dump Bluetooth controller stats
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003617 dumpControllerActivityLine(pw, 0 /* uid */, category, GLOBAL_BLUETOOTH_CONTROLLER_DATA,
3618 getBluetoothControllerActivity(), which);
Adam Lesinskie283d332015-04-16 12:29:25 -07003619
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003620 // Dump misc stats
3621 dumpLine(pw, 0 /* uid */, category, MISC_DATA,
Adam Lesinskie283d332015-04-16 12:29:25 -07003622 screenOnTime / 1000, phoneOnTime / 1000,
Ashish Sharma213bb2f2014-07-07 17:14:52 -07003623 fullWakeLockTimeTotal / 1000, partialWakeLockTimeTotal / 1000,
Adam Lesinskie283d332015-04-16 12:29:25 -07003624 getMobileRadioActiveTime(rawRealtime, which) / 1000,
Ashish Sharma213bb2f2014-07-07 17:14:52 -07003625 getMobileRadioActiveAdjustedTime(which) / 1000, interactiveTime / 1000,
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003626 powerSaveModeEnabledTime / 1000, connChanges, deviceIdleModeFullTime / 1000,
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07003627 getDeviceIdleModeCount(DEVICE_IDLE_MODE_DEEP, which), deviceIdlingTime / 1000,
3628 getDeviceIdlingCount(DEVICE_IDLE_MODE_DEEP, which),
Adam Lesinski782327b2015-07-30 16:36:29 -07003629 getMobileRadioActiveCount(which),
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003630 getMobileRadioActiveUnknownTime(which) / 1000, deviceIdleModeLightTime / 1000,
3631 getDeviceIdleModeCount(DEVICE_IDLE_MODE_LIGHT, which), deviceLightIdlingTime / 1000,
3632 getDeviceIdlingCount(DEVICE_IDLE_MODE_LIGHT, which),
3633 getLongestDeviceIdleModeTime(DEVICE_IDLE_MODE_LIGHT),
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07003634 getLongestDeviceIdleModeTime(DEVICE_IDLE_MODE_DEEP));
Bookatzc8c44962017-05-11 12:12:54 -07003635
Dianne Hackborn617f8772009-03-31 15:04:46 -07003636 // Dump screen brightness stats
3637 Object[] args = new Object[NUM_SCREEN_BRIGHTNESS_BINS];
3638 for (int i=0; i<NUM_SCREEN_BRIGHTNESS_BINS; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003639 args[i] = getScreenBrightnessTime(i, rawRealtime, which) / 1000;
Dianne Hackborn617f8772009-03-31 15:04:46 -07003640 }
3641 dumpLine(pw, 0 /* uid */, category, SCREEN_BRIGHTNESS_DATA, args);
Bookatzc8c44962017-05-11 12:12:54 -07003642
Dianne Hackborn627bba72009-03-24 22:32:56 -07003643 // Dump signal strength stats
Wink Saville52840902011-02-18 12:40:47 -08003644 args = new Object[SignalStrength.NUM_SIGNAL_STRENGTH_BINS];
3645 for (int i=0; i<SignalStrength.NUM_SIGNAL_STRENGTH_BINS; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003646 args[i] = getPhoneSignalStrengthTime(i, rawRealtime, which) / 1000;
Dianne Hackborn627bba72009-03-24 22:32:56 -07003647 }
Dianne Hackborn617f8772009-03-31 15:04:46 -07003648 dumpLine(pw, 0 /* uid */, category, SIGNAL_STRENGTH_TIME_DATA, args);
Amith Yamasanif37447b2009-10-08 18:28:01 -07003649 dumpLine(pw, 0 /* uid */, category, SIGNAL_SCANNING_TIME_DATA,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003650 getPhoneSignalScanningTime(rawRealtime, which) / 1000);
Wink Saville52840902011-02-18 12:40:47 -08003651 for (int i=0; i<SignalStrength.NUM_SIGNAL_STRENGTH_BINS; i++) {
Dianne Hackborn617f8772009-03-31 15:04:46 -07003652 args[i] = getPhoneSignalStrengthCount(i, which);
3653 }
3654 dumpLine(pw, 0 /* uid */, category, SIGNAL_STRENGTH_COUNT_DATA, args);
Dianne Hackborne13c4c02014-02-11 17:18:35 -08003655
Dianne Hackborn627bba72009-03-24 22:32:56 -07003656 // Dump network type stats
3657 args = new Object[NUM_DATA_CONNECTION_TYPES];
3658 for (int i=0; i<NUM_DATA_CONNECTION_TYPES; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003659 args[i] = getPhoneDataConnectionTime(i, rawRealtime, which) / 1000;
Dianne Hackborn627bba72009-03-24 22:32:56 -07003660 }
Dianne Hackborn617f8772009-03-31 15:04:46 -07003661 dumpLine(pw, 0 /* uid */, category, DATA_CONNECTION_TIME_DATA, args);
3662 for (int i=0; i<NUM_DATA_CONNECTION_TYPES; i++) {
3663 args[i] = getPhoneDataConnectionCount(i, which);
3664 }
3665 dumpLine(pw, 0 /* uid */, category, DATA_CONNECTION_COUNT_DATA, args);
Dianne Hackbornca1bf212014-02-14 14:18:36 -08003666
3667 // Dump wifi state stats
3668 args = new Object[NUM_WIFI_STATES];
3669 for (int i=0; i<NUM_WIFI_STATES; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003670 args[i] = getWifiStateTime(i, rawRealtime, which) / 1000;
Dianne Hackbornca1bf212014-02-14 14:18:36 -08003671 }
3672 dumpLine(pw, 0 /* uid */, category, WIFI_STATE_TIME_DATA, args);
3673 for (int i=0; i<NUM_WIFI_STATES; i++) {
3674 args[i] = getWifiStateCount(i, which);
3675 }
3676 dumpLine(pw, 0 /* uid */, category, WIFI_STATE_COUNT_DATA, args);
3677
Dianne Hackborn3251b902014-06-20 14:40:53 -07003678 // Dump wifi suppl state stats
3679 args = new Object[NUM_WIFI_SUPPL_STATES];
3680 for (int i=0; i<NUM_WIFI_SUPPL_STATES; i++) {
3681 args[i] = getWifiSupplStateTime(i, rawRealtime, which) / 1000;
3682 }
3683 dumpLine(pw, 0 /* uid */, category, WIFI_SUPPL_STATE_TIME_DATA, args);
3684 for (int i=0; i<NUM_WIFI_SUPPL_STATES; i++) {
3685 args[i] = getWifiSupplStateCount(i, which);
3686 }
3687 dumpLine(pw, 0 /* uid */, category, WIFI_SUPPL_STATE_COUNT_DATA, args);
3688
3689 // Dump wifi signal strength stats
3690 args = new Object[NUM_WIFI_SIGNAL_STRENGTH_BINS];
3691 for (int i=0; i<NUM_WIFI_SIGNAL_STRENGTH_BINS; i++) {
3692 args[i] = getWifiSignalStrengthTime(i, rawRealtime, which) / 1000;
3693 }
3694 dumpLine(pw, 0 /* uid */, category, WIFI_SIGNAL_STRENGTH_TIME_DATA, args);
3695 for (int i=0; i<NUM_WIFI_SIGNAL_STRENGTH_BINS; i++) {
3696 args[i] = getWifiSignalStrengthCount(i, which);
3697 }
3698 dumpLine(pw, 0 /* uid */, category, WIFI_SIGNAL_STRENGTH_COUNT_DATA, args);
3699
Ahmed ElArabawyddd09692017-10-30 17:58:29 -07003700 // Dump Multicast total stats
Ahmed ElArabawyf88571f2017-11-28 12:18:10 -08003701 final long multicastWakeLockTimeTotalMicros =
3702 getWifiMulticastWakelockTime(rawRealtime, which);
3703 final int multicastWakeLockCountTotal = getWifiMulticastWakelockCount(which);
Ahmed ElArabawyddd09692017-10-30 17:58:29 -07003704 dumpLine(pw, 0 /* uid */, category, WIFI_MULTICAST_TOTAL_DATA,
3705 multicastWakeLockTimeTotalMicros / 1000,
3706 multicastWakeLockCountTotal);
3707
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07003708 if (which == STATS_SINCE_UNPLUGGED) {
Dianne Hackborne13c4c02014-02-11 17:18:35 -08003709 dumpLine(pw, 0 /* uid */, category, BATTERY_LEVEL_DATA, getDischargeStartLevel(),
Evan Millar633a1742009-04-02 16:36:33 -07003710 getDischargeCurrentLevel());
The Android Open Source Project10592532009-03-18 17:39:46 -07003711 }
Bookatzc8c44962017-05-11 12:12:54 -07003712
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08003713 if (which == STATS_SINCE_UNPLUGGED) {
3714 dumpLine(pw, 0 /* uid */, category, BATTERY_DISCHARGE_DATA,
3715 getDischargeStartLevel()-getDischargeCurrentLevel(),
3716 getDischargeStartLevel()-getDischargeCurrentLevel(),
Adam Lesinski67c134f2016-06-10 15:15:08 -07003717 getDischargeAmountScreenOn(), getDischargeAmountScreenOff(),
Mike Mac2f518a2017-09-19 16:06:03 -07003718 dischargeCount / 1000, dischargeScreenOffCount / 1000,
Mike Ma15313c92017-11-15 17:58:21 -08003719 getDischargeAmountScreenDoze(), dischargeScreenDozeCount / 1000,
3720 dischargeLightDozeCount / 1000, dischargeDeepDozeCount / 1000);
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08003721 } else {
3722 dumpLine(pw, 0 /* uid */, category, BATTERY_DISCHARGE_DATA,
3723 getLowDischargeAmountSinceCharge(), getHighDischargeAmountSinceCharge(),
Dianne Hackborncd0e3352014-08-07 17:08:09 -07003724 getDischargeAmountScreenOnSinceCharge(),
Adam Lesinski67c134f2016-06-10 15:15:08 -07003725 getDischargeAmountScreenOffSinceCharge(),
Mike Mac2f518a2017-09-19 16:06:03 -07003726 dischargeCount / 1000, dischargeScreenOffCount / 1000,
Mike Ma15313c92017-11-15 17:58:21 -08003727 getDischargeAmountScreenDozeSinceCharge(), dischargeScreenDozeCount / 1000,
3728 dischargeLightDozeCount / 1000, dischargeDeepDozeCount / 1000);
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08003729 }
Bookatzc8c44962017-05-11 12:12:54 -07003730
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003731 if (reqUid < 0) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003732 final Map<String, ? extends Timer> kernelWakelocks = getKernelWakelockStats();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003733 if (kernelWakelocks.size() > 0) {
Dianne Hackborna1bd7922014-03-21 11:07:11 -07003734 for (Map.Entry<String, ? extends Timer> ent : kernelWakelocks.entrySet()) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003735 sb.setLength(0);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003736 printWakeLockCheckin(sb, ent.getValue(), rawRealtime, null, which, "");
Kweku Adamse0dd9c12017-03-08 08:12:15 -08003737 dumpLine(pw, 0 /* uid */, category, KERNEL_WAKELOCK_DATA,
3738 "\"" + ent.getKey() + "\"", sb.toString());
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003739 }
Evan Millarc64edde2009-04-18 12:26:32 -07003740 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003741 final Map<String, ? extends Timer> wakeupReasons = getWakeupReasonStats();
Dianne Hackborna1bd7922014-03-21 11:07:11 -07003742 if (wakeupReasons.size() > 0) {
Dianne Hackbornc3940bc2014-09-05 15:50:25 -07003743 for (Map.Entry<String, ? extends Timer> ent : wakeupReasons.entrySet()) {
3744 // Not doing the regular wake lock formatting to remain compatible
3745 // with the old checkin format.
3746 long totalTimeMicros = ent.getValue().getTotalTimeLocked(rawRealtime, which);
3747 int count = ent.getValue().getCountLocked(which);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07003748 dumpLine(pw, 0 /* uid */, category, WAKEUP_REASON_DATA,
Dianne Hackbornc3940bc2014-09-05 15:50:25 -07003749 "\"" + ent.getKey() + "\"", (totalTimeMicros + 500) / 1000, count);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07003750 }
3751 }
Evan Millarc64edde2009-04-18 12:26:32 -07003752 }
Bookatzc8c44962017-05-11 12:12:54 -07003753
Bookatz50df7112017-08-04 14:53:26 -07003754 final Map<String, ? extends Timer> rpmStats = getRpmStats();
3755 final Map<String, ? extends Timer> screenOffRpmStats = getScreenOffRpmStats();
3756 if (rpmStats.size() > 0) {
3757 for (Map.Entry<String, ? extends Timer> ent : rpmStats.entrySet()) {
3758 sb.setLength(0);
3759 Timer totalTimer = ent.getValue();
3760 long timeMs = (totalTimer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000;
3761 int count = totalTimer.getCountLocked(which);
3762 Timer screenOffTimer = screenOffRpmStats.get(ent.getKey());
3763 long screenOffTimeMs = screenOffTimer != null
3764 ? (screenOffTimer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000 : 0;
3765 int screenOffCount = screenOffTimer != null
3766 ? screenOffTimer.getCountLocked(which) : 0;
Bookatz82b341172017-09-07 19:06:08 -07003767 if (SCREEN_OFF_RPM_STATS_ENABLED) {
3768 dumpLine(pw, 0 /* uid */, category, RESOURCE_POWER_MANAGER_DATA,
3769 "\"" + ent.getKey() + "\"", timeMs, count, screenOffTimeMs,
3770 screenOffCount);
3771 } else {
3772 dumpLine(pw, 0 /* uid */, category, RESOURCE_POWER_MANAGER_DATA,
3773 "\"" + ent.getKey() + "\"", timeMs, count);
3774 }
Bookatz50df7112017-08-04 14:53:26 -07003775 }
3776 }
3777
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003778 final BatteryStatsHelper helper = new BatteryStatsHelper(context, false, wifiOnly);
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003779 helper.create(this);
3780 helper.refreshStats(which, UserHandle.USER_ALL);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003781 final List<BatterySipper> sippers = helper.getUsageList();
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003782 if (sippers != null && sippers.size() > 0) {
3783 dumpLine(pw, 0 /* uid */, category, POWER_USE_SUMMARY_DATA,
3784 BatteryStatsHelper.makemAh(helper.getPowerProfile().getBatteryCapacity()),
Dianne Hackborn099bc622014-01-22 13:39:16 -08003785 BatteryStatsHelper.makemAh(helper.getComputedPower()),
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003786 BatteryStatsHelper.makemAh(helper.getMinDrainedPower()),
3787 BatteryStatsHelper.makemAh(helper.getMaxDrainedPower()));
Kweku Adams87b19ec2017-10-09 12:40:03 -07003788 int uid = 0;
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003789 for (int i=0; i<sippers.size(); i++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003790 final BatterySipper bs = sippers.get(i);
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003791 String label;
3792 switch (bs.drainType) {
3793 case IDLE:
3794 label="idle";
3795 break;
3796 case CELL:
3797 label="cell";
3798 break;
3799 case PHONE:
3800 label="phone";
3801 break;
3802 case WIFI:
3803 label="wifi";
3804 break;
3805 case BLUETOOTH:
3806 label="blue";
3807 break;
3808 case SCREEN:
3809 label="scrn";
3810 break;
Dianne Hackbornabc7c492014-06-30 16:57:46 -07003811 case FLASHLIGHT:
3812 label="flashlight";
3813 break;
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003814 case APP:
3815 uid = bs.uidObj.getUid();
3816 label = "uid";
3817 break;
3818 case USER:
3819 uid = UserHandle.getUid(bs.userId, 0);
3820 label = "user";
3821 break;
3822 case UNACCOUNTED:
3823 label = "unacc";
3824 break;
3825 case OVERCOUNTED:
3826 label = "over";
3827 break;
Ruben Brunk5b1308f2015-06-03 18:49:27 -07003828 case CAMERA:
3829 label = "camera";
3830 break;
Kweku Adams87b19ec2017-10-09 12:40:03 -07003831 case MEMORY:
3832 label = "memory";
3833 break;
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003834 default:
3835 label = "???";
3836 }
3837 dumpLine(pw, uid, category, POWER_USE_ITEM_DATA, label,
Bookatz17d7d9d2017-06-08 14:50:46 -07003838 BatteryStatsHelper.makemAh(bs.totalPowerMah),
3839 bs.shouldHide ? 1 : 0,
3840 BatteryStatsHelper.makemAh(bs.screenPowerMah),
3841 BatteryStatsHelper.makemAh(bs.proportionalSmearMah));
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003842 }
3843 }
3844
Sudheer Shanka9b735c52017-05-09 18:26:18 -07003845 final long[] cpuFreqs = getCpuFreqs();
3846 if (cpuFreqs != null) {
3847 sb.setLength(0);
3848 for (int i = 0; i < cpuFreqs.length; ++i) {
3849 sb.append((i == 0 ? "" : ",") + cpuFreqs[i]);
3850 }
3851 dumpLine(pw, 0 /* uid */, category, GLOBAL_CPU_FREQ_DATA, sb.toString());
3852 }
3853
Kweku Adams87b19ec2017-10-09 12:40:03 -07003854 // Dump stats per UID.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003855 for (int iu = 0; iu < NU; iu++) {
3856 final int uid = uidStats.keyAt(iu);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003857 if (reqUid >= 0 && uid != reqUid) {
3858 continue;
3859 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003860 final Uid u = uidStats.valueAt(iu);
Adam Lesinskie283d332015-04-16 12:29:25 -07003861
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003862 // Dump Network stats per uid, if any
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003863 final long mobileBytesRx = u.getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which);
3864 final long mobileBytesTx = u.getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which);
3865 final long wifiBytesRx = u.getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which);
3866 final long wifiBytesTx = u.getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which);
3867 final long mobilePacketsRx = u.getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which);
3868 final long mobilePacketsTx = u.getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which);
3869 final long mobileActiveTime = u.getMobileRadioActiveTime(which);
3870 final int mobileActiveCount = u.getMobileRadioActiveCount(which);
Adam Lesinski5f056f62016-07-14 16:56:08 -07003871 final long mobileWakeup = u.getMobileRadioApWakeupCount(which);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003872 final long wifiPacketsRx = u.getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which);
3873 final long wifiPacketsTx = u.getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which);
Adam Lesinski5f056f62016-07-14 16:56:08 -07003874 final long wifiWakeup = u.getWifiRadioApWakeupCount(which);
Adam Lesinski9f55cc72016-01-27 20:42:14 -08003875 final long btBytesRx = u.getNetworkActivityBytes(NETWORK_BT_RX_DATA, which);
3876 final long btBytesTx = u.getNetworkActivityBytes(NETWORK_BT_TX_DATA, which);
Amith Yamasani59fe8412017-03-03 16:28:52 -08003877 // Background data transfers
3878 final long mobileBytesBgRx = u.getNetworkActivityBytes(NETWORK_MOBILE_BG_RX_DATA,
3879 which);
3880 final long mobileBytesBgTx = u.getNetworkActivityBytes(NETWORK_MOBILE_BG_TX_DATA,
3881 which);
3882 final long wifiBytesBgRx = u.getNetworkActivityBytes(NETWORK_WIFI_BG_RX_DATA, which);
3883 final long wifiBytesBgTx = u.getNetworkActivityBytes(NETWORK_WIFI_BG_TX_DATA, which);
3884 final long mobilePacketsBgRx = u.getNetworkActivityPackets(NETWORK_MOBILE_BG_RX_DATA,
3885 which);
3886 final long mobilePacketsBgTx = u.getNetworkActivityPackets(NETWORK_MOBILE_BG_TX_DATA,
3887 which);
3888 final long wifiPacketsBgRx = u.getNetworkActivityPackets(NETWORK_WIFI_BG_RX_DATA,
3889 which);
3890 final long wifiPacketsBgTx = u.getNetworkActivityPackets(NETWORK_WIFI_BG_TX_DATA,
3891 which);
3892
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003893 if (mobileBytesRx > 0 || mobileBytesTx > 0 || wifiBytesRx > 0 || wifiBytesTx > 0
3894 || mobilePacketsRx > 0 || mobilePacketsTx > 0 || wifiPacketsRx > 0
Adam Lesinski9f55cc72016-01-27 20:42:14 -08003895 || wifiPacketsTx > 0 || mobileActiveTime > 0 || mobileActiveCount > 0
Amith Yamasani59fe8412017-03-03 16:28:52 -08003896 || btBytesRx > 0 || btBytesTx > 0 || mobileWakeup > 0 || wifiWakeup > 0
3897 || mobileBytesBgRx > 0 || mobileBytesBgTx > 0 || wifiBytesBgRx > 0
3898 || wifiBytesBgTx > 0
3899 || mobilePacketsBgRx > 0 || mobilePacketsBgTx > 0 || wifiPacketsBgRx > 0
3900 || wifiPacketsBgTx > 0) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003901 dumpLine(pw, uid, category, NETWORK_DATA, mobileBytesRx, mobileBytesTx,
3902 wifiBytesRx, wifiBytesTx,
3903 mobilePacketsRx, mobilePacketsTx,
Dianne Hackbornd45665b2014-02-26 12:35:32 -08003904 wifiPacketsRx, wifiPacketsTx,
Adam Lesinski9f55cc72016-01-27 20:42:14 -08003905 mobileActiveTime, mobileActiveCount,
Amith Yamasani59fe8412017-03-03 16:28:52 -08003906 btBytesRx, btBytesTx, mobileWakeup, wifiWakeup,
3907 mobileBytesBgRx, mobileBytesBgTx, wifiBytesBgRx, wifiBytesBgTx,
3908 mobilePacketsBgRx, mobilePacketsBgTx, wifiPacketsBgRx, wifiPacketsBgTx
3909 );
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07003910 }
3911
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003912 // Dump modem controller data, per UID.
3913 dumpControllerActivityLine(pw, uid, category, MODEM_CONTROLLER_DATA,
3914 u.getModemControllerActivity(), which);
3915
3916 // Dump Wifi controller data, per UID.
Adam Lesinskie283d332015-04-16 12:29:25 -07003917 final long fullWifiLockOnTime = u.getFullWifiLockTime(rawRealtime, which);
3918 final long wifiScanTime = u.getWifiScanTime(rawRealtime, which);
3919 final int wifiScanCount = u.getWifiScanCount(which);
Bookatz867c0d72017-03-07 18:23:42 -08003920 final int wifiScanCountBg = u.getWifiScanBackgroundCount(which);
3921 // Note that 'ActualTime' are unpooled and always since reset (regardless of 'which')
Bookatzce49aca2017-04-03 09:47:05 -07003922 final long wifiScanActualTimeMs = (u.getWifiScanActualTime(rawRealtime) + 500) / 1000;
3923 final long wifiScanActualTimeMsBg = (u.getWifiScanBackgroundTime(rawRealtime) + 500)
3924 / 1000;
Adam Lesinskie283d332015-04-16 12:29:25 -07003925 final long uidWifiRunningTime = u.getWifiRunningTime(rawRealtime, which);
Dianne Hackborn62793e42015-03-09 11:15:41 -07003926 if (fullWifiLockOnTime != 0 || wifiScanTime != 0 || wifiScanCount != 0
Bookatzce49aca2017-04-03 09:47:05 -07003927 || wifiScanCountBg != 0 || wifiScanActualTimeMs != 0
3928 || wifiScanActualTimeMsBg != 0 || uidWifiRunningTime != 0) {
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003929 dumpLine(pw, uid, category, WIFI_DATA, fullWifiLockOnTime, wifiScanTime,
3930 uidWifiRunningTime, wifiScanCount,
Bookatz867c0d72017-03-07 18:23:42 -08003931 /* legacy fields follow, keep at 0 */ 0, 0, 0,
Bookatzce49aca2017-04-03 09:47:05 -07003932 wifiScanCountBg, wifiScanActualTimeMs, wifiScanActualTimeMsBg);
The Android Open Source Project10592532009-03-18 17:39:46 -07003933 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003934
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003935 dumpControllerActivityLine(pw, uid, category, WIFI_CONTROLLER_DATA,
3936 u.getWifiControllerActivity(), which);
3937
Bookatz867c0d72017-03-07 18:23:42 -08003938 final Timer bleTimer = u.getBluetoothScanTimer();
3939 if (bleTimer != null) {
3940 // Convert from microseconds to milliseconds with rounding
3941 final long totalTime = (bleTimer.getTotalTimeLocked(rawRealtime, which) + 500)
3942 / 1000;
3943 if (totalTime != 0) {
3944 final int count = bleTimer.getCountLocked(which);
3945 final Timer bleTimerBg = u.getBluetoothScanBackgroundTimer();
3946 final int countBg = bleTimerBg != null ? bleTimerBg.getCountLocked(which) : 0;
Bookatz867c0d72017-03-07 18:23:42 -08003947 // 'actualTime' are unpooled and always since reset (regardless of 'which')
3948 final long actualTime = bleTimer.getTotalDurationMsLocked(rawRealtimeMs);
3949 final long actualTimeBg = bleTimerBg != null ?
3950 bleTimerBg.getTotalDurationMsLocked(rawRealtimeMs) : 0;
Bookatzb1f04f32017-05-19 13:57:32 -07003951 // Result counters
Bookatz956f36bf2017-04-28 09:48:17 -07003952 final int resultCount = u.getBluetoothScanResultCounter() != null ?
3953 u.getBluetoothScanResultCounter().getCountLocked(which) : 0;
Bookatzb1f04f32017-05-19 13:57:32 -07003954 final int resultCountBg = u.getBluetoothScanResultBgCounter() != null ?
3955 u.getBluetoothScanResultBgCounter().getCountLocked(which) : 0;
3956 // Unoptimized scan timer. Unpooled and since reset (regardless of 'which').
3957 final Timer unoptimizedScanTimer = u.getBluetoothUnoptimizedScanTimer();
3958 final long unoptimizedScanTotalTime = unoptimizedScanTimer != null ?
3959 unoptimizedScanTimer.getTotalDurationMsLocked(rawRealtimeMs) : 0;
3960 final long unoptimizedScanMaxTime = unoptimizedScanTimer != null ?
3961 unoptimizedScanTimer.getMaxDurationMsLocked(rawRealtimeMs) : 0;
3962 // Unoptimized bg scan timer. Unpooled and since reset (regardless of 'which').
3963 final Timer unoptimizedScanTimerBg =
3964 u.getBluetoothUnoptimizedScanBackgroundTimer();
3965 final long unoptimizedScanTotalTimeBg = unoptimizedScanTimerBg != null ?
3966 unoptimizedScanTimerBg.getTotalDurationMsLocked(rawRealtimeMs) : 0;
3967 final long unoptimizedScanMaxTimeBg = unoptimizedScanTimerBg != null ?
3968 unoptimizedScanTimerBg.getMaxDurationMsLocked(rawRealtimeMs) : 0;
3969
Bookatz867c0d72017-03-07 18:23:42 -08003970 dumpLine(pw, uid, category, BLUETOOTH_MISC_DATA, totalTime, count,
Bookatzb1f04f32017-05-19 13:57:32 -07003971 countBg, actualTime, actualTimeBg, resultCount, resultCountBg,
3972 unoptimizedScanTotalTime, unoptimizedScanTotalTimeBg,
3973 unoptimizedScanMaxTime, unoptimizedScanMaxTimeBg);
Bookatz867c0d72017-03-07 18:23:42 -08003974 }
3975 }
Adam Lesinskid9b99be2016-03-30 16:58:51 -07003976
Adam Lesinski9f55cc72016-01-27 20:42:14 -08003977 dumpControllerActivityLine(pw, uid, category, BLUETOOTH_CONTROLLER_DATA,
3978 u.getBluetoothControllerActivity(), which);
3979
Dianne Hackborn617f8772009-03-31 15:04:46 -07003980 if (u.hasUserActivity()) {
3981 args = new Object[Uid.NUM_USER_ACTIVITY_TYPES];
3982 boolean hasData = false;
3983 for (int i=0; i<Uid.NUM_USER_ACTIVITY_TYPES; i++) {
3984 int val = u.getUserActivityCount(i, which);
3985 args[i] = val;
3986 if (val != 0) hasData = true;
3987 }
3988 if (hasData) {
Ashish Sharmacba12152014-07-07 17:14:52 -07003989 dumpLine(pw, uid /* uid */, category, USER_ACTIVITY_DATA, args);
Dianne Hackborn617f8772009-03-31 15:04:46 -07003990 }
3991 }
Bookatzc8c44962017-05-11 12:12:54 -07003992
3993 if (u.getAggregatedPartialWakelockTimer() != null) {
3994 final Timer timer = u.getAggregatedPartialWakelockTimer();
Bookatz6d799932017-06-07 12:30:07 -07003995 // Times are since reset (regardless of 'which')
3996 final long totTimeMs = timer.getTotalDurationMsLocked(rawRealtimeMs);
Bookatzc8c44962017-05-11 12:12:54 -07003997 final Timer bgTimer = timer.getSubTimer();
3998 final long bgTimeMs = bgTimer != null ?
Bookatz6d799932017-06-07 12:30:07 -07003999 bgTimer.getTotalDurationMsLocked(rawRealtimeMs) : 0;
Bookatzc8c44962017-05-11 12:12:54 -07004000 dumpLine(pw, uid, category, AGGREGATED_WAKELOCK_DATA, totTimeMs, bgTimeMs);
4001 }
4002
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004003 final ArrayMap<String, ? extends Uid.Wakelock> wakelocks = u.getWakelockStats();
4004 for (int iw=wakelocks.size()-1; iw>=0; iw--) {
4005 final Uid.Wakelock wl = wakelocks.valueAt(iw);
4006 String linePrefix = "";
4007 sb.setLength(0);
4008 linePrefix = printWakeLockCheckin(sb, wl.getWakeTime(WAKE_TYPE_FULL),
4009 rawRealtime, "f", which, linePrefix);
Bookatz5b5ec322017-05-26 09:40:38 -07004010 final Timer pTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
4011 linePrefix = printWakeLockCheckin(sb, pTimer,
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004012 rawRealtime, "p", which, linePrefix);
Bookatz5b5ec322017-05-26 09:40:38 -07004013 linePrefix = printWakeLockCheckin(sb, pTimer != null ? pTimer.getSubTimer() : null,
4014 rawRealtime, "bp", which, linePrefix);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004015 linePrefix = printWakeLockCheckin(sb, wl.getWakeTime(WAKE_TYPE_WINDOW),
4016 rawRealtime, "w", which, linePrefix);
4017
Kweku Adams103351f2017-10-16 14:39:34 -07004018 // Only log if we had at least one wakelock...
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004019 if (sb.length() > 0) {
4020 String name = wakelocks.keyAt(iw);
4021 if (name.indexOf(',') >= 0) {
4022 name = name.replace(',', '_');
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004023 }
Yi Jin02483362017-08-04 11:30:44 -07004024 if (name.indexOf('\n') >= 0) {
4025 name = name.replace('\n', '_');
4026 }
4027 if (name.indexOf('\r') >= 0) {
4028 name = name.replace('\r', '_');
4029 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004030 dumpLine(pw, uid, category, WAKELOCK_DATA, name, sb.toString());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004031 }
4032 }
Dianne Hackborn61659e52014-07-09 16:13:01 -07004033
Ahmed ElArabawyddd09692017-10-30 17:58:29 -07004034 // WiFi Multicast Wakelock Statistics
4035 final Timer mcTimer = u.getMulticastWakelockStats();
4036 if (mcTimer != null) {
4037 final long totalMcWakelockTimeMs =
4038 mcTimer.getTotalTimeLocked(rawRealtime, which) / 1000 ;
4039 final int countMcWakelock = mcTimer.getCountLocked(which);
4040 if(totalMcWakelockTimeMs > 0) {
4041 dumpLine(pw, uid, category, WIFI_MULTICAST_DATA,
4042 totalMcWakelockTimeMs, countMcWakelock);
4043 }
4044 }
4045
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004046 final ArrayMap<String, ? extends Timer> syncs = u.getSyncStats();
4047 for (int isy=syncs.size()-1; isy>=0; isy--) {
4048 final Timer timer = syncs.valueAt(isy);
4049 // Convert from microseconds to milliseconds with rounding
4050 final long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000;
4051 final int count = timer.getCountLocked(which);
Bookatz2bffb5b2017-04-13 11:59:33 -07004052 final Timer bgTimer = timer.getSubTimer();
4053 final long bgTime = bgTimer != null ?
Bookatz6d799932017-06-07 12:30:07 -07004054 bgTimer.getTotalDurationMsLocked(rawRealtimeMs) : -1;
Bookatz2bffb5b2017-04-13 11:59:33 -07004055 final int bgCount = bgTimer != null ? bgTimer.getCountLocked(which) : -1;
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004056 if (totalTime != 0) {
Kweku Adamse0dd9c12017-03-08 08:12:15 -08004057 dumpLine(pw, uid, category, SYNC_DATA, "\"" + syncs.keyAt(isy) + "\"",
Bookatz2bffb5b2017-04-13 11:59:33 -07004058 totalTime, count, bgTime, bgCount);
Dianne Hackbornfdb19562014-07-11 16:03:36 -07004059 }
4060 }
4061
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004062 final ArrayMap<String, ? extends Timer> jobs = u.getJobStats();
4063 for (int ij=jobs.size()-1; ij>=0; ij--) {
4064 final Timer timer = jobs.valueAt(ij);
4065 // Convert from microseconds to milliseconds with rounding
4066 final long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000;
4067 final int count = timer.getCountLocked(which);
Bookatzaa4594a2017-03-24 12:39:56 -07004068 final Timer bgTimer = timer.getSubTimer();
4069 final long bgTime = bgTimer != null ?
Bookatz6d799932017-06-07 12:30:07 -07004070 bgTimer.getTotalDurationMsLocked(rawRealtimeMs) : -1;
Bookatzaa4594a2017-03-24 12:39:56 -07004071 final int bgCount = bgTimer != null ? bgTimer.getCountLocked(which) : -1;
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004072 if (totalTime != 0) {
Kweku Adamse0dd9c12017-03-08 08:12:15 -08004073 dumpLine(pw, uid, category, JOB_DATA, "\"" + jobs.keyAt(ij) + "\"",
Bookatzaa4594a2017-03-24 12:39:56 -07004074 totalTime, count, bgTime, bgCount);
Dianne Hackbornfdb19562014-07-11 16:03:36 -07004075 }
4076 }
4077
Dianne Hackborn94326cb2017-06-28 16:17:20 -07004078 final ArrayMap<String, SparseIntArray> completions = u.getJobCompletionStats();
4079 for (int ic=completions.size()-1; ic>=0; ic--) {
4080 SparseIntArray types = completions.valueAt(ic);
4081 if (types != null) {
4082 dumpLine(pw, uid, category, JOB_COMPLETION_DATA,
4083 "\"" + completions.keyAt(ic) + "\"",
4084 types.get(JobParameters.REASON_CANCELED, 0),
4085 types.get(JobParameters.REASON_CONSTRAINTS_NOT_SATISFIED, 0),
4086 types.get(JobParameters.REASON_PREEMPT, 0),
4087 types.get(JobParameters.REASON_TIMEOUT, 0),
4088 types.get(JobParameters.REASON_DEVICE_IDLE, 0));
4089 }
4090 }
4091
Ruben Brunk6d2c3632015-05-26 17:32:16 -07004092 dumpTimer(pw, uid, category, FLASHLIGHT_DATA, u.getFlashlightTurnedOnTimer(),
4093 rawRealtime, which);
4094 dumpTimer(pw, uid, category, CAMERA_DATA, u.getCameraTurnedOnTimer(),
4095 rawRealtime, which);
4096 dumpTimer(pw, uid, category, VIDEO_DATA, u.getVideoTurnedOnTimer(),
4097 rawRealtime, which);
4098 dumpTimer(pw, uid, category, AUDIO_DATA, u.getAudioTurnedOnTimer(),
4099 rawRealtime, which);
4100
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004101 final SparseArray<? extends BatteryStats.Uid.Sensor> sensors = u.getSensorStats();
4102 final int NSE = sensors.size();
Dianne Hackborn61659e52014-07-09 16:13:01 -07004103 for (int ise=0; ise<NSE; ise++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004104 final Uid.Sensor se = sensors.valueAt(ise);
4105 final int sensorNumber = sensors.keyAt(ise);
4106 final Timer timer = se.getSensorTime();
Dianne Hackborn61659e52014-07-09 16:13:01 -07004107 if (timer != null) {
4108 // Convert from microseconds to milliseconds with rounding
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004109 final long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500)
4110 / 1000;
Dianne Hackborn61659e52014-07-09 16:13:01 -07004111 if (totalTime != 0) {
Bookatz867c0d72017-03-07 18:23:42 -08004112 final int count = timer.getCountLocked(which);
4113 final Timer bgTimer = se.getSensorBackgroundTime();
4114 final int bgCount = bgTimer != null ? bgTimer.getCountLocked(which) : 0;
Bookatz867c0d72017-03-07 18:23:42 -08004115 // 'actualTime' are unpooled and always since reset (regardless of 'which')
4116 final long actualTime = timer.getTotalDurationMsLocked(rawRealtimeMs);
4117 final long bgActualTime = bgTimer != null ?
4118 bgTimer.getTotalDurationMsLocked(rawRealtimeMs) : 0;
4119 dumpLine(pw, uid, category, SENSOR_DATA, sensorNumber, totalTime,
4120 count, bgCount, actualTime, bgActualTime);
Dianne Hackborn61659e52014-07-09 16:13:01 -07004121 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004122 }
4123 }
4124
Ruben Brunk6d2c3632015-05-26 17:32:16 -07004125 dumpTimer(pw, uid, category, VIBRATOR_DATA, u.getVibratorOnTimer(),
4126 rawRealtime, which);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08004127
Michael Wachenschwanzb05a3c52017-07-07 17:47:04 -07004128 dumpTimer(pw, uid, category, FOREGROUND_ACTIVITY_DATA, u.getForegroundActivityTimer(),
4129 rawRealtime, which);
4130
4131 dumpTimer(pw, uid, category, FOREGROUND_SERVICE_DATA, u.getForegroundServiceTimer(),
Ruben Brunk6d2c3632015-05-26 17:32:16 -07004132 rawRealtime, which);
Jeff Sharkey3e013e82013-04-25 14:48:19 -07004133
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004134 final Object[] stateTimes = new Object[Uid.NUM_PROCESS_STATE];
Dianne Hackborn61659e52014-07-09 16:13:01 -07004135 long totalStateTime = 0;
4136 for (int ips=0; ips<Uid.NUM_PROCESS_STATE; ips++) {
Dianne Hackborna8d10942015-11-19 17:55:19 -08004137 final long time = u.getProcessStateTime(ips, rawRealtime, which);
4138 totalStateTime += time;
4139 stateTimes[ips] = (time + 500) / 1000;
Dianne Hackborn61659e52014-07-09 16:13:01 -07004140 }
4141 if (totalStateTime > 0) {
4142 dumpLine(pw, uid, category, STATE_TIME_DATA, stateTimes);
4143 }
4144
Adam Lesinskia7a4ccc2015-06-26 17:43:04 -07004145 final long userCpuTimeUs = u.getUserCpuTimeUs(which);
4146 final long systemCpuTimeUs = u.getSystemCpuTimeUs(which);
Adam Lesinskid4abd1e2017-04-12 11:29:13 -07004147 if (userCpuTimeUs > 0 || systemCpuTimeUs > 0) {
Adam Lesinskia7a4ccc2015-06-26 17:43:04 -07004148 dumpLine(pw, uid, category, CPU_DATA, userCpuTimeUs / 1000, systemCpuTimeUs / 1000,
Adam Lesinskid4abd1e2017-04-12 11:29:13 -07004149 0 /* old cpu power, keep for compatibility */);
Adam Lesinskia7a4ccc2015-06-26 17:43:04 -07004150 }
4151
Sudheer Shankaa87245d2017-08-10 12:02:31 -07004152 // If the cpuFreqs is null, then don't bother checking for cpu freq times.
4153 if (cpuFreqs != null) {
4154 final long[] cpuFreqTimeMs = u.getCpuFreqTimes(which);
4155 // If total cpuFreqTimes is null, then we don't need to check for
4156 // screenOffCpuFreqTimes.
4157 if (cpuFreqTimeMs != null && cpuFreqTimeMs.length == cpuFreqs.length) {
4158 sb.setLength(0);
Sudheer Shanka9b735c52017-05-09 18:26:18 -07004159 for (int i = 0; i < cpuFreqTimeMs.length; ++i) {
Sudheer Shankaa87245d2017-08-10 12:02:31 -07004160 sb.append((i == 0 ? "" : ",") + cpuFreqTimeMs[i]);
Sudheer Shanka9b735c52017-05-09 18:26:18 -07004161 }
Sudheer Shankaa87245d2017-08-10 12:02:31 -07004162 final long[] screenOffCpuFreqTimeMs = u.getScreenOffCpuFreqTimes(which);
4163 if (screenOffCpuFreqTimeMs != null) {
4164 for (int i = 0; i < screenOffCpuFreqTimeMs.length; ++i) {
4165 sb.append("," + screenOffCpuFreqTimeMs[i]);
4166 }
4167 } else {
4168 for (int i = 0; i < cpuFreqTimeMs.length; ++i) {
4169 sb.append(",0");
4170 }
4171 }
4172 dumpLine(pw, uid, category, CPU_TIMES_AT_FREQ_DATA, UID_TIMES_TYPE_ALL,
4173 cpuFreqTimeMs.length, sb.toString());
Sudheer Shanka9b735c52017-05-09 18:26:18 -07004174 }
Sudheer Shankab2f83c12017-11-13 19:25:01 -08004175
4176 for (int procState = 0; procState < Uid.NUM_PROCESS_STATE; ++procState) {
4177 final long[] timesMs = u.getCpuFreqTimes(which, procState);
4178 if (timesMs != null && timesMs.length == cpuFreqs.length) {
4179 sb.setLength(0);
4180 for (int i = 0; i < timesMs.length; ++i) {
4181 sb.append((i == 0 ? "" : ",") + timesMs[i]);
4182 }
4183 final long[] screenOffTimesMs = u.getScreenOffCpuFreqTimes(
4184 which, procState);
4185 if (screenOffTimesMs != null) {
4186 for (int i = 0; i < screenOffTimesMs.length; ++i) {
4187 sb.append("," + screenOffTimesMs[i]);
4188 }
4189 } else {
4190 for (int i = 0; i < timesMs.length; ++i) {
4191 sb.append(",0");
4192 }
4193 }
4194 dumpLine(pw, uid, category, CPU_TIMES_AT_FREQ_DATA,
4195 Uid.UID_PROCESS_TYPES[procState], timesMs.length, sb.toString());
4196 }
4197 }
Sudheer Shanka9b735c52017-05-09 18:26:18 -07004198 }
4199
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004200 final ArrayMap<String, ? extends BatteryStats.Uid.Proc> processStats
4201 = u.getProcessStats();
4202 for (int ipr=processStats.size()-1; ipr>=0; ipr--) {
4203 final Uid.Proc ps = processStats.valueAt(ipr);
Jeff Sharkey3e013e82013-04-25 14:48:19 -07004204
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004205 final long userMillis = ps.getUserTime(which);
4206 final long systemMillis = ps.getSystemTime(which);
4207 final long foregroundMillis = ps.getForegroundTime(which);
4208 final int starts = ps.getStarts(which);
4209 final int numCrashes = ps.getNumCrashes(which);
4210 final int numAnrs = ps.getNumAnrs(which);
Jeff Sharkey3e013e82013-04-25 14:48:19 -07004211
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004212 if (userMillis != 0 || systemMillis != 0 || foregroundMillis != 0
4213 || starts != 0 || numAnrs != 0 || numCrashes != 0) {
Kweku Adamse0dd9c12017-03-08 08:12:15 -08004214 dumpLine(pw, uid, category, PROCESS_DATA, "\"" + processStats.keyAt(ipr) + "\"",
4215 userMillis, systemMillis, foregroundMillis, starts, numAnrs, numCrashes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004216 }
4217 }
4218
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004219 final ArrayMap<String, ? extends BatteryStats.Uid.Pkg> packageStats
4220 = u.getPackageStats();
4221 for (int ipkg=packageStats.size()-1; ipkg>=0; ipkg--) {
4222 final Uid.Pkg ps = packageStats.valueAt(ipkg);
4223 int wakeups = 0;
4224 final ArrayMap<String, ? extends Counter> alarms = ps.getWakeupAlarmStats();
4225 for (int iwa=alarms.size()-1; iwa>=0; iwa--) {
Joe Onorato1476d322016-05-05 14:46:15 -07004226 int count = alarms.valueAt(iwa).getCountLocked(which);
4227 wakeups += count;
4228 String name = alarms.keyAt(iwa).replace(',', '_');
4229 dumpLine(pw, uid, category, WAKEUP_ALARM_DATA, name, count);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004230 }
4231 final ArrayMap<String, ? extends Uid.Pkg.Serv> serviceStats = ps.getServiceStats();
4232 for (int isvc=serviceStats.size()-1; isvc>=0; isvc--) {
4233 final BatteryStats.Uid.Pkg.Serv ss = serviceStats.valueAt(isvc);
4234 final long startTime = ss.getStartTime(batteryUptime, which);
4235 final int starts = ss.getStarts(which);
4236 final int launches = ss.getLaunches(which);
4237 if (startTime != 0 || starts != 0 || launches != 0) {
4238 dumpLine(pw, uid, category, APK_DATA,
4239 wakeups, // wakeup alarms
4240 packageStats.keyAt(ipkg), // Apk
4241 serviceStats.keyAt(isvc), // service
4242 startTime / 1000, // time spent started, in ms
4243 starts,
4244 launches);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004245 }
4246 }
4247 }
4248 }
4249 }
4250
Dianne Hackborn81038902012-11-26 17:04:09 -08004251 static final class TimerEntry {
4252 final String mName;
4253 final int mId;
4254 final BatteryStats.Timer mTimer;
4255 final long mTime;
4256 TimerEntry(String name, int id, BatteryStats.Timer timer, long time) {
4257 mName = name;
4258 mId = id;
4259 mTimer = timer;
4260 mTime = time;
4261 }
4262 }
4263
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004264 private void printmAh(PrintWriter printer, double power) {
4265 printer.print(BatteryStatsHelper.makemAh(power));
4266 }
4267
Adam Lesinskia7a4ccc2015-06-26 17:43:04 -07004268 private void printmAh(StringBuilder sb, double power) {
4269 sb.append(BatteryStatsHelper.makemAh(power));
4270 }
4271
Dianne Hackbornd953c532014-08-16 18:17:38 -07004272 /**
4273 * Temporary for settings.
4274 */
4275 public final void dumpLocked(Context context, PrintWriter pw, String prefix, int which,
4276 int reqUid) {
4277 dumpLocked(context, pw, prefix, which, reqUid, BatteryStatsHelper.checkWifiOnly(context));
4278 }
4279
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004280 @SuppressWarnings("unused")
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004281 public final void dumpLocked(Context context, PrintWriter pw, String prefix, final int which,
Dianne Hackbornd953c532014-08-16 18:17:38 -07004282 int reqUid, boolean wifiOnly) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004283 final long rawUptime = SystemClock.uptimeMillis() * 1000;
4284 final long rawRealtime = SystemClock.elapsedRealtime() * 1000;
Bookatz6d799932017-06-07 12:30:07 -07004285 final long rawRealtimeMs = (rawRealtime + 500) / 1000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004286 final long batteryUptime = getBatteryUptime(rawUptime);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004287
4288 final long whichBatteryUptime = computeBatteryUptime(rawUptime, which);
4289 final long whichBatteryRealtime = computeBatteryRealtime(rawRealtime, which);
4290 final long totalRealtime = computeRealtime(rawRealtime, which);
4291 final long totalUptime = computeUptime(rawUptime, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004292 final long whichBatteryScreenOffUptime = computeBatteryScreenOffUptime(rawUptime, which);
4293 final long whichBatteryScreenOffRealtime = computeBatteryScreenOffRealtime(rawRealtime,
4294 which);
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07004295 final long batteryTimeRemaining = computeBatteryTimeRemaining(rawRealtime);
4296 final long chargeTimeRemaining = computeChargeTimeRemaining(rawRealtime);
Mike Mac2f518a2017-09-19 16:06:03 -07004297 final long screenDozeTime = getScreenDozeTime(rawRealtime, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004298
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004299 final StringBuilder sb = new StringBuilder(128);
Bookatzc8c44962017-05-11 12:12:54 -07004300
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004301 final SparseArray<? extends Uid> uidStats = getUidStats();
Evan Millar22ac0432009-03-31 11:33:18 -07004302 final int NU = uidStats.size();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004303
Adam Lesinskif9b20a92016-06-17 17:30:01 -07004304 final int estimatedBatteryCapacity = getEstimatedBatteryCapacity();
4305 if (estimatedBatteryCapacity > 0) {
4306 sb.setLength(0);
4307 sb.append(prefix);
4308 sb.append(" Estimated battery capacity: ");
4309 sb.append(BatteryStatsHelper.makemAh(estimatedBatteryCapacity));
4310 sb.append(" mAh");
4311 pw.println(sb.toString());
4312 }
4313
Jocelyn Dangc627d102017-04-14 13:15:14 -07004314 final int minLearnedBatteryCapacity = getMinLearnedBatteryCapacity();
4315 if (minLearnedBatteryCapacity > 0) {
4316 sb.setLength(0);
4317 sb.append(prefix);
4318 sb.append(" Min learned battery capacity: ");
4319 sb.append(BatteryStatsHelper.makemAh(minLearnedBatteryCapacity / 1000));
4320 sb.append(" mAh");
4321 pw.println(sb.toString());
4322 }
4323 final int maxLearnedBatteryCapacity = getMaxLearnedBatteryCapacity();
4324 if (maxLearnedBatteryCapacity > 0) {
4325 sb.setLength(0);
4326 sb.append(prefix);
4327 sb.append(" Max learned battery capacity: ");
4328 sb.append(BatteryStatsHelper.makemAh(maxLearnedBatteryCapacity / 1000));
4329 sb.append(" mAh");
4330 pw.println(sb.toString());
4331 }
4332
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004333 sb.setLength(0);
4334 sb.append(prefix);
Mike Mac2f518a2017-09-19 16:06:03 -07004335 sb.append(" Time on battery: ");
4336 formatTimeMs(sb, whichBatteryRealtime / 1000); sb.append("(");
4337 sb.append(formatRatioLocked(whichBatteryRealtime, totalRealtime));
4338 sb.append(") realtime, ");
4339 formatTimeMs(sb, whichBatteryUptime / 1000);
4340 sb.append("("); sb.append(formatRatioLocked(whichBatteryUptime, whichBatteryRealtime));
4341 sb.append(") uptime");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004342 pw.println(sb.toString());
Mike Mac2f518a2017-09-19 16:06:03 -07004343
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004344 sb.setLength(0);
4345 sb.append(prefix);
Mike Mac2f518a2017-09-19 16:06:03 -07004346 sb.append(" Time on battery screen off: ");
4347 formatTimeMs(sb, whichBatteryScreenOffRealtime / 1000); sb.append("(");
4348 sb.append(formatRatioLocked(whichBatteryScreenOffRealtime, whichBatteryRealtime));
4349 sb.append(") realtime, ");
4350 formatTimeMs(sb, whichBatteryScreenOffUptime / 1000);
4351 sb.append("(");
4352 sb.append(formatRatioLocked(whichBatteryScreenOffUptime, whichBatteryRealtime));
4353 sb.append(") uptime");
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004354 pw.println(sb.toString());
Mike Mac2f518a2017-09-19 16:06:03 -07004355
4356 sb.setLength(0);
4357 sb.append(prefix);
4358 sb.append(" Time on battery screen doze: ");
4359 formatTimeMs(sb, screenDozeTime / 1000); sb.append("(");
4360 sb.append(formatRatioLocked(screenDozeTime, whichBatteryRealtime));
4361 sb.append(")");
4362 pw.println(sb.toString());
4363
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004364 sb.setLength(0);
4365 sb.append(prefix);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004366 sb.append(" Total run time: ");
4367 formatTimeMs(sb, totalRealtime / 1000);
4368 sb.append("realtime, ");
4369 formatTimeMs(sb, totalUptime / 1000);
Dianne Hackborn77b987f2014-02-26 16:20:52 -08004370 sb.append("uptime");
Jeff Browne95c3cd2014-05-02 16:59:26 -07004371 pw.println(sb.toString());
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07004372 if (batteryTimeRemaining >= 0) {
4373 sb.setLength(0);
4374 sb.append(prefix);
4375 sb.append(" Battery time remaining: ");
4376 formatTimeMs(sb, batteryTimeRemaining / 1000);
4377 pw.println(sb.toString());
4378 }
4379 if (chargeTimeRemaining >= 0) {
4380 sb.setLength(0);
4381 sb.append(prefix);
4382 sb.append(" Charge time remaining: ");
4383 formatTimeMs(sb, chargeTimeRemaining / 1000);
4384 pw.println(sb.toString());
4385 }
Adam Lesinski3ee3f632016-06-08 13:55:55 -07004386
Kweku Adams87b19ec2017-10-09 12:40:03 -07004387 final long dischargeCount = getUahDischarge(which);
Adam Lesinski3ee3f632016-06-08 13:55:55 -07004388 if (dischargeCount >= 0) {
4389 sb.setLength(0);
4390 sb.append(prefix);
4391 sb.append(" Discharge: ");
4392 sb.append(BatteryStatsHelper.makemAh(dischargeCount / 1000.0));
4393 sb.append(" mAh");
4394 pw.println(sb.toString());
4395 }
4396
Kweku Adams87b19ec2017-10-09 12:40:03 -07004397 final long dischargeScreenOffCount = getUahDischargeScreenOff(which);
Adam Lesinski3ee3f632016-06-08 13:55:55 -07004398 if (dischargeScreenOffCount >= 0) {
4399 sb.setLength(0);
4400 sb.append(prefix);
4401 sb.append(" Screen off discharge: ");
4402 sb.append(BatteryStatsHelper.makemAh(dischargeScreenOffCount / 1000.0));
4403 sb.append(" mAh");
4404 pw.println(sb.toString());
4405 }
4406
Kweku Adams87b19ec2017-10-09 12:40:03 -07004407 final long dischargeScreenDozeCount = getUahDischargeScreenDoze(which);
Mike Mac2f518a2017-09-19 16:06:03 -07004408 if (dischargeScreenDozeCount >= 0) {
4409 sb.setLength(0);
4410 sb.append(prefix);
4411 sb.append(" Screen doze discharge: ");
4412 sb.append(BatteryStatsHelper.makemAh(dischargeScreenDozeCount / 1000.0));
4413 sb.append(" mAh");
4414 pw.println(sb.toString());
4415 }
4416
4417 final long dischargeScreenOnCount =
4418 dischargeCount - dischargeScreenOffCount - dischargeScreenDozeCount;
Adam Lesinski3ee3f632016-06-08 13:55:55 -07004419 if (dischargeScreenOnCount >= 0) {
4420 sb.setLength(0);
4421 sb.append(prefix);
4422 sb.append(" Screen on discharge: ");
4423 sb.append(BatteryStatsHelper.makemAh(dischargeScreenOnCount / 1000.0));
4424 sb.append(" mAh");
4425 pw.println(sb.toString());
4426 }
4427
Mike Ma15313c92017-11-15 17:58:21 -08004428 final long dischargeLightDozeCount = getUahDischargeLightDoze(which);
4429 if (dischargeLightDozeCount >= 0) {
4430 sb.setLength(0);
4431 sb.append(prefix);
4432 sb.append(" Device light doze discharge: ");
4433 sb.append(BatteryStatsHelper.makemAh(dischargeLightDozeCount / 1000.0));
4434 sb.append(" mAh");
4435 pw.println(sb.toString());
4436 }
4437
4438 final long dischargeDeepDozeCount = getUahDischargeDeepDoze(which);
4439 if (dischargeDeepDozeCount >= 0) {
4440 sb.setLength(0);
4441 sb.append(prefix);
4442 sb.append(" Device deep doze discharge: ");
4443 sb.append(BatteryStatsHelper.makemAh(dischargeDeepDozeCount / 1000.0));
4444 sb.append(" mAh");
4445 pw.println(sb.toString());
4446 }
4447
Dianne Hackborn5f4a5f92014-01-24 16:59:34 -08004448 pw.print(" Start clock time: ");
4449 pw.println(DateFormat.format("yyyy-MM-dd-HH-mm-ss", getStartClockTime()).toString());
4450
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004451 final long screenOnTime = getScreenOnTime(rawRealtime, which);
Jeff Browne95c3cd2014-05-02 16:59:26 -07004452 final long interactiveTime = getInteractiveTime(rawRealtime, which);
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004453 final long powerSaveModeEnabledTime = getPowerSaveModeEnabledTime(rawRealtime, which);
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004454 final long deviceIdleModeLightTime = getDeviceIdleModeTime(DEVICE_IDLE_MODE_LIGHT,
4455 rawRealtime, which);
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07004456 final long deviceIdleModeFullTime = getDeviceIdleModeTime(DEVICE_IDLE_MODE_DEEP,
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004457 rawRealtime, which);
4458 final long deviceLightIdlingTime = getDeviceIdlingTime(DEVICE_IDLE_MODE_LIGHT,
4459 rawRealtime, which);
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07004460 final long deviceIdlingTime = getDeviceIdlingTime(DEVICE_IDLE_MODE_DEEP,
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004461 rawRealtime, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004462 final long phoneOnTime = getPhoneOnTime(rawRealtime, which);
4463 final long wifiRunningTime = getGlobalWifiRunningTime(rawRealtime, which);
4464 final long wifiOnTime = getWifiOnTime(rawRealtime, which);
Dianne Hackborn617f8772009-03-31 15:04:46 -07004465 sb.setLength(0);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004466 sb.append(prefix);
4467 sb.append(" Screen on: "); formatTimeMs(sb, screenOnTime / 1000);
4468 sb.append("("); sb.append(formatRatioLocked(screenOnTime, whichBatteryRealtime));
Dianne Hackborn77b987f2014-02-26 16:20:52 -08004469 sb.append(") "); sb.append(getScreenOnCount(which));
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07004470 sb.append("x, Interactive: "); formatTimeMs(sb, interactiveTime / 1000);
4471 sb.append("("); sb.append(formatRatioLocked(interactiveTime, whichBatteryRealtime));
Jeff Browne95c3cd2014-05-02 16:59:26 -07004472 sb.append(")");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004473 pw.println(sb.toString());
4474 sb.setLength(0);
4475 sb.append(prefix);
Dianne Hackborn77b987f2014-02-26 16:20:52 -08004476 sb.append(" Screen brightnesses:");
Dianne Hackborn617f8772009-03-31 15:04:46 -07004477 boolean didOne = false;
4478 for (int i=0; i<NUM_SCREEN_BRIGHTNESS_BINS; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004479 final long time = getScreenBrightnessTime(i, rawRealtime, which);
Dianne Hackborn617f8772009-03-31 15:04:46 -07004480 if (time == 0) {
4481 continue;
4482 }
Dianne Hackborn77b987f2014-02-26 16:20:52 -08004483 sb.append("\n ");
4484 sb.append(prefix);
Dianne Hackborn617f8772009-03-31 15:04:46 -07004485 didOne = true;
4486 sb.append(SCREEN_BRIGHTNESS_NAMES[i]);
4487 sb.append(" ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004488 formatTimeMs(sb, time/1000);
Dianne Hackborn617f8772009-03-31 15:04:46 -07004489 sb.append("(");
4490 sb.append(formatRatioLocked(time, screenOnTime));
4491 sb.append(")");
4492 }
Dianne Hackborn77b987f2014-02-26 16:20:52 -08004493 if (!didOne) sb.append(" (no activity)");
Dianne Hackborn617f8772009-03-31 15:04:46 -07004494 pw.println(sb.toString());
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004495 if (powerSaveModeEnabledTime != 0) {
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07004496 sb.setLength(0);
4497 sb.append(prefix);
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004498 sb.append(" Power save mode enabled: ");
4499 formatTimeMs(sb, powerSaveModeEnabledTime / 1000);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07004500 sb.append("(");
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004501 sb.append(formatRatioLocked(powerSaveModeEnabledTime, whichBatteryRealtime));
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07004502 sb.append(")");
4503 pw.println(sb.toString());
4504 }
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004505 if (deviceLightIdlingTime != 0) {
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004506 sb.setLength(0);
4507 sb.append(prefix);
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004508 sb.append(" Device light idling: ");
4509 formatTimeMs(sb, deviceLightIdlingTime / 1000);
Dianne Hackborn88e98df2015-03-23 13:29:14 -07004510 sb.append("(");
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004511 sb.append(formatRatioLocked(deviceLightIdlingTime, whichBatteryRealtime));
4512 sb.append(") "); sb.append(getDeviceIdlingCount(DEVICE_IDLE_MODE_LIGHT, which));
Dianne Hackborn88e98df2015-03-23 13:29:14 -07004513 sb.append("x");
4514 pw.println(sb.toString());
4515 }
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004516 if (deviceIdleModeLightTime != 0) {
Dianne Hackborn88e98df2015-03-23 13:29:14 -07004517 sb.setLength(0);
4518 sb.append(prefix);
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004519 sb.append(" Idle mode light time: ");
4520 formatTimeMs(sb, deviceIdleModeLightTime / 1000);
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004521 sb.append("(");
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004522 sb.append(formatRatioLocked(deviceIdleModeLightTime, whichBatteryRealtime));
4523 sb.append(") ");
4524 sb.append(getDeviceIdleModeCount(DEVICE_IDLE_MODE_LIGHT, which));
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004525 sb.append("x");
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004526 sb.append(" -- longest ");
4527 formatTimeMs(sb, getLongestDeviceIdleModeTime(DEVICE_IDLE_MODE_LIGHT));
4528 pw.println(sb.toString());
4529 }
4530 if (deviceIdlingTime != 0) {
4531 sb.setLength(0);
4532 sb.append(prefix);
4533 sb.append(" Device full idling: ");
4534 formatTimeMs(sb, deviceIdlingTime / 1000);
4535 sb.append("(");
4536 sb.append(formatRatioLocked(deviceIdlingTime, whichBatteryRealtime));
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07004537 sb.append(") "); sb.append(getDeviceIdlingCount(DEVICE_IDLE_MODE_DEEP, which));
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004538 sb.append("x");
4539 pw.println(sb.toString());
4540 }
4541 if (deviceIdleModeFullTime != 0) {
4542 sb.setLength(0);
4543 sb.append(prefix);
4544 sb.append(" Idle mode full time: ");
4545 formatTimeMs(sb, deviceIdleModeFullTime / 1000);
4546 sb.append("(");
4547 sb.append(formatRatioLocked(deviceIdleModeFullTime, whichBatteryRealtime));
4548 sb.append(") ");
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07004549 sb.append(getDeviceIdleModeCount(DEVICE_IDLE_MODE_DEEP, which));
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004550 sb.append("x");
4551 sb.append(" -- longest ");
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07004552 formatTimeMs(sb, getLongestDeviceIdleModeTime(DEVICE_IDLE_MODE_DEEP));
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004553 pw.println(sb.toString());
4554 }
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07004555 if (phoneOnTime != 0) {
4556 sb.setLength(0);
4557 sb.append(prefix);
4558 sb.append(" Active phone call: "); formatTimeMs(sb, phoneOnTime / 1000);
4559 sb.append("("); sb.append(formatRatioLocked(phoneOnTime, whichBatteryRealtime));
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004560 sb.append(") "); sb.append(getPhoneOnCount(which)); sb.append("x");
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07004561 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004562 final int connChanges = getNumConnectivityChange(which);
Dianne Hackborn1e01d162014-12-04 17:46:42 -08004563 if (connChanges != 0) {
4564 pw.print(prefix);
4565 pw.print(" Connectivity changes: "); pw.println(connChanges);
4566 }
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07004567
Ahmed ElArabawyf88571f2017-11-28 12:18:10 -08004568 // Calculate wakelock times across all uids.
Evan Millar22ac0432009-03-31 11:33:18 -07004569 long fullWakeLockTimeTotalMicros = 0;
4570 long partialWakeLockTimeTotalMicros = 0;
Dianne Hackborn81038902012-11-26 17:04:09 -08004571
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004572 final ArrayList<TimerEntry> timers = new ArrayList<>();
Dianne Hackborn81038902012-11-26 17:04:09 -08004573
Evan Millar22ac0432009-03-31 11:33:18 -07004574 for (int iu = 0; iu < NU; iu++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004575 final Uid u = uidStats.valueAt(iu);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07004576
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004577 final ArrayMap<String, ? extends BatteryStats.Uid.Wakelock> wakelocks
4578 = u.getWakelockStats();
4579 for (int iw=wakelocks.size()-1; iw>=0; iw--) {
4580 final Uid.Wakelock wl = wakelocks.valueAt(iw);
Evan Millar22ac0432009-03-31 11:33:18 -07004581
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004582 final Timer fullWakeTimer = wl.getWakeTime(WAKE_TYPE_FULL);
4583 if (fullWakeTimer != null) {
4584 fullWakeLockTimeTotalMicros += fullWakeTimer.getTotalTimeLocked(
4585 rawRealtime, which);
4586 }
4587
4588 final Timer partialWakeTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
4589 if (partialWakeTimer != null) {
4590 final long totalTimeMicros = partialWakeTimer.getTotalTimeLocked(
4591 rawRealtime, which);
4592 if (totalTimeMicros > 0) {
4593 if (reqUid < 0) {
4594 // Only show the ordered list of all wake
4595 // locks if the caller is not asking for data
4596 // about a specific uid.
4597 timers.add(new TimerEntry(wakelocks.keyAt(iw), u.getUid(),
4598 partialWakeTimer, totalTimeMicros));
Dianne Hackborn81038902012-11-26 17:04:09 -08004599 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004600 partialWakeLockTimeTotalMicros += totalTimeMicros;
Evan Millar22ac0432009-03-31 11:33:18 -07004601 }
4602 }
4603 }
4604 }
Bookatzc8c44962017-05-11 12:12:54 -07004605
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004606 final long mobileRxTotalBytes = getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which);
4607 final long mobileTxTotalBytes = getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which);
4608 final long wifiRxTotalBytes = getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which);
4609 final long wifiTxTotalBytes = getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which);
4610 final long mobileRxTotalPackets = getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which);
4611 final long mobileTxTotalPackets = getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which);
4612 final long wifiRxTotalPackets = getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which);
4613 final long wifiTxTotalPackets = getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which);
Adam Lesinski50e47602015-12-04 17:04:54 -08004614 final long btRxTotalBytes = getNetworkActivityBytes(NETWORK_BT_RX_DATA, which);
4615 final long btTxTotalBytes = getNetworkActivityBytes(NETWORK_BT_TX_DATA, which);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004616
Dianne Hackborn77b987f2014-02-26 16:20:52 -08004617 if (fullWakeLockTimeTotalMicros != 0) {
4618 sb.setLength(0);
4619 sb.append(prefix);
4620 sb.append(" Total full wakelock time: "); formatTimeMsNoSpace(sb,
4621 (fullWakeLockTimeTotalMicros + 500) / 1000);
4622 pw.println(sb.toString());
4623 }
4624
4625 if (partialWakeLockTimeTotalMicros != 0) {
4626 sb.setLength(0);
4627 sb.append(prefix);
4628 sb.append(" Total partial wakelock time: "); formatTimeMsNoSpace(sb,
4629 (partialWakeLockTimeTotalMicros + 500) / 1000);
4630 pw.println(sb.toString());
4631 }
4632
Ahmed ElArabawyf88571f2017-11-28 12:18:10 -08004633 final long multicastWakeLockTimeTotalMicros =
4634 getWifiMulticastWakelockTime(rawRealtime, which);
4635 final int multicastWakeLockCountTotal = getWifiMulticastWakelockCount(which);
Ahmed ElArabawyddd09692017-10-30 17:58:29 -07004636 if (multicastWakeLockTimeTotalMicros != 0) {
4637 sb.setLength(0);
4638 sb.append(prefix);
4639 sb.append(" Total WiFi Multicast wakelock Count: ");
4640 sb.append(multicastWakeLockCountTotal);
4641 pw.println(sb.toString());
4642
4643 sb.setLength(0);
4644 sb.append(prefix);
4645 sb.append(" Total WiFi Multicast wakelock time: ");
4646 formatTimeMsNoSpace(sb, (multicastWakeLockTimeTotalMicros + 500) / 1000);
4647 pw.println(sb.toString());
4648 }
4649
Siddharth Ray3c648c42017-10-02 17:30:58 -07004650 pw.println("");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004651 pw.print(prefix);
Dianne Hackborn627bba72009-03-24 22:32:56 -07004652 sb.setLength(0);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004653 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004654 sb.append(" CONNECTIVITY POWER SUMMARY START");
4655 pw.println(sb.toString());
4656
4657 pw.print(prefix);
4658 sb.setLength(0);
4659 sb.append(prefix);
4660 sb.append(" Logging duration for connectivity statistics: ");
4661 formatTimeMs(sb, whichBatteryRealtime / 1000);
Dianne Hackborn627bba72009-03-24 22:32:56 -07004662 pw.println(sb.toString());
Amith Yamasanif37447b2009-10-08 18:28:01 -07004663
4664 sb.setLength(0);
4665 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004666 sb.append(" Cellular Statistics:");
Amith Yamasanif37447b2009-10-08 18:28:01 -07004667 pw.println(sb.toString());
4668
Siddharth Ray3c648c42017-10-02 17:30:58 -07004669 pw.print(prefix);
4670 sb.setLength(0);
4671 sb.append(prefix);
4672 sb.append(" Cellular kernel active time: ");
4673 final long mobileActiveTime = getMobileRadioActiveTime(rawRealtime, which);
4674 formatTimeMs(sb, mobileActiveTime / 1000);
4675 sb.append("("); sb.append(formatRatioLocked(mobileActiveTime, whichBatteryRealtime));
4676 sb.append(")");
4677 pw.println(sb.toString());
4678
4679 pw.print(" Cellular data received: "); pw.println(formatBytesLocked(mobileRxTotalBytes));
4680 pw.print(" Cellular data sent: "); pw.println(formatBytesLocked(mobileTxTotalBytes));
4681 pw.print(" Cellular packets received: "); pw.println(mobileRxTotalPackets);
4682 pw.print(" Cellular packets sent: "); pw.println(mobileTxTotalPackets);
4683
Dianne Hackborn627bba72009-03-24 22:32:56 -07004684 sb.setLength(0);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004685 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004686 sb.append(" Cellular Radio Access Technology:");
Dianne Hackborn627bba72009-03-24 22:32:56 -07004687 didOne = false;
4688 for (int i=0; i<NUM_DATA_CONNECTION_TYPES; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004689 final long time = getPhoneDataConnectionTime(i, rawRealtime, which);
Dianne Hackborn627bba72009-03-24 22:32:56 -07004690 if (time == 0) {
4691 continue;
4692 }
Siddharth Ray3c648c42017-10-02 17:30:58 -07004693 sb.append("\n ");
Dianne Hackborn77b987f2014-02-26 16:20:52 -08004694 sb.append(prefix);
Dianne Hackborn627bba72009-03-24 22:32:56 -07004695 didOne = true;
4696 sb.append(DATA_CONNECTION_NAMES[i]);
4697 sb.append(" ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004698 formatTimeMs(sb, time/1000);
Dianne Hackborn627bba72009-03-24 22:32:56 -07004699 sb.append("(");
4700 sb.append(formatRatioLocked(time, whichBatteryRealtime));
Dianne Hackborn617f8772009-03-31 15:04:46 -07004701 sb.append(") ");
Dianne Hackborn627bba72009-03-24 22:32:56 -07004702 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08004703 if (!didOne) sb.append(" (no activity)");
Dianne Hackborn627bba72009-03-24 22:32:56 -07004704 pw.println(sb.toString());
Amith Yamasani3f7e35c2009-07-13 16:02:45 -07004705
4706 sb.setLength(0);
4707 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004708 sb.append(" Cellular Rx signal strength (RSRP):");
4709 final String[] cellularRxSignalStrengthDescription = new String[]{
4710 "very poor (less than -128dBm): ",
4711 "poor (-128dBm to -118dBm): ",
4712 "moderate (-118dBm to -108dBm): ",
4713 "good (-108dBm to -98dBm): ",
4714 "great (greater than -98dBm): "};
4715 didOne = false;
4716 final int numCellularRxBins = Math.min(SignalStrength.NUM_SIGNAL_STRENGTH_BINS,
4717 cellularRxSignalStrengthDescription.length);
4718 for (int i=0; i<numCellularRxBins; i++) {
4719 final long time = getPhoneSignalStrengthTime(i, rawRealtime, which);
4720 if (time == 0) {
4721 continue;
4722 }
4723 sb.append("\n ");
4724 sb.append(prefix);
4725 didOne = true;
4726 sb.append(cellularRxSignalStrengthDescription[i]);
4727 sb.append(" ");
4728 formatTimeMs(sb, time/1000);
4729 sb.append("(");
4730 sb.append(formatRatioLocked(time, whichBatteryRealtime));
4731 sb.append(") ");
4732 }
4733 if (!didOne) sb.append(" (no activity)");
Amith Yamasani3f7e35c2009-07-13 16:02:45 -07004734 pw.println(sb.toString());
4735
Siddharth Rayb50a6842017-12-14 15:15:28 -08004736 printControllerActivity(pw, sb, prefix, CELLULAR_CONTROLLER_NAME,
Siddharth Ray3c648c42017-10-02 17:30:58 -07004737 getModemControllerActivity(), which);
Adam Lesinski21f76aa2016-01-25 12:27:06 -08004738
Dianne Hackborn77b987f2014-02-26 16:20:52 -08004739 pw.print(prefix);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004740 sb.setLength(0);
4741 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004742 sb.append(" Wifi Statistics:");
Dianne Hackbornca1bf212014-02-14 14:18:36 -08004743 pw.println(sb.toString());
4744
Siddharth Rayb50a6842017-12-14 15:15:28 -08004745 pw.print(prefix);
4746 sb.setLength(0);
4747 sb.append(prefix);
4748 sb.append(" Wifi kernel active time: ");
4749 final long wifiActiveTime = getWifiActiveTime(rawRealtime, which);
4750 formatTimeMs(sb, wifiActiveTime / 1000);
4751 sb.append("("); sb.append(formatRatioLocked(wifiActiveTime, whichBatteryRealtime));
4752 sb.append(")");
4753 pw.println(sb.toString());
4754
Siddharth Ray3c648c42017-10-02 17:30:58 -07004755 pw.print(" Wifi data received: "); pw.println(formatBytesLocked(wifiRxTotalBytes));
4756 pw.print(" Wifi data sent: "); pw.println(formatBytesLocked(wifiTxTotalBytes));
4757 pw.print(" Wifi packets received: "); pw.println(wifiRxTotalPackets);
4758 pw.print(" Wifi packets sent: "); pw.println(wifiTxTotalPackets);
4759
Dianne Hackbornca1bf212014-02-14 14:18:36 -08004760 sb.setLength(0);
4761 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004762 sb.append(" Wifi states:");
Dianne Hackbornca1bf212014-02-14 14:18:36 -08004763 didOne = false;
4764 for (int i=0; i<NUM_WIFI_STATES; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004765 final long time = getWifiStateTime(i, rawRealtime, which);
Dianne Hackbornca1bf212014-02-14 14:18:36 -08004766 if (time == 0) {
4767 continue;
4768 }
Siddharth Ray3c648c42017-10-02 17:30:58 -07004769 sb.append("\n ");
Dianne Hackbornca1bf212014-02-14 14:18:36 -08004770 didOne = true;
4771 sb.append(WIFI_STATE_NAMES[i]);
4772 sb.append(" ");
4773 formatTimeMs(sb, time/1000);
4774 sb.append("(");
4775 sb.append(formatRatioLocked(time, whichBatteryRealtime));
4776 sb.append(") ");
Dianne Hackborn3251b902014-06-20 14:40:53 -07004777 }
4778 if (!didOne) sb.append(" (no activity)");
4779 pw.println(sb.toString());
4780
4781 sb.setLength(0);
4782 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004783 sb.append(" Wifi supplicant states:");
Dianne Hackborn3251b902014-06-20 14:40:53 -07004784 didOne = false;
4785 for (int i=0; i<NUM_WIFI_SUPPL_STATES; i++) {
4786 final long time = getWifiSupplStateTime(i, rawRealtime, which);
4787 if (time == 0) {
4788 continue;
4789 }
Siddharth Ray3c648c42017-10-02 17:30:58 -07004790 sb.append("\n ");
Dianne Hackborn3251b902014-06-20 14:40:53 -07004791 didOne = true;
4792 sb.append(WIFI_SUPPL_STATE_NAMES[i]);
4793 sb.append(" ");
4794 formatTimeMs(sb, time/1000);
4795 sb.append("(");
4796 sb.append(formatRatioLocked(time, whichBatteryRealtime));
4797 sb.append(") ");
Dianne Hackborn3251b902014-06-20 14:40:53 -07004798 }
4799 if (!didOne) sb.append(" (no activity)");
4800 pw.println(sb.toString());
4801
4802 sb.setLength(0);
4803 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004804 sb.append(" Wifi Rx signal strength (RSSI):");
4805 final String[] wifiRxSignalStrengthDescription = new String[]{
4806 "very poor (less than -88.75dBm): ",
4807 "poor (-88.75 to -77.5dBm): ",
4808 "moderate (-77.5dBm to -66.25dBm): ",
4809 "good (-66.25dBm to -55dBm): ",
4810 "great (greater than -55dBm): "};
Dianne Hackborn3251b902014-06-20 14:40:53 -07004811 didOne = false;
Siddharth Ray3c648c42017-10-02 17:30:58 -07004812 final int numWifiRxBins = Math.min(NUM_WIFI_SIGNAL_STRENGTH_BINS,
4813 wifiRxSignalStrengthDescription.length);
4814 for (int i=0; i<numWifiRxBins; i++) {
Dianne Hackborn3251b902014-06-20 14:40:53 -07004815 final long time = getWifiSignalStrengthTime(i, rawRealtime, which);
4816 if (time == 0) {
4817 continue;
4818 }
4819 sb.append("\n ");
4820 sb.append(prefix);
4821 didOne = true;
Siddharth Ray3c648c42017-10-02 17:30:58 -07004822 sb.append(" ");
4823 sb.append(wifiRxSignalStrengthDescription[i]);
Dianne Hackborn3251b902014-06-20 14:40:53 -07004824 formatTimeMs(sb, time/1000);
4825 sb.append("(");
4826 sb.append(formatRatioLocked(time, whichBatteryRealtime));
4827 sb.append(") ");
Dianne Hackbornca1bf212014-02-14 14:18:36 -08004828 }
4829 if (!didOne) sb.append(" (no activity)");
4830 pw.println(sb.toString());
4831
Siddharth Rayb50a6842017-12-14 15:15:28 -08004832 printControllerActivity(pw, sb, prefix, WIFI_CONTROLLER_NAME,
4833 getWifiControllerActivity(), which);
Adam Lesinskie08af192015-03-25 16:42:59 -07004834
Adam Lesinski50e47602015-12-04 17:04:54 -08004835 pw.print(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004836 sb.setLength(0);
4837 sb.append(prefix);
Siddharth Ray78ccaf52017-12-23 16:16:21 -08004838 sb.append(" GPS Statistics:");
4839 pw.println(sb.toString());
4840
4841 sb.setLength(0);
4842 sb.append(prefix);
4843 sb.append(" GPS signal quality (Top 4 Average CN0):");
4844 final String[] gpsSignalQualityDescription = new String[]{
4845 "poor (less than 20 dBHz): ",
4846 "good (greater than 20 dBHz): "};
4847 final int numGpsSignalQualityBins = Math.min(GnssMetrics.NUM_GPS_SIGNAL_QUALITY_LEVELS,
4848 gpsSignalQualityDescription.length);
4849 for (int i=0; i<numGpsSignalQualityBins; i++) {
4850 final long time = getGpsSignalQualityTime(i, rawRealtime, which);
4851 sb.append("\n ");
4852 sb.append(prefix);
4853 sb.append(" ");
4854 sb.append(gpsSignalQualityDescription[i]);
4855 formatTimeMs(sb, time/1000);
4856 sb.append("(");
4857 sb.append(formatRatioLocked(time, whichBatteryRealtime));
4858 sb.append(") ");
4859 }
4860 pw.println(sb.toString());
4861
4862 final long gpsBatteryDrainMaMs = getGpsBatteryDrainMaMs();
4863 if (gpsBatteryDrainMaMs > 0) {
4864 pw.print(prefix);
4865 sb.setLength(0);
4866 sb.append(prefix);
4867 sb.append(" Battery Drain (mAh): ");
4868 sb.append(Double.toString(((double) gpsBatteryDrainMaMs)/(3600 * 1000)));
4869 pw.println(sb.toString());
4870 }
4871
4872 pw.print(prefix);
4873 sb.setLength(0);
4874 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004875 sb.append(" CONNECTIVITY POWER SUMMARY END");
4876 pw.println(sb.toString());
4877 pw.println("");
4878
4879 pw.print(prefix);
Adam Lesinski50e47602015-12-04 17:04:54 -08004880 pw.print(" Bluetooth total received: "); pw.print(formatBytesLocked(btRxTotalBytes));
4881 pw.print(", sent: "); pw.println(formatBytesLocked(btTxTotalBytes));
4882
Adam Lesinski9f55cc72016-01-27 20:42:14 -08004883 final long bluetoothScanTimeMs = getBluetoothScanTime(rawRealtime, which) / 1000;
4884 sb.setLength(0);
4885 sb.append(prefix);
4886 sb.append(" Bluetooth scan time: "); formatTimeMs(sb, bluetoothScanTimeMs);
4887 pw.println(sb.toString());
4888
Adam Lesinski21f76aa2016-01-25 12:27:06 -08004889 printControllerActivity(pw, sb, prefix, "Bluetooth", getBluetoothControllerActivity(),
4890 which);
Adam Lesinskie283d332015-04-16 12:29:25 -07004891
Dianne Hackbornca1bf212014-02-14 14:18:36 -08004892 pw.println();
The Android Open Source Project10592532009-03-18 17:39:46 -07004893
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07004894 if (which == STATS_SINCE_UNPLUGGED) {
The Android Open Source Project10592532009-03-18 17:39:46 -07004895 if (getIsOnBattery()) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004896 pw.print(prefix); pw.println(" Device is currently unplugged");
Bookatzc8c44962017-05-11 12:12:54 -07004897 pw.print(prefix); pw.print(" Discharge cycle start level: ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004898 pw.println(getDischargeStartLevel());
4899 pw.print(prefix); pw.print(" Discharge cycle current level: ");
4900 pw.println(getDischargeCurrentLevel());
Dianne Hackborn99d04522010-08-20 13:43:00 -07004901 } else {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004902 pw.print(prefix); pw.println(" Device is currently plugged into power");
Bookatzc8c44962017-05-11 12:12:54 -07004903 pw.print(prefix); pw.print(" Last discharge cycle start level: ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004904 pw.println(getDischargeStartLevel());
Bookatzc8c44962017-05-11 12:12:54 -07004905 pw.print(prefix); pw.print(" Last discharge cycle end level: ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004906 pw.println(getDischargeCurrentLevel());
The Android Open Source Project10592532009-03-18 17:39:46 -07004907 }
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08004908 pw.print(prefix); pw.print(" Amount discharged while screen on: ");
Mike Mac2f518a2017-09-19 16:06:03 -07004909 pw.println(getDischargeAmountScreenOn());
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08004910 pw.print(prefix); pw.print(" Amount discharged while screen off: ");
Mike Mac2f518a2017-09-19 16:06:03 -07004911 pw.println(getDischargeAmountScreenOff());
4912 pw.print(prefix); pw.print(" Amount discharged while screen doze: ");
4913 pw.println(getDischargeAmountScreenDoze());
Dianne Hackborn617f8772009-03-31 15:04:46 -07004914 pw.println(" ");
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07004915 } else {
4916 pw.print(prefix); pw.println(" Device battery use since last full charge");
4917 pw.print(prefix); pw.print(" Amount discharged (lower bound): ");
Mike Mac2f518a2017-09-19 16:06:03 -07004918 pw.println(getLowDischargeAmountSinceCharge());
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07004919 pw.print(prefix); pw.print(" Amount discharged (upper bound): ");
Mike Mac2f518a2017-09-19 16:06:03 -07004920 pw.println(getHighDischargeAmountSinceCharge());
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08004921 pw.print(prefix); pw.print(" Amount discharged while screen on: ");
Mike Mac2f518a2017-09-19 16:06:03 -07004922 pw.println(getDischargeAmountScreenOnSinceCharge());
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08004923 pw.print(prefix); pw.print(" Amount discharged while screen off: ");
Mike Mac2f518a2017-09-19 16:06:03 -07004924 pw.println(getDischargeAmountScreenOffSinceCharge());
4925 pw.print(prefix); pw.print(" Amount discharged while screen doze: ");
4926 pw.println(getDischargeAmountScreenDozeSinceCharge());
Dianne Hackborn81038902012-11-26 17:04:09 -08004927 pw.println();
The Android Open Source Project10592532009-03-18 17:39:46 -07004928 }
Dianne Hackborn81038902012-11-26 17:04:09 -08004929
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004930 final BatteryStatsHelper helper = new BatteryStatsHelper(context, false, wifiOnly);
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004931 helper.create(this);
4932 helper.refreshStats(which, UserHandle.USER_ALL);
4933 List<BatterySipper> sippers = helper.getUsageList();
4934 if (sippers != null && sippers.size() > 0) {
4935 pw.print(prefix); pw.println(" Estimated power use (mAh):");
4936 pw.print(prefix); pw.print(" Capacity: ");
4937 printmAh(pw, helper.getPowerProfile().getBatteryCapacity());
Dianne Hackborn099bc622014-01-22 13:39:16 -08004938 pw.print(", Computed drain: "); printmAh(pw, helper.getComputedPower());
Dianne Hackborn536456f2014-05-23 16:51:05 -07004939 pw.print(", actual drain: "); printmAh(pw, helper.getMinDrainedPower());
4940 if (helper.getMinDrainedPower() != helper.getMaxDrainedPower()) {
4941 pw.print("-"); printmAh(pw, helper.getMaxDrainedPower());
4942 }
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004943 pw.println();
4944 for (int i=0; i<sippers.size(); i++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004945 final BatterySipper bs = sippers.get(i);
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004946 pw.print(prefix);
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004947 switch (bs.drainType) {
4948 case IDLE:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004949 pw.print(" Idle: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004950 break;
4951 case CELL:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004952 pw.print(" Cell standby: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004953 break;
4954 case PHONE:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004955 pw.print(" Phone calls: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004956 break;
4957 case WIFI:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004958 pw.print(" Wifi: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004959 break;
4960 case BLUETOOTH:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004961 pw.print(" Bluetooth: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004962 break;
4963 case SCREEN:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004964 pw.print(" Screen: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004965 break;
Dianne Hackbornabc7c492014-06-30 16:57:46 -07004966 case FLASHLIGHT:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004967 pw.print(" Flashlight: ");
Dianne Hackbornabc7c492014-06-30 16:57:46 -07004968 break;
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004969 case APP:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004970 pw.print(" Uid ");
Dianne Hackbornd45665b2014-02-26 12:35:32 -08004971 UserHandle.formatUid(pw, bs.uidObj.getUid());
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004972 pw.print(": ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004973 break;
4974 case USER:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004975 pw.print(" User "); pw.print(bs.userId);
4976 pw.print(": ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004977 break;
4978 case UNACCOUNTED:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004979 pw.print(" Unaccounted: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004980 break;
4981 case OVERCOUNTED:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004982 pw.print(" Over-counted: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004983 break;
Ruben Brunk5b1308f2015-06-03 18:49:27 -07004984 case CAMERA:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004985 pw.print(" Camera: ");
4986 break;
4987 default:
4988 pw.print(" ???: ");
Ruben Brunk5b1308f2015-06-03 18:49:27 -07004989 break;
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004990 }
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004991 printmAh(pw, bs.totalPowerMah);
4992
Adam Lesinski57123002015-06-12 16:12:07 -07004993 if (bs.usagePowerMah != bs.totalPowerMah) {
4994 // If the usage (generic power) isn't the whole amount, we list out
4995 // what components are involved in the calculation.
4996
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004997 pw.print(" (");
Adam Lesinski57123002015-06-12 16:12:07 -07004998 if (bs.usagePowerMah != 0) {
4999 pw.print(" usage=");
5000 printmAh(pw, bs.usagePowerMah);
5001 }
Adam Lesinski628ef9c2015-06-10 13:08:57 -07005002 if (bs.cpuPowerMah != 0) {
5003 pw.print(" cpu=");
5004 printmAh(pw, bs.cpuPowerMah);
5005 }
5006 if (bs.wakeLockPowerMah != 0) {
5007 pw.print(" wake=");
5008 printmAh(pw, bs.wakeLockPowerMah);
5009 }
5010 if (bs.mobileRadioPowerMah != 0) {
5011 pw.print(" radio=");
5012 printmAh(pw, bs.mobileRadioPowerMah);
5013 }
5014 if (bs.wifiPowerMah != 0) {
5015 pw.print(" wifi=");
5016 printmAh(pw, bs.wifiPowerMah);
5017 }
Adam Lesinski9f55cc72016-01-27 20:42:14 -08005018 if (bs.bluetoothPowerMah != 0) {
5019 pw.print(" bt=");
5020 printmAh(pw, bs.bluetoothPowerMah);
5021 }
Adam Lesinski628ef9c2015-06-10 13:08:57 -07005022 if (bs.gpsPowerMah != 0) {
5023 pw.print(" gps=");
5024 printmAh(pw, bs.gpsPowerMah);
5025 }
5026 if (bs.sensorPowerMah != 0) {
5027 pw.print(" sensor=");
5028 printmAh(pw, bs.sensorPowerMah);
5029 }
5030 if (bs.cameraPowerMah != 0) {
5031 pw.print(" camera=");
5032 printmAh(pw, bs.cameraPowerMah);
5033 }
5034 if (bs.flashlightPowerMah != 0) {
5035 pw.print(" flash=");
5036 printmAh(pw, bs.flashlightPowerMah);
5037 }
5038 pw.print(" )");
5039 }
Bookatz17d7d9d2017-06-08 14:50:46 -07005040
5041 // If there is additional smearing information, include it.
5042 if (bs.totalSmearedPowerMah != bs.totalPowerMah) {
5043 pw.print(" Including smearing: ");
5044 printmAh(pw, bs.totalSmearedPowerMah);
5045 pw.print(" (");
5046 if (bs.screenPowerMah != 0) {
5047 pw.print(" screen=");
5048 printmAh(pw, bs.screenPowerMah);
5049 }
5050 if (bs.proportionalSmearMah != 0) {
5051 pw.print(" proportional=");
5052 printmAh(pw, bs.proportionalSmearMah);
5053 }
5054 pw.print(" )");
5055 }
5056 if (bs.shouldHide) {
5057 pw.print(" Excluded from smearing");
5058 }
5059
Adam Lesinski628ef9c2015-06-10 13:08:57 -07005060 pw.println();
Dianne Hackborna7c837f2014-01-15 16:20:44 -08005061 }
Dianne Hackbornc46809e2014-01-15 16:20:44 -08005062 pw.println();
Dianne Hackborna7c837f2014-01-15 16:20:44 -08005063 }
5064
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005065 sippers = helper.getMobilemsppList();
5066 if (sippers != null && sippers.size() > 0) {
5067 pw.print(prefix); pw.println(" Per-app mobile ms per packet:");
Dianne Hackborn77b987f2014-02-26 16:20:52 -08005068 long totalTime = 0;
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005069 for (int i=0; i<sippers.size(); i++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005070 final BatterySipper bs = sippers.get(i);
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005071 sb.setLength(0);
5072 sb.append(prefix); sb.append(" Uid ");
5073 UserHandle.formatUid(sb, bs.uidObj.getUid());
5074 sb.append(": "); sb.append(BatteryStatsHelper.makemAh(bs.mobilemspp));
5075 sb.append(" ("); sb.append(bs.mobileRxPackets+bs.mobileTxPackets);
5076 sb.append(" packets over "); formatTimeMsNoSpace(sb, bs.mobileActive);
Dianne Hackborn77b987f2014-02-26 16:20:52 -08005077 sb.append(") "); sb.append(bs.mobileActiveCount); sb.append("x");
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005078 pw.println(sb.toString());
Dianne Hackborn77b987f2014-02-26 16:20:52 -08005079 totalTime += bs.mobileActive;
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005080 }
Dianne Hackborn77b987f2014-02-26 16:20:52 -08005081 sb.setLength(0);
5082 sb.append(prefix);
5083 sb.append(" TOTAL TIME: ");
5084 formatTimeMs(sb, totalTime);
5085 sb.append("("); sb.append(formatRatioLocked(totalTime, whichBatteryRealtime));
5086 sb.append(")");
5087 pw.println(sb.toString());
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005088 pw.println();
5089 }
5090
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005091 final Comparator<TimerEntry> timerComparator = new Comparator<TimerEntry>() {
5092 @Override
5093 public int compare(TimerEntry lhs, TimerEntry rhs) {
5094 long lhsTime = lhs.mTime;
5095 long rhsTime = rhs.mTime;
5096 if (lhsTime < rhsTime) {
5097 return 1;
5098 }
5099 if (lhsTime > rhsTime) {
5100 return -1;
5101 }
5102 return 0;
5103 }
5104 };
5105
5106 if (reqUid < 0) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005107 final Map<String, ? extends BatteryStats.Timer> kernelWakelocks
5108 = getKernelWakelockStats();
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005109 if (kernelWakelocks.size() > 0) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005110 final ArrayList<TimerEntry> ktimers = new ArrayList<>();
5111 for (Map.Entry<String, ? extends BatteryStats.Timer> ent
5112 : kernelWakelocks.entrySet()) {
5113 final BatteryStats.Timer timer = ent.getValue();
5114 final long totalTimeMillis = computeWakeLock(timer, rawRealtime, which);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005115 if (totalTimeMillis > 0) {
5116 ktimers.add(new TimerEntry(ent.getKey(), 0, timer, totalTimeMillis));
5117 }
5118 }
5119 if (ktimers.size() > 0) {
5120 Collections.sort(ktimers, timerComparator);
5121 pw.print(prefix); pw.println(" All kernel wake locks:");
5122 for (int i=0; i<ktimers.size(); i++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005123 final TimerEntry timer = ktimers.get(i);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005124 String linePrefix = ": ";
5125 sb.setLength(0);
5126 sb.append(prefix);
5127 sb.append(" Kernel Wake lock ");
5128 sb.append(timer.mName);
5129 linePrefix = printWakeLock(sb, timer.mTimer, rawRealtime, null,
5130 which, linePrefix);
5131 if (!linePrefix.equals(": ")) {
5132 sb.append(" realtime");
5133 // Only print out wake locks that were held
5134 pw.println(sb.toString());
5135 }
5136 }
5137 pw.println();
5138 }
5139 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005140
Dianne Hackborna1bd7922014-03-21 11:07:11 -07005141 if (timers.size() > 0) {
5142 Collections.sort(timers, timerComparator);
5143 pw.print(prefix); pw.println(" All partial wake locks:");
5144 for (int i=0; i<timers.size(); i++) {
5145 TimerEntry timer = timers.get(i);
5146 sb.setLength(0);
5147 sb.append(" Wake lock ");
5148 UserHandle.formatUid(sb, timer.mId);
5149 sb.append(" ");
5150 sb.append(timer.mName);
5151 printWakeLock(sb, timer.mTimer, rawRealtime, null, which, ": ");
5152 sb.append(" realtime");
5153 pw.println(sb.toString());
5154 }
5155 timers.clear();
5156 pw.println();
Dianne Hackborn81038902012-11-26 17:04:09 -08005157 }
Dianne Hackborna1bd7922014-03-21 11:07:11 -07005158
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005159 final Map<String, ? extends Timer> wakeupReasons = getWakeupReasonStats();
Dianne Hackborna1bd7922014-03-21 11:07:11 -07005160 if (wakeupReasons.size() > 0) {
5161 pw.print(prefix); pw.println(" All wakeup reasons:");
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005162 final ArrayList<TimerEntry> reasons = new ArrayList<>();
Dianne Hackbornc3940bc2014-09-05 15:50:25 -07005163 for (Map.Entry<String, ? extends Timer> ent : wakeupReasons.entrySet()) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005164 final Timer timer = ent.getValue();
Dianne Hackbornc3940bc2014-09-05 15:50:25 -07005165 reasons.add(new TimerEntry(ent.getKey(), 0, timer,
5166 timer.getCountLocked(which)));
Dianne Hackborna1bd7922014-03-21 11:07:11 -07005167 }
5168 Collections.sort(reasons, timerComparator);
5169 for (int i=0; i<reasons.size(); i++) {
5170 TimerEntry timer = reasons.get(i);
5171 String linePrefix = ": ";
5172 sb.setLength(0);
5173 sb.append(prefix);
5174 sb.append(" Wakeup reason ");
5175 sb.append(timer.mName);
Dianne Hackbornc3940bc2014-09-05 15:50:25 -07005176 printWakeLock(sb, timer.mTimer, rawRealtime, null, which, ": ");
5177 sb.append(" realtime");
Dianne Hackborna1bd7922014-03-21 11:07:11 -07005178 pw.println(sb.toString());
5179 }
5180 pw.println();
5181 }
Dianne Hackborn81038902012-11-26 17:04:09 -08005182 }
Evan Millar22ac0432009-03-31 11:33:18 -07005183
James Carr2dd7e5e2016-07-20 18:48:39 -07005184 final LongSparseArray<? extends Timer> mMemoryStats = getKernelMemoryStats();
Bookatz50df7112017-08-04 14:53:26 -07005185 if (mMemoryStats.size() > 0) {
5186 pw.println(" Memory Stats");
5187 for (int i = 0; i < mMemoryStats.size(); i++) {
5188 sb.setLength(0);
5189 sb.append(" Bandwidth ");
5190 sb.append(mMemoryStats.keyAt(i));
5191 sb.append(" Time ");
5192 sb.append(mMemoryStats.valueAt(i).getTotalTimeLocked(rawRealtime, which));
5193 pw.println(sb.toString());
5194 }
5195 pw.println();
5196 }
5197
5198 final Map<String, ? extends Timer> rpmStats = getRpmStats();
5199 if (rpmStats.size() > 0) {
5200 pw.print(prefix); pw.println(" Resource Power Manager Stats");
5201 if (rpmStats.size() > 0) {
5202 for (Map.Entry<String, ? extends Timer> ent : rpmStats.entrySet()) {
5203 final String timerName = ent.getKey();
5204 final Timer timer = ent.getValue();
5205 printTimer(pw, sb, timer, rawRealtime, which, prefix, timerName);
5206 }
5207 }
5208 pw.println();
5209 }
Bookatz82b341172017-09-07 19:06:08 -07005210 if (SCREEN_OFF_RPM_STATS_ENABLED) {
5211 final Map<String, ? extends Timer> screenOffRpmStats = getScreenOffRpmStats();
Bookatz50df7112017-08-04 14:53:26 -07005212 if (screenOffRpmStats.size() > 0) {
Bookatz82b341172017-09-07 19:06:08 -07005213 pw.print(prefix);
5214 pw.println(" Resource Power Manager Stats for when screen was off");
5215 if (screenOffRpmStats.size() > 0) {
5216 for (Map.Entry<String, ? extends Timer> ent : screenOffRpmStats.entrySet()) {
5217 final String timerName = ent.getKey();
5218 final Timer timer = ent.getValue();
5219 printTimer(pw, sb, timer, rawRealtime, which, prefix, timerName);
5220 }
Bookatz50df7112017-08-04 14:53:26 -07005221 }
Bookatz82b341172017-09-07 19:06:08 -07005222 pw.println();
Bookatz50df7112017-08-04 14:53:26 -07005223 }
James Carr2dd7e5e2016-07-20 18:48:39 -07005224 }
5225
Sudheer Shanka9b735c52017-05-09 18:26:18 -07005226 final long[] cpuFreqs = getCpuFreqs();
5227 if (cpuFreqs != null) {
5228 sb.setLength(0);
Bookatz50df7112017-08-04 14:53:26 -07005229 sb.append(" CPU freqs:");
Sudheer Shanka9b735c52017-05-09 18:26:18 -07005230 for (int i = 0; i < cpuFreqs.length; ++i) {
5231 sb.append(" " + cpuFreqs[i]);
5232 }
5233 pw.println(sb.toString());
Bookatz50df7112017-08-04 14:53:26 -07005234 pw.println();
Sudheer Shanka9b735c52017-05-09 18:26:18 -07005235 }
5236
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005237 for (int iu=0; iu<NU; iu++) {
5238 final int uid = uidStats.keyAt(iu);
Dianne Hackborne4a59512010-12-07 11:08:07 -08005239 if (reqUid >= 0 && uid != reqUid && uid != Process.SYSTEM_UID) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08005240 continue;
5241 }
Bookatzc8c44962017-05-11 12:12:54 -07005242
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005243 final Uid u = uidStats.valueAt(iu);
Dianne Hackborna4cc2052013-07-08 17:31:25 -07005244
5245 pw.print(prefix);
5246 pw.print(" ");
5247 UserHandle.formatUid(pw, uid);
5248 pw.println(":");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005249 boolean uidActivity = false;
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005250
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005251 final long mobileRxBytes = u.getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which);
5252 final long mobileTxBytes = u.getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which);
5253 final long wifiRxBytes = u.getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which);
5254 final long wifiTxBytes = u.getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which);
Adam Lesinski50e47602015-12-04 17:04:54 -08005255 final long btRxBytes = u.getNetworkActivityBytes(NETWORK_BT_RX_DATA, which);
5256 final long btTxBytes = u.getNetworkActivityBytes(NETWORK_BT_TX_DATA, which);
5257
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005258 final long mobileRxPackets = u.getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which);
5259 final long mobileTxPackets = u.getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005260 final long wifiRxPackets = u.getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which);
5261 final long wifiTxPackets = u.getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which);
Adam Lesinski50e47602015-12-04 17:04:54 -08005262
5263 final long uidMobileActiveTime = u.getMobileRadioActiveTime(which);
5264 final int uidMobileActiveCount = u.getMobileRadioActiveCount(which);
5265
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005266 final long fullWifiLockOnTime = u.getFullWifiLockTime(rawRealtime, which);
5267 final long wifiScanTime = u.getWifiScanTime(rawRealtime, which);
5268 final int wifiScanCount = u.getWifiScanCount(which);
Bookatz867c0d72017-03-07 18:23:42 -08005269 final int wifiScanCountBg = u.getWifiScanBackgroundCount(which);
5270 // 'actualTime' are unpooled and always since reset (regardless of 'which')
5271 final long wifiScanActualTime = u.getWifiScanActualTime(rawRealtime);
5272 final long wifiScanActualTimeBg = u.getWifiScanBackgroundTime(rawRealtime);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005273 final long uidWifiRunningTime = u.getWifiRunningTime(rawRealtime, which);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07005274
Adam Lesinski5f056f62016-07-14 16:56:08 -07005275 final long mobileWakeup = u.getMobileRadioApWakeupCount(which);
5276 final long wifiWakeup = u.getWifiRadioApWakeupCount(which);
5277
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08005278 if (mobileRxBytes > 0 || mobileTxBytes > 0
5279 || mobileRxPackets > 0 || mobileTxPackets > 0) {
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07005280 pw.print(prefix); pw.print(" Mobile network: ");
5281 pw.print(formatBytesLocked(mobileRxBytes)); pw.print(" received, ");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08005282 pw.print(formatBytesLocked(mobileTxBytes));
5283 pw.print(" sent (packets "); pw.print(mobileRxPackets);
5284 pw.print(" received, "); pw.print(mobileTxPackets); pw.println(" sent)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005285 }
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005286 if (uidMobileActiveTime > 0 || uidMobileActiveCount > 0) {
5287 sb.setLength(0);
5288 sb.append(prefix); sb.append(" Mobile radio active: ");
5289 formatTimeMs(sb, uidMobileActiveTime / 1000);
5290 sb.append("(");
5291 sb.append(formatRatioLocked(uidMobileActiveTime, mobileActiveTime));
5292 sb.append(") "); sb.append(uidMobileActiveCount); sb.append("x");
5293 long packets = mobileRxPackets + mobileTxPackets;
5294 if (packets == 0) {
5295 packets = 1;
5296 }
5297 sb.append(" @ ");
5298 sb.append(BatteryStatsHelper.makemAh(uidMobileActiveTime / 1000 / (double)packets));
5299 sb.append(" mspp");
5300 pw.println(sb.toString());
5301 }
5302
Adam Lesinski5f056f62016-07-14 16:56:08 -07005303 if (mobileWakeup > 0) {
5304 sb.setLength(0);
5305 sb.append(prefix);
5306 sb.append(" Mobile radio AP wakeups: ");
5307 sb.append(mobileWakeup);
5308 pw.println(sb.toString());
5309 }
5310
Siddharth Rayb50a6842017-12-14 15:15:28 -08005311 printControllerActivityIfInteresting(pw, sb, prefix + " ",
5312 CELLULAR_CONTROLLER_NAME, u.getModemControllerActivity(), which);
Adam Lesinski21f76aa2016-01-25 12:27:06 -08005313
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08005314 if (wifiRxBytes > 0 || wifiTxBytes > 0 || wifiRxPackets > 0 || wifiTxPackets > 0) {
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07005315 pw.print(prefix); pw.print(" Wi-Fi network: ");
5316 pw.print(formatBytesLocked(wifiRxBytes)); pw.print(" received, ");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08005317 pw.print(formatBytesLocked(wifiTxBytes));
5318 pw.print(" sent (packets "); pw.print(wifiRxPackets);
5319 pw.print(" received, "); pw.print(wifiTxPackets); pw.println(" sent)");
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07005320 }
5321
Dianne Hackborn62793e42015-03-09 11:15:41 -07005322 if (fullWifiLockOnTime != 0 || wifiScanTime != 0 || wifiScanCount != 0
Bookatz867c0d72017-03-07 18:23:42 -08005323 || wifiScanCountBg != 0 || wifiScanActualTime != 0 || wifiScanActualTimeBg != 0
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005324 || uidWifiRunningTime != 0) {
5325 sb.setLength(0);
5326 sb.append(prefix); sb.append(" Wifi Running: ");
5327 formatTimeMs(sb, uidWifiRunningTime / 1000);
5328 sb.append("("); sb.append(formatRatioLocked(uidWifiRunningTime,
5329 whichBatteryRealtime)); sb.append(")\n");
Bookatzc8c44962017-05-11 12:12:54 -07005330 sb.append(prefix); sb.append(" Full Wifi Lock: ");
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005331 formatTimeMs(sb, fullWifiLockOnTime / 1000);
5332 sb.append("("); sb.append(formatRatioLocked(fullWifiLockOnTime,
5333 whichBatteryRealtime)); sb.append(")\n");
Bookatz867c0d72017-03-07 18:23:42 -08005334 sb.append(prefix); sb.append(" Wifi Scan (blamed): ");
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005335 formatTimeMs(sb, wifiScanTime / 1000);
5336 sb.append("("); sb.append(formatRatioLocked(wifiScanTime,
Dianne Hackborn62793e42015-03-09 11:15:41 -07005337 whichBatteryRealtime)); sb.append(") ");
5338 sb.append(wifiScanCount);
Bookatz867c0d72017-03-07 18:23:42 -08005339 sb.append("x\n");
5340 // actual and background times are unpooled and since reset (regardless of 'which')
5341 sb.append(prefix); sb.append(" Wifi Scan (actual): ");
5342 formatTimeMs(sb, wifiScanActualTime / 1000);
5343 sb.append("("); sb.append(formatRatioLocked(wifiScanActualTime,
5344 computeBatteryRealtime(rawRealtime, STATS_SINCE_CHARGED)));
5345 sb.append(") ");
5346 sb.append(wifiScanCount);
5347 sb.append("x\n");
5348 sb.append(prefix); sb.append(" Background Wifi Scan: ");
5349 formatTimeMs(sb, wifiScanActualTimeBg / 1000);
5350 sb.append("("); sb.append(formatRatioLocked(wifiScanActualTimeBg,
5351 computeBatteryRealtime(rawRealtime, STATS_SINCE_CHARGED)));
5352 sb.append(") ");
5353 sb.append(wifiScanCountBg);
Dianne Hackborn62793e42015-03-09 11:15:41 -07005354 sb.append("x");
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005355 pw.println(sb.toString());
5356 }
5357
Adam Lesinski5f056f62016-07-14 16:56:08 -07005358 if (wifiWakeup > 0) {
5359 sb.setLength(0);
5360 sb.append(prefix);
5361 sb.append(" WiFi AP wakeups: ");
5362 sb.append(wifiWakeup);
5363 pw.println(sb.toString());
5364 }
5365
Siddharth Rayb50a6842017-12-14 15:15:28 -08005366 printControllerActivityIfInteresting(pw, sb, prefix + " ", WIFI_CONTROLLER_NAME,
Adam Lesinski21f76aa2016-01-25 12:27:06 -08005367 u.getWifiControllerActivity(), which);
Adam Lesinski049c88b2015-05-28 11:38:12 -07005368
Adam Lesinski50e47602015-12-04 17:04:54 -08005369 if (btRxBytes > 0 || btTxBytes > 0) {
5370 pw.print(prefix); pw.print(" Bluetooth network: ");
5371 pw.print(formatBytesLocked(btRxBytes)); pw.print(" received, ");
5372 pw.print(formatBytesLocked(btTxBytes));
5373 pw.println(" sent");
5374 }
5375
Bookatz867c0d72017-03-07 18:23:42 -08005376 final Timer bleTimer = u.getBluetoothScanTimer();
5377 if (bleTimer != null) {
5378 // Convert from microseconds to milliseconds with rounding
5379 final long totalTimeMs = (bleTimer.getTotalTimeLocked(rawRealtime, which) + 500)
5380 / 1000;
5381 if (totalTimeMs != 0) {
5382 final int count = bleTimer.getCountLocked(which);
5383 final Timer bleTimerBg = u.getBluetoothScanBackgroundTimer();
5384 final int countBg = bleTimerBg != null ? bleTimerBg.getCountLocked(which) : 0;
Bookatz867c0d72017-03-07 18:23:42 -08005385 // 'actualTime' are unpooled and always since reset (regardless of 'which')
5386 final long actualTimeMs = bleTimer.getTotalDurationMsLocked(rawRealtimeMs);
5387 final long actualTimeMsBg = bleTimerBg != null ?
5388 bleTimerBg.getTotalDurationMsLocked(rawRealtimeMs) : 0;
Bookatzb1f04f32017-05-19 13:57:32 -07005389 // Result counters
Bookatz956f36bf2017-04-28 09:48:17 -07005390 final int resultCount = u.getBluetoothScanResultCounter() != null ?
5391 u.getBluetoothScanResultCounter().getCountLocked(which) : 0;
Bookatzb1f04f32017-05-19 13:57:32 -07005392 final int resultCountBg = u.getBluetoothScanResultBgCounter() != null ?
5393 u.getBluetoothScanResultBgCounter().getCountLocked(which) : 0;
5394 // Unoptimized scan timer. Unpooled and since reset (regardless of 'which').
5395 final Timer unoptimizedScanTimer = u.getBluetoothUnoptimizedScanTimer();
5396 final long unoptimizedScanTotalTime = unoptimizedScanTimer != null ?
5397 unoptimizedScanTimer.getTotalDurationMsLocked(rawRealtimeMs) : 0;
5398 final long unoptimizedScanMaxTime = unoptimizedScanTimer != null ?
5399 unoptimizedScanTimer.getMaxDurationMsLocked(rawRealtimeMs) : 0;
5400 // Unoptimized bg scan timer. Unpooled and since reset (regardless of 'which').
5401 final Timer unoptimizedScanTimerBg =
5402 u.getBluetoothUnoptimizedScanBackgroundTimer();
5403 final long unoptimizedScanTotalTimeBg = unoptimizedScanTimerBg != null ?
5404 unoptimizedScanTimerBg.getTotalDurationMsLocked(rawRealtimeMs) : 0;
5405 final long unoptimizedScanMaxTimeBg = unoptimizedScanTimerBg != null ?
5406 unoptimizedScanTimerBg.getMaxDurationMsLocked(rawRealtimeMs) : 0;
Bookatz867c0d72017-03-07 18:23:42 -08005407
5408 sb.setLength(0);
Bookatz867c0d72017-03-07 18:23:42 -08005409 if (actualTimeMs != totalTimeMs) {
Bookatzb1f04f32017-05-19 13:57:32 -07005410 sb.append(prefix);
5411 sb.append(" Bluetooth Scan (total blamed realtime): ");
Bookatz867c0d72017-03-07 18:23:42 -08005412 formatTimeMs(sb, totalTimeMs);
Bookatzb1f04f32017-05-19 13:57:32 -07005413 sb.append(" (");
5414 sb.append(count);
5415 sb.append(" times)");
5416 if (bleTimer.isRunningLocked()) {
5417 sb.append(" (currently running)");
5418 }
5419 sb.append("\n");
Bookatz867c0d72017-03-07 18:23:42 -08005420 }
Bookatzb1f04f32017-05-19 13:57:32 -07005421
5422 sb.append(prefix);
5423 sb.append(" Bluetooth Scan (total actual realtime): ");
5424 formatTimeMs(sb, actualTimeMs); // since reset, ignores 'which'
5425 sb.append(" (");
Bookatz867c0d72017-03-07 18:23:42 -08005426 sb.append(count);
5427 sb.append(" times)");
5428 if (bleTimer.isRunningLocked()) {
Bookatzb1f04f32017-05-19 13:57:32 -07005429 sb.append(" (currently running)");
Bookatz867c0d72017-03-07 18:23:42 -08005430 }
Bookatzb1f04f32017-05-19 13:57:32 -07005431 sb.append("\n");
5432 if (actualTimeMsBg > 0 || countBg > 0) {
5433 sb.append(prefix);
5434 sb.append(" Bluetooth Scan (background realtime): ");
5435 formatTimeMs(sb, actualTimeMsBg); // since reset, ignores 'which'
5436 sb.append(" (");
Bookatz867c0d72017-03-07 18:23:42 -08005437 sb.append(countBg);
5438 sb.append(" times)");
Bookatzb1f04f32017-05-19 13:57:32 -07005439 if (bleTimerBg != null && bleTimerBg.isRunningLocked()) {
5440 sb.append(" (currently running in background)");
5441 }
5442 sb.append("\n");
Bookatz867c0d72017-03-07 18:23:42 -08005443 }
Bookatzb1f04f32017-05-19 13:57:32 -07005444
5445 sb.append(prefix);
5446 sb.append(" Bluetooth Scan Results: ");
Bookatz956f36bf2017-04-28 09:48:17 -07005447 sb.append(resultCount);
Bookatzb1f04f32017-05-19 13:57:32 -07005448 sb.append(" (");
5449 sb.append(resultCountBg);
5450 sb.append(" in background)");
5451
5452 if (unoptimizedScanTotalTime > 0 || unoptimizedScanTotalTimeBg > 0) {
5453 sb.append("\n");
5454 sb.append(prefix);
5455 sb.append(" Unoptimized Bluetooth Scan (realtime): ");
5456 formatTimeMs(sb, unoptimizedScanTotalTime); // since reset, ignores 'which'
5457 sb.append(" (max ");
5458 formatTimeMs(sb, unoptimizedScanMaxTime); // since reset, ignores 'which'
5459 sb.append(")");
5460 if (unoptimizedScanTimer != null
5461 && unoptimizedScanTimer.isRunningLocked()) {
5462 sb.append(" (currently running unoptimized)");
5463 }
5464 if (unoptimizedScanTimerBg != null && unoptimizedScanTotalTimeBg > 0) {
5465 sb.append("\n");
5466 sb.append(prefix);
5467 sb.append(" Unoptimized Bluetooth Scan (background realtime): ");
5468 formatTimeMs(sb, unoptimizedScanTotalTimeBg); // since reset
5469 sb.append(" (max ");
5470 formatTimeMs(sb, unoptimizedScanMaxTimeBg); // since reset
5471 sb.append(")");
5472 if (unoptimizedScanTimerBg.isRunningLocked()) {
5473 sb.append(" (currently running unoptimized in background)");
5474 }
5475 }
5476 }
Bookatz867c0d72017-03-07 18:23:42 -08005477 pw.println(sb.toString());
5478 uidActivity = true;
5479 }
5480 }
5481
5482
Adam Lesinski9f55cc72016-01-27 20:42:14 -08005483
Dianne Hackborn617f8772009-03-31 15:04:46 -07005484 if (u.hasUserActivity()) {
5485 boolean hasData = false;
Raph Levien4c7a4a72012-08-03 14:32:39 -07005486 for (int i=0; i<Uid.NUM_USER_ACTIVITY_TYPES; i++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005487 final int val = u.getUserActivityCount(i, which);
Dianne Hackborn617f8772009-03-31 15:04:46 -07005488 if (val != 0) {
5489 if (!hasData) {
5490 sb.setLength(0);
5491 sb.append(" User activity: ");
5492 hasData = true;
5493 } else {
5494 sb.append(", ");
5495 }
5496 sb.append(val);
5497 sb.append(" ");
5498 sb.append(Uid.USER_ACTIVITY_TYPES[i]);
5499 }
5500 }
5501 if (hasData) {
5502 pw.println(sb.toString());
5503 }
5504 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005505
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005506 final ArrayMap<String, ? extends BatteryStats.Uid.Wakelock> wakelocks
5507 = u.getWakelockStats();
5508 long totalFullWakelock = 0, totalPartialWakelock = 0, totalWindowWakelock = 0;
Jeff Brown6a8bd7b2015-06-19 15:07:51 -07005509 long totalDrawWakelock = 0;
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005510 int countWakelock = 0;
5511 for (int iw=wakelocks.size()-1; iw>=0; iw--) {
5512 final Uid.Wakelock wl = wakelocks.valueAt(iw);
5513 String linePrefix = ": ";
5514 sb.setLength(0);
5515 sb.append(prefix);
5516 sb.append(" Wake lock ");
5517 sb.append(wakelocks.keyAt(iw));
5518 linePrefix = printWakeLock(sb, wl.getWakeTime(WAKE_TYPE_FULL), rawRealtime,
5519 "full", which, linePrefix);
Bookatz5b5ec322017-05-26 09:40:38 -07005520 final Timer pTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
5521 linePrefix = printWakeLock(sb, pTimer, rawRealtime,
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005522 "partial", which, linePrefix);
Bookatz5b5ec322017-05-26 09:40:38 -07005523 linePrefix = printWakeLock(sb, pTimer != null ? pTimer.getSubTimer() : null,
5524 rawRealtime, "background partial", which, linePrefix);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005525 linePrefix = printWakeLock(sb, wl.getWakeTime(WAKE_TYPE_WINDOW), rawRealtime,
5526 "window", which, linePrefix);
Jeff Brown6a8bd7b2015-06-19 15:07:51 -07005527 linePrefix = printWakeLock(sb, wl.getWakeTime(WAKE_TYPE_DRAW), rawRealtime,
5528 "draw", which, linePrefix);
Adam Lesinski9425fe22015-06-19 12:02:13 -07005529 sb.append(" realtime");
5530 pw.println(sb.toString());
5531 uidActivity = true;
5532 countWakelock++;
5533
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005534 totalFullWakelock += computeWakeLock(wl.getWakeTime(WAKE_TYPE_FULL),
5535 rawRealtime, which);
5536 totalPartialWakelock += computeWakeLock(wl.getWakeTime(WAKE_TYPE_PARTIAL),
5537 rawRealtime, which);
5538 totalWindowWakelock += computeWakeLock(wl.getWakeTime(WAKE_TYPE_WINDOW),
5539 rawRealtime, which);
Jeff Brown6a8bd7b2015-06-19 15:07:51 -07005540 totalDrawWakelock += computeWakeLock(wl.getWakeTime(WAKE_TYPE_DRAW),
Adam Lesinski9425fe22015-06-19 12:02:13 -07005541 rawRealtime, which);
Dianne Hackbornfdb19562014-07-11 16:03:36 -07005542 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005543 if (countWakelock > 1) {
Bookatzc8c44962017-05-11 12:12:54 -07005544 // get unpooled partial wakelock quantities (unlike totalPartialWakelock, which is
5545 // pooled and therefore just a lower bound)
5546 long actualTotalPartialWakelock = 0;
5547 long actualBgPartialWakelock = 0;
5548 if (u.getAggregatedPartialWakelockTimer() != null) {
5549 final Timer aggTimer = u.getAggregatedPartialWakelockTimer();
5550 // Convert from microseconds to milliseconds with rounding
5551 actualTotalPartialWakelock =
Bookatz6d799932017-06-07 12:30:07 -07005552 aggTimer.getTotalDurationMsLocked(rawRealtimeMs);
Bookatzc8c44962017-05-11 12:12:54 -07005553 final Timer bgAggTimer = aggTimer.getSubTimer();
5554 actualBgPartialWakelock = bgAggTimer != null ?
Bookatz6d799932017-06-07 12:30:07 -07005555 bgAggTimer.getTotalDurationMsLocked(rawRealtimeMs) : 0;
Bookatzc8c44962017-05-11 12:12:54 -07005556 }
5557
5558 if (actualTotalPartialWakelock != 0 || actualBgPartialWakelock != 0 ||
5559 totalFullWakelock != 0 || totalPartialWakelock != 0 ||
5560 totalWindowWakelock != 0) {
Dianne Hackbornfdb19562014-07-11 16:03:36 -07005561 sb.setLength(0);
5562 sb.append(prefix);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005563 sb.append(" TOTAL wake: ");
5564 boolean needComma = false;
5565 if (totalFullWakelock != 0) {
5566 needComma = true;
5567 formatTimeMs(sb, totalFullWakelock);
5568 sb.append("full");
Dianne Hackbornfdb19562014-07-11 16:03:36 -07005569 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005570 if (totalPartialWakelock != 0) {
5571 if (needComma) {
5572 sb.append(", ");
5573 }
5574 needComma = true;
5575 formatTimeMs(sb, totalPartialWakelock);
Bookatzc8c44962017-05-11 12:12:54 -07005576 sb.append("blamed partial");
5577 }
5578 if (actualTotalPartialWakelock != 0) {
5579 if (needComma) {
5580 sb.append(", ");
5581 }
5582 needComma = true;
5583 formatTimeMs(sb, actualTotalPartialWakelock);
5584 sb.append("actual partial");
5585 }
5586 if (actualBgPartialWakelock != 0) {
5587 if (needComma) {
5588 sb.append(", ");
5589 }
5590 needComma = true;
5591 formatTimeMs(sb, actualBgPartialWakelock);
5592 sb.append("actual background partial");
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005593 }
5594 if (totalWindowWakelock != 0) {
5595 if (needComma) {
5596 sb.append(", ");
5597 }
5598 needComma = true;
5599 formatTimeMs(sb, totalWindowWakelock);
5600 sb.append("window");
5601 }
Jeff Brown6a8bd7b2015-06-19 15:07:51 -07005602 if (totalDrawWakelock != 0) {
Adam Lesinski9425fe22015-06-19 12:02:13 -07005603 if (needComma) {
5604 sb.append(",");
5605 }
5606 needComma = true;
Jeff Brown6a8bd7b2015-06-19 15:07:51 -07005607 formatTimeMs(sb, totalDrawWakelock);
5608 sb.append("draw");
Adam Lesinski9425fe22015-06-19 12:02:13 -07005609 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005610 sb.append(" realtime");
Dianne Hackbornfdb19562014-07-11 16:03:36 -07005611 pw.println(sb.toString());
Dianne Hackbornfdb19562014-07-11 16:03:36 -07005612 }
5613 }
5614
Ahmed ElArabawyddd09692017-10-30 17:58:29 -07005615 // Calculate multicast wakelock stats
5616 final Timer mcTimer = u.getMulticastWakelockStats();
5617 if (mcTimer != null) {
5618 final long multicastWakeLockTimeMicros = mcTimer.getTotalTimeLocked(rawRealtime, which);
5619 final int multicastWakeLockCount = mcTimer.getCountLocked(which);
5620
5621 if (multicastWakeLockTimeMicros > 0) {
5622 sb.setLength(0);
5623 sb.append(prefix);
5624 sb.append(" WiFi Multicast Wakelock");
5625 sb.append(" count = ");
5626 sb.append(multicastWakeLockCount);
5627 sb.append(" time = ");
5628 formatTimeMsNoSpace(sb, (multicastWakeLockTimeMicros + 500) / 1000);
5629 pw.println(sb.toString());
5630 }
5631 }
5632
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005633 final ArrayMap<String, ? extends Timer> syncs = u.getSyncStats();
5634 for (int isy=syncs.size()-1; isy>=0; isy--) {
5635 final Timer timer = syncs.valueAt(isy);
5636 // Convert from microseconds to milliseconds with rounding
5637 final long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000;
5638 final int count = timer.getCountLocked(which);
Bookatz2bffb5b2017-04-13 11:59:33 -07005639 final Timer bgTimer = timer.getSubTimer();
5640 final long bgTime = bgTimer != null ?
Bookatz6d799932017-06-07 12:30:07 -07005641 bgTimer.getTotalDurationMsLocked(rawRealtimeMs) : -1;
Bookatz2bffb5b2017-04-13 11:59:33 -07005642 final int bgCount = bgTimer != null ? bgTimer.getCountLocked(which) : -1;
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005643 sb.setLength(0);
5644 sb.append(prefix);
5645 sb.append(" Sync ");
5646 sb.append(syncs.keyAt(isy));
5647 sb.append(": ");
5648 if (totalTime != 0) {
5649 formatTimeMs(sb, totalTime);
5650 sb.append("realtime (");
5651 sb.append(count);
5652 sb.append(" times)");
Bookatz2bffb5b2017-04-13 11:59:33 -07005653 if (bgTime > 0) {
5654 sb.append(", ");
5655 formatTimeMs(sb, bgTime);
5656 sb.append("background (");
5657 sb.append(bgCount);
5658 sb.append(" times)");
5659 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005660 } else {
5661 sb.append("(not used)");
5662 }
5663 pw.println(sb.toString());
5664 uidActivity = true;
5665 }
5666
5667 final ArrayMap<String, ? extends Timer> jobs = u.getJobStats();
5668 for (int ij=jobs.size()-1; ij>=0; ij--) {
5669 final Timer timer = jobs.valueAt(ij);
5670 // Convert from microseconds to milliseconds with rounding
5671 final long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000;
5672 final int count = timer.getCountLocked(which);
Bookatzaa4594a2017-03-24 12:39:56 -07005673 final Timer bgTimer = timer.getSubTimer();
5674 final long bgTime = bgTimer != null ?
Bookatz6d799932017-06-07 12:30:07 -07005675 bgTimer.getTotalDurationMsLocked(rawRealtimeMs) : -1;
Bookatzaa4594a2017-03-24 12:39:56 -07005676 final int bgCount = bgTimer != null ? bgTimer.getCountLocked(which) : -1;
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005677 sb.setLength(0);
5678 sb.append(prefix);
5679 sb.append(" Job ");
5680 sb.append(jobs.keyAt(ij));
5681 sb.append(": ");
5682 if (totalTime != 0) {
5683 formatTimeMs(sb, totalTime);
5684 sb.append("realtime (");
5685 sb.append(count);
5686 sb.append(" times)");
Bookatzaa4594a2017-03-24 12:39:56 -07005687 if (bgTime > 0) {
5688 sb.append(", ");
5689 formatTimeMs(sb, bgTime);
5690 sb.append("background (");
5691 sb.append(bgCount);
5692 sb.append(" times)");
5693 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005694 } else {
5695 sb.append("(not used)");
5696 }
5697 pw.println(sb.toString());
5698 uidActivity = true;
5699 }
5700
Dianne Hackborn94326cb2017-06-28 16:17:20 -07005701 final ArrayMap<String, SparseIntArray> completions = u.getJobCompletionStats();
5702 for (int ic=completions.size()-1; ic>=0; ic--) {
5703 SparseIntArray types = completions.valueAt(ic);
5704 if (types != null) {
5705 pw.print(prefix);
5706 pw.print(" Job Completions ");
5707 pw.print(completions.keyAt(ic));
5708 pw.print(":");
5709 for (int it=0; it<types.size(); it++) {
5710 pw.print(" ");
5711 pw.print(JobParameters.getReasonName(types.keyAt(it)));
5712 pw.print("(");
5713 pw.print(types.valueAt(it));
5714 pw.print("x)");
5715 }
5716 pw.println();
5717 }
5718 }
5719
Ruben Brunk6d2c3632015-05-26 17:32:16 -07005720 uidActivity |= printTimer(pw, sb, u.getFlashlightTurnedOnTimer(), rawRealtime, which,
5721 prefix, "Flashlight");
5722 uidActivity |= printTimer(pw, sb, u.getCameraTurnedOnTimer(), rawRealtime, which,
5723 prefix, "Camera");
5724 uidActivity |= printTimer(pw, sb, u.getVideoTurnedOnTimer(), rawRealtime, which,
5725 prefix, "Video");
5726 uidActivity |= printTimer(pw, sb, u.getAudioTurnedOnTimer(), rawRealtime, which,
5727 prefix, "Audio");
5728
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005729 final SparseArray<? extends BatteryStats.Uid.Sensor> sensors = u.getSensorStats();
5730 final int NSE = sensors.size();
Dianne Hackborn61659e52014-07-09 16:13:01 -07005731 for (int ise=0; ise<NSE; ise++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005732 final Uid.Sensor se = sensors.valueAt(ise);
5733 final int sensorNumber = sensors.keyAt(ise);
Dianne Hackborn61659e52014-07-09 16:13:01 -07005734 sb.setLength(0);
5735 sb.append(prefix);
5736 sb.append(" Sensor ");
5737 int handle = se.getHandle();
5738 if (handle == Uid.Sensor.GPS) {
5739 sb.append("GPS");
5740 } else {
5741 sb.append(handle);
5742 }
5743 sb.append(": ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005744
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005745 final Timer timer = se.getSensorTime();
Dianne Hackborn61659e52014-07-09 16:13:01 -07005746 if (timer != null) {
5747 // Convert from microseconds to milliseconds with rounding
Bookatz867c0d72017-03-07 18:23:42 -08005748 final long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500)
5749 / 1000;
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005750 final int count = timer.getCountLocked(which);
Bookatz867c0d72017-03-07 18:23:42 -08005751 final Timer bgTimer = se.getSensorBackgroundTime();
5752 final int bgCount = bgTimer != null ? bgTimer.getCountLocked(which) : 0;
Bookatz867c0d72017-03-07 18:23:42 -08005753 // 'actualTime' are unpooled and always since reset (regardless of 'which')
5754 final long actualTime = timer.getTotalDurationMsLocked(rawRealtimeMs);
5755 final long bgActualTime = bgTimer != null ?
5756 bgTimer.getTotalDurationMsLocked(rawRealtimeMs) : 0;
5757
Dianne Hackborn61659e52014-07-09 16:13:01 -07005758 //timer.logState();
5759 if (totalTime != 0) {
Bookatz867c0d72017-03-07 18:23:42 -08005760 if (actualTime != totalTime) {
5761 formatTimeMs(sb, totalTime);
5762 sb.append("blamed realtime, ");
5763 }
5764
5765 formatTimeMs(sb, actualTime); // since reset, regardless of 'which'
Dianne Hackborn61659e52014-07-09 16:13:01 -07005766 sb.append("realtime (");
5767 sb.append(count);
Bookatz867c0d72017-03-07 18:23:42 -08005768 sb.append(" times)");
5769
5770 if (bgActualTime != 0 || bgCount > 0) {
Amith Yamasaniab9ad192016-12-06 12:46:59 -08005771 sb.append(", ");
Bookatz867c0d72017-03-07 18:23:42 -08005772 formatTimeMs(sb, bgActualTime); // since reset, regardless of 'which'
5773 sb.append("background (");
Amith Yamasaniab9ad192016-12-06 12:46:59 -08005774 sb.append(bgCount);
Bookatz867c0d72017-03-07 18:23:42 -08005775 sb.append(" times)");
Amith Yamasaniab9ad192016-12-06 12:46:59 -08005776 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005777 } else {
5778 sb.append("(not used)");
5779 }
Dianne Hackborn61659e52014-07-09 16:13:01 -07005780 } else {
5781 sb.append("(not used)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005782 }
Dianne Hackborn61659e52014-07-09 16:13:01 -07005783
5784 pw.println(sb.toString());
5785 uidActivity = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005786 }
5787
Ruben Brunk6d2c3632015-05-26 17:32:16 -07005788 uidActivity |= printTimer(pw, sb, u.getVibratorOnTimer(), rawRealtime, which, prefix,
5789 "Vibrator");
5790 uidActivity |= printTimer(pw, sb, u.getForegroundActivityTimer(), rawRealtime, which,
5791 prefix, "Foreground activities");
Michael Wachenschwanzb05a3c52017-07-07 17:47:04 -07005792 uidActivity |= printTimer(pw, sb, u.getForegroundServiceTimer(), rawRealtime, which,
5793 prefix, "Foreground services");
Jeff Sharkey3e013e82013-04-25 14:48:19 -07005794
Dianne Hackborn61659e52014-07-09 16:13:01 -07005795 long totalStateTime = 0;
5796 for (int ips=0; ips<Uid.NUM_PROCESS_STATE; ips++) {
5797 long time = u.getProcessStateTime(ips, rawRealtime, which);
5798 if (time > 0) {
5799 totalStateTime += time;
5800 sb.setLength(0);
5801 sb.append(prefix);
5802 sb.append(" ");
5803 sb.append(Uid.PROCESS_STATE_NAMES[ips]);
5804 sb.append(" for: ");
Dianne Hackborna8d10942015-11-19 17:55:19 -08005805 formatTimeMs(sb, (time + 500) / 1000);
Dianne Hackborn61659e52014-07-09 16:13:01 -07005806 pw.println(sb.toString());
5807 uidActivity = true;
5808 }
5809 }
Dianne Hackborna8d10942015-11-19 17:55:19 -08005810 if (totalStateTime > 0) {
5811 sb.setLength(0);
5812 sb.append(prefix);
5813 sb.append(" Total running: ");
5814 formatTimeMs(sb, (totalStateTime + 500) / 1000);
5815 pw.println(sb.toString());
5816 }
Dianne Hackborn61659e52014-07-09 16:13:01 -07005817
Adam Lesinski06af1fa2015-05-05 17:35:35 -07005818 final long userCpuTimeUs = u.getUserCpuTimeUs(which);
5819 final long systemCpuTimeUs = u.getSystemCpuTimeUs(which);
Adam Lesinskid4abd1e2017-04-12 11:29:13 -07005820 if (userCpuTimeUs > 0 || systemCpuTimeUs > 0) {
Adam Lesinski06af1fa2015-05-05 17:35:35 -07005821 sb.setLength(0);
5822 sb.append(prefix);
Adam Lesinski72478f02015-06-17 15:39:43 -07005823 sb.append(" Total cpu time: u=");
5824 formatTimeMs(sb, userCpuTimeUs / 1000);
5825 sb.append("s=");
5826 formatTimeMs(sb, systemCpuTimeUs / 1000);
Adam Lesinski06af1fa2015-05-05 17:35:35 -07005827 pw.println(sb.toString());
5828 }
5829
Sudheer Shanka9b735c52017-05-09 18:26:18 -07005830 final long[] cpuFreqTimes = u.getCpuFreqTimes(which);
5831 if (cpuFreqTimes != null) {
5832 sb.setLength(0);
5833 sb.append(" Total cpu time per freq:");
5834 for (int i = 0; i < cpuFreqTimes.length; ++i) {
5835 sb.append(" " + cpuFreqTimes[i]);
5836 }
5837 pw.println(sb.toString());
5838 }
5839 final long[] screenOffCpuFreqTimes = u.getScreenOffCpuFreqTimes(which);
5840 if (screenOffCpuFreqTimes != null) {
5841 sb.setLength(0);
5842 sb.append(" Total screen-off cpu time per freq:");
5843 for (int i = 0; i < screenOffCpuFreqTimes.length; ++i) {
5844 sb.append(" " + screenOffCpuFreqTimes[i]);
5845 }
5846 pw.println(sb.toString());
5847 }
5848
Sudheer Shankab2f83c12017-11-13 19:25:01 -08005849 for (int procState = 0; procState < Uid.NUM_PROCESS_STATE; ++procState) {
5850 final long[] cpuTimes = u.getCpuFreqTimes(which, procState);
5851 if (cpuTimes != null) {
5852 sb.setLength(0);
5853 sb.append(" Cpu times per freq at state "
5854 + Uid.PROCESS_STATE_NAMES[procState] + ":");
5855 for (int i = 0; i < cpuTimes.length; ++i) {
5856 sb.append(" " + cpuTimes[i]);
5857 }
5858 pw.println(sb.toString());
5859 }
5860
5861 final long[] screenOffCpuTimes = u.getScreenOffCpuFreqTimes(which, procState);
5862 if (screenOffCpuTimes != null) {
5863 sb.setLength(0);
5864 sb.append(" Screen-off cpu times per freq at state "
5865 + Uid.PROCESS_STATE_NAMES[procState] + ":");
5866 for (int i = 0; i < screenOffCpuTimes.length; ++i) {
5867 sb.append(" " + screenOffCpuTimes[i]);
5868 }
5869 pw.println(sb.toString());
5870 }
5871 }
5872
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005873 final ArrayMap<String, ? extends BatteryStats.Uid.Proc> processStats
5874 = u.getProcessStats();
5875 for (int ipr=processStats.size()-1; ipr>=0; ipr--) {
5876 final Uid.Proc ps = processStats.valueAt(ipr);
5877 long userTime;
5878 long systemTime;
5879 long foregroundTime;
5880 int starts;
5881 int numExcessive;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005882
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005883 userTime = ps.getUserTime(which);
5884 systemTime = ps.getSystemTime(which);
5885 foregroundTime = ps.getForegroundTime(which);
5886 starts = ps.getStarts(which);
5887 final int numCrashes = ps.getNumCrashes(which);
5888 final int numAnrs = ps.getNumAnrs(which);
5889 numExcessive = which == STATS_SINCE_CHARGED
5890 ? ps.countExcessivePowers() : 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005891
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005892 if (userTime != 0 || systemTime != 0 || foregroundTime != 0 || starts != 0
5893 || numExcessive != 0 || numCrashes != 0 || numAnrs != 0) {
5894 sb.setLength(0);
5895 sb.append(prefix); sb.append(" Proc ");
5896 sb.append(processStats.keyAt(ipr)); sb.append(":\n");
5897 sb.append(prefix); sb.append(" CPU: ");
5898 formatTimeMs(sb, userTime); sb.append("usr + ");
5899 formatTimeMs(sb, systemTime); sb.append("krn ; ");
5900 formatTimeMs(sb, foregroundTime); sb.append("fg");
5901 if (starts != 0 || numCrashes != 0 || numAnrs != 0) {
5902 sb.append("\n"); sb.append(prefix); sb.append(" ");
5903 boolean hasOne = false;
5904 if (starts != 0) {
5905 hasOne = true;
5906 sb.append(starts); sb.append(" starts");
Dianne Hackborn0d903a82010-09-07 23:51:03 -07005907 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005908 if (numCrashes != 0) {
5909 if (hasOne) {
5910 sb.append(", ");
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07005911 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005912 hasOne = true;
5913 sb.append(numCrashes); sb.append(" crashes");
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07005914 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005915 if (numAnrs != 0) {
5916 if (hasOne) {
5917 sb.append(", ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005918 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005919 sb.append(numAnrs); sb.append(" anrs");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005920 }
5921 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005922 pw.println(sb.toString());
5923 for (int e=0; e<numExcessive; e++) {
5924 Uid.Proc.ExcessivePower ew = ps.getExcessivePower(e);
5925 if (ew != null) {
5926 pw.print(prefix); pw.print(" * Killed for ");
Dianne Hackbornffca58b2017-05-24 16:15:45 -07005927 if (ew.type == Uid.Proc.ExcessivePower.TYPE_CPU) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005928 pw.print("cpu");
5929 } else {
5930 pw.print("unknown");
5931 }
5932 pw.print(" use: ");
5933 TimeUtils.formatDuration(ew.usedTime, pw);
5934 pw.print(" over ");
5935 TimeUtils.formatDuration(ew.overTime, pw);
5936 if (ew.overTime != 0) {
5937 pw.print(" (");
5938 pw.print((ew.usedTime*100)/ew.overTime);
5939 pw.println("%)");
5940 }
5941 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005942 }
5943 uidActivity = true;
5944 }
5945 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005946
5947 final ArrayMap<String, ? extends BatteryStats.Uid.Pkg> packageStats
5948 = u.getPackageStats();
5949 for (int ipkg=packageStats.size()-1; ipkg>=0; ipkg--) {
5950 pw.print(prefix); pw.print(" Apk "); pw.print(packageStats.keyAt(ipkg));
5951 pw.println(":");
5952 boolean apkActivity = false;
5953 final Uid.Pkg ps = packageStats.valueAt(ipkg);
5954 final ArrayMap<String, ? extends Counter> alarms = ps.getWakeupAlarmStats();
5955 for (int iwa=alarms.size()-1; iwa>=0; iwa--) {
5956 pw.print(prefix); pw.print(" Wakeup alarm ");
5957 pw.print(alarms.keyAt(iwa)); pw.print(": ");
5958 pw.print(alarms.valueAt(iwa).getCountLocked(which));
5959 pw.println(" times");
5960 apkActivity = true;
5961 }
5962 final ArrayMap<String, ? extends Uid.Pkg.Serv> serviceStats = ps.getServiceStats();
5963 for (int isvc=serviceStats.size()-1; isvc>=0; isvc--) {
5964 final BatteryStats.Uid.Pkg.Serv ss = serviceStats.valueAt(isvc);
5965 final long startTime = ss.getStartTime(batteryUptime, which);
5966 final int starts = ss.getStarts(which);
5967 final int launches = ss.getLaunches(which);
5968 if (startTime != 0 || starts != 0 || launches != 0) {
5969 sb.setLength(0);
5970 sb.append(prefix); sb.append(" Service ");
5971 sb.append(serviceStats.keyAt(isvc)); sb.append(":\n");
5972 sb.append(prefix); sb.append(" Created for: ");
5973 formatTimeMs(sb, startTime / 1000);
5974 sb.append("uptime\n");
5975 sb.append(prefix); sb.append(" Starts: ");
5976 sb.append(starts);
5977 sb.append(", launches: "); sb.append(launches);
5978 pw.println(sb.toString());
5979 apkActivity = true;
5980 }
5981 }
5982 if (!apkActivity) {
5983 pw.print(prefix); pw.println(" (nothing executed)");
5984 }
5985 uidActivity = true;
5986 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005987 if (!uidActivity) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07005988 pw.print(prefix); pw.println(" (nothing executed)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005989 }
5990 }
5991 }
5992
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08005993 static void printBitDescriptions(PrintWriter pw, int oldval, int newval, HistoryTag wakelockTag,
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08005994 BitDescription[] descriptions, boolean longNames) {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07005995 int diff = oldval ^ newval;
5996 if (diff == 0) return;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08005997 boolean didWake = false;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07005998 for (int i=0; i<descriptions.length; i++) {
5999 BitDescription bd = descriptions[i];
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006000 if ((diff&bd.mask) != 0) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006001 pw.print(longNames ? " " : ",");
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07006002 if (bd.shift < 0) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006003 pw.print((newval&bd.mask) != 0 ? "+" : "-");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006004 pw.print(longNames ? bd.name : bd.shortName);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006005 if (bd.mask == HistoryItem.STATE_WAKE_LOCK_FLAG && wakelockTag != null) {
6006 didWake = true;
6007 pw.print("=");
6008 if (longNames) {
6009 UserHandle.formatUid(pw, wakelockTag.uid);
6010 pw.print(":\"");
6011 pw.print(wakelockTag.string);
6012 pw.print("\"");
6013 } else {
6014 pw.print(wakelockTag.poolIdx);
6015 }
6016 }
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07006017 } else {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006018 pw.print(longNames ? bd.name : bd.shortName);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07006019 pw.print("=");
6020 int val = (newval&bd.mask)>>bd.shift;
6021 if (bd.values != null && val >= 0 && val < bd.values.length) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006022 pw.print(longNames? bd.values[val] : bd.shortValues[val]);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07006023 } else {
6024 pw.print(val);
6025 }
6026 }
6027 }
6028 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006029 if (!didWake && wakelockTag != null) {
Ashish Sharma81850c42014-05-05 13:57:07 -07006030 pw.print(longNames ? " wake_lock=" : ",w=");
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006031 if (longNames) {
6032 UserHandle.formatUid(pw, wakelockTag.uid);
6033 pw.print(":\"");
6034 pw.print(wakelockTag.string);
6035 pw.print("\"");
6036 } else {
6037 pw.print(wakelockTag.poolIdx);
6038 }
6039 }
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07006040 }
Mike Mac2f518a2017-09-19 16:06:03 -07006041
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006042 public void prepareForDumpLocked() {
Kweku Adams2f73ecd2017-09-27 16:59:19 -07006043 // We don't need to require subclasses implement this.
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006044 }
6045
6046 public static class HistoryPrinter {
6047 int oldState = 0;
Dianne Hackborna1bd7922014-03-21 11:07:11 -07006048 int oldState2 = 0;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006049 int oldLevel = -1;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006050 int oldStatus = -1;
6051 int oldHealth = -1;
6052 int oldPlug = -1;
6053 int oldTemp = -1;
6054 int oldVolt = -1;
Adam Lesinskia8018ac2016-05-03 10:18:10 -07006055 int oldChargeMAh = -1;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006056 long lastTime = -1;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006057
Dianne Hackborn3251b902014-06-20 14:40:53 -07006058 void reset() {
6059 oldState = oldState2 = 0;
6060 oldLevel = -1;
6061 oldStatus = -1;
6062 oldHealth = -1;
6063 oldPlug = -1;
6064 oldTemp = -1;
6065 oldVolt = -1;
Adam Lesinskia8018ac2016-05-03 10:18:10 -07006066 oldChargeMAh = -1;
Dianne Hackborn3251b902014-06-20 14:40:53 -07006067 }
6068
Dianne Hackborn99009ea2014-04-18 16:23:42 -07006069 public void printNextItem(PrintWriter pw, HistoryItem rec, long baseTime, boolean checkin,
Dianne Hackborna1bd7922014-03-21 11:07:11 -07006070 boolean verbose) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006071 if (!checkin) {
6072 pw.print(" ");
Dianne Hackborn99009ea2014-04-18 16:23:42 -07006073 TimeUtils.formatDuration(rec.time - baseTime, pw, TimeUtils.HUNDRED_DAY_FIELD_LEN);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006074 pw.print(" (");
6075 pw.print(rec.numReadInts);
6076 pw.print(") ");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006077 } else {
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07006078 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
6079 pw.print(HISTORY_DATA); pw.print(',');
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006080 if (lastTime < 0) {
Dianne Hackborn99009ea2014-04-18 16:23:42 -07006081 pw.print(rec.time - baseTime);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006082 } else {
Dianne Hackborn99009ea2014-04-18 16:23:42 -07006083 pw.print(rec.time - lastTime);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006084 }
6085 lastTime = rec.time;
6086 }
6087 if (rec.cmd == HistoryItem.CMD_START) {
6088 if (checkin) {
6089 pw.print(":");
6090 }
6091 pw.println("START");
Dianne Hackborn3251b902014-06-20 14:40:53 -07006092 reset();
Dianne Hackborn37de0982014-05-09 09:32:18 -07006093 } else if (rec.cmd == HistoryItem.CMD_CURRENT_TIME
6094 || rec.cmd == HistoryItem.CMD_RESET) {
Dianne Hackborne5167ca2014-03-08 14:39:10 -08006095 if (checkin) {
6096 pw.print(":");
6097 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07006098 if (rec.cmd == HistoryItem.CMD_RESET) {
6099 pw.print("RESET:");
Dianne Hackborn3251b902014-06-20 14:40:53 -07006100 reset();
Dianne Hackborn37de0982014-05-09 09:32:18 -07006101 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08006102 pw.print("TIME:");
6103 if (checkin) {
6104 pw.println(rec.currentTime);
6105 } else {
6106 pw.print(" ");
6107 pw.println(DateFormat.format("yyyy-MM-dd-HH-mm-ss",
6108 rec.currentTime).toString());
6109 }
Dianne Hackborn29cd7f12015-01-08 10:37:05 -08006110 } else if (rec.cmd == HistoryItem.CMD_SHUTDOWN) {
6111 if (checkin) {
6112 pw.print(":");
6113 }
6114 pw.println("SHUTDOWN");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006115 } else if (rec.cmd == HistoryItem.CMD_OVERFLOW) {
6116 if (checkin) {
6117 pw.print(":");
6118 }
6119 pw.println("*OVERFLOW*");
6120 } else {
6121 if (!checkin) {
6122 if (rec.batteryLevel < 10) pw.print("00");
6123 else if (rec.batteryLevel < 100) pw.print("0");
6124 pw.print(rec.batteryLevel);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07006125 if (verbose) {
6126 pw.print(" ");
6127 if (rec.states < 0) ;
6128 else if (rec.states < 0x10) pw.print("0000000");
6129 else if (rec.states < 0x100) pw.print("000000");
6130 else if (rec.states < 0x1000) pw.print("00000");
6131 else if (rec.states < 0x10000) pw.print("0000");
6132 else if (rec.states < 0x100000) pw.print("000");
6133 else if (rec.states < 0x1000000) pw.print("00");
6134 else if (rec.states < 0x10000000) pw.print("0");
6135 pw.print(Integer.toHexString(rec.states));
6136 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006137 } else {
6138 if (oldLevel != rec.batteryLevel) {
6139 oldLevel = rec.batteryLevel;
6140 pw.print(",Bl="); pw.print(rec.batteryLevel);
6141 }
6142 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006143 if (oldStatus != rec.batteryStatus) {
6144 oldStatus = rec.batteryStatus;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006145 pw.print(checkin ? ",Bs=" : " status=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006146 switch (oldStatus) {
6147 case BatteryManager.BATTERY_STATUS_UNKNOWN:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006148 pw.print(checkin ? "?" : "unknown");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006149 break;
6150 case BatteryManager.BATTERY_STATUS_CHARGING:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006151 pw.print(checkin ? "c" : "charging");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006152 break;
6153 case BatteryManager.BATTERY_STATUS_DISCHARGING:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006154 pw.print(checkin ? "d" : "discharging");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006155 break;
6156 case BatteryManager.BATTERY_STATUS_NOT_CHARGING:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006157 pw.print(checkin ? "n" : "not-charging");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006158 break;
6159 case BatteryManager.BATTERY_STATUS_FULL:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006160 pw.print(checkin ? "f" : "full");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006161 break;
6162 default:
6163 pw.print(oldStatus);
6164 break;
6165 }
6166 }
6167 if (oldHealth != rec.batteryHealth) {
6168 oldHealth = rec.batteryHealth;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006169 pw.print(checkin ? ",Bh=" : " health=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006170 switch (oldHealth) {
6171 case BatteryManager.BATTERY_HEALTH_UNKNOWN:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006172 pw.print(checkin ? "?" : "unknown");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006173 break;
6174 case BatteryManager.BATTERY_HEALTH_GOOD:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006175 pw.print(checkin ? "g" : "good");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006176 break;
6177 case BatteryManager.BATTERY_HEALTH_OVERHEAT:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006178 pw.print(checkin ? "h" : "overheat");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006179 break;
6180 case BatteryManager.BATTERY_HEALTH_DEAD:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006181 pw.print(checkin ? "d" : "dead");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006182 break;
6183 case BatteryManager.BATTERY_HEALTH_OVER_VOLTAGE:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006184 pw.print(checkin ? "v" : "over-voltage");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006185 break;
6186 case BatteryManager.BATTERY_HEALTH_UNSPECIFIED_FAILURE:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006187 pw.print(checkin ? "f" : "failure");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006188 break;
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08006189 case BatteryManager.BATTERY_HEALTH_COLD:
6190 pw.print(checkin ? "c" : "cold");
6191 break;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006192 default:
6193 pw.print(oldHealth);
6194 break;
6195 }
6196 }
6197 if (oldPlug != rec.batteryPlugType) {
6198 oldPlug = rec.batteryPlugType;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006199 pw.print(checkin ? ",Bp=" : " plug=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006200 switch (oldPlug) {
6201 case 0:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006202 pw.print(checkin ? "n" : "none");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006203 break;
6204 case BatteryManager.BATTERY_PLUGGED_AC:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006205 pw.print(checkin ? "a" : "ac");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006206 break;
6207 case BatteryManager.BATTERY_PLUGGED_USB:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006208 pw.print(checkin ? "u" : "usb");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006209 break;
Brian Muramatsu37a37f42012-08-14 15:21:02 -07006210 case BatteryManager.BATTERY_PLUGGED_WIRELESS:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006211 pw.print(checkin ? "w" : "wireless");
Brian Muramatsu37a37f42012-08-14 15:21:02 -07006212 break;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006213 default:
6214 pw.print(oldPlug);
6215 break;
6216 }
6217 }
6218 if (oldTemp != rec.batteryTemperature) {
6219 oldTemp = rec.batteryTemperature;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006220 pw.print(checkin ? ",Bt=" : " temp=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006221 pw.print(oldTemp);
6222 }
6223 if (oldVolt != rec.batteryVoltage) {
6224 oldVolt = rec.batteryVoltage;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006225 pw.print(checkin ? ",Bv=" : " volt=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006226 pw.print(oldVolt);
6227 }
Adam Lesinskia8018ac2016-05-03 10:18:10 -07006228 final int chargeMAh = rec.batteryChargeUAh / 1000;
6229 if (oldChargeMAh != chargeMAh) {
6230 oldChargeMAh = chargeMAh;
Adam Lesinski926969b2016-04-28 17:31:12 -07006231 pw.print(checkin ? ",Bcc=" : " charge=");
Adam Lesinskia8018ac2016-05-03 10:18:10 -07006232 pw.print(oldChargeMAh);
Adam Lesinski926969b2016-04-28 17:31:12 -07006233 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006234 printBitDescriptions(pw, oldState, rec.states, rec.wakelockTag,
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006235 HISTORY_STATE_DESCRIPTIONS, !checkin);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07006236 printBitDescriptions(pw, oldState2, rec.states2, null,
6237 HISTORY_STATE2_DESCRIPTIONS, !checkin);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006238 if (rec.wakeReasonTag != null) {
6239 if (checkin) {
Dianne Hackbornd06dcfd2014-05-02 13:49:30 -07006240 pw.print(",wr=");
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006241 pw.print(rec.wakeReasonTag.poolIdx);
6242 } else {
6243 pw.print(" wake_reason=");
6244 pw.print(rec.wakeReasonTag.uid);
6245 pw.print(":\"");
6246 pw.print(rec.wakeReasonTag.string);
6247 pw.print("\"");
6248 }
6249 }
Dianne Hackborn099bc622014-01-22 13:39:16 -08006250 if (rec.eventCode != HistoryItem.EVENT_NONE) {
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08006251 pw.print(checkin ? "," : " ");
6252 if ((rec.eventCode&HistoryItem.EVENT_FLAG_START) != 0) {
6253 pw.print("+");
6254 } else if ((rec.eventCode&HistoryItem.EVENT_FLAG_FINISH) != 0) {
6255 pw.print("-");
Dianne Hackborn099bc622014-01-22 13:39:16 -08006256 }
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08006257 String[] eventNames = checkin ? HISTORY_EVENT_CHECKIN_NAMES
6258 : HISTORY_EVENT_NAMES;
6259 int idx = rec.eventCode & ~(HistoryItem.EVENT_FLAG_START
6260 | HistoryItem.EVENT_FLAG_FINISH);
6261 if (idx >= 0 && idx < eventNames.length) {
6262 pw.print(eventNames[idx]);
6263 } else {
6264 pw.print(checkin ? "Ev" : "event");
6265 pw.print(idx);
6266 }
6267 pw.print("=");
Dianne Hackborn099bc622014-01-22 13:39:16 -08006268 if (checkin) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006269 pw.print(rec.eventTag.poolIdx);
Dianne Hackborn099bc622014-01-22 13:39:16 -08006270 } else {
Adam Lesinski041d9172016-12-12 12:03:56 -08006271 pw.append(HISTORY_EVENT_INT_FORMATTERS[idx]
6272 .applyAsString(rec.eventTag.uid));
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006273 pw.print(":\"");
6274 pw.print(rec.eventTag.string);
6275 pw.print("\"");
Dianne Hackborn099bc622014-01-22 13:39:16 -08006276 }
6277 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006278 pw.println();
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08006279 if (rec.stepDetails != null) {
6280 if (!checkin) {
6281 pw.print(" Details: cpu=");
6282 pw.print(rec.stepDetails.userTime);
6283 pw.print("u+");
6284 pw.print(rec.stepDetails.systemTime);
6285 pw.print("s");
6286 if (rec.stepDetails.appCpuUid1 >= 0) {
6287 pw.print(" (");
6288 printStepCpuUidDetails(pw, rec.stepDetails.appCpuUid1,
6289 rec.stepDetails.appCpuUTime1, rec.stepDetails.appCpuSTime1);
6290 if (rec.stepDetails.appCpuUid2 >= 0) {
6291 pw.print(", ");
6292 printStepCpuUidDetails(pw, rec.stepDetails.appCpuUid2,
6293 rec.stepDetails.appCpuUTime2, rec.stepDetails.appCpuSTime2);
6294 }
6295 if (rec.stepDetails.appCpuUid3 >= 0) {
6296 pw.print(", ");
6297 printStepCpuUidDetails(pw, rec.stepDetails.appCpuUid3,
6298 rec.stepDetails.appCpuUTime3, rec.stepDetails.appCpuSTime3);
6299 }
6300 pw.print(')');
6301 }
6302 pw.println();
6303 pw.print(" /proc/stat=");
6304 pw.print(rec.stepDetails.statUserTime);
6305 pw.print(" usr, ");
6306 pw.print(rec.stepDetails.statSystemTime);
6307 pw.print(" sys, ");
6308 pw.print(rec.stepDetails.statIOWaitTime);
6309 pw.print(" io, ");
6310 pw.print(rec.stepDetails.statIrqTime);
6311 pw.print(" irq, ");
6312 pw.print(rec.stepDetails.statSoftIrqTime);
6313 pw.print(" sirq, ");
6314 pw.print(rec.stepDetails.statIdlTime);
6315 pw.print(" idle");
6316 int totalRun = rec.stepDetails.statUserTime + rec.stepDetails.statSystemTime
6317 + rec.stepDetails.statIOWaitTime + rec.stepDetails.statIrqTime
6318 + rec.stepDetails.statSoftIrqTime;
6319 int total = totalRun + rec.stepDetails.statIdlTime;
6320 if (total > 0) {
6321 pw.print(" (");
6322 float perc = ((float)totalRun) / ((float)total) * 100;
6323 pw.print(String.format("%.1f%%", perc));
6324 pw.print(" of ");
6325 StringBuilder sb = new StringBuilder(64);
6326 formatTimeMsNoSpace(sb, total*10);
6327 pw.print(sb);
6328 pw.print(")");
6329 }
Badhri Jagan Sridharan68cdf192016-04-03 21:57:15 -07006330 pw.print(", PlatformIdleStat ");
6331 pw.print(rec.stepDetails.statPlatformIdleState);
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08006332 pw.println();
Ahmed ElArabawyd8b44112017-05-23 21:25:02 +00006333
6334 pw.print(", SubsystemPowerState ");
6335 pw.print(rec.stepDetails.statSubsystemPowerState);
6336 pw.println();
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08006337 } else {
6338 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
6339 pw.print(HISTORY_DATA); pw.print(",0,Dcpu=");
6340 pw.print(rec.stepDetails.userTime);
6341 pw.print(":");
6342 pw.print(rec.stepDetails.systemTime);
6343 if (rec.stepDetails.appCpuUid1 >= 0) {
6344 printStepCpuUidCheckinDetails(pw, rec.stepDetails.appCpuUid1,
6345 rec.stepDetails.appCpuUTime1, rec.stepDetails.appCpuSTime1);
6346 if (rec.stepDetails.appCpuUid2 >= 0) {
6347 printStepCpuUidCheckinDetails(pw, rec.stepDetails.appCpuUid2,
6348 rec.stepDetails.appCpuUTime2, rec.stepDetails.appCpuSTime2);
6349 }
6350 if (rec.stepDetails.appCpuUid3 >= 0) {
6351 printStepCpuUidCheckinDetails(pw, rec.stepDetails.appCpuUid3,
6352 rec.stepDetails.appCpuUTime3, rec.stepDetails.appCpuSTime3);
6353 }
6354 }
6355 pw.println();
6356 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
6357 pw.print(HISTORY_DATA); pw.print(",0,Dpst=");
6358 pw.print(rec.stepDetails.statUserTime);
6359 pw.print(',');
6360 pw.print(rec.stepDetails.statSystemTime);
6361 pw.print(',');
6362 pw.print(rec.stepDetails.statIOWaitTime);
6363 pw.print(',');
6364 pw.print(rec.stepDetails.statIrqTime);
6365 pw.print(',');
6366 pw.print(rec.stepDetails.statSoftIrqTime);
6367 pw.print(',');
6368 pw.print(rec.stepDetails.statIdlTime);
Badhri Jagan Sridharan68cdf192016-04-03 21:57:15 -07006369 pw.print(',');
Adam Lesinski8568d8f2016-07-15 18:13:23 -07006370 if (rec.stepDetails.statPlatformIdleState != null) {
6371 pw.print(rec.stepDetails.statPlatformIdleState);
Ahmed ElArabawy307edcd2017-07-07 17:48:13 -07006372 if (rec.stepDetails.statSubsystemPowerState != null) {
6373 pw.print(',');
6374 }
Adam Lesinski8568d8f2016-07-15 18:13:23 -07006375 }
Ahmed ElArabawyd8b44112017-05-23 21:25:02 +00006376
6377 if (rec.stepDetails.statSubsystemPowerState != null) {
6378 pw.print(rec.stepDetails.statSubsystemPowerState);
6379 }
6380 pw.println();
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08006381 }
6382 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08006383 oldState = rec.states;
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07006384 oldState2 = rec.states2;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006385 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006386 }
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08006387
6388 private void printStepCpuUidDetails(PrintWriter pw, int uid, int utime, int stime) {
6389 UserHandle.formatUid(pw, uid);
6390 pw.print("=");
6391 pw.print(utime);
6392 pw.print("u+");
6393 pw.print(stime);
6394 pw.print("s");
6395 }
6396
6397 private void printStepCpuUidCheckinDetails(PrintWriter pw, int uid, int utime, int stime) {
6398 pw.print('/');
6399 pw.print(uid);
6400 pw.print(":");
6401 pw.print(utime);
6402 pw.print(":");
6403 pw.print(stime);
6404 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006405 }
6406
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006407 private void printSizeValue(PrintWriter pw, long size) {
6408 float result = size;
6409 String suffix = "";
6410 if (result >= 10*1024) {
6411 suffix = "KB";
6412 result = result / 1024;
6413 }
6414 if (result >= 10*1024) {
6415 suffix = "MB";
6416 result = result / 1024;
6417 }
6418 if (result >= 10*1024) {
6419 suffix = "GB";
6420 result = result / 1024;
6421 }
6422 if (result >= 10*1024) {
6423 suffix = "TB";
6424 result = result / 1024;
6425 }
6426 if (result >= 10*1024) {
6427 suffix = "PB";
6428 result = result / 1024;
6429 }
6430 pw.print((int)result);
6431 pw.print(suffix);
6432 }
6433
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006434 private static boolean dumpTimeEstimate(PrintWriter pw, String label1, String label2,
6435 String label3, long estimatedTime) {
6436 if (estimatedTime < 0) {
Dianne Hackbornad6a99b2014-11-18 10:11:10 -08006437 return false;
6438 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006439 pw.print(label1);
6440 pw.print(label2);
6441 pw.print(label3);
Dianne Hackbornad6a99b2014-11-18 10:11:10 -08006442 StringBuilder sb = new StringBuilder(64);
6443 formatTimeMs(sb, estimatedTime);
6444 pw.print(sb);
6445 pw.println();
Dianne Hackbornad6a99b2014-11-18 10:11:10 -08006446 return true;
6447 }
6448
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006449 private static boolean dumpDurationSteps(PrintWriter pw, String prefix, String header,
6450 LevelStepTracker steps, boolean checkin) {
6451 if (steps == null) {
6452 return false;
6453 }
6454 int count = steps.mNumStepDurations;
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006455 if (count <= 0) {
6456 return false;
6457 }
6458 if (!checkin) {
6459 pw.println(header);
6460 }
Kweku Adams030980a2015-04-01 16:07:48 -07006461 String[] lineArgs = new String[5];
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006462 for (int i=0; i<count; i++) {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006463 long duration = steps.getDurationAt(i);
6464 int level = steps.getLevelAt(i);
6465 long initMode = steps.getInitModeAt(i);
6466 long modMode = steps.getModModeAt(i);
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006467 if (checkin) {
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07006468 lineArgs[0] = Long.toString(duration);
6469 lineArgs[1] = Integer.toString(level);
6470 if ((modMode&STEP_LEVEL_MODE_SCREEN_STATE) == 0) {
6471 switch ((int)(initMode&STEP_LEVEL_MODE_SCREEN_STATE) + 1) {
6472 case Display.STATE_OFF: lineArgs[2] = "s-"; break;
6473 case Display.STATE_ON: lineArgs[2] = "s+"; break;
6474 case Display.STATE_DOZE: lineArgs[2] = "sd"; break;
6475 case Display.STATE_DOZE_SUSPEND: lineArgs[2] = "sds"; break;
Kweku Adams030980a2015-04-01 16:07:48 -07006476 default: lineArgs[2] = "?"; break;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07006477 }
6478 } else {
6479 lineArgs[2] = "";
6480 }
6481 if ((modMode&STEP_LEVEL_MODE_POWER_SAVE) == 0) {
6482 lineArgs[3] = (initMode&STEP_LEVEL_MODE_POWER_SAVE) != 0 ? "p+" : "p-";
6483 } else {
6484 lineArgs[3] = "";
6485 }
Dianne Hackborn88e98df2015-03-23 13:29:14 -07006486 if ((modMode&STEP_LEVEL_MODE_DEVICE_IDLE) == 0) {
Kweku Adams030980a2015-04-01 16:07:48 -07006487 lineArgs[4] = (initMode&STEP_LEVEL_MODE_DEVICE_IDLE) != 0 ? "i+" : "i-";
Dianne Hackborn88e98df2015-03-23 13:29:14 -07006488 } else {
Kweku Adams030980a2015-04-01 16:07:48 -07006489 lineArgs[4] = "";
Dianne Hackborn88e98df2015-03-23 13:29:14 -07006490 }
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006491 dumpLine(pw, 0 /* uid */, "i" /* category */, header, (Object[])lineArgs);
6492 } else {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006493 pw.print(prefix);
6494 pw.print("#"); pw.print(i); pw.print(": ");
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07006495 TimeUtils.formatDuration(duration, pw);
6496 pw.print(" to "); pw.print(level);
6497 boolean haveModes = false;
6498 if ((modMode&STEP_LEVEL_MODE_SCREEN_STATE) == 0) {
6499 pw.print(" (");
6500 switch ((int)(initMode&STEP_LEVEL_MODE_SCREEN_STATE) + 1) {
6501 case Display.STATE_OFF: pw.print("screen-off"); break;
6502 case Display.STATE_ON: pw.print("screen-on"); break;
6503 case Display.STATE_DOZE: pw.print("screen-doze"); break;
6504 case Display.STATE_DOZE_SUSPEND: pw.print("screen-doze-suspend"); break;
Kweku Adams030980a2015-04-01 16:07:48 -07006505 default: pw.print("screen-?"); break;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07006506 }
6507 haveModes = true;
6508 }
6509 if ((modMode&STEP_LEVEL_MODE_POWER_SAVE) == 0) {
6510 pw.print(haveModes ? ", " : " (");
6511 pw.print((initMode&STEP_LEVEL_MODE_POWER_SAVE) != 0
6512 ? "power-save-on" : "power-save-off");
6513 haveModes = true;
6514 }
Dianne Hackborn88e98df2015-03-23 13:29:14 -07006515 if ((modMode&STEP_LEVEL_MODE_DEVICE_IDLE) == 0) {
6516 pw.print(haveModes ? ", " : " (");
6517 pw.print((initMode&STEP_LEVEL_MODE_DEVICE_IDLE) != 0
6518 ? "device-idle-on" : "device-idle-off");
6519 haveModes = true;
6520 }
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07006521 if (haveModes) {
6522 pw.print(")");
6523 }
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006524 pw.println();
6525 }
6526 }
6527 return true;
6528 }
6529
Kweku Adams87b19ec2017-10-09 12:40:03 -07006530 private static void dumpDurationSteps(ProtoOutputStream proto, long fieldId,
6531 LevelStepTracker steps) {
6532 if (steps == null) {
6533 return;
6534 }
6535 int count = steps.mNumStepDurations;
Kweku Adams87b19ec2017-10-09 12:40:03 -07006536 for (int i = 0; i < count; ++i) {
Kweku Adams103351f2017-10-16 14:39:34 -07006537 long token = proto.start(fieldId);
Kweku Adams87b19ec2017-10-09 12:40:03 -07006538 proto.write(SystemProto.BatteryLevelStep.DURATION_MS, steps.getDurationAt(i));
6539 proto.write(SystemProto.BatteryLevelStep.LEVEL, steps.getLevelAt(i));
6540
6541 final long initMode = steps.getInitModeAt(i);
6542 final long modMode = steps.getModModeAt(i);
6543
6544 int ds = SystemProto.BatteryLevelStep.DS_MIXED;
6545 if ((modMode & STEP_LEVEL_MODE_SCREEN_STATE) == 0) {
6546 switch ((int) (initMode & STEP_LEVEL_MODE_SCREEN_STATE) + 1) {
6547 case Display.STATE_OFF:
6548 ds = SystemProto.BatteryLevelStep.DS_OFF;
6549 break;
6550 case Display.STATE_ON:
6551 ds = SystemProto.BatteryLevelStep.DS_ON;
6552 break;
6553 case Display.STATE_DOZE:
6554 ds = SystemProto.BatteryLevelStep.DS_DOZE;
6555 break;
6556 case Display.STATE_DOZE_SUSPEND:
6557 ds = SystemProto.BatteryLevelStep.DS_DOZE_SUSPEND;
6558 break;
6559 default:
6560 ds = SystemProto.BatteryLevelStep.DS_ERROR;
6561 break;
6562 }
6563 }
6564 proto.write(SystemProto.BatteryLevelStep.DISPLAY_STATE, ds);
6565
6566 int psm = SystemProto.BatteryLevelStep.PSM_MIXED;
6567 if ((modMode & STEP_LEVEL_MODE_POWER_SAVE) == 0) {
6568 psm = (initMode & STEP_LEVEL_MODE_POWER_SAVE) != 0
6569 ? SystemProto.BatteryLevelStep.PSM_ON : SystemProto.BatteryLevelStep.PSM_OFF;
6570 }
6571 proto.write(SystemProto.BatteryLevelStep.POWER_SAVE_MODE, psm);
6572
6573 int im = SystemProto.BatteryLevelStep.IM_MIXED;
6574 if ((modMode & STEP_LEVEL_MODE_DEVICE_IDLE) == 0) {
6575 im = (initMode & STEP_LEVEL_MODE_DEVICE_IDLE) != 0
6576 ? SystemProto.BatteryLevelStep.IM_ON : SystemProto.BatteryLevelStep.IM_OFF;
6577 }
6578 proto.write(SystemProto.BatteryLevelStep.IDLE_MODE, im);
6579
6580 proto.end(token);
6581 }
6582 }
6583
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006584 public static final int DUMP_CHARGED_ONLY = 1<<1;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006585 public static final int DUMP_DAILY_ONLY = 1<<2;
6586 public static final int DUMP_HISTORY_ONLY = 1<<3;
6587 public static final int DUMP_INCLUDE_HISTORY = 1<<4;
6588 public static final int DUMP_VERBOSE = 1<<5;
6589 public static final int DUMP_DEVICE_WIFI_ONLY = 1<<6;
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006590
Dianne Hackborn37de0982014-05-09 09:32:18 -07006591 private void dumpHistoryLocked(PrintWriter pw, int flags, long histStart, boolean checkin) {
6592 final HistoryPrinter hprinter = new HistoryPrinter();
6593 final HistoryItem rec = new HistoryItem();
6594 long lastTime = -1;
6595 long baseTime = -1;
6596 boolean printed = false;
6597 HistoryEventTracker tracker = null;
6598 while (getNextHistoryLocked(rec)) {
6599 lastTime = rec.time;
6600 if (baseTime < 0) {
6601 baseTime = lastTime;
6602 }
6603 if (rec.time >= histStart) {
6604 if (histStart >= 0 && !printed) {
6605 if (rec.cmd == HistoryItem.CMD_CURRENT_TIME
Ashish Sharma60200712014-05-23 18:22:20 -07006606 || rec.cmd == HistoryItem.CMD_RESET
Dianne Hackborn29cd7f12015-01-08 10:37:05 -08006607 || rec.cmd == HistoryItem.CMD_START
6608 || rec.cmd == HistoryItem.CMD_SHUTDOWN) {
Dianne Hackborn37de0982014-05-09 09:32:18 -07006609 printed = true;
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07006610 hprinter.printNextItem(pw, rec, baseTime, checkin,
6611 (flags&DUMP_VERBOSE) != 0);
6612 rec.cmd = HistoryItem.CMD_UPDATE;
Dianne Hackborn37de0982014-05-09 09:32:18 -07006613 } else if (rec.currentTime != 0) {
6614 printed = true;
6615 byte cmd = rec.cmd;
6616 rec.cmd = HistoryItem.CMD_CURRENT_TIME;
Dianne Hackborn37de0982014-05-09 09:32:18 -07006617 hprinter.printNextItem(pw, rec, baseTime, checkin,
6618 (flags&DUMP_VERBOSE) != 0);
6619 rec.cmd = cmd;
6620 }
6621 if (tracker != null) {
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07006622 if (rec.cmd != HistoryItem.CMD_UPDATE) {
6623 hprinter.printNextItem(pw, rec, baseTime, checkin,
6624 (flags&DUMP_VERBOSE) != 0);
6625 rec.cmd = HistoryItem.CMD_UPDATE;
6626 }
6627 int oldEventCode = rec.eventCode;
6628 HistoryTag oldEventTag = rec.eventTag;
Dianne Hackborn37de0982014-05-09 09:32:18 -07006629 rec.eventTag = new HistoryTag();
6630 for (int i=0; i<HistoryItem.EVENT_COUNT; i++) {
6631 HashMap<String, SparseIntArray> active
6632 = tracker.getStateForEvent(i);
6633 if (active == null) {
6634 continue;
6635 }
6636 for (HashMap.Entry<String, SparseIntArray> ent
6637 : active.entrySet()) {
6638 SparseIntArray uids = ent.getValue();
6639 for (int j=0; j<uids.size(); j++) {
6640 rec.eventCode = i;
6641 rec.eventTag.string = ent.getKey();
6642 rec.eventTag.uid = uids.keyAt(j);
6643 rec.eventTag.poolIdx = uids.valueAt(j);
Dianne Hackborn37de0982014-05-09 09:32:18 -07006644 hprinter.printNextItem(pw, rec, baseTime, checkin,
6645 (flags&DUMP_VERBOSE) != 0);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07006646 rec.wakeReasonTag = null;
6647 rec.wakelockTag = null;
Dianne Hackborn37de0982014-05-09 09:32:18 -07006648 }
6649 }
6650 }
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07006651 rec.eventCode = oldEventCode;
6652 rec.eventTag = oldEventTag;
Dianne Hackborn37de0982014-05-09 09:32:18 -07006653 tracker = null;
6654 }
6655 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07006656 hprinter.printNextItem(pw, rec, baseTime, checkin,
6657 (flags&DUMP_VERBOSE) != 0);
Dianne Hackborn536456f2014-05-23 16:51:05 -07006658 } else if (false && rec.eventCode != HistoryItem.EVENT_NONE) {
6659 // This is an attempt to aggregate the previous state and generate
6660 // fake events to reflect that state at the point where we start
6661 // printing real events. It doesn't really work right, so is turned off.
Dianne Hackborn37de0982014-05-09 09:32:18 -07006662 if (tracker == null) {
6663 tracker = new HistoryEventTracker();
6664 }
6665 tracker.updateState(rec.eventCode, rec.eventTag.string,
6666 rec.eventTag.uid, rec.eventTag.poolIdx);
6667 }
6668 }
6669 if (histStart >= 0) {
Dianne Hackbornfc064132014-06-02 12:42:12 -07006670 commitCurrentHistoryBatchLocked();
Dianne Hackborn37de0982014-05-09 09:32:18 -07006671 pw.print(checkin ? "NEXT: " : " NEXT: "); pw.println(lastTime+1);
6672 }
6673 }
6674
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006675 private void dumpDailyLevelStepSummary(PrintWriter pw, String prefix, String label,
6676 LevelStepTracker steps, StringBuilder tmpSb, int[] tmpOutInt) {
6677 if (steps == null) {
6678 return;
6679 }
6680 long timeRemaining = steps.computeTimeEstimate(0, 0, tmpOutInt);
6681 if (timeRemaining >= 0) {
6682 pw.print(prefix); pw.print(label); pw.print(" total time: ");
6683 tmpSb.setLength(0);
6684 formatTimeMs(tmpSb, timeRemaining);
6685 pw.print(tmpSb);
6686 pw.print(" (from "); pw.print(tmpOutInt[0]);
6687 pw.println(" steps)");
6688 }
6689 for (int i=0; i< STEP_LEVEL_MODES_OF_INTEREST.length; i++) {
6690 long estimatedTime = steps.computeTimeEstimate(STEP_LEVEL_MODES_OF_INTEREST[i],
6691 STEP_LEVEL_MODE_VALUES[i], tmpOutInt);
6692 if (estimatedTime > 0) {
6693 pw.print(prefix); pw.print(label); pw.print(" ");
6694 pw.print(STEP_LEVEL_MODE_LABELS[i]);
6695 pw.print(" time: ");
6696 tmpSb.setLength(0);
6697 formatTimeMs(tmpSb, estimatedTime);
6698 pw.print(tmpSb);
6699 pw.print(" (from "); pw.print(tmpOutInt[0]);
6700 pw.println(" steps)");
6701 }
6702 }
6703 }
6704
Dianne Hackborn88e98df2015-03-23 13:29:14 -07006705 private void dumpDailyPackageChanges(PrintWriter pw, String prefix,
6706 ArrayList<PackageChange> changes) {
6707 if (changes == null) {
6708 return;
6709 }
6710 pw.print(prefix); pw.println("Package changes:");
6711 for (int i=0; i<changes.size(); i++) {
6712 PackageChange pc = changes.get(i);
6713 if (pc.mUpdate) {
6714 pw.print(prefix); pw.print(" Update "); pw.print(pc.mPackageName);
6715 pw.print(" vers="); pw.println(pc.mVersionCode);
6716 } else {
6717 pw.print(prefix); pw.print(" Uninstall "); pw.println(pc.mPackageName);
6718 }
6719 }
6720 }
6721
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006722 /**
6723 * Dumps a human-readable summary of the battery statistics to the given PrintWriter.
6724 *
6725 * @param pw a Printer to receive the dump output.
6726 */
6727 @SuppressWarnings("unused")
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006728 public void dumpLocked(Context context, PrintWriter pw, int flags, int reqUid, long histStart) {
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006729 prepareForDumpLocked();
6730
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006731 final boolean filtering = (flags
Dianne Hackborn1e725a72015-03-24 18:23:19 -07006732 & (DUMP_HISTORY_ONLY|DUMP_CHARGED_ONLY|DUMP_DAILY_ONLY)) != 0;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006733
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006734 if ((flags&DUMP_HISTORY_ONLY) != 0 || !filtering) {
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006735 final long historyTotalSize = getHistoryTotalSize();
6736 final long historyUsedSize = getHistoryUsedSize();
6737 if (startIteratingHistoryLocked()) {
6738 try {
6739 pw.print("Battery History (");
6740 pw.print((100*historyUsedSize)/historyTotalSize);
6741 pw.print("% used, ");
6742 printSizeValue(pw, historyUsedSize);
6743 pw.print(" used of ");
6744 printSizeValue(pw, historyTotalSize);
6745 pw.print(", ");
6746 pw.print(getHistoryStringPoolSize());
6747 pw.print(" strings using ");
6748 printSizeValue(pw, getHistoryStringPoolBytes());
6749 pw.println("):");
Dianne Hackborn37de0982014-05-09 09:32:18 -07006750 dumpHistoryLocked(pw, flags, histStart, false);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006751 pw.println();
6752 } finally {
6753 finishIteratingHistoryLocked();
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006754 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006755 }
6756
6757 if (startIteratingOldHistoryLocked()) {
6758 try {
Dianne Hackborn37de0982014-05-09 09:32:18 -07006759 final HistoryItem rec = new HistoryItem();
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006760 pw.println("Old battery History:");
6761 HistoryPrinter hprinter = new HistoryPrinter();
Dianne Hackborn99009ea2014-04-18 16:23:42 -07006762 long baseTime = -1;
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006763 while (getNextOldHistoryLocked(rec)) {
Dianne Hackborn99009ea2014-04-18 16:23:42 -07006764 if (baseTime < 0) {
6765 baseTime = rec.time;
6766 }
6767 hprinter.printNextItem(pw, rec, baseTime, false, (flags&DUMP_VERBOSE) != 0);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006768 }
6769 pw.println();
6770 } finally {
6771 finishIteratingOldHistoryLocked();
6772 }
Dianne Hackborn32907cf2010-06-10 17:50:20 -07006773 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006774 }
6775
Dianne Hackborn1e725a72015-03-24 18:23:19 -07006776 if (filtering && (flags&(DUMP_CHARGED_ONLY|DUMP_DAILY_ONLY)) == 0) {
Dianne Hackborn099bc622014-01-22 13:39:16 -08006777 return;
6778 }
6779
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006780 if (!filtering) {
6781 SparseArray<? extends Uid> uidStats = getUidStats();
6782 final int NU = uidStats.size();
6783 boolean didPid = false;
6784 long nowRealtime = SystemClock.elapsedRealtime();
6785 for (int i=0; i<NU; i++) {
6786 Uid uid = uidStats.valueAt(i);
6787 SparseArray<? extends Uid.Pid> pids = uid.getPidStats();
6788 if (pids != null) {
6789 for (int j=0; j<pids.size(); j++) {
6790 Uid.Pid pid = pids.valueAt(j);
6791 if (!didPid) {
6792 pw.println("Per-PID Stats:");
6793 didPid = true;
6794 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08006795 long time = pid.mWakeSumMs + (pid.mWakeNesting > 0
6796 ? (nowRealtime - pid.mWakeStartMs) : 0);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006797 pw.print(" PID "); pw.print(pids.keyAt(j));
6798 pw.print(" wake time: ");
6799 TimeUtils.formatDuration(time, pw);
6800 pw.println("");
Dianne Hackbornb5e31652010-09-07 12:13:55 -07006801 }
Dianne Hackbornb5e31652010-09-07 12:13:55 -07006802 }
6803 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006804 if (didPid) {
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006805 pw.println();
6806 }
Dianne Hackborncd0e3352014-08-07 17:08:09 -07006807 }
6808
6809 if (!filtering || (flags&DUMP_CHARGED_ONLY) != 0) {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006810 if (dumpDurationSteps(pw, " ", "Discharge step durations:",
6811 getDischargeLevelStepTracker(), false)) {
Kweku Adamsb0449e02016-10-12 14:18:27 -07006812 long timeRemaining = computeBatteryTimeRemaining(
6813 SystemClock.elapsedRealtime() * 1000);
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006814 if (timeRemaining >= 0) {
6815 pw.print(" Estimated discharge time remaining: ");
6816 TimeUtils.formatDuration(timeRemaining / 1000, pw);
6817 pw.println();
6818 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006819 final LevelStepTracker steps = getDischargeLevelStepTracker();
6820 for (int i=0; i< STEP_LEVEL_MODES_OF_INTEREST.length; i++) {
6821 dumpTimeEstimate(pw, " Estimated ", STEP_LEVEL_MODE_LABELS[i], " time: ",
6822 steps.computeTimeEstimate(STEP_LEVEL_MODES_OF_INTEREST[i],
6823 STEP_LEVEL_MODE_VALUES[i], null));
6824 }
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006825 pw.println();
6826 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006827 if (dumpDurationSteps(pw, " ", "Charge step durations:",
6828 getChargeLevelStepTracker(), false)) {
Kweku Adamsb0449e02016-10-12 14:18:27 -07006829 long timeRemaining = computeChargeTimeRemaining(
6830 SystemClock.elapsedRealtime() * 1000);
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006831 if (timeRemaining >= 0) {
6832 pw.print(" Estimated charge time remaining: ");
6833 TimeUtils.formatDuration(timeRemaining / 1000, pw);
6834 pw.println();
6835 }
6836 pw.println();
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006837 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006838 }
Dianne Hackbornc81983a2017-10-20 16:16:32 -07006839 if (!filtering || (flags & DUMP_DAILY_ONLY) != 0) {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006840 pw.println("Daily stats:");
6841 pw.print(" Current start time: ");
6842 pw.println(DateFormat.format("yyyy-MM-dd-HH-mm-ss",
6843 getCurrentDailyStartTime()).toString());
6844 pw.print(" Next min deadline: ");
6845 pw.println(DateFormat.format("yyyy-MM-dd-HH-mm-ss",
6846 getNextMinDailyDeadline()).toString());
6847 pw.print(" Next max deadline: ");
6848 pw.println(DateFormat.format("yyyy-MM-dd-HH-mm-ss",
6849 getNextMaxDailyDeadline()).toString());
6850 StringBuilder sb = new StringBuilder(64);
6851 int[] outInt = new int[1];
6852 LevelStepTracker dsteps = getDailyDischargeLevelStepTracker();
6853 LevelStepTracker csteps = getDailyChargeLevelStepTracker();
Dianne Hackborn88e98df2015-03-23 13:29:14 -07006854 ArrayList<PackageChange> pkgc = getDailyPackageChanges();
6855 if (dsteps.mNumStepDurations > 0 || csteps.mNumStepDurations > 0 || pkgc != null) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07006856 if ((flags&DUMP_DAILY_ONLY) != 0 || !filtering) {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006857 if (dumpDurationSteps(pw, " ", " Current daily discharge step durations:",
6858 dsteps, false)) {
6859 dumpDailyLevelStepSummary(pw, " ", "Discharge", dsteps,
6860 sb, outInt);
6861 }
6862 if (dumpDurationSteps(pw, " ", " Current daily charge step durations:",
6863 csteps, false)) {
6864 dumpDailyLevelStepSummary(pw, " ", "Charge", csteps,
6865 sb, outInt);
6866 }
Dianne Hackborn88e98df2015-03-23 13:29:14 -07006867 dumpDailyPackageChanges(pw, " ", pkgc);
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006868 } else {
6869 pw.println(" Current daily steps:");
6870 dumpDailyLevelStepSummary(pw, " ", "Discharge", dsteps,
6871 sb, outInt);
6872 dumpDailyLevelStepSummary(pw, " ", "Charge", csteps,
6873 sb, outInt);
6874 }
6875 }
6876 DailyItem dit;
6877 int curIndex = 0;
6878 while ((dit=getDailyItemLocked(curIndex)) != null) {
6879 curIndex++;
6880 if ((flags&DUMP_DAILY_ONLY) != 0) {
6881 pw.println();
6882 }
6883 pw.print(" Daily from ");
6884 pw.print(DateFormat.format("yyyy-MM-dd-HH-mm-ss", dit.mStartTime).toString());
6885 pw.print(" to ");
6886 pw.print(DateFormat.format("yyyy-MM-dd-HH-mm-ss", dit.mEndTime).toString());
6887 pw.println(":");
Dianne Hackborn1e725a72015-03-24 18:23:19 -07006888 if ((flags&DUMP_DAILY_ONLY) != 0 || !filtering) {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006889 if (dumpDurationSteps(pw, " ",
6890 " Discharge step durations:", dit.mDischargeSteps, false)) {
6891 dumpDailyLevelStepSummary(pw, " ", "Discharge", dit.mDischargeSteps,
6892 sb, outInt);
6893 }
6894 if (dumpDurationSteps(pw, " ",
6895 " Charge step durations:", dit.mChargeSteps, false)) {
6896 dumpDailyLevelStepSummary(pw, " ", "Charge", dit.mChargeSteps,
6897 sb, outInt);
6898 }
Dianne Hackborn88e98df2015-03-23 13:29:14 -07006899 dumpDailyPackageChanges(pw, " ", dit.mPackageChanges);
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006900 } else {
6901 dumpDailyLevelStepSummary(pw, " ", "Discharge", dit.mDischargeSteps,
6902 sb, outInt);
6903 dumpDailyLevelStepSummary(pw, " ", "Charge", dit.mChargeSteps,
6904 sb, outInt);
6905 }
6906 }
6907 pw.println();
6908 }
6909 if (!filtering || (flags&DUMP_CHARGED_ONLY) != 0) {
Jeff Sharkeyec43a6b2013-04-30 13:33:18 -07006910 pw.println("Statistics since last charge:");
6911 pw.println(" System starts: " + getStartCount()
6912 + ", currently on battery: " + getIsOnBattery());
Dianne Hackbornd953c532014-08-16 18:17:38 -07006913 dumpLocked(context, pw, "", STATS_SINCE_CHARGED, reqUid,
6914 (flags&DUMP_DEVICE_WIFI_ONLY) != 0);
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006915 pw.println();
Jeff Sharkeyec43a6b2013-04-30 13:33:18 -07006916 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006917 }
Mike Mac2f518a2017-09-19 16:06:03 -07006918
Kweku Adams2f73ecd2017-09-27 16:59:19 -07006919 // This is called from BatteryStatsService.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006920 @SuppressWarnings("unused")
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006921 public void dumpCheckinLocked(Context context, PrintWriter pw,
6922 List<ApplicationInfo> apps, int flags, long histStart) {
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006923 prepareForDumpLocked();
Dianne Hackborncd0e3352014-08-07 17:08:09 -07006924
6925 dumpLine(pw, 0 /* uid */, "i" /* category */, VERSION_DATA,
Dianne Hackborn0c820db2015-04-14 17:47:34 -07006926 CHECKIN_VERSION, getParcelVersion(), getStartPlatformVersion(),
6927 getEndPlatformVersion());
Dianne Hackborncd0e3352014-08-07 17:08:09 -07006928
Dianne Hackborn13ac0412013-06-25 19:34:49 -07006929 long now = getHistoryBaseTime() + SystemClock.elapsedRealtime();
6930
Kweku Adams2f73ecd2017-09-27 16:59:19 -07006931 if ((flags & (DUMP_INCLUDE_HISTORY | DUMP_HISTORY_ONLY)) != 0) {
Dianne Hackborn49021f52013-09-04 18:03:40 -07006932 if (startIteratingHistoryLocked()) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006933 try {
6934 for (int i=0; i<getHistoryStringPoolSize(); i++) {
6935 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
6936 pw.print(HISTORY_STRING_POOL); pw.print(',');
6937 pw.print(i);
Dianne Hackborn99009ea2014-04-18 16:23:42 -07006938 pw.print(",");
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006939 pw.print(getHistoryTagPoolUid(i));
Dianne Hackborn99009ea2014-04-18 16:23:42 -07006940 pw.print(",\"");
6941 String str = getHistoryTagPoolString(i);
6942 str = str.replace("\\", "\\\\");
6943 str = str.replace("\"", "\\\"");
6944 pw.print(str);
6945 pw.print("\"");
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006946 pw.println();
6947 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07006948 dumpHistoryLocked(pw, flags, histStart, true);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006949 } finally {
6950 finishIteratingHistoryLocked();
Dianne Hackborn099bc622014-01-22 13:39:16 -08006951 }
Dianne Hackborn13ac0412013-06-25 19:34:49 -07006952 }
Dianne Hackborn13ac0412013-06-25 19:34:49 -07006953 }
6954
Kweku Adams2f73ecd2017-09-27 16:59:19 -07006955 if ((flags & DUMP_HISTORY_ONLY) != 0) {
Dianne Hackborn099bc622014-01-22 13:39:16 -08006956 return;
6957 }
6958
Dianne Hackborne4a59512010-12-07 11:08:07 -08006959 if (apps != null) {
Dianne Hackborn9cfba352016-03-24 17:31:28 -07006960 SparseArray<Pair<ArrayList<String>, MutableBoolean>> uids = new SparseArray<>();
Dianne Hackborne4a59512010-12-07 11:08:07 -08006961 for (int i=0; i<apps.size(); i++) {
6962 ApplicationInfo ai = apps.get(i);
Dianne Hackborn9cfba352016-03-24 17:31:28 -07006963 Pair<ArrayList<String>, MutableBoolean> pkgs = uids.get(
6964 UserHandle.getAppId(ai.uid));
Dianne Hackborne4a59512010-12-07 11:08:07 -08006965 if (pkgs == null) {
Dianne Hackborn9cfba352016-03-24 17:31:28 -07006966 pkgs = new Pair<>(new ArrayList<String>(), new MutableBoolean(false));
6967 uids.put(UserHandle.getAppId(ai.uid), pkgs);
Dianne Hackborne4a59512010-12-07 11:08:07 -08006968 }
Dianne Hackborn9cfba352016-03-24 17:31:28 -07006969 pkgs.first.add(ai.packageName);
Dianne Hackborne4a59512010-12-07 11:08:07 -08006970 }
6971 SparseArray<? extends Uid> uidStats = getUidStats();
6972 final int NU = uidStats.size();
6973 String[] lineArgs = new String[2];
6974 for (int i=0; i<NU; i++) {
Dianne Hackborn9cfba352016-03-24 17:31:28 -07006975 int uid = UserHandle.getAppId(uidStats.keyAt(i));
6976 Pair<ArrayList<String>, MutableBoolean> pkgs = uids.get(uid);
6977 if (pkgs != null && !pkgs.second.value) {
6978 pkgs.second.value = true;
6979 for (int j=0; j<pkgs.first.size(); j++) {
Dianne Hackborne4a59512010-12-07 11:08:07 -08006980 lineArgs[0] = Integer.toString(uid);
Dianne Hackborn9cfba352016-03-24 17:31:28 -07006981 lineArgs[1] = pkgs.first.get(j);
Dianne Hackborne4a59512010-12-07 11:08:07 -08006982 dumpLine(pw, 0 /* uid */, "i" /* category */, UID_DATA,
6983 (Object[])lineArgs);
6984 }
6985 }
6986 }
6987 }
Kweku Adams2f73ecd2017-09-27 16:59:19 -07006988 if ((flags & DUMP_DAILY_ONLY) == 0) {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006989 dumpDurationSteps(pw, "", DISCHARGE_STEP_DATA, getDischargeLevelStepTracker(), true);
Dianne Hackbornd06dcfd2014-05-02 13:49:30 -07006990 String[] lineArgs = new String[1];
Kweku Adamsb0449e02016-10-12 14:18:27 -07006991 long timeRemaining = computeBatteryTimeRemaining(SystemClock.elapsedRealtime() * 1000);
Dianne Hackbornd06dcfd2014-05-02 13:49:30 -07006992 if (timeRemaining >= 0) {
6993 lineArgs[0] = Long.toString(timeRemaining);
6994 dumpLine(pw, 0 /* uid */, "i" /* category */, DISCHARGE_TIME_REMAIN_DATA,
6995 (Object[])lineArgs);
6996 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006997 dumpDurationSteps(pw, "", CHARGE_STEP_DATA, getChargeLevelStepTracker(), true);
Kweku Adamsb0449e02016-10-12 14:18:27 -07006998 timeRemaining = computeChargeTimeRemaining(SystemClock.elapsedRealtime() * 1000);
Dianne Hackbornd06dcfd2014-05-02 13:49:30 -07006999 if (timeRemaining >= 0) {
7000 lineArgs[0] = Long.toString(timeRemaining);
7001 dumpLine(pw, 0 /* uid */, "i" /* category */, CHARGE_TIME_REMAIN_DATA,
7002 (Object[])lineArgs);
7003 }
Dianne Hackbornd953c532014-08-16 18:17:38 -07007004 dumpCheckinLocked(context, pw, STATS_SINCE_CHARGED, -1,
7005 (flags&DUMP_DEVICE_WIFI_ONLY) != 0);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08007006 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007007 }
Kweku Adams2f73ecd2017-09-27 16:59:19 -07007008
Kweku Adams87b19ec2017-10-09 12:40:03 -07007009 /** Dump #STATS_SINCE_CHARGED batterystats data to a proto. @hide */
Kweku Adams2f73ecd2017-09-27 16:59:19 -07007010 public void dumpProtoLocked(Context context, FileDescriptor fd, List<ApplicationInfo> apps,
Kweku Adams6ccebf22017-12-11 12:30:35 -08007011 int flags) {
Kweku Adams2f73ecd2017-09-27 16:59:19 -07007012 final ProtoOutputStream proto = new ProtoOutputStream(fd);
7013 final long bToken = proto.start(BatteryStatsServiceDumpProto.BATTERYSTATS);
7014 prepareForDumpLocked();
7015
7016 proto.write(BatteryStatsProto.REPORT_VERSION, CHECKIN_VERSION);
7017 proto.write(BatteryStatsProto.PARCEL_VERSION, getParcelVersion());
7018 proto.write(BatteryStatsProto.START_PLATFORM_VERSION, getStartPlatformVersion());
7019 proto.write(BatteryStatsProto.END_PLATFORM_VERSION, getEndPlatformVersion());
7020
Kweku Adams6ccebf22017-12-11 12:30:35 -08007021 // History intentionally not included in proto dump.
Kweku Adams2f73ecd2017-09-27 16:59:19 -07007022
7023 if ((flags & (DUMP_HISTORY_ONLY | DUMP_DAILY_ONLY)) == 0) {
Kweku Adams103351f2017-10-16 14:39:34 -07007024 final BatteryStatsHelper helper = new BatteryStatsHelper(context, false,
7025 (flags & DUMP_DEVICE_WIFI_ONLY) != 0);
7026 helper.create(this);
7027 helper.refreshStats(STATS_SINCE_CHARGED, UserHandle.USER_ALL);
7028
7029 dumpProtoAppsLocked(proto, helper, apps);
7030 dumpProtoSystemLocked(proto, helper);
Kweku Adams2f73ecd2017-09-27 16:59:19 -07007031 }
7032
7033 proto.end(bToken);
7034 proto.flush();
7035 }
Kweku Adams87b19ec2017-10-09 12:40:03 -07007036
Kweku Adams103351f2017-10-16 14:39:34 -07007037 private void dumpProtoAppsLocked(ProtoOutputStream proto, BatteryStatsHelper helper,
7038 List<ApplicationInfo> apps) {
7039 final int which = STATS_SINCE_CHARGED;
7040 final long rawUptimeUs = SystemClock.uptimeMillis() * 1000;
7041 final long rawRealtimeMs = SystemClock.elapsedRealtime();
7042 final long rawRealtimeUs = rawRealtimeMs * 1000;
7043 final long batteryUptimeUs = getBatteryUptime(rawUptimeUs);
7044
7045 SparseArray<ArrayList<String>> aidToPackages = new SparseArray<>();
7046 if (apps != null) {
7047 for (int i = 0; i < apps.size(); ++i) {
7048 ApplicationInfo ai = apps.get(i);
7049 int aid = UserHandle.getAppId(ai.uid);
7050 ArrayList<String> pkgs = aidToPackages.get(aid);
7051 if (pkgs == null) {
7052 pkgs = new ArrayList<String>();
7053 aidToPackages.put(aid, pkgs);
7054 }
7055 pkgs.add(ai.packageName);
7056 }
7057 }
7058
7059 SparseArray<BatterySipper> uidToSipper = new SparseArray<>();
7060 final List<BatterySipper> sippers = helper.getUsageList();
7061 if (sippers != null) {
7062 for (int i = 0; i < sippers.size(); ++i) {
7063 final BatterySipper bs = sippers.get(i);
7064 if (bs.drainType != BatterySipper.DrainType.APP) {
7065 // Others are handled by dumpProtoSystemLocked()
7066 continue;
7067 }
7068 uidToSipper.put(bs.uidObj.getUid(), bs);
7069 }
7070 }
7071
7072 SparseArray<? extends Uid> uidStats = getUidStats();
7073 final int n = uidStats.size();
7074 for (int iu = 0; iu < n; ++iu) {
7075 final long uTkn = proto.start(BatteryStatsProto.UIDS);
7076 final Uid u = uidStats.valueAt(iu);
7077
7078 final int uid = uidStats.keyAt(iu);
7079 proto.write(UidProto.UID, uid);
7080
7081 // Print packages and apk stats (UID_DATA & APK_DATA)
7082 ArrayList<String> pkgs = aidToPackages.get(UserHandle.getAppId(uid));
7083 if (pkgs == null) {
7084 pkgs = new ArrayList<String>();
7085 }
7086 final ArrayMap<String, ? extends BatteryStats.Uid.Pkg> packageStats =
7087 u.getPackageStats();
7088 for (int ipkg = packageStats.size() - 1; ipkg >= 0; --ipkg) {
7089 String pkg = packageStats.keyAt(ipkg);
7090 final ArrayMap<String, ? extends Uid.Pkg.Serv> serviceStats =
7091 packageStats.valueAt(ipkg).getServiceStats();
7092 if (serviceStats.size() == 0) {
7093 // Due to the way ActivityManagerService logs wakeup alarms, some packages (for
7094 // example, "android") may be included in the packageStats that aren't part of
7095 // the UID. If they don't have any services, then they shouldn't be listed here.
7096 // These packages won't be a part in the pkgs List.
7097 continue;
7098 }
7099
7100 final long pToken = proto.start(UidProto.PACKAGES);
7101 proto.write(UidProto.Package.NAME, pkg);
7102 // Remove from the packages list since we're logging it here.
7103 pkgs.remove(pkg);
7104
7105 for (int isvc = serviceStats.size() - 1; isvc >= 0; --isvc) {
7106 final BatteryStats.Uid.Pkg.Serv ss = serviceStats.valueAt(isvc);
7107 long sToken = proto.start(UidProto.Package.SERVICES);
7108
7109 proto.write(UidProto.Package.Service.NAME, serviceStats.keyAt(isvc));
7110 proto.write(UidProto.Package.Service.START_DURATION_MS,
7111 roundUsToMs(ss.getStartTime(batteryUptimeUs, which)));
7112 proto.write(UidProto.Package.Service.START_COUNT, ss.getStarts(which));
7113 proto.write(UidProto.Package.Service.LAUNCH_COUNT, ss.getLaunches(which));
7114
7115 proto.end(sToken);
7116 }
7117 proto.end(pToken);
7118 }
7119 // Print any remaining packages that weren't in the packageStats map. pkgs is pulled
7120 // from PackageManager data. Packages are only included in packageStats if there was
7121 // specific data tracked for them (services and wakeup alarms, etc.).
7122 for (String p : pkgs) {
7123 final long pToken = proto.start(UidProto.PACKAGES);
7124 proto.write(UidProto.Package.NAME, p);
7125 proto.end(pToken);
7126 }
7127
7128 // Total wakelock data (AGGREGATED_WAKELOCK_DATA)
7129 if (u.getAggregatedPartialWakelockTimer() != null) {
7130 final Timer timer = u.getAggregatedPartialWakelockTimer();
7131 // Times are since reset (regardless of 'which')
7132 final long totTimeMs = timer.getTotalDurationMsLocked(rawRealtimeMs);
7133 final Timer bgTimer = timer.getSubTimer();
7134 final long bgTimeMs = bgTimer != null
7135 ? bgTimer.getTotalDurationMsLocked(rawRealtimeMs) : 0;
7136 final long awToken = proto.start(UidProto.AGGREGATED_WAKELOCK);
7137 proto.write(UidProto.AggregatedWakelock.PARTIAL_DURATION_MS, totTimeMs);
7138 proto.write(UidProto.AggregatedWakelock.BACKGROUND_PARTIAL_DURATION_MS, bgTimeMs);
7139 proto.end(awToken);
7140 }
7141
7142 // Audio (AUDIO_DATA)
7143 dumpTimer(proto, UidProto.AUDIO, u.getAudioTurnedOnTimer(), rawRealtimeUs, which);
7144
7145 // Bluetooth Controller (BLUETOOTH_CONTROLLER_DATA)
7146 dumpControllerActivityProto(proto, UidProto.BLUETOOTH_CONTROLLER,
7147 u.getBluetoothControllerActivity(), which);
7148
7149 // BLE scans (BLUETOOTH_MISC_DATA) (uses totalDurationMsLocked and MaxDurationMsLocked)
7150 final Timer bleTimer = u.getBluetoothScanTimer();
7151 if (bleTimer != null) {
7152 final long bmToken = proto.start(UidProto.BLUETOOTH_MISC);
7153
7154 dumpTimer(proto, UidProto.BluetoothMisc.APPORTIONED_BLE_SCAN, bleTimer,
7155 rawRealtimeUs, which);
7156 dumpTimer(proto, UidProto.BluetoothMisc.BACKGROUND_BLE_SCAN,
7157 u.getBluetoothScanBackgroundTimer(), rawRealtimeUs, which);
7158 // Unoptimized scan timer. Unpooled and since reset (regardless of 'which').
7159 dumpTimer(proto, UidProto.BluetoothMisc.UNOPTIMIZED_BLE_SCAN,
7160 u.getBluetoothUnoptimizedScanTimer(), rawRealtimeUs, which);
7161 // Unoptimized bg scan timer. Unpooled and since reset (regardless of 'which').
7162 dumpTimer(proto, UidProto.BluetoothMisc.BACKGROUND_UNOPTIMIZED_BLE_SCAN,
7163 u.getBluetoothUnoptimizedScanBackgroundTimer(), rawRealtimeUs, which);
7164 // Result counters
7165 proto.write(UidProto.BluetoothMisc.BLE_SCAN_RESULT_COUNT,
7166 u.getBluetoothScanResultCounter() != null
7167 ? u.getBluetoothScanResultCounter().getCountLocked(which) : 0);
7168 proto.write(UidProto.BluetoothMisc.BACKGROUND_BLE_SCAN_RESULT_COUNT,
7169 u.getBluetoothScanResultBgCounter() != null
7170 ? u.getBluetoothScanResultBgCounter().getCountLocked(which) : 0);
7171
7172 proto.end(bmToken);
7173 }
7174
7175 // Camera (CAMERA_DATA)
7176 dumpTimer(proto, UidProto.CAMERA, u.getCameraTurnedOnTimer(), rawRealtimeUs, which);
7177
7178 // CPU stats (CPU_DATA & CPU_TIMES_AT_FREQ_DATA)
7179 final long cpuToken = proto.start(UidProto.CPU);
7180 proto.write(UidProto.Cpu.USER_DURATION_MS, roundUsToMs(u.getUserCpuTimeUs(which)));
7181 proto.write(UidProto.Cpu.SYSTEM_DURATION_MS, roundUsToMs(u.getSystemCpuTimeUs(which)));
7182
7183 final long[] cpuFreqs = getCpuFreqs();
7184 if (cpuFreqs != null) {
7185 final long[] cpuFreqTimeMs = u.getCpuFreqTimes(which);
7186 // If total cpuFreqTimes is null, then we don't need to check for
7187 // screenOffCpuFreqTimes.
7188 if (cpuFreqTimeMs != null && cpuFreqTimeMs.length == cpuFreqs.length) {
7189 long[] screenOffCpuFreqTimeMs = u.getScreenOffCpuFreqTimes(which);
7190 if (screenOffCpuFreqTimeMs == null) {
7191 screenOffCpuFreqTimeMs = new long[cpuFreqTimeMs.length];
7192 }
7193 for (int ic = 0; ic < cpuFreqTimeMs.length; ++ic) {
7194 long cToken = proto.start(UidProto.Cpu.BY_FREQUENCY);
7195 proto.write(UidProto.Cpu.ByFrequency.FREQUENCY_INDEX, ic + 1);
7196 proto.write(UidProto.Cpu.ByFrequency.TOTAL_DURATION_MS,
7197 cpuFreqTimeMs[ic]);
7198 proto.write(UidProto.Cpu.ByFrequency.SCREEN_OFF_DURATION_MS,
7199 screenOffCpuFreqTimeMs[ic]);
7200 proto.end(cToken);
7201 }
7202 }
7203 }
Sudheer Shanka6d658d72018-01-01 01:36:49 -08007204
7205 for (int procState = 0; procState < Uid.NUM_PROCESS_STATE; ++procState) {
7206 final long[] timesMs = u.getCpuFreqTimes(which, procState);
7207 if (timesMs != null && timesMs.length == cpuFreqs.length) {
7208 long[] screenOffTimesMs = u.getScreenOffCpuFreqTimes(which, procState);
7209 if (screenOffTimesMs == null) {
7210 screenOffTimesMs = new long[timesMs.length];
7211 }
7212 final long procToken = proto.start(UidProto.Cpu.BY_PROCESS_STATE);
7213 proto.write(UidProto.Cpu.ByProcessState.PROCESS_STATE, procState);
7214 for (int ic = 0; ic < timesMs.length; ++ic) {
7215 long cToken = proto.start(UidProto.Cpu.ByProcessState.BY_FREQUENCY);
7216 proto.write(UidProto.Cpu.ByFrequency.FREQUENCY_INDEX, ic + 1);
7217 proto.write(UidProto.Cpu.ByFrequency.TOTAL_DURATION_MS,
7218 timesMs[ic]);
7219 proto.write(UidProto.Cpu.ByFrequency.SCREEN_OFF_DURATION_MS,
7220 screenOffTimesMs[ic]);
7221 proto.end(cToken);
7222 }
7223 proto.end(procToken);
7224 }
7225 }
Kweku Adams103351f2017-10-16 14:39:34 -07007226 proto.end(cpuToken);
7227
7228 // Flashlight (FLASHLIGHT_DATA)
7229 dumpTimer(proto, UidProto.FLASHLIGHT, u.getFlashlightTurnedOnTimer(),
7230 rawRealtimeUs, which);
7231
7232 // Foreground activity (FOREGROUND_ACTIVITY_DATA)
7233 dumpTimer(proto, UidProto.FOREGROUND_ACTIVITY, u.getForegroundActivityTimer(),
7234 rawRealtimeUs, which);
7235
7236 // Foreground service (FOREGROUND_SERVICE_DATA)
7237 dumpTimer(proto, UidProto.FOREGROUND_SERVICE, u.getForegroundServiceTimer(),
7238 rawRealtimeUs, which);
7239
7240 // Job completion (JOB_COMPLETION_DATA)
7241 final ArrayMap<String, SparseIntArray> completions = u.getJobCompletionStats();
7242 final int[] reasons = new int[]{
7243 JobParameters.REASON_CANCELED,
7244 JobParameters.REASON_CONSTRAINTS_NOT_SATISFIED,
7245 JobParameters.REASON_PREEMPT,
7246 JobParameters.REASON_TIMEOUT,
7247 JobParameters.REASON_DEVICE_IDLE,
7248 };
7249 for (int ic = 0; ic < completions.size(); ++ic) {
7250 SparseIntArray types = completions.valueAt(ic);
7251 if (types != null) {
7252 final long jcToken = proto.start(UidProto.JOB_COMPLETION);
7253
7254 proto.write(UidProto.JobCompletion.NAME, completions.keyAt(ic));
7255
7256 for (int r : reasons) {
7257 long rToken = proto.start(UidProto.JobCompletion.REASON_COUNT);
7258 proto.write(UidProto.JobCompletion.ReasonCount.NAME, r);
7259 proto.write(UidProto.JobCompletion.ReasonCount.COUNT, types.get(r, 0));
7260 proto.end(rToken);
7261 }
7262
7263 proto.end(jcToken);
7264 }
7265 }
7266
7267 // Scheduled jobs (JOB_DATA)
7268 final ArrayMap<String, ? extends Timer> jobs = u.getJobStats();
7269 for (int ij = jobs.size() - 1; ij >= 0; --ij) {
7270 final Timer timer = jobs.valueAt(ij);
7271 final Timer bgTimer = timer.getSubTimer();
7272 final long jToken = proto.start(UidProto.JOBS);
7273
7274 proto.write(UidProto.Job.NAME, jobs.keyAt(ij));
7275 // Background uses totalDurationMsLocked, while total uses totalTimeLocked
7276 dumpTimer(proto, UidProto.Job.TOTAL, timer, rawRealtimeUs, which);
7277 dumpTimer(proto, UidProto.Job.BACKGROUND, bgTimer, rawRealtimeUs, which);
7278
7279 proto.end(jToken);
7280 }
7281
7282 // Modem Controller (MODEM_CONTROLLER_DATA)
7283 dumpControllerActivityProto(proto, UidProto.MODEM_CONTROLLER,
7284 u.getModemControllerActivity(), which);
7285
7286 // Network stats (NETWORK_DATA)
7287 final long nToken = proto.start(UidProto.NETWORK);
7288 proto.write(UidProto.Network.MOBILE_BYTES_RX,
7289 u.getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which));
7290 proto.write(UidProto.Network.MOBILE_BYTES_TX,
7291 u.getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which));
7292 proto.write(UidProto.Network.WIFI_BYTES_RX,
7293 u.getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which));
7294 proto.write(UidProto.Network.WIFI_BYTES_TX,
7295 u.getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which));
7296 proto.write(UidProto.Network.BT_BYTES_RX,
7297 u.getNetworkActivityBytes(NETWORK_BT_RX_DATA, which));
7298 proto.write(UidProto.Network.BT_BYTES_TX,
7299 u.getNetworkActivityBytes(NETWORK_BT_TX_DATA, which));
7300 proto.write(UidProto.Network.MOBILE_PACKETS_RX,
7301 u.getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which));
7302 proto.write(UidProto.Network.MOBILE_PACKETS_TX,
7303 u.getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which));
7304 proto.write(UidProto.Network.WIFI_PACKETS_RX,
7305 u.getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which));
7306 proto.write(UidProto.Network.WIFI_PACKETS_TX,
7307 u.getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which));
7308 proto.write(UidProto.Network.MOBILE_ACTIVE_DURATION_MS,
7309 roundUsToMs(u.getMobileRadioActiveTime(which)));
7310 proto.write(UidProto.Network.MOBILE_ACTIVE_COUNT,
7311 u.getMobileRadioActiveCount(which));
7312 proto.write(UidProto.Network.MOBILE_WAKEUP_COUNT,
7313 u.getMobileRadioApWakeupCount(which));
7314 proto.write(UidProto.Network.WIFI_WAKEUP_COUNT,
7315 u.getWifiRadioApWakeupCount(which));
7316 proto.write(UidProto.Network.MOBILE_BYTES_BG_RX,
7317 u.getNetworkActivityBytes(NETWORK_MOBILE_BG_RX_DATA, which));
7318 proto.write(UidProto.Network.MOBILE_BYTES_BG_TX,
7319 u.getNetworkActivityBytes(NETWORK_MOBILE_BG_TX_DATA, which));
7320 proto.write(UidProto.Network.WIFI_BYTES_BG_RX,
7321 u.getNetworkActivityBytes(NETWORK_WIFI_BG_RX_DATA, which));
7322 proto.write(UidProto.Network.WIFI_BYTES_BG_TX,
7323 u.getNetworkActivityBytes(NETWORK_WIFI_BG_TX_DATA, which));
7324 proto.write(UidProto.Network.MOBILE_PACKETS_BG_RX,
7325 u.getNetworkActivityPackets(NETWORK_MOBILE_BG_RX_DATA, which));
7326 proto.write(UidProto.Network.MOBILE_PACKETS_BG_TX,
7327 u.getNetworkActivityPackets(NETWORK_MOBILE_BG_TX_DATA, which));
7328 proto.write(UidProto.Network.WIFI_PACKETS_BG_RX,
7329 u.getNetworkActivityPackets(NETWORK_WIFI_BG_RX_DATA, which));
7330 proto.write(UidProto.Network.WIFI_PACKETS_BG_TX,
7331 u.getNetworkActivityPackets(NETWORK_WIFI_BG_TX_DATA, which));
7332 proto.end(nToken);
7333
7334 // Power use item (POWER_USE_ITEM_DATA)
7335 BatterySipper bs = uidToSipper.get(uid);
7336 if (bs != null) {
7337 final long bsToken = proto.start(UidProto.POWER_USE_ITEM);
7338 proto.write(UidProto.PowerUseItem.COMPUTED_POWER_MAH, bs.totalPowerMah);
7339 proto.write(UidProto.PowerUseItem.SHOULD_HIDE, bs.shouldHide);
7340 proto.write(UidProto.PowerUseItem.SCREEN_POWER_MAH, bs.screenPowerMah);
7341 proto.write(UidProto.PowerUseItem.PROPORTIONAL_SMEAR_MAH,
7342 bs.proportionalSmearMah);
7343 proto.end(bsToken);
7344 }
7345
7346 // Processes (PROCESS_DATA)
7347 final ArrayMap<String, ? extends BatteryStats.Uid.Proc> processStats =
7348 u.getProcessStats();
7349 for (int ipr = processStats.size() - 1; ipr >= 0; --ipr) {
7350 final Uid.Proc ps = processStats.valueAt(ipr);
7351 final long prToken = proto.start(UidProto.PROCESS);
7352
7353 proto.write(UidProto.Process.NAME, processStats.keyAt(ipr));
7354 proto.write(UidProto.Process.USER_DURATION_MS, ps.getUserTime(which));
7355 proto.write(UidProto.Process.SYSTEM_DURATION_MS, ps.getSystemTime(which));
7356 proto.write(UidProto.Process.FOREGROUND_DURATION_MS, ps.getForegroundTime(which));
7357 proto.write(UidProto.Process.START_COUNT, ps.getStarts(which));
7358 proto.write(UidProto.Process.ANR_COUNT, ps.getNumAnrs(which));
7359 proto.write(UidProto.Process.CRASH_COUNT, ps.getNumCrashes(which));
7360
7361 proto.end(prToken);
7362 }
7363
7364 // Sensors (SENSOR_DATA)
7365 final SparseArray<? extends BatteryStats.Uid.Sensor> sensors = u.getSensorStats();
7366 for (int ise = 0; ise < sensors.size(); ++ise) {
7367 final Uid.Sensor se = sensors.valueAt(ise);
7368 final Timer timer = se.getSensorTime();
7369 if (timer == null) {
7370 continue;
7371 }
7372 final Timer bgTimer = se.getSensorBackgroundTime();
7373 final int sensorNumber = sensors.keyAt(ise);
7374 final long seToken = proto.start(UidProto.SENSORS);
7375
7376 proto.write(UidProto.Sensor.ID, sensorNumber);
7377 // Background uses totalDurationMsLocked, while total uses totalTimeLocked
7378 dumpTimer(proto, UidProto.Sensor.APPORTIONED, timer, rawRealtimeUs, which);
7379 dumpTimer(proto, UidProto.Sensor.BACKGROUND, bgTimer, rawRealtimeUs, which);
7380
7381 proto.end(seToken);
7382 }
7383
7384 // State times (STATE_TIME_DATA)
7385 for (int ips = 0; ips < Uid.NUM_PROCESS_STATE; ++ips) {
7386 long durMs = roundUsToMs(u.getProcessStateTime(ips, rawRealtimeUs, which));
7387 if (durMs == 0) {
7388 continue;
7389 }
7390 final long stToken = proto.start(UidProto.STATES);
7391 proto.write(UidProto.StateTime.STATE, ips);
7392 proto.write(UidProto.StateTime.DURATION_MS, durMs);
7393 proto.end(stToken);
7394 }
7395
7396 // Syncs (SYNC_DATA)
7397 final ArrayMap<String, ? extends Timer> syncs = u.getSyncStats();
7398 for (int isy = syncs.size() - 1; isy >= 0; --isy) {
7399 final Timer timer = syncs.valueAt(isy);
7400 final Timer bgTimer = timer.getSubTimer();
7401 final long syToken = proto.start(UidProto.SYNCS);
7402
7403 proto.write(UidProto.Sync.NAME, syncs.keyAt(isy));
7404 // Background uses totalDurationMsLocked, while total uses totalTimeLocked
7405 dumpTimer(proto, UidProto.Sync.TOTAL, timer, rawRealtimeUs, which);
7406 dumpTimer(proto, UidProto.Sync.BACKGROUND, bgTimer, rawRealtimeUs, which);
7407
7408 proto.end(syToken);
7409 }
7410
7411 // User activity (USER_ACTIVITY_DATA)
7412 if (u.hasUserActivity()) {
7413 for (int i = 0; i < Uid.NUM_USER_ACTIVITY_TYPES; ++i) {
7414 int val = u.getUserActivityCount(i, which);
7415 if (val != 0) {
7416 final long uaToken = proto.start(UidProto.USER_ACTIVITY);
7417 proto.write(UidProto.UserActivity.NAME, i);
7418 proto.write(UidProto.UserActivity.COUNT, val);
7419 proto.end(uaToken);
7420 }
7421 }
7422 }
7423
7424 // Vibrator (VIBRATOR_DATA)
7425 dumpTimer(proto, UidProto.VIBRATOR, u.getVibratorOnTimer(), rawRealtimeUs, which);
7426
7427 // Video (VIDEO_DATA)
7428 dumpTimer(proto, UidProto.VIDEO, u.getVideoTurnedOnTimer(), rawRealtimeUs, which);
7429
7430 // Wakelocks (WAKELOCK_DATA)
7431 final ArrayMap<String, ? extends Uid.Wakelock> wakelocks = u.getWakelockStats();
7432 for (int iw = wakelocks.size() - 1; iw >= 0; --iw) {
7433 final Uid.Wakelock wl = wakelocks.valueAt(iw);
7434 final long wToken = proto.start(UidProto.WAKELOCKS);
7435 proto.write(UidProto.Wakelock.NAME, wakelocks.keyAt(iw));
7436 dumpTimer(proto, UidProto.Wakelock.FULL, wl.getWakeTime(WAKE_TYPE_FULL),
7437 rawRealtimeUs, which);
7438 final Timer pTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
7439 if (pTimer != null) {
7440 dumpTimer(proto, UidProto.Wakelock.PARTIAL, pTimer, rawRealtimeUs, which);
7441 dumpTimer(proto, UidProto.Wakelock.BACKGROUND_PARTIAL, pTimer.getSubTimer(),
7442 rawRealtimeUs, which);
7443 }
7444 dumpTimer(proto, UidProto.Wakelock.WINDOW, wl.getWakeTime(WAKE_TYPE_WINDOW),
7445 rawRealtimeUs, which);
7446 proto.end(wToken);
7447 }
7448
Ahmed ElArabawyddd09692017-10-30 17:58:29 -07007449 // Wifi Multicast Wakelock (WIFI_MULTICAST_WAKELOCK_DATA)
7450 dumpTimer(proto, UidProto.WIFI_MULTICAST_WAKELOCK, u.getMulticastWakelockStats(),
7451 rawRealtimeUs, which);
7452
Kweku Adams103351f2017-10-16 14:39:34 -07007453 // Wakeup alarms (WAKEUP_ALARM_DATA)
7454 for (int ipkg = packageStats.size() - 1; ipkg >= 0; --ipkg) {
7455 final Uid.Pkg ps = packageStats.valueAt(ipkg);
7456 final ArrayMap<String, ? extends Counter> alarms = ps.getWakeupAlarmStats();
7457 for (int iwa = alarms.size() - 1; iwa >= 0; --iwa) {
7458 final long waToken = proto.start(UidProto.WAKEUP_ALARM);
7459 proto.write(UidProto.WakeupAlarm.NAME, alarms.keyAt(iwa));
7460 proto.write(UidProto.WakeupAlarm.COUNT,
7461 alarms.valueAt(iwa).getCountLocked(which));
7462 proto.end(waToken);
7463 }
7464 }
7465
7466 // Wifi Controller (WIFI_CONTROLLER_DATA)
7467 dumpControllerActivityProto(proto, UidProto.WIFI_CONTROLLER,
7468 u.getWifiControllerActivity(), which);
7469
7470 // Wifi data (WIFI_DATA)
7471 final long wToken = proto.start(UidProto.WIFI);
7472 proto.write(UidProto.Wifi.FULL_WIFI_LOCK_DURATION_MS,
7473 roundUsToMs(u.getFullWifiLockTime(rawRealtimeUs, which)));
7474 dumpTimer(proto, UidProto.Wifi.APPORTIONED_SCAN, u.getWifiScanTimer(),
7475 rawRealtimeUs, which);
7476 proto.write(UidProto.Wifi.RUNNING_DURATION_MS,
7477 roundUsToMs(u.getWifiRunningTime(rawRealtimeUs, which)));
7478 dumpTimer(proto, UidProto.Wifi.BACKGROUND_SCAN, u.getWifiScanBackgroundTimer(),
7479 rawRealtimeUs, which);
7480 proto.end(wToken);
7481
7482 proto.end(uTkn);
7483 }
7484 }
7485
7486 private void dumpProtoSystemLocked(ProtoOutputStream proto, BatteryStatsHelper helper) {
Kweku Adams87b19ec2017-10-09 12:40:03 -07007487 final long sToken = proto.start(BatteryStatsProto.SYSTEM);
7488 final long rawUptimeUs = SystemClock.uptimeMillis() * 1000;
7489 final long rawRealtimeMs = SystemClock.elapsedRealtime();
7490 final long rawRealtimeUs = rawRealtimeMs * 1000;
7491 final int which = STATS_SINCE_CHARGED;
7492
7493 // Battery data (BATTERY_DATA)
Kweku Adams103351f2017-10-16 14:39:34 -07007494 final long bToken = proto.start(SystemProto.BATTERY);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007495 proto.write(SystemProto.Battery.START_CLOCK_TIME_MS, getStartClockTime());
7496 proto.write(SystemProto.Battery.START_COUNT, getStartCount());
7497 proto.write(SystemProto.Battery.TOTAL_REALTIME_MS,
7498 computeRealtime(rawRealtimeUs, which) / 1000);
7499 proto.write(SystemProto.Battery.TOTAL_UPTIME_MS,
7500 computeUptime(rawUptimeUs, which) / 1000);
7501 proto.write(SystemProto.Battery.BATTERY_REALTIME_MS,
7502 computeBatteryRealtime(rawRealtimeUs, which) / 1000);
7503 proto.write(SystemProto.Battery.BATTERY_UPTIME_MS,
7504 computeBatteryUptime(rawUptimeUs, which) / 1000);
7505 proto.write(SystemProto.Battery.SCREEN_OFF_REALTIME_MS,
7506 computeBatteryScreenOffRealtime(rawRealtimeUs, which) / 1000);
7507 proto.write(SystemProto.Battery.SCREEN_OFF_UPTIME_MS,
7508 computeBatteryScreenOffUptime(rawUptimeUs, which) / 1000);
7509 proto.write(SystemProto.Battery.SCREEN_DOZE_DURATION_MS,
7510 getScreenDozeTime(rawRealtimeUs, which) / 1000);
7511 proto.write(SystemProto.Battery.ESTIMATED_BATTERY_CAPACITY_MAH,
7512 getEstimatedBatteryCapacity());
7513 proto.write(SystemProto.Battery.MIN_LEARNED_BATTERY_CAPACITY_UAH,
7514 getMinLearnedBatteryCapacity());
7515 proto.write(SystemProto.Battery.MAX_LEARNED_BATTERY_CAPACITY_UAH,
7516 getMaxLearnedBatteryCapacity());
Kweku Adams103351f2017-10-16 14:39:34 -07007517 proto.end(bToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007518
7519 // Battery discharge (BATTERY_DISCHARGE_DATA)
Kweku Adams103351f2017-10-16 14:39:34 -07007520 final long bdToken = proto.start(SystemProto.BATTERY_DISCHARGE);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007521 proto.write(SystemProto.BatteryDischarge.LOWER_BOUND_SINCE_CHARGE,
7522 getLowDischargeAmountSinceCharge());
7523 proto.write(SystemProto.BatteryDischarge.UPPER_BOUND_SINCE_CHARGE,
7524 getHighDischargeAmountSinceCharge());
7525 proto.write(SystemProto.BatteryDischarge.SCREEN_ON_SINCE_CHARGE,
7526 getDischargeAmountScreenOnSinceCharge());
7527 proto.write(SystemProto.BatteryDischarge.SCREEN_OFF_SINCE_CHARGE,
7528 getDischargeAmountScreenOffSinceCharge());
7529 proto.write(SystemProto.BatteryDischarge.SCREEN_DOZE_SINCE_CHARGE,
7530 getDischargeAmountScreenDozeSinceCharge());
7531 proto.write(SystemProto.BatteryDischarge.TOTAL_MAH,
7532 getUahDischarge(which) / 1000);
7533 proto.write(SystemProto.BatteryDischarge.TOTAL_MAH_SCREEN_OFF,
7534 getUahDischargeScreenOff(which) / 1000);
7535 proto.write(SystemProto.BatteryDischarge.TOTAL_MAH_SCREEN_DOZE,
7536 getUahDischargeScreenDoze(which) / 1000);
Mike Ma15313c92017-11-15 17:58:21 -08007537 proto.write(SystemProto.BatteryDischarge.TOTAL_MAH_LIGHT_DOZE,
7538 getUahDischargeLightDoze(which) / 1000);
7539 proto.write(SystemProto.BatteryDischarge.TOTAL_MAH_DEEP_DOZE,
7540 getUahDischargeDeepDoze(which) / 1000);
Kweku Adams103351f2017-10-16 14:39:34 -07007541 proto.end(bdToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007542
7543 // Time remaining
7544 long timeRemainingUs = computeChargeTimeRemaining(rawRealtimeUs);
Kweku Adams103351f2017-10-16 14:39:34 -07007545 // These are part of a oneof, so we should only set one of them.
Kweku Adams87b19ec2017-10-09 12:40:03 -07007546 if (timeRemainingUs >= 0) {
7547 // Charge time remaining (CHARGE_TIME_REMAIN_DATA)
7548 proto.write(SystemProto.CHARGE_TIME_REMAINING_MS, timeRemainingUs / 1000);
7549 } else {
7550 timeRemainingUs = computeBatteryTimeRemaining(rawRealtimeUs);
7551 // Discharge time remaining (DISCHARGE_TIME_REMAIN_DATA)
7552 if (timeRemainingUs >= 0) {
7553 proto.write(SystemProto.DISCHARGE_TIME_REMAINING_MS, timeRemainingUs / 1000);
7554 } else {
7555 proto.write(SystemProto.DISCHARGE_TIME_REMAINING_MS, -1);
7556 }
7557 }
7558
7559 // Charge step (CHARGE_STEP_DATA)
7560 dumpDurationSteps(proto, SystemProto.CHARGE_STEP, getChargeLevelStepTracker());
7561
7562 // Phone data connection (DATA_CONNECTION_TIME_DATA and DATA_CONNECTION_COUNT_DATA)
7563 for (int i = 0; i < NUM_DATA_CONNECTION_TYPES; ++i) {
Kweku Adams103351f2017-10-16 14:39:34 -07007564 final long pdcToken = proto.start(SystemProto.DATA_CONNECTION);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007565 proto.write(SystemProto.DataConnection.NAME, i);
7566 dumpTimer(proto, SystemProto.DataConnection.TOTAL, getPhoneDataConnectionTimer(i),
7567 rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007568 proto.end(pdcToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007569 }
7570
7571 // Discharge step (DISCHARGE_STEP_DATA)
7572 dumpDurationSteps(proto, SystemProto.DISCHARGE_STEP, getDischargeLevelStepTracker());
7573
7574 // CPU frequencies (GLOBAL_CPU_FREQ_DATA)
7575 final long[] cpuFreqs = getCpuFreqs();
7576 if (cpuFreqs != null) {
7577 for (long i : cpuFreqs) {
7578 proto.write(SystemProto.CPU_FREQUENCY, i);
7579 }
7580 }
7581
7582 // Bluetooth controller (GLOBAL_BLUETOOTH_CONTROLLER_DATA)
7583 dumpControllerActivityProto(proto, SystemProto.GLOBAL_BLUETOOTH_CONTROLLER,
7584 getBluetoothControllerActivity(), which);
7585
7586 // Modem controller (GLOBAL_MODEM_CONTROLLER_DATA)
7587 dumpControllerActivityProto(proto, SystemProto.GLOBAL_MODEM_CONTROLLER,
7588 getModemControllerActivity(), which);
7589
7590 // Global network data (GLOBAL_NETWORK_DATA)
Kweku Adams103351f2017-10-16 14:39:34 -07007591 final long gnToken = proto.start(SystemProto.GLOBAL_NETWORK);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007592 proto.write(SystemProto.GlobalNetwork.MOBILE_BYTES_RX,
7593 getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which));
7594 proto.write(SystemProto.GlobalNetwork.MOBILE_BYTES_TX,
7595 getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which));
7596 proto.write(SystemProto.GlobalNetwork.MOBILE_PACKETS_RX,
7597 getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which));
7598 proto.write(SystemProto.GlobalNetwork.MOBILE_PACKETS_TX,
7599 getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which));
7600 proto.write(SystemProto.GlobalNetwork.WIFI_BYTES_RX,
7601 getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which));
7602 proto.write(SystemProto.GlobalNetwork.WIFI_BYTES_TX,
7603 getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which));
7604 proto.write(SystemProto.GlobalNetwork.WIFI_PACKETS_RX,
7605 getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which));
7606 proto.write(SystemProto.GlobalNetwork.WIFI_PACKETS_TX,
7607 getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which));
7608 proto.write(SystemProto.GlobalNetwork.BT_BYTES_RX,
7609 getNetworkActivityBytes(NETWORK_BT_RX_DATA, which));
7610 proto.write(SystemProto.GlobalNetwork.BT_BYTES_TX,
7611 getNetworkActivityBytes(NETWORK_BT_TX_DATA, which));
Kweku Adams103351f2017-10-16 14:39:34 -07007612 proto.end(gnToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007613
7614 // Wifi controller (GLOBAL_WIFI_CONTROLLER_DATA)
7615 dumpControllerActivityProto(proto, SystemProto.GLOBAL_WIFI_CONTROLLER,
7616 getWifiControllerActivity(), which);
7617
7618
7619 // Global wifi (GLOBAL_WIFI_DATA)
Kweku Adams103351f2017-10-16 14:39:34 -07007620 final long gwToken = proto.start(SystemProto.GLOBAL_WIFI);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007621 proto.write(SystemProto.GlobalWifi.ON_DURATION_MS,
7622 getWifiOnTime(rawRealtimeUs, which) / 1000);
7623 proto.write(SystemProto.GlobalWifi.RUNNING_DURATION_MS,
7624 getGlobalWifiRunningTime(rawRealtimeUs, which) / 1000);
Kweku Adams103351f2017-10-16 14:39:34 -07007625 proto.end(gwToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007626
7627 // Kernel wakelock (KERNEL_WAKELOCK_DATA)
7628 final Map<String, ? extends Timer> kernelWakelocks = getKernelWakelockStats();
7629 for (Map.Entry<String, ? extends Timer> ent : kernelWakelocks.entrySet()) {
Kweku Adams103351f2017-10-16 14:39:34 -07007630 final long kwToken = proto.start(SystemProto.KERNEL_WAKELOCK);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007631 proto.write(SystemProto.KernelWakelock.NAME, ent.getKey());
7632 dumpTimer(proto, SystemProto.KernelWakelock.TOTAL, ent.getValue(),
7633 rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007634 proto.end(kwToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007635 }
7636
7637 // Misc (MISC_DATA)
7638 // Calculate wakelock times across all uids.
7639 long fullWakeLockTimeTotalUs = 0;
7640 long partialWakeLockTimeTotalUs = 0;
7641
7642 final SparseArray<? extends Uid> uidStats = getUidStats();
7643 for (int iu = 0; iu < uidStats.size(); iu++) {
7644 final Uid u = uidStats.valueAt(iu);
7645
7646 final ArrayMap<String, ? extends BatteryStats.Uid.Wakelock> wakelocks =
7647 u.getWakelockStats();
7648 for (int iw = wakelocks.size() - 1; iw >= 0; --iw) {
7649 final Uid.Wakelock wl = wakelocks.valueAt(iw);
7650
7651 final Timer fullWakeTimer = wl.getWakeTime(WAKE_TYPE_FULL);
7652 if (fullWakeTimer != null) {
7653 fullWakeLockTimeTotalUs += fullWakeTimer.getTotalTimeLocked(rawRealtimeUs,
7654 which);
7655 }
7656
7657 final Timer partialWakeTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
7658 if (partialWakeTimer != null) {
7659 partialWakeLockTimeTotalUs += partialWakeTimer.getTotalTimeLocked(
7660 rawRealtimeUs, which);
7661 }
7662 }
7663 }
Kweku Adams103351f2017-10-16 14:39:34 -07007664 final long mToken = proto.start(SystemProto.MISC);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007665 proto.write(SystemProto.Misc.SCREEN_ON_DURATION_MS,
7666 getScreenOnTime(rawRealtimeUs, which) / 1000);
7667 proto.write(SystemProto.Misc.PHONE_ON_DURATION_MS,
7668 getPhoneOnTime(rawRealtimeUs, which) / 1000);
7669 proto.write(SystemProto.Misc.FULL_WAKELOCK_TOTAL_DURATION_MS,
7670 fullWakeLockTimeTotalUs / 1000);
7671 proto.write(SystemProto.Misc.PARTIAL_WAKELOCK_TOTAL_DURATION_MS,
7672 partialWakeLockTimeTotalUs / 1000);
7673 proto.write(SystemProto.Misc.MOBILE_RADIO_ACTIVE_DURATION_MS,
7674 getMobileRadioActiveTime(rawRealtimeUs, which) / 1000);
7675 proto.write(SystemProto.Misc.MOBILE_RADIO_ACTIVE_ADJUSTED_TIME_MS,
7676 getMobileRadioActiveAdjustedTime(which) / 1000);
7677 proto.write(SystemProto.Misc.MOBILE_RADIO_ACTIVE_COUNT,
7678 getMobileRadioActiveCount(which));
7679 proto.write(SystemProto.Misc.MOBILE_RADIO_ACTIVE_UNKNOWN_DURATION_MS,
7680 getMobileRadioActiveUnknownTime(which) / 1000);
7681 proto.write(SystemProto.Misc.INTERACTIVE_DURATION_MS,
7682 getInteractiveTime(rawRealtimeUs, which) / 1000);
7683 proto.write(SystemProto.Misc.BATTERY_SAVER_MODE_ENABLED_DURATION_MS,
7684 getPowerSaveModeEnabledTime(rawRealtimeUs, which) / 1000);
7685 proto.write(SystemProto.Misc.NUM_CONNECTIVITY_CHANGES,
7686 getNumConnectivityChange(which));
7687 proto.write(SystemProto.Misc.DEEP_DOZE_ENABLED_DURATION_MS,
7688 getDeviceIdleModeTime(DEVICE_IDLE_MODE_DEEP, rawRealtimeUs, which) / 1000);
7689 proto.write(SystemProto.Misc.DEEP_DOZE_COUNT,
7690 getDeviceIdleModeCount(DEVICE_IDLE_MODE_DEEP, which));
7691 proto.write(SystemProto.Misc.DEEP_DOZE_IDLING_DURATION_MS,
7692 getDeviceIdlingTime(DEVICE_IDLE_MODE_DEEP, rawRealtimeUs, which) / 1000);
7693 proto.write(SystemProto.Misc.DEEP_DOZE_IDLING_COUNT,
7694 getDeviceIdlingCount(DEVICE_IDLE_MODE_DEEP, which));
7695 proto.write(SystemProto.Misc.LONGEST_DEEP_DOZE_DURATION_MS,
7696 getLongestDeviceIdleModeTime(DEVICE_IDLE_MODE_DEEP));
7697 proto.write(SystemProto.Misc.LIGHT_DOZE_ENABLED_DURATION_MS,
7698 getDeviceIdleModeTime(DEVICE_IDLE_MODE_LIGHT, rawRealtimeUs, which) / 1000);
7699 proto.write(SystemProto.Misc.LIGHT_DOZE_COUNT,
7700 getDeviceIdleModeCount(DEVICE_IDLE_MODE_LIGHT, which));
7701 proto.write(SystemProto.Misc.LIGHT_DOZE_IDLING_DURATION_MS,
7702 getDeviceIdlingTime(DEVICE_IDLE_MODE_LIGHT, rawRealtimeUs, which) / 1000);
7703 proto.write(SystemProto.Misc.LIGHT_DOZE_IDLING_COUNT,
7704 getDeviceIdlingCount(DEVICE_IDLE_MODE_LIGHT, which));
7705 proto.write(SystemProto.Misc.LONGEST_LIGHT_DOZE_DURATION_MS,
7706 getLongestDeviceIdleModeTime(DEVICE_IDLE_MODE_LIGHT));
Kweku Adams103351f2017-10-16 14:39:34 -07007707 proto.end(mToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007708
Ahmed ElArabawyddd09692017-10-30 17:58:29 -07007709 // Wifi multicast wakelock total stats (WIFI_MULTICAST_WAKELOCK_TOTAL_DATA)
Ahmed ElArabawyf88571f2017-11-28 12:18:10 -08007710 final long multicastWakeLockTimeTotalUs =
7711 getWifiMulticastWakelockTime(rawRealtimeUs, which);
7712 final int multicastWakeLockCountTotal = getWifiMulticastWakelockCount(which);
Ahmed ElArabawyddd09692017-10-30 17:58:29 -07007713 final long wmctToken = proto.start(SystemProto.WIFI_MULTICAST_WAKELOCK_TOTAL);
7714 proto.write(SystemProto.WifiMulticastWakelockTotal.DURATION_MS,
7715 multicastWakeLockTimeTotalUs / 1000);
7716 proto.write(SystemProto.WifiMulticastWakelockTotal.COUNT,
7717 multicastWakeLockCountTotal);
7718 proto.end(wmctToken);
7719
Kweku Adams87b19ec2017-10-09 12:40:03 -07007720 // Power use item (POWER_USE_ITEM_DATA)
7721 final List<BatterySipper> sippers = helper.getUsageList();
7722 if (sippers != null) {
7723 for (int i = 0; i < sippers.size(); ++i) {
7724 final BatterySipper bs = sippers.get(i);
7725 int n = SystemProto.PowerUseItem.UNKNOWN_SIPPER;
7726 int uid = 0;
7727 switch (bs.drainType) {
7728 case IDLE:
7729 n = SystemProto.PowerUseItem.IDLE;
7730 break;
7731 case CELL:
7732 n = SystemProto.PowerUseItem.CELL;
7733 break;
7734 case PHONE:
7735 n = SystemProto.PowerUseItem.PHONE;
7736 break;
7737 case WIFI:
7738 n = SystemProto.PowerUseItem.WIFI;
7739 break;
7740 case BLUETOOTH:
7741 n = SystemProto.PowerUseItem.BLUETOOTH;
7742 break;
7743 case SCREEN:
7744 n = SystemProto.PowerUseItem.SCREEN;
7745 break;
7746 case FLASHLIGHT:
7747 n = SystemProto.PowerUseItem.FLASHLIGHT;
7748 break;
7749 case APP:
Kweku Adams103351f2017-10-16 14:39:34 -07007750 // dumpProtoAppsLocked will handle this.
Kweku Adams87b19ec2017-10-09 12:40:03 -07007751 continue;
7752 case USER:
7753 n = SystemProto.PowerUseItem.USER;
7754 uid = UserHandle.getUid(bs.userId, 0);
7755 break;
7756 case UNACCOUNTED:
7757 n = SystemProto.PowerUseItem.UNACCOUNTED;
7758 break;
7759 case OVERCOUNTED:
7760 n = SystemProto.PowerUseItem.OVERCOUNTED;
7761 break;
7762 case CAMERA:
7763 n = SystemProto.PowerUseItem.CAMERA;
7764 break;
7765 case MEMORY:
7766 n = SystemProto.PowerUseItem.MEMORY;
7767 break;
7768 }
Kweku Adams103351f2017-10-16 14:39:34 -07007769 final long puiToken = proto.start(SystemProto.POWER_USE_ITEM);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007770 proto.write(SystemProto.PowerUseItem.NAME, n);
7771 proto.write(SystemProto.PowerUseItem.UID, uid);
7772 proto.write(SystemProto.PowerUseItem.COMPUTED_POWER_MAH, bs.totalPowerMah);
7773 proto.write(SystemProto.PowerUseItem.SHOULD_HIDE, bs.shouldHide);
7774 proto.write(SystemProto.PowerUseItem.SCREEN_POWER_MAH, bs.screenPowerMah);
7775 proto.write(SystemProto.PowerUseItem.PROPORTIONAL_SMEAR_MAH,
7776 bs.proportionalSmearMah);
Kweku Adams103351f2017-10-16 14:39:34 -07007777 proto.end(puiToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007778 }
7779 }
7780
7781 // Power use summary (POWER_USE_SUMMARY_DATA)
Kweku Adams103351f2017-10-16 14:39:34 -07007782 final long pusToken = proto.start(SystemProto.POWER_USE_SUMMARY);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007783 proto.write(SystemProto.PowerUseSummary.BATTERY_CAPACITY_MAH,
7784 helper.getPowerProfile().getBatteryCapacity());
7785 proto.write(SystemProto.PowerUseSummary.COMPUTED_POWER_MAH, helper.getComputedPower());
7786 proto.write(SystemProto.PowerUseSummary.MIN_DRAINED_POWER_MAH, helper.getMinDrainedPower());
7787 proto.write(SystemProto.PowerUseSummary.MAX_DRAINED_POWER_MAH, helper.getMaxDrainedPower());
Kweku Adams103351f2017-10-16 14:39:34 -07007788 proto.end(pusToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007789
7790 // RPM stats (RESOURCE_POWER_MANAGER_DATA)
7791 final Map<String, ? extends Timer> rpmStats = getRpmStats();
7792 final Map<String, ? extends Timer> screenOffRpmStats = getScreenOffRpmStats();
7793 for (Map.Entry<String, ? extends Timer> ent : rpmStats.entrySet()) {
Kweku Adams103351f2017-10-16 14:39:34 -07007794 final long rpmToken = proto.start(SystemProto.RESOURCE_POWER_MANAGER);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007795 proto.write(SystemProto.ResourcePowerManager.NAME, ent.getKey());
7796 dumpTimer(proto, SystemProto.ResourcePowerManager.TOTAL,
7797 ent.getValue(), rawRealtimeUs, which);
7798 dumpTimer(proto, SystemProto.ResourcePowerManager.SCREEN_OFF,
7799 screenOffRpmStats.get(ent.getKey()), rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007800 proto.end(rpmToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007801 }
7802
7803 // Screen brightness (SCREEN_BRIGHTNESS_DATA)
7804 for (int i = 0; i < NUM_SCREEN_BRIGHTNESS_BINS; ++i) {
Kweku Adams103351f2017-10-16 14:39:34 -07007805 final long sbToken = proto.start(SystemProto.SCREEN_BRIGHTNESS);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007806 proto.write(SystemProto.ScreenBrightness.NAME, i);
7807 dumpTimer(proto, SystemProto.ScreenBrightness.TOTAL, getScreenBrightnessTimer(i),
7808 rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007809 proto.end(sbToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007810 }
7811
7812 // Signal scanning time (SIGNAL_SCANNING_TIME_DATA)
7813 dumpTimer(proto, SystemProto.SIGNAL_SCANNING, getPhoneSignalScanningTimer(), rawRealtimeUs,
7814 which);
7815
7816 // Phone signal strength (SIGNAL_STRENGTH_TIME_DATA and SIGNAL_STRENGTH_COUNT_DATA)
7817 for (int i = 0; i < SignalStrength.NUM_SIGNAL_STRENGTH_BINS; ++i) {
Kweku Adams103351f2017-10-16 14:39:34 -07007818 final long pssToken = proto.start(SystemProto.PHONE_SIGNAL_STRENGTH);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007819 proto.write(SystemProto.PhoneSignalStrength.NAME, i);
7820 dumpTimer(proto, SystemProto.PhoneSignalStrength.TOTAL, getPhoneSignalStrengthTimer(i),
7821 rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007822 proto.end(pssToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007823 }
7824
7825 // Wakeup reasons (WAKEUP_REASON_DATA)
7826 final Map<String, ? extends Timer> wakeupReasons = getWakeupReasonStats();
7827 for (Map.Entry<String, ? extends Timer> ent : wakeupReasons.entrySet()) {
Kweku Adams103351f2017-10-16 14:39:34 -07007828 final long wrToken = proto.start(SystemProto.WAKEUP_REASON);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007829 proto.write(SystemProto.WakeupReason.NAME, ent.getKey());
7830 dumpTimer(proto, SystemProto.WakeupReason.TOTAL, ent.getValue(), rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007831 proto.end(wrToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007832 }
7833
7834 // Wifi signal strength (WIFI_SIGNAL_STRENGTH_TIME_DATA and WIFI_SIGNAL_STRENGTH_COUNT_DATA)
7835 for (int i = 0; i < NUM_WIFI_SIGNAL_STRENGTH_BINS; ++i) {
Kweku Adams103351f2017-10-16 14:39:34 -07007836 final long wssToken = proto.start(SystemProto.WIFI_SIGNAL_STRENGTH);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007837 proto.write(SystemProto.WifiSignalStrength.NAME, i);
7838 dumpTimer(proto, SystemProto.WifiSignalStrength.TOTAL, getWifiSignalStrengthTimer(i),
7839 rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007840 proto.end(wssToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007841 }
7842
7843 // Wifi state (WIFI_STATE_TIME_DATA and WIFI_STATE_COUNT_DATA)
7844 for (int i = 0; i < NUM_WIFI_STATES; ++i) {
Kweku Adams103351f2017-10-16 14:39:34 -07007845 final long wsToken = proto.start(SystemProto.WIFI_STATE);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007846 proto.write(SystemProto.WifiState.NAME, i);
7847 dumpTimer(proto, SystemProto.WifiState.TOTAL, getWifiStateTimer(i),
7848 rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007849 proto.end(wsToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007850 }
7851
7852 // Wifi supplicant state (WIFI_SUPPL_STATE_TIME_DATA and WIFI_SUPPL_STATE_COUNT_DATA)
7853 for (int i = 0; i < NUM_WIFI_SUPPL_STATES; ++i) {
Kweku Adams103351f2017-10-16 14:39:34 -07007854 final long wssToken = proto.start(SystemProto.WIFI_SUPPLICANT_STATE);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007855 proto.write(SystemProto.WifiSupplicantState.NAME, i);
7856 dumpTimer(proto, SystemProto.WifiSupplicantState.TOTAL, getWifiSupplStateTimer(i),
7857 rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007858 proto.end(wssToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007859 }
7860
7861 proto.end(sToken);
7862 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007863}