blob: fd0e5ae51892b16e0ffbb3704abe514ff2c6b525 [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
424
425 /**
426 * @return a non-null {@link LongCounter} representing time spent (milliseconds) in the
Adam Lesinski21f76aa2016-01-25 12:27:06 -0800427 * receive state.
428 */
429 public abstract LongCounter getRxTimeCounter();
430
431 /**
432 * An array of {@link LongCounter}, representing various transmit levels, where each level
433 * may draw a different amount of power. The levels themselves are controller-specific.
434 * @return non-null array of {@link LongCounter}s representing time spent (milliseconds) in
435 * various transmit level states.
436 */
437 public abstract LongCounter[] getTxTimeCounters();
438
439 /**
440 * @return a non-null {@link LongCounter} representing the power consumed by the controller
441 * in all states, measured in milli-ampere-milliseconds (mAms). The counter may always
442 * yield a value of 0 if the device doesn't support power calculations.
443 */
444 public abstract LongCounter getPowerCounter();
445 }
446
447 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800448 * State for keeping track of timing information.
449 */
450 public static abstract class Timer {
451
452 /**
453 * Returns the count associated with this Timer for the
454 * selected type of statistics.
455 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700456 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800457 */
Evan Millarc64edde2009-04-18 12:26:32 -0700458 public abstract int getCountLocked(int which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800459
460 /**
461 * Returns the total time in microseconds associated with this Timer for the
462 * selected type of statistics.
463 *
Dianne Hackborn97ae5382014-03-05 16:43:25 -0800464 * @param elapsedRealtimeUs current elapsed realtime of system in microseconds
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700465 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800466 * @return a time in microseconds
467 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -0800468 public abstract long getTotalTimeLocked(long elapsedRealtimeUs, int which);
Amith Yamasani244fa5c2009-05-22 14:36:07 -0700469
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800470 /**
Adam Lesinskie08af192015-03-25 16:42:59 -0700471 * Returns the total time in microseconds associated with this Timer since the
472 * 'mark' was last set.
473 *
474 * @param elapsedRealtimeUs current elapsed realtime of system in microseconds
475 * @return a time in microseconds
476 */
477 public abstract long getTimeSinceMarkLocked(long elapsedRealtimeUs);
478
479 /**
Joe Onorato92fd23f2016-07-25 11:18:42 -0700480 * Returns the max duration if it is being tracked.
Kweku Adams103351f2017-10-16 14:39:34 -0700481 * Not all Timer subclasses track the max, total, and current durations.
Joe Onorato92fd23f2016-07-25 11:18:42 -0700482 */
483 public long getMaxDurationMsLocked(long elapsedRealtimeMs) {
484 return -1;
485 }
486
487 /**
488 * Returns the current time the timer has been active, if it is being tracked.
Kweku Adams103351f2017-10-16 14:39:34 -0700489 * Not all Timer subclasses track the max, total, and current durations.
Joe Onorato92fd23f2016-07-25 11:18:42 -0700490 */
491 public long getCurrentDurationMsLocked(long elapsedRealtimeMs) {
492 return -1;
493 }
494
495 /**
Kweku Adams103351f2017-10-16 14:39:34 -0700496 * Returns the total time the timer has been active, if it is being tracked.
Bookatz867c0d72017-03-07 18:23:42 -0800497 *
498 * Returns the total cumulative duration (i.e. sum of past durations) that this timer has
499 * been on since reset.
500 * This may differ from getTotalTimeLocked(elapsedRealtimeUs, STATS_SINCE_CHARGED)/1000 since,
501 * depending on the Timer, getTotalTimeLocked may represent the total 'blamed' or 'pooled'
502 * time, rather than the actual time. By contrast, getTotalDurationMsLocked always gives
503 * the actual total time.
Kweku Adams103351f2017-10-16 14:39:34 -0700504 * Not all Timer subclasses track the max, total, and current durations.
Bookatz867c0d72017-03-07 18:23:42 -0800505 */
506 public long getTotalDurationMsLocked(long elapsedRealtimeMs) {
507 return -1;
508 }
509
510 /**
Bookatzaa4594a2017-03-24 12:39:56 -0700511 * Returns the secondary Timer held by the Timer, if one exists. This secondary timer may be
512 * used, for example, for tracking background usage. Secondary timers are never pooled.
513 *
514 * Not all Timer subclasses have a secondary timer; those that don't return null.
515 */
516 public Timer getSubTimer() {
517 return null;
518 }
519
520 /**
Joe Onorato92fd23f2016-07-25 11:18:42 -0700521 * Returns whether the timer is currently running. Some types of timers
522 * (e.g. BatchTimers) don't know whether the event is currently active,
523 * and report false.
524 */
525 public boolean isRunningLocked() {
526 return false;
527 }
528
529 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800530 * Temporary for debugging.
531 */
Dianne Hackborn627bba72009-03-24 22:32:56 -0700532 public abstract void logState(Printer pw, String prefix);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800533 }
534
535 /**
Sudheer Shankab2f83c12017-11-13 19:25:01 -0800536 * Maps the ActivityManager procstate into corresponding BatteryStats procstate.
537 */
538 public static int mapToInternalProcessState(int procState) {
539 if (procState == ActivityManager.PROCESS_STATE_NONEXISTENT) {
540 return ActivityManager.PROCESS_STATE_NONEXISTENT;
541 } else if (procState == ActivityManager.PROCESS_STATE_TOP) {
542 return Uid.PROCESS_STATE_TOP;
Dianne Hackborn10fc4fd2017-12-19 17:23:13 -0800543 } else if (procState == ActivityManager.PROCESS_STATE_FOREGROUND_SERVICE) {
544 // State when app has put itself in the foreground.
Sudheer Shankab2f83c12017-11-13 19:25:01 -0800545 return Uid.PROCESS_STATE_FOREGROUND_SERVICE;
546 } else if (procState <= ActivityManager.PROCESS_STATE_IMPORTANT_FOREGROUND) {
547 // Persistent and other foreground states go here.
548 return Uid.PROCESS_STATE_FOREGROUND;
549 } else if (procState <= ActivityManager.PROCESS_STATE_RECEIVER) {
550 return Uid.PROCESS_STATE_BACKGROUND;
551 } else if (procState <= ActivityManager.PROCESS_STATE_TOP_SLEEPING) {
552 return Uid.PROCESS_STATE_TOP_SLEEPING;
553 } else if (procState <= ActivityManager.PROCESS_STATE_HEAVY_WEIGHT) {
554 return Uid.PROCESS_STATE_HEAVY_WEIGHT;
555 } else {
556 return Uid.PROCESS_STATE_CACHED;
557 }
558 }
559
560 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800561 * The statistics associated with a particular uid.
562 */
563 public static abstract class Uid {
564
565 /**
566 * Returns a mapping containing wakelock statistics.
567 *
568 * @return a Map from Strings to Uid.Wakelock objects.
569 */
Dianne Hackborn1e725a72015-03-24 18:23:19 -0700570 public abstract ArrayMap<String, ? extends Wakelock> getWakelockStats();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800571
572 /**
Ahmed ElArabawyddd09692017-10-30 17:58:29 -0700573 * Returns the WiFi Multicast Wakelock statistics.
574 *
575 * @return a Timer Object for the per uid Multicast statistics.
576 */
577 public abstract Timer getMulticastWakelockStats();
578
579 /**
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700580 * Returns a mapping containing sync statistics.
581 *
582 * @return a Map from Strings to Timer objects.
583 */
Dianne Hackborn1e725a72015-03-24 18:23:19 -0700584 public abstract ArrayMap<String, ? extends Timer> getSyncStats();
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700585
586 /**
587 * Returns a mapping containing scheduled job statistics.
588 *
589 * @return a Map from Strings to Timer objects.
590 */
Dianne Hackborn1e725a72015-03-24 18:23:19 -0700591 public abstract ArrayMap<String, ? extends Timer> getJobStats();
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700592
593 /**
Dianne Hackborn94326cb2017-06-28 16:17:20 -0700594 * Returns statistics about how jobs have completed.
595 *
596 * @return A Map of String job names to completion type -> count mapping.
597 */
598 public abstract ArrayMap<String, SparseIntArray> getJobCompletionStats();
599
600 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800601 * The statistics associated with a particular wake lock.
602 */
603 public static abstract class Wakelock {
604 public abstract Timer getWakeTime(int type);
605 }
606
607 /**
Bookatzc8c44962017-05-11 12:12:54 -0700608 * The cumulative time the uid spent holding any partial wakelocks. This will generally
609 * differ from summing over the Wakelocks in getWakelockStats since the latter may have
610 * wakelocks that overlap in time (and therefore over-counts).
611 */
612 public abstract Timer getAggregatedPartialWakelockTimer();
613
614 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800615 * Returns a mapping containing sensor statistics.
616 *
617 * @return a Map from Integer sensor ids to Uid.Sensor objects.
618 */
Dianne Hackborn61659e52014-07-09 16:13:01 -0700619 public abstract SparseArray<? extends Sensor> getSensorStats();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800620
621 /**
Dianne Hackbornb5e31652010-09-07 12:13:55 -0700622 * Returns a mapping containing active process data.
623 */
624 public abstract SparseArray<? extends Pid> getPidStats();
Bookatzc8c44962017-05-11 12:12:54 -0700625
Dianne Hackbornb5e31652010-09-07 12:13:55 -0700626 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800627 * Returns a mapping containing process statistics.
628 *
629 * @return a Map from Strings to Uid.Proc objects.
630 */
Dianne Hackborn1e725a72015-03-24 18:23:19 -0700631 public abstract ArrayMap<String, ? extends Proc> getProcessStats();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800632
633 /**
634 * Returns a mapping containing package statistics.
635 *
636 * @return a Map from Strings to Uid.Pkg objects.
637 */
Dianne Hackborn1e725a72015-03-24 18:23:19 -0700638 public abstract ArrayMap<String, ? extends Pkg> getPackageStats();
Adam Lesinskie08af192015-03-25 16:42:59 -0700639
Adam Lesinski21f76aa2016-01-25 12:27:06 -0800640 public abstract ControllerActivityCounter getWifiControllerActivity();
641 public abstract ControllerActivityCounter getBluetoothControllerActivity();
642 public abstract ControllerActivityCounter getModemControllerActivity();
Adam Lesinski50e47602015-12-04 17:04:54 -0800643
644 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800645 * {@hide}
646 */
647 public abstract int getUid();
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700648
Dianne Hackbornca1bf212014-02-14 14:18:36 -0800649 public abstract void noteWifiRunningLocked(long elapsedRealtime);
650 public abstract void noteWifiStoppedLocked(long elapsedRealtime);
651 public abstract void noteFullWifiLockAcquiredLocked(long elapsedRealtime);
652 public abstract void noteFullWifiLockReleasedLocked(long elapsedRealtime);
653 public abstract void noteWifiScanStartedLocked(long elapsedRealtime);
654 public abstract void noteWifiScanStoppedLocked(long elapsedRealtime);
655 public abstract void noteWifiBatchedScanStartedLocked(int csph, long elapsedRealtime);
656 public abstract void noteWifiBatchedScanStoppedLocked(long elapsedRealtime);
657 public abstract void noteWifiMulticastEnabledLocked(long elapsedRealtime);
658 public abstract void noteWifiMulticastDisabledLocked(long elapsedRealtime);
Dianne Hackbornca1bf212014-02-14 14:18:36 -0800659 public abstract void noteActivityResumedLocked(long elapsedRealtime);
660 public abstract void noteActivityPausedLocked(long elapsedRealtime);
Dianne Hackborn97ae5382014-03-05 16:43:25 -0800661 public abstract long getWifiRunningTime(long elapsedRealtimeUs, int which);
662 public abstract long getFullWifiLockTime(long elapsedRealtimeUs, int which);
663 public abstract long getWifiScanTime(long elapsedRealtimeUs, int which);
Dianne Hackborn62793e42015-03-09 11:15:41 -0700664 public abstract int getWifiScanCount(int which);
Kweku Adams103351f2017-10-16 14:39:34 -0700665 /**
666 * Returns the timer keeping track of wifi scans.
667 */
668 public abstract Timer getWifiScanTimer();
Bookatz867c0d72017-03-07 18:23:42 -0800669 public abstract int getWifiScanBackgroundCount(int which);
670 public abstract long getWifiScanActualTime(long elapsedRealtimeUs);
671 public abstract long getWifiScanBackgroundTime(long elapsedRealtimeUs);
Kweku Adams103351f2017-10-16 14:39:34 -0700672 /**
673 * Returns the timer keeping track of background wifi scans.
674 */
675 public abstract Timer getWifiScanBackgroundTimer();
Dianne Hackborn97ae5382014-03-05 16:43:25 -0800676 public abstract long getWifiBatchedScanTime(int csphBin, long elapsedRealtimeUs, int which);
Dianne Hackborn62793e42015-03-09 11:15:41 -0700677 public abstract int getWifiBatchedScanCount(int csphBin, int which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -0800678 public abstract long getWifiMulticastTime(long elapsedRealtimeUs, int which);
Ruben Brunk6d2c3632015-05-26 17:32:16 -0700679 public abstract Timer getAudioTurnedOnTimer();
680 public abstract Timer getVideoTurnedOnTimer();
681 public abstract Timer getFlashlightTurnedOnTimer();
682 public abstract Timer getCameraTurnedOnTimer();
Jeff Sharkey3e013e82013-04-25 14:48:19 -0700683 public abstract Timer getForegroundActivityTimer();
Michael Wachenschwanzb05a3c52017-07-07 17:47:04 -0700684
685 /**
686 * Returns the timer keeping track of Foreground Service time
687 */
688 public abstract Timer getForegroundServiceTimer();
Adam Lesinski9f55cc72016-01-27 20:42:14 -0800689 public abstract Timer getBluetoothScanTimer();
Bookatz867c0d72017-03-07 18:23:42 -0800690 public abstract Timer getBluetoothScanBackgroundTimer();
Bookatzb1f04f32017-05-19 13:57:32 -0700691 public abstract Timer getBluetoothUnoptimizedScanTimer();
692 public abstract Timer getBluetoothUnoptimizedScanBackgroundTimer();
Bookatz956f36bf2017-04-28 09:48:17 -0700693 public abstract Counter getBluetoothScanResultCounter();
Bookatzb1f04f32017-05-19 13:57:32 -0700694 public abstract Counter getBluetoothScanResultBgCounter();
Dianne Hackborn61659e52014-07-09 16:13:01 -0700695
Sudheer Shanka9b735c52017-05-09 18:26:18 -0700696 public abstract long[] getCpuFreqTimes(int which);
697 public abstract long[] getScreenOffCpuFreqTimes(int which);
Mike Ma3d422c32017-10-25 11:08:57 -0700698 /**
699 * Returns cpu active time of an uid.
700 */
701 public abstract long getCpuActiveTime();
702 /**
703 * Returns cpu times of an uid on each cluster
704 */
705 public abstract long[] getCpuClusterTimes();
Sudheer Shanka9b735c52017-05-09 18:26:18 -0700706
Sudheer Shankab2f83c12017-11-13 19:25:01 -0800707 /**
708 * Returns cpu times of an uid at a particular process state.
709 */
710 public abstract long[] getCpuFreqTimes(int which, int procState);
711 /**
712 * Returns cpu times of an uid while the screen if off at a particular process state.
713 */
714 public abstract long[] getScreenOffCpuFreqTimes(int which, int procState);
715
Dianne Hackborna0200e32016-03-30 18:01:41 -0700716 // Note: the following times are disjoint. They can be added together to find the
717 // total time a uid has had any processes running at all.
718
719 /**
zhouwenjie46712bc2018-01-11 15:21:27 -0800720 * Time this uid has any processes in the top state.
Dianne Hackborna0200e32016-03-30 18:01:41 -0700721 */
Dianne Hackborna8d10942015-11-19 17:55:19 -0800722 public static final int PROCESS_STATE_TOP = 0;
Dianne Hackborna0200e32016-03-30 18:01:41 -0700723 /**
zhouwenjie46712bc2018-01-11 15:21:27 -0800724 * Time this uid has any process with a started foreground service, but
Dianne Hackborna0200e32016-03-30 18:01:41 -0700725 * none in the "top" state.
726 */
Dianne Hackborna8d10942015-11-19 17:55:19 -0800727 public static final int PROCESS_STATE_FOREGROUND_SERVICE = 1;
Dianne Hackborna0200e32016-03-30 18:01:41 -0700728 /**
Dianne Hackborna0200e32016-03-30 18:01:41 -0700729 * Time this uid has any process in an active foreground state, but none in the
zhouwenjie46712bc2018-01-11 15:21:27 -0800730 * "foreground service" or better state. Persistent and other foreground states go here.
Dianne Hackborna0200e32016-03-30 18:01:41 -0700731 */
Dianne Hackbornbad8d912017-12-18 16:45:52 -0800732 public static final int PROCESS_STATE_FOREGROUND = 2;
Dianne Hackborna0200e32016-03-30 18:01:41 -0700733 /**
734 * Time this uid has any process in an active background state, but none in the
735 * "foreground" or better state.
736 */
Dianne Hackbornbad8d912017-12-18 16:45:52 -0800737 public static final int PROCESS_STATE_BACKGROUND = 3;
738 /**
739 * Time this uid has any process that is top while the device is sleeping, but not
740 * active for any other reason. We kind-of consider it a kind of cached process
741 * for execution restrictions.
742 */
743 public static final int PROCESS_STATE_TOP_SLEEPING = 4;
744 /**
745 * Time this uid has any process that is in the background but it has an activity
746 * marked as "can't save state". This is essentially a cached process, though the
747 * system will try much harder than normal to avoid killing it.
748 */
749 public static final int PROCESS_STATE_HEAVY_WEIGHT = 5;
Dianne Hackborna0200e32016-03-30 18:01:41 -0700750 /**
751 * Time this uid has any processes that are sitting around cached, not in one of the
752 * other active states.
753 */
Dianne Hackbornbad8d912017-12-18 16:45:52 -0800754 public static final int PROCESS_STATE_CACHED = 6;
Dianne Hackborna0200e32016-03-30 18:01:41 -0700755 /**
756 * Total number of process states we track.
757 */
Dianne Hackbornbad8d912017-12-18 16:45:52 -0800758 public static final int NUM_PROCESS_STATE = 7;
Dianne Hackborn61659e52014-07-09 16:13:01 -0700759
Sudheer Shankab2f83c12017-11-13 19:25:01 -0800760 // Used in dump
Dianne Hackborn61659e52014-07-09 16:13:01 -0700761 static final String[] PROCESS_STATE_NAMES = {
Dianne Hackbornbad8d912017-12-18 16:45:52 -0800762 "Top", "Fg Service", "Foreground", "Background", "Top Sleeping", "Heavy Weight",
763 "Cached"
Dianne Hackborn61659e52014-07-09 16:13:01 -0700764 };
765
Sudheer Shankab2f83c12017-11-13 19:25:01 -0800766 // Used in checkin dump
767 @VisibleForTesting
768 public static final String[] UID_PROCESS_TYPES = {
769 "T", // TOP
770 "FS", // FOREGROUND_SERVICE
771 "F", // FOREGROUND
772 "B", // BACKGROUND
773 "TS", // TOP_SLEEPING
774 "HW", // HEAVY_WEIGHT
775 "C" // CACHED
776 };
777
778 /**
779 * When the process exits one of these states, we need to make sure cpu time in this state
780 * is not attributed to any non-critical process states.
781 */
782 public static final int[] CRITICAL_PROC_STATES = {
783 PROCESS_STATE_TOP, PROCESS_STATE_FOREGROUND_SERVICE, PROCESS_STATE_FOREGROUND
784 };
785
Dianne Hackborn61659e52014-07-09 16:13:01 -0700786 public abstract long getProcessStateTime(int state, long elapsedRealtimeUs, int which);
Joe Onorato713fec82016-03-04 10:34:02 -0800787 public abstract Timer getProcessStateTimer(int state);
Dianne Hackborn61659e52014-07-09 16:13:01 -0700788
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800789 public abstract Timer getVibratorOnTimer();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800790
Robert Greenwalta029ea12013-09-25 16:38:12 -0700791 public static final int NUM_WIFI_BATCHED_SCAN_BINS = 5;
792
Dianne Hackborn617f8772009-03-31 15:04:46 -0700793 /**
Jeff Browndf693de2012-07-27 12:03:38 -0700794 * Note that these must match the constants in android.os.PowerManager.
795 * Also, if the user activity types change, the BatteryStatsImpl.VERSION must
796 * also be bumped.
Dianne Hackborn617f8772009-03-31 15:04:46 -0700797 */
798 static final String[] USER_ACTIVITY_TYPES = {
Phil Weaverda80d672016-03-15 16:25:46 -0700799 "other", "button", "touch", "accessibility"
Dianne Hackborn617f8772009-03-31 15:04:46 -0700800 };
Bookatzc8c44962017-05-11 12:12:54 -0700801
Phil Weaverda80d672016-03-15 16:25:46 -0700802 public static final int NUM_USER_ACTIVITY_TYPES = 4;
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700803
Dianne Hackborn617f8772009-03-31 15:04:46 -0700804 public abstract void noteUserActivityLocked(int type);
805 public abstract boolean hasUserActivity();
806 public abstract int getUserActivityCount(int type, int which);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700807
808 public abstract boolean hasNetworkActivity();
Dianne Hackborn57ed6a62013-12-09 18:15:56 -0800809 public abstract long getNetworkActivityBytes(int type, int which);
810 public abstract long getNetworkActivityPackets(int type, int which);
Dianne Hackbornd45665b2014-02-26 12:35:32 -0800811 public abstract long getMobileRadioActiveTime(int which);
812 public abstract int getMobileRadioActiveCount(int which);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700813
Adam Lesinski06af1fa2015-05-05 17:35:35 -0700814 /**
815 * Get the total cpu time (in microseconds) this UID had processes executing in userspace.
816 */
817 public abstract long getUserCpuTimeUs(int which);
818
819 /**
820 * Get the total cpu time (in microseconds) this UID had processes executing kernel syscalls.
821 */
822 public abstract long getSystemCpuTimeUs(int which);
823
824 /**
Sudheer Shanka71f34b32017-07-21 00:14:24 -0700825 * Returns the approximate cpu time (in microseconds) spent at a certain CPU speed for a
Adam Lesinski6832f392015-09-05 18:05:40 -0700826 * given CPU cluster.
827 * @param cluster the index of the CPU cluster.
Adam Lesinskia7a4ccc2015-06-26 17:43:04 -0700828 * @param step the index of the CPU speed. This is not the actual speed of the CPU.
Adam Lesinski06af1fa2015-05-05 17:35:35 -0700829 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
Dianne Hackborn08c47a52015-10-15 12:38:14 -0700830 * @see com.android.internal.os.PowerProfile#getNumCpuClusters()
831 * @see com.android.internal.os.PowerProfile#getNumSpeedStepsInCpuCluster(int)
Adam Lesinski06af1fa2015-05-05 17:35:35 -0700832 */
Adam Lesinski6832f392015-09-05 18:05:40 -0700833 public abstract long getTimeAtCpuSpeed(int cluster, int step, int which);
Adam Lesinski06af1fa2015-05-05 17:35:35 -0700834
Adam Lesinski5f056f62016-07-14 16:56:08 -0700835 /**
836 * Returns the number of times this UID woke up the Application Processor to
837 * process a mobile radio packet.
838 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
839 */
840 public abstract long getMobileRadioApWakeupCount(int which);
841
842 /**
843 * Returns the number of times this UID woke up the Application Processor to
844 * process a WiFi packet.
845 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
846 */
847 public abstract long getWifiRadioApWakeupCount(int which);
848
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800849 public static abstract class Sensor {
Mathias Agopian7f84c062013-02-04 19:22:47 -0800850 /*
851 * FIXME: it's not correct to use this magic value because it
852 * could clash with a sensor handle (which are defined by
853 * the sensor HAL, and therefore out of our control
854 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800855 // Magic sensor number for the GPS.
856 public static final int GPS = -10000;
Amith Yamasaniab9ad192016-12-06 12:46:59 -0800857
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800858 public abstract int getHandle();
Amith Yamasaniab9ad192016-12-06 12:46:59 -0800859
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800860 public abstract Timer getSensorTime();
Amith Yamasaniab9ad192016-12-06 12:46:59 -0800861
Bookatz867c0d72017-03-07 18:23:42 -0800862 /** Returns a Timer for sensor usage when app is in the background. */
863 public abstract Timer getSensorBackgroundTime();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800864 }
865
Dianne Hackbornb5e31652010-09-07 12:13:55 -0700866 public class Pid {
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800867 public int mWakeNesting;
868 public long mWakeSumMs;
869 public long mWakeStartMs;
Dianne Hackbornb5e31652010-09-07 12:13:55 -0700870 }
871
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800872 /**
873 * The statistics associated with a particular process.
874 */
875 public static abstract class Proc {
876
Dianne Hackborn287952c2010-09-22 22:34:31 -0700877 public static class ExcessivePower {
878 public static final int TYPE_WAKE = 1;
879 public static final int TYPE_CPU = 2;
880
881 public int type;
Dianne Hackborn9adb9c32010-08-13 14:09:56 -0700882 public long overTime;
883 public long usedTime;
884 }
885
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800886 /**
Dianne Hackborn099bc622014-01-22 13:39:16 -0800887 * Returns true if this process is still active in the battery stats.
888 */
889 public abstract boolean isActive();
890
891 /**
Adam Lesinski33dac552015-03-09 15:24:48 -0700892 * Returns the total time (in milliseconds) spent executing in user code.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800893 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700894 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800895 */
896 public abstract long getUserTime(int which);
897
898 /**
Adam Lesinski33dac552015-03-09 15:24:48 -0700899 * Returns the total time (in milliseconds) spent executing in system code.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800900 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700901 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800902 */
903 public abstract long getSystemTime(int which);
904
905 /**
906 * Returns the number of times the process has been started.
907 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700908 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800909 */
910 public abstract int getStarts(int which);
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700911
912 /**
Dianne Hackborn1e01d162014-12-04 17:46:42 -0800913 * Returns the number of times the process has crashed.
914 *
915 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
916 */
917 public abstract int getNumCrashes(int which);
918
919 /**
920 * Returns the number of times the process has ANRed.
921 *
922 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
923 */
924 public abstract int getNumAnrs(int which);
925
926 /**
Adam Lesinski33dac552015-03-09 15:24:48 -0700927 * Returns the cpu time (milliseconds) spent while the process was in the foreground.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700928 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700929 * @return foreground cpu time in microseconds
930 */
931 public abstract long getForegroundTime(int which);
Amith Yamasanie43530a2009-08-21 13:11:37 -0700932
Dianne Hackborn287952c2010-09-22 22:34:31 -0700933 public abstract int countExcessivePowers();
Dianne Hackborn9adb9c32010-08-13 14:09:56 -0700934
Dianne Hackborn287952c2010-09-22 22:34:31 -0700935 public abstract ExcessivePower getExcessivePower(int i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800936 }
937
938 /**
939 * The statistics associated with a particular package.
940 */
941 public static abstract class Pkg {
942
943 /**
Dianne Hackborn1e725a72015-03-24 18:23:19 -0700944 * Returns information about all wakeup alarms that have been triggered for this
945 * package. The mapping keys are tag names for the alarms, the counter contains
946 * the number of times the alarm was triggered while on battery.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800947 */
Dianne Hackborn1e725a72015-03-24 18:23:19 -0700948 public abstract ArrayMap<String, ? extends Counter> getWakeupAlarmStats();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800949
950 /**
951 * Returns a mapping containing service statistics.
952 */
Dianne Hackborn1e725a72015-03-24 18:23:19 -0700953 public abstract ArrayMap<String, ? extends Serv> getServiceStats();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800954
955 /**
956 * The statistics associated with a particular service.
957 */
Joe Onoratoabded112016-02-08 16:49:39 -0800958 public static abstract class Serv {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800959
960 /**
961 * Returns the amount of time spent started.
962 *
963 * @param batteryUptime elapsed uptime on battery in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700964 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800965 * @return
966 */
967 public abstract long getStartTime(long batteryUptime, int which);
968
969 /**
970 * Returns the total number of times startService() has been called.
971 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700972 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800973 */
974 public abstract int getStarts(int which);
975
976 /**
977 * Returns the total number times the service has been launched.
978 *
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -0700979 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800980 */
981 public abstract int getLaunches(int which);
982 }
983 }
984 }
985
Dianne Hackbornd4a8af72015-03-03 10:06:15 -0800986 public static final class LevelStepTracker {
987 public long mLastStepTime = -1;
988 public int mNumStepDurations;
989 public final long[] mStepDurations;
990
991 public LevelStepTracker(int maxLevelSteps) {
992 mStepDurations = new long[maxLevelSteps];
993 }
994
995 public LevelStepTracker(int numSteps, long[] steps) {
996 mNumStepDurations = numSteps;
997 mStepDurations = new long[numSteps];
998 System.arraycopy(steps, 0, mStepDurations, 0, numSteps);
999 }
1000
1001 public long getDurationAt(int index) {
1002 return mStepDurations[index] & STEP_LEVEL_TIME_MASK;
1003 }
1004
1005 public int getLevelAt(int index) {
1006 return (int)((mStepDurations[index] & STEP_LEVEL_LEVEL_MASK)
1007 >> STEP_LEVEL_LEVEL_SHIFT);
1008 }
1009
1010 public int getInitModeAt(int index) {
1011 return (int)((mStepDurations[index] & STEP_LEVEL_INITIAL_MODE_MASK)
1012 >> STEP_LEVEL_INITIAL_MODE_SHIFT);
1013 }
1014
1015 public int getModModeAt(int index) {
1016 return (int)((mStepDurations[index] & STEP_LEVEL_MODIFIED_MODE_MASK)
1017 >> STEP_LEVEL_MODIFIED_MODE_SHIFT);
1018 }
1019
1020 private void appendHex(long val, int topOffset, StringBuilder out) {
1021 boolean hasData = false;
1022 while (topOffset >= 0) {
1023 int digit = (int)( (val>>topOffset) & 0xf );
1024 topOffset -= 4;
1025 if (!hasData && digit == 0) {
1026 continue;
1027 }
1028 hasData = true;
1029 if (digit >= 0 && digit <= 9) {
1030 out.append((char)('0' + digit));
1031 } else {
1032 out.append((char)('a' + digit - 10));
1033 }
1034 }
1035 }
1036
1037 public void encodeEntryAt(int index, StringBuilder out) {
1038 long item = mStepDurations[index];
1039 long duration = item & STEP_LEVEL_TIME_MASK;
1040 int level = (int)((item & STEP_LEVEL_LEVEL_MASK)
1041 >> STEP_LEVEL_LEVEL_SHIFT);
1042 int initMode = (int)((item & STEP_LEVEL_INITIAL_MODE_MASK)
1043 >> STEP_LEVEL_INITIAL_MODE_SHIFT);
1044 int modMode = (int)((item & STEP_LEVEL_MODIFIED_MODE_MASK)
1045 >> STEP_LEVEL_MODIFIED_MODE_SHIFT);
1046 switch ((initMode&STEP_LEVEL_MODE_SCREEN_STATE) + 1) {
1047 case Display.STATE_OFF: out.append('f'); break;
1048 case Display.STATE_ON: out.append('o'); break;
1049 case Display.STATE_DOZE: out.append('d'); break;
1050 case Display.STATE_DOZE_SUSPEND: out.append('z'); break;
1051 }
1052 if ((initMode&STEP_LEVEL_MODE_POWER_SAVE) != 0) {
1053 out.append('p');
1054 }
Dianne Hackborn88e98df2015-03-23 13:29:14 -07001055 if ((initMode&STEP_LEVEL_MODE_DEVICE_IDLE) != 0) {
1056 out.append('i');
1057 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001058 switch ((modMode&STEP_LEVEL_MODE_SCREEN_STATE) + 1) {
1059 case Display.STATE_OFF: out.append('F'); break;
1060 case Display.STATE_ON: out.append('O'); break;
1061 case Display.STATE_DOZE: out.append('D'); break;
1062 case Display.STATE_DOZE_SUSPEND: out.append('Z'); break;
1063 }
1064 if ((modMode&STEP_LEVEL_MODE_POWER_SAVE) != 0) {
1065 out.append('P');
1066 }
Dianne Hackborn88e98df2015-03-23 13:29:14 -07001067 if ((modMode&STEP_LEVEL_MODE_DEVICE_IDLE) != 0) {
1068 out.append('I');
1069 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001070 out.append('-');
1071 appendHex(level, 4, out);
1072 out.append('-');
1073 appendHex(duration, STEP_LEVEL_LEVEL_SHIFT-4, out);
1074 }
1075
1076 public void decodeEntryAt(int index, String value) {
1077 final int N = value.length();
1078 int i = 0;
1079 char c;
1080 long out = 0;
1081 while (i < N && (c=value.charAt(i)) != '-') {
1082 i++;
1083 switch (c) {
Dianne Hackborn8cfb58b2015-03-04 13:28:36 -08001084 case 'f': out |= (((long)Display.STATE_OFF-1)<<STEP_LEVEL_INITIAL_MODE_SHIFT);
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001085 break;
Dianne Hackborn8cfb58b2015-03-04 13:28:36 -08001086 case 'o': out |= (((long)Display.STATE_ON-1)<<STEP_LEVEL_INITIAL_MODE_SHIFT);
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001087 break;
Dianne Hackborn8cfb58b2015-03-04 13:28:36 -08001088 case 'd': out |= (((long)Display.STATE_DOZE-1)<<STEP_LEVEL_INITIAL_MODE_SHIFT);
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001089 break;
Dianne Hackborn8cfb58b2015-03-04 13:28:36 -08001090 case 'z': out |= (((long)Display.STATE_DOZE_SUSPEND-1)
1091 << STEP_LEVEL_INITIAL_MODE_SHIFT);
1092 break;
1093 case 'p': out |= (((long)STEP_LEVEL_MODE_POWER_SAVE)
1094 << STEP_LEVEL_INITIAL_MODE_SHIFT);
1095 break;
Dianne Hackborn88e98df2015-03-23 13:29:14 -07001096 case 'i': out |= (((long)STEP_LEVEL_MODE_DEVICE_IDLE)
1097 << STEP_LEVEL_INITIAL_MODE_SHIFT);
1098 break;
Dianne Hackborn8cfb58b2015-03-04 13:28:36 -08001099 case 'F': out |= (((long)Display.STATE_OFF-1)<<STEP_LEVEL_MODIFIED_MODE_SHIFT);
1100 break;
1101 case 'O': out |= (((long)Display.STATE_ON-1)<<STEP_LEVEL_MODIFIED_MODE_SHIFT);
1102 break;
1103 case 'D': out |= (((long)Display.STATE_DOZE-1)<<STEP_LEVEL_MODIFIED_MODE_SHIFT);
1104 break;
1105 case 'Z': out |= (((long)Display.STATE_DOZE_SUSPEND-1)
1106 << STEP_LEVEL_MODIFIED_MODE_SHIFT);
1107 break;
1108 case 'P': out |= (((long)STEP_LEVEL_MODE_POWER_SAVE)
1109 << STEP_LEVEL_MODIFIED_MODE_SHIFT);
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001110 break;
Dianne Hackborn88e98df2015-03-23 13:29:14 -07001111 case 'I': out |= (((long)STEP_LEVEL_MODE_DEVICE_IDLE)
1112 << STEP_LEVEL_MODIFIED_MODE_SHIFT);
1113 break;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001114 }
1115 }
1116 i++;
Dianne Hackborn8cfb58b2015-03-04 13:28:36 -08001117 long level = 0;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001118 while (i < N && (c=value.charAt(i)) != '-') {
1119 i++;
1120 level <<= 4;
1121 if (c >= '0' && c <= '9') {
1122 level += c - '0';
1123 } else if (c >= 'a' && c <= 'f') {
1124 level += c - 'a' + 10;
1125 } else if (c >= 'A' && c <= 'F') {
1126 level += c - 'A' + 10;
1127 }
1128 }
Dianne Hackborn8cfb58b2015-03-04 13:28:36 -08001129 i++;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001130 out |= (level << STEP_LEVEL_LEVEL_SHIFT) & STEP_LEVEL_LEVEL_MASK;
1131 long duration = 0;
1132 while (i < N && (c=value.charAt(i)) != '-') {
1133 i++;
1134 duration <<= 4;
1135 if (c >= '0' && c <= '9') {
1136 duration += c - '0';
1137 } else if (c >= 'a' && c <= 'f') {
1138 duration += c - 'a' + 10;
1139 } else if (c >= 'A' && c <= 'F') {
1140 duration += c - 'A' + 10;
1141 }
1142 }
1143 mStepDurations[index] = out | (duration & STEP_LEVEL_TIME_MASK);
1144 }
1145
1146 public void init() {
1147 mLastStepTime = -1;
1148 mNumStepDurations = 0;
1149 }
1150
1151 public void clearTime() {
1152 mLastStepTime = -1;
1153 }
1154
1155 public long computeTimePerLevel() {
1156 final long[] steps = mStepDurations;
1157 final int numSteps = mNumStepDurations;
1158
1159 // For now we'll do a simple average across all steps.
1160 if (numSteps <= 0) {
1161 return -1;
1162 }
1163 long total = 0;
1164 for (int i=0; i<numSteps; i++) {
1165 total += steps[i] & STEP_LEVEL_TIME_MASK;
1166 }
1167 return total / numSteps;
1168 /*
1169 long[] buckets = new long[numSteps];
1170 int numBuckets = 0;
1171 int numToAverage = 4;
1172 int i = 0;
1173 while (i < numSteps) {
1174 long totalTime = 0;
1175 int num = 0;
1176 for (int j=0; j<numToAverage && (i+j)<numSteps; j++) {
1177 totalTime += steps[i+j] & STEP_LEVEL_TIME_MASK;
1178 num++;
1179 }
1180 buckets[numBuckets] = totalTime / num;
1181 numBuckets++;
1182 numToAverage *= 2;
1183 i += num;
1184 }
1185 if (numBuckets < 1) {
1186 return -1;
1187 }
1188 long averageTime = buckets[numBuckets-1];
1189 for (i=numBuckets-2; i>=0; i--) {
1190 averageTime = (averageTime + buckets[i]) / 2;
1191 }
1192 return averageTime;
1193 */
1194 }
1195
1196 public long computeTimeEstimate(long modesOfInterest, long modeValues,
1197 int[] outNumOfInterest) {
1198 final long[] steps = mStepDurations;
1199 final int count = mNumStepDurations;
1200 if (count <= 0) {
1201 return -1;
1202 }
1203 long total = 0;
1204 int numOfInterest = 0;
1205 for (int i=0; i<count; i++) {
1206 long initMode = (steps[i] & STEP_LEVEL_INITIAL_MODE_MASK)
1207 >> STEP_LEVEL_INITIAL_MODE_SHIFT;
1208 long modMode = (steps[i] & STEP_LEVEL_MODIFIED_MODE_MASK)
1209 >> STEP_LEVEL_MODIFIED_MODE_SHIFT;
1210 // If the modes of interest didn't change during this step period...
1211 if ((modMode&modesOfInterest) == 0) {
1212 // And the mode values during this period match those we are measuring...
1213 if ((initMode&modesOfInterest) == modeValues) {
1214 // Then this can be used to estimate the total time!
1215 numOfInterest++;
1216 total += steps[i] & STEP_LEVEL_TIME_MASK;
1217 }
1218 }
1219 }
1220 if (numOfInterest <= 0) {
1221 return -1;
1222 }
1223
1224 if (outNumOfInterest != null) {
1225 outNumOfInterest[0] = numOfInterest;
1226 }
1227
1228 // The estimated time is the average time we spend in each level, multipled
1229 // by 100 -- the total number of battery levels
1230 return (total / numOfInterest) * 100;
1231 }
1232
1233 public void addLevelSteps(int numStepLevels, long modeBits, long elapsedRealtime) {
1234 int stepCount = mNumStepDurations;
1235 final long lastStepTime = mLastStepTime;
1236 if (lastStepTime >= 0 && numStepLevels > 0) {
1237 final long[] steps = mStepDurations;
1238 long duration = elapsedRealtime - lastStepTime;
1239 for (int i=0; i<numStepLevels; i++) {
1240 System.arraycopy(steps, 0, steps, 1, steps.length-1);
1241 long thisDuration = duration / (numStepLevels-i);
1242 duration -= thisDuration;
1243 if (thisDuration > STEP_LEVEL_TIME_MASK) {
1244 thisDuration = STEP_LEVEL_TIME_MASK;
1245 }
1246 steps[0] = thisDuration | modeBits;
1247 }
1248 stepCount += numStepLevels;
1249 if (stepCount > steps.length) {
1250 stepCount = steps.length;
1251 }
1252 }
1253 mNumStepDurations = stepCount;
1254 mLastStepTime = elapsedRealtime;
1255 }
1256
1257 public void readFromParcel(Parcel in) {
1258 final int N = in.readInt();
Adam Lesinski9ae9cba2015-07-08 17:09:34 -07001259 if (N > mStepDurations.length) {
1260 throw new ParcelFormatException("more step durations than available: " + N);
1261 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001262 mNumStepDurations = N;
1263 for (int i=0; i<N; i++) {
1264 mStepDurations[i] = in.readLong();
1265 }
1266 }
1267
1268 public void writeToParcel(Parcel out) {
1269 final int N = mNumStepDurations;
1270 out.writeInt(N);
1271 for (int i=0; i<N; i++) {
1272 out.writeLong(mStepDurations[i]);
1273 }
1274 }
1275 }
1276
Dianne Hackborn88e98df2015-03-23 13:29:14 -07001277 public static final class PackageChange {
1278 public String mPackageName;
1279 public boolean mUpdate;
Dianne Hackborn3accca02013-09-20 09:32:11 -07001280 public long mVersionCode;
Dianne Hackborn88e98df2015-03-23 13:29:14 -07001281 }
1282
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001283 public static final class DailyItem {
1284 public long mStartTime;
1285 public long mEndTime;
1286 public LevelStepTracker mDischargeSteps;
1287 public LevelStepTracker mChargeSteps;
Dianne Hackborn88e98df2015-03-23 13:29:14 -07001288 public ArrayList<PackageChange> mPackageChanges;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001289 }
1290
1291 public abstract DailyItem getDailyItemLocked(int daysAgo);
1292
1293 public abstract long getCurrentDailyStartTime();
1294
1295 public abstract long getNextMinDailyDeadline();
1296
1297 public abstract long getNextMaxDailyDeadline();
1298
Sudheer Shanka9b735c52017-05-09 18:26:18 -07001299 public abstract long[] getCpuFreqs();
1300
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001301 public final static class HistoryTag {
1302 public String string;
1303 public int uid;
1304
1305 public int poolIdx;
1306
1307 public void setTo(HistoryTag o) {
1308 string = o.string;
1309 uid = o.uid;
1310 poolIdx = o.poolIdx;
1311 }
1312
1313 public void setTo(String _string, int _uid) {
1314 string = _string;
1315 uid = _uid;
1316 poolIdx = -1;
1317 }
1318
1319 public void writeToParcel(Parcel dest, int flags) {
1320 dest.writeString(string);
1321 dest.writeInt(uid);
1322 }
1323
1324 public void readFromParcel(Parcel src) {
1325 string = src.readString();
1326 uid = src.readInt();
1327 poolIdx = -1;
1328 }
1329
1330 @Override
1331 public boolean equals(Object o) {
1332 if (this == o) return true;
1333 if (o == null || getClass() != o.getClass()) return false;
1334
1335 HistoryTag that = (HistoryTag) o;
1336
1337 if (uid != that.uid) return false;
1338 if (!string.equals(that.string)) return false;
1339
1340 return true;
1341 }
1342
1343 @Override
1344 public int hashCode() {
1345 int result = string.hashCode();
1346 result = 31 * result + uid;
1347 return result;
1348 }
1349 }
1350
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08001351 /**
1352 * Optional detailed information that can go into a history step. This is typically
1353 * generated each time the battery level changes.
1354 */
1355 public final static class HistoryStepDetails {
1356 // Time (in 1/100 second) spent in user space and the kernel since the last step.
1357 public int userTime;
1358 public int systemTime;
1359
1360 // Top three apps using CPU in the last step, with times in 1/100 second.
1361 public int appCpuUid1;
1362 public int appCpuUTime1;
1363 public int appCpuSTime1;
1364 public int appCpuUid2;
1365 public int appCpuUTime2;
1366 public int appCpuSTime2;
1367 public int appCpuUid3;
1368 public int appCpuUTime3;
1369 public int appCpuSTime3;
1370
1371 // Information from /proc/stat
1372 public int statUserTime;
1373 public int statSystemTime;
1374 public int statIOWaitTime;
1375 public int statIrqTime;
1376 public int statSoftIrqTime;
1377 public int statIdlTime;
1378
Badhri Jagan Sridharan68cdf192016-04-03 21:57:15 -07001379 // Platform-level low power state stats
1380 public String statPlatformIdleState;
Ahmed ElArabawyd8b44112017-05-23 21:25:02 +00001381 public String statSubsystemPowerState;
Badhri Jagan Sridharan68cdf192016-04-03 21:57:15 -07001382
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08001383 public HistoryStepDetails() {
1384 clear();
1385 }
1386
1387 public void clear() {
1388 userTime = systemTime = 0;
1389 appCpuUid1 = appCpuUid2 = appCpuUid3 = -1;
1390 appCpuUTime1 = appCpuSTime1 = appCpuUTime2 = appCpuSTime2
1391 = appCpuUTime3 = appCpuSTime3 = 0;
1392 }
1393
1394 public void writeToParcel(Parcel out) {
1395 out.writeInt(userTime);
1396 out.writeInt(systemTime);
1397 out.writeInt(appCpuUid1);
1398 out.writeInt(appCpuUTime1);
1399 out.writeInt(appCpuSTime1);
1400 out.writeInt(appCpuUid2);
1401 out.writeInt(appCpuUTime2);
1402 out.writeInt(appCpuSTime2);
1403 out.writeInt(appCpuUid3);
1404 out.writeInt(appCpuUTime3);
1405 out.writeInt(appCpuSTime3);
1406 out.writeInt(statUserTime);
1407 out.writeInt(statSystemTime);
1408 out.writeInt(statIOWaitTime);
1409 out.writeInt(statIrqTime);
1410 out.writeInt(statSoftIrqTime);
1411 out.writeInt(statIdlTime);
Badhri Jagan Sridharan68cdf192016-04-03 21:57:15 -07001412 out.writeString(statPlatformIdleState);
Ahmed ElArabawyd8b44112017-05-23 21:25:02 +00001413 out.writeString(statSubsystemPowerState);
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08001414 }
1415
1416 public void readFromParcel(Parcel in) {
1417 userTime = in.readInt();
1418 systemTime = in.readInt();
1419 appCpuUid1 = in.readInt();
1420 appCpuUTime1 = in.readInt();
1421 appCpuSTime1 = in.readInt();
1422 appCpuUid2 = in.readInt();
1423 appCpuUTime2 = in.readInt();
1424 appCpuSTime2 = in.readInt();
1425 appCpuUid3 = in.readInt();
1426 appCpuUTime3 = in.readInt();
1427 appCpuSTime3 = in.readInt();
1428 statUserTime = in.readInt();
1429 statSystemTime = in.readInt();
1430 statIOWaitTime = in.readInt();
1431 statIrqTime = in.readInt();
1432 statSoftIrqTime = in.readInt();
1433 statIdlTime = in.readInt();
Badhri Jagan Sridharan68cdf192016-04-03 21:57:15 -07001434 statPlatformIdleState = in.readString();
Ahmed ElArabawyd8b44112017-05-23 21:25:02 +00001435 statSubsystemPowerState = in.readString();
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08001436 }
1437 }
1438
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001439 public final static class HistoryItem implements Parcelable {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001440 public HistoryItem next;
Dianne Hackborn9a755432014-05-15 17:05:22 -07001441
1442 // The time of this event in milliseconds, as per SystemClock.elapsedRealtime().
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001443 public long time;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001444
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001445 public static final byte CMD_UPDATE = 0; // These can be written as deltas
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001446 public static final byte CMD_NULL = -1;
1447 public static final byte CMD_START = 4;
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001448 public static final byte CMD_CURRENT_TIME = 5;
1449 public static final byte CMD_OVERFLOW = 6;
Dianne Hackborn37de0982014-05-09 09:32:18 -07001450 public static final byte CMD_RESET = 7;
Dianne Hackborn29cd7f12015-01-08 10:37:05 -08001451 public static final byte CMD_SHUTDOWN = 8;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001452
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001453 public byte cmd = CMD_NULL;
Bookatzc8c44962017-05-11 12:12:54 -07001454
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001455 /**
1456 * Return whether the command code is a delta data update.
1457 */
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001458 public boolean isDeltaData() {
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001459 return cmd == CMD_UPDATE;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001460 }
1461
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001462 public byte batteryLevel;
1463 public byte batteryStatus;
1464 public byte batteryHealth;
1465 public byte batteryPlugType;
Bookatzc8c44962017-05-11 12:12:54 -07001466
Sungmin Choic7e9e8b2013-01-16 12:57:36 +09001467 public short batteryTemperature;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001468 public char batteryVoltage;
Adam Lesinski926969b2016-04-28 17:31:12 -07001469
Adam Lesinskia8018ac2016-05-03 10:18:10 -07001470 // The charge of the battery in micro-Ampere-hours.
1471 public int batteryChargeUAh;
Bookatzc8c44962017-05-11 12:12:54 -07001472
Dianne Hackborn3bee5af82010-07-23 00:22:04 -07001473 // Constants from SCREEN_BRIGHTNESS_*
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001474 public static final int STATE_BRIGHTNESS_SHIFT = 0;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001475 public static final int STATE_BRIGHTNESS_MASK = 0x7;
Dianne Hackborn3bee5af82010-07-23 00:22:04 -07001476 // Constants from SIGNAL_STRENGTH_*
Dianne Hackborn3251b902014-06-20 14:40:53 -07001477 public static final int STATE_PHONE_SIGNAL_STRENGTH_SHIFT = 3;
1478 public static final int STATE_PHONE_SIGNAL_STRENGTH_MASK = 0x7 << STATE_PHONE_SIGNAL_STRENGTH_SHIFT;
Dianne Hackborn3bee5af82010-07-23 00:22:04 -07001479 // Constants from ServiceState.STATE_*
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001480 public static final int STATE_PHONE_STATE_SHIFT = 6;
1481 public static final int STATE_PHONE_STATE_MASK = 0x7 << STATE_PHONE_STATE_SHIFT;
Dianne Hackborn3bee5af82010-07-23 00:22:04 -07001482 // Constants from DATA_CONNECTION_*
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001483 public static final int STATE_DATA_CONNECTION_SHIFT = 9;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001484 public static final int STATE_DATA_CONNECTION_MASK = 0x1f << STATE_DATA_CONNECTION_SHIFT;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001485
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001486 // These states always appear directly in the first int token
1487 // of a delta change; they should be ones that change relatively
1488 // frequently.
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001489 public static final int STATE_CPU_RUNNING_FLAG = 1<<31;
1490 public static final int STATE_WAKE_LOCK_FLAG = 1<<30;
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001491 public static final int STATE_GPS_ON_FLAG = 1<<29;
1492 public static final int STATE_WIFI_FULL_LOCK_FLAG = 1<<28;
Dianne Hackborne13c4c02014-02-11 17:18:35 -08001493 public static final int STATE_WIFI_SCAN_FLAG = 1<<27;
Dianne Hackborn0c820db2015-04-14 17:47:34 -07001494 public static final int STATE_WIFI_RADIO_ACTIVE_FLAG = 1<<26;
Dianne Hackborne13c4c02014-02-11 17:18:35 -08001495 public static final int STATE_MOBILE_RADIO_ACTIVE_FLAG = 1<<25;
Adam Lesinski926969b2016-04-28 17:31:12 -07001496 // Do not use, this is used for coulomb delta count.
1497 private static final int STATE_RESERVED_0 = 1<<24;
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001498 // These are on the lower bits used for the command; if they change
1499 // we need to write another int of data.
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001500 public static final int STATE_SENSOR_ON_FLAG = 1<<23;
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001501 public static final int STATE_AUDIO_ON_FLAG = 1<<22;
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001502 public static final int STATE_PHONE_SCANNING_FLAG = 1<<21;
Dianne Hackborn0c820db2015-04-14 17:47:34 -07001503 public static final int STATE_SCREEN_ON_FLAG = 1<<20; // consider moving to states2
1504 public static final int STATE_BATTERY_PLUGGED_FLAG = 1<<19; // consider moving to states2
Mike Mac2f518a2017-09-19 16:06:03 -07001505 public static final int STATE_SCREEN_DOZE_FLAG = 1 << 18;
Dianne Hackborn0c820db2015-04-14 17:47:34 -07001506 // empty slot
1507 public static final int STATE_WIFI_MULTICAST_ON_FLAG = 1<<16;
Dianne Hackborn40c87252014-03-19 16:55:40 -07001508
Dianne Hackbornf47d8f22010-10-08 10:46:55 -07001509 public static final int MOST_INTERESTING_STATES =
Mike Mac2f518a2017-09-19 16:06:03 -07001510 STATE_BATTERY_PLUGGED_FLAG | STATE_SCREEN_ON_FLAG | STATE_SCREEN_DOZE_FLAG;
Dianne Hackborn0c820db2015-04-14 17:47:34 -07001511
1512 public static final int SETTLE_TO_ZERO_STATES = 0xffff0000 & ~MOST_INTERESTING_STATES;
Dianne Hackbornf47d8f22010-10-08 10:46:55 -07001513
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001514 public int states;
1515
Dianne Hackborn3251b902014-06-20 14:40:53 -07001516 // Constants from WIFI_SUPPL_STATE_*
1517 public static final int STATE2_WIFI_SUPPL_STATE_SHIFT = 0;
1518 public static final int STATE2_WIFI_SUPPL_STATE_MASK = 0xf;
1519 // Values for NUM_WIFI_SIGNAL_STRENGTH_BINS
1520 public static final int STATE2_WIFI_SIGNAL_STRENGTH_SHIFT = 4;
1521 public static final int STATE2_WIFI_SIGNAL_STRENGTH_MASK =
1522 0x7 << STATE2_WIFI_SIGNAL_STRENGTH_SHIFT;
Siddharth Ray78ccaf52017-12-23 16:16:21 -08001523 // Values for NUM_GPS_SIGNAL_QUALITY_LEVELS
1524 public static final int STATE2_GPS_SIGNAL_QUALITY_SHIFT = 7;
1525 public static final int STATE2_GPS_SIGNAL_QUALITY_MASK =
1526 0x1 << STATE2_GPS_SIGNAL_QUALITY_SHIFT;
Dianne Hackborn3251b902014-06-20 14:40:53 -07001527
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001528 public static final int STATE2_POWER_SAVE_FLAG = 1<<31;
Dianne Hackborn3251b902014-06-20 14:40:53 -07001529 public static final int STATE2_VIDEO_ON_FLAG = 1<<30;
1530 public static final int STATE2_WIFI_RUNNING_FLAG = 1<<29;
1531 public static final int STATE2_WIFI_ON_FLAG = 1<<28;
Dianne Hackbornabc7c492014-06-30 16:57:46 -07001532 public static final int STATE2_FLASHLIGHT_FLAG = 1<<27;
Dianne Hackborn08c47a52015-10-15 12:38:14 -07001533 public static final int STATE2_DEVICE_IDLE_SHIFT = 25;
1534 public static final int STATE2_DEVICE_IDLE_MASK = 0x3 << STATE2_DEVICE_IDLE_SHIFT;
1535 public static final int STATE2_CHARGING_FLAG = 1<<24;
1536 public static final int STATE2_PHONE_IN_CALL_FLAG = 1<<23;
1537 public static final int STATE2_BLUETOOTH_ON_FLAG = 1<<22;
1538 public static final int STATE2_CAMERA_FLAG = 1<<21;
Adam Lesinski9f55cc72016-01-27 20:42:14 -08001539 public static final int STATE2_BLUETOOTH_SCAN_FLAG = 1 << 20;
Dianne Hackborn3251b902014-06-20 14:40:53 -07001540
1541 public static final int MOST_INTERESTING_STATES2 =
Mike Mac2f518a2017-09-19 16:06:03 -07001542 STATE2_POWER_SAVE_FLAG | STATE2_WIFI_ON_FLAG | STATE2_DEVICE_IDLE_MASK
1543 | STATE2_CHARGING_FLAG | STATE2_PHONE_IN_CALL_FLAG | STATE2_BLUETOOTH_ON_FLAG;
Dianne Hackborn0c820db2015-04-14 17:47:34 -07001544
1545 public static final int SETTLE_TO_ZERO_STATES2 = 0xffff0000 & ~MOST_INTERESTING_STATES2;
Dianne Hackborn3251b902014-06-20 14:40:53 -07001546
Dianne Hackborn40c87252014-03-19 16:55:40 -07001547 public int states2;
1548
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001549 // The wake lock that was acquired at this point.
1550 public HistoryTag wakelockTag;
1551
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001552 // Kernel wakeup reason at this point.
1553 public HistoryTag wakeReasonTag;
1554
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08001555 // Non-null when there is more detailed information at this step.
1556 public HistoryStepDetails stepDetails;
1557
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08001558 public static final int EVENT_FLAG_START = 0x8000;
1559 public static final int EVENT_FLAG_FINISH = 0x4000;
1560
1561 // No event in this item.
1562 public static final int EVENT_NONE = 0x0000;
1563 // Event is about a process that is running.
1564 public static final int EVENT_PROC = 0x0001;
1565 // Event is about an application package that is in the foreground.
1566 public static final int EVENT_FOREGROUND = 0x0002;
1567 // Event is about an application package that is at the top of the screen.
1568 public static final int EVENT_TOP = 0x0003;
Dianne Hackbornfdb19562014-07-11 16:03:36 -07001569 // Event is about active sync operations.
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -08001570 public static final int EVENT_SYNC = 0x0004;
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001571 // Events for all additional wake locks aquired/release within a wake block.
1572 // These are not generated by default.
1573 public static final int EVENT_WAKE_LOCK = 0x0005;
Dianne Hackbornfdb19562014-07-11 16:03:36 -07001574 // Event is about an application executing a scheduled job.
1575 public static final int EVENT_JOB = 0x0006;
1576 // Events for users running.
1577 public static final int EVENT_USER_RUNNING = 0x0007;
1578 // Events for foreground user.
1579 public static final int EVENT_USER_FOREGROUND = 0x0008;
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001580 // Event for connectivity changed.
Dianne Hackborn1e01d162014-12-04 17:46:42 -08001581 public static final int EVENT_CONNECTIVITY_CHANGED = 0x0009;
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001582 // Event for becoming active taking us out of idle mode.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001583 public static final int EVENT_ACTIVE = 0x000a;
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001584 // Event for a package being installed.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001585 public static final int EVENT_PACKAGE_INSTALLED = 0x000b;
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001586 // Event for a package being uninstalled.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001587 public static final int EVENT_PACKAGE_UNINSTALLED = 0x000c;
Dianne Hackborn1e383822015-04-10 14:02:33 -07001588 // Event for a package being uninstalled.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001589 public static final int EVENT_ALARM = 0x000d;
Dianne Hackborn0c820db2015-04-14 17:47:34 -07001590 // Record that we have decided we need to collect new stats data.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001591 public static final int EVENT_COLLECT_EXTERNAL_STATS = 0x000e;
Amith Yamasani67768492015-06-09 12:23:58 -07001592 // Event for a package becoming inactive due to being unused for a period of time.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001593 public static final int EVENT_PACKAGE_INACTIVE = 0x000f;
Amith Yamasani67768492015-06-09 12:23:58 -07001594 // Event for a package becoming active due to an interaction.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001595 public static final int EVENT_PACKAGE_ACTIVE = 0x0010;
Dianne Hackbornfd854ee2015-07-13 18:00:37 -07001596 // Event for a package being on the temporary whitelist.
1597 public static final int EVENT_TEMP_WHITELIST = 0x0011;
Dianne Hackborn280a64e2015-07-13 14:48:08 -07001598 // Event for the screen waking up.
1599 public static final int EVENT_SCREEN_WAKE_UP = 0x0012;
Adam Lesinski5f056f62016-07-14 16:56:08 -07001600 // Event for the UID that woke up the application processor.
1601 // Used for wakeups coming from WiFi, modem, etc.
1602 public static final int EVENT_WAKEUP_AP = 0x0013;
Dianne Hackbornd0db6f02016-07-18 14:14:20 -07001603 // Event for reporting that a specific partial wake lock has been held for a long duration.
1604 public static final int EVENT_LONG_WAKE_LOCK = 0x0014;
Amith Yamasani67768492015-06-09 12:23:58 -07001605
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08001606 // Number of event types.
Adam Lesinski041d9172016-12-12 12:03:56 -08001607 public static final int EVENT_COUNT = 0x0016;
Dianne Hackborn37de0982014-05-09 09:32:18 -07001608 // Mask to extract out only the type part of the event.
1609 public static final int EVENT_TYPE_MASK = ~(EVENT_FLAG_START|EVENT_FLAG_FINISH);
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08001610
1611 public static final int EVENT_PROC_START = EVENT_PROC | EVENT_FLAG_START;
1612 public static final int EVENT_PROC_FINISH = EVENT_PROC | EVENT_FLAG_FINISH;
1613 public static final int EVENT_FOREGROUND_START = EVENT_FOREGROUND | EVENT_FLAG_START;
1614 public static final int EVENT_FOREGROUND_FINISH = EVENT_FOREGROUND | EVENT_FLAG_FINISH;
1615 public static final int EVENT_TOP_START = EVENT_TOP | EVENT_FLAG_START;
1616 public static final int EVENT_TOP_FINISH = EVENT_TOP | EVENT_FLAG_FINISH;
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -08001617 public static final int EVENT_SYNC_START = EVENT_SYNC | EVENT_FLAG_START;
1618 public static final int EVENT_SYNC_FINISH = EVENT_SYNC | EVENT_FLAG_FINISH;
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001619 public static final int EVENT_WAKE_LOCK_START = EVENT_WAKE_LOCK | EVENT_FLAG_START;
1620 public static final int EVENT_WAKE_LOCK_FINISH = EVENT_WAKE_LOCK | EVENT_FLAG_FINISH;
Dianne Hackbornfdb19562014-07-11 16:03:36 -07001621 public static final int EVENT_JOB_START = EVENT_JOB | EVENT_FLAG_START;
1622 public static final int EVENT_JOB_FINISH = EVENT_JOB | EVENT_FLAG_FINISH;
1623 public static final int EVENT_USER_RUNNING_START = EVENT_USER_RUNNING | EVENT_FLAG_START;
1624 public static final int EVENT_USER_RUNNING_FINISH = EVENT_USER_RUNNING | EVENT_FLAG_FINISH;
1625 public static final int EVENT_USER_FOREGROUND_START =
1626 EVENT_USER_FOREGROUND | EVENT_FLAG_START;
1627 public static final int EVENT_USER_FOREGROUND_FINISH =
1628 EVENT_USER_FOREGROUND | EVENT_FLAG_FINISH;
Dianne Hackborn1e383822015-04-10 14:02:33 -07001629 public static final int EVENT_ALARM_START = EVENT_ALARM | EVENT_FLAG_START;
1630 public static final int EVENT_ALARM_FINISH = EVENT_ALARM | EVENT_FLAG_FINISH;
Dianne Hackbornfd854ee2015-07-13 18:00:37 -07001631 public static final int EVENT_TEMP_WHITELIST_START =
1632 EVENT_TEMP_WHITELIST | EVENT_FLAG_START;
1633 public static final int EVENT_TEMP_WHITELIST_FINISH =
1634 EVENT_TEMP_WHITELIST | EVENT_FLAG_FINISH;
Dianne Hackbornd0db6f02016-07-18 14:14:20 -07001635 public static final int EVENT_LONG_WAKE_LOCK_START =
1636 EVENT_LONG_WAKE_LOCK | EVENT_FLAG_START;
1637 public static final int EVENT_LONG_WAKE_LOCK_FINISH =
1638 EVENT_LONG_WAKE_LOCK | EVENT_FLAG_FINISH;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001639
1640 // For CMD_EVENT.
1641 public int eventCode;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001642 public HistoryTag eventTag;
1643
Dianne Hackborn9a755432014-05-15 17:05:22 -07001644 // Only set for CMD_CURRENT_TIME or CMD_RESET, as per System.currentTimeMillis().
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001645 public long currentTime;
1646
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001647 // Meta-data when reading.
1648 public int numReadInts;
1649
1650 // Pre-allocated objects.
1651 public final HistoryTag localWakelockTag = new HistoryTag();
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001652 public final HistoryTag localWakeReasonTag = new HistoryTag();
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001653 public final HistoryTag localEventTag = new HistoryTag();
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001654
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001655 public HistoryItem() {
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001656 }
Bookatzc8c44962017-05-11 12:12:54 -07001657
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001658 public HistoryItem(long time, Parcel src) {
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001659 this.time = time;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001660 numReadInts = 2;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001661 readFromParcel(src);
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001662 }
Bookatzc8c44962017-05-11 12:12:54 -07001663
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001664 public int describeContents() {
1665 return 0;
1666 }
1667
1668 public void writeToParcel(Parcel dest, int flags) {
1669 dest.writeLong(time);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001670 int bat = (((int)cmd)&0xff)
1671 | ((((int)batteryLevel)<<8)&0xff00)
1672 | ((((int)batteryStatus)<<16)&0xf0000)
1673 | ((((int)batteryHealth)<<20)&0xf00000)
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001674 | ((((int)batteryPlugType)<<24)&0xf000000)
1675 | (wakelockTag != null ? 0x10000000 : 0)
1676 | (wakeReasonTag != null ? 0x20000000 : 0)
1677 | (eventCode != EVENT_NONE ? 0x40000000 : 0);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001678 dest.writeInt(bat);
1679 bat = (((int)batteryTemperature)&0xffff)
1680 | ((((int)batteryVoltage)<<16)&0xffff0000);
1681 dest.writeInt(bat);
Adam Lesinskia8018ac2016-05-03 10:18:10 -07001682 dest.writeInt(batteryChargeUAh);
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001683 dest.writeInt(states);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001684 dest.writeInt(states2);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001685 if (wakelockTag != null) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001686 wakelockTag.writeToParcel(dest, flags);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001687 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001688 if (wakeReasonTag != null) {
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001689 wakeReasonTag.writeToParcel(dest, flags);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001690 }
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001691 if (eventCode != EVENT_NONE) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001692 dest.writeInt(eventCode);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001693 eventTag.writeToParcel(dest, flags);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001694 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07001695 if (cmd == CMD_CURRENT_TIME || cmd == CMD_RESET) {
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001696 dest.writeLong(currentTime);
1697 }
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001698 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001699
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001700 public void readFromParcel(Parcel src) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001701 int start = src.dataPosition();
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001702 int bat = src.readInt();
1703 cmd = (byte)(bat&0xff);
1704 batteryLevel = (byte)((bat>>8)&0xff);
1705 batteryStatus = (byte)((bat>>16)&0xf);
1706 batteryHealth = (byte)((bat>>20)&0xf);
1707 batteryPlugType = (byte)((bat>>24)&0xf);
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001708 int bat2 = src.readInt();
1709 batteryTemperature = (short)(bat2&0xffff);
1710 batteryVoltage = (char)((bat2>>16)&0xffff);
Adam Lesinskia8018ac2016-05-03 10:18:10 -07001711 batteryChargeUAh = src.readInt();
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001712 states = src.readInt();
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001713 states2 = src.readInt();
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001714 if ((bat&0x10000000) != 0) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001715 wakelockTag = localWakelockTag;
1716 wakelockTag.readFromParcel(src);
1717 } else {
1718 wakelockTag = null;
1719 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001720 if ((bat&0x20000000) != 0) {
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001721 wakeReasonTag = localWakeReasonTag;
1722 wakeReasonTag.readFromParcel(src);
1723 } else {
1724 wakeReasonTag = null;
1725 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001726 if ((bat&0x40000000) != 0) {
1727 eventCode = src.readInt();
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001728 eventTag = localEventTag;
1729 eventTag.readFromParcel(src);
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001730 } else {
1731 eventCode = EVENT_NONE;
1732 eventTag = null;
1733 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07001734 if (cmd == CMD_CURRENT_TIME || cmd == CMD_RESET) {
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001735 currentTime = src.readLong();
1736 } else {
1737 currentTime = 0;
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001738 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001739 numReadInts += (src.dataPosition()-start)/4;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001740 }
1741
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001742 public void clear() {
1743 time = 0;
1744 cmd = CMD_NULL;
1745 batteryLevel = 0;
1746 batteryStatus = 0;
1747 batteryHealth = 0;
1748 batteryPlugType = 0;
1749 batteryTemperature = 0;
1750 batteryVoltage = 0;
Adam Lesinskia8018ac2016-05-03 10:18:10 -07001751 batteryChargeUAh = 0;
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001752 states = 0;
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001753 states2 = 0;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001754 wakelockTag = null;
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001755 wakeReasonTag = null;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001756 eventCode = EVENT_NONE;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001757 eventTag = null;
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001758 }
Bookatzc8c44962017-05-11 12:12:54 -07001759
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001760 public void setTo(HistoryItem o) {
1761 time = o.time;
1762 cmd = o.cmd;
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001763 setToCommon(o);
1764 }
1765
1766 public void setTo(long time, byte cmd, HistoryItem o) {
1767 this.time = time;
1768 this.cmd = cmd;
1769 setToCommon(o);
1770 }
1771
1772 private void setToCommon(HistoryItem o) {
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001773 batteryLevel = o.batteryLevel;
1774 batteryStatus = o.batteryStatus;
1775 batteryHealth = o.batteryHealth;
1776 batteryPlugType = o.batteryPlugType;
1777 batteryTemperature = o.batteryTemperature;
1778 batteryVoltage = o.batteryVoltage;
Adam Lesinskia8018ac2016-05-03 10:18:10 -07001779 batteryChargeUAh = o.batteryChargeUAh;
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001780 states = o.states;
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001781 states2 = o.states2;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001782 if (o.wakelockTag != null) {
1783 wakelockTag = localWakelockTag;
1784 wakelockTag.setTo(o.wakelockTag);
1785 } else {
1786 wakelockTag = null;
1787 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001788 if (o.wakeReasonTag != null) {
1789 wakeReasonTag = localWakeReasonTag;
1790 wakeReasonTag.setTo(o.wakeReasonTag);
1791 } else {
1792 wakeReasonTag = null;
1793 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001794 eventCode = o.eventCode;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001795 if (o.eventTag != null) {
1796 eventTag = localEventTag;
1797 eventTag.setTo(o.eventTag);
1798 } else {
1799 eventTag = null;
1800 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001801 currentTime = o.currentTime;
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001802 }
1803
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001804 public boolean sameNonEvent(HistoryItem o) {
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07001805 return batteryLevel == o.batteryLevel
1806 && batteryStatus == o.batteryStatus
1807 && batteryHealth == o.batteryHealth
1808 && batteryPlugType == o.batteryPlugType
1809 && batteryTemperature == o.batteryTemperature
1810 && batteryVoltage == o.batteryVoltage
Adam Lesinskia8018ac2016-05-03 10:18:10 -07001811 && batteryChargeUAh == o.batteryChargeUAh
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001812 && states == o.states
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001813 && states2 == o.states2
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001814 && currentTime == o.currentTime;
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07001815 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001816
1817 public boolean same(HistoryItem o) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001818 if (!sameNonEvent(o) || eventCode != o.eventCode) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001819 return false;
1820 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001821 if (wakelockTag != o.wakelockTag) {
1822 if (wakelockTag == null || o.wakelockTag == null) {
1823 return false;
1824 }
1825 if (!wakelockTag.equals(o.wakelockTag)) {
1826 return false;
1827 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001828 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001829 if (wakeReasonTag != o.wakeReasonTag) {
1830 if (wakeReasonTag == null || o.wakeReasonTag == null) {
1831 return false;
1832 }
1833 if (!wakeReasonTag.equals(o.wakeReasonTag)) {
1834 return false;
1835 }
1836 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001837 if (eventTag != o.eventTag) {
1838 if (eventTag == null || o.eventTag == null) {
1839 return false;
1840 }
1841 if (!eventTag.equals(o.eventTag)) {
1842 return false;
1843 }
1844 }
1845 return true;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001846 }
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001847 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07001848
1849 public final static class HistoryEventTracker {
1850 private final HashMap<String, SparseIntArray>[] mActiveEvents
1851 = (HashMap<String, SparseIntArray>[]) new HashMap[HistoryItem.EVENT_COUNT];
1852
1853 public boolean updateState(int code, String name, int uid, int poolIdx) {
1854 if ((code&HistoryItem.EVENT_FLAG_START) != 0) {
1855 int idx = code&HistoryItem.EVENT_TYPE_MASK;
1856 HashMap<String, SparseIntArray> active = mActiveEvents[idx];
1857 if (active == null) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07001858 active = new HashMap<>();
Dianne Hackborn37de0982014-05-09 09:32:18 -07001859 mActiveEvents[idx] = active;
1860 }
1861 SparseIntArray uids = active.get(name);
1862 if (uids == null) {
1863 uids = new SparseIntArray();
1864 active.put(name, uids);
1865 }
1866 if (uids.indexOfKey(uid) >= 0) {
1867 // Already set, nothing to do!
1868 return false;
1869 }
1870 uids.put(uid, poolIdx);
1871 } else if ((code&HistoryItem.EVENT_FLAG_FINISH) != 0) {
1872 int idx = code&HistoryItem.EVENT_TYPE_MASK;
1873 HashMap<String, SparseIntArray> active = mActiveEvents[idx];
1874 if (active == null) {
1875 // not currently active, nothing to do.
1876 return false;
1877 }
1878 SparseIntArray uids = active.get(name);
1879 if (uids == null) {
1880 // not currently active, nothing to do.
1881 return false;
1882 }
1883 idx = uids.indexOfKey(uid);
1884 if (idx < 0) {
1885 // not currently active, nothing to do.
1886 return false;
1887 }
1888 uids.removeAt(idx);
1889 if (uids.size() <= 0) {
1890 active.remove(name);
1891 }
1892 }
1893 return true;
1894 }
1895
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001896 public void removeEvents(int code) {
1897 int idx = code&HistoryItem.EVENT_TYPE_MASK;
1898 mActiveEvents[idx] = null;
1899 }
1900
Dianne Hackborn37de0982014-05-09 09:32:18 -07001901 public HashMap<String, SparseIntArray> getStateForEvent(int code) {
1902 return mActiveEvents[code];
1903 }
1904 }
1905
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001906 public static final class BitDescription {
1907 public final int mask;
1908 public final int shift;
1909 public final String name;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001910 public final String shortName;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001911 public final String[] values;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001912 public final String[] shortValues;
Bookatzc8c44962017-05-11 12:12:54 -07001913
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001914 public BitDescription(int mask, String name, String shortName) {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001915 this.mask = mask;
1916 this.shift = -1;
1917 this.name = name;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001918 this.shortName = shortName;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001919 this.values = null;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001920 this.shortValues = null;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001921 }
Bookatzc8c44962017-05-11 12:12:54 -07001922
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001923 public BitDescription(int mask, int shift, String name, String shortName,
1924 String[] values, String[] shortValues) {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001925 this.mask = mask;
1926 this.shift = shift;
1927 this.name = name;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001928 this.shortName = shortName;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001929 this.values = values;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001930 this.shortValues = shortValues;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001931 }
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001932 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07001933
Dianne Hackbornfc064132014-06-02 12:42:12 -07001934 /**
1935 * Don't allow any more batching in to the current history event. This
1936 * is called when printing partial histories, so to ensure that the next
1937 * history event will go in to a new batch after what was printed in the
1938 * last partial history.
1939 */
1940 public abstract void commitCurrentHistoryBatchLocked();
1941
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001942 public abstract int getHistoryTotalSize();
1943
1944 public abstract int getHistoryUsedSize();
1945
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001946 public abstract boolean startIteratingHistoryLocked();
1947
Dianne Hackborn099bc622014-01-22 13:39:16 -08001948 public abstract int getHistoryStringPoolSize();
1949
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001950 public abstract int getHistoryStringPoolBytes();
1951
1952 public abstract String getHistoryTagPoolString(int index);
1953
1954 public abstract int getHistoryTagPoolUid(int index);
Dianne Hackborn099bc622014-01-22 13:39:16 -08001955
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001956 public abstract boolean getNextHistoryLocked(HistoryItem out);
1957
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001958 public abstract void finishIteratingHistoryLocked();
1959
1960 public abstract boolean startIteratingOldHistoryLocked();
1961
1962 public abstract boolean getNextOldHistoryLocked(HistoryItem out);
1963
1964 public abstract void finishIteratingOldHistoryLocked();
1965
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001966 /**
Dianne Hackbornb5e31652010-09-07 12:13:55 -07001967 * Return the base time offset for the battery history.
1968 */
1969 public abstract long getHistoryBaseTime();
Bookatzc8c44962017-05-11 12:12:54 -07001970
Dianne Hackbornb5e31652010-09-07 12:13:55 -07001971 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001972 * Returns the number of times the device has been started.
1973 */
1974 public abstract int getStartCount();
Bookatzc8c44962017-05-11 12:12:54 -07001975
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001976 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07001977 * 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 -08001978 * running on battery.
Bookatzc8c44962017-05-11 12:12:54 -07001979 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001980 * {@hide}
1981 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001982 public abstract long getScreenOnTime(long elapsedRealtimeUs, int which);
Bookatzc8c44962017-05-11 12:12:54 -07001983
Dianne Hackborn77b987f2014-02-26 16:20:52 -08001984 /**
1985 * Returns the number of times the screen was turned on.
1986 *
1987 * {@hide}
1988 */
1989 public abstract int getScreenOnCount(int which);
1990
Mike Mac2f518a2017-09-19 16:06:03 -07001991 /**
1992 * Returns the time in microseconds that the screen has been dozing while the device was
1993 * running on battery.
1994 *
1995 * {@hide}
1996 */
1997 public abstract long getScreenDozeTime(long elapsedRealtimeUs, int which);
1998
1999 /**
2000 * Returns the number of times the screen was turned dozing.
2001 *
2002 * {@hide}
2003 */
2004 public abstract int getScreenDozeCount(int which);
2005
Jeff Browne95c3cd2014-05-02 16:59:26 -07002006 public abstract long getInteractiveTime(long elapsedRealtimeUs, int which);
2007
Dianne Hackborn617f8772009-03-31 15:04:46 -07002008 public static final int SCREEN_BRIGHTNESS_DARK = 0;
2009 public static final int SCREEN_BRIGHTNESS_DIM = 1;
2010 public static final int SCREEN_BRIGHTNESS_MEDIUM = 2;
2011 public static final int SCREEN_BRIGHTNESS_LIGHT = 3;
2012 public static final int SCREEN_BRIGHTNESS_BRIGHT = 4;
Bookatzc8c44962017-05-11 12:12:54 -07002013
Dianne Hackborn617f8772009-03-31 15:04:46 -07002014 static final String[] SCREEN_BRIGHTNESS_NAMES = {
2015 "dark", "dim", "medium", "light", "bright"
2016 };
Bookatzc8c44962017-05-11 12:12:54 -07002017
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002018 static final String[] SCREEN_BRIGHTNESS_SHORT_NAMES = {
2019 "0", "1", "2", "3", "4"
2020 };
2021
Dianne Hackborn617f8772009-03-31 15:04:46 -07002022 public static final int NUM_SCREEN_BRIGHTNESS_BINS = 5;
Dianne Hackborn3251b902014-06-20 14:40:53 -07002023
Dianne Hackborn617f8772009-03-31 15:04:46 -07002024 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07002025 * Returns the time in microseconds that the screen has been on with
Dianne Hackborn617f8772009-03-31 15:04:46 -07002026 * the given brightness
Bookatzc8c44962017-05-11 12:12:54 -07002027 *
Dianne Hackborn617f8772009-03-31 15:04:46 -07002028 * {@hide}
2029 */
2030 public abstract long getScreenBrightnessTime(int brightnessBin,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002031 long elapsedRealtimeUs, int which);
Dianne Hackborn617f8772009-03-31 15:04:46 -07002032
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002033 /**
Kweku Adams87b19ec2017-10-09 12:40:03 -07002034 * Returns the {@link Timer} object that tracks the given screen brightness.
2035 *
2036 * {@hide}
2037 */
2038 public abstract Timer getScreenBrightnessTimer(int brightnessBin);
2039
2040 /**
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002041 * Returns the time in microseconds that power save mode has been enabled while the device was
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07002042 * running on battery.
2043 *
2044 * {@hide}
2045 */
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002046 public abstract long getPowerSaveModeEnabledTime(long elapsedRealtimeUs, int which);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07002047
2048 /**
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002049 * Returns the number of times that power save mode was enabled.
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07002050 *
2051 * {@hide}
2052 */
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002053 public abstract int getPowerSaveModeEnabledCount(int which);
2054
2055 /**
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002056 * Constant for device idle mode: not active.
2057 */
Bookatz8bdae8d2018-01-16 11:24:30 -08002058 public static final int DEVICE_IDLE_MODE_OFF = ServerProtoEnums.DEVICE_IDLE_MODE_OFF; // 0
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002059
2060 /**
2061 * Constant for device idle mode: active in lightweight mode.
2062 */
Bookatz8bdae8d2018-01-16 11:24:30 -08002063 public static final int DEVICE_IDLE_MODE_LIGHT = ServerProtoEnums.DEVICE_IDLE_MODE_LIGHT; // 1
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002064
2065 /**
2066 * Constant for device idle mode: active in full mode.
2067 */
Bookatz8bdae8d2018-01-16 11:24:30 -08002068 public static final int DEVICE_IDLE_MODE_DEEP = ServerProtoEnums.DEVICE_IDLE_MODE_DEEP; // 2
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002069
2070 /**
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002071 * Returns the time in microseconds that device has been in idle mode while
2072 * running on battery.
2073 *
2074 * {@hide}
2075 */
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002076 public abstract long getDeviceIdleModeTime(int mode, long elapsedRealtimeUs, int which);
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002077
2078 /**
2079 * Returns the number of times that the devie has gone in to idle mode.
2080 *
2081 * {@hide}
2082 */
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002083 public abstract int getDeviceIdleModeCount(int mode, int which);
2084
2085 /**
2086 * Return the longest duration we spent in a particular device idle mode (fully in the
2087 * mode, not in idle maintenance etc).
2088 */
2089 public abstract long getLongestDeviceIdleModeTime(int mode);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07002090
2091 /**
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002092 * Returns the time in microseconds that device has been in idling while on
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002093 * battery. This is broader than {@link #getDeviceIdleModeTime} -- it
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002094 * counts all of the time that we consider the device to be idle, whether or not
2095 * it is currently in the actual device idle mode.
2096 *
2097 * {@hide}
2098 */
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002099 public abstract long getDeviceIdlingTime(int mode, long elapsedRealtimeUs, int which);
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002100
2101 /**
Bookatz8c6571b2017-10-24 15:04:41 -07002102 * Returns the number of times that the device has started idling.
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002103 *
2104 * {@hide}
2105 */
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002106 public abstract int getDeviceIdlingCount(int mode, int which);
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002107
2108 /**
Dianne Hackborn1e01d162014-12-04 17:46:42 -08002109 * Returns the number of times that connectivity state changed.
2110 *
2111 * {@hide}
2112 */
2113 public abstract int getNumConnectivityChange(int which);
2114
Siddharth Ray78ccaf52017-12-23 16:16:21 -08002115
2116 /**
2117 * Returns the time in microseconds that the phone has been running with
2118 * the given GPS signal quality level
2119 *
2120 * {@hide}
2121 */
2122 public abstract long getGpsSignalQualityTime(int strengthBin,
2123 long elapsedRealtimeUs, int which);
2124
2125 /**
2126 * Returns the GPS battery drain in mA-ms
2127 *
2128 * {@hide}
2129 */
2130 public abstract long getGpsBatteryDrainMaMs();
2131
Dianne Hackborn1e01d162014-12-04 17:46:42 -08002132 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07002133 * 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 -08002134 * running on battery.
Bookatzc8c44962017-05-11 12:12:54 -07002135 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002136 * {@hide}
2137 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002138 public abstract long getPhoneOnTime(long elapsedRealtimeUs, int which);
Bookatzc8c44962017-05-11 12:12:54 -07002139
Dianne Hackborn627bba72009-03-24 22:32:56 -07002140 /**
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002141 * Returns the number of times a phone call was activated.
2142 *
2143 * {@hide}
2144 */
2145 public abstract int getPhoneOnCount(int which);
2146
2147 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07002148 * Returns the time in microseconds that the phone has been running with
Dianne Hackborn627bba72009-03-24 22:32:56 -07002149 * the given signal strength.
Bookatzc8c44962017-05-11 12:12:54 -07002150 *
Dianne Hackborn627bba72009-03-24 22:32:56 -07002151 * {@hide}
2152 */
2153 public abstract long getPhoneSignalStrengthTime(int strengthBin,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002154 long elapsedRealtimeUs, int which);
Dianne Hackborn627bba72009-03-24 22:32:56 -07002155
Dianne Hackborn617f8772009-03-31 15:04:46 -07002156 /**
Amith Yamasanif37447b2009-10-08 18:28:01 -07002157 * Returns the time in microseconds that the phone has been trying to
2158 * acquire a signal.
2159 *
2160 * {@hide}
2161 */
2162 public abstract long getPhoneSignalScanningTime(
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002163 long elapsedRealtimeUs, int which);
Amith Yamasanif37447b2009-10-08 18:28:01 -07002164
2165 /**
Kweku Adams87b19ec2017-10-09 12:40:03 -07002166 * Returns the {@link Timer} object that tracks how much the phone has been trying to
2167 * acquire a signal.
2168 *
2169 * {@hide}
2170 */
2171 public abstract Timer getPhoneSignalScanningTimer();
2172
2173 /**
Dianne Hackborn617f8772009-03-31 15:04:46 -07002174 * Returns the number of times the phone has entered the given signal strength.
Bookatzc8c44962017-05-11 12:12:54 -07002175 *
Dianne Hackborn617f8772009-03-31 15:04:46 -07002176 * {@hide}
2177 */
2178 public abstract int getPhoneSignalStrengthCount(int strengthBin, int which);
2179
Dianne Hackborne13c4c02014-02-11 17:18:35 -08002180 /**
Kweku Adams87b19ec2017-10-09 12:40:03 -07002181 * Return the {@link Timer} object used to track the given signal strength's duration and
2182 * counts.
2183 */
2184 protected abstract Timer getPhoneSignalStrengthTimer(int strengthBin);
2185
2186 /**
Dianne Hackborne13c4c02014-02-11 17:18:35 -08002187 * Returns the time in microseconds that the mobile network has been active
2188 * (in a high power state).
2189 *
2190 * {@hide}
2191 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002192 public abstract long getMobileRadioActiveTime(long elapsedRealtimeUs, int which);
Dianne Hackborne13c4c02014-02-11 17:18:35 -08002193
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002194 /**
2195 * Returns the number of times that the mobile network has transitioned to the
2196 * active state.
2197 *
2198 * {@hide}
2199 */
2200 public abstract int getMobileRadioActiveCount(int which);
2201
2202 /**
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002203 * Returns the time in microseconds that is the difference between the mobile radio
2204 * time we saw based on the elapsed timestamp when going down vs. the given time stamp
2205 * from the radio.
2206 *
2207 * {@hide}
2208 */
2209 public abstract long getMobileRadioActiveAdjustedTime(int which);
2210
2211 /**
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002212 * Returns the time in microseconds that the mobile network has been active
2213 * (in a high power state) but not being able to blame on an app.
2214 *
2215 * {@hide}
2216 */
2217 public abstract long getMobileRadioActiveUnknownTime(int which);
2218
2219 /**
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002220 * Return count of number of times radio was up that could not be blamed on apps.
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002221 *
2222 * {@hide}
2223 */
2224 public abstract int getMobileRadioActiveUnknownCount(int which);
Dianne Hackborne13c4c02014-02-11 17:18:35 -08002225
Dianne Hackborn627bba72009-03-24 22:32:56 -07002226 public static final int DATA_CONNECTION_NONE = 0;
2227 public static final int DATA_CONNECTION_GPRS = 1;
2228 public static final int DATA_CONNECTION_EDGE = 2;
2229 public static final int DATA_CONNECTION_UMTS = 3;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002230 public static final int DATA_CONNECTION_CDMA = 4;
2231 public static final int DATA_CONNECTION_EVDO_0 = 5;
2232 public static final int DATA_CONNECTION_EVDO_A = 6;
2233 public static final int DATA_CONNECTION_1xRTT = 7;
2234 public static final int DATA_CONNECTION_HSDPA = 8;
2235 public static final int DATA_CONNECTION_HSUPA = 9;
2236 public static final int DATA_CONNECTION_HSPA = 10;
2237 public static final int DATA_CONNECTION_IDEN = 11;
2238 public static final int DATA_CONNECTION_EVDO_B = 12;
Robert Greenwalt962a9902010-11-02 11:10:25 -07002239 public static final int DATA_CONNECTION_LTE = 13;
2240 public static final int DATA_CONNECTION_EHRPD = 14;
Patrick Tjinb71703c2013-11-06 09:27:03 -08002241 public static final int DATA_CONNECTION_HSPAP = 15;
2242 public static final int DATA_CONNECTION_OTHER = 16;
Robert Greenwalt962a9902010-11-02 11:10:25 -07002243
Dianne Hackborn627bba72009-03-24 22:32:56 -07002244 static final String[] DATA_CONNECTION_NAMES = {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002245 "none", "gprs", "edge", "umts", "cdma", "evdo_0", "evdo_A",
Robert Greenwalt962a9902010-11-02 11:10:25 -07002246 "1xrtt", "hsdpa", "hsupa", "hspa", "iden", "evdo_b", "lte",
Patrick Tjinb71703c2013-11-06 09:27:03 -08002247 "ehrpd", "hspap", "other"
Dianne Hackborn627bba72009-03-24 22:32:56 -07002248 };
Bookatzc8c44962017-05-11 12:12:54 -07002249
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002250 public static final int NUM_DATA_CONNECTION_TYPES = DATA_CONNECTION_OTHER+1;
Bookatzc8c44962017-05-11 12:12:54 -07002251
Dianne Hackborn627bba72009-03-24 22:32:56 -07002252 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07002253 * Returns the time in microseconds that the phone has been running with
Dianne Hackborn627bba72009-03-24 22:32:56 -07002254 * the given data connection.
Bookatzc8c44962017-05-11 12:12:54 -07002255 *
Dianne Hackborn627bba72009-03-24 22:32:56 -07002256 * {@hide}
2257 */
2258 public abstract long getPhoneDataConnectionTime(int dataType,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002259 long elapsedRealtimeUs, int which);
Dianne Hackborn627bba72009-03-24 22:32:56 -07002260
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002261 /**
Dianne Hackborn617f8772009-03-31 15:04:46 -07002262 * Returns the number of times the phone has entered the given data
2263 * connection type.
Bookatzc8c44962017-05-11 12:12:54 -07002264 *
Dianne Hackborn617f8772009-03-31 15:04:46 -07002265 * {@hide}
2266 */
2267 public abstract int getPhoneDataConnectionCount(int dataType, int which);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002268
Kweku Adams87b19ec2017-10-09 12:40:03 -07002269 /**
2270 * Returns the {@link Timer} object that tracks the phone's data connection type stats.
2271 */
2272 public abstract Timer getPhoneDataConnectionTimer(int dataType);
2273
Dianne Hackborn3251b902014-06-20 14:40:53 -07002274 public static final int WIFI_SUPPL_STATE_INVALID = 0;
2275 public static final int WIFI_SUPPL_STATE_DISCONNECTED = 1;
2276 public static final int WIFI_SUPPL_STATE_INTERFACE_DISABLED = 2;
2277 public static final int WIFI_SUPPL_STATE_INACTIVE = 3;
2278 public static final int WIFI_SUPPL_STATE_SCANNING = 4;
2279 public static final int WIFI_SUPPL_STATE_AUTHENTICATING = 5;
2280 public static final int WIFI_SUPPL_STATE_ASSOCIATING = 6;
2281 public static final int WIFI_SUPPL_STATE_ASSOCIATED = 7;
2282 public static final int WIFI_SUPPL_STATE_FOUR_WAY_HANDSHAKE = 8;
2283 public static final int WIFI_SUPPL_STATE_GROUP_HANDSHAKE = 9;
2284 public static final int WIFI_SUPPL_STATE_COMPLETED = 10;
2285 public static final int WIFI_SUPPL_STATE_DORMANT = 11;
2286 public static final int WIFI_SUPPL_STATE_UNINITIALIZED = 12;
2287
2288 public static final int NUM_WIFI_SUPPL_STATES = WIFI_SUPPL_STATE_UNINITIALIZED+1;
2289
2290 static final String[] WIFI_SUPPL_STATE_NAMES = {
2291 "invalid", "disconn", "disabled", "inactive", "scanning",
2292 "authenticating", "associating", "associated", "4-way-handshake",
2293 "group-handshake", "completed", "dormant", "uninit"
2294 };
2295
2296 static final String[] WIFI_SUPPL_STATE_SHORT_NAMES = {
2297 "inv", "dsc", "dis", "inact", "scan",
2298 "auth", "ascing", "asced", "4-way",
2299 "group", "compl", "dorm", "uninit"
2300 };
2301
Mike Mac2f518a2017-09-19 16:06:03 -07002302 public static final BitDescription[] HISTORY_STATE_DESCRIPTIONS = new BitDescription[] {
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002303 new BitDescription(HistoryItem.STATE_CPU_RUNNING_FLAG, "running", "r"),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08002304 new BitDescription(HistoryItem.STATE_WAKE_LOCK_FLAG, "wake_lock", "w"),
2305 new BitDescription(HistoryItem.STATE_SENSOR_ON_FLAG, "sensor", "s"),
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002306 new BitDescription(HistoryItem.STATE_GPS_ON_FLAG, "gps", "g"),
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002307 new BitDescription(HistoryItem.STATE_WIFI_FULL_LOCK_FLAG, "wifi_full_lock", "Wl"),
2308 new BitDescription(HistoryItem.STATE_WIFI_SCAN_FLAG, "wifi_scan", "Ws"),
2309 new BitDescription(HistoryItem.STATE_WIFI_MULTICAST_ON_FLAG, "wifi_multicast", "Wm"),
Dianne Hackborn0c820db2015-04-14 17:47:34 -07002310 new BitDescription(HistoryItem.STATE_WIFI_RADIO_ACTIVE_FLAG, "wifi_radio", "Wr"),
Dianne Hackborne13c4c02014-02-11 17:18:35 -08002311 new BitDescription(HistoryItem.STATE_MOBILE_RADIO_ACTIVE_FLAG, "mobile_radio", "Pr"),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08002312 new BitDescription(HistoryItem.STATE_PHONE_SCANNING_FLAG, "phone_scanning", "Psc"),
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002313 new BitDescription(HistoryItem.STATE_AUDIO_ON_FLAG, "audio", "a"),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08002314 new BitDescription(HistoryItem.STATE_SCREEN_ON_FLAG, "screen", "S"),
2315 new BitDescription(HistoryItem.STATE_BATTERY_PLUGGED_FLAG, "plugged", "BP"),
Mike Mac2f518a2017-09-19 16:06:03 -07002316 new BitDescription(HistoryItem.STATE_SCREEN_DOZE_FLAG, "screen_doze", "Sd"),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08002317 new BitDescription(HistoryItem.STATE_DATA_CONNECTION_MASK,
2318 HistoryItem.STATE_DATA_CONNECTION_SHIFT, "data_conn", "Pcn",
2319 DATA_CONNECTION_NAMES, DATA_CONNECTION_NAMES),
2320 new BitDescription(HistoryItem.STATE_PHONE_STATE_MASK,
2321 HistoryItem.STATE_PHONE_STATE_SHIFT, "phone_state", "Pst",
2322 new String[] {"in", "out", "emergency", "off"},
2323 new String[] {"in", "out", "em", "off"}),
Dianne Hackborn3251b902014-06-20 14:40:53 -07002324 new BitDescription(HistoryItem.STATE_PHONE_SIGNAL_STRENGTH_MASK,
2325 HistoryItem.STATE_PHONE_SIGNAL_STRENGTH_SHIFT, "phone_signal_strength", "Pss",
2326 SignalStrength.SIGNAL_STRENGTH_NAMES,
2327 new String[] { "0", "1", "2", "3", "4" }),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08002328 new BitDescription(HistoryItem.STATE_BRIGHTNESS_MASK,
2329 HistoryItem.STATE_BRIGHTNESS_SHIFT, "brightness", "Sb",
2330 SCREEN_BRIGHTNESS_NAMES, SCREEN_BRIGHTNESS_SHORT_NAMES),
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002331 };
Dianne Hackborn617f8772009-03-31 15:04:46 -07002332
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002333 public static final BitDescription[] HISTORY_STATE2_DESCRIPTIONS
2334 = new BitDescription[] {
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002335 new BitDescription(HistoryItem.STATE2_POWER_SAVE_FLAG, "power_save", "ps"),
Dianne Hackborn3251b902014-06-20 14:40:53 -07002336 new BitDescription(HistoryItem.STATE2_VIDEO_ON_FLAG, "video", "v"),
Dianne Hackborn0c820db2015-04-14 17:47:34 -07002337 new BitDescription(HistoryItem.STATE2_WIFI_RUNNING_FLAG, "wifi_running", "Ww"),
Dianne Hackborn3251b902014-06-20 14:40:53 -07002338 new BitDescription(HistoryItem.STATE2_WIFI_ON_FLAG, "wifi", "W"),
Dianne Hackbornabc7c492014-06-30 16:57:46 -07002339 new BitDescription(HistoryItem.STATE2_FLASHLIGHT_FLAG, "flashlight", "fl"),
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002340 new BitDescription(HistoryItem.STATE2_DEVICE_IDLE_MASK,
2341 HistoryItem.STATE2_DEVICE_IDLE_SHIFT, "device_idle", "di",
2342 new String[] { "off", "light", "full", "???" },
2343 new String[] { "off", "light", "full", "???" }),
Dianne Hackborn0c820db2015-04-14 17:47:34 -07002344 new BitDescription(HistoryItem.STATE2_CHARGING_FLAG, "charging", "ch"),
2345 new BitDescription(HistoryItem.STATE2_PHONE_IN_CALL_FLAG, "phone_in_call", "Pcl"),
2346 new BitDescription(HistoryItem.STATE2_BLUETOOTH_ON_FLAG, "bluetooth", "b"),
Dianne Hackborn3251b902014-06-20 14:40:53 -07002347 new BitDescription(HistoryItem.STATE2_WIFI_SIGNAL_STRENGTH_MASK,
2348 HistoryItem.STATE2_WIFI_SIGNAL_STRENGTH_SHIFT, "wifi_signal_strength", "Wss",
2349 new String[] { "0", "1", "2", "3", "4" },
2350 new String[] { "0", "1", "2", "3", "4" }),
2351 new BitDescription(HistoryItem.STATE2_WIFI_SUPPL_STATE_MASK,
2352 HistoryItem.STATE2_WIFI_SUPPL_STATE_SHIFT, "wifi_suppl", "Wsp",
2353 WIFI_SUPPL_STATE_NAMES, WIFI_SUPPL_STATE_SHORT_NAMES),
Ruben Brunk6d2c3632015-05-26 17:32:16 -07002354 new BitDescription(HistoryItem.STATE2_CAMERA_FLAG, "camera", "ca"),
Adam Lesinski9f55cc72016-01-27 20:42:14 -08002355 new BitDescription(HistoryItem.STATE2_BLUETOOTH_SCAN_FLAG, "ble_scan", "bles"),
Siddharth Ray78ccaf52017-12-23 16:16:21 -08002356 new BitDescription(HistoryItem.STATE2_GPS_SIGNAL_QUALITY_MASK,
2357 HistoryItem.STATE2_GPS_SIGNAL_QUALITY_SHIFT, "gps_signal_quality", "Gss",
2358 new String[] { "poor", "good"}, new String[] { "poor", "good"}),
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002359 };
2360
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08002361 public static final String[] HISTORY_EVENT_NAMES = new String[] {
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002362 "null", "proc", "fg", "top", "sync", "wake_lock_in", "job", "user", "userfg", "conn",
Kweku Adams134c59b2017-03-08 16:48:01 -08002363 "active", "pkginst", "pkgunin", "alarm", "stats", "pkginactive", "pkgactive",
2364 "tmpwhitelist", "screenwake", "wakeupap", "longwake", "est_capacity"
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08002365 };
2366
2367 public static final String[] HISTORY_EVENT_CHECKIN_NAMES = new String[] {
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002368 "Enl", "Epr", "Efg", "Etp", "Esy", "Ewl", "Ejb", "Eur", "Euf", "Ecn",
Dianne Hackborn280a64e2015-07-13 14:48:08 -07002369 "Eac", "Epi", "Epu", "Eal", "Est", "Eai", "Eaa", "Etw",
Adam Lesinski041d9172016-12-12 12:03:56 -08002370 "Esw", "Ewa", "Elw", "Eec"
2371 };
2372
2373 @FunctionalInterface
2374 public interface IntToString {
2375 String applyAsString(int val);
2376 }
2377
2378 private static final IntToString sUidToString = UserHandle::formatUid;
2379 private static final IntToString sIntToString = Integer::toString;
2380
2381 public static final IntToString[] HISTORY_EVENT_INT_FORMATTERS = new IntToString[] {
2382 sUidToString, sUidToString, sUidToString, sUidToString, sUidToString, sUidToString,
2383 sUidToString, sUidToString, sUidToString, sUidToString, sUidToString, sUidToString,
2384 sUidToString, sUidToString, sUidToString, sUidToString, sUidToString, sUidToString,
2385 sUidToString, sUidToString, sUidToString, sIntToString
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08002386 };
2387
Dianne Hackborn617f8772009-03-31 15:04:46 -07002388 /**
Ahmed ElArabawyf88571f2017-11-28 12:18:10 -08002389 * Returns total time for WiFi Multicast Wakelock timer.
2390 * Note that this may be different from the sum of per uid timer values.
2391 *
2392 * {@hide}
2393 */
2394 public abstract long getWifiMulticastWakelockTime(long elapsedRealtimeUs, int which);
2395
2396 /**
2397 * Returns total time for WiFi Multicast Wakelock timer
2398 * Note that this may be different from the sum of per uid timer values.
2399 *
2400 * {@hide}
2401 */
2402 public abstract int getWifiMulticastWakelockCount(int which);
2403
2404 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07002405 * Returns the time in microseconds that wifi has been on while the device was
The Android Open Source Project10592532009-03-18 17:39:46 -07002406 * running on battery.
Bookatzc8c44962017-05-11 12:12:54 -07002407 *
The Android Open Source Project10592532009-03-18 17:39:46 -07002408 * {@hide}
2409 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002410 public abstract long getWifiOnTime(long elapsedRealtimeUs, int which);
Eric Shienbroodd4c5f892009-03-24 18:13:20 -07002411
2412 /**
Siddharth Rayb50a6842017-12-14 15:15:28 -08002413 * Returns the time in microseconds that wifi has been active while the device was
2414 * running on battery.
2415 *
2416 * {@hide}
2417 */
2418 public abstract long getWifiActiveTime(long elapsedRealtimeUs, int which);
2419
2420 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07002421 * Returns the time in microseconds that wifi has been on and the driver has
Eric Shienbroodd4c5f892009-03-24 18:13:20 -07002422 * been in the running state while the device was running on battery.
2423 *
2424 * {@hide}
2425 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002426 public abstract long getGlobalWifiRunningTime(long elapsedRealtimeUs, int which);
Eric Shienbroodd4c5f892009-03-24 18:13:20 -07002427
Dianne Hackbornca1bf212014-02-14 14:18:36 -08002428 public static final int WIFI_STATE_OFF = 0;
2429 public static final int WIFI_STATE_OFF_SCANNING = 1;
2430 public static final int WIFI_STATE_ON_NO_NETWORKS = 2;
2431 public static final int WIFI_STATE_ON_DISCONNECTED = 3;
2432 public static final int WIFI_STATE_ON_CONNECTED_STA = 4;
2433 public static final int WIFI_STATE_ON_CONNECTED_P2P = 5;
2434 public static final int WIFI_STATE_ON_CONNECTED_STA_P2P = 6;
2435 public static final int WIFI_STATE_SOFT_AP = 7;
2436
2437 static final String[] WIFI_STATE_NAMES = {
2438 "off", "scanning", "no_net", "disconn",
2439 "sta", "p2p", "sta_p2p", "soft_ap"
2440 };
2441
2442 public static final int NUM_WIFI_STATES = WIFI_STATE_SOFT_AP+1;
2443
2444 /**
2445 * Returns the time in microseconds that WiFi has been running in the given state.
2446 *
2447 * {@hide}
2448 */
2449 public abstract long getWifiStateTime(int wifiState,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002450 long elapsedRealtimeUs, int which);
Dianne Hackbornca1bf212014-02-14 14:18:36 -08002451
2452 /**
2453 * Returns the number of times that WiFi has entered the given state.
2454 *
2455 * {@hide}
2456 */
2457 public abstract int getWifiStateCount(int wifiState, int which);
2458
The Android Open Source Project10592532009-03-18 17:39:46 -07002459 /**
Kweku Adams87b19ec2017-10-09 12:40:03 -07002460 * Returns the {@link Timer} object that tracks the given WiFi state.
2461 *
2462 * {@hide}
2463 */
2464 public abstract Timer getWifiStateTimer(int wifiState);
2465
2466 /**
Dianne Hackborn3251b902014-06-20 14:40:53 -07002467 * Returns the time in microseconds that the wifi supplicant has been
2468 * in a given state.
2469 *
2470 * {@hide}
2471 */
2472 public abstract long getWifiSupplStateTime(int state, long elapsedRealtimeUs, int which);
2473
2474 /**
2475 * Returns the number of times that the wifi supplicant has transitioned
2476 * to a given state.
2477 *
2478 * {@hide}
2479 */
2480 public abstract int getWifiSupplStateCount(int state, int which);
2481
Kweku Adams87b19ec2017-10-09 12:40:03 -07002482 /**
2483 * Returns the {@link Timer} object that tracks the given wifi supplicant state.
2484 *
2485 * {@hide}
2486 */
2487 public abstract Timer getWifiSupplStateTimer(int state);
2488
Dianne Hackborn3251b902014-06-20 14:40:53 -07002489 public static final int NUM_WIFI_SIGNAL_STRENGTH_BINS = 5;
2490
2491 /**
2492 * Returns the time in microseconds that WIFI has been running with
2493 * the given signal strength.
2494 *
2495 * {@hide}
2496 */
2497 public abstract long getWifiSignalStrengthTime(int strengthBin,
2498 long elapsedRealtimeUs, int which);
2499
2500 /**
2501 * Returns the number of times WIFI has entered the given signal strength.
2502 *
2503 * {@hide}
2504 */
2505 public abstract int getWifiSignalStrengthCount(int strengthBin, int which);
2506
2507 /**
Kweku Adams87b19ec2017-10-09 12:40:03 -07002508 * Returns the {@link Timer} object that tracks the given WIFI signal strength.
2509 *
2510 * {@hide}
2511 */
2512 public abstract Timer getWifiSignalStrengthTimer(int strengthBin);
2513
2514 /**
Dianne Hackbornabc7c492014-06-30 16:57:46 -07002515 * Returns the time in microseconds that the flashlight has been on while the device was
2516 * running on battery.
2517 *
2518 * {@hide}
2519 */
2520 public abstract long getFlashlightOnTime(long elapsedRealtimeUs, int which);
2521
2522 /**
2523 * Returns the number of times that the flashlight has been turned on while the device was
2524 * running on battery.
2525 *
2526 * {@hide}
2527 */
2528 public abstract long getFlashlightOnCount(int which);
2529
Ruben Brunk5b1308f2015-06-03 18:49:27 -07002530 /**
2531 * Returns the time in microseconds that the camera has been on while the device was
2532 * running on battery.
2533 *
2534 * {@hide}
2535 */
2536 public abstract long getCameraOnTime(long elapsedRealtimeUs, int which);
2537
Adam Lesinski9f55cc72016-01-27 20:42:14 -08002538 /**
2539 * Returns the time in microseconds that bluetooth scans were running while the device was
2540 * on battery.
2541 *
2542 * {@hide}
2543 */
2544 public abstract long getBluetoothScanTime(long elapsedRealtimeUs, int which);
Ruben Brunk5b1308f2015-06-03 18:49:27 -07002545
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002546 public static final int NETWORK_MOBILE_RX_DATA = 0;
2547 public static final int NETWORK_MOBILE_TX_DATA = 1;
2548 public static final int NETWORK_WIFI_RX_DATA = 2;
2549 public static final int NETWORK_WIFI_TX_DATA = 3;
Adam Lesinski50e47602015-12-04 17:04:54 -08002550 public static final int NETWORK_BT_RX_DATA = 4;
2551 public static final int NETWORK_BT_TX_DATA = 5;
Amith Yamasani59fe8412017-03-03 16:28:52 -08002552 public static final int NETWORK_MOBILE_BG_RX_DATA = 6;
2553 public static final int NETWORK_MOBILE_BG_TX_DATA = 7;
2554 public static final int NETWORK_WIFI_BG_RX_DATA = 8;
2555 public static final int NETWORK_WIFI_BG_TX_DATA = 9;
2556 public static final int NUM_NETWORK_ACTIVITY_TYPES = NETWORK_WIFI_BG_TX_DATA + 1;
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07002557
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002558 public abstract long getNetworkActivityBytes(int type, int which);
2559 public abstract long getNetworkActivityPackets(int type, int which);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07002560
Adam Lesinskie08af192015-03-25 16:42:59 -07002561 /**
Adam Lesinski17390762015-04-10 13:17:47 -07002562 * Returns true if the BatteryStats object has detailed WiFi power reports.
Adam Lesinski21f76aa2016-01-25 12:27:06 -08002563 * When true, calling {@link #getWifiControllerActivity()} will yield the
Adam Lesinski17390762015-04-10 13:17:47 -07002564 * actual power data.
2565 */
2566 public abstract boolean hasWifiActivityReporting();
2567
2568 /**
Adam Lesinski21f76aa2016-01-25 12:27:06 -08002569 * Returns a {@link ControllerActivityCounter} which is an aggregate of the times spent
2570 * in various radio controller states, such as transmit, receive, and idle.
2571 * @return non-null {@link ControllerActivityCounter}
Adam Lesinskie08af192015-03-25 16:42:59 -07002572 */
Adam Lesinski21f76aa2016-01-25 12:27:06 -08002573 public abstract ControllerActivityCounter getWifiControllerActivity();
2574
2575 /**
2576 * Returns true if the BatteryStats object has detailed bluetooth power reports.
2577 * When true, calling {@link #getBluetoothControllerActivity()} will yield the
2578 * actual power data.
2579 */
2580 public abstract boolean hasBluetoothActivityReporting();
2581
2582 /**
2583 * Returns a {@link ControllerActivityCounter} which is an aggregate of the times spent
2584 * in various radio controller states, such as transmit, receive, and idle.
2585 * @return non-null {@link ControllerActivityCounter}
2586 */
2587 public abstract ControllerActivityCounter getBluetoothControllerActivity();
2588
2589 /**
2590 * Returns true if the BatteryStats object has detailed modem power reports.
2591 * When true, calling {@link #getModemControllerActivity()} will yield the
2592 * actual power data.
2593 */
2594 public abstract boolean hasModemActivityReporting();
2595
2596 /**
2597 * Returns a {@link ControllerActivityCounter} which is an aggregate of the times spent
2598 * in various radio controller states, such as transmit, receive, and idle.
2599 * @return non-null {@link ControllerActivityCounter}
2600 */
2601 public abstract ControllerActivityCounter getModemControllerActivity();
Adam Lesinski33dac552015-03-09 15:24:48 -07002602
The Android Open Source Project10592532009-03-18 17:39:46 -07002603 /**
Dianne Hackborn5f4a5f92014-01-24 16:59:34 -08002604 * Return the wall clock time when battery stats data collection started.
2605 */
2606 public abstract long getStartClockTime();
2607
2608 /**
Dianne Hackborncd0e3352014-08-07 17:08:09 -07002609 * Return platform version tag that we were running in when the battery stats started.
2610 */
2611 public abstract String getStartPlatformVersion();
2612
2613 /**
2614 * Return platform version tag that we were running in when the battery stats ended.
2615 */
2616 public abstract String getEndPlatformVersion();
2617
2618 /**
2619 * Return the internal version code of the parcelled format.
2620 */
2621 public abstract int getParcelVersion();
2622
2623 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002624 * Return whether we are currently running on battery.
2625 */
2626 public abstract boolean getIsOnBattery();
Bookatzc8c44962017-05-11 12:12:54 -07002627
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002628 /**
2629 * Returns a SparseArray containing the statistics for each uid.
2630 */
2631 public abstract SparseArray<? extends Uid> getUidStats();
2632
2633 /**
2634 * Returns the current battery uptime in microseconds.
2635 *
2636 * @param curTime the amount of elapsed realtime in microseconds.
2637 */
2638 public abstract long getBatteryUptime(long curTime);
2639
2640 /**
2641 * Returns the current battery realtime in microseconds.
2642 *
2643 * @param curTime the amount of elapsed realtime in microseconds.
2644 */
2645 public abstract long getBatteryRealtime(long curTime);
Bookatzc8c44962017-05-11 12:12:54 -07002646
The Android Open Source Project10592532009-03-18 17:39:46 -07002647 /**
Evan Millar633a1742009-04-02 16:36:33 -07002648 * Returns the battery percentage level at the last time the device was unplugged from power, or
Bookatzc8c44962017-05-11 12:12:54 -07002649 * the last time it booted on battery power.
The Android Open Source Project10592532009-03-18 17:39:46 -07002650 */
Evan Millar633a1742009-04-02 16:36:33 -07002651 public abstract int getDischargeStartLevel();
Bookatzc8c44962017-05-11 12:12:54 -07002652
The Android Open Source Project10592532009-03-18 17:39:46 -07002653 /**
Evan Millar633a1742009-04-02 16:36:33 -07002654 * Returns the current battery percentage level if we are in a discharge cycle, otherwise
2655 * returns the level at the last plug event.
The Android Open Source Project10592532009-03-18 17:39:46 -07002656 */
Evan Millar633a1742009-04-02 16:36:33 -07002657 public abstract int getDischargeCurrentLevel();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002658
2659 /**
Dianne Hackborn3bee5af82010-07-23 00:22:04 -07002660 * Get the amount the battery has discharged since the stats were
2661 * last reset after charging, as a lower-end approximation.
2662 */
2663 public abstract int getLowDischargeAmountSinceCharge();
2664
2665 /**
2666 * Get the amount the battery has discharged since the stats were
2667 * last reset after charging, as an upper-end approximation.
2668 */
2669 public abstract int getHighDischargeAmountSinceCharge();
2670
2671 /**
Dianne Hackborn40c87252014-03-19 16:55:40 -07002672 * Retrieve the discharge amount over the selected discharge period <var>which</var>.
2673 */
2674 public abstract int getDischargeAmount(int which);
2675
2676 /**
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08002677 * Get the amount the battery has discharged while the screen was on,
2678 * since the last time power was unplugged.
2679 */
2680 public abstract int getDischargeAmountScreenOn();
2681
2682 /**
2683 * Get the amount the battery has discharged while the screen was on,
2684 * since the last time the device was charged.
2685 */
2686 public abstract int getDischargeAmountScreenOnSinceCharge();
2687
2688 /**
2689 * Get the amount the battery has discharged while the screen was off,
2690 * since the last time power was unplugged.
2691 */
2692 public abstract int getDischargeAmountScreenOff();
2693
2694 /**
2695 * Get the amount the battery has discharged while the screen was off,
2696 * since the last time the device was charged.
2697 */
2698 public abstract int getDischargeAmountScreenOffSinceCharge();
2699
2700 /**
Kweku Adams87b19ec2017-10-09 12:40:03 -07002701 * Get the amount the battery has discharged while the screen was dozing,
Mike Mac2f518a2017-09-19 16:06:03 -07002702 * since the last time power was unplugged.
2703 */
2704 public abstract int getDischargeAmountScreenDoze();
2705
2706 /**
Kweku Adams87b19ec2017-10-09 12:40:03 -07002707 * Get the amount the battery has discharged while the screen was dozing,
Mike Mac2f518a2017-09-19 16:06:03 -07002708 * since the last time the device was charged.
2709 */
2710 public abstract int getDischargeAmountScreenDozeSinceCharge();
2711
2712 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002713 * Returns the total, last, or current battery uptime in microseconds.
2714 *
2715 * @param curTime the elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002716 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002717 */
2718 public abstract long computeBatteryUptime(long curTime, int which);
2719
2720 /**
2721 * Returns the total, last, or current battery realtime in microseconds.
2722 *
2723 * @param curTime the current elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002724 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002725 */
2726 public abstract long computeBatteryRealtime(long curTime, int which);
2727
2728 /**
Mike Mac2f518a2017-09-19 16:06:03 -07002729 * Returns the total, last, or current battery screen off/doze uptime in microseconds.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002730 *
2731 * @param curTime the elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002732 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002733 */
2734 public abstract long computeBatteryScreenOffUptime(long curTime, int which);
2735
2736 /**
Mike Mac2f518a2017-09-19 16:06:03 -07002737 * Returns the total, last, or current battery screen off/doze realtime in microseconds.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002738 *
2739 * @param curTime the current elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002740 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002741 */
2742 public abstract long computeBatteryScreenOffRealtime(long curTime, int which);
2743
2744 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002745 * Returns the total, last, or current uptime in microseconds.
2746 *
2747 * @param curTime the current elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002748 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002749 */
2750 public abstract long computeUptime(long curTime, int which);
2751
2752 /**
2753 * Returns the total, last, or current realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002754 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002755 * @param curTime the current elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002756 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002757 */
2758 public abstract long computeRealtime(long curTime, int which);
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002759
2760 /**
2761 * Compute an approximation for how much run time (in microseconds) is remaining on
2762 * the battery. Returns -1 if no time can be computed: either there is not
2763 * enough current data to make a decision, or the battery is currently
2764 * charging.
2765 *
2766 * @param curTime The current elepsed realtime in microseconds.
2767 */
2768 public abstract long computeBatteryTimeRemaining(long curTime);
2769
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07002770 // The part of a step duration that is the actual time.
2771 public static final long STEP_LEVEL_TIME_MASK = 0x000000ffffffffffL;
2772
2773 // Bits in a step duration that are the new battery level we are at.
2774 public static final long STEP_LEVEL_LEVEL_MASK = 0x0000ff0000000000L;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002775 public static final int STEP_LEVEL_LEVEL_SHIFT = 40;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07002776
2777 // Bits in a step duration that are the initial mode we were in at that step.
2778 public static final long STEP_LEVEL_INITIAL_MODE_MASK = 0x00ff000000000000L;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002779 public static final int STEP_LEVEL_INITIAL_MODE_SHIFT = 48;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07002780
2781 // Bits in a step duration that indicate which modes changed during that step.
2782 public static final long STEP_LEVEL_MODIFIED_MODE_MASK = 0xff00000000000000L;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002783 public static final int STEP_LEVEL_MODIFIED_MODE_SHIFT = 56;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07002784
2785 // Step duration mode: the screen is on, off, dozed, etc; value is Display.STATE_* - 1.
2786 public static final int STEP_LEVEL_MODE_SCREEN_STATE = 0x03;
2787
Santos Cordone94f0502017-02-24 12:31:20 -08002788 // The largest value for screen state that is tracked in battery states. Any values above
2789 // this should be mapped back to one of the tracked values before being tracked here.
2790 public static final int MAX_TRACKED_SCREEN_STATE = Display.STATE_DOZE_SUSPEND;
2791
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07002792 // Step duration mode: power save is on.
2793 public static final int STEP_LEVEL_MODE_POWER_SAVE = 0x04;
2794
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002795 // Step duration mode: device is currently in idle mode.
2796 public static final int STEP_LEVEL_MODE_DEVICE_IDLE = 0x08;
2797
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002798 public static final int[] STEP_LEVEL_MODES_OF_INTEREST = new int[] {
2799 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE,
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002800 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE|STEP_LEVEL_MODE_DEVICE_IDLE,
2801 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_DEVICE_IDLE,
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002802 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE,
2803 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE,
2804 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE,
2805 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE,
2806 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE,
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002807 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE|STEP_LEVEL_MODE_DEVICE_IDLE,
2808 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_DEVICE_IDLE,
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002809 };
2810 public static final int[] STEP_LEVEL_MODE_VALUES = new int[] {
2811 (Display.STATE_OFF-1),
2812 (Display.STATE_OFF-1)|STEP_LEVEL_MODE_POWER_SAVE,
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002813 (Display.STATE_OFF-1)|STEP_LEVEL_MODE_DEVICE_IDLE,
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002814 (Display.STATE_ON-1),
2815 (Display.STATE_ON-1)|STEP_LEVEL_MODE_POWER_SAVE,
2816 (Display.STATE_DOZE-1),
2817 (Display.STATE_DOZE-1)|STEP_LEVEL_MODE_POWER_SAVE,
2818 (Display.STATE_DOZE_SUSPEND-1),
2819 (Display.STATE_DOZE_SUSPEND-1)|STEP_LEVEL_MODE_POWER_SAVE,
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002820 (Display.STATE_DOZE_SUSPEND-1)|STEP_LEVEL_MODE_DEVICE_IDLE,
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002821 };
2822 public static final String[] STEP_LEVEL_MODE_LABELS = new String[] {
2823 "screen off",
2824 "screen off power save",
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002825 "screen off device idle",
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002826 "screen on",
2827 "screen on power save",
2828 "screen doze",
2829 "screen doze power save",
2830 "screen doze-suspend",
2831 "screen doze-suspend power save",
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002832 "screen doze-suspend device idle",
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002833 };
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002834
2835 /**
Mike Mac2f518a2017-09-19 16:06:03 -07002836 * Return the amount of battery discharge while the screen was off, measured in
Adam Lesinski3ee3f632016-06-08 13:55:55 -07002837 * micro-Ampere-hours. This will be non-zero only if the device's battery has
2838 * a coulomb counter.
2839 */
Kweku Adams87b19ec2017-10-09 12:40:03 -07002840 public abstract long getUahDischargeScreenOff(int which);
Mike Mac2f518a2017-09-19 16:06:03 -07002841
2842 /**
2843 * Return the amount of battery discharge while the screen was in doze mode, measured in
2844 * micro-Ampere-hours. This will be non-zero only if the device's battery has
2845 * a coulomb counter.
2846 */
Kweku Adams87b19ec2017-10-09 12:40:03 -07002847 public abstract long getUahDischargeScreenDoze(int which);
Mike Mac2f518a2017-09-19 16:06:03 -07002848
2849 /**
2850 * Return the amount of battery discharge measured in micro-Ampere-hours. This will be
2851 * non-zero only if the device's battery has a coulomb counter.
2852 */
Kweku Adams87b19ec2017-10-09 12:40:03 -07002853 public abstract long getUahDischarge(int which);
Adam Lesinski3ee3f632016-06-08 13:55:55 -07002854
2855 /**
Mike Ma15313c92017-11-15 17:58:21 -08002856 * @return the amount of battery discharge while the device is in light idle mode, measured in
2857 * micro-Ampere-hours.
2858 */
2859 public abstract long getUahDischargeLightDoze(int which);
2860
2861 /**
2862 * @return the amount of battery discharge while the device is in deep idle mode, measured in
2863 * micro-Ampere-hours.
2864 */
2865 public abstract long getUahDischargeDeepDoze(int which);
2866
2867 /**
Adam Lesinskif9b20a92016-06-17 17:30:01 -07002868 * Returns the estimated real battery capacity, which may be less than the capacity
2869 * declared by the PowerProfile.
2870 * @return The estimated battery capacity in mAh.
2871 */
2872 public abstract int getEstimatedBatteryCapacity();
2873
2874 /**
Jocelyn Dangc627d102017-04-14 13:15:14 -07002875 * @return The minimum learned battery capacity in uAh.
2876 */
2877 public abstract int getMinLearnedBatteryCapacity();
2878
2879 /**
2880 * @return The maximum learned battery capacity in uAh.
2881 */
2882 public abstract int getMaxLearnedBatteryCapacity() ;
2883
2884 /**
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002885 * Return the array of discharge step durations.
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002886 */
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002887 public abstract LevelStepTracker getDischargeLevelStepTracker();
2888
2889 /**
2890 * Return the array of daily discharge step durations.
2891 */
2892 public abstract LevelStepTracker getDailyDischargeLevelStepTracker();
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002893
2894 /**
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002895 * Compute an approximation for how much time (in microseconds) remains until the battery
2896 * is fully charged. Returns -1 if no time can be computed: either there is not
2897 * enough current data to make a decision, or the battery is currently
2898 * discharging.
2899 *
2900 * @param curTime The current elepsed realtime in microseconds.
2901 */
2902 public abstract long computeChargeTimeRemaining(long curTime);
2903
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002904 /**
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002905 * Return the array of charge step durations.
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002906 */
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002907 public abstract LevelStepTracker getChargeLevelStepTracker();
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002908
2909 /**
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002910 * Return the array of daily charge step durations.
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002911 */
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002912 public abstract LevelStepTracker getDailyChargeLevelStepTracker();
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002913
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002914 public abstract ArrayList<PackageChange> getDailyPackageChanges();
2915
Dianne Hackbornc3940bc2014-09-05 15:50:25 -07002916 public abstract Map<String, ? extends Timer> getWakeupReasonStats();
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002917
Evan Millarc64edde2009-04-18 12:26:32 -07002918 public abstract Map<String, ? extends Timer> getKernelWakelockStats();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002919
Bookatz50df7112017-08-04 14:53:26 -07002920 /**
2921 * Returns Timers tracking the total time of each Resource Power Manager state and voter.
2922 */
2923 public abstract Map<String, ? extends Timer> getRpmStats();
2924 /**
2925 * Returns Timers tracking the screen-off time of each Resource Power Manager state and voter.
2926 */
2927 public abstract Map<String, ? extends Timer> getScreenOffRpmStats();
2928
2929
James Carr2dd7e5e2016-07-20 18:48:39 -07002930 public abstract LongSparseArray<? extends Timer> getKernelMemoryStats();
2931
Dianne Hackborna7c837f2014-01-15 16:20:44 -08002932 public abstract void writeToParcelWithoutUids(Parcel out, int flags);
2933
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002934 private final static void formatTimeRaw(StringBuilder out, long seconds) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002935 long days = seconds / (60 * 60 * 24);
2936 if (days != 0) {
2937 out.append(days);
2938 out.append("d ");
2939 }
2940 long used = days * 60 * 60 * 24;
2941
2942 long hours = (seconds - used) / (60 * 60);
2943 if (hours != 0 || used != 0) {
2944 out.append(hours);
2945 out.append("h ");
2946 }
2947 used += hours * 60 * 60;
2948
2949 long mins = (seconds-used) / 60;
2950 if (mins != 0 || used != 0) {
2951 out.append(mins);
2952 out.append("m ");
2953 }
2954 used += mins * 60;
2955
2956 if (seconds != 0 || used != 0) {
2957 out.append(seconds-used);
2958 out.append("s ");
2959 }
2960 }
2961
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002962 public final static void formatTimeMs(StringBuilder sb, long time) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002963 long sec = time / 1000;
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002964 formatTimeRaw(sb, sec);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002965 sb.append(time - (sec * 1000));
2966 sb.append("ms ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002967 }
2968
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002969 public final static void formatTimeMsNoSpace(StringBuilder sb, long time) {
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002970 long sec = time / 1000;
2971 formatTimeRaw(sb, sec);
2972 sb.append(time - (sec * 1000));
2973 sb.append("ms");
2974 }
2975
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002976 public final String formatRatioLocked(long num, long den) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002977 if (den == 0L) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002978 return "--%";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002979 }
2980 float perc = ((float)num) / ((float)den) * 100;
2981 mFormatBuilder.setLength(0);
2982 mFormatter.format("%.1f%%", perc);
2983 return mFormatBuilder.toString();
2984 }
2985
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002986 final String formatBytesLocked(long bytes) {
Evan Millar22ac0432009-03-31 11:33:18 -07002987 mFormatBuilder.setLength(0);
Bookatzc8c44962017-05-11 12:12:54 -07002988
Evan Millar22ac0432009-03-31 11:33:18 -07002989 if (bytes < BYTES_PER_KB) {
2990 return bytes + "B";
2991 } else if (bytes < BYTES_PER_MB) {
2992 mFormatter.format("%.2fKB", bytes / (double) BYTES_PER_KB);
2993 return mFormatBuilder.toString();
2994 } else if (bytes < BYTES_PER_GB){
2995 mFormatter.format("%.2fMB", bytes / (double) BYTES_PER_MB);
2996 return mFormatBuilder.toString();
2997 } else {
2998 mFormatter.format("%.2fGB", bytes / (double) BYTES_PER_GB);
2999 return mFormatBuilder.toString();
3000 }
3001 }
3002
Kweku Adams103351f2017-10-16 14:39:34 -07003003 private static long roundUsToMs(long timeUs) {
3004 return (timeUs + 500) / 1000;
3005 }
3006
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003007 private static long computeWakeLock(Timer timer, long elapsedRealtimeUs, int which) {
Dianne Hackbornc24ab862011-10-18 15:55:03 -07003008 if (timer != null) {
3009 // Convert from microseconds to milliseconds with rounding
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003010 long totalTimeMicros = timer.getTotalTimeLocked(elapsedRealtimeUs, which);
Dianne Hackbornc24ab862011-10-18 15:55:03 -07003011 long totalTimeMillis = (totalTimeMicros + 500) / 1000;
3012 return totalTimeMillis;
3013 }
3014 return 0;
3015 }
3016
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003017 /**
3018 *
3019 * @param sb a StringBuilder object.
3020 * @param timer a Timer object contining the wakelock times.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003021 * @param elapsedRealtimeUs the current on-battery time in microseconds.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003022 * @param name the name of the wakelock.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07003023 * @param which which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003024 * @param linePrefix a String to be prepended to each line of output.
3025 * @return the line prefix
3026 */
3027 private static final String printWakeLock(StringBuilder sb, Timer timer,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003028 long elapsedRealtimeUs, String name, int which, String linePrefix) {
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003029
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003030 if (timer != null) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003031 long totalTimeMillis = computeWakeLock(timer, elapsedRealtimeUs, which);
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003032
Evan Millarc64edde2009-04-18 12:26:32 -07003033 int count = timer.getCountLocked(which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003034 if (totalTimeMillis != 0) {
3035 sb.append(linePrefix);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07003036 formatTimeMs(sb, totalTimeMillis);
Dianne Hackborn81038902012-11-26 17:04:09 -08003037 if (name != null) {
3038 sb.append(name);
3039 sb.append(' ');
3040 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003041 sb.append('(');
3042 sb.append(count);
3043 sb.append(" times)");
Joe Onorato92fd23f2016-07-25 11:18:42 -07003044 final long maxDurationMs = timer.getMaxDurationMsLocked(elapsedRealtimeUs/1000);
3045 if (maxDurationMs >= 0) {
3046 sb.append(" max=");
3047 sb.append(maxDurationMs);
3048 }
Bookatz506a8182017-05-01 14:18:42 -07003049 // Put actual time if it is available and different from totalTimeMillis.
3050 final long totalDurMs = timer.getTotalDurationMsLocked(elapsedRealtimeUs/1000);
3051 if (totalDurMs > totalTimeMillis) {
3052 sb.append(" actual=");
3053 sb.append(totalDurMs);
3054 }
Joe Onorato92fd23f2016-07-25 11:18:42 -07003055 if (timer.isRunningLocked()) {
3056 final long currentMs = timer.getCurrentDurationMsLocked(elapsedRealtimeUs/1000);
3057 if (currentMs >= 0) {
3058 sb.append(" (running for ");
3059 sb.append(currentMs);
3060 sb.append("ms)");
3061 } else {
3062 sb.append(" (running)");
3063 }
3064 }
3065
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003066 return ", ";
3067 }
3068 }
3069 return linePrefix;
3070 }
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003071
3072 /**
Joe Onorato92fd23f2016-07-25 11:18:42 -07003073 * Prints details about a timer, if its total time was greater than 0.
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003074 *
3075 * @param pw a PrintWriter object to print to.
3076 * @param sb a StringBuilder object.
3077 * @param timer a Timer object contining the wakelock times.
Bookatz867c0d72017-03-07 18:23:42 -08003078 * @param rawRealtimeUs the current on-battery time in microseconds.
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003079 * @param which which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
3080 * @param prefix a String to be prepended to each line of output.
3081 * @param type the name of the timer.
Joe Onorato92fd23f2016-07-25 11:18:42 -07003082 * @return true if anything was printed.
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003083 */
3084 private static final boolean printTimer(PrintWriter pw, StringBuilder sb, Timer timer,
Joe Onorato92fd23f2016-07-25 11:18:42 -07003085 long rawRealtimeUs, int which, String prefix, String type) {
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003086 if (timer != null) {
3087 // Convert from microseconds to milliseconds with rounding
Joe Onorato92fd23f2016-07-25 11:18:42 -07003088 final long totalTimeMs = (timer.getTotalTimeLocked(
3089 rawRealtimeUs, which) + 500) / 1000;
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003090 final int count = timer.getCountLocked(which);
Joe Onorato92fd23f2016-07-25 11:18:42 -07003091 if (totalTimeMs != 0) {
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003092 sb.setLength(0);
3093 sb.append(prefix);
3094 sb.append(" ");
3095 sb.append(type);
3096 sb.append(": ");
Joe Onorato92fd23f2016-07-25 11:18:42 -07003097 formatTimeMs(sb, totalTimeMs);
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003098 sb.append("realtime (");
3099 sb.append(count);
3100 sb.append(" times)");
Joe Onorato92fd23f2016-07-25 11:18:42 -07003101 final long maxDurationMs = timer.getMaxDurationMsLocked(rawRealtimeUs/1000);
3102 if (maxDurationMs >= 0) {
3103 sb.append(" max=");
3104 sb.append(maxDurationMs);
3105 }
3106 if (timer.isRunningLocked()) {
3107 final long currentMs = timer.getCurrentDurationMsLocked(rawRealtimeUs/1000);
3108 if (currentMs >= 0) {
3109 sb.append(" (running for ");
3110 sb.append(currentMs);
3111 sb.append("ms)");
3112 } else {
3113 sb.append(" (running)");
3114 }
3115 }
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003116 pw.println(sb.toString());
3117 return true;
3118 }
3119 }
3120 return false;
3121 }
Bookatzc8c44962017-05-11 12:12:54 -07003122
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003123 /**
3124 * Checkin version of wakelock printer. Prints simple comma-separated list.
Bookatzc8c44962017-05-11 12:12:54 -07003125 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003126 * @param sb a StringBuilder object.
3127 * @param timer a Timer object contining the wakelock times.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003128 * @param elapsedRealtimeUs the current time in microseconds.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003129 * @param name the name of the wakelock.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07003130 * @param which which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003131 * @param linePrefix a String to be prepended to each line of output.
3132 * @return the line prefix
3133 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003134 private static final String printWakeLockCheckin(StringBuilder sb, Timer timer,
3135 long elapsedRealtimeUs, String name, int which, String linePrefix) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003136 long totalTimeMicros = 0;
3137 int count = 0;
Bookatz941d98f2017-05-02 19:25:18 -07003138 long max = 0;
3139 long current = 0;
3140 long totalDuration = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003141 if (timer != null) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003142 totalTimeMicros = timer.getTotalTimeLocked(elapsedRealtimeUs, which);
Bookatz506a8182017-05-01 14:18:42 -07003143 count = timer.getCountLocked(which);
Joe Onorato92fd23f2016-07-25 11:18:42 -07003144 current = timer.getCurrentDurationMsLocked(elapsedRealtimeUs/1000);
3145 max = timer.getMaxDurationMsLocked(elapsedRealtimeUs/1000);
Bookatz506a8182017-05-01 14:18:42 -07003146 totalDuration = timer.getTotalDurationMsLocked(elapsedRealtimeUs/1000);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003147 }
3148 sb.append(linePrefix);
3149 sb.append((totalTimeMicros + 500) / 1000); // microseconds to milliseconds with rounding
3150 sb.append(',');
Evan Millarc64edde2009-04-18 12:26:32 -07003151 sb.append(name != null ? name + "," : "");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003152 sb.append(count);
Joe Onorato92fd23f2016-07-25 11:18:42 -07003153 sb.append(',');
3154 sb.append(current);
3155 sb.append(',');
3156 sb.append(max);
Bookatz506a8182017-05-01 14:18:42 -07003157 // Partial, full, and window wakelocks are pooled, so totalDuration is meaningful (albeit
3158 // not always tracked). Kernel wakelocks (which have name == null) have no notion of
3159 // totalDuration independent of totalTimeMicros (since they are not pooled).
3160 if (name != null) {
3161 sb.append(',');
3162 sb.append(totalDuration);
3163 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003164 return ",";
3165 }
Bookatz506a8182017-05-01 14:18:42 -07003166
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003167 private static final void dumpLineHeader(PrintWriter pw, int uid, String category,
3168 String type) {
3169 pw.print(BATTERY_STATS_CHECKIN_VERSION);
3170 pw.print(',');
3171 pw.print(uid);
3172 pw.print(',');
3173 pw.print(category);
3174 pw.print(',');
3175 pw.print(type);
3176 }
3177
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003178 /**
3179 * Dump a comma-separated line of values for terse checkin mode.
Bookatzc8c44962017-05-11 12:12:54 -07003180 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003181 * @param pw the PageWriter to dump log to
3182 * @param category category of data (e.g. "total", "last", "unplugged", "current" )
3183 * @param type type of data (e.g. "wakelock", "sensor", "process", "apk" , "process", "network")
3184 * @param args type-dependent data arguments
3185 */
Bookatzc8c44962017-05-11 12:12:54 -07003186 private static final void dumpLine(PrintWriter pw, int uid, String category, String type,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003187 Object... args ) {
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003188 dumpLineHeader(pw, uid, category, type);
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003189 for (Object arg : args) {
Dianne Hackborn13ac0412013-06-25 19:34:49 -07003190 pw.print(',');
3191 pw.print(arg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003192 }
Dianne Hackborn13ac0412013-06-25 19:34:49 -07003193 pw.println();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003194 }
Dianne Hackbornd953c532014-08-16 18:17:38 -07003195
3196 /**
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003197 * Dump a given timer stat for terse checkin mode.
3198 *
3199 * @param pw the PageWriter to dump log to
3200 * @param uid the UID to log
3201 * @param category category of data (e.g. "total", "last", "unplugged", "current" )
3202 * @param type type of data (e.g. "wakelock", "sensor", "process", "apk" , "process", "network")
3203 * @param timer a {@link Timer} to dump stats for
3204 * @param rawRealtime the current elapsed realtime of the system in microseconds
3205 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT
3206 */
3207 private static final void dumpTimer(PrintWriter pw, int uid, String category, String type,
3208 Timer timer, long rawRealtime, int which) {
3209 if (timer != null) {
3210 // Convert from microseconds to milliseconds with rounding
Kweku Adams103351f2017-10-16 14:39:34 -07003211 final long totalTime = roundUsToMs(timer.getTotalTimeLocked(rawRealtime, which));
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003212 final int count = timer.getCountLocked(which);
Kweku Adams87b19ec2017-10-09 12:40:03 -07003213 if (totalTime != 0 || count != 0) {
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003214 dumpLine(pw, uid, category, type, totalTime, count);
3215 }
3216 }
3217 }
3218
3219 /**
Kweku Adams2f73ecd2017-09-27 16:59:19 -07003220 * Dump a given timer stat to the proto stream.
3221 *
3222 * @param proto the ProtoOutputStream to log to
3223 * @param fieldId type of data, the field to save to (e.g. AggregatedBatteryStats.WAKELOCK)
3224 * @param timer a {@link Timer} to dump stats for
3225 * @param rawRealtimeUs the current elapsed realtime of the system in microseconds
3226 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT
3227 */
3228 private static void dumpTimer(ProtoOutputStream proto, long fieldId,
Kweku Adams87b19ec2017-10-09 12:40:03 -07003229 Timer timer, long rawRealtimeUs, int which) {
Kweku Adams2f73ecd2017-09-27 16:59:19 -07003230 if (timer == null) {
3231 return;
3232 }
3233 // Convert from microseconds to milliseconds with rounding
Kweku Adams103351f2017-10-16 14:39:34 -07003234 final long timeMs = roundUsToMs(timer.getTotalTimeLocked(rawRealtimeUs, which));
Kweku Adams2f73ecd2017-09-27 16:59:19 -07003235 final int count = timer.getCountLocked(which);
Kweku Adams103351f2017-10-16 14:39:34 -07003236 final long maxDurationMs = timer.getMaxDurationMsLocked(rawRealtimeUs / 1000);
3237 final long curDurationMs = timer.getCurrentDurationMsLocked(rawRealtimeUs / 1000);
3238 final long totalDurationMs = timer.getTotalDurationMsLocked(rawRealtimeUs / 1000);
3239 if (timeMs != 0 || count != 0 || maxDurationMs != -1 || curDurationMs != -1
3240 || totalDurationMs != -1) {
Kweku Adams2f73ecd2017-09-27 16:59:19 -07003241 final long token = proto.start(fieldId);
Kweku Adams103351f2017-10-16 14:39:34 -07003242 proto.write(TimerProto.DURATION_MS, timeMs);
Kweku Adams2f73ecd2017-09-27 16:59:19 -07003243 proto.write(TimerProto.COUNT, count);
Kweku Adams103351f2017-10-16 14:39:34 -07003244 // These values will be -1 for timers that don't implement the functionality.
3245 if (maxDurationMs != -1) {
3246 proto.write(TimerProto.MAX_DURATION_MS, maxDurationMs);
3247 }
3248 if (curDurationMs != -1) {
3249 proto.write(TimerProto.CURRENT_DURATION_MS, curDurationMs);
3250 }
3251 if (totalDurationMs != -1) {
3252 proto.write(TimerProto.TOTAL_DURATION_MS, totalDurationMs);
3253 }
Kweku Adams2f73ecd2017-09-27 16:59:19 -07003254 proto.end(token);
3255 }
3256 }
3257
3258 /**
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003259 * Checks if the ControllerActivityCounter has any data worth dumping.
3260 */
3261 private static boolean controllerActivityHasData(ControllerActivityCounter counter, int which) {
3262 if (counter == null) {
3263 return false;
3264 }
3265
3266 if (counter.getIdleTimeCounter().getCountLocked(which) != 0
3267 || counter.getRxTimeCounter().getCountLocked(which) != 0
3268 || counter.getPowerCounter().getCountLocked(which) != 0) {
3269 return true;
3270 }
3271
3272 for (LongCounter c : counter.getTxTimeCounters()) {
3273 if (c.getCountLocked(which) != 0) {
3274 return true;
3275 }
3276 }
3277 return false;
3278 }
3279
3280 /**
3281 * Dumps the ControllerActivityCounter if it has any data worth dumping.
3282 * The order of the arguments in the final check in line is:
3283 *
3284 * idle, rx, power, tx...
3285 *
3286 * where tx... is one or more transmit level times.
3287 */
3288 private static final void dumpControllerActivityLine(PrintWriter pw, int uid, String category,
3289 String type,
3290 ControllerActivityCounter counter,
3291 int which) {
3292 if (!controllerActivityHasData(counter, which)) {
3293 return;
3294 }
3295
3296 dumpLineHeader(pw, uid, category, type);
3297 pw.print(",");
3298 pw.print(counter.getIdleTimeCounter().getCountLocked(which));
3299 pw.print(",");
3300 pw.print(counter.getRxTimeCounter().getCountLocked(which));
3301 pw.print(",");
3302 pw.print(counter.getPowerCounter().getCountLocked(which) / (1000 * 60 * 60));
3303 for (LongCounter c : counter.getTxTimeCounters()) {
3304 pw.print(",");
3305 pw.print(c.getCountLocked(which));
3306 }
3307 pw.println();
3308 }
3309
Kweku Adams2f73ecd2017-09-27 16:59:19 -07003310 /**
3311 * Dumps the ControllerActivityCounter if it has any data worth dumping.
3312 */
3313 private static void dumpControllerActivityProto(ProtoOutputStream proto, long fieldId,
3314 ControllerActivityCounter counter,
3315 int which) {
3316 if (!controllerActivityHasData(counter, which)) {
3317 return;
3318 }
3319
3320 final long cToken = proto.start(fieldId);
3321
3322 proto.write(ControllerActivityProto.IDLE_DURATION_MS,
3323 counter.getIdleTimeCounter().getCountLocked(which));
3324 proto.write(ControllerActivityProto.RX_DURATION_MS,
3325 counter.getRxTimeCounter().getCountLocked(which));
3326 proto.write(ControllerActivityProto.POWER_MAH,
3327 counter.getPowerCounter().getCountLocked(which) / (1000 * 60 * 60));
3328
3329 long tToken;
3330 LongCounter[] txCounters = counter.getTxTimeCounters();
3331 for (int i = 0; i < txCounters.length; ++i) {
3332 LongCounter c = txCounters[i];
3333 tToken = proto.start(ControllerActivityProto.TX);
3334 proto.write(ControllerActivityProto.TxLevel.LEVEL, i);
3335 proto.write(ControllerActivityProto.TxLevel.DURATION_MS, c.getCountLocked(which));
3336 proto.end(tToken);
3337 }
3338
3339 proto.end(cToken);
3340 }
3341
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003342 private final void printControllerActivityIfInteresting(PrintWriter pw, StringBuilder sb,
3343 String prefix, String controllerName,
3344 ControllerActivityCounter counter,
3345 int which) {
3346 if (controllerActivityHasData(counter, which)) {
3347 printControllerActivity(pw, sb, prefix, controllerName, counter, which);
3348 }
3349 }
3350
3351 private final void printControllerActivity(PrintWriter pw, StringBuilder sb, String prefix,
3352 String controllerName,
3353 ControllerActivityCounter counter, int which) {
3354 final long idleTimeMs = counter.getIdleTimeCounter().getCountLocked(which);
3355 final long rxTimeMs = counter.getRxTimeCounter().getCountLocked(which);
3356 final long powerDrainMaMs = counter.getPowerCounter().getCountLocked(which);
Siddharth Ray3c648c42017-10-02 17:30:58 -07003357 // Battery real time
3358 final long totalControllerActivityTimeMs
3359 = computeBatteryRealtime(SystemClock.elapsedRealtime() * 1000, which) / 1000;
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003360 long totalTxTimeMs = 0;
3361 for (LongCounter txState : counter.getTxTimeCounters()) {
3362 totalTxTimeMs += txState.getCountLocked(which);
3363 }
Siddharth Ray3c648c42017-10-02 17:30:58 -07003364 final long sleepTimeMs
3365 = totalControllerActivityTimeMs - (idleTimeMs + rxTimeMs + totalTxTimeMs);
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003366
Siddharth Rayb50a6842017-12-14 15:15:28 -08003367 if (controllerName.equals(WIFI_CONTROLLER_NAME)) {
3368 final long scanTimeMs = counter.getScanTimeCounter().getCountLocked(which);
3369 sb.setLength(0);
3370 sb.append(prefix);
3371 sb.append(" ");
3372 sb.append(controllerName);
3373 sb.append(" Scan time: ");
3374 formatTimeMs(sb, scanTimeMs);
3375 sb.append("(");
3376 sb.append(formatRatioLocked(scanTimeMs, totalControllerActivityTimeMs));
3377 sb.append(")");
3378 pw.println(sb.toString());
3379 }
3380
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003381 sb.setLength(0);
3382 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07003383 sb.append(" ");
3384 sb.append(controllerName);
3385 sb.append(" Sleep time: ");
3386 formatTimeMs(sb, sleepTimeMs);
3387 sb.append("(");
3388 sb.append(formatRatioLocked(sleepTimeMs, totalControllerActivityTimeMs));
3389 sb.append(")");
3390 pw.println(sb.toString());
3391
3392 sb.setLength(0);
3393 sb.append(prefix);
3394 sb.append(" ");
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003395 sb.append(controllerName);
3396 sb.append(" Idle time: ");
3397 formatTimeMs(sb, idleTimeMs);
3398 sb.append("(");
Siddharth Ray3c648c42017-10-02 17:30:58 -07003399 sb.append(formatRatioLocked(idleTimeMs, totalControllerActivityTimeMs));
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003400 sb.append(")");
3401 pw.println(sb.toString());
3402
3403 sb.setLength(0);
3404 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07003405 sb.append(" ");
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003406 sb.append(controllerName);
3407 sb.append(" Rx time: ");
3408 formatTimeMs(sb, rxTimeMs);
3409 sb.append("(");
Siddharth Ray3c648c42017-10-02 17:30:58 -07003410 sb.append(formatRatioLocked(rxTimeMs, totalControllerActivityTimeMs));
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003411 sb.append(")");
3412 pw.println(sb.toString());
3413
3414 sb.setLength(0);
3415 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07003416 sb.append(" ");
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003417 sb.append(controllerName);
3418 sb.append(" Tx time: ");
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003419
Siddharth Ray3c648c42017-10-02 17:30:58 -07003420 String [] powerLevel;
3421 switch(controllerName) {
Siddharth Rayb50a6842017-12-14 15:15:28 -08003422 case CELLULAR_CONTROLLER_NAME:
Siddharth Ray3c648c42017-10-02 17:30:58 -07003423 powerLevel = new String[] {
3424 " less than 0dBm: ",
3425 " 0dBm to 8dBm: ",
3426 " 8dBm to 15dBm: ",
3427 " 15dBm to 20dBm: ",
3428 " above 20dBm: "};
3429 break;
3430 default:
3431 powerLevel = new String[] {"[0]", "[1]", "[2]", "[3]", "[4]"};
3432 break;
3433 }
3434 final int numTxLvls = Math.min(counter.getTxTimeCounters().length, powerLevel.length);
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003435 if (numTxLvls > 1) {
Siddharth Ray3c648c42017-10-02 17:30:58 -07003436 pw.println(sb.toString());
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003437 for (int lvl = 0; lvl < numTxLvls; lvl++) {
3438 final long txLvlTimeMs = counter.getTxTimeCounters()[lvl].getCountLocked(which);
3439 sb.setLength(0);
3440 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07003441 sb.append(" ");
3442 sb.append(powerLevel[lvl]);
3443 sb.append(" ");
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003444 formatTimeMs(sb, txLvlTimeMs);
3445 sb.append("(");
Siddharth Ray3c648c42017-10-02 17:30:58 -07003446 sb.append(formatRatioLocked(txLvlTimeMs, totalControllerActivityTimeMs));
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003447 sb.append(")");
3448 pw.println(sb.toString());
3449 }
Siddharth Ray3c648c42017-10-02 17:30:58 -07003450 } else {
3451 final long txLvlTimeMs = counter.getTxTimeCounters()[0].getCountLocked(which);
3452 formatTimeMs(sb, txLvlTimeMs);
3453 sb.append("(");
3454 sb.append(formatRatioLocked(txLvlTimeMs, totalControllerActivityTimeMs));
3455 sb.append(")");
3456 pw.println(sb.toString());
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003457 }
3458
Siddharth Ray3c648c42017-10-02 17:30:58 -07003459 if (powerDrainMaMs > 0) {
3460 sb.setLength(0);
3461 sb.append(prefix);
3462 sb.append(" ");
3463 sb.append(controllerName);
3464 sb.append(" Battery drain: ").append(
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003465 BatteryStatsHelper.makemAh(powerDrainMaMs / (double) (1000*60*60)));
Siddharth Ray3c648c42017-10-02 17:30:58 -07003466 sb.append("mAh");
3467 pw.println(sb.toString());
3468 }
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003469 }
3470
3471 /**
Dianne Hackbornd953c532014-08-16 18:17:38 -07003472 * Temporary for settings.
3473 */
3474 public final void dumpCheckinLocked(Context context, PrintWriter pw, int which, int reqUid) {
3475 dumpCheckinLocked(context, pw, which, reqUid, BatteryStatsHelper.checkWifiOnly(context));
3476 }
3477
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003478 /**
3479 * Checkin server version of dump to produce more compact, computer-readable log.
Bookatzc8c44962017-05-11 12:12:54 -07003480 *
Kweku Adams87b19ec2017-10-09 12:40:03 -07003481 * NOTE: all times are expressed in microseconds, unless specified otherwise.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003482 */
Dianne Hackbornd953c532014-08-16 18:17:38 -07003483 public final void dumpCheckinLocked(Context context, PrintWriter pw, int which, int reqUid,
3484 boolean wifiOnly) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003485 final long rawUptime = SystemClock.uptimeMillis() * 1000;
Kweku Adams87b19ec2017-10-09 12:40:03 -07003486 final long rawRealtimeMs = SystemClock.elapsedRealtime();
3487 final long rawRealtime = rawRealtimeMs * 1000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003488 final long batteryUptime = getBatteryUptime(rawUptime);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003489 final long whichBatteryUptime = computeBatteryUptime(rawUptime, which);
3490 final long whichBatteryRealtime = computeBatteryRealtime(rawRealtime, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003491 final long whichBatteryScreenOffUptime = computeBatteryScreenOffUptime(rawUptime, which);
3492 final long whichBatteryScreenOffRealtime = computeBatteryScreenOffRealtime(rawRealtime,
3493 which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003494 final long totalRealtime = computeRealtime(rawRealtime, which);
3495 final long totalUptime = computeUptime(rawUptime, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003496 final long screenOnTime = getScreenOnTime(rawRealtime, which);
Mike Mac2f518a2017-09-19 16:06:03 -07003497 final long screenDozeTime = getScreenDozeTime(rawRealtime, which);
Jeff Browne95c3cd2014-05-02 16:59:26 -07003498 final long interactiveTime = getInteractiveTime(rawRealtime, which);
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07003499 final long powerSaveModeEnabledTime = getPowerSaveModeEnabledTime(rawRealtime, which);
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003500 final long deviceIdleModeLightTime = getDeviceIdleModeTime(DEVICE_IDLE_MODE_LIGHT,
3501 rawRealtime, which);
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07003502 final long deviceIdleModeFullTime = getDeviceIdleModeTime(DEVICE_IDLE_MODE_DEEP,
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003503 rawRealtime, which);
3504 final long deviceLightIdlingTime = getDeviceIdlingTime(DEVICE_IDLE_MODE_LIGHT,
3505 rawRealtime, which);
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07003506 final long deviceIdlingTime = getDeviceIdlingTime(DEVICE_IDLE_MODE_DEEP,
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003507 rawRealtime, which);
Dianne Hackborn1e01d162014-12-04 17:46:42 -08003508 final int connChanges = getNumConnectivityChange(which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003509 final long phoneOnTime = getPhoneOnTime(rawRealtime, which);
Kweku Adams87b19ec2017-10-09 12:40:03 -07003510 final long dischargeCount = getUahDischarge(which);
3511 final long dischargeScreenOffCount = getUahDischargeScreenOff(which);
3512 final long dischargeScreenDozeCount = getUahDischargeScreenDoze(which);
Mike Ma15313c92017-11-15 17:58:21 -08003513 final long dischargeLightDozeCount = getUahDischargeLightDoze(which);
3514 final long dischargeDeepDozeCount = getUahDischargeDeepDoze(which);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07003515
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003516 final StringBuilder sb = new StringBuilder(128);
Bookatzc8c44962017-05-11 12:12:54 -07003517
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003518 final SparseArray<? extends Uid> uidStats = getUidStats();
Evan Millar22ac0432009-03-31 11:33:18 -07003519 final int NU = uidStats.size();
Bookatzc8c44962017-05-11 12:12:54 -07003520
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003521 final String category = STAT_NAMES[which];
Jeff Sharkey3e013e82013-04-25 14:48:19 -07003522
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003523 // Dump "battery" stat
Jocelyn Dangc627d102017-04-14 13:15:14 -07003524 dumpLine(pw, 0 /* uid */, category, BATTERY_DATA,
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07003525 which == STATS_SINCE_CHARGED ? getStartCount() : "N/A",
Dianne Hackborn617f8772009-03-31 15:04:46 -07003526 whichBatteryRealtime / 1000, whichBatteryUptime / 1000,
Dianne Hackborn5f4a5f92014-01-24 16:59:34 -08003527 totalRealtime / 1000, totalUptime / 1000,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003528 getStartClockTime(),
Adam Lesinskif9b20a92016-06-17 17:30:01 -07003529 whichBatteryScreenOffRealtime / 1000, whichBatteryScreenOffUptime / 1000,
Jocelyn Dangc627d102017-04-14 13:15:14 -07003530 getEstimatedBatteryCapacity(),
Mike Mac2f518a2017-09-19 16:06:03 -07003531 getMinLearnedBatteryCapacity(), getMaxLearnedBatteryCapacity(),
3532 screenDozeTime / 1000);
Adam Lesinski67c134f2016-06-10 15:15:08 -07003533
Bookatzc8c44962017-05-11 12:12:54 -07003534
Ahmed ElArabawyf88571f2017-11-28 12:18:10 -08003535 // Calculate wakelock times across all uids.
Evan Millar22ac0432009-03-31 11:33:18 -07003536 long fullWakeLockTimeTotal = 0;
3537 long partialWakeLockTimeTotal = 0;
Bookatzc8c44962017-05-11 12:12:54 -07003538
Evan Millar22ac0432009-03-31 11:33:18 -07003539 for (int iu = 0; iu < NU; iu++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003540 final Uid u = uidStats.valueAt(iu);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07003541
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003542 final ArrayMap<String, ? extends BatteryStats.Uid.Wakelock> wakelocks
3543 = u.getWakelockStats();
3544 for (int iw=wakelocks.size()-1; iw>=0; iw--) {
3545 final Uid.Wakelock wl = wakelocks.valueAt(iw);
Evan Millar22ac0432009-03-31 11:33:18 -07003546
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003547 final Timer fullWakeTimer = wl.getWakeTime(WAKE_TYPE_FULL);
3548 if (fullWakeTimer != null) {
3549 fullWakeLockTimeTotal += fullWakeTimer.getTotalTimeLocked(rawRealtime,
3550 which);
3551 }
3552
3553 final Timer partialWakeTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
3554 if (partialWakeTimer != null) {
3555 partialWakeLockTimeTotal += partialWakeTimer.getTotalTimeLocked(
3556 rawRealtime, which);
Evan Millar22ac0432009-03-31 11:33:18 -07003557 }
3558 }
3559 }
Adam Lesinskie283d332015-04-16 12:29:25 -07003560
3561 // Dump network stats
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003562 final long mobileRxTotalBytes = getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which);
3563 final long mobileTxTotalBytes = getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which);
3564 final long wifiRxTotalBytes = getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which);
3565 final long wifiTxTotalBytes = getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which);
3566 final long mobileRxTotalPackets = getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which);
3567 final long mobileTxTotalPackets = getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which);
3568 final long wifiRxTotalPackets = getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which);
3569 final long wifiTxTotalPackets = getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which);
Adam Lesinski9f55cc72016-01-27 20:42:14 -08003570 final long btRxTotalBytes = getNetworkActivityBytes(NETWORK_BT_RX_DATA, which);
3571 final long btTxTotalBytes = getNetworkActivityBytes(NETWORK_BT_TX_DATA, which);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003572 dumpLine(pw, 0 /* uid */, category, GLOBAL_NETWORK_DATA,
3573 mobileRxTotalBytes, mobileTxTotalBytes, wifiRxTotalBytes, wifiTxTotalBytes,
Adam Lesinski9f55cc72016-01-27 20:42:14 -08003574 mobileRxTotalPackets, mobileTxTotalPackets, wifiRxTotalPackets, wifiTxTotalPackets,
3575 btRxTotalBytes, btTxTotalBytes);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003576
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003577 // Dump Modem controller stats
3578 dumpControllerActivityLine(pw, 0 /* uid */, category, GLOBAL_MODEM_CONTROLLER_DATA,
3579 getModemControllerActivity(), which);
3580
Adam Lesinskie283d332015-04-16 12:29:25 -07003581 // Dump Wifi controller stats
3582 final long wifiOnTime = getWifiOnTime(rawRealtime, which);
3583 final long wifiRunningTime = getGlobalWifiRunningTime(rawRealtime, which);
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003584 dumpLine(pw, 0 /* uid */, category, GLOBAL_WIFI_DATA, wifiOnTime / 1000,
Adam Lesinski2208e742016-02-19 12:53:31 -08003585 wifiRunningTime / 1000, /* legacy fields follow, keep at 0 */ 0, 0, 0);
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003586
3587 dumpControllerActivityLine(pw, 0 /* uid */, category, GLOBAL_WIFI_CONTROLLER_DATA,
3588 getWifiControllerActivity(), which);
Adam Lesinskie283d332015-04-16 12:29:25 -07003589
3590 // Dump Bluetooth controller stats
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003591 dumpControllerActivityLine(pw, 0 /* uid */, category, GLOBAL_BLUETOOTH_CONTROLLER_DATA,
3592 getBluetoothControllerActivity(), which);
Adam Lesinskie283d332015-04-16 12:29:25 -07003593
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003594 // Dump misc stats
3595 dumpLine(pw, 0 /* uid */, category, MISC_DATA,
Adam Lesinskie283d332015-04-16 12:29:25 -07003596 screenOnTime / 1000, phoneOnTime / 1000,
Ashish Sharma213bb2f2014-07-07 17:14:52 -07003597 fullWakeLockTimeTotal / 1000, partialWakeLockTimeTotal / 1000,
Adam Lesinskie283d332015-04-16 12:29:25 -07003598 getMobileRadioActiveTime(rawRealtime, which) / 1000,
Ashish Sharma213bb2f2014-07-07 17:14:52 -07003599 getMobileRadioActiveAdjustedTime(which) / 1000, interactiveTime / 1000,
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003600 powerSaveModeEnabledTime / 1000, connChanges, deviceIdleModeFullTime / 1000,
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07003601 getDeviceIdleModeCount(DEVICE_IDLE_MODE_DEEP, which), deviceIdlingTime / 1000,
3602 getDeviceIdlingCount(DEVICE_IDLE_MODE_DEEP, which),
Adam Lesinski782327b2015-07-30 16:36:29 -07003603 getMobileRadioActiveCount(which),
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003604 getMobileRadioActiveUnknownTime(which) / 1000, deviceIdleModeLightTime / 1000,
3605 getDeviceIdleModeCount(DEVICE_IDLE_MODE_LIGHT, which), deviceLightIdlingTime / 1000,
3606 getDeviceIdlingCount(DEVICE_IDLE_MODE_LIGHT, which),
3607 getLongestDeviceIdleModeTime(DEVICE_IDLE_MODE_LIGHT),
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07003608 getLongestDeviceIdleModeTime(DEVICE_IDLE_MODE_DEEP));
Bookatzc8c44962017-05-11 12:12:54 -07003609
Dianne Hackborn617f8772009-03-31 15:04:46 -07003610 // Dump screen brightness stats
3611 Object[] args = new Object[NUM_SCREEN_BRIGHTNESS_BINS];
3612 for (int i=0; i<NUM_SCREEN_BRIGHTNESS_BINS; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003613 args[i] = getScreenBrightnessTime(i, rawRealtime, which) / 1000;
Dianne Hackborn617f8772009-03-31 15:04:46 -07003614 }
3615 dumpLine(pw, 0 /* uid */, category, SCREEN_BRIGHTNESS_DATA, args);
Bookatzc8c44962017-05-11 12:12:54 -07003616
Dianne Hackborn627bba72009-03-24 22:32:56 -07003617 // Dump signal strength stats
Wink Saville52840902011-02-18 12:40:47 -08003618 args = new Object[SignalStrength.NUM_SIGNAL_STRENGTH_BINS];
3619 for (int i=0; i<SignalStrength.NUM_SIGNAL_STRENGTH_BINS; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003620 args[i] = getPhoneSignalStrengthTime(i, rawRealtime, which) / 1000;
Dianne Hackborn627bba72009-03-24 22:32:56 -07003621 }
Dianne Hackborn617f8772009-03-31 15:04:46 -07003622 dumpLine(pw, 0 /* uid */, category, SIGNAL_STRENGTH_TIME_DATA, args);
Amith Yamasanif37447b2009-10-08 18:28:01 -07003623 dumpLine(pw, 0 /* uid */, category, SIGNAL_SCANNING_TIME_DATA,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003624 getPhoneSignalScanningTime(rawRealtime, which) / 1000);
Wink Saville52840902011-02-18 12:40:47 -08003625 for (int i=0; i<SignalStrength.NUM_SIGNAL_STRENGTH_BINS; i++) {
Dianne Hackborn617f8772009-03-31 15:04:46 -07003626 args[i] = getPhoneSignalStrengthCount(i, which);
3627 }
3628 dumpLine(pw, 0 /* uid */, category, SIGNAL_STRENGTH_COUNT_DATA, args);
Dianne Hackborne13c4c02014-02-11 17:18:35 -08003629
Dianne Hackborn627bba72009-03-24 22:32:56 -07003630 // Dump network type stats
3631 args = new Object[NUM_DATA_CONNECTION_TYPES];
3632 for (int i=0; i<NUM_DATA_CONNECTION_TYPES; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003633 args[i] = getPhoneDataConnectionTime(i, rawRealtime, which) / 1000;
Dianne Hackborn627bba72009-03-24 22:32:56 -07003634 }
Dianne Hackborn617f8772009-03-31 15:04:46 -07003635 dumpLine(pw, 0 /* uid */, category, DATA_CONNECTION_TIME_DATA, args);
3636 for (int i=0; i<NUM_DATA_CONNECTION_TYPES; i++) {
3637 args[i] = getPhoneDataConnectionCount(i, which);
3638 }
3639 dumpLine(pw, 0 /* uid */, category, DATA_CONNECTION_COUNT_DATA, args);
Dianne Hackbornca1bf212014-02-14 14:18:36 -08003640
3641 // Dump wifi state stats
3642 args = new Object[NUM_WIFI_STATES];
3643 for (int i=0; i<NUM_WIFI_STATES; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003644 args[i] = getWifiStateTime(i, rawRealtime, which) / 1000;
Dianne Hackbornca1bf212014-02-14 14:18:36 -08003645 }
3646 dumpLine(pw, 0 /* uid */, category, WIFI_STATE_TIME_DATA, args);
3647 for (int i=0; i<NUM_WIFI_STATES; i++) {
3648 args[i] = getWifiStateCount(i, which);
3649 }
3650 dumpLine(pw, 0 /* uid */, category, WIFI_STATE_COUNT_DATA, args);
3651
Dianne Hackborn3251b902014-06-20 14:40:53 -07003652 // Dump wifi suppl state stats
3653 args = new Object[NUM_WIFI_SUPPL_STATES];
3654 for (int i=0; i<NUM_WIFI_SUPPL_STATES; i++) {
3655 args[i] = getWifiSupplStateTime(i, rawRealtime, which) / 1000;
3656 }
3657 dumpLine(pw, 0 /* uid */, category, WIFI_SUPPL_STATE_TIME_DATA, args);
3658 for (int i=0; i<NUM_WIFI_SUPPL_STATES; i++) {
3659 args[i] = getWifiSupplStateCount(i, which);
3660 }
3661 dumpLine(pw, 0 /* uid */, category, WIFI_SUPPL_STATE_COUNT_DATA, args);
3662
3663 // Dump wifi signal strength stats
3664 args = new Object[NUM_WIFI_SIGNAL_STRENGTH_BINS];
3665 for (int i=0; i<NUM_WIFI_SIGNAL_STRENGTH_BINS; i++) {
3666 args[i] = getWifiSignalStrengthTime(i, rawRealtime, which) / 1000;
3667 }
3668 dumpLine(pw, 0 /* uid */, category, WIFI_SIGNAL_STRENGTH_TIME_DATA, args);
3669 for (int i=0; i<NUM_WIFI_SIGNAL_STRENGTH_BINS; i++) {
3670 args[i] = getWifiSignalStrengthCount(i, which);
3671 }
3672 dumpLine(pw, 0 /* uid */, category, WIFI_SIGNAL_STRENGTH_COUNT_DATA, args);
3673
Ahmed ElArabawyddd09692017-10-30 17:58:29 -07003674 // Dump Multicast total stats
Ahmed ElArabawyf88571f2017-11-28 12:18:10 -08003675 final long multicastWakeLockTimeTotalMicros =
3676 getWifiMulticastWakelockTime(rawRealtime, which);
3677 final int multicastWakeLockCountTotal = getWifiMulticastWakelockCount(which);
Ahmed ElArabawyddd09692017-10-30 17:58:29 -07003678 dumpLine(pw, 0 /* uid */, category, WIFI_MULTICAST_TOTAL_DATA,
3679 multicastWakeLockTimeTotalMicros / 1000,
3680 multicastWakeLockCountTotal);
3681
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07003682 if (which == STATS_SINCE_UNPLUGGED) {
Dianne Hackborne13c4c02014-02-11 17:18:35 -08003683 dumpLine(pw, 0 /* uid */, category, BATTERY_LEVEL_DATA, getDischargeStartLevel(),
Evan Millar633a1742009-04-02 16:36:33 -07003684 getDischargeCurrentLevel());
The Android Open Source Project10592532009-03-18 17:39:46 -07003685 }
Bookatzc8c44962017-05-11 12:12:54 -07003686
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08003687 if (which == STATS_SINCE_UNPLUGGED) {
3688 dumpLine(pw, 0 /* uid */, category, BATTERY_DISCHARGE_DATA,
3689 getDischargeStartLevel()-getDischargeCurrentLevel(),
3690 getDischargeStartLevel()-getDischargeCurrentLevel(),
Adam Lesinski67c134f2016-06-10 15:15:08 -07003691 getDischargeAmountScreenOn(), getDischargeAmountScreenOff(),
Mike Mac2f518a2017-09-19 16:06:03 -07003692 dischargeCount / 1000, dischargeScreenOffCount / 1000,
Mike Ma15313c92017-11-15 17:58:21 -08003693 getDischargeAmountScreenDoze(), dischargeScreenDozeCount / 1000,
3694 dischargeLightDozeCount / 1000, dischargeDeepDozeCount / 1000);
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08003695 } else {
3696 dumpLine(pw, 0 /* uid */, category, BATTERY_DISCHARGE_DATA,
3697 getLowDischargeAmountSinceCharge(), getHighDischargeAmountSinceCharge(),
Dianne Hackborncd0e3352014-08-07 17:08:09 -07003698 getDischargeAmountScreenOnSinceCharge(),
Adam Lesinski67c134f2016-06-10 15:15:08 -07003699 getDischargeAmountScreenOffSinceCharge(),
Mike Mac2f518a2017-09-19 16:06:03 -07003700 dischargeCount / 1000, dischargeScreenOffCount / 1000,
Mike Ma15313c92017-11-15 17:58:21 -08003701 getDischargeAmountScreenDozeSinceCharge(), dischargeScreenDozeCount / 1000,
3702 dischargeLightDozeCount / 1000, dischargeDeepDozeCount / 1000);
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08003703 }
Bookatzc8c44962017-05-11 12:12:54 -07003704
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003705 if (reqUid < 0) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003706 final Map<String, ? extends Timer> kernelWakelocks = getKernelWakelockStats();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003707 if (kernelWakelocks.size() > 0) {
Dianne Hackborna1bd7922014-03-21 11:07:11 -07003708 for (Map.Entry<String, ? extends Timer> ent : kernelWakelocks.entrySet()) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003709 sb.setLength(0);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003710 printWakeLockCheckin(sb, ent.getValue(), rawRealtime, null, which, "");
Kweku Adamse0dd9c12017-03-08 08:12:15 -08003711 dumpLine(pw, 0 /* uid */, category, KERNEL_WAKELOCK_DATA,
3712 "\"" + ent.getKey() + "\"", sb.toString());
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003713 }
Evan Millarc64edde2009-04-18 12:26:32 -07003714 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003715 final Map<String, ? extends Timer> wakeupReasons = getWakeupReasonStats();
Dianne Hackborna1bd7922014-03-21 11:07:11 -07003716 if (wakeupReasons.size() > 0) {
Dianne Hackbornc3940bc2014-09-05 15:50:25 -07003717 for (Map.Entry<String, ? extends Timer> ent : wakeupReasons.entrySet()) {
3718 // Not doing the regular wake lock formatting to remain compatible
3719 // with the old checkin format.
3720 long totalTimeMicros = ent.getValue().getTotalTimeLocked(rawRealtime, which);
3721 int count = ent.getValue().getCountLocked(which);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07003722 dumpLine(pw, 0 /* uid */, category, WAKEUP_REASON_DATA,
Dianne Hackbornc3940bc2014-09-05 15:50:25 -07003723 "\"" + ent.getKey() + "\"", (totalTimeMicros + 500) / 1000, count);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07003724 }
3725 }
Evan Millarc64edde2009-04-18 12:26:32 -07003726 }
Bookatzc8c44962017-05-11 12:12:54 -07003727
Bookatz50df7112017-08-04 14:53:26 -07003728 final Map<String, ? extends Timer> rpmStats = getRpmStats();
3729 final Map<String, ? extends Timer> screenOffRpmStats = getScreenOffRpmStats();
3730 if (rpmStats.size() > 0) {
3731 for (Map.Entry<String, ? extends Timer> ent : rpmStats.entrySet()) {
3732 sb.setLength(0);
3733 Timer totalTimer = ent.getValue();
3734 long timeMs = (totalTimer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000;
3735 int count = totalTimer.getCountLocked(which);
3736 Timer screenOffTimer = screenOffRpmStats.get(ent.getKey());
3737 long screenOffTimeMs = screenOffTimer != null
3738 ? (screenOffTimer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000 : 0;
3739 int screenOffCount = screenOffTimer != null
3740 ? screenOffTimer.getCountLocked(which) : 0;
Bookatz82b341172017-09-07 19:06:08 -07003741 if (SCREEN_OFF_RPM_STATS_ENABLED) {
3742 dumpLine(pw, 0 /* uid */, category, RESOURCE_POWER_MANAGER_DATA,
3743 "\"" + ent.getKey() + "\"", timeMs, count, screenOffTimeMs,
3744 screenOffCount);
3745 } else {
3746 dumpLine(pw, 0 /* uid */, category, RESOURCE_POWER_MANAGER_DATA,
3747 "\"" + ent.getKey() + "\"", timeMs, count);
3748 }
Bookatz50df7112017-08-04 14:53:26 -07003749 }
3750 }
3751
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003752 final BatteryStatsHelper helper = new BatteryStatsHelper(context, false, wifiOnly);
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003753 helper.create(this);
3754 helper.refreshStats(which, UserHandle.USER_ALL);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003755 final List<BatterySipper> sippers = helper.getUsageList();
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003756 if (sippers != null && sippers.size() > 0) {
3757 dumpLine(pw, 0 /* uid */, category, POWER_USE_SUMMARY_DATA,
3758 BatteryStatsHelper.makemAh(helper.getPowerProfile().getBatteryCapacity()),
Dianne Hackborn099bc622014-01-22 13:39:16 -08003759 BatteryStatsHelper.makemAh(helper.getComputedPower()),
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003760 BatteryStatsHelper.makemAh(helper.getMinDrainedPower()),
3761 BatteryStatsHelper.makemAh(helper.getMaxDrainedPower()));
Kweku Adams87b19ec2017-10-09 12:40:03 -07003762 int uid = 0;
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003763 for (int i=0; i<sippers.size(); i++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003764 final BatterySipper bs = sippers.get(i);
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003765 String label;
3766 switch (bs.drainType) {
3767 case IDLE:
3768 label="idle";
3769 break;
3770 case CELL:
3771 label="cell";
3772 break;
3773 case PHONE:
3774 label="phone";
3775 break;
3776 case WIFI:
3777 label="wifi";
3778 break;
3779 case BLUETOOTH:
3780 label="blue";
3781 break;
3782 case SCREEN:
3783 label="scrn";
3784 break;
Dianne Hackbornabc7c492014-06-30 16:57:46 -07003785 case FLASHLIGHT:
3786 label="flashlight";
3787 break;
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003788 case APP:
3789 uid = bs.uidObj.getUid();
3790 label = "uid";
3791 break;
3792 case USER:
3793 uid = UserHandle.getUid(bs.userId, 0);
3794 label = "user";
3795 break;
3796 case UNACCOUNTED:
3797 label = "unacc";
3798 break;
3799 case OVERCOUNTED:
3800 label = "over";
3801 break;
Ruben Brunk5b1308f2015-06-03 18:49:27 -07003802 case CAMERA:
3803 label = "camera";
3804 break;
Kweku Adams87b19ec2017-10-09 12:40:03 -07003805 case MEMORY:
3806 label = "memory";
3807 break;
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003808 default:
3809 label = "???";
3810 }
3811 dumpLine(pw, uid, category, POWER_USE_ITEM_DATA, label,
Bookatz17d7d9d2017-06-08 14:50:46 -07003812 BatteryStatsHelper.makemAh(bs.totalPowerMah),
3813 bs.shouldHide ? 1 : 0,
3814 BatteryStatsHelper.makemAh(bs.screenPowerMah),
3815 BatteryStatsHelper.makemAh(bs.proportionalSmearMah));
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003816 }
3817 }
3818
Sudheer Shanka9b735c52017-05-09 18:26:18 -07003819 final long[] cpuFreqs = getCpuFreqs();
3820 if (cpuFreqs != null) {
3821 sb.setLength(0);
3822 for (int i = 0; i < cpuFreqs.length; ++i) {
3823 sb.append((i == 0 ? "" : ",") + cpuFreqs[i]);
3824 }
3825 dumpLine(pw, 0 /* uid */, category, GLOBAL_CPU_FREQ_DATA, sb.toString());
3826 }
3827
Kweku Adams87b19ec2017-10-09 12:40:03 -07003828 // Dump stats per UID.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003829 for (int iu = 0; iu < NU; iu++) {
3830 final int uid = uidStats.keyAt(iu);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003831 if (reqUid >= 0 && uid != reqUid) {
3832 continue;
3833 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003834 final Uid u = uidStats.valueAt(iu);
Adam Lesinskie283d332015-04-16 12:29:25 -07003835
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003836 // Dump Network stats per uid, if any
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003837 final long mobileBytesRx = u.getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which);
3838 final long mobileBytesTx = u.getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which);
3839 final long wifiBytesRx = u.getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which);
3840 final long wifiBytesTx = u.getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which);
3841 final long mobilePacketsRx = u.getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which);
3842 final long mobilePacketsTx = u.getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which);
3843 final long mobileActiveTime = u.getMobileRadioActiveTime(which);
3844 final int mobileActiveCount = u.getMobileRadioActiveCount(which);
Adam Lesinski5f056f62016-07-14 16:56:08 -07003845 final long mobileWakeup = u.getMobileRadioApWakeupCount(which);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003846 final long wifiPacketsRx = u.getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which);
3847 final long wifiPacketsTx = u.getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which);
Adam Lesinski5f056f62016-07-14 16:56:08 -07003848 final long wifiWakeup = u.getWifiRadioApWakeupCount(which);
Adam Lesinski9f55cc72016-01-27 20:42:14 -08003849 final long btBytesRx = u.getNetworkActivityBytes(NETWORK_BT_RX_DATA, which);
3850 final long btBytesTx = u.getNetworkActivityBytes(NETWORK_BT_TX_DATA, which);
Amith Yamasani59fe8412017-03-03 16:28:52 -08003851 // Background data transfers
3852 final long mobileBytesBgRx = u.getNetworkActivityBytes(NETWORK_MOBILE_BG_RX_DATA,
3853 which);
3854 final long mobileBytesBgTx = u.getNetworkActivityBytes(NETWORK_MOBILE_BG_TX_DATA,
3855 which);
3856 final long wifiBytesBgRx = u.getNetworkActivityBytes(NETWORK_WIFI_BG_RX_DATA, which);
3857 final long wifiBytesBgTx = u.getNetworkActivityBytes(NETWORK_WIFI_BG_TX_DATA, which);
3858 final long mobilePacketsBgRx = u.getNetworkActivityPackets(NETWORK_MOBILE_BG_RX_DATA,
3859 which);
3860 final long mobilePacketsBgTx = u.getNetworkActivityPackets(NETWORK_MOBILE_BG_TX_DATA,
3861 which);
3862 final long wifiPacketsBgRx = u.getNetworkActivityPackets(NETWORK_WIFI_BG_RX_DATA,
3863 which);
3864 final long wifiPacketsBgTx = u.getNetworkActivityPackets(NETWORK_WIFI_BG_TX_DATA,
3865 which);
3866
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003867 if (mobileBytesRx > 0 || mobileBytesTx > 0 || wifiBytesRx > 0 || wifiBytesTx > 0
3868 || mobilePacketsRx > 0 || mobilePacketsTx > 0 || wifiPacketsRx > 0
Adam Lesinski9f55cc72016-01-27 20:42:14 -08003869 || wifiPacketsTx > 0 || mobileActiveTime > 0 || mobileActiveCount > 0
Amith Yamasani59fe8412017-03-03 16:28:52 -08003870 || btBytesRx > 0 || btBytesTx > 0 || mobileWakeup > 0 || wifiWakeup > 0
3871 || mobileBytesBgRx > 0 || mobileBytesBgTx > 0 || wifiBytesBgRx > 0
3872 || wifiBytesBgTx > 0
3873 || mobilePacketsBgRx > 0 || mobilePacketsBgTx > 0 || wifiPacketsBgRx > 0
3874 || wifiPacketsBgTx > 0) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003875 dumpLine(pw, uid, category, NETWORK_DATA, mobileBytesRx, mobileBytesTx,
3876 wifiBytesRx, wifiBytesTx,
3877 mobilePacketsRx, mobilePacketsTx,
Dianne Hackbornd45665b2014-02-26 12:35:32 -08003878 wifiPacketsRx, wifiPacketsTx,
Adam Lesinski9f55cc72016-01-27 20:42:14 -08003879 mobileActiveTime, mobileActiveCount,
Amith Yamasani59fe8412017-03-03 16:28:52 -08003880 btBytesRx, btBytesTx, mobileWakeup, wifiWakeup,
3881 mobileBytesBgRx, mobileBytesBgTx, wifiBytesBgRx, wifiBytesBgTx,
3882 mobilePacketsBgRx, mobilePacketsBgTx, wifiPacketsBgRx, wifiPacketsBgTx
3883 );
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07003884 }
3885
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003886 // Dump modem controller data, per UID.
3887 dumpControllerActivityLine(pw, uid, category, MODEM_CONTROLLER_DATA,
3888 u.getModemControllerActivity(), which);
3889
3890 // Dump Wifi controller data, per UID.
Adam Lesinskie283d332015-04-16 12:29:25 -07003891 final long fullWifiLockOnTime = u.getFullWifiLockTime(rawRealtime, which);
3892 final long wifiScanTime = u.getWifiScanTime(rawRealtime, which);
3893 final int wifiScanCount = u.getWifiScanCount(which);
Bookatz867c0d72017-03-07 18:23:42 -08003894 final int wifiScanCountBg = u.getWifiScanBackgroundCount(which);
3895 // Note that 'ActualTime' are unpooled and always since reset (regardless of 'which')
Bookatzce49aca2017-04-03 09:47:05 -07003896 final long wifiScanActualTimeMs = (u.getWifiScanActualTime(rawRealtime) + 500) / 1000;
3897 final long wifiScanActualTimeMsBg = (u.getWifiScanBackgroundTime(rawRealtime) + 500)
3898 / 1000;
Adam Lesinskie283d332015-04-16 12:29:25 -07003899 final long uidWifiRunningTime = u.getWifiRunningTime(rawRealtime, which);
Dianne Hackborn62793e42015-03-09 11:15:41 -07003900 if (fullWifiLockOnTime != 0 || wifiScanTime != 0 || wifiScanCount != 0
Bookatzce49aca2017-04-03 09:47:05 -07003901 || wifiScanCountBg != 0 || wifiScanActualTimeMs != 0
3902 || wifiScanActualTimeMsBg != 0 || uidWifiRunningTime != 0) {
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003903 dumpLine(pw, uid, category, WIFI_DATA, fullWifiLockOnTime, wifiScanTime,
3904 uidWifiRunningTime, wifiScanCount,
Bookatz867c0d72017-03-07 18:23:42 -08003905 /* legacy fields follow, keep at 0 */ 0, 0, 0,
Bookatzce49aca2017-04-03 09:47:05 -07003906 wifiScanCountBg, wifiScanActualTimeMs, wifiScanActualTimeMsBg);
The Android Open Source Project10592532009-03-18 17:39:46 -07003907 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003908
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003909 dumpControllerActivityLine(pw, uid, category, WIFI_CONTROLLER_DATA,
3910 u.getWifiControllerActivity(), which);
3911
Bookatz867c0d72017-03-07 18:23:42 -08003912 final Timer bleTimer = u.getBluetoothScanTimer();
3913 if (bleTimer != null) {
3914 // Convert from microseconds to milliseconds with rounding
3915 final long totalTime = (bleTimer.getTotalTimeLocked(rawRealtime, which) + 500)
3916 / 1000;
3917 if (totalTime != 0) {
3918 final int count = bleTimer.getCountLocked(which);
3919 final Timer bleTimerBg = u.getBluetoothScanBackgroundTimer();
3920 final int countBg = bleTimerBg != null ? bleTimerBg.getCountLocked(which) : 0;
Bookatz867c0d72017-03-07 18:23:42 -08003921 // 'actualTime' are unpooled and always since reset (regardless of 'which')
3922 final long actualTime = bleTimer.getTotalDurationMsLocked(rawRealtimeMs);
3923 final long actualTimeBg = bleTimerBg != null ?
3924 bleTimerBg.getTotalDurationMsLocked(rawRealtimeMs) : 0;
Bookatzb1f04f32017-05-19 13:57:32 -07003925 // Result counters
Bookatz956f36bf2017-04-28 09:48:17 -07003926 final int resultCount = u.getBluetoothScanResultCounter() != null ?
3927 u.getBluetoothScanResultCounter().getCountLocked(which) : 0;
Bookatzb1f04f32017-05-19 13:57:32 -07003928 final int resultCountBg = u.getBluetoothScanResultBgCounter() != null ?
3929 u.getBluetoothScanResultBgCounter().getCountLocked(which) : 0;
3930 // Unoptimized scan timer. Unpooled and since reset (regardless of 'which').
3931 final Timer unoptimizedScanTimer = u.getBluetoothUnoptimizedScanTimer();
3932 final long unoptimizedScanTotalTime = unoptimizedScanTimer != null ?
3933 unoptimizedScanTimer.getTotalDurationMsLocked(rawRealtimeMs) : 0;
3934 final long unoptimizedScanMaxTime = unoptimizedScanTimer != null ?
3935 unoptimizedScanTimer.getMaxDurationMsLocked(rawRealtimeMs) : 0;
3936 // Unoptimized bg scan timer. Unpooled and since reset (regardless of 'which').
3937 final Timer unoptimizedScanTimerBg =
3938 u.getBluetoothUnoptimizedScanBackgroundTimer();
3939 final long unoptimizedScanTotalTimeBg = unoptimizedScanTimerBg != null ?
3940 unoptimizedScanTimerBg.getTotalDurationMsLocked(rawRealtimeMs) : 0;
3941 final long unoptimizedScanMaxTimeBg = unoptimizedScanTimerBg != null ?
3942 unoptimizedScanTimerBg.getMaxDurationMsLocked(rawRealtimeMs) : 0;
3943
Bookatz867c0d72017-03-07 18:23:42 -08003944 dumpLine(pw, uid, category, BLUETOOTH_MISC_DATA, totalTime, count,
Bookatzb1f04f32017-05-19 13:57:32 -07003945 countBg, actualTime, actualTimeBg, resultCount, resultCountBg,
3946 unoptimizedScanTotalTime, unoptimizedScanTotalTimeBg,
3947 unoptimizedScanMaxTime, unoptimizedScanMaxTimeBg);
Bookatz867c0d72017-03-07 18:23:42 -08003948 }
3949 }
Adam Lesinskid9b99be2016-03-30 16:58:51 -07003950
Adam Lesinski9f55cc72016-01-27 20:42:14 -08003951 dumpControllerActivityLine(pw, uid, category, BLUETOOTH_CONTROLLER_DATA,
3952 u.getBluetoothControllerActivity(), which);
3953
Dianne Hackborn617f8772009-03-31 15:04:46 -07003954 if (u.hasUserActivity()) {
3955 args = new Object[Uid.NUM_USER_ACTIVITY_TYPES];
3956 boolean hasData = false;
3957 for (int i=0; i<Uid.NUM_USER_ACTIVITY_TYPES; i++) {
3958 int val = u.getUserActivityCount(i, which);
3959 args[i] = val;
3960 if (val != 0) hasData = true;
3961 }
3962 if (hasData) {
Ashish Sharmacba12152014-07-07 17:14:52 -07003963 dumpLine(pw, uid /* uid */, category, USER_ACTIVITY_DATA, args);
Dianne Hackborn617f8772009-03-31 15:04:46 -07003964 }
3965 }
Bookatzc8c44962017-05-11 12:12:54 -07003966
3967 if (u.getAggregatedPartialWakelockTimer() != null) {
3968 final Timer timer = u.getAggregatedPartialWakelockTimer();
Bookatz6d799932017-06-07 12:30:07 -07003969 // Times are since reset (regardless of 'which')
3970 final long totTimeMs = timer.getTotalDurationMsLocked(rawRealtimeMs);
Bookatzc8c44962017-05-11 12:12:54 -07003971 final Timer bgTimer = timer.getSubTimer();
3972 final long bgTimeMs = bgTimer != null ?
Bookatz6d799932017-06-07 12:30:07 -07003973 bgTimer.getTotalDurationMsLocked(rawRealtimeMs) : 0;
Bookatzc8c44962017-05-11 12:12:54 -07003974 dumpLine(pw, uid, category, AGGREGATED_WAKELOCK_DATA, totTimeMs, bgTimeMs);
3975 }
3976
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003977 final ArrayMap<String, ? extends Uid.Wakelock> wakelocks = u.getWakelockStats();
3978 for (int iw=wakelocks.size()-1; iw>=0; iw--) {
3979 final Uid.Wakelock wl = wakelocks.valueAt(iw);
3980 String linePrefix = "";
3981 sb.setLength(0);
3982 linePrefix = printWakeLockCheckin(sb, wl.getWakeTime(WAKE_TYPE_FULL),
3983 rawRealtime, "f", which, linePrefix);
Bookatz5b5ec322017-05-26 09:40:38 -07003984 final Timer pTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
3985 linePrefix = printWakeLockCheckin(sb, pTimer,
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003986 rawRealtime, "p", which, linePrefix);
Bookatz5b5ec322017-05-26 09:40:38 -07003987 linePrefix = printWakeLockCheckin(sb, pTimer != null ? pTimer.getSubTimer() : null,
3988 rawRealtime, "bp", which, linePrefix);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003989 linePrefix = printWakeLockCheckin(sb, wl.getWakeTime(WAKE_TYPE_WINDOW),
3990 rawRealtime, "w", which, linePrefix);
3991
Kweku Adams103351f2017-10-16 14:39:34 -07003992 // Only log if we had at least one wakelock...
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003993 if (sb.length() > 0) {
3994 String name = wakelocks.keyAt(iw);
3995 if (name.indexOf(',') >= 0) {
3996 name = name.replace(',', '_');
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003997 }
Yi Jin02483362017-08-04 11:30:44 -07003998 if (name.indexOf('\n') >= 0) {
3999 name = name.replace('\n', '_');
4000 }
4001 if (name.indexOf('\r') >= 0) {
4002 name = name.replace('\r', '_');
4003 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004004 dumpLine(pw, uid, category, WAKELOCK_DATA, name, sb.toString());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004005 }
4006 }
Dianne Hackborn61659e52014-07-09 16:13:01 -07004007
Ahmed ElArabawyddd09692017-10-30 17:58:29 -07004008 // WiFi Multicast Wakelock Statistics
4009 final Timer mcTimer = u.getMulticastWakelockStats();
4010 if (mcTimer != null) {
4011 final long totalMcWakelockTimeMs =
4012 mcTimer.getTotalTimeLocked(rawRealtime, which) / 1000 ;
4013 final int countMcWakelock = mcTimer.getCountLocked(which);
4014 if(totalMcWakelockTimeMs > 0) {
4015 dumpLine(pw, uid, category, WIFI_MULTICAST_DATA,
4016 totalMcWakelockTimeMs, countMcWakelock);
4017 }
4018 }
4019
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004020 final ArrayMap<String, ? extends Timer> syncs = u.getSyncStats();
4021 for (int isy=syncs.size()-1; isy>=0; isy--) {
4022 final Timer timer = syncs.valueAt(isy);
4023 // Convert from microseconds to milliseconds with rounding
4024 final long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000;
4025 final int count = timer.getCountLocked(which);
Bookatz2bffb5b2017-04-13 11:59:33 -07004026 final Timer bgTimer = timer.getSubTimer();
4027 final long bgTime = bgTimer != null ?
Bookatz6d799932017-06-07 12:30:07 -07004028 bgTimer.getTotalDurationMsLocked(rawRealtimeMs) : -1;
Bookatz2bffb5b2017-04-13 11:59:33 -07004029 final int bgCount = bgTimer != null ? bgTimer.getCountLocked(which) : -1;
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004030 if (totalTime != 0) {
Kweku Adamse0dd9c12017-03-08 08:12:15 -08004031 dumpLine(pw, uid, category, SYNC_DATA, "\"" + syncs.keyAt(isy) + "\"",
Bookatz2bffb5b2017-04-13 11:59:33 -07004032 totalTime, count, bgTime, bgCount);
Dianne Hackbornfdb19562014-07-11 16:03:36 -07004033 }
4034 }
4035
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004036 final ArrayMap<String, ? extends Timer> jobs = u.getJobStats();
4037 for (int ij=jobs.size()-1; ij>=0; ij--) {
4038 final Timer timer = jobs.valueAt(ij);
4039 // Convert from microseconds to milliseconds with rounding
4040 final long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000;
4041 final int count = timer.getCountLocked(which);
Bookatzaa4594a2017-03-24 12:39:56 -07004042 final Timer bgTimer = timer.getSubTimer();
4043 final long bgTime = bgTimer != null ?
Bookatz6d799932017-06-07 12:30:07 -07004044 bgTimer.getTotalDurationMsLocked(rawRealtimeMs) : -1;
Bookatzaa4594a2017-03-24 12:39:56 -07004045 final int bgCount = bgTimer != null ? bgTimer.getCountLocked(which) : -1;
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004046 if (totalTime != 0) {
Kweku Adamse0dd9c12017-03-08 08:12:15 -08004047 dumpLine(pw, uid, category, JOB_DATA, "\"" + jobs.keyAt(ij) + "\"",
Bookatzaa4594a2017-03-24 12:39:56 -07004048 totalTime, count, bgTime, bgCount);
Dianne Hackbornfdb19562014-07-11 16:03:36 -07004049 }
4050 }
4051
Dianne Hackborn94326cb2017-06-28 16:17:20 -07004052 final ArrayMap<String, SparseIntArray> completions = u.getJobCompletionStats();
4053 for (int ic=completions.size()-1; ic>=0; ic--) {
4054 SparseIntArray types = completions.valueAt(ic);
4055 if (types != null) {
4056 dumpLine(pw, uid, category, JOB_COMPLETION_DATA,
4057 "\"" + completions.keyAt(ic) + "\"",
4058 types.get(JobParameters.REASON_CANCELED, 0),
4059 types.get(JobParameters.REASON_CONSTRAINTS_NOT_SATISFIED, 0),
4060 types.get(JobParameters.REASON_PREEMPT, 0),
4061 types.get(JobParameters.REASON_TIMEOUT, 0),
4062 types.get(JobParameters.REASON_DEVICE_IDLE, 0));
4063 }
4064 }
4065
Ruben Brunk6d2c3632015-05-26 17:32:16 -07004066 dumpTimer(pw, uid, category, FLASHLIGHT_DATA, u.getFlashlightTurnedOnTimer(),
4067 rawRealtime, which);
4068 dumpTimer(pw, uid, category, CAMERA_DATA, u.getCameraTurnedOnTimer(),
4069 rawRealtime, which);
4070 dumpTimer(pw, uid, category, VIDEO_DATA, u.getVideoTurnedOnTimer(),
4071 rawRealtime, which);
4072 dumpTimer(pw, uid, category, AUDIO_DATA, u.getAudioTurnedOnTimer(),
4073 rawRealtime, which);
4074
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004075 final SparseArray<? extends BatteryStats.Uid.Sensor> sensors = u.getSensorStats();
4076 final int NSE = sensors.size();
Dianne Hackborn61659e52014-07-09 16:13:01 -07004077 for (int ise=0; ise<NSE; ise++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004078 final Uid.Sensor se = sensors.valueAt(ise);
4079 final int sensorNumber = sensors.keyAt(ise);
4080 final Timer timer = se.getSensorTime();
Dianne Hackborn61659e52014-07-09 16:13:01 -07004081 if (timer != null) {
4082 // Convert from microseconds to milliseconds with rounding
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004083 final long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500)
4084 / 1000;
Dianne Hackborn61659e52014-07-09 16:13:01 -07004085 if (totalTime != 0) {
Bookatz867c0d72017-03-07 18:23:42 -08004086 final int count = timer.getCountLocked(which);
4087 final Timer bgTimer = se.getSensorBackgroundTime();
4088 final int bgCount = bgTimer != null ? bgTimer.getCountLocked(which) : 0;
Bookatz867c0d72017-03-07 18:23:42 -08004089 // 'actualTime' are unpooled and always since reset (regardless of 'which')
4090 final long actualTime = timer.getTotalDurationMsLocked(rawRealtimeMs);
4091 final long bgActualTime = bgTimer != null ?
4092 bgTimer.getTotalDurationMsLocked(rawRealtimeMs) : 0;
4093 dumpLine(pw, uid, category, SENSOR_DATA, sensorNumber, totalTime,
4094 count, bgCount, actualTime, bgActualTime);
Dianne Hackborn61659e52014-07-09 16:13:01 -07004095 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004096 }
4097 }
4098
Ruben Brunk6d2c3632015-05-26 17:32:16 -07004099 dumpTimer(pw, uid, category, VIBRATOR_DATA, u.getVibratorOnTimer(),
4100 rawRealtime, which);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08004101
Michael Wachenschwanzb05a3c52017-07-07 17:47:04 -07004102 dumpTimer(pw, uid, category, FOREGROUND_ACTIVITY_DATA, u.getForegroundActivityTimer(),
4103 rawRealtime, which);
4104
4105 dumpTimer(pw, uid, category, FOREGROUND_SERVICE_DATA, u.getForegroundServiceTimer(),
Ruben Brunk6d2c3632015-05-26 17:32:16 -07004106 rawRealtime, which);
Jeff Sharkey3e013e82013-04-25 14:48:19 -07004107
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004108 final Object[] stateTimes = new Object[Uid.NUM_PROCESS_STATE];
Dianne Hackborn61659e52014-07-09 16:13:01 -07004109 long totalStateTime = 0;
4110 for (int ips=0; ips<Uid.NUM_PROCESS_STATE; ips++) {
Dianne Hackborna8d10942015-11-19 17:55:19 -08004111 final long time = u.getProcessStateTime(ips, rawRealtime, which);
4112 totalStateTime += time;
4113 stateTimes[ips] = (time + 500) / 1000;
Dianne Hackborn61659e52014-07-09 16:13:01 -07004114 }
4115 if (totalStateTime > 0) {
4116 dumpLine(pw, uid, category, STATE_TIME_DATA, stateTimes);
4117 }
4118
Adam Lesinskia7a4ccc2015-06-26 17:43:04 -07004119 final long userCpuTimeUs = u.getUserCpuTimeUs(which);
4120 final long systemCpuTimeUs = u.getSystemCpuTimeUs(which);
Adam Lesinskid4abd1e2017-04-12 11:29:13 -07004121 if (userCpuTimeUs > 0 || systemCpuTimeUs > 0) {
Adam Lesinskia7a4ccc2015-06-26 17:43:04 -07004122 dumpLine(pw, uid, category, CPU_DATA, userCpuTimeUs / 1000, systemCpuTimeUs / 1000,
Adam Lesinskid4abd1e2017-04-12 11:29:13 -07004123 0 /* old cpu power, keep for compatibility */);
Adam Lesinskia7a4ccc2015-06-26 17:43:04 -07004124 }
4125
Sudheer Shankaa87245d2017-08-10 12:02:31 -07004126 // If the cpuFreqs is null, then don't bother checking for cpu freq times.
4127 if (cpuFreqs != null) {
4128 final long[] cpuFreqTimeMs = u.getCpuFreqTimes(which);
4129 // If total cpuFreqTimes is null, then we don't need to check for
4130 // screenOffCpuFreqTimes.
4131 if (cpuFreqTimeMs != null && cpuFreqTimeMs.length == cpuFreqs.length) {
4132 sb.setLength(0);
Sudheer Shanka9b735c52017-05-09 18:26:18 -07004133 for (int i = 0; i < cpuFreqTimeMs.length; ++i) {
Sudheer Shankaa87245d2017-08-10 12:02:31 -07004134 sb.append((i == 0 ? "" : ",") + cpuFreqTimeMs[i]);
Sudheer Shanka9b735c52017-05-09 18:26:18 -07004135 }
Sudheer Shankaa87245d2017-08-10 12:02:31 -07004136 final long[] screenOffCpuFreqTimeMs = u.getScreenOffCpuFreqTimes(which);
4137 if (screenOffCpuFreqTimeMs != null) {
4138 for (int i = 0; i < screenOffCpuFreqTimeMs.length; ++i) {
4139 sb.append("," + screenOffCpuFreqTimeMs[i]);
4140 }
4141 } else {
4142 for (int i = 0; i < cpuFreqTimeMs.length; ++i) {
4143 sb.append(",0");
4144 }
4145 }
4146 dumpLine(pw, uid, category, CPU_TIMES_AT_FREQ_DATA, UID_TIMES_TYPE_ALL,
4147 cpuFreqTimeMs.length, sb.toString());
Sudheer Shanka9b735c52017-05-09 18:26:18 -07004148 }
Sudheer Shankab2f83c12017-11-13 19:25:01 -08004149
4150 for (int procState = 0; procState < Uid.NUM_PROCESS_STATE; ++procState) {
4151 final long[] timesMs = u.getCpuFreqTimes(which, procState);
4152 if (timesMs != null && timesMs.length == cpuFreqs.length) {
4153 sb.setLength(0);
4154 for (int i = 0; i < timesMs.length; ++i) {
4155 sb.append((i == 0 ? "" : ",") + timesMs[i]);
4156 }
4157 final long[] screenOffTimesMs = u.getScreenOffCpuFreqTimes(
4158 which, procState);
4159 if (screenOffTimesMs != null) {
4160 for (int i = 0; i < screenOffTimesMs.length; ++i) {
4161 sb.append("," + screenOffTimesMs[i]);
4162 }
4163 } else {
4164 for (int i = 0; i < timesMs.length; ++i) {
4165 sb.append(",0");
4166 }
4167 }
4168 dumpLine(pw, uid, category, CPU_TIMES_AT_FREQ_DATA,
4169 Uid.UID_PROCESS_TYPES[procState], timesMs.length, sb.toString());
4170 }
4171 }
Sudheer Shanka9b735c52017-05-09 18:26:18 -07004172 }
4173
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004174 final ArrayMap<String, ? extends BatteryStats.Uid.Proc> processStats
4175 = u.getProcessStats();
4176 for (int ipr=processStats.size()-1; ipr>=0; ipr--) {
4177 final Uid.Proc ps = processStats.valueAt(ipr);
Jeff Sharkey3e013e82013-04-25 14:48:19 -07004178
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004179 final long userMillis = ps.getUserTime(which);
4180 final long systemMillis = ps.getSystemTime(which);
4181 final long foregroundMillis = ps.getForegroundTime(which);
4182 final int starts = ps.getStarts(which);
4183 final int numCrashes = ps.getNumCrashes(which);
4184 final int numAnrs = ps.getNumAnrs(which);
Jeff Sharkey3e013e82013-04-25 14:48:19 -07004185
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004186 if (userMillis != 0 || systemMillis != 0 || foregroundMillis != 0
4187 || starts != 0 || numAnrs != 0 || numCrashes != 0) {
Kweku Adamse0dd9c12017-03-08 08:12:15 -08004188 dumpLine(pw, uid, category, PROCESS_DATA, "\"" + processStats.keyAt(ipr) + "\"",
4189 userMillis, systemMillis, foregroundMillis, starts, numAnrs, numCrashes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004190 }
4191 }
4192
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004193 final ArrayMap<String, ? extends BatteryStats.Uid.Pkg> packageStats
4194 = u.getPackageStats();
4195 for (int ipkg=packageStats.size()-1; ipkg>=0; ipkg--) {
4196 final Uid.Pkg ps = packageStats.valueAt(ipkg);
4197 int wakeups = 0;
4198 final ArrayMap<String, ? extends Counter> alarms = ps.getWakeupAlarmStats();
4199 for (int iwa=alarms.size()-1; iwa>=0; iwa--) {
Joe Onorato1476d322016-05-05 14:46:15 -07004200 int count = alarms.valueAt(iwa).getCountLocked(which);
4201 wakeups += count;
4202 String name = alarms.keyAt(iwa).replace(',', '_');
4203 dumpLine(pw, uid, category, WAKEUP_ALARM_DATA, name, count);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004204 }
4205 final ArrayMap<String, ? extends Uid.Pkg.Serv> serviceStats = ps.getServiceStats();
4206 for (int isvc=serviceStats.size()-1; isvc>=0; isvc--) {
4207 final BatteryStats.Uid.Pkg.Serv ss = serviceStats.valueAt(isvc);
4208 final long startTime = ss.getStartTime(batteryUptime, which);
4209 final int starts = ss.getStarts(which);
4210 final int launches = ss.getLaunches(which);
4211 if (startTime != 0 || starts != 0 || launches != 0) {
4212 dumpLine(pw, uid, category, APK_DATA,
4213 wakeups, // wakeup alarms
4214 packageStats.keyAt(ipkg), // Apk
4215 serviceStats.keyAt(isvc), // service
4216 startTime / 1000, // time spent started, in ms
4217 starts,
4218 launches);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004219 }
4220 }
4221 }
4222 }
4223 }
4224
Dianne Hackborn81038902012-11-26 17:04:09 -08004225 static final class TimerEntry {
4226 final String mName;
4227 final int mId;
4228 final BatteryStats.Timer mTimer;
4229 final long mTime;
4230 TimerEntry(String name, int id, BatteryStats.Timer timer, long time) {
4231 mName = name;
4232 mId = id;
4233 mTimer = timer;
4234 mTime = time;
4235 }
4236 }
4237
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004238 private void printmAh(PrintWriter printer, double power) {
4239 printer.print(BatteryStatsHelper.makemAh(power));
4240 }
4241
Adam Lesinskia7a4ccc2015-06-26 17:43:04 -07004242 private void printmAh(StringBuilder sb, double power) {
4243 sb.append(BatteryStatsHelper.makemAh(power));
4244 }
4245
Dianne Hackbornd953c532014-08-16 18:17:38 -07004246 /**
4247 * Temporary for settings.
4248 */
4249 public final void dumpLocked(Context context, PrintWriter pw, String prefix, int which,
4250 int reqUid) {
4251 dumpLocked(context, pw, prefix, which, reqUid, BatteryStatsHelper.checkWifiOnly(context));
4252 }
4253
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004254 @SuppressWarnings("unused")
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004255 public final void dumpLocked(Context context, PrintWriter pw, String prefix, final int which,
Dianne Hackbornd953c532014-08-16 18:17:38 -07004256 int reqUid, boolean wifiOnly) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004257 final long rawUptime = SystemClock.uptimeMillis() * 1000;
4258 final long rawRealtime = SystemClock.elapsedRealtime() * 1000;
Bookatz6d799932017-06-07 12:30:07 -07004259 final long rawRealtimeMs = (rawRealtime + 500) / 1000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004260 final long batteryUptime = getBatteryUptime(rawUptime);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004261
4262 final long whichBatteryUptime = computeBatteryUptime(rawUptime, which);
4263 final long whichBatteryRealtime = computeBatteryRealtime(rawRealtime, which);
4264 final long totalRealtime = computeRealtime(rawRealtime, which);
4265 final long totalUptime = computeUptime(rawUptime, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004266 final long whichBatteryScreenOffUptime = computeBatteryScreenOffUptime(rawUptime, which);
4267 final long whichBatteryScreenOffRealtime = computeBatteryScreenOffRealtime(rawRealtime,
4268 which);
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07004269 final long batteryTimeRemaining = computeBatteryTimeRemaining(rawRealtime);
4270 final long chargeTimeRemaining = computeChargeTimeRemaining(rawRealtime);
Mike Mac2f518a2017-09-19 16:06:03 -07004271 final long screenDozeTime = getScreenDozeTime(rawRealtime, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004272
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004273 final StringBuilder sb = new StringBuilder(128);
Bookatzc8c44962017-05-11 12:12:54 -07004274
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004275 final SparseArray<? extends Uid> uidStats = getUidStats();
Evan Millar22ac0432009-03-31 11:33:18 -07004276 final int NU = uidStats.size();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004277
Adam Lesinskif9b20a92016-06-17 17:30:01 -07004278 final int estimatedBatteryCapacity = getEstimatedBatteryCapacity();
4279 if (estimatedBatteryCapacity > 0) {
4280 sb.setLength(0);
4281 sb.append(prefix);
4282 sb.append(" Estimated battery capacity: ");
4283 sb.append(BatteryStatsHelper.makemAh(estimatedBatteryCapacity));
4284 sb.append(" mAh");
4285 pw.println(sb.toString());
4286 }
4287
Jocelyn Dangc627d102017-04-14 13:15:14 -07004288 final int minLearnedBatteryCapacity = getMinLearnedBatteryCapacity();
4289 if (minLearnedBatteryCapacity > 0) {
4290 sb.setLength(0);
4291 sb.append(prefix);
4292 sb.append(" Min learned battery capacity: ");
4293 sb.append(BatteryStatsHelper.makemAh(minLearnedBatteryCapacity / 1000));
4294 sb.append(" mAh");
4295 pw.println(sb.toString());
4296 }
4297 final int maxLearnedBatteryCapacity = getMaxLearnedBatteryCapacity();
4298 if (maxLearnedBatteryCapacity > 0) {
4299 sb.setLength(0);
4300 sb.append(prefix);
4301 sb.append(" Max learned battery capacity: ");
4302 sb.append(BatteryStatsHelper.makemAh(maxLearnedBatteryCapacity / 1000));
4303 sb.append(" mAh");
4304 pw.println(sb.toString());
4305 }
4306
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004307 sb.setLength(0);
4308 sb.append(prefix);
Mike Mac2f518a2017-09-19 16:06:03 -07004309 sb.append(" Time on battery: ");
4310 formatTimeMs(sb, whichBatteryRealtime / 1000); sb.append("(");
4311 sb.append(formatRatioLocked(whichBatteryRealtime, totalRealtime));
4312 sb.append(") realtime, ");
4313 formatTimeMs(sb, whichBatteryUptime / 1000);
4314 sb.append("("); sb.append(formatRatioLocked(whichBatteryUptime, whichBatteryRealtime));
4315 sb.append(") uptime");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004316 pw.println(sb.toString());
Mike Mac2f518a2017-09-19 16:06:03 -07004317
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004318 sb.setLength(0);
4319 sb.append(prefix);
Mike Mac2f518a2017-09-19 16:06:03 -07004320 sb.append(" Time on battery screen off: ");
4321 formatTimeMs(sb, whichBatteryScreenOffRealtime / 1000); sb.append("(");
4322 sb.append(formatRatioLocked(whichBatteryScreenOffRealtime, whichBatteryRealtime));
4323 sb.append(") realtime, ");
4324 formatTimeMs(sb, whichBatteryScreenOffUptime / 1000);
4325 sb.append("(");
4326 sb.append(formatRatioLocked(whichBatteryScreenOffUptime, whichBatteryRealtime));
4327 sb.append(") uptime");
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004328 pw.println(sb.toString());
Mike Mac2f518a2017-09-19 16:06:03 -07004329
4330 sb.setLength(0);
4331 sb.append(prefix);
4332 sb.append(" Time on battery screen doze: ");
4333 formatTimeMs(sb, screenDozeTime / 1000); sb.append("(");
4334 sb.append(formatRatioLocked(screenDozeTime, whichBatteryRealtime));
4335 sb.append(")");
4336 pw.println(sb.toString());
4337
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004338 sb.setLength(0);
4339 sb.append(prefix);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004340 sb.append(" Total run time: ");
4341 formatTimeMs(sb, totalRealtime / 1000);
4342 sb.append("realtime, ");
4343 formatTimeMs(sb, totalUptime / 1000);
Dianne Hackborn77b987f2014-02-26 16:20:52 -08004344 sb.append("uptime");
Jeff Browne95c3cd2014-05-02 16:59:26 -07004345 pw.println(sb.toString());
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07004346 if (batteryTimeRemaining >= 0) {
4347 sb.setLength(0);
4348 sb.append(prefix);
4349 sb.append(" Battery time remaining: ");
4350 formatTimeMs(sb, batteryTimeRemaining / 1000);
4351 pw.println(sb.toString());
4352 }
4353 if (chargeTimeRemaining >= 0) {
4354 sb.setLength(0);
4355 sb.append(prefix);
4356 sb.append(" Charge time remaining: ");
4357 formatTimeMs(sb, chargeTimeRemaining / 1000);
4358 pw.println(sb.toString());
4359 }
Adam Lesinski3ee3f632016-06-08 13:55:55 -07004360
Kweku Adams87b19ec2017-10-09 12:40:03 -07004361 final long dischargeCount = getUahDischarge(which);
Adam Lesinski3ee3f632016-06-08 13:55:55 -07004362 if (dischargeCount >= 0) {
4363 sb.setLength(0);
4364 sb.append(prefix);
4365 sb.append(" Discharge: ");
4366 sb.append(BatteryStatsHelper.makemAh(dischargeCount / 1000.0));
4367 sb.append(" mAh");
4368 pw.println(sb.toString());
4369 }
4370
Kweku Adams87b19ec2017-10-09 12:40:03 -07004371 final long dischargeScreenOffCount = getUahDischargeScreenOff(which);
Adam Lesinski3ee3f632016-06-08 13:55:55 -07004372 if (dischargeScreenOffCount >= 0) {
4373 sb.setLength(0);
4374 sb.append(prefix);
4375 sb.append(" Screen off discharge: ");
4376 sb.append(BatteryStatsHelper.makemAh(dischargeScreenOffCount / 1000.0));
4377 sb.append(" mAh");
4378 pw.println(sb.toString());
4379 }
4380
Kweku Adams87b19ec2017-10-09 12:40:03 -07004381 final long dischargeScreenDozeCount = getUahDischargeScreenDoze(which);
Mike Mac2f518a2017-09-19 16:06:03 -07004382 if (dischargeScreenDozeCount >= 0) {
4383 sb.setLength(0);
4384 sb.append(prefix);
4385 sb.append(" Screen doze discharge: ");
4386 sb.append(BatteryStatsHelper.makemAh(dischargeScreenDozeCount / 1000.0));
4387 sb.append(" mAh");
4388 pw.println(sb.toString());
4389 }
4390
4391 final long dischargeScreenOnCount =
4392 dischargeCount - dischargeScreenOffCount - dischargeScreenDozeCount;
Adam Lesinski3ee3f632016-06-08 13:55:55 -07004393 if (dischargeScreenOnCount >= 0) {
4394 sb.setLength(0);
4395 sb.append(prefix);
4396 sb.append(" Screen on discharge: ");
4397 sb.append(BatteryStatsHelper.makemAh(dischargeScreenOnCount / 1000.0));
4398 sb.append(" mAh");
4399 pw.println(sb.toString());
4400 }
4401
Mike Ma15313c92017-11-15 17:58:21 -08004402 final long dischargeLightDozeCount = getUahDischargeLightDoze(which);
4403 if (dischargeLightDozeCount >= 0) {
4404 sb.setLength(0);
4405 sb.append(prefix);
4406 sb.append(" Device light doze discharge: ");
4407 sb.append(BatteryStatsHelper.makemAh(dischargeLightDozeCount / 1000.0));
4408 sb.append(" mAh");
4409 pw.println(sb.toString());
4410 }
4411
4412 final long dischargeDeepDozeCount = getUahDischargeDeepDoze(which);
4413 if (dischargeDeepDozeCount >= 0) {
4414 sb.setLength(0);
4415 sb.append(prefix);
4416 sb.append(" Device deep doze discharge: ");
4417 sb.append(BatteryStatsHelper.makemAh(dischargeDeepDozeCount / 1000.0));
4418 sb.append(" mAh");
4419 pw.println(sb.toString());
4420 }
4421
Dianne Hackborn5f4a5f92014-01-24 16:59:34 -08004422 pw.print(" Start clock time: ");
4423 pw.println(DateFormat.format("yyyy-MM-dd-HH-mm-ss", getStartClockTime()).toString());
4424
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004425 final long screenOnTime = getScreenOnTime(rawRealtime, which);
Jeff Browne95c3cd2014-05-02 16:59:26 -07004426 final long interactiveTime = getInteractiveTime(rawRealtime, which);
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004427 final long powerSaveModeEnabledTime = getPowerSaveModeEnabledTime(rawRealtime, which);
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004428 final long deviceIdleModeLightTime = getDeviceIdleModeTime(DEVICE_IDLE_MODE_LIGHT,
4429 rawRealtime, which);
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07004430 final long deviceIdleModeFullTime = getDeviceIdleModeTime(DEVICE_IDLE_MODE_DEEP,
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004431 rawRealtime, which);
4432 final long deviceLightIdlingTime = getDeviceIdlingTime(DEVICE_IDLE_MODE_LIGHT,
4433 rawRealtime, which);
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07004434 final long deviceIdlingTime = getDeviceIdlingTime(DEVICE_IDLE_MODE_DEEP,
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004435 rawRealtime, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004436 final long phoneOnTime = getPhoneOnTime(rawRealtime, which);
4437 final long wifiRunningTime = getGlobalWifiRunningTime(rawRealtime, which);
4438 final long wifiOnTime = getWifiOnTime(rawRealtime, which);
Dianne Hackborn617f8772009-03-31 15:04:46 -07004439 sb.setLength(0);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004440 sb.append(prefix);
4441 sb.append(" Screen on: "); formatTimeMs(sb, screenOnTime / 1000);
4442 sb.append("("); sb.append(formatRatioLocked(screenOnTime, whichBatteryRealtime));
Dianne Hackborn77b987f2014-02-26 16:20:52 -08004443 sb.append(") "); sb.append(getScreenOnCount(which));
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07004444 sb.append("x, Interactive: "); formatTimeMs(sb, interactiveTime / 1000);
4445 sb.append("("); sb.append(formatRatioLocked(interactiveTime, whichBatteryRealtime));
Jeff Browne95c3cd2014-05-02 16:59:26 -07004446 sb.append(")");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004447 pw.println(sb.toString());
4448 sb.setLength(0);
4449 sb.append(prefix);
Dianne Hackborn77b987f2014-02-26 16:20:52 -08004450 sb.append(" Screen brightnesses:");
Dianne Hackborn617f8772009-03-31 15:04:46 -07004451 boolean didOne = false;
4452 for (int i=0; i<NUM_SCREEN_BRIGHTNESS_BINS; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004453 final long time = getScreenBrightnessTime(i, rawRealtime, which);
Dianne Hackborn617f8772009-03-31 15:04:46 -07004454 if (time == 0) {
4455 continue;
4456 }
Dianne Hackborn77b987f2014-02-26 16:20:52 -08004457 sb.append("\n ");
4458 sb.append(prefix);
Dianne Hackborn617f8772009-03-31 15:04:46 -07004459 didOne = true;
4460 sb.append(SCREEN_BRIGHTNESS_NAMES[i]);
4461 sb.append(" ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004462 formatTimeMs(sb, time/1000);
Dianne Hackborn617f8772009-03-31 15:04:46 -07004463 sb.append("(");
4464 sb.append(formatRatioLocked(time, screenOnTime));
4465 sb.append(")");
4466 }
Dianne Hackborn77b987f2014-02-26 16:20:52 -08004467 if (!didOne) sb.append(" (no activity)");
Dianne Hackborn617f8772009-03-31 15:04:46 -07004468 pw.println(sb.toString());
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004469 if (powerSaveModeEnabledTime != 0) {
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07004470 sb.setLength(0);
4471 sb.append(prefix);
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004472 sb.append(" Power save mode enabled: ");
4473 formatTimeMs(sb, powerSaveModeEnabledTime / 1000);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07004474 sb.append("(");
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004475 sb.append(formatRatioLocked(powerSaveModeEnabledTime, whichBatteryRealtime));
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07004476 sb.append(")");
4477 pw.println(sb.toString());
4478 }
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004479 if (deviceLightIdlingTime != 0) {
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004480 sb.setLength(0);
4481 sb.append(prefix);
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004482 sb.append(" Device light idling: ");
4483 formatTimeMs(sb, deviceLightIdlingTime / 1000);
Dianne Hackborn88e98df2015-03-23 13:29:14 -07004484 sb.append("(");
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004485 sb.append(formatRatioLocked(deviceLightIdlingTime, whichBatteryRealtime));
4486 sb.append(") "); sb.append(getDeviceIdlingCount(DEVICE_IDLE_MODE_LIGHT, which));
Dianne Hackborn88e98df2015-03-23 13:29:14 -07004487 sb.append("x");
4488 pw.println(sb.toString());
4489 }
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004490 if (deviceIdleModeLightTime != 0) {
Dianne Hackborn88e98df2015-03-23 13:29:14 -07004491 sb.setLength(0);
4492 sb.append(prefix);
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004493 sb.append(" Idle mode light time: ");
4494 formatTimeMs(sb, deviceIdleModeLightTime / 1000);
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004495 sb.append("(");
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004496 sb.append(formatRatioLocked(deviceIdleModeLightTime, whichBatteryRealtime));
4497 sb.append(") ");
4498 sb.append(getDeviceIdleModeCount(DEVICE_IDLE_MODE_LIGHT, which));
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004499 sb.append("x");
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004500 sb.append(" -- longest ");
4501 formatTimeMs(sb, getLongestDeviceIdleModeTime(DEVICE_IDLE_MODE_LIGHT));
4502 pw.println(sb.toString());
4503 }
4504 if (deviceIdlingTime != 0) {
4505 sb.setLength(0);
4506 sb.append(prefix);
4507 sb.append(" Device full idling: ");
4508 formatTimeMs(sb, deviceIdlingTime / 1000);
4509 sb.append("(");
4510 sb.append(formatRatioLocked(deviceIdlingTime, whichBatteryRealtime));
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07004511 sb.append(") "); sb.append(getDeviceIdlingCount(DEVICE_IDLE_MODE_DEEP, which));
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004512 sb.append("x");
4513 pw.println(sb.toString());
4514 }
4515 if (deviceIdleModeFullTime != 0) {
4516 sb.setLength(0);
4517 sb.append(prefix);
4518 sb.append(" Idle mode full time: ");
4519 formatTimeMs(sb, deviceIdleModeFullTime / 1000);
4520 sb.append("(");
4521 sb.append(formatRatioLocked(deviceIdleModeFullTime, whichBatteryRealtime));
4522 sb.append(") ");
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07004523 sb.append(getDeviceIdleModeCount(DEVICE_IDLE_MODE_DEEP, which));
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004524 sb.append("x");
4525 sb.append(" -- longest ");
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07004526 formatTimeMs(sb, getLongestDeviceIdleModeTime(DEVICE_IDLE_MODE_DEEP));
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004527 pw.println(sb.toString());
4528 }
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07004529 if (phoneOnTime != 0) {
4530 sb.setLength(0);
4531 sb.append(prefix);
4532 sb.append(" Active phone call: "); formatTimeMs(sb, phoneOnTime / 1000);
4533 sb.append("("); sb.append(formatRatioLocked(phoneOnTime, whichBatteryRealtime));
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004534 sb.append(") "); sb.append(getPhoneOnCount(which)); sb.append("x");
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07004535 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004536 final int connChanges = getNumConnectivityChange(which);
Dianne Hackborn1e01d162014-12-04 17:46:42 -08004537 if (connChanges != 0) {
4538 pw.print(prefix);
4539 pw.print(" Connectivity changes: "); pw.println(connChanges);
4540 }
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07004541
Ahmed ElArabawyf88571f2017-11-28 12:18:10 -08004542 // Calculate wakelock times across all uids.
Evan Millar22ac0432009-03-31 11:33:18 -07004543 long fullWakeLockTimeTotalMicros = 0;
4544 long partialWakeLockTimeTotalMicros = 0;
Dianne Hackborn81038902012-11-26 17:04:09 -08004545
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004546 final ArrayList<TimerEntry> timers = new ArrayList<>();
Dianne Hackborn81038902012-11-26 17:04:09 -08004547
Evan Millar22ac0432009-03-31 11:33:18 -07004548 for (int iu = 0; iu < NU; iu++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004549 final Uid u = uidStats.valueAt(iu);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07004550
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004551 final ArrayMap<String, ? extends BatteryStats.Uid.Wakelock> wakelocks
4552 = u.getWakelockStats();
4553 for (int iw=wakelocks.size()-1; iw>=0; iw--) {
4554 final Uid.Wakelock wl = wakelocks.valueAt(iw);
Evan Millar22ac0432009-03-31 11:33:18 -07004555
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004556 final Timer fullWakeTimer = wl.getWakeTime(WAKE_TYPE_FULL);
4557 if (fullWakeTimer != null) {
4558 fullWakeLockTimeTotalMicros += fullWakeTimer.getTotalTimeLocked(
4559 rawRealtime, which);
4560 }
4561
4562 final Timer partialWakeTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
4563 if (partialWakeTimer != null) {
4564 final long totalTimeMicros = partialWakeTimer.getTotalTimeLocked(
4565 rawRealtime, which);
4566 if (totalTimeMicros > 0) {
4567 if (reqUid < 0) {
4568 // Only show the ordered list of all wake
4569 // locks if the caller is not asking for data
4570 // about a specific uid.
4571 timers.add(new TimerEntry(wakelocks.keyAt(iw), u.getUid(),
4572 partialWakeTimer, totalTimeMicros));
Dianne Hackborn81038902012-11-26 17:04:09 -08004573 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004574 partialWakeLockTimeTotalMicros += totalTimeMicros;
Evan Millar22ac0432009-03-31 11:33:18 -07004575 }
4576 }
4577 }
4578 }
Bookatzc8c44962017-05-11 12:12:54 -07004579
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004580 final long mobileRxTotalBytes = getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which);
4581 final long mobileTxTotalBytes = getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which);
4582 final long wifiRxTotalBytes = getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which);
4583 final long wifiTxTotalBytes = getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which);
4584 final long mobileRxTotalPackets = getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which);
4585 final long mobileTxTotalPackets = getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which);
4586 final long wifiRxTotalPackets = getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which);
4587 final long wifiTxTotalPackets = getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which);
Adam Lesinski50e47602015-12-04 17:04:54 -08004588 final long btRxTotalBytes = getNetworkActivityBytes(NETWORK_BT_RX_DATA, which);
4589 final long btTxTotalBytes = getNetworkActivityBytes(NETWORK_BT_TX_DATA, which);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004590
Dianne Hackborn77b987f2014-02-26 16:20:52 -08004591 if (fullWakeLockTimeTotalMicros != 0) {
4592 sb.setLength(0);
4593 sb.append(prefix);
4594 sb.append(" Total full wakelock time: "); formatTimeMsNoSpace(sb,
4595 (fullWakeLockTimeTotalMicros + 500) / 1000);
4596 pw.println(sb.toString());
4597 }
4598
4599 if (partialWakeLockTimeTotalMicros != 0) {
4600 sb.setLength(0);
4601 sb.append(prefix);
4602 sb.append(" Total partial wakelock time: "); formatTimeMsNoSpace(sb,
4603 (partialWakeLockTimeTotalMicros + 500) / 1000);
4604 pw.println(sb.toString());
4605 }
4606
Ahmed ElArabawyf88571f2017-11-28 12:18:10 -08004607 final long multicastWakeLockTimeTotalMicros =
4608 getWifiMulticastWakelockTime(rawRealtime, which);
4609 final int multicastWakeLockCountTotal = getWifiMulticastWakelockCount(which);
Ahmed ElArabawyddd09692017-10-30 17:58:29 -07004610 if (multicastWakeLockTimeTotalMicros != 0) {
4611 sb.setLength(0);
4612 sb.append(prefix);
4613 sb.append(" Total WiFi Multicast wakelock Count: ");
4614 sb.append(multicastWakeLockCountTotal);
4615 pw.println(sb.toString());
4616
4617 sb.setLength(0);
4618 sb.append(prefix);
4619 sb.append(" Total WiFi Multicast wakelock time: ");
4620 formatTimeMsNoSpace(sb, (multicastWakeLockTimeTotalMicros + 500) / 1000);
4621 pw.println(sb.toString());
4622 }
4623
Siddharth Ray3c648c42017-10-02 17:30:58 -07004624 pw.println("");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004625 pw.print(prefix);
Dianne Hackborn627bba72009-03-24 22:32:56 -07004626 sb.setLength(0);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004627 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004628 sb.append(" CONNECTIVITY POWER SUMMARY START");
4629 pw.println(sb.toString());
4630
4631 pw.print(prefix);
4632 sb.setLength(0);
4633 sb.append(prefix);
4634 sb.append(" Logging duration for connectivity statistics: ");
4635 formatTimeMs(sb, whichBatteryRealtime / 1000);
Dianne Hackborn627bba72009-03-24 22:32:56 -07004636 pw.println(sb.toString());
Amith Yamasanif37447b2009-10-08 18:28:01 -07004637
4638 sb.setLength(0);
4639 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004640 sb.append(" Cellular Statistics:");
Amith Yamasanif37447b2009-10-08 18:28:01 -07004641 pw.println(sb.toString());
4642
Siddharth Ray3c648c42017-10-02 17:30:58 -07004643 pw.print(prefix);
4644 sb.setLength(0);
4645 sb.append(prefix);
4646 sb.append(" Cellular kernel active time: ");
4647 final long mobileActiveTime = getMobileRadioActiveTime(rawRealtime, which);
4648 formatTimeMs(sb, mobileActiveTime / 1000);
4649 sb.append("("); sb.append(formatRatioLocked(mobileActiveTime, whichBatteryRealtime));
4650 sb.append(")");
4651 pw.println(sb.toString());
4652
4653 pw.print(" Cellular data received: "); pw.println(formatBytesLocked(mobileRxTotalBytes));
4654 pw.print(" Cellular data sent: "); pw.println(formatBytesLocked(mobileTxTotalBytes));
4655 pw.print(" Cellular packets received: "); pw.println(mobileRxTotalPackets);
4656 pw.print(" Cellular packets sent: "); pw.println(mobileTxTotalPackets);
4657
Dianne Hackborn627bba72009-03-24 22:32:56 -07004658 sb.setLength(0);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004659 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004660 sb.append(" Cellular Radio Access Technology:");
Dianne Hackborn627bba72009-03-24 22:32:56 -07004661 didOne = false;
4662 for (int i=0; i<NUM_DATA_CONNECTION_TYPES; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004663 final long time = getPhoneDataConnectionTime(i, rawRealtime, which);
Dianne Hackborn627bba72009-03-24 22:32:56 -07004664 if (time == 0) {
4665 continue;
4666 }
Siddharth Ray3c648c42017-10-02 17:30:58 -07004667 sb.append("\n ");
Dianne Hackborn77b987f2014-02-26 16:20:52 -08004668 sb.append(prefix);
Dianne Hackborn627bba72009-03-24 22:32:56 -07004669 didOne = true;
4670 sb.append(DATA_CONNECTION_NAMES[i]);
4671 sb.append(" ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004672 formatTimeMs(sb, time/1000);
Dianne Hackborn627bba72009-03-24 22:32:56 -07004673 sb.append("(");
4674 sb.append(formatRatioLocked(time, whichBatteryRealtime));
Dianne Hackborn617f8772009-03-31 15:04:46 -07004675 sb.append(") ");
Dianne Hackborn627bba72009-03-24 22:32:56 -07004676 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08004677 if (!didOne) sb.append(" (no activity)");
Dianne Hackborn627bba72009-03-24 22:32:56 -07004678 pw.println(sb.toString());
Amith Yamasani3f7e35c2009-07-13 16:02:45 -07004679
4680 sb.setLength(0);
4681 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004682 sb.append(" Cellular Rx signal strength (RSRP):");
4683 final String[] cellularRxSignalStrengthDescription = new String[]{
4684 "very poor (less than -128dBm): ",
4685 "poor (-128dBm to -118dBm): ",
4686 "moderate (-118dBm to -108dBm): ",
4687 "good (-108dBm to -98dBm): ",
4688 "great (greater than -98dBm): "};
4689 didOne = false;
4690 final int numCellularRxBins = Math.min(SignalStrength.NUM_SIGNAL_STRENGTH_BINS,
4691 cellularRxSignalStrengthDescription.length);
4692 for (int i=0; i<numCellularRxBins; i++) {
4693 final long time = getPhoneSignalStrengthTime(i, rawRealtime, which);
4694 if (time == 0) {
4695 continue;
4696 }
4697 sb.append("\n ");
4698 sb.append(prefix);
4699 didOne = true;
4700 sb.append(cellularRxSignalStrengthDescription[i]);
4701 sb.append(" ");
4702 formatTimeMs(sb, time/1000);
4703 sb.append("(");
4704 sb.append(formatRatioLocked(time, whichBatteryRealtime));
4705 sb.append(") ");
4706 }
4707 if (!didOne) sb.append(" (no activity)");
Amith Yamasani3f7e35c2009-07-13 16:02:45 -07004708 pw.println(sb.toString());
4709
Siddharth Rayb50a6842017-12-14 15:15:28 -08004710 printControllerActivity(pw, sb, prefix, CELLULAR_CONTROLLER_NAME,
Siddharth Ray3c648c42017-10-02 17:30:58 -07004711 getModemControllerActivity(), which);
Adam Lesinski21f76aa2016-01-25 12:27:06 -08004712
Dianne Hackborn77b987f2014-02-26 16:20:52 -08004713 pw.print(prefix);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004714 sb.setLength(0);
4715 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004716 sb.append(" Wifi Statistics:");
Dianne Hackbornca1bf212014-02-14 14:18:36 -08004717 pw.println(sb.toString());
4718
Siddharth Rayb50a6842017-12-14 15:15:28 -08004719 pw.print(prefix);
4720 sb.setLength(0);
4721 sb.append(prefix);
4722 sb.append(" Wifi kernel active time: ");
4723 final long wifiActiveTime = getWifiActiveTime(rawRealtime, which);
4724 formatTimeMs(sb, wifiActiveTime / 1000);
4725 sb.append("("); sb.append(formatRatioLocked(wifiActiveTime, whichBatteryRealtime));
4726 sb.append(")");
4727 pw.println(sb.toString());
4728
Siddharth Ray3c648c42017-10-02 17:30:58 -07004729 pw.print(" Wifi data received: "); pw.println(formatBytesLocked(wifiRxTotalBytes));
4730 pw.print(" Wifi data sent: "); pw.println(formatBytesLocked(wifiTxTotalBytes));
4731 pw.print(" Wifi packets received: "); pw.println(wifiRxTotalPackets);
4732 pw.print(" Wifi packets sent: "); pw.println(wifiTxTotalPackets);
4733
Dianne Hackbornca1bf212014-02-14 14:18:36 -08004734 sb.setLength(0);
4735 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004736 sb.append(" Wifi states:");
Dianne Hackbornca1bf212014-02-14 14:18:36 -08004737 didOne = false;
4738 for (int i=0; i<NUM_WIFI_STATES; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004739 final long time = getWifiStateTime(i, rawRealtime, which);
Dianne Hackbornca1bf212014-02-14 14:18:36 -08004740 if (time == 0) {
4741 continue;
4742 }
Siddharth Ray3c648c42017-10-02 17:30:58 -07004743 sb.append("\n ");
Dianne Hackbornca1bf212014-02-14 14:18:36 -08004744 didOne = true;
4745 sb.append(WIFI_STATE_NAMES[i]);
4746 sb.append(" ");
4747 formatTimeMs(sb, time/1000);
4748 sb.append("(");
4749 sb.append(formatRatioLocked(time, whichBatteryRealtime));
4750 sb.append(") ");
Dianne Hackborn3251b902014-06-20 14:40:53 -07004751 }
4752 if (!didOne) sb.append(" (no activity)");
4753 pw.println(sb.toString());
4754
4755 sb.setLength(0);
4756 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004757 sb.append(" Wifi supplicant states:");
Dianne Hackborn3251b902014-06-20 14:40:53 -07004758 didOne = false;
4759 for (int i=0; i<NUM_WIFI_SUPPL_STATES; i++) {
4760 final long time = getWifiSupplStateTime(i, rawRealtime, which);
4761 if (time == 0) {
4762 continue;
4763 }
Siddharth Ray3c648c42017-10-02 17:30:58 -07004764 sb.append("\n ");
Dianne Hackborn3251b902014-06-20 14:40:53 -07004765 didOne = true;
4766 sb.append(WIFI_SUPPL_STATE_NAMES[i]);
4767 sb.append(" ");
4768 formatTimeMs(sb, time/1000);
4769 sb.append("(");
4770 sb.append(formatRatioLocked(time, whichBatteryRealtime));
4771 sb.append(") ");
Dianne Hackborn3251b902014-06-20 14:40:53 -07004772 }
4773 if (!didOne) sb.append(" (no activity)");
4774 pw.println(sb.toString());
4775
4776 sb.setLength(0);
4777 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004778 sb.append(" Wifi Rx signal strength (RSSI):");
4779 final String[] wifiRxSignalStrengthDescription = new String[]{
4780 "very poor (less than -88.75dBm): ",
4781 "poor (-88.75 to -77.5dBm): ",
4782 "moderate (-77.5dBm to -66.25dBm): ",
4783 "good (-66.25dBm to -55dBm): ",
4784 "great (greater than -55dBm): "};
Dianne Hackborn3251b902014-06-20 14:40:53 -07004785 didOne = false;
Siddharth Ray3c648c42017-10-02 17:30:58 -07004786 final int numWifiRxBins = Math.min(NUM_WIFI_SIGNAL_STRENGTH_BINS,
4787 wifiRxSignalStrengthDescription.length);
4788 for (int i=0; i<numWifiRxBins; i++) {
Dianne Hackborn3251b902014-06-20 14:40:53 -07004789 final long time = getWifiSignalStrengthTime(i, rawRealtime, which);
4790 if (time == 0) {
4791 continue;
4792 }
4793 sb.append("\n ");
4794 sb.append(prefix);
4795 didOne = true;
Siddharth Ray3c648c42017-10-02 17:30:58 -07004796 sb.append(" ");
4797 sb.append(wifiRxSignalStrengthDescription[i]);
Dianne Hackborn3251b902014-06-20 14:40:53 -07004798 formatTimeMs(sb, time/1000);
4799 sb.append("(");
4800 sb.append(formatRatioLocked(time, whichBatteryRealtime));
4801 sb.append(") ");
Dianne Hackbornca1bf212014-02-14 14:18:36 -08004802 }
4803 if (!didOne) sb.append(" (no activity)");
4804 pw.println(sb.toString());
4805
Siddharth Rayb50a6842017-12-14 15:15:28 -08004806 printControllerActivity(pw, sb, prefix, WIFI_CONTROLLER_NAME,
4807 getWifiControllerActivity(), which);
Adam Lesinskie08af192015-03-25 16:42:59 -07004808
Adam Lesinski50e47602015-12-04 17:04:54 -08004809 pw.print(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004810 sb.setLength(0);
4811 sb.append(prefix);
Siddharth Ray78ccaf52017-12-23 16:16:21 -08004812 sb.append(" GPS Statistics:");
4813 pw.println(sb.toString());
4814
4815 sb.setLength(0);
4816 sb.append(prefix);
4817 sb.append(" GPS signal quality (Top 4 Average CN0):");
4818 final String[] gpsSignalQualityDescription = new String[]{
4819 "poor (less than 20 dBHz): ",
4820 "good (greater than 20 dBHz): "};
4821 final int numGpsSignalQualityBins = Math.min(GnssMetrics.NUM_GPS_SIGNAL_QUALITY_LEVELS,
4822 gpsSignalQualityDescription.length);
4823 for (int i=0; i<numGpsSignalQualityBins; i++) {
4824 final long time = getGpsSignalQualityTime(i, rawRealtime, which);
4825 sb.append("\n ");
4826 sb.append(prefix);
4827 sb.append(" ");
4828 sb.append(gpsSignalQualityDescription[i]);
4829 formatTimeMs(sb, time/1000);
4830 sb.append("(");
4831 sb.append(formatRatioLocked(time, whichBatteryRealtime));
4832 sb.append(") ");
4833 }
4834 pw.println(sb.toString());
4835
4836 final long gpsBatteryDrainMaMs = getGpsBatteryDrainMaMs();
4837 if (gpsBatteryDrainMaMs > 0) {
4838 pw.print(prefix);
4839 sb.setLength(0);
4840 sb.append(prefix);
4841 sb.append(" Battery Drain (mAh): ");
4842 sb.append(Double.toString(((double) gpsBatteryDrainMaMs)/(3600 * 1000)));
4843 pw.println(sb.toString());
4844 }
4845
4846 pw.print(prefix);
4847 sb.setLength(0);
4848 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004849 sb.append(" CONNECTIVITY POWER SUMMARY END");
4850 pw.println(sb.toString());
4851 pw.println("");
4852
4853 pw.print(prefix);
Adam Lesinski50e47602015-12-04 17:04:54 -08004854 pw.print(" Bluetooth total received: "); pw.print(formatBytesLocked(btRxTotalBytes));
4855 pw.print(", sent: "); pw.println(formatBytesLocked(btTxTotalBytes));
4856
Adam Lesinski9f55cc72016-01-27 20:42:14 -08004857 final long bluetoothScanTimeMs = getBluetoothScanTime(rawRealtime, which) / 1000;
4858 sb.setLength(0);
4859 sb.append(prefix);
4860 sb.append(" Bluetooth scan time: "); formatTimeMs(sb, bluetoothScanTimeMs);
4861 pw.println(sb.toString());
4862
Adam Lesinski21f76aa2016-01-25 12:27:06 -08004863 printControllerActivity(pw, sb, prefix, "Bluetooth", getBluetoothControllerActivity(),
4864 which);
Adam Lesinskie283d332015-04-16 12:29:25 -07004865
Dianne Hackbornca1bf212014-02-14 14:18:36 -08004866 pw.println();
The Android Open Source Project10592532009-03-18 17:39:46 -07004867
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07004868 if (which == STATS_SINCE_UNPLUGGED) {
The Android Open Source Project10592532009-03-18 17:39:46 -07004869 if (getIsOnBattery()) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004870 pw.print(prefix); pw.println(" Device is currently unplugged");
Bookatzc8c44962017-05-11 12:12:54 -07004871 pw.print(prefix); pw.print(" Discharge cycle start level: ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004872 pw.println(getDischargeStartLevel());
4873 pw.print(prefix); pw.print(" Discharge cycle current level: ");
4874 pw.println(getDischargeCurrentLevel());
Dianne Hackborn99d04522010-08-20 13:43:00 -07004875 } else {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004876 pw.print(prefix); pw.println(" Device is currently plugged into power");
Bookatzc8c44962017-05-11 12:12:54 -07004877 pw.print(prefix); pw.print(" Last discharge cycle start level: ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004878 pw.println(getDischargeStartLevel());
Bookatzc8c44962017-05-11 12:12:54 -07004879 pw.print(prefix); pw.print(" Last discharge cycle end level: ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004880 pw.println(getDischargeCurrentLevel());
The Android Open Source Project10592532009-03-18 17:39:46 -07004881 }
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08004882 pw.print(prefix); pw.print(" Amount discharged while screen on: ");
Mike Mac2f518a2017-09-19 16:06:03 -07004883 pw.println(getDischargeAmountScreenOn());
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08004884 pw.print(prefix); pw.print(" Amount discharged while screen off: ");
Mike Mac2f518a2017-09-19 16:06:03 -07004885 pw.println(getDischargeAmountScreenOff());
4886 pw.print(prefix); pw.print(" Amount discharged while screen doze: ");
4887 pw.println(getDischargeAmountScreenDoze());
Dianne Hackborn617f8772009-03-31 15:04:46 -07004888 pw.println(" ");
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07004889 } else {
4890 pw.print(prefix); pw.println(" Device battery use since last full charge");
4891 pw.print(prefix); pw.print(" Amount discharged (lower bound): ");
Mike Mac2f518a2017-09-19 16:06:03 -07004892 pw.println(getLowDischargeAmountSinceCharge());
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07004893 pw.print(prefix); pw.print(" Amount discharged (upper bound): ");
Mike Mac2f518a2017-09-19 16:06:03 -07004894 pw.println(getHighDischargeAmountSinceCharge());
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08004895 pw.print(prefix); pw.print(" Amount discharged while screen on: ");
Mike Mac2f518a2017-09-19 16:06:03 -07004896 pw.println(getDischargeAmountScreenOnSinceCharge());
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08004897 pw.print(prefix); pw.print(" Amount discharged while screen off: ");
Mike Mac2f518a2017-09-19 16:06:03 -07004898 pw.println(getDischargeAmountScreenOffSinceCharge());
4899 pw.print(prefix); pw.print(" Amount discharged while screen doze: ");
4900 pw.println(getDischargeAmountScreenDozeSinceCharge());
Dianne Hackborn81038902012-11-26 17:04:09 -08004901 pw.println();
The Android Open Source Project10592532009-03-18 17:39:46 -07004902 }
Dianne Hackborn81038902012-11-26 17:04:09 -08004903
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004904 final BatteryStatsHelper helper = new BatteryStatsHelper(context, false, wifiOnly);
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004905 helper.create(this);
4906 helper.refreshStats(which, UserHandle.USER_ALL);
4907 List<BatterySipper> sippers = helper.getUsageList();
4908 if (sippers != null && sippers.size() > 0) {
4909 pw.print(prefix); pw.println(" Estimated power use (mAh):");
4910 pw.print(prefix); pw.print(" Capacity: ");
4911 printmAh(pw, helper.getPowerProfile().getBatteryCapacity());
Dianne Hackborn099bc622014-01-22 13:39:16 -08004912 pw.print(", Computed drain: "); printmAh(pw, helper.getComputedPower());
Dianne Hackborn536456f2014-05-23 16:51:05 -07004913 pw.print(", actual drain: "); printmAh(pw, helper.getMinDrainedPower());
4914 if (helper.getMinDrainedPower() != helper.getMaxDrainedPower()) {
4915 pw.print("-"); printmAh(pw, helper.getMaxDrainedPower());
4916 }
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004917 pw.println();
4918 for (int i=0; i<sippers.size(); i++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004919 final BatterySipper bs = sippers.get(i);
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004920 pw.print(prefix);
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004921 switch (bs.drainType) {
4922 case IDLE:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004923 pw.print(" Idle: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004924 break;
4925 case CELL:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004926 pw.print(" Cell standby: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004927 break;
4928 case PHONE:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004929 pw.print(" Phone calls: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004930 break;
4931 case WIFI:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004932 pw.print(" Wifi: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004933 break;
4934 case BLUETOOTH:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004935 pw.print(" Bluetooth: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004936 break;
4937 case SCREEN:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004938 pw.print(" Screen: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004939 break;
Dianne Hackbornabc7c492014-06-30 16:57:46 -07004940 case FLASHLIGHT:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004941 pw.print(" Flashlight: ");
Dianne Hackbornabc7c492014-06-30 16:57:46 -07004942 break;
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004943 case APP:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004944 pw.print(" Uid ");
Dianne Hackbornd45665b2014-02-26 12:35:32 -08004945 UserHandle.formatUid(pw, bs.uidObj.getUid());
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004946 pw.print(": ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004947 break;
4948 case USER:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004949 pw.print(" User "); pw.print(bs.userId);
4950 pw.print(": ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004951 break;
4952 case UNACCOUNTED:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004953 pw.print(" Unaccounted: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004954 break;
4955 case OVERCOUNTED:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004956 pw.print(" Over-counted: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004957 break;
Ruben Brunk5b1308f2015-06-03 18:49:27 -07004958 case CAMERA:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004959 pw.print(" Camera: ");
4960 break;
4961 default:
4962 pw.print(" ???: ");
Ruben Brunk5b1308f2015-06-03 18:49:27 -07004963 break;
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004964 }
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004965 printmAh(pw, bs.totalPowerMah);
4966
Adam Lesinski57123002015-06-12 16:12:07 -07004967 if (bs.usagePowerMah != bs.totalPowerMah) {
4968 // If the usage (generic power) isn't the whole amount, we list out
4969 // what components are involved in the calculation.
4970
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004971 pw.print(" (");
Adam Lesinski57123002015-06-12 16:12:07 -07004972 if (bs.usagePowerMah != 0) {
4973 pw.print(" usage=");
4974 printmAh(pw, bs.usagePowerMah);
4975 }
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004976 if (bs.cpuPowerMah != 0) {
4977 pw.print(" cpu=");
4978 printmAh(pw, bs.cpuPowerMah);
4979 }
4980 if (bs.wakeLockPowerMah != 0) {
4981 pw.print(" wake=");
4982 printmAh(pw, bs.wakeLockPowerMah);
4983 }
4984 if (bs.mobileRadioPowerMah != 0) {
4985 pw.print(" radio=");
4986 printmAh(pw, bs.mobileRadioPowerMah);
4987 }
4988 if (bs.wifiPowerMah != 0) {
4989 pw.print(" wifi=");
4990 printmAh(pw, bs.wifiPowerMah);
4991 }
Adam Lesinski9f55cc72016-01-27 20:42:14 -08004992 if (bs.bluetoothPowerMah != 0) {
4993 pw.print(" bt=");
4994 printmAh(pw, bs.bluetoothPowerMah);
4995 }
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004996 if (bs.gpsPowerMah != 0) {
4997 pw.print(" gps=");
4998 printmAh(pw, bs.gpsPowerMah);
4999 }
5000 if (bs.sensorPowerMah != 0) {
5001 pw.print(" sensor=");
5002 printmAh(pw, bs.sensorPowerMah);
5003 }
5004 if (bs.cameraPowerMah != 0) {
5005 pw.print(" camera=");
5006 printmAh(pw, bs.cameraPowerMah);
5007 }
5008 if (bs.flashlightPowerMah != 0) {
5009 pw.print(" flash=");
5010 printmAh(pw, bs.flashlightPowerMah);
5011 }
5012 pw.print(" )");
5013 }
Bookatz17d7d9d2017-06-08 14:50:46 -07005014
5015 // If there is additional smearing information, include it.
5016 if (bs.totalSmearedPowerMah != bs.totalPowerMah) {
5017 pw.print(" Including smearing: ");
5018 printmAh(pw, bs.totalSmearedPowerMah);
5019 pw.print(" (");
5020 if (bs.screenPowerMah != 0) {
5021 pw.print(" screen=");
5022 printmAh(pw, bs.screenPowerMah);
5023 }
5024 if (bs.proportionalSmearMah != 0) {
5025 pw.print(" proportional=");
5026 printmAh(pw, bs.proportionalSmearMah);
5027 }
5028 pw.print(" )");
5029 }
5030 if (bs.shouldHide) {
5031 pw.print(" Excluded from smearing");
5032 }
5033
Adam Lesinski628ef9c2015-06-10 13:08:57 -07005034 pw.println();
Dianne Hackborna7c837f2014-01-15 16:20:44 -08005035 }
Dianne Hackbornc46809e2014-01-15 16:20:44 -08005036 pw.println();
Dianne Hackborna7c837f2014-01-15 16:20:44 -08005037 }
5038
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005039 sippers = helper.getMobilemsppList();
5040 if (sippers != null && sippers.size() > 0) {
5041 pw.print(prefix); pw.println(" Per-app mobile ms per packet:");
Dianne Hackborn77b987f2014-02-26 16:20:52 -08005042 long totalTime = 0;
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005043 for (int i=0; i<sippers.size(); i++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005044 final BatterySipper bs = sippers.get(i);
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005045 sb.setLength(0);
5046 sb.append(prefix); sb.append(" Uid ");
5047 UserHandle.formatUid(sb, bs.uidObj.getUid());
5048 sb.append(": "); sb.append(BatteryStatsHelper.makemAh(bs.mobilemspp));
5049 sb.append(" ("); sb.append(bs.mobileRxPackets+bs.mobileTxPackets);
5050 sb.append(" packets over "); formatTimeMsNoSpace(sb, bs.mobileActive);
Dianne Hackborn77b987f2014-02-26 16:20:52 -08005051 sb.append(") "); sb.append(bs.mobileActiveCount); sb.append("x");
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005052 pw.println(sb.toString());
Dianne Hackborn77b987f2014-02-26 16:20:52 -08005053 totalTime += bs.mobileActive;
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005054 }
Dianne Hackborn77b987f2014-02-26 16:20:52 -08005055 sb.setLength(0);
5056 sb.append(prefix);
5057 sb.append(" TOTAL TIME: ");
5058 formatTimeMs(sb, totalTime);
5059 sb.append("("); sb.append(formatRatioLocked(totalTime, whichBatteryRealtime));
5060 sb.append(")");
5061 pw.println(sb.toString());
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005062 pw.println();
5063 }
5064
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005065 final Comparator<TimerEntry> timerComparator = new Comparator<TimerEntry>() {
5066 @Override
5067 public int compare(TimerEntry lhs, TimerEntry rhs) {
5068 long lhsTime = lhs.mTime;
5069 long rhsTime = rhs.mTime;
5070 if (lhsTime < rhsTime) {
5071 return 1;
5072 }
5073 if (lhsTime > rhsTime) {
5074 return -1;
5075 }
5076 return 0;
5077 }
5078 };
5079
5080 if (reqUid < 0) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005081 final Map<String, ? extends BatteryStats.Timer> kernelWakelocks
5082 = getKernelWakelockStats();
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005083 if (kernelWakelocks.size() > 0) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005084 final ArrayList<TimerEntry> ktimers = new ArrayList<>();
5085 for (Map.Entry<String, ? extends BatteryStats.Timer> ent
5086 : kernelWakelocks.entrySet()) {
5087 final BatteryStats.Timer timer = ent.getValue();
5088 final long totalTimeMillis = computeWakeLock(timer, rawRealtime, which);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005089 if (totalTimeMillis > 0) {
5090 ktimers.add(new TimerEntry(ent.getKey(), 0, timer, totalTimeMillis));
5091 }
5092 }
5093 if (ktimers.size() > 0) {
5094 Collections.sort(ktimers, timerComparator);
5095 pw.print(prefix); pw.println(" All kernel wake locks:");
5096 for (int i=0; i<ktimers.size(); i++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005097 final TimerEntry timer = ktimers.get(i);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005098 String linePrefix = ": ";
5099 sb.setLength(0);
5100 sb.append(prefix);
5101 sb.append(" Kernel Wake lock ");
5102 sb.append(timer.mName);
5103 linePrefix = printWakeLock(sb, timer.mTimer, rawRealtime, null,
5104 which, linePrefix);
5105 if (!linePrefix.equals(": ")) {
5106 sb.append(" realtime");
5107 // Only print out wake locks that were held
5108 pw.println(sb.toString());
5109 }
5110 }
5111 pw.println();
5112 }
5113 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005114
Dianne Hackborna1bd7922014-03-21 11:07:11 -07005115 if (timers.size() > 0) {
5116 Collections.sort(timers, timerComparator);
5117 pw.print(prefix); pw.println(" All partial wake locks:");
5118 for (int i=0; i<timers.size(); i++) {
5119 TimerEntry timer = timers.get(i);
5120 sb.setLength(0);
5121 sb.append(" Wake lock ");
5122 UserHandle.formatUid(sb, timer.mId);
5123 sb.append(" ");
5124 sb.append(timer.mName);
5125 printWakeLock(sb, timer.mTimer, rawRealtime, null, which, ": ");
5126 sb.append(" realtime");
5127 pw.println(sb.toString());
5128 }
5129 timers.clear();
5130 pw.println();
Dianne Hackborn81038902012-11-26 17:04:09 -08005131 }
Dianne Hackborna1bd7922014-03-21 11:07:11 -07005132
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005133 final Map<String, ? extends Timer> wakeupReasons = getWakeupReasonStats();
Dianne Hackborna1bd7922014-03-21 11:07:11 -07005134 if (wakeupReasons.size() > 0) {
5135 pw.print(prefix); pw.println(" All wakeup reasons:");
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005136 final ArrayList<TimerEntry> reasons = new ArrayList<>();
Dianne Hackbornc3940bc2014-09-05 15:50:25 -07005137 for (Map.Entry<String, ? extends Timer> ent : wakeupReasons.entrySet()) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005138 final Timer timer = ent.getValue();
Dianne Hackbornc3940bc2014-09-05 15:50:25 -07005139 reasons.add(new TimerEntry(ent.getKey(), 0, timer,
5140 timer.getCountLocked(which)));
Dianne Hackborna1bd7922014-03-21 11:07:11 -07005141 }
5142 Collections.sort(reasons, timerComparator);
5143 for (int i=0; i<reasons.size(); i++) {
5144 TimerEntry timer = reasons.get(i);
5145 String linePrefix = ": ";
5146 sb.setLength(0);
5147 sb.append(prefix);
5148 sb.append(" Wakeup reason ");
5149 sb.append(timer.mName);
Dianne Hackbornc3940bc2014-09-05 15:50:25 -07005150 printWakeLock(sb, timer.mTimer, rawRealtime, null, which, ": ");
5151 sb.append(" realtime");
Dianne Hackborna1bd7922014-03-21 11:07:11 -07005152 pw.println(sb.toString());
5153 }
5154 pw.println();
5155 }
Dianne Hackborn81038902012-11-26 17:04:09 -08005156 }
Evan Millar22ac0432009-03-31 11:33:18 -07005157
James Carr2dd7e5e2016-07-20 18:48:39 -07005158 final LongSparseArray<? extends Timer> mMemoryStats = getKernelMemoryStats();
Bookatz50df7112017-08-04 14:53:26 -07005159 if (mMemoryStats.size() > 0) {
5160 pw.println(" Memory Stats");
5161 for (int i = 0; i < mMemoryStats.size(); i++) {
5162 sb.setLength(0);
5163 sb.append(" Bandwidth ");
5164 sb.append(mMemoryStats.keyAt(i));
5165 sb.append(" Time ");
5166 sb.append(mMemoryStats.valueAt(i).getTotalTimeLocked(rawRealtime, which));
5167 pw.println(sb.toString());
5168 }
5169 pw.println();
5170 }
5171
5172 final Map<String, ? extends Timer> rpmStats = getRpmStats();
5173 if (rpmStats.size() > 0) {
5174 pw.print(prefix); pw.println(" Resource Power Manager Stats");
5175 if (rpmStats.size() > 0) {
5176 for (Map.Entry<String, ? extends Timer> ent : rpmStats.entrySet()) {
5177 final String timerName = ent.getKey();
5178 final Timer timer = ent.getValue();
5179 printTimer(pw, sb, timer, rawRealtime, which, prefix, timerName);
5180 }
5181 }
5182 pw.println();
5183 }
Bookatz82b341172017-09-07 19:06:08 -07005184 if (SCREEN_OFF_RPM_STATS_ENABLED) {
5185 final Map<String, ? extends Timer> screenOffRpmStats = getScreenOffRpmStats();
Bookatz50df7112017-08-04 14:53:26 -07005186 if (screenOffRpmStats.size() > 0) {
Bookatz82b341172017-09-07 19:06:08 -07005187 pw.print(prefix);
5188 pw.println(" Resource Power Manager Stats for when screen was off");
5189 if (screenOffRpmStats.size() > 0) {
5190 for (Map.Entry<String, ? extends Timer> ent : screenOffRpmStats.entrySet()) {
5191 final String timerName = ent.getKey();
5192 final Timer timer = ent.getValue();
5193 printTimer(pw, sb, timer, rawRealtime, which, prefix, timerName);
5194 }
Bookatz50df7112017-08-04 14:53:26 -07005195 }
Bookatz82b341172017-09-07 19:06:08 -07005196 pw.println();
Bookatz50df7112017-08-04 14:53:26 -07005197 }
James Carr2dd7e5e2016-07-20 18:48:39 -07005198 }
5199
Sudheer Shanka9b735c52017-05-09 18:26:18 -07005200 final long[] cpuFreqs = getCpuFreqs();
5201 if (cpuFreqs != null) {
5202 sb.setLength(0);
Bookatz50df7112017-08-04 14:53:26 -07005203 sb.append(" CPU freqs:");
Sudheer Shanka9b735c52017-05-09 18:26:18 -07005204 for (int i = 0; i < cpuFreqs.length; ++i) {
5205 sb.append(" " + cpuFreqs[i]);
5206 }
5207 pw.println(sb.toString());
Bookatz50df7112017-08-04 14:53:26 -07005208 pw.println();
Sudheer Shanka9b735c52017-05-09 18:26:18 -07005209 }
5210
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005211 for (int iu=0; iu<NU; iu++) {
5212 final int uid = uidStats.keyAt(iu);
Dianne Hackborne4a59512010-12-07 11:08:07 -08005213 if (reqUid >= 0 && uid != reqUid && uid != Process.SYSTEM_UID) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08005214 continue;
5215 }
Bookatzc8c44962017-05-11 12:12:54 -07005216
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005217 final Uid u = uidStats.valueAt(iu);
Dianne Hackborna4cc2052013-07-08 17:31:25 -07005218
5219 pw.print(prefix);
5220 pw.print(" ");
5221 UserHandle.formatUid(pw, uid);
5222 pw.println(":");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005223 boolean uidActivity = false;
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005224
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005225 final long mobileRxBytes = u.getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which);
5226 final long mobileTxBytes = u.getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which);
5227 final long wifiRxBytes = u.getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which);
5228 final long wifiTxBytes = u.getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which);
Adam Lesinski50e47602015-12-04 17:04:54 -08005229 final long btRxBytes = u.getNetworkActivityBytes(NETWORK_BT_RX_DATA, which);
5230 final long btTxBytes = u.getNetworkActivityBytes(NETWORK_BT_TX_DATA, which);
5231
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005232 final long mobileRxPackets = u.getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which);
5233 final long mobileTxPackets = u.getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005234 final long wifiRxPackets = u.getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which);
5235 final long wifiTxPackets = u.getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which);
Adam Lesinski50e47602015-12-04 17:04:54 -08005236
5237 final long uidMobileActiveTime = u.getMobileRadioActiveTime(which);
5238 final int uidMobileActiveCount = u.getMobileRadioActiveCount(which);
5239
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005240 final long fullWifiLockOnTime = u.getFullWifiLockTime(rawRealtime, which);
5241 final long wifiScanTime = u.getWifiScanTime(rawRealtime, which);
5242 final int wifiScanCount = u.getWifiScanCount(which);
Bookatz867c0d72017-03-07 18:23:42 -08005243 final int wifiScanCountBg = u.getWifiScanBackgroundCount(which);
5244 // 'actualTime' are unpooled and always since reset (regardless of 'which')
5245 final long wifiScanActualTime = u.getWifiScanActualTime(rawRealtime);
5246 final long wifiScanActualTimeBg = u.getWifiScanBackgroundTime(rawRealtime);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005247 final long uidWifiRunningTime = u.getWifiRunningTime(rawRealtime, which);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07005248
Adam Lesinski5f056f62016-07-14 16:56:08 -07005249 final long mobileWakeup = u.getMobileRadioApWakeupCount(which);
5250 final long wifiWakeup = u.getWifiRadioApWakeupCount(which);
5251
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08005252 if (mobileRxBytes > 0 || mobileTxBytes > 0
5253 || mobileRxPackets > 0 || mobileTxPackets > 0) {
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07005254 pw.print(prefix); pw.print(" Mobile network: ");
5255 pw.print(formatBytesLocked(mobileRxBytes)); pw.print(" received, ");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08005256 pw.print(formatBytesLocked(mobileTxBytes));
5257 pw.print(" sent (packets "); pw.print(mobileRxPackets);
5258 pw.print(" received, "); pw.print(mobileTxPackets); pw.println(" sent)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005259 }
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005260 if (uidMobileActiveTime > 0 || uidMobileActiveCount > 0) {
5261 sb.setLength(0);
5262 sb.append(prefix); sb.append(" Mobile radio active: ");
5263 formatTimeMs(sb, uidMobileActiveTime / 1000);
5264 sb.append("(");
5265 sb.append(formatRatioLocked(uidMobileActiveTime, mobileActiveTime));
5266 sb.append(") "); sb.append(uidMobileActiveCount); sb.append("x");
5267 long packets = mobileRxPackets + mobileTxPackets;
5268 if (packets == 0) {
5269 packets = 1;
5270 }
5271 sb.append(" @ ");
5272 sb.append(BatteryStatsHelper.makemAh(uidMobileActiveTime / 1000 / (double)packets));
5273 sb.append(" mspp");
5274 pw.println(sb.toString());
5275 }
5276
Adam Lesinski5f056f62016-07-14 16:56:08 -07005277 if (mobileWakeup > 0) {
5278 sb.setLength(0);
5279 sb.append(prefix);
5280 sb.append(" Mobile radio AP wakeups: ");
5281 sb.append(mobileWakeup);
5282 pw.println(sb.toString());
5283 }
5284
Siddharth Rayb50a6842017-12-14 15:15:28 -08005285 printControllerActivityIfInteresting(pw, sb, prefix + " ",
5286 CELLULAR_CONTROLLER_NAME, u.getModemControllerActivity(), which);
Adam Lesinski21f76aa2016-01-25 12:27:06 -08005287
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08005288 if (wifiRxBytes > 0 || wifiTxBytes > 0 || wifiRxPackets > 0 || wifiTxPackets > 0) {
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07005289 pw.print(prefix); pw.print(" Wi-Fi network: ");
5290 pw.print(formatBytesLocked(wifiRxBytes)); pw.print(" received, ");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08005291 pw.print(formatBytesLocked(wifiTxBytes));
5292 pw.print(" sent (packets "); pw.print(wifiRxPackets);
5293 pw.print(" received, "); pw.print(wifiTxPackets); pw.println(" sent)");
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07005294 }
5295
Dianne Hackborn62793e42015-03-09 11:15:41 -07005296 if (fullWifiLockOnTime != 0 || wifiScanTime != 0 || wifiScanCount != 0
Bookatz867c0d72017-03-07 18:23:42 -08005297 || wifiScanCountBg != 0 || wifiScanActualTime != 0 || wifiScanActualTimeBg != 0
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005298 || uidWifiRunningTime != 0) {
5299 sb.setLength(0);
5300 sb.append(prefix); sb.append(" Wifi Running: ");
5301 formatTimeMs(sb, uidWifiRunningTime / 1000);
5302 sb.append("("); sb.append(formatRatioLocked(uidWifiRunningTime,
5303 whichBatteryRealtime)); sb.append(")\n");
Bookatzc8c44962017-05-11 12:12:54 -07005304 sb.append(prefix); sb.append(" Full Wifi Lock: ");
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005305 formatTimeMs(sb, fullWifiLockOnTime / 1000);
5306 sb.append("("); sb.append(formatRatioLocked(fullWifiLockOnTime,
5307 whichBatteryRealtime)); sb.append(")\n");
Bookatz867c0d72017-03-07 18:23:42 -08005308 sb.append(prefix); sb.append(" Wifi Scan (blamed): ");
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005309 formatTimeMs(sb, wifiScanTime / 1000);
5310 sb.append("("); sb.append(formatRatioLocked(wifiScanTime,
Dianne Hackborn62793e42015-03-09 11:15:41 -07005311 whichBatteryRealtime)); sb.append(") ");
5312 sb.append(wifiScanCount);
Bookatz867c0d72017-03-07 18:23:42 -08005313 sb.append("x\n");
5314 // actual and background times are unpooled and since reset (regardless of 'which')
5315 sb.append(prefix); sb.append(" Wifi Scan (actual): ");
5316 formatTimeMs(sb, wifiScanActualTime / 1000);
5317 sb.append("("); sb.append(formatRatioLocked(wifiScanActualTime,
5318 computeBatteryRealtime(rawRealtime, STATS_SINCE_CHARGED)));
5319 sb.append(") ");
5320 sb.append(wifiScanCount);
5321 sb.append("x\n");
5322 sb.append(prefix); sb.append(" Background Wifi Scan: ");
5323 formatTimeMs(sb, wifiScanActualTimeBg / 1000);
5324 sb.append("("); sb.append(formatRatioLocked(wifiScanActualTimeBg,
5325 computeBatteryRealtime(rawRealtime, STATS_SINCE_CHARGED)));
5326 sb.append(") ");
5327 sb.append(wifiScanCountBg);
Dianne Hackborn62793e42015-03-09 11:15:41 -07005328 sb.append("x");
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005329 pw.println(sb.toString());
5330 }
5331
Adam Lesinski5f056f62016-07-14 16:56:08 -07005332 if (wifiWakeup > 0) {
5333 sb.setLength(0);
5334 sb.append(prefix);
5335 sb.append(" WiFi AP wakeups: ");
5336 sb.append(wifiWakeup);
5337 pw.println(sb.toString());
5338 }
5339
Siddharth Rayb50a6842017-12-14 15:15:28 -08005340 printControllerActivityIfInteresting(pw, sb, prefix + " ", WIFI_CONTROLLER_NAME,
Adam Lesinski21f76aa2016-01-25 12:27:06 -08005341 u.getWifiControllerActivity(), which);
Adam Lesinski049c88b2015-05-28 11:38:12 -07005342
Adam Lesinski50e47602015-12-04 17:04:54 -08005343 if (btRxBytes > 0 || btTxBytes > 0) {
5344 pw.print(prefix); pw.print(" Bluetooth network: ");
5345 pw.print(formatBytesLocked(btRxBytes)); pw.print(" received, ");
5346 pw.print(formatBytesLocked(btTxBytes));
5347 pw.println(" sent");
5348 }
5349
Bookatz867c0d72017-03-07 18:23:42 -08005350 final Timer bleTimer = u.getBluetoothScanTimer();
5351 if (bleTimer != null) {
5352 // Convert from microseconds to milliseconds with rounding
5353 final long totalTimeMs = (bleTimer.getTotalTimeLocked(rawRealtime, which) + 500)
5354 / 1000;
5355 if (totalTimeMs != 0) {
5356 final int count = bleTimer.getCountLocked(which);
5357 final Timer bleTimerBg = u.getBluetoothScanBackgroundTimer();
5358 final int countBg = bleTimerBg != null ? bleTimerBg.getCountLocked(which) : 0;
Bookatz867c0d72017-03-07 18:23:42 -08005359 // 'actualTime' are unpooled and always since reset (regardless of 'which')
5360 final long actualTimeMs = bleTimer.getTotalDurationMsLocked(rawRealtimeMs);
5361 final long actualTimeMsBg = bleTimerBg != null ?
5362 bleTimerBg.getTotalDurationMsLocked(rawRealtimeMs) : 0;
Bookatzb1f04f32017-05-19 13:57:32 -07005363 // Result counters
Bookatz956f36bf2017-04-28 09:48:17 -07005364 final int resultCount = u.getBluetoothScanResultCounter() != null ?
5365 u.getBluetoothScanResultCounter().getCountLocked(which) : 0;
Bookatzb1f04f32017-05-19 13:57:32 -07005366 final int resultCountBg = u.getBluetoothScanResultBgCounter() != null ?
5367 u.getBluetoothScanResultBgCounter().getCountLocked(which) : 0;
5368 // Unoptimized scan timer. Unpooled and since reset (regardless of 'which').
5369 final Timer unoptimizedScanTimer = u.getBluetoothUnoptimizedScanTimer();
5370 final long unoptimizedScanTotalTime = unoptimizedScanTimer != null ?
5371 unoptimizedScanTimer.getTotalDurationMsLocked(rawRealtimeMs) : 0;
5372 final long unoptimizedScanMaxTime = unoptimizedScanTimer != null ?
5373 unoptimizedScanTimer.getMaxDurationMsLocked(rawRealtimeMs) : 0;
5374 // Unoptimized bg scan timer. Unpooled and since reset (regardless of 'which').
5375 final Timer unoptimizedScanTimerBg =
5376 u.getBluetoothUnoptimizedScanBackgroundTimer();
5377 final long unoptimizedScanTotalTimeBg = unoptimizedScanTimerBg != null ?
5378 unoptimizedScanTimerBg.getTotalDurationMsLocked(rawRealtimeMs) : 0;
5379 final long unoptimizedScanMaxTimeBg = unoptimizedScanTimerBg != null ?
5380 unoptimizedScanTimerBg.getMaxDurationMsLocked(rawRealtimeMs) : 0;
Bookatz867c0d72017-03-07 18:23:42 -08005381
5382 sb.setLength(0);
Bookatz867c0d72017-03-07 18:23:42 -08005383 if (actualTimeMs != totalTimeMs) {
Bookatzb1f04f32017-05-19 13:57:32 -07005384 sb.append(prefix);
5385 sb.append(" Bluetooth Scan (total blamed realtime): ");
Bookatz867c0d72017-03-07 18:23:42 -08005386 formatTimeMs(sb, totalTimeMs);
Bookatzb1f04f32017-05-19 13:57:32 -07005387 sb.append(" (");
5388 sb.append(count);
5389 sb.append(" times)");
5390 if (bleTimer.isRunningLocked()) {
5391 sb.append(" (currently running)");
5392 }
5393 sb.append("\n");
Bookatz867c0d72017-03-07 18:23:42 -08005394 }
Bookatzb1f04f32017-05-19 13:57:32 -07005395
5396 sb.append(prefix);
5397 sb.append(" Bluetooth Scan (total actual realtime): ");
5398 formatTimeMs(sb, actualTimeMs); // since reset, ignores 'which'
5399 sb.append(" (");
Bookatz867c0d72017-03-07 18:23:42 -08005400 sb.append(count);
5401 sb.append(" times)");
5402 if (bleTimer.isRunningLocked()) {
Bookatzb1f04f32017-05-19 13:57:32 -07005403 sb.append(" (currently running)");
Bookatz867c0d72017-03-07 18:23:42 -08005404 }
Bookatzb1f04f32017-05-19 13:57:32 -07005405 sb.append("\n");
5406 if (actualTimeMsBg > 0 || countBg > 0) {
5407 sb.append(prefix);
5408 sb.append(" Bluetooth Scan (background realtime): ");
5409 formatTimeMs(sb, actualTimeMsBg); // since reset, ignores 'which'
5410 sb.append(" (");
Bookatz867c0d72017-03-07 18:23:42 -08005411 sb.append(countBg);
5412 sb.append(" times)");
Bookatzb1f04f32017-05-19 13:57:32 -07005413 if (bleTimerBg != null && bleTimerBg.isRunningLocked()) {
5414 sb.append(" (currently running in background)");
5415 }
5416 sb.append("\n");
Bookatz867c0d72017-03-07 18:23:42 -08005417 }
Bookatzb1f04f32017-05-19 13:57:32 -07005418
5419 sb.append(prefix);
5420 sb.append(" Bluetooth Scan Results: ");
Bookatz956f36bf2017-04-28 09:48:17 -07005421 sb.append(resultCount);
Bookatzb1f04f32017-05-19 13:57:32 -07005422 sb.append(" (");
5423 sb.append(resultCountBg);
5424 sb.append(" in background)");
5425
5426 if (unoptimizedScanTotalTime > 0 || unoptimizedScanTotalTimeBg > 0) {
5427 sb.append("\n");
5428 sb.append(prefix);
5429 sb.append(" Unoptimized Bluetooth Scan (realtime): ");
5430 formatTimeMs(sb, unoptimizedScanTotalTime); // since reset, ignores 'which'
5431 sb.append(" (max ");
5432 formatTimeMs(sb, unoptimizedScanMaxTime); // since reset, ignores 'which'
5433 sb.append(")");
5434 if (unoptimizedScanTimer != null
5435 && unoptimizedScanTimer.isRunningLocked()) {
5436 sb.append(" (currently running unoptimized)");
5437 }
5438 if (unoptimizedScanTimerBg != null && unoptimizedScanTotalTimeBg > 0) {
5439 sb.append("\n");
5440 sb.append(prefix);
5441 sb.append(" Unoptimized Bluetooth Scan (background realtime): ");
5442 formatTimeMs(sb, unoptimizedScanTotalTimeBg); // since reset
5443 sb.append(" (max ");
5444 formatTimeMs(sb, unoptimizedScanMaxTimeBg); // since reset
5445 sb.append(")");
5446 if (unoptimizedScanTimerBg.isRunningLocked()) {
5447 sb.append(" (currently running unoptimized in background)");
5448 }
5449 }
5450 }
Bookatz867c0d72017-03-07 18:23:42 -08005451 pw.println(sb.toString());
5452 uidActivity = true;
5453 }
5454 }
5455
5456
Adam Lesinski9f55cc72016-01-27 20:42:14 -08005457
Dianne Hackborn617f8772009-03-31 15:04:46 -07005458 if (u.hasUserActivity()) {
5459 boolean hasData = false;
Raph Levien4c7a4a72012-08-03 14:32:39 -07005460 for (int i=0; i<Uid.NUM_USER_ACTIVITY_TYPES; i++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005461 final int val = u.getUserActivityCount(i, which);
Dianne Hackborn617f8772009-03-31 15:04:46 -07005462 if (val != 0) {
5463 if (!hasData) {
5464 sb.setLength(0);
5465 sb.append(" User activity: ");
5466 hasData = true;
5467 } else {
5468 sb.append(", ");
5469 }
5470 sb.append(val);
5471 sb.append(" ");
5472 sb.append(Uid.USER_ACTIVITY_TYPES[i]);
5473 }
5474 }
5475 if (hasData) {
5476 pw.println(sb.toString());
5477 }
5478 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005479
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005480 final ArrayMap<String, ? extends BatteryStats.Uid.Wakelock> wakelocks
5481 = u.getWakelockStats();
5482 long totalFullWakelock = 0, totalPartialWakelock = 0, totalWindowWakelock = 0;
Jeff Brown6a8bd7b2015-06-19 15:07:51 -07005483 long totalDrawWakelock = 0;
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005484 int countWakelock = 0;
5485 for (int iw=wakelocks.size()-1; iw>=0; iw--) {
5486 final Uid.Wakelock wl = wakelocks.valueAt(iw);
5487 String linePrefix = ": ";
5488 sb.setLength(0);
5489 sb.append(prefix);
5490 sb.append(" Wake lock ");
5491 sb.append(wakelocks.keyAt(iw));
5492 linePrefix = printWakeLock(sb, wl.getWakeTime(WAKE_TYPE_FULL), rawRealtime,
5493 "full", which, linePrefix);
Bookatz5b5ec322017-05-26 09:40:38 -07005494 final Timer pTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
5495 linePrefix = printWakeLock(sb, pTimer, rawRealtime,
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005496 "partial", which, linePrefix);
Bookatz5b5ec322017-05-26 09:40:38 -07005497 linePrefix = printWakeLock(sb, pTimer != null ? pTimer.getSubTimer() : null,
5498 rawRealtime, "background partial", which, linePrefix);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005499 linePrefix = printWakeLock(sb, wl.getWakeTime(WAKE_TYPE_WINDOW), rawRealtime,
5500 "window", which, linePrefix);
Jeff Brown6a8bd7b2015-06-19 15:07:51 -07005501 linePrefix = printWakeLock(sb, wl.getWakeTime(WAKE_TYPE_DRAW), rawRealtime,
5502 "draw", which, linePrefix);
Adam Lesinski9425fe22015-06-19 12:02:13 -07005503 sb.append(" realtime");
5504 pw.println(sb.toString());
5505 uidActivity = true;
5506 countWakelock++;
5507
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005508 totalFullWakelock += computeWakeLock(wl.getWakeTime(WAKE_TYPE_FULL),
5509 rawRealtime, which);
5510 totalPartialWakelock += computeWakeLock(wl.getWakeTime(WAKE_TYPE_PARTIAL),
5511 rawRealtime, which);
5512 totalWindowWakelock += computeWakeLock(wl.getWakeTime(WAKE_TYPE_WINDOW),
5513 rawRealtime, which);
Jeff Brown6a8bd7b2015-06-19 15:07:51 -07005514 totalDrawWakelock += computeWakeLock(wl.getWakeTime(WAKE_TYPE_DRAW),
Adam Lesinski9425fe22015-06-19 12:02:13 -07005515 rawRealtime, which);
Dianne Hackbornfdb19562014-07-11 16:03:36 -07005516 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005517 if (countWakelock > 1) {
Bookatzc8c44962017-05-11 12:12:54 -07005518 // get unpooled partial wakelock quantities (unlike totalPartialWakelock, which is
5519 // pooled and therefore just a lower bound)
5520 long actualTotalPartialWakelock = 0;
5521 long actualBgPartialWakelock = 0;
5522 if (u.getAggregatedPartialWakelockTimer() != null) {
5523 final Timer aggTimer = u.getAggregatedPartialWakelockTimer();
5524 // Convert from microseconds to milliseconds with rounding
5525 actualTotalPartialWakelock =
Bookatz6d799932017-06-07 12:30:07 -07005526 aggTimer.getTotalDurationMsLocked(rawRealtimeMs);
Bookatzc8c44962017-05-11 12:12:54 -07005527 final Timer bgAggTimer = aggTimer.getSubTimer();
5528 actualBgPartialWakelock = bgAggTimer != null ?
Bookatz6d799932017-06-07 12:30:07 -07005529 bgAggTimer.getTotalDurationMsLocked(rawRealtimeMs) : 0;
Bookatzc8c44962017-05-11 12:12:54 -07005530 }
5531
5532 if (actualTotalPartialWakelock != 0 || actualBgPartialWakelock != 0 ||
5533 totalFullWakelock != 0 || totalPartialWakelock != 0 ||
5534 totalWindowWakelock != 0) {
Dianne Hackbornfdb19562014-07-11 16:03:36 -07005535 sb.setLength(0);
5536 sb.append(prefix);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005537 sb.append(" TOTAL wake: ");
5538 boolean needComma = false;
5539 if (totalFullWakelock != 0) {
5540 needComma = true;
5541 formatTimeMs(sb, totalFullWakelock);
5542 sb.append("full");
Dianne Hackbornfdb19562014-07-11 16:03:36 -07005543 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005544 if (totalPartialWakelock != 0) {
5545 if (needComma) {
5546 sb.append(", ");
5547 }
5548 needComma = true;
5549 formatTimeMs(sb, totalPartialWakelock);
Bookatzc8c44962017-05-11 12:12:54 -07005550 sb.append("blamed partial");
5551 }
5552 if (actualTotalPartialWakelock != 0) {
5553 if (needComma) {
5554 sb.append(", ");
5555 }
5556 needComma = true;
5557 formatTimeMs(sb, actualTotalPartialWakelock);
5558 sb.append("actual partial");
5559 }
5560 if (actualBgPartialWakelock != 0) {
5561 if (needComma) {
5562 sb.append(", ");
5563 }
5564 needComma = true;
5565 formatTimeMs(sb, actualBgPartialWakelock);
5566 sb.append("actual background partial");
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005567 }
5568 if (totalWindowWakelock != 0) {
5569 if (needComma) {
5570 sb.append(", ");
5571 }
5572 needComma = true;
5573 formatTimeMs(sb, totalWindowWakelock);
5574 sb.append("window");
5575 }
Jeff Brown6a8bd7b2015-06-19 15:07:51 -07005576 if (totalDrawWakelock != 0) {
Adam Lesinski9425fe22015-06-19 12:02:13 -07005577 if (needComma) {
5578 sb.append(",");
5579 }
5580 needComma = true;
Jeff Brown6a8bd7b2015-06-19 15:07:51 -07005581 formatTimeMs(sb, totalDrawWakelock);
5582 sb.append("draw");
Adam Lesinski9425fe22015-06-19 12:02:13 -07005583 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005584 sb.append(" realtime");
Dianne Hackbornfdb19562014-07-11 16:03:36 -07005585 pw.println(sb.toString());
Dianne Hackbornfdb19562014-07-11 16:03:36 -07005586 }
5587 }
5588
Ahmed ElArabawyddd09692017-10-30 17:58:29 -07005589 // Calculate multicast wakelock stats
5590 final Timer mcTimer = u.getMulticastWakelockStats();
5591 if (mcTimer != null) {
5592 final long multicastWakeLockTimeMicros = mcTimer.getTotalTimeLocked(rawRealtime, which);
5593 final int multicastWakeLockCount = mcTimer.getCountLocked(which);
5594
5595 if (multicastWakeLockTimeMicros > 0) {
5596 sb.setLength(0);
5597 sb.append(prefix);
5598 sb.append(" WiFi Multicast Wakelock");
5599 sb.append(" count = ");
5600 sb.append(multicastWakeLockCount);
5601 sb.append(" time = ");
5602 formatTimeMsNoSpace(sb, (multicastWakeLockTimeMicros + 500) / 1000);
5603 pw.println(sb.toString());
5604 }
5605 }
5606
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005607 final ArrayMap<String, ? extends Timer> syncs = u.getSyncStats();
5608 for (int isy=syncs.size()-1; isy>=0; isy--) {
5609 final Timer timer = syncs.valueAt(isy);
5610 // Convert from microseconds to milliseconds with rounding
5611 final long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000;
5612 final int count = timer.getCountLocked(which);
Bookatz2bffb5b2017-04-13 11:59:33 -07005613 final Timer bgTimer = timer.getSubTimer();
5614 final long bgTime = bgTimer != null ?
Bookatz6d799932017-06-07 12:30:07 -07005615 bgTimer.getTotalDurationMsLocked(rawRealtimeMs) : -1;
Bookatz2bffb5b2017-04-13 11:59:33 -07005616 final int bgCount = bgTimer != null ? bgTimer.getCountLocked(which) : -1;
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005617 sb.setLength(0);
5618 sb.append(prefix);
5619 sb.append(" Sync ");
5620 sb.append(syncs.keyAt(isy));
5621 sb.append(": ");
5622 if (totalTime != 0) {
5623 formatTimeMs(sb, totalTime);
5624 sb.append("realtime (");
5625 sb.append(count);
5626 sb.append(" times)");
Bookatz2bffb5b2017-04-13 11:59:33 -07005627 if (bgTime > 0) {
5628 sb.append(", ");
5629 formatTimeMs(sb, bgTime);
5630 sb.append("background (");
5631 sb.append(bgCount);
5632 sb.append(" times)");
5633 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005634 } else {
5635 sb.append("(not used)");
5636 }
5637 pw.println(sb.toString());
5638 uidActivity = true;
5639 }
5640
5641 final ArrayMap<String, ? extends Timer> jobs = u.getJobStats();
5642 for (int ij=jobs.size()-1; ij>=0; ij--) {
5643 final Timer timer = jobs.valueAt(ij);
5644 // Convert from microseconds to milliseconds with rounding
5645 final long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000;
5646 final int count = timer.getCountLocked(which);
Bookatzaa4594a2017-03-24 12:39:56 -07005647 final Timer bgTimer = timer.getSubTimer();
5648 final long bgTime = bgTimer != null ?
Bookatz6d799932017-06-07 12:30:07 -07005649 bgTimer.getTotalDurationMsLocked(rawRealtimeMs) : -1;
Bookatzaa4594a2017-03-24 12:39:56 -07005650 final int bgCount = bgTimer != null ? bgTimer.getCountLocked(which) : -1;
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005651 sb.setLength(0);
5652 sb.append(prefix);
5653 sb.append(" Job ");
5654 sb.append(jobs.keyAt(ij));
5655 sb.append(": ");
5656 if (totalTime != 0) {
5657 formatTimeMs(sb, totalTime);
5658 sb.append("realtime (");
5659 sb.append(count);
5660 sb.append(" times)");
Bookatzaa4594a2017-03-24 12:39:56 -07005661 if (bgTime > 0) {
5662 sb.append(", ");
5663 formatTimeMs(sb, bgTime);
5664 sb.append("background (");
5665 sb.append(bgCount);
5666 sb.append(" times)");
5667 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005668 } else {
5669 sb.append("(not used)");
5670 }
5671 pw.println(sb.toString());
5672 uidActivity = true;
5673 }
5674
Dianne Hackborn94326cb2017-06-28 16:17:20 -07005675 final ArrayMap<String, SparseIntArray> completions = u.getJobCompletionStats();
5676 for (int ic=completions.size()-1; ic>=0; ic--) {
5677 SparseIntArray types = completions.valueAt(ic);
5678 if (types != null) {
5679 pw.print(prefix);
5680 pw.print(" Job Completions ");
5681 pw.print(completions.keyAt(ic));
5682 pw.print(":");
5683 for (int it=0; it<types.size(); it++) {
5684 pw.print(" ");
5685 pw.print(JobParameters.getReasonName(types.keyAt(it)));
5686 pw.print("(");
5687 pw.print(types.valueAt(it));
5688 pw.print("x)");
5689 }
5690 pw.println();
5691 }
5692 }
5693
Ruben Brunk6d2c3632015-05-26 17:32:16 -07005694 uidActivity |= printTimer(pw, sb, u.getFlashlightTurnedOnTimer(), rawRealtime, which,
5695 prefix, "Flashlight");
5696 uidActivity |= printTimer(pw, sb, u.getCameraTurnedOnTimer(), rawRealtime, which,
5697 prefix, "Camera");
5698 uidActivity |= printTimer(pw, sb, u.getVideoTurnedOnTimer(), rawRealtime, which,
5699 prefix, "Video");
5700 uidActivity |= printTimer(pw, sb, u.getAudioTurnedOnTimer(), rawRealtime, which,
5701 prefix, "Audio");
5702
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005703 final SparseArray<? extends BatteryStats.Uid.Sensor> sensors = u.getSensorStats();
5704 final int NSE = sensors.size();
Dianne Hackborn61659e52014-07-09 16:13:01 -07005705 for (int ise=0; ise<NSE; ise++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005706 final Uid.Sensor se = sensors.valueAt(ise);
5707 final int sensorNumber = sensors.keyAt(ise);
Dianne Hackborn61659e52014-07-09 16:13:01 -07005708 sb.setLength(0);
5709 sb.append(prefix);
5710 sb.append(" Sensor ");
5711 int handle = se.getHandle();
5712 if (handle == Uid.Sensor.GPS) {
5713 sb.append("GPS");
5714 } else {
5715 sb.append(handle);
5716 }
5717 sb.append(": ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005718
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005719 final Timer timer = se.getSensorTime();
Dianne Hackborn61659e52014-07-09 16:13:01 -07005720 if (timer != null) {
5721 // Convert from microseconds to milliseconds with rounding
Bookatz867c0d72017-03-07 18:23:42 -08005722 final long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500)
5723 / 1000;
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005724 final int count = timer.getCountLocked(which);
Bookatz867c0d72017-03-07 18:23:42 -08005725 final Timer bgTimer = se.getSensorBackgroundTime();
5726 final int bgCount = bgTimer != null ? bgTimer.getCountLocked(which) : 0;
Bookatz867c0d72017-03-07 18:23:42 -08005727 // 'actualTime' are unpooled and always since reset (regardless of 'which')
5728 final long actualTime = timer.getTotalDurationMsLocked(rawRealtimeMs);
5729 final long bgActualTime = bgTimer != null ?
5730 bgTimer.getTotalDurationMsLocked(rawRealtimeMs) : 0;
5731
Dianne Hackborn61659e52014-07-09 16:13:01 -07005732 //timer.logState();
5733 if (totalTime != 0) {
Bookatz867c0d72017-03-07 18:23:42 -08005734 if (actualTime != totalTime) {
5735 formatTimeMs(sb, totalTime);
5736 sb.append("blamed realtime, ");
5737 }
5738
5739 formatTimeMs(sb, actualTime); // since reset, regardless of 'which'
Dianne Hackborn61659e52014-07-09 16:13:01 -07005740 sb.append("realtime (");
5741 sb.append(count);
Bookatz867c0d72017-03-07 18:23:42 -08005742 sb.append(" times)");
5743
5744 if (bgActualTime != 0 || bgCount > 0) {
Amith Yamasaniab9ad192016-12-06 12:46:59 -08005745 sb.append(", ");
Bookatz867c0d72017-03-07 18:23:42 -08005746 formatTimeMs(sb, bgActualTime); // since reset, regardless of 'which'
5747 sb.append("background (");
Amith Yamasaniab9ad192016-12-06 12:46:59 -08005748 sb.append(bgCount);
Bookatz867c0d72017-03-07 18:23:42 -08005749 sb.append(" times)");
Amith Yamasaniab9ad192016-12-06 12:46:59 -08005750 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005751 } else {
5752 sb.append("(not used)");
5753 }
Dianne Hackborn61659e52014-07-09 16:13:01 -07005754 } else {
5755 sb.append("(not used)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005756 }
Dianne Hackborn61659e52014-07-09 16:13:01 -07005757
5758 pw.println(sb.toString());
5759 uidActivity = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005760 }
5761
Ruben Brunk6d2c3632015-05-26 17:32:16 -07005762 uidActivity |= printTimer(pw, sb, u.getVibratorOnTimer(), rawRealtime, which, prefix,
5763 "Vibrator");
5764 uidActivity |= printTimer(pw, sb, u.getForegroundActivityTimer(), rawRealtime, which,
5765 prefix, "Foreground activities");
Michael Wachenschwanzb05a3c52017-07-07 17:47:04 -07005766 uidActivity |= printTimer(pw, sb, u.getForegroundServiceTimer(), rawRealtime, which,
5767 prefix, "Foreground services");
Jeff Sharkey3e013e82013-04-25 14:48:19 -07005768
Dianne Hackborn61659e52014-07-09 16:13:01 -07005769 long totalStateTime = 0;
5770 for (int ips=0; ips<Uid.NUM_PROCESS_STATE; ips++) {
5771 long time = u.getProcessStateTime(ips, rawRealtime, which);
5772 if (time > 0) {
5773 totalStateTime += time;
5774 sb.setLength(0);
5775 sb.append(prefix);
5776 sb.append(" ");
5777 sb.append(Uid.PROCESS_STATE_NAMES[ips]);
5778 sb.append(" for: ");
Dianne Hackborna8d10942015-11-19 17:55:19 -08005779 formatTimeMs(sb, (time + 500) / 1000);
Dianne Hackborn61659e52014-07-09 16:13:01 -07005780 pw.println(sb.toString());
5781 uidActivity = true;
5782 }
5783 }
Dianne Hackborna8d10942015-11-19 17:55:19 -08005784 if (totalStateTime > 0) {
5785 sb.setLength(0);
5786 sb.append(prefix);
5787 sb.append(" Total running: ");
5788 formatTimeMs(sb, (totalStateTime + 500) / 1000);
5789 pw.println(sb.toString());
5790 }
Dianne Hackborn61659e52014-07-09 16:13:01 -07005791
Adam Lesinski06af1fa2015-05-05 17:35:35 -07005792 final long userCpuTimeUs = u.getUserCpuTimeUs(which);
5793 final long systemCpuTimeUs = u.getSystemCpuTimeUs(which);
Adam Lesinskid4abd1e2017-04-12 11:29:13 -07005794 if (userCpuTimeUs > 0 || systemCpuTimeUs > 0) {
Adam Lesinski06af1fa2015-05-05 17:35:35 -07005795 sb.setLength(0);
5796 sb.append(prefix);
Adam Lesinski72478f02015-06-17 15:39:43 -07005797 sb.append(" Total cpu time: u=");
5798 formatTimeMs(sb, userCpuTimeUs / 1000);
5799 sb.append("s=");
5800 formatTimeMs(sb, systemCpuTimeUs / 1000);
Adam Lesinski06af1fa2015-05-05 17:35:35 -07005801 pw.println(sb.toString());
5802 }
5803
Sudheer Shanka9b735c52017-05-09 18:26:18 -07005804 final long[] cpuFreqTimes = u.getCpuFreqTimes(which);
5805 if (cpuFreqTimes != null) {
5806 sb.setLength(0);
5807 sb.append(" Total cpu time per freq:");
5808 for (int i = 0; i < cpuFreqTimes.length; ++i) {
5809 sb.append(" " + cpuFreqTimes[i]);
5810 }
5811 pw.println(sb.toString());
5812 }
5813 final long[] screenOffCpuFreqTimes = u.getScreenOffCpuFreqTimes(which);
5814 if (screenOffCpuFreqTimes != null) {
5815 sb.setLength(0);
5816 sb.append(" Total screen-off cpu time per freq:");
5817 for (int i = 0; i < screenOffCpuFreqTimes.length; ++i) {
5818 sb.append(" " + screenOffCpuFreqTimes[i]);
5819 }
5820 pw.println(sb.toString());
5821 }
5822
Sudheer Shankab2f83c12017-11-13 19:25:01 -08005823 for (int procState = 0; procState < Uid.NUM_PROCESS_STATE; ++procState) {
5824 final long[] cpuTimes = u.getCpuFreqTimes(which, procState);
5825 if (cpuTimes != null) {
5826 sb.setLength(0);
5827 sb.append(" Cpu times per freq at state "
5828 + Uid.PROCESS_STATE_NAMES[procState] + ":");
5829 for (int i = 0; i < cpuTimes.length; ++i) {
5830 sb.append(" " + cpuTimes[i]);
5831 }
5832 pw.println(sb.toString());
5833 }
5834
5835 final long[] screenOffCpuTimes = u.getScreenOffCpuFreqTimes(which, procState);
5836 if (screenOffCpuTimes != null) {
5837 sb.setLength(0);
5838 sb.append(" Screen-off cpu times per freq at state "
5839 + Uid.PROCESS_STATE_NAMES[procState] + ":");
5840 for (int i = 0; i < screenOffCpuTimes.length; ++i) {
5841 sb.append(" " + screenOffCpuTimes[i]);
5842 }
5843 pw.println(sb.toString());
5844 }
5845 }
5846
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005847 final ArrayMap<String, ? extends BatteryStats.Uid.Proc> processStats
5848 = u.getProcessStats();
5849 for (int ipr=processStats.size()-1; ipr>=0; ipr--) {
5850 final Uid.Proc ps = processStats.valueAt(ipr);
5851 long userTime;
5852 long systemTime;
5853 long foregroundTime;
5854 int starts;
5855 int numExcessive;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005856
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005857 userTime = ps.getUserTime(which);
5858 systemTime = ps.getSystemTime(which);
5859 foregroundTime = ps.getForegroundTime(which);
5860 starts = ps.getStarts(which);
5861 final int numCrashes = ps.getNumCrashes(which);
5862 final int numAnrs = ps.getNumAnrs(which);
5863 numExcessive = which == STATS_SINCE_CHARGED
5864 ? ps.countExcessivePowers() : 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005865
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005866 if (userTime != 0 || systemTime != 0 || foregroundTime != 0 || starts != 0
5867 || numExcessive != 0 || numCrashes != 0 || numAnrs != 0) {
5868 sb.setLength(0);
5869 sb.append(prefix); sb.append(" Proc ");
5870 sb.append(processStats.keyAt(ipr)); sb.append(":\n");
5871 sb.append(prefix); sb.append(" CPU: ");
5872 formatTimeMs(sb, userTime); sb.append("usr + ");
5873 formatTimeMs(sb, systemTime); sb.append("krn ; ");
5874 formatTimeMs(sb, foregroundTime); sb.append("fg");
5875 if (starts != 0 || numCrashes != 0 || numAnrs != 0) {
5876 sb.append("\n"); sb.append(prefix); sb.append(" ");
5877 boolean hasOne = false;
5878 if (starts != 0) {
5879 hasOne = true;
5880 sb.append(starts); sb.append(" starts");
Dianne Hackborn0d903a82010-09-07 23:51:03 -07005881 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005882 if (numCrashes != 0) {
5883 if (hasOne) {
5884 sb.append(", ");
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07005885 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005886 hasOne = true;
5887 sb.append(numCrashes); sb.append(" crashes");
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07005888 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005889 if (numAnrs != 0) {
5890 if (hasOne) {
5891 sb.append(", ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005892 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005893 sb.append(numAnrs); sb.append(" anrs");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005894 }
5895 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005896 pw.println(sb.toString());
5897 for (int e=0; e<numExcessive; e++) {
5898 Uid.Proc.ExcessivePower ew = ps.getExcessivePower(e);
5899 if (ew != null) {
5900 pw.print(prefix); pw.print(" * Killed for ");
Dianne Hackbornffca58b2017-05-24 16:15:45 -07005901 if (ew.type == Uid.Proc.ExcessivePower.TYPE_CPU) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005902 pw.print("cpu");
5903 } else {
5904 pw.print("unknown");
5905 }
5906 pw.print(" use: ");
5907 TimeUtils.formatDuration(ew.usedTime, pw);
5908 pw.print(" over ");
5909 TimeUtils.formatDuration(ew.overTime, pw);
5910 if (ew.overTime != 0) {
5911 pw.print(" (");
5912 pw.print((ew.usedTime*100)/ew.overTime);
5913 pw.println("%)");
5914 }
5915 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005916 }
5917 uidActivity = true;
5918 }
5919 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005920
5921 final ArrayMap<String, ? extends BatteryStats.Uid.Pkg> packageStats
5922 = u.getPackageStats();
5923 for (int ipkg=packageStats.size()-1; ipkg>=0; ipkg--) {
5924 pw.print(prefix); pw.print(" Apk "); pw.print(packageStats.keyAt(ipkg));
5925 pw.println(":");
5926 boolean apkActivity = false;
5927 final Uid.Pkg ps = packageStats.valueAt(ipkg);
5928 final ArrayMap<String, ? extends Counter> alarms = ps.getWakeupAlarmStats();
5929 for (int iwa=alarms.size()-1; iwa>=0; iwa--) {
5930 pw.print(prefix); pw.print(" Wakeup alarm ");
5931 pw.print(alarms.keyAt(iwa)); pw.print(": ");
5932 pw.print(alarms.valueAt(iwa).getCountLocked(which));
5933 pw.println(" times");
5934 apkActivity = true;
5935 }
5936 final ArrayMap<String, ? extends Uid.Pkg.Serv> serviceStats = ps.getServiceStats();
5937 for (int isvc=serviceStats.size()-1; isvc>=0; isvc--) {
5938 final BatteryStats.Uid.Pkg.Serv ss = serviceStats.valueAt(isvc);
5939 final long startTime = ss.getStartTime(batteryUptime, which);
5940 final int starts = ss.getStarts(which);
5941 final int launches = ss.getLaunches(which);
5942 if (startTime != 0 || starts != 0 || launches != 0) {
5943 sb.setLength(0);
5944 sb.append(prefix); sb.append(" Service ");
5945 sb.append(serviceStats.keyAt(isvc)); sb.append(":\n");
5946 sb.append(prefix); sb.append(" Created for: ");
5947 formatTimeMs(sb, startTime / 1000);
5948 sb.append("uptime\n");
5949 sb.append(prefix); sb.append(" Starts: ");
5950 sb.append(starts);
5951 sb.append(", launches: "); sb.append(launches);
5952 pw.println(sb.toString());
5953 apkActivity = true;
5954 }
5955 }
5956 if (!apkActivity) {
5957 pw.print(prefix); pw.println(" (nothing executed)");
5958 }
5959 uidActivity = true;
5960 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005961 if (!uidActivity) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07005962 pw.print(prefix); pw.println(" (nothing executed)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005963 }
5964 }
5965 }
5966
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08005967 static void printBitDescriptions(PrintWriter pw, int oldval, int newval, HistoryTag wakelockTag,
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08005968 BitDescription[] descriptions, boolean longNames) {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07005969 int diff = oldval ^ newval;
5970 if (diff == 0) return;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08005971 boolean didWake = false;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07005972 for (int i=0; i<descriptions.length; i++) {
5973 BitDescription bd = descriptions[i];
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08005974 if ((diff&bd.mask) != 0) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08005975 pw.print(longNames ? " " : ",");
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07005976 if (bd.shift < 0) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08005977 pw.print((newval&bd.mask) != 0 ? "+" : "-");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08005978 pw.print(longNames ? bd.name : bd.shortName);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08005979 if (bd.mask == HistoryItem.STATE_WAKE_LOCK_FLAG && wakelockTag != null) {
5980 didWake = true;
5981 pw.print("=");
5982 if (longNames) {
5983 UserHandle.formatUid(pw, wakelockTag.uid);
5984 pw.print(":\"");
5985 pw.print(wakelockTag.string);
5986 pw.print("\"");
5987 } else {
5988 pw.print(wakelockTag.poolIdx);
5989 }
5990 }
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07005991 } else {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08005992 pw.print(longNames ? bd.name : bd.shortName);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07005993 pw.print("=");
5994 int val = (newval&bd.mask)>>bd.shift;
5995 if (bd.values != null && val >= 0 && val < bd.values.length) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08005996 pw.print(longNames? bd.values[val] : bd.shortValues[val]);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07005997 } else {
5998 pw.print(val);
5999 }
6000 }
6001 }
6002 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006003 if (!didWake && wakelockTag != null) {
Ashish Sharma81850c42014-05-05 13:57:07 -07006004 pw.print(longNames ? " wake_lock=" : ",w=");
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006005 if (longNames) {
6006 UserHandle.formatUid(pw, wakelockTag.uid);
6007 pw.print(":\"");
6008 pw.print(wakelockTag.string);
6009 pw.print("\"");
6010 } else {
6011 pw.print(wakelockTag.poolIdx);
6012 }
6013 }
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07006014 }
Mike Mac2f518a2017-09-19 16:06:03 -07006015
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006016 public void prepareForDumpLocked() {
Kweku Adams2f73ecd2017-09-27 16:59:19 -07006017 // We don't need to require subclasses implement this.
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006018 }
6019
6020 public static class HistoryPrinter {
6021 int oldState = 0;
Dianne Hackborna1bd7922014-03-21 11:07:11 -07006022 int oldState2 = 0;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006023 int oldLevel = -1;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006024 int oldStatus = -1;
6025 int oldHealth = -1;
6026 int oldPlug = -1;
6027 int oldTemp = -1;
6028 int oldVolt = -1;
Adam Lesinskia8018ac2016-05-03 10:18:10 -07006029 int oldChargeMAh = -1;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006030 long lastTime = -1;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006031
Dianne Hackborn3251b902014-06-20 14:40:53 -07006032 void reset() {
6033 oldState = oldState2 = 0;
6034 oldLevel = -1;
6035 oldStatus = -1;
6036 oldHealth = -1;
6037 oldPlug = -1;
6038 oldTemp = -1;
6039 oldVolt = -1;
Adam Lesinskia8018ac2016-05-03 10:18:10 -07006040 oldChargeMAh = -1;
Dianne Hackborn3251b902014-06-20 14:40:53 -07006041 }
6042
Dianne Hackborn99009ea2014-04-18 16:23:42 -07006043 public void printNextItem(PrintWriter pw, HistoryItem rec, long baseTime, boolean checkin,
Dianne Hackborna1bd7922014-03-21 11:07:11 -07006044 boolean verbose) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006045 if (!checkin) {
6046 pw.print(" ");
Dianne Hackborn99009ea2014-04-18 16:23:42 -07006047 TimeUtils.formatDuration(rec.time - baseTime, pw, TimeUtils.HUNDRED_DAY_FIELD_LEN);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006048 pw.print(" (");
6049 pw.print(rec.numReadInts);
6050 pw.print(") ");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006051 } else {
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07006052 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
6053 pw.print(HISTORY_DATA); pw.print(',');
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006054 if (lastTime < 0) {
Dianne Hackborn99009ea2014-04-18 16:23:42 -07006055 pw.print(rec.time - baseTime);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006056 } else {
Dianne Hackborn99009ea2014-04-18 16:23:42 -07006057 pw.print(rec.time - lastTime);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006058 }
6059 lastTime = rec.time;
6060 }
6061 if (rec.cmd == HistoryItem.CMD_START) {
6062 if (checkin) {
6063 pw.print(":");
6064 }
6065 pw.println("START");
Dianne Hackborn3251b902014-06-20 14:40:53 -07006066 reset();
Dianne Hackborn37de0982014-05-09 09:32:18 -07006067 } else if (rec.cmd == HistoryItem.CMD_CURRENT_TIME
6068 || rec.cmd == HistoryItem.CMD_RESET) {
Dianne Hackborne5167ca2014-03-08 14:39:10 -08006069 if (checkin) {
6070 pw.print(":");
6071 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07006072 if (rec.cmd == HistoryItem.CMD_RESET) {
6073 pw.print("RESET:");
Dianne Hackborn3251b902014-06-20 14:40:53 -07006074 reset();
Dianne Hackborn37de0982014-05-09 09:32:18 -07006075 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08006076 pw.print("TIME:");
6077 if (checkin) {
6078 pw.println(rec.currentTime);
6079 } else {
6080 pw.print(" ");
6081 pw.println(DateFormat.format("yyyy-MM-dd-HH-mm-ss",
6082 rec.currentTime).toString());
6083 }
Dianne Hackborn29cd7f12015-01-08 10:37:05 -08006084 } else if (rec.cmd == HistoryItem.CMD_SHUTDOWN) {
6085 if (checkin) {
6086 pw.print(":");
6087 }
6088 pw.println("SHUTDOWN");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006089 } else if (rec.cmd == HistoryItem.CMD_OVERFLOW) {
6090 if (checkin) {
6091 pw.print(":");
6092 }
6093 pw.println("*OVERFLOW*");
6094 } else {
6095 if (!checkin) {
6096 if (rec.batteryLevel < 10) pw.print("00");
6097 else if (rec.batteryLevel < 100) pw.print("0");
6098 pw.print(rec.batteryLevel);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07006099 if (verbose) {
6100 pw.print(" ");
6101 if (rec.states < 0) ;
6102 else if (rec.states < 0x10) pw.print("0000000");
6103 else if (rec.states < 0x100) pw.print("000000");
6104 else if (rec.states < 0x1000) pw.print("00000");
6105 else if (rec.states < 0x10000) pw.print("0000");
6106 else if (rec.states < 0x100000) pw.print("000");
6107 else if (rec.states < 0x1000000) pw.print("00");
6108 else if (rec.states < 0x10000000) pw.print("0");
6109 pw.print(Integer.toHexString(rec.states));
6110 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006111 } else {
6112 if (oldLevel != rec.batteryLevel) {
6113 oldLevel = rec.batteryLevel;
6114 pw.print(",Bl="); pw.print(rec.batteryLevel);
6115 }
6116 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006117 if (oldStatus != rec.batteryStatus) {
6118 oldStatus = rec.batteryStatus;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006119 pw.print(checkin ? ",Bs=" : " status=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006120 switch (oldStatus) {
6121 case BatteryManager.BATTERY_STATUS_UNKNOWN:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006122 pw.print(checkin ? "?" : "unknown");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006123 break;
6124 case BatteryManager.BATTERY_STATUS_CHARGING:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006125 pw.print(checkin ? "c" : "charging");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006126 break;
6127 case BatteryManager.BATTERY_STATUS_DISCHARGING:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006128 pw.print(checkin ? "d" : "discharging");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006129 break;
6130 case BatteryManager.BATTERY_STATUS_NOT_CHARGING:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006131 pw.print(checkin ? "n" : "not-charging");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006132 break;
6133 case BatteryManager.BATTERY_STATUS_FULL:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006134 pw.print(checkin ? "f" : "full");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006135 break;
6136 default:
6137 pw.print(oldStatus);
6138 break;
6139 }
6140 }
6141 if (oldHealth != rec.batteryHealth) {
6142 oldHealth = rec.batteryHealth;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006143 pw.print(checkin ? ",Bh=" : " health=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006144 switch (oldHealth) {
6145 case BatteryManager.BATTERY_HEALTH_UNKNOWN:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006146 pw.print(checkin ? "?" : "unknown");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006147 break;
6148 case BatteryManager.BATTERY_HEALTH_GOOD:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006149 pw.print(checkin ? "g" : "good");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006150 break;
6151 case BatteryManager.BATTERY_HEALTH_OVERHEAT:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006152 pw.print(checkin ? "h" : "overheat");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006153 break;
6154 case BatteryManager.BATTERY_HEALTH_DEAD:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006155 pw.print(checkin ? "d" : "dead");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006156 break;
6157 case BatteryManager.BATTERY_HEALTH_OVER_VOLTAGE:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006158 pw.print(checkin ? "v" : "over-voltage");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006159 break;
6160 case BatteryManager.BATTERY_HEALTH_UNSPECIFIED_FAILURE:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006161 pw.print(checkin ? "f" : "failure");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006162 break;
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08006163 case BatteryManager.BATTERY_HEALTH_COLD:
6164 pw.print(checkin ? "c" : "cold");
6165 break;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006166 default:
6167 pw.print(oldHealth);
6168 break;
6169 }
6170 }
6171 if (oldPlug != rec.batteryPlugType) {
6172 oldPlug = rec.batteryPlugType;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006173 pw.print(checkin ? ",Bp=" : " plug=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006174 switch (oldPlug) {
6175 case 0:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006176 pw.print(checkin ? "n" : "none");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006177 break;
6178 case BatteryManager.BATTERY_PLUGGED_AC:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006179 pw.print(checkin ? "a" : "ac");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006180 break;
6181 case BatteryManager.BATTERY_PLUGGED_USB:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006182 pw.print(checkin ? "u" : "usb");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006183 break;
Brian Muramatsu37a37f42012-08-14 15:21:02 -07006184 case BatteryManager.BATTERY_PLUGGED_WIRELESS:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006185 pw.print(checkin ? "w" : "wireless");
Brian Muramatsu37a37f42012-08-14 15:21:02 -07006186 break;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006187 default:
6188 pw.print(oldPlug);
6189 break;
6190 }
6191 }
6192 if (oldTemp != rec.batteryTemperature) {
6193 oldTemp = rec.batteryTemperature;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006194 pw.print(checkin ? ",Bt=" : " temp=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006195 pw.print(oldTemp);
6196 }
6197 if (oldVolt != rec.batteryVoltage) {
6198 oldVolt = rec.batteryVoltage;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006199 pw.print(checkin ? ",Bv=" : " volt=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006200 pw.print(oldVolt);
6201 }
Adam Lesinskia8018ac2016-05-03 10:18:10 -07006202 final int chargeMAh = rec.batteryChargeUAh / 1000;
6203 if (oldChargeMAh != chargeMAh) {
6204 oldChargeMAh = chargeMAh;
Adam Lesinski926969b2016-04-28 17:31:12 -07006205 pw.print(checkin ? ",Bcc=" : " charge=");
Adam Lesinskia8018ac2016-05-03 10:18:10 -07006206 pw.print(oldChargeMAh);
Adam Lesinski926969b2016-04-28 17:31:12 -07006207 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006208 printBitDescriptions(pw, oldState, rec.states, rec.wakelockTag,
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006209 HISTORY_STATE_DESCRIPTIONS, !checkin);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07006210 printBitDescriptions(pw, oldState2, rec.states2, null,
6211 HISTORY_STATE2_DESCRIPTIONS, !checkin);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006212 if (rec.wakeReasonTag != null) {
6213 if (checkin) {
Dianne Hackbornd06dcfd2014-05-02 13:49:30 -07006214 pw.print(",wr=");
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006215 pw.print(rec.wakeReasonTag.poolIdx);
6216 } else {
6217 pw.print(" wake_reason=");
6218 pw.print(rec.wakeReasonTag.uid);
6219 pw.print(":\"");
6220 pw.print(rec.wakeReasonTag.string);
6221 pw.print("\"");
6222 }
6223 }
Dianne Hackborn099bc622014-01-22 13:39:16 -08006224 if (rec.eventCode != HistoryItem.EVENT_NONE) {
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08006225 pw.print(checkin ? "," : " ");
6226 if ((rec.eventCode&HistoryItem.EVENT_FLAG_START) != 0) {
6227 pw.print("+");
6228 } else if ((rec.eventCode&HistoryItem.EVENT_FLAG_FINISH) != 0) {
6229 pw.print("-");
Dianne Hackborn099bc622014-01-22 13:39:16 -08006230 }
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08006231 String[] eventNames = checkin ? HISTORY_EVENT_CHECKIN_NAMES
6232 : HISTORY_EVENT_NAMES;
6233 int idx = rec.eventCode & ~(HistoryItem.EVENT_FLAG_START
6234 | HistoryItem.EVENT_FLAG_FINISH);
6235 if (idx >= 0 && idx < eventNames.length) {
6236 pw.print(eventNames[idx]);
6237 } else {
6238 pw.print(checkin ? "Ev" : "event");
6239 pw.print(idx);
6240 }
6241 pw.print("=");
Dianne Hackborn099bc622014-01-22 13:39:16 -08006242 if (checkin) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006243 pw.print(rec.eventTag.poolIdx);
Dianne Hackborn099bc622014-01-22 13:39:16 -08006244 } else {
Adam Lesinski041d9172016-12-12 12:03:56 -08006245 pw.append(HISTORY_EVENT_INT_FORMATTERS[idx]
6246 .applyAsString(rec.eventTag.uid));
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006247 pw.print(":\"");
6248 pw.print(rec.eventTag.string);
6249 pw.print("\"");
Dianne Hackborn099bc622014-01-22 13:39:16 -08006250 }
6251 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006252 pw.println();
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08006253 if (rec.stepDetails != null) {
6254 if (!checkin) {
6255 pw.print(" Details: cpu=");
6256 pw.print(rec.stepDetails.userTime);
6257 pw.print("u+");
6258 pw.print(rec.stepDetails.systemTime);
6259 pw.print("s");
6260 if (rec.stepDetails.appCpuUid1 >= 0) {
6261 pw.print(" (");
6262 printStepCpuUidDetails(pw, rec.stepDetails.appCpuUid1,
6263 rec.stepDetails.appCpuUTime1, rec.stepDetails.appCpuSTime1);
6264 if (rec.stepDetails.appCpuUid2 >= 0) {
6265 pw.print(", ");
6266 printStepCpuUidDetails(pw, rec.stepDetails.appCpuUid2,
6267 rec.stepDetails.appCpuUTime2, rec.stepDetails.appCpuSTime2);
6268 }
6269 if (rec.stepDetails.appCpuUid3 >= 0) {
6270 pw.print(", ");
6271 printStepCpuUidDetails(pw, rec.stepDetails.appCpuUid3,
6272 rec.stepDetails.appCpuUTime3, rec.stepDetails.appCpuSTime3);
6273 }
6274 pw.print(')');
6275 }
6276 pw.println();
6277 pw.print(" /proc/stat=");
6278 pw.print(rec.stepDetails.statUserTime);
6279 pw.print(" usr, ");
6280 pw.print(rec.stepDetails.statSystemTime);
6281 pw.print(" sys, ");
6282 pw.print(rec.stepDetails.statIOWaitTime);
6283 pw.print(" io, ");
6284 pw.print(rec.stepDetails.statIrqTime);
6285 pw.print(" irq, ");
6286 pw.print(rec.stepDetails.statSoftIrqTime);
6287 pw.print(" sirq, ");
6288 pw.print(rec.stepDetails.statIdlTime);
6289 pw.print(" idle");
6290 int totalRun = rec.stepDetails.statUserTime + rec.stepDetails.statSystemTime
6291 + rec.stepDetails.statIOWaitTime + rec.stepDetails.statIrqTime
6292 + rec.stepDetails.statSoftIrqTime;
6293 int total = totalRun + rec.stepDetails.statIdlTime;
6294 if (total > 0) {
6295 pw.print(" (");
6296 float perc = ((float)totalRun) / ((float)total) * 100;
6297 pw.print(String.format("%.1f%%", perc));
6298 pw.print(" of ");
6299 StringBuilder sb = new StringBuilder(64);
6300 formatTimeMsNoSpace(sb, total*10);
6301 pw.print(sb);
6302 pw.print(")");
6303 }
Badhri Jagan Sridharan68cdf192016-04-03 21:57:15 -07006304 pw.print(", PlatformIdleStat ");
6305 pw.print(rec.stepDetails.statPlatformIdleState);
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08006306 pw.println();
Ahmed ElArabawyd8b44112017-05-23 21:25:02 +00006307
6308 pw.print(", SubsystemPowerState ");
6309 pw.print(rec.stepDetails.statSubsystemPowerState);
6310 pw.println();
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08006311 } else {
6312 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
6313 pw.print(HISTORY_DATA); pw.print(",0,Dcpu=");
6314 pw.print(rec.stepDetails.userTime);
6315 pw.print(":");
6316 pw.print(rec.stepDetails.systemTime);
6317 if (rec.stepDetails.appCpuUid1 >= 0) {
6318 printStepCpuUidCheckinDetails(pw, rec.stepDetails.appCpuUid1,
6319 rec.stepDetails.appCpuUTime1, rec.stepDetails.appCpuSTime1);
6320 if (rec.stepDetails.appCpuUid2 >= 0) {
6321 printStepCpuUidCheckinDetails(pw, rec.stepDetails.appCpuUid2,
6322 rec.stepDetails.appCpuUTime2, rec.stepDetails.appCpuSTime2);
6323 }
6324 if (rec.stepDetails.appCpuUid3 >= 0) {
6325 printStepCpuUidCheckinDetails(pw, rec.stepDetails.appCpuUid3,
6326 rec.stepDetails.appCpuUTime3, rec.stepDetails.appCpuSTime3);
6327 }
6328 }
6329 pw.println();
6330 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
6331 pw.print(HISTORY_DATA); pw.print(",0,Dpst=");
6332 pw.print(rec.stepDetails.statUserTime);
6333 pw.print(',');
6334 pw.print(rec.stepDetails.statSystemTime);
6335 pw.print(',');
6336 pw.print(rec.stepDetails.statIOWaitTime);
6337 pw.print(',');
6338 pw.print(rec.stepDetails.statIrqTime);
6339 pw.print(',');
6340 pw.print(rec.stepDetails.statSoftIrqTime);
6341 pw.print(',');
6342 pw.print(rec.stepDetails.statIdlTime);
Badhri Jagan Sridharan68cdf192016-04-03 21:57:15 -07006343 pw.print(',');
Adam Lesinski8568d8f2016-07-15 18:13:23 -07006344 if (rec.stepDetails.statPlatformIdleState != null) {
6345 pw.print(rec.stepDetails.statPlatformIdleState);
Ahmed ElArabawy307edcd2017-07-07 17:48:13 -07006346 if (rec.stepDetails.statSubsystemPowerState != null) {
6347 pw.print(',');
6348 }
Adam Lesinski8568d8f2016-07-15 18:13:23 -07006349 }
Ahmed ElArabawyd8b44112017-05-23 21:25:02 +00006350
6351 if (rec.stepDetails.statSubsystemPowerState != null) {
6352 pw.print(rec.stepDetails.statSubsystemPowerState);
6353 }
6354 pw.println();
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08006355 }
6356 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08006357 oldState = rec.states;
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07006358 oldState2 = rec.states2;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006359 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006360 }
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08006361
6362 private void printStepCpuUidDetails(PrintWriter pw, int uid, int utime, int stime) {
6363 UserHandle.formatUid(pw, uid);
6364 pw.print("=");
6365 pw.print(utime);
6366 pw.print("u+");
6367 pw.print(stime);
6368 pw.print("s");
6369 }
6370
6371 private void printStepCpuUidCheckinDetails(PrintWriter pw, int uid, int utime, int stime) {
6372 pw.print('/');
6373 pw.print(uid);
6374 pw.print(":");
6375 pw.print(utime);
6376 pw.print(":");
6377 pw.print(stime);
6378 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006379 }
6380
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006381 private void printSizeValue(PrintWriter pw, long size) {
6382 float result = size;
6383 String suffix = "";
6384 if (result >= 10*1024) {
6385 suffix = "KB";
6386 result = result / 1024;
6387 }
6388 if (result >= 10*1024) {
6389 suffix = "MB";
6390 result = result / 1024;
6391 }
6392 if (result >= 10*1024) {
6393 suffix = "GB";
6394 result = result / 1024;
6395 }
6396 if (result >= 10*1024) {
6397 suffix = "TB";
6398 result = result / 1024;
6399 }
6400 if (result >= 10*1024) {
6401 suffix = "PB";
6402 result = result / 1024;
6403 }
6404 pw.print((int)result);
6405 pw.print(suffix);
6406 }
6407
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006408 private static boolean dumpTimeEstimate(PrintWriter pw, String label1, String label2,
6409 String label3, long estimatedTime) {
6410 if (estimatedTime < 0) {
Dianne Hackbornad6a99b2014-11-18 10:11:10 -08006411 return false;
6412 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006413 pw.print(label1);
6414 pw.print(label2);
6415 pw.print(label3);
Dianne Hackbornad6a99b2014-11-18 10:11:10 -08006416 StringBuilder sb = new StringBuilder(64);
6417 formatTimeMs(sb, estimatedTime);
6418 pw.print(sb);
6419 pw.println();
Dianne Hackbornad6a99b2014-11-18 10:11:10 -08006420 return true;
6421 }
6422
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006423 private static boolean dumpDurationSteps(PrintWriter pw, String prefix, String header,
6424 LevelStepTracker steps, boolean checkin) {
6425 if (steps == null) {
6426 return false;
6427 }
6428 int count = steps.mNumStepDurations;
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006429 if (count <= 0) {
6430 return false;
6431 }
6432 if (!checkin) {
6433 pw.println(header);
6434 }
Kweku Adams030980a2015-04-01 16:07:48 -07006435 String[] lineArgs = new String[5];
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006436 for (int i=0; i<count; i++) {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006437 long duration = steps.getDurationAt(i);
6438 int level = steps.getLevelAt(i);
6439 long initMode = steps.getInitModeAt(i);
6440 long modMode = steps.getModModeAt(i);
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006441 if (checkin) {
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07006442 lineArgs[0] = Long.toString(duration);
6443 lineArgs[1] = Integer.toString(level);
6444 if ((modMode&STEP_LEVEL_MODE_SCREEN_STATE) == 0) {
6445 switch ((int)(initMode&STEP_LEVEL_MODE_SCREEN_STATE) + 1) {
6446 case Display.STATE_OFF: lineArgs[2] = "s-"; break;
6447 case Display.STATE_ON: lineArgs[2] = "s+"; break;
6448 case Display.STATE_DOZE: lineArgs[2] = "sd"; break;
6449 case Display.STATE_DOZE_SUSPEND: lineArgs[2] = "sds"; break;
Kweku Adams030980a2015-04-01 16:07:48 -07006450 default: lineArgs[2] = "?"; break;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07006451 }
6452 } else {
6453 lineArgs[2] = "";
6454 }
6455 if ((modMode&STEP_LEVEL_MODE_POWER_SAVE) == 0) {
6456 lineArgs[3] = (initMode&STEP_LEVEL_MODE_POWER_SAVE) != 0 ? "p+" : "p-";
6457 } else {
6458 lineArgs[3] = "";
6459 }
Dianne Hackborn88e98df2015-03-23 13:29:14 -07006460 if ((modMode&STEP_LEVEL_MODE_DEVICE_IDLE) == 0) {
Kweku Adams030980a2015-04-01 16:07:48 -07006461 lineArgs[4] = (initMode&STEP_LEVEL_MODE_DEVICE_IDLE) != 0 ? "i+" : "i-";
Dianne Hackborn88e98df2015-03-23 13:29:14 -07006462 } else {
Kweku Adams030980a2015-04-01 16:07:48 -07006463 lineArgs[4] = "";
Dianne Hackborn88e98df2015-03-23 13:29:14 -07006464 }
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006465 dumpLine(pw, 0 /* uid */, "i" /* category */, header, (Object[])lineArgs);
6466 } else {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006467 pw.print(prefix);
6468 pw.print("#"); pw.print(i); pw.print(": ");
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07006469 TimeUtils.formatDuration(duration, pw);
6470 pw.print(" to "); pw.print(level);
6471 boolean haveModes = false;
6472 if ((modMode&STEP_LEVEL_MODE_SCREEN_STATE) == 0) {
6473 pw.print(" (");
6474 switch ((int)(initMode&STEP_LEVEL_MODE_SCREEN_STATE) + 1) {
6475 case Display.STATE_OFF: pw.print("screen-off"); break;
6476 case Display.STATE_ON: pw.print("screen-on"); break;
6477 case Display.STATE_DOZE: pw.print("screen-doze"); break;
6478 case Display.STATE_DOZE_SUSPEND: pw.print("screen-doze-suspend"); break;
Kweku Adams030980a2015-04-01 16:07:48 -07006479 default: pw.print("screen-?"); break;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07006480 }
6481 haveModes = true;
6482 }
6483 if ((modMode&STEP_LEVEL_MODE_POWER_SAVE) == 0) {
6484 pw.print(haveModes ? ", " : " (");
6485 pw.print((initMode&STEP_LEVEL_MODE_POWER_SAVE) != 0
6486 ? "power-save-on" : "power-save-off");
6487 haveModes = true;
6488 }
Dianne Hackborn88e98df2015-03-23 13:29:14 -07006489 if ((modMode&STEP_LEVEL_MODE_DEVICE_IDLE) == 0) {
6490 pw.print(haveModes ? ", " : " (");
6491 pw.print((initMode&STEP_LEVEL_MODE_DEVICE_IDLE) != 0
6492 ? "device-idle-on" : "device-idle-off");
6493 haveModes = true;
6494 }
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07006495 if (haveModes) {
6496 pw.print(")");
6497 }
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006498 pw.println();
6499 }
6500 }
6501 return true;
6502 }
6503
Kweku Adams87b19ec2017-10-09 12:40:03 -07006504 private static void dumpDurationSteps(ProtoOutputStream proto, long fieldId,
6505 LevelStepTracker steps) {
6506 if (steps == null) {
6507 return;
6508 }
6509 int count = steps.mNumStepDurations;
Kweku Adams87b19ec2017-10-09 12:40:03 -07006510 for (int i = 0; i < count; ++i) {
Kweku Adams103351f2017-10-16 14:39:34 -07006511 long token = proto.start(fieldId);
Kweku Adams87b19ec2017-10-09 12:40:03 -07006512 proto.write(SystemProto.BatteryLevelStep.DURATION_MS, steps.getDurationAt(i));
6513 proto.write(SystemProto.BatteryLevelStep.LEVEL, steps.getLevelAt(i));
6514
6515 final long initMode = steps.getInitModeAt(i);
6516 final long modMode = steps.getModModeAt(i);
6517
6518 int ds = SystemProto.BatteryLevelStep.DS_MIXED;
6519 if ((modMode & STEP_LEVEL_MODE_SCREEN_STATE) == 0) {
6520 switch ((int) (initMode & STEP_LEVEL_MODE_SCREEN_STATE) + 1) {
6521 case Display.STATE_OFF:
6522 ds = SystemProto.BatteryLevelStep.DS_OFF;
6523 break;
6524 case Display.STATE_ON:
6525 ds = SystemProto.BatteryLevelStep.DS_ON;
6526 break;
6527 case Display.STATE_DOZE:
6528 ds = SystemProto.BatteryLevelStep.DS_DOZE;
6529 break;
6530 case Display.STATE_DOZE_SUSPEND:
6531 ds = SystemProto.BatteryLevelStep.DS_DOZE_SUSPEND;
6532 break;
6533 default:
6534 ds = SystemProto.BatteryLevelStep.DS_ERROR;
6535 break;
6536 }
6537 }
6538 proto.write(SystemProto.BatteryLevelStep.DISPLAY_STATE, ds);
6539
6540 int psm = SystemProto.BatteryLevelStep.PSM_MIXED;
6541 if ((modMode & STEP_LEVEL_MODE_POWER_SAVE) == 0) {
6542 psm = (initMode & STEP_LEVEL_MODE_POWER_SAVE) != 0
6543 ? SystemProto.BatteryLevelStep.PSM_ON : SystemProto.BatteryLevelStep.PSM_OFF;
6544 }
6545 proto.write(SystemProto.BatteryLevelStep.POWER_SAVE_MODE, psm);
6546
6547 int im = SystemProto.BatteryLevelStep.IM_MIXED;
6548 if ((modMode & STEP_LEVEL_MODE_DEVICE_IDLE) == 0) {
6549 im = (initMode & STEP_LEVEL_MODE_DEVICE_IDLE) != 0
6550 ? SystemProto.BatteryLevelStep.IM_ON : SystemProto.BatteryLevelStep.IM_OFF;
6551 }
6552 proto.write(SystemProto.BatteryLevelStep.IDLE_MODE, im);
6553
6554 proto.end(token);
6555 }
6556 }
6557
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006558 public static final int DUMP_CHARGED_ONLY = 1<<1;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006559 public static final int DUMP_DAILY_ONLY = 1<<2;
6560 public static final int DUMP_HISTORY_ONLY = 1<<3;
6561 public static final int DUMP_INCLUDE_HISTORY = 1<<4;
6562 public static final int DUMP_VERBOSE = 1<<5;
6563 public static final int DUMP_DEVICE_WIFI_ONLY = 1<<6;
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006564
Dianne Hackborn37de0982014-05-09 09:32:18 -07006565 private void dumpHistoryLocked(PrintWriter pw, int flags, long histStart, boolean checkin) {
6566 final HistoryPrinter hprinter = new HistoryPrinter();
6567 final HistoryItem rec = new HistoryItem();
6568 long lastTime = -1;
6569 long baseTime = -1;
6570 boolean printed = false;
6571 HistoryEventTracker tracker = null;
6572 while (getNextHistoryLocked(rec)) {
6573 lastTime = rec.time;
6574 if (baseTime < 0) {
6575 baseTime = lastTime;
6576 }
6577 if (rec.time >= histStart) {
6578 if (histStart >= 0 && !printed) {
6579 if (rec.cmd == HistoryItem.CMD_CURRENT_TIME
Ashish Sharma60200712014-05-23 18:22:20 -07006580 || rec.cmd == HistoryItem.CMD_RESET
Dianne Hackborn29cd7f12015-01-08 10:37:05 -08006581 || rec.cmd == HistoryItem.CMD_START
6582 || rec.cmd == HistoryItem.CMD_SHUTDOWN) {
Dianne Hackborn37de0982014-05-09 09:32:18 -07006583 printed = true;
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07006584 hprinter.printNextItem(pw, rec, baseTime, checkin,
6585 (flags&DUMP_VERBOSE) != 0);
6586 rec.cmd = HistoryItem.CMD_UPDATE;
Dianne Hackborn37de0982014-05-09 09:32:18 -07006587 } else if (rec.currentTime != 0) {
6588 printed = true;
6589 byte cmd = rec.cmd;
6590 rec.cmd = HistoryItem.CMD_CURRENT_TIME;
Dianne Hackborn37de0982014-05-09 09:32:18 -07006591 hprinter.printNextItem(pw, rec, baseTime, checkin,
6592 (flags&DUMP_VERBOSE) != 0);
6593 rec.cmd = cmd;
6594 }
6595 if (tracker != null) {
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07006596 if (rec.cmd != HistoryItem.CMD_UPDATE) {
6597 hprinter.printNextItem(pw, rec, baseTime, checkin,
6598 (flags&DUMP_VERBOSE) != 0);
6599 rec.cmd = HistoryItem.CMD_UPDATE;
6600 }
6601 int oldEventCode = rec.eventCode;
6602 HistoryTag oldEventTag = rec.eventTag;
Dianne Hackborn37de0982014-05-09 09:32:18 -07006603 rec.eventTag = new HistoryTag();
6604 for (int i=0; i<HistoryItem.EVENT_COUNT; i++) {
6605 HashMap<String, SparseIntArray> active
6606 = tracker.getStateForEvent(i);
6607 if (active == null) {
6608 continue;
6609 }
6610 for (HashMap.Entry<String, SparseIntArray> ent
6611 : active.entrySet()) {
6612 SparseIntArray uids = ent.getValue();
6613 for (int j=0; j<uids.size(); j++) {
6614 rec.eventCode = i;
6615 rec.eventTag.string = ent.getKey();
6616 rec.eventTag.uid = uids.keyAt(j);
6617 rec.eventTag.poolIdx = uids.valueAt(j);
Dianne Hackborn37de0982014-05-09 09:32:18 -07006618 hprinter.printNextItem(pw, rec, baseTime, checkin,
6619 (flags&DUMP_VERBOSE) != 0);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07006620 rec.wakeReasonTag = null;
6621 rec.wakelockTag = null;
Dianne Hackborn37de0982014-05-09 09:32:18 -07006622 }
6623 }
6624 }
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07006625 rec.eventCode = oldEventCode;
6626 rec.eventTag = oldEventTag;
Dianne Hackborn37de0982014-05-09 09:32:18 -07006627 tracker = null;
6628 }
6629 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07006630 hprinter.printNextItem(pw, rec, baseTime, checkin,
6631 (flags&DUMP_VERBOSE) != 0);
Dianne Hackborn536456f2014-05-23 16:51:05 -07006632 } else if (false && rec.eventCode != HistoryItem.EVENT_NONE) {
6633 // This is an attempt to aggregate the previous state and generate
6634 // fake events to reflect that state at the point where we start
6635 // printing real events. It doesn't really work right, so is turned off.
Dianne Hackborn37de0982014-05-09 09:32:18 -07006636 if (tracker == null) {
6637 tracker = new HistoryEventTracker();
6638 }
6639 tracker.updateState(rec.eventCode, rec.eventTag.string,
6640 rec.eventTag.uid, rec.eventTag.poolIdx);
6641 }
6642 }
6643 if (histStart >= 0) {
Dianne Hackbornfc064132014-06-02 12:42:12 -07006644 commitCurrentHistoryBatchLocked();
Dianne Hackborn37de0982014-05-09 09:32:18 -07006645 pw.print(checkin ? "NEXT: " : " NEXT: "); pw.println(lastTime+1);
6646 }
6647 }
6648
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006649 private void dumpDailyLevelStepSummary(PrintWriter pw, String prefix, String label,
6650 LevelStepTracker steps, StringBuilder tmpSb, int[] tmpOutInt) {
6651 if (steps == null) {
6652 return;
6653 }
6654 long timeRemaining = steps.computeTimeEstimate(0, 0, tmpOutInt);
6655 if (timeRemaining >= 0) {
6656 pw.print(prefix); pw.print(label); pw.print(" total time: ");
6657 tmpSb.setLength(0);
6658 formatTimeMs(tmpSb, timeRemaining);
6659 pw.print(tmpSb);
6660 pw.print(" (from "); pw.print(tmpOutInt[0]);
6661 pw.println(" steps)");
6662 }
6663 for (int i=0; i< STEP_LEVEL_MODES_OF_INTEREST.length; i++) {
6664 long estimatedTime = steps.computeTimeEstimate(STEP_LEVEL_MODES_OF_INTEREST[i],
6665 STEP_LEVEL_MODE_VALUES[i], tmpOutInt);
6666 if (estimatedTime > 0) {
6667 pw.print(prefix); pw.print(label); pw.print(" ");
6668 pw.print(STEP_LEVEL_MODE_LABELS[i]);
6669 pw.print(" time: ");
6670 tmpSb.setLength(0);
6671 formatTimeMs(tmpSb, estimatedTime);
6672 pw.print(tmpSb);
6673 pw.print(" (from "); pw.print(tmpOutInt[0]);
6674 pw.println(" steps)");
6675 }
6676 }
6677 }
6678
Dianne Hackborn88e98df2015-03-23 13:29:14 -07006679 private void dumpDailyPackageChanges(PrintWriter pw, String prefix,
6680 ArrayList<PackageChange> changes) {
6681 if (changes == null) {
6682 return;
6683 }
6684 pw.print(prefix); pw.println("Package changes:");
6685 for (int i=0; i<changes.size(); i++) {
6686 PackageChange pc = changes.get(i);
6687 if (pc.mUpdate) {
6688 pw.print(prefix); pw.print(" Update "); pw.print(pc.mPackageName);
6689 pw.print(" vers="); pw.println(pc.mVersionCode);
6690 } else {
6691 pw.print(prefix); pw.print(" Uninstall "); pw.println(pc.mPackageName);
6692 }
6693 }
6694 }
6695
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006696 /**
6697 * Dumps a human-readable summary of the battery statistics to the given PrintWriter.
6698 *
6699 * @param pw a Printer to receive the dump output.
6700 */
6701 @SuppressWarnings("unused")
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006702 public void dumpLocked(Context context, PrintWriter pw, int flags, int reqUid, long histStart) {
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006703 prepareForDumpLocked();
6704
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006705 final boolean filtering = (flags
Dianne Hackborn1e725a72015-03-24 18:23:19 -07006706 & (DUMP_HISTORY_ONLY|DUMP_CHARGED_ONLY|DUMP_DAILY_ONLY)) != 0;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006707
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006708 if ((flags&DUMP_HISTORY_ONLY) != 0 || !filtering) {
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006709 final long historyTotalSize = getHistoryTotalSize();
6710 final long historyUsedSize = getHistoryUsedSize();
6711 if (startIteratingHistoryLocked()) {
6712 try {
6713 pw.print("Battery History (");
6714 pw.print((100*historyUsedSize)/historyTotalSize);
6715 pw.print("% used, ");
6716 printSizeValue(pw, historyUsedSize);
6717 pw.print(" used of ");
6718 printSizeValue(pw, historyTotalSize);
6719 pw.print(", ");
6720 pw.print(getHistoryStringPoolSize());
6721 pw.print(" strings using ");
6722 printSizeValue(pw, getHistoryStringPoolBytes());
6723 pw.println("):");
Dianne Hackborn37de0982014-05-09 09:32:18 -07006724 dumpHistoryLocked(pw, flags, histStart, false);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006725 pw.println();
6726 } finally {
6727 finishIteratingHistoryLocked();
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006728 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006729 }
6730
6731 if (startIteratingOldHistoryLocked()) {
6732 try {
Dianne Hackborn37de0982014-05-09 09:32:18 -07006733 final HistoryItem rec = new HistoryItem();
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006734 pw.println("Old battery History:");
6735 HistoryPrinter hprinter = new HistoryPrinter();
Dianne Hackborn99009ea2014-04-18 16:23:42 -07006736 long baseTime = -1;
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006737 while (getNextOldHistoryLocked(rec)) {
Dianne Hackborn99009ea2014-04-18 16:23:42 -07006738 if (baseTime < 0) {
6739 baseTime = rec.time;
6740 }
6741 hprinter.printNextItem(pw, rec, baseTime, false, (flags&DUMP_VERBOSE) != 0);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006742 }
6743 pw.println();
6744 } finally {
6745 finishIteratingOldHistoryLocked();
6746 }
Dianne Hackborn32907cf2010-06-10 17:50:20 -07006747 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006748 }
6749
Dianne Hackborn1e725a72015-03-24 18:23:19 -07006750 if (filtering && (flags&(DUMP_CHARGED_ONLY|DUMP_DAILY_ONLY)) == 0) {
Dianne Hackborn099bc622014-01-22 13:39:16 -08006751 return;
6752 }
6753
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006754 if (!filtering) {
6755 SparseArray<? extends Uid> uidStats = getUidStats();
6756 final int NU = uidStats.size();
6757 boolean didPid = false;
6758 long nowRealtime = SystemClock.elapsedRealtime();
6759 for (int i=0; i<NU; i++) {
6760 Uid uid = uidStats.valueAt(i);
6761 SparseArray<? extends Uid.Pid> pids = uid.getPidStats();
6762 if (pids != null) {
6763 for (int j=0; j<pids.size(); j++) {
6764 Uid.Pid pid = pids.valueAt(j);
6765 if (!didPid) {
6766 pw.println("Per-PID Stats:");
6767 didPid = true;
6768 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08006769 long time = pid.mWakeSumMs + (pid.mWakeNesting > 0
6770 ? (nowRealtime - pid.mWakeStartMs) : 0);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006771 pw.print(" PID "); pw.print(pids.keyAt(j));
6772 pw.print(" wake time: ");
6773 TimeUtils.formatDuration(time, pw);
6774 pw.println("");
Dianne Hackbornb5e31652010-09-07 12:13:55 -07006775 }
Dianne Hackbornb5e31652010-09-07 12:13:55 -07006776 }
6777 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006778 if (didPid) {
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006779 pw.println();
6780 }
Dianne Hackborncd0e3352014-08-07 17:08:09 -07006781 }
6782
6783 if (!filtering || (flags&DUMP_CHARGED_ONLY) != 0) {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006784 if (dumpDurationSteps(pw, " ", "Discharge step durations:",
6785 getDischargeLevelStepTracker(), false)) {
Kweku Adamsb0449e02016-10-12 14:18:27 -07006786 long timeRemaining = computeBatteryTimeRemaining(
6787 SystemClock.elapsedRealtime() * 1000);
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006788 if (timeRemaining >= 0) {
6789 pw.print(" Estimated discharge time remaining: ");
6790 TimeUtils.formatDuration(timeRemaining / 1000, pw);
6791 pw.println();
6792 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006793 final LevelStepTracker steps = getDischargeLevelStepTracker();
6794 for (int i=0; i< STEP_LEVEL_MODES_OF_INTEREST.length; i++) {
6795 dumpTimeEstimate(pw, " Estimated ", STEP_LEVEL_MODE_LABELS[i], " time: ",
6796 steps.computeTimeEstimate(STEP_LEVEL_MODES_OF_INTEREST[i],
6797 STEP_LEVEL_MODE_VALUES[i], null));
6798 }
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006799 pw.println();
6800 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006801 if (dumpDurationSteps(pw, " ", "Charge step durations:",
6802 getChargeLevelStepTracker(), false)) {
Kweku Adamsb0449e02016-10-12 14:18:27 -07006803 long timeRemaining = computeChargeTimeRemaining(
6804 SystemClock.elapsedRealtime() * 1000);
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006805 if (timeRemaining >= 0) {
6806 pw.print(" Estimated charge time remaining: ");
6807 TimeUtils.formatDuration(timeRemaining / 1000, pw);
6808 pw.println();
6809 }
6810 pw.println();
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006811 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006812 }
Dianne Hackbornc81983a2017-10-20 16:16:32 -07006813 if (!filtering || (flags & DUMP_DAILY_ONLY) != 0) {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006814 pw.println("Daily stats:");
6815 pw.print(" Current start time: ");
6816 pw.println(DateFormat.format("yyyy-MM-dd-HH-mm-ss",
6817 getCurrentDailyStartTime()).toString());
6818 pw.print(" Next min deadline: ");
6819 pw.println(DateFormat.format("yyyy-MM-dd-HH-mm-ss",
6820 getNextMinDailyDeadline()).toString());
6821 pw.print(" Next max deadline: ");
6822 pw.println(DateFormat.format("yyyy-MM-dd-HH-mm-ss",
6823 getNextMaxDailyDeadline()).toString());
6824 StringBuilder sb = new StringBuilder(64);
6825 int[] outInt = new int[1];
6826 LevelStepTracker dsteps = getDailyDischargeLevelStepTracker();
6827 LevelStepTracker csteps = getDailyChargeLevelStepTracker();
Dianne Hackborn88e98df2015-03-23 13:29:14 -07006828 ArrayList<PackageChange> pkgc = getDailyPackageChanges();
6829 if (dsteps.mNumStepDurations > 0 || csteps.mNumStepDurations > 0 || pkgc != null) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07006830 if ((flags&DUMP_DAILY_ONLY) != 0 || !filtering) {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006831 if (dumpDurationSteps(pw, " ", " Current daily discharge step durations:",
6832 dsteps, false)) {
6833 dumpDailyLevelStepSummary(pw, " ", "Discharge", dsteps,
6834 sb, outInt);
6835 }
6836 if (dumpDurationSteps(pw, " ", " Current daily charge step durations:",
6837 csteps, false)) {
6838 dumpDailyLevelStepSummary(pw, " ", "Charge", csteps,
6839 sb, outInt);
6840 }
Dianne Hackborn88e98df2015-03-23 13:29:14 -07006841 dumpDailyPackageChanges(pw, " ", pkgc);
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006842 } else {
6843 pw.println(" Current daily steps:");
6844 dumpDailyLevelStepSummary(pw, " ", "Discharge", dsteps,
6845 sb, outInt);
6846 dumpDailyLevelStepSummary(pw, " ", "Charge", csteps,
6847 sb, outInt);
6848 }
6849 }
6850 DailyItem dit;
6851 int curIndex = 0;
6852 while ((dit=getDailyItemLocked(curIndex)) != null) {
6853 curIndex++;
6854 if ((flags&DUMP_DAILY_ONLY) != 0) {
6855 pw.println();
6856 }
6857 pw.print(" Daily from ");
6858 pw.print(DateFormat.format("yyyy-MM-dd-HH-mm-ss", dit.mStartTime).toString());
6859 pw.print(" to ");
6860 pw.print(DateFormat.format("yyyy-MM-dd-HH-mm-ss", dit.mEndTime).toString());
6861 pw.println(":");
Dianne Hackborn1e725a72015-03-24 18:23:19 -07006862 if ((flags&DUMP_DAILY_ONLY) != 0 || !filtering) {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006863 if (dumpDurationSteps(pw, " ",
6864 " Discharge step durations:", dit.mDischargeSteps, false)) {
6865 dumpDailyLevelStepSummary(pw, " ", "Discharge", dit.mDischargeSteps,
6866 sb, outInt);
6867 }
6868 if (dumpDurationSteps(pw, " ",
6869 " Charge step durations:", dit.mChargeSteps, false)) {
6870 dumpDailyLevelStepSummary(pw, " ", "Charge", dit.mChargeSteps,
6871 sb, outInt);
6872 }
Dianne Hackborn88e98df2015-03-23 13:29:14 -07006873 dumpDailyPackageChanges(pw, " ", dit.mPackageChanges);
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006874 } else {
6875 dumpDailyLevelStepSummary(pw, " ", "Discharge", dit.mDischargeSteps,
6876 sb, outInt);
6877 dumpDailyLevelStepSummary(pw, " ", "Charge", dit.mChargeSteps,
6878 sb, outInt);
6879 }
6880 }
6881 pw.println();
6882 }
6883 if (!filtering || (flags&DUMP_CHARGED_ONLY) != 0) {
Jeff Sharkeyec43a6b2013-04-30 13:33:18 -07006884 pw.println("Statistics since last charge:");
6885 pw.println(" System starts: " + getStartCount()
6886 + ", currently on battery: " + getIsOnBattery());
Dianne Hackbornd953c532014-08-16 18:17:38 -07006887 dumpLocked(context, pw, "", STATS_SINCE_CHARGED, reqUid,
6888 (flags&DUMP_DEVICE_WIFI_ONLY) != 0);
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006889 pw.println();
Jeff Sharkeyec43a6b2013-04-30 13:33:18 -07006890 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006891 }
Mike Mac2f518a2017-09-19 16:06:03 -07006892
Kweku Adams2f73ecd2017-09-27 16:59:19 -07006893 // This is called from BatteryStatsService.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006894 @SuppressWarnings("unused")
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006895 public void dumpCheckinLocked(Context context, PrintWriter pw,
6896 List<ApplicationInfo> apps, int flags, long histStart) {
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006897 prepareForDumpLocked();
Dianne Hackborncd0e3352014-08-07 17:08:09 -07006898
6899 dumpLine(pw, 0 /* uid */, "i" /* category */, VERSION_DATA,
Dianne Hackborn0c820db2015-04-14 17:47:34 -07006900 CHECKIN_VERSION, getParcelVersion(), getStartPlatformVersion(),
6901 getEndPlatformVersion());
Dianne Hackborncd0e3352014-08-07 17:08:09 -07006902
Dianne Hackborn13ac0412013-06-25 19:34:49 -07006903 long now = getHistoryBaseTime() + SystemClock.elapsedRealtime();
6904
Kweku Adams2f73ecd2017-09-27 16:59:19 -07006905 if ((flags & (DUMP_INCLUDE_HISTORY | DUMP_HISTORY_ONLY)) != 0) {
Dianne Hackborn49021f52013-09-04 18:03:40 -07006906 if (startIteratingHistoryLocked()) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006907 try {
6908 for (int i=0; i<getHistoryStringPoolSize(); i++) {
6909 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
6910 pw.print(HISTORY_STRING_POOL); pw.print(',');
6911 pw.print(i);
Dianne Hackborn99009ea2014-04-18 16:23:42 -07006912 pw.print(",");
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006913 pw.print(getHistoryTagPoolUid(i));
Dianne Hackborn99009ea2014-04-18 16:23:42 -07006914 pw.print(",\"");
6915 String str = getHistoryTagPoolString(i);
6916 str = str.replace("\\", "\\\\");
6917 str = str.replace("\"", "\\\"");
6918 pw.print(str);
6919 pw.print("\"");
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006920 pw.println();
6921 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07006922 dumpHistoryLocked(pw, flags, histStart, true);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006923 } finally {
6924 finishIteratingHistoryLocked();
Dianne Hackborn099bc622014-01-22 13:39:16 -08006925 }
Dianne Hackborn13ac0412013-06-25 19:34:49 -07006926 }
Dianne Hackborn13ac0412013-06-25 19:34:49 -07006927 }
6928
Kweku Adams2f73ecd2017-09-27 16:59:19 -07006929 if ((flags & DUMP_HISTORY_ONLY) != 0) {
Dianne Hackborn099bc622014-01-22 13:39:16 -08006930 return;
6931 }
6932
Dianne Hackborne4a59512010-12-07 11:08:07 -08006933 if (apps != null) {
Dianne Hackborn9cfba352016-03-24 17:31:28 -07006934 SparseArray<Pair<ArrayList<String>, MutableBoolean>> uids = new SparseArray<>();
Dianne Hackborne4a59512010-12-07 11:08:07 -08006935 for (int i=0; i<apps.size(); i++) {
6936 ApplicationInfo ai = apps.get(i);
Dianne Hackborn9cfba352016-03-24 17:31:28 -07006937 Pair<ArrayList<String>, MutableBoolean> pkgs = uids.get(
6938 UserHandle.getAppId(ai.uid));
Dianne Hackborne4a59512010-12-07 11:08:07 -08006939 if (pkgs == null) {
Dianne Hackborn9cfba352016-03-24 17:31:28 -07006940 pkgs = new Pair<>(new ArrayList<String>(), new MutableBoolean(false));
6941 uids.put(UserHandle.getAppId(ai.uid), pkgs);
Dianne Hackborne4a59512010-12-07 11:08:07 -08006942 }
Dianne Hackborn9cfba352016-03-24 17:31:28 -07006943 pkgs.first.add(ai.packageName);
Dianne Hackborne4a59512010-12-07 11:08:07 -08006944 }
6945 SparseArray<? extends Uid> uidStats = getUidStats();
6946 final int NU = uidStats.size();
6947 String[] lineArgs = new String[2];
6948 for (int i=0; i<NU; i++) {
Dianne Hackborn9cfba352016-03-24 17:31:28 -07006949 int uid = UserHandle.getAppId(uidStats.keyAt(i));
6950 Pair<ArrayList<String>, MutableBoolean> pkgs = uids.get(uid);
6951 if (pkgs != null && !pkgs.second.value) {
6952 pkgs.second.value = true;
6953 for (int j=0; j<pkgs.first.size(); j++) {
Dianne Hackborne4a59512010-12-07 11:08:07 -08006954 lineArgs[0] = Integer.toString(uid);
Dianne Hackborn9cfba352016-03-24 17:31:28 -07006955 lineArgs[1] = pkgs.first.get(j);
Dianne Hackborne4a59512010-12-07 11:08:07 -08006956 dumpLine(pw, 0 /* uid */, "i" /* category */, UID_DATA,
6957 (Object[])lineArgs);
6958 }
6959 }
6960 }
6961 }
Kweku Adams2f73ecd2017-09-27 16:59:19 -07006962 if ((flags & DUMP_DAILY_ONLY) == 0) {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006963 dumpDurationSteps(pw, "", DISCHARGE_STEP_DATA, getDischargeLevelStepTracker(), true);
Dianne Hackbornd06dcfd2014-05-02 13:49:30 -07006964 String[] lineArgs = new String[1];
Kweku Adamsb0449e02016-10-12 14:18:27 -07006965 long timeRemaining = computeBatteryTimeRemaining(SystemClock.elapsedRealtime() * 1000);
Dianne Hackbornd06dcfd2014-05-02 13:49:30 -07006966 if (timeRemaining >= 0) {
6967 lineArgs[0] = Long.toString(timeRemaining);
6968 dumpLine(pw, 0 /* uid */, "i" /* category */, DISCHARGE_TIME_REMAIN_DATA,
6969 (Object[])lineArgs);
6970 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006971 dumpDurationSteps(pw, "", CHARGE_STEP_DATA, getChargeLevelStepTracker(), true);
Kweku Adamsb0449e02016-10-12 14:18:27 -07006972 timeRemaining = computeChargeTimeRemaining(SystemClock.elapsedRealtime() * 1000);
Dianne Hackbornd06dcfd2014-05-02 13:49:30 -07006973 if (timeRemaining >= 0) {
6974 lineArgs[0] = Long.toString(timeRemaining);
6975 dumpLine(pw, 0 /* uid */, "i" /* category */, CHARGE_TIME_REMAIN_DATA,
6976 (Object[])lineArgs);
6977 }
Dianne Hackbornd953c532014-08-16 18:17:38 -07006978 dumpCheckinLocked(context, pw, STATS_SINCE_CHARGED, -1,
6979 (flags&DUMP_DEVICE_WIFI_ONLY) != 0);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006980 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006981 }
Kweku Adams2f73ecd2017-09-27 16:59:19 -07006982
Kweku Adams87b19ec2017-10-09 12:40:03 -07006983 /** Dump #STATS_SINCE_CHARGED batterystats data to a proto. @hide */
Kweku Adams2f73ecd2017-09-27 16:59:19 -07006984 public void dumpProtoLocked(Context context, FileDescriptor fd, List<ApplicationInfo> apps,
Kweku Adams6ccebf22017-12-11 12:30:35 -08006985 int flags) {
Kweku Adams2f73ecd2017-09-27 16:59:19 -07006986 final ProtoOutputStream proto = new ProtoOutputStream(fd);
6987 final long bToken = proto.start(BatteryStatsServiceDumpProto.BATTERYSTATS);
6988 prepareForDumpLocked();
6989
6990 proto.write(BatteryStatsProto.REPORT_VERSION, CHECKIN_VERSION);
6991 proto.write(BatteryStatsProto.PARCEL_VERSION, getParcelVersion());
6992 proto.write(BatteryStatsProto.START_PLATFORM_VERSION, getStartPlatformVersion());
6993 proto.write(BatteryStatsProto.END_PLATFORM_VERSION, getEndPlatformVersion());
6994
Kweku Adams6ccebf22017-12-11 12:30:35 -08006995 // History intentionally not included in proto dump.
Kweku Adams2f73ecd2017-09-27 16:59:19 -07006996
6997 if ((flags & (DUMP_HISTORY_ONLY | DUMP_DAILY_ONLY)) == 0) {
Kweku Adams103351f2017-10-16 14:39:34 -07006998 final BatteryStatsHelper helper = new BatteryStatsHelper(context, false,
6999 (flags & DUMP_DEVICE_WIFI_ONLY) != 0);
7000 helper.create(this);
7001 helper.refreshStats(STATS_SINCE_CHARGED, UserHandle.USER_ALL);
7002
7003 dumpProtoAppsLocked(proto, helper, apps);
7004 dumpProtoSystemLocked(proto, helper);
Kweku Adams2f73ecd2017-09-27 16:59:19 -07007005 }
7006
7007 proto.end(bToken);
7008 proto.flush();
7009 }
Kweku Adams87b19ec2017-10-09 12:40:03 -07007010
Kweku Adams103351f2017-10-16 14:39:34 -07007011 private void dumpProtoAppsLocked(ProtoOutputStream proto, BatteryStatsHelper helper,
7012 List<ApplicationInfo> apps) {
7013 final int which = STATS_SINCE_CHARGED;
7014 final long rawUptimeUs = SystemClock.uptimeMillis() * 1000;
7015 final long rawRealtimeMs = SystemClock.elapsedRealtime();
7016 final long rawRealtimeUs = rawRealtimeMs * 1000;
7017 final long batteryUptimeUs = getBatteryUptime(rawUptimeUs);
7018
7019 SparseArray<ArrayList<String>> aidToPackages = new SparseArray<>();
7020 if (apps != null) {
7021 for (int i = 0; i < apps.size(); ++i) {
7022 ApplicationInfo ai = apps.get(i);
7023 int aid = UserHandle.getAppId(ai.uid);
7024 ArrayList<String> pkgs = aidToPackages.get(aid);
7025 if (pkgs == null) {
7026 pkgs = new ArrayList<String>();
7027 aidToPackages.put(aid, pkgs);
7028 }
7029 pkgs.add(ai.packageName);
7030 }
7031 }
7032
7033 SparseArray<BatterySipper> uidToSipper = new SparseArray<>();
7034 final List<BatterySipper> sippers = helper.getUsageList();
7035 if (sippers != null) {
7036 for (int i = 0; i < sippers.size(); ++i) {
7037 final BatterySipper bs = sippers.get(i);
7038 if (bs.drainType != BatterySipper.DrainType.APP) {
7039 // Others are handled by dumpProtoSystemLocked()
7040 continue;
7041 }
7042 uidToSipper.put(bs.uidObj.getUid(), bs);
7043 }
7044 }
7045
7046 SparseArray<? extends Uid> uidStats = getUidStats();
7047 final int n = uidStats.size();
7048 for (int iu = 0; iu < n; ++iu) {
7049 final long uTkn = proto.start(BatteryStatsProto.UIDS);
7050 final Uid u = uidStats.valueAt(iu);
7051
7052 final int uid = uidStats.keyAt(iu);
7053 proto.write(UidProto.UID, uid);
7054
7055 // Print packages and apk stats (UID_DATA & APK_DATA)
7056 ArrayList<String> pkgs = aidToPackages.get(UserHandle.getAppId(uid));
7057 if (pkgs == null) {
7058 pkgs = new ArrayList<String>();
7059 }
7060 final ArrayMap<String, ? extends BatteryStats.Uid.Pkg> packageStats =
7061 u.getPackageStats();
7062 for (int ipkg = packageStats.size() - 1; ipkg >= 0; --ipkg) {
7063 String pkg = packageStats.keyAt(ipkg);
7064 final ArrayMap<String, ? extends Uid.Pkg.Serv> serviceStats =
7065 packageStats.valueAt(ipkg).getServiceStats();
7066 if (serviceStats.size() == 0) {
7067 // Due to the way ActivityManagerService logs wakeup alarms, some packages (for
7068 // example, "android") may be included in the packageStats that aren't part of
7069 // the UID. If they don't have any services, then they shouldn't be listed here.
7070 // These packages won't be a part in the pkgs List.
7071 continue;
7072 }
7073
7074 final long pToken = proto.start(UidProto.PACKAGES);
7075 proto.write(UidProto.Package.NAME, pkg);
7076 // Remove from the packages list since we're logging it here.
7077 pkgs.remove(pkg);
7078
7079 for (int isvc = serviceStats.size() - 1; isvc >= 0; --isvc) {
7080 final BatteryStats.Uid.Pkg.Serv ss = serviceStats.valueAt(isvc);
7081 long sToken = proto.start(UidProto.Package.SERVICES);
7082
7083 proto.write(UidProto.Package.Service.NAME, serviceStats.keyAt(isvc));
7084 proto.write(UidProto.Package.Service.START_DURATION_MS,
7085 roundUsToMs(ss.getStartTime(batteryUptimeUs, which)));
7086 proto.write(UidProto.Package.Service.START_COUNT, ss.getStarts(which));
7087 proto.write(UidProto.Package.Service.LAUNCH_COUNT, ss.getLaunches(which));
7088
7089 proto.end(sToken);
7090 }
7091 proto.end(pToken);
7092 }
7093 // Print any remaining packages that weren't in the packageStats map. pkgs is pulled
7094 // from PackageManager data. Packages are only included in packageStats if there was
7095 // specific data tracked for them (services and wakeup alarms, etc.).
7096 for (String p : pkgs) {
7097 final long pToken = proto.start(UidProto.PACKAGES);
7098 proto.write(UidProto.Package.NAME, p);
7099 proto.end(pToken);
7100 }
7101
7102 // Total wakelock data (AGGREGATED_WAKELOCK_DATA)
7103 if (u.getAggregatedPartialWakelockTimer() != null) {
7104 final Timer timer = u.getAggregatedPartialWakelockTimer();
7105 // Times are since reset (regardless of 'which')
7106 final long totTimeMs = timer.getTotalDurationMsLocked(rawRealtimeMs);
7107 final Timer bgTimer = timer.getSubTimer();
7108 final long bgTimeMs = bgTimer != null
7109 ? bgTimer.getTotalDurationMsLocked(rawRealtimeMs) : 0;
7110 final long awToken = proto.start(UidProto.AGGREGATED_WAKELOCK);
7111 proto.write(UidProto.AggregatedWakelock.PARTIAL_DURATION_MS, totTimeMs);
7112 proto.write(UidProto.AggregatedWakelock.BACKGROUND_PARTIAL_DURATION_MS, bgTimeMs);
7113 proto.end(awToken);
7114 }
7115
7116 // Audio (AUDIO_DATA)
7117 dumpTimer(proto, UidProto.AUDIO, u.getAudioTurnedOnTimer(), rawRealtimeUs, which);
7118
7119 // Bluetooth Controller (BLUETOOTH_CONTROLLER_DATA)
7120 dumpControllerActivityProto(proto, UidProto.BLUETOOTH_CONTROLLER,
7121 u.getBluetoothControllerActivity(), which);
7122
7123 // BLE scans (BLUETOOTH_MISC_DATA) (uses totalDurationMsLocked and MaxDurationMsLocked)
7124 final Timer bleTimer = u.getBluetoothScanTimer();
7125 if (bleTimer != null) {
7126 final long bmToken = proto.start(UidProto.BLUETOOTH_MISC);
7127
7128 dumpTimer(proto, UidProto.BluetoothMisc.APPORTIONED_BLE_SCAN, bleTimer,
7129 rawRealtimeUs, which);
7130 dumpTimer(proto, UidProto.BluetoothMisc.BACKGROUND_BLE_SCAN,
7131 u.getBluetoothScanBackgroundTimer(), rawRealtimeUs, which);
7132 // Unoptimized scan timer. Unpooled and since reset (regardless of 'which').
7133 dumpTimer(proto, UidProto.BluetoothMisc.UNOPTIMIZED_BLE_SCAN,
7134 u.getBluetoothUnoptimizedScanTimer(), rawRealtimeUs, which);
7135 // Unoptimized bg scan timer. Unpooled and since reset (regardless of 'which').
7136 dumpTimer(proto, UidProto.BluetoothMisc.BACKGROUND_UNOPTIMIZED_BLE_SCAN,
7137 u.getBluetoothUnoptimizedScanBackgroundTimer(), rawRealtimeUs, which);
7138 // Result counters
7139 proto.write(UidProto.BluetoothMisc.BLE_SCAN_RESULT_COUNT,
7140 u.getBluetoothScanResultCounter() != null
7141 ? u.getBluetoothScanResultCounter().getCountLocked(which) : 0);
7142 proto.write(UidProto.BluetoothMisc.BACKGROUND_BLE_SCAN_RESULT_COUNT,
7143 u.getBluetoothScanResultBgCounter() != null
7144 ? u.getBluetoothScanResultBgCounter().getCountLocked(which) : 0);
7145
7146 proto.end(bmToken);
7147 }
7148
7149 // Camera (CAMERA_DATA)
7150 dumpTimer(proto, UidProto.CAMERA, u.getCameraTurnedOnTimer(), rawRealtimeUs, which);
7151
7152 // CPU stats (CPU_DATA & CPU_TIMES_AT_FREQ_DATA)
7153 final long cpuToken = proto.start(UidProto.CPU);
7154 proto.write(UidProto.Cpu.USER_DURATION_MS, roundUsToMs(u.getUserCpuTimeUs(which)));
7155 proto.write(UidProto.Cpu.SYSTEM_DURATION_MS, roundUsToMs(u.getSystemCpuTimeUs(which)));
7156
7157 final long[] cpuFreqs = getCpuFreqs();
7158 if (cpuFreqs != null) {
7159 final long[] cpuFreqTimeMs = u.getCpuFreqTimes(which);
7160 // If total cpuFreqTimes is null, then we don't need to check for
7161 // screenOffCpuFreqTimes.
7162 if (cpuFreqTimeMs != null && cpuFreqTimeMs.length == cpuFreqs.length) {
7163 long[] screenOffCpuFreqTimeMs = u.getScreenOffCpuFreqTimes(which);
7164 if (screenOffCpuFreqTimeMs == null) {
7165 screenOffCpuFreqTimeMs = new long[cpuFreqTimeMs.length];
7166 }
7167 for (int ic = 0; ic < cpuFreqTimeMs.length; ++ic) {
7168 long cToken = proto.start(UidProto.Cpu.BY_FREQUENCY);
7169 proto.write(UidProto.Cpu.ByFrequency.FREQUENCY_INDEX, ic + 1);
7170 proto.write(UidProto.Cpu.ByFrequency.TOTAL_DURATION_MS,
7171 cpuFreqTimeMs[ic]);
7172 proto.write(UidProto.Cpu.ByFrequency.SCREEN_OFF_DURATION_MS,
7173 screenOffCpuFreqTimeMs[ic]);
7174 proto.end(cToken);
7175 }
7176 }
7177 }
Sudheer Shanka6d658d72018-01-01 01:36:49 -08007178
7179 for (int procState = 0; procState < Uid.NUM_PROCESS_STATE; ++procState) {
7180 final long[] timesMs = u.getCpuFreqTimes(which, procState);
7181 if (timesMs != null && timesMs.length == cpuFreqs.length) {
7182 long[] screenOffTimesMs = u.getScreenOffCpuFreqTimes(which, procState);
7183 if (screenOffTimesMs == null) {
7184 screenOffTimesMs = new long[timesMs.length];
7185 }
7186 final long procToken = proto.start(UidProto.Cpu.BY_PROCESS_STATE);
7187 proto.write(UidProto.Cpu.ByProcessState.PROCESS_STATE, procState);
7188 for (int ic = 0; ic < timesMs.length; ++ic) {
7189 long cToken = proto.start(UidProto.Cpu.ByProcessState.BY_FREQUENCY);
7190 proto.write(UidProto.Cpu.ByFrequency.FREQUENCY_INDEX, ic + 1);
7191 proto.write(UidProto.Cpu.ByFrequency.TOTAL_DURATION_MS,
7192 timesMs[ic]);
7193 proto.write(UidProto.Cpu.ByFrequency.SCREEN_OFF_DURATION_MS,
7194 screenOffTimesMs[ic]);
7195 proto.end(cToken);
7196 }
7197 proto.end(procToken);
7198 }
7199 }
Kweku Adams103351f2017-10-16 14:39:34 -07007200 proto.end(cpuToken);
7201
7202 // Flashlight (FLASHLIGHT_DATA)
7203 dumpTimer(proto, UidProto.FLASHLIGHT, u.getFlashlightTurnedOnTimer(),
7204 rawRealtimeUs, which);
7205
7206 // Foreground activity (FOREGROUND_ACTIVITY_DATA)
7207 dumpTimer(proto, UidProto.FOREGROUND_ACTIVITY, u.getForegroundActivityTimer(),
7208 rawRealtimeUs, which);
7209
7210 // Foreground service (FOREGROUND_SERVICE_DATA)
7211 dumpTimer(proto, UidProto.FOREGROUND_SERVICE, u.getForegroundServiceTimer(),
7212 rawRealtimeUs, which);
7213
7214 // Job completion (JOB_COMPLETION_DATA)
7215 final ArrayMap<String, SparseIntArray> completions = u.getJobCompletionStats();
7216 final int[] reasons = new int[]{
7217 JobParameters.REASON_CANCELED,
7218 JobParameters.REASON_CONSTRAINTS_NOT_SATISFIED,
7219 JobParameters.REASON_PREEMPT,
7220 JobParameters.REASON_TIMEOUT,
7221 JobParameters.REASON_DEVICE_IDLE,
7222 };
7223 for (int ic = 0; ic < completions.size(); ++ic) {
7224 SparseIntArray types = completions.valueAt(ic);
7225 if (types != null) {
7226 final long jcToken = proto.start(UidProto.JOB_COMPLETION);
7227
7228 proto.write(UidProto.JobCompletion.NAME, completions.keyAt(ic));
7229
7230 for (int r : reasons) {
7231 long rToken = proto.start(UidProto.JobCompletion.REASON_COUNT);
7232 proto.write(UidProto.JobCompletion.ReasonCount.NAME, r);
7233 proto.write(UidProto.JobCompletion.ReasonCount.COUNT, types.get(r, 0));
7234 proto.end(rToken);
7235 }
7236
7237 proto.end(jcToken);
7238 }
7239 }
7240
7241 // Scheduled jobs (JOB_DATA)
7242 final ArrayMap<String, ? extends Timer> jobs = u.getJobStats();
7243 for (int ij = jobs.size() - 1; ij >= 0; --ij) {
7244 final Timer timer = jobs.valueAt(ij);
7245 final Timer bgTimer = timer.getSubTimer();
7246 final long jToken = proto.start(UidProto.JOBS);
7247
7248 proto.write(UidProto.Job.NAME, jobs.keyAt(ij));
7249 // Background uses totalDurationMsLocked, while total uses totalTimeLocked
7250 dumpTimer(proto, UidProto.Job.TOTAL, timer, rawRealtimeUs, which);
7251 dumpTimer(proto, UidProto.Job.BACKGROUND, bgTimer, rawRealtimeUs, which);
7252
7253 proto.end(jToken);
7254 }
7255
7256 // Modem Controller (MODEM_CONTROLLER_DATA)
7257 dumpControllerActivityProto(proto, UidProto.MODEM_CONTROLLER,
7258 u.getModemControllerActivity(), which);
7259
7260 // Network stats (NETWORK_DATA)
7261 final long nToken = proto.start(UidProto.NETWORK);
7262 proto.write(UidProto.Network.MOBILE_BYTES_RX,
7263 u.getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which));
7264 proto.write(UidProto.Network.MOBILE_BYTES_TX,
7265 u.getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which));
7266 proto.write(UidProto.Network.WIFI_BYTES_RX,
7267 u.getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which));
7268 proto.write(UidProto.Network.WIFI_BYTES_TX,
7269 u.getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which));
7270 proto.write(UidProto.Network.BT_BYTES_RX,
7271 u.getNetworkActivityBytes(NETWORK_BT_RX_DATA, which));
7272 proto.write(UidProto.Network.BT_BYTES_TX,
7273 u.getNetworkActivityBytes(NETWORK_BT_TX_DATA, which));
7274 proto.write(UidProto.Network.MOBILE_PACKETS_RX,
7275 u.getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which));
7276 proto.write(UidProto.Network.MOBILE_PACKETS_TX,
7277 u.getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which));
7278 proto.write(UidProto.Network.WIFI_PACKETS_RX,
7279 u.getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which));
7280 proto.write(UidProto.Network.WIFI_PACKETS_TX,
7281 u.getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which));
7282 proto.write(UidProto.Network.MOBILE_ACTIVE_DURATION_MS,
7283 roundUsToMs(u.getMobileRadioActiveTime(which)));
7284 proto.write(UidProto.Network.MOBILE_ACTIVE_COUNT,
7285 u.getMobileRadioActiveCount(which));
7286 proto.write(UidProto.Network.MOBILE_WAKEUP_COUNT,
7287 u.getMobileRadioApWakeupCount(which));
7288 proto.write(UidProto.Network.WIFI_WAKEUP_COUNT,
7289 u.getWifiRadioApWakeupCount(which));
7290 proto.write(UidProto.Network.MOBILE_BYTES_BG_RX,
7291 u.getNetworkActivityBytes(NETWORK_MOBILE_BG_RX_DATA, which));
7292 proto.write(UidProto.Network.MOBILE_BYTES_BG_TX,
7293 u.getNetworkActivityBytes(NETWORK_MOBILE_BG_TX_DATA, which));
7294 proto.write(UidProto.Network.WIFI_BYTES_BG_RX,
7295 u.getNetworkActivityBytes(NETWORK_WIFI_BG_RX_DATA, which));
7296 proto.write(UidProto.Network.WIFI_BYTES_BG_TX,
7297 u.getNetworkActivityBytes(NETWORK_WIFI_BG_TX_DATA, which));
7298 proto.write(UidProto.Network.MOBILE_PACKETS_BG_RX,
7299 u.getNetworkActivityPackets(NETWORK_MOBILE_BG_RX_DATA, which));
7300 proto.write(UidProto.Network.MOBILE_PACKETS_BG_TX,
7301 u.getNetworkActivityPackets(NETWORK_MOBILE_BG_TX_DATA, which));
7302 proto.write(UidProto.Network.WIFI_PACKETS_BG_RX,
7303 u.getNetworkActivityPackets(NETWORK_WIFI_BG_RX_DATA, which));
7304 proto.write(UidProto.Network.WIFI_PACKETS_BG_TX,
7305 u.getNetworkActivityPackets(NETWORK_WIFI_BG_TX_DATA, which));
7306 proto.end(nToken);
7307
7308 // Power use item (POWER_USE_ITEM_DATA)
7309 BatterySipper bs = uidToSipper.get(uid);
7310 if (bs != null) {
7311 final long bsToken = proto.start(UidProto.POWER_USE_ITEM);
7312 proto.write(UidProto.PowerUseItem.COMPUTED_POWER_MAH, bs.totalPowerMah);
7313 proto.write(UidProto.PowerUseItem.SHOULD_HIDE, bs.shouldHide);
7314 proto.write(UidProto.PowerUseItem.SCREEN_POWER_MAH, bs.screenPowerMah);
7315 proto.write(UidProto.PowerUseItem.PROPORTIONAL_SMEAR_MAH,
7316 bs.proportionalSmearMah);
7317 proto.end(bsToken);
7318 }
7319
7320 // Processes (PROCESS_DATA)
7321 final ArrayMap<String, ? extends BatteryStats.Uid.Proc> processStats =
7322 u.getProcessStats();
7323 for (int ipr = processStats.size() - 1; ipr >= 0; --ipr) {
7324 final Uid.Proc ps = processStats.valueAt(ipr);
7325 final long prToken = proto.start(UidProto.PROCESS);
7326
7327 proto.write(UidProto.Process.NAME, processStats.keyAt(ipr));
7328 proto.write(UidProto.Process.USER_DURATION_MS, ps.getUserTime(which));
7329 proto.write(UidProto.Process.SYSTEM_DURATION_MS, ps.getSystemTime(which));
7330 proto.write(UidProto.Process.FOREGROUND_DURATION_MS, ps.getForegroundTime(which));
7331 proto.write(UidProto.Process.START_COUNT, ps.getStarts(which));
7332 proto.write(UidProto.Process.ANR_COUNT, ps.getNumAnrs(which));
7333 proto.write(UidProto.Process.CRASH_COUNT, ps.getNumCrashes(which));
7334
7335 proto.end(prToken);
7336 }
7337
7338 // Sensors (SENSOR_DATA)
7339 final SparseArray<? extends BatteryStats.Uid.Sensor> sensors = u.getSensorStats();
7340 for (int ise = 0; ise < sensors.size(); ++ise) {
7341 final Uid.Sensor se = sensors.valueAt(ise);
7342 final Timer timer = se.getSensorTime();
7343 if (timer == null) {
7344 continue;
7345 }
7346 final Timer bgTimer = se.getSensorBackgroundTime();
7347 final int sensorNumber = sensors.keyAt(ise);
7348 final long seToken = proto.start(UidProto.SENSORS);
7349
7350 proto.write(UidProto.Sensor.ID, sensorNumber);
7351 // Background uses totalDurationMsLocked, while total uses totalTimeLocked
7352 dumpTimer(proto, UidProto.Sensor.APPORTIONED, timer, rawRealtimeUs, which);
7353 dumpTimer(proto, UidProto.Sensor.BACKGROUND, bgTimer, rawRealtimeUs, which);
7354
7355 proto.end(seToken);
7356 }
7357
7358 // State times (STATE_TIME_DATA)
7359 for (int ips = 0; ips < Uid.NUM_PROCESS_STATE; ++ips) {
7360 long durMs = roundUsToMs(u.getProcessStateTime(ips, rawRealtimeUs, which));
7361 if (durMs == 0) {
7362 continue;
7363 }
7364 final long stToken = proto.start(UidProto.STATES);
7365 proto.write(UidProto.StateTime.STATE, ips);
7366 proto.write(UidProto.StateTime.DURATION_MS, durMs);
7367 proto.end(stToken);
7368 }
7369
7370 // Syncs (SYNC_DATA)
7371 final ArrayMap<String, ? extends Timer> syncs = u.getSyncStats();
7372 for (int isy = syncs.size() - 1; isy >= 0; --isy) {
7373 final Timer timer = syncs.valueAt(isy);
7374 final Timer bgTimer = timer.getSubTimer();
7375 final long syToken = proto.start(UidProto.SYNCS);
7376
7377 proto.write(UidProto.Sync.NAME, syncs.keyAt(isy));
7378 // Background uses totalDurationMsLocked, while total uses totalTimeLocked
7379 dumpTimer(proto, UidProto.Sync.TOTAL, timer, rawRealtimeUs, which);
7380 dumpTimer(proto, UidProto.Sync.BACKGROUND, bgTimer, rawRealtimeUs, which);
7381
7382 proto.end(syToken);
7383 }
7384
7385 // User activity (USER_ACTIVITY_DATA)
7386 if (u.hasUserActivity()) {
7387 for (int i = 0; i < Uid.NUM_USER_ACTIVITY_TYPES; ++i) {
7388 int val = u.getUserActivityCount(i, which);
7389 if (val != 0) {
7390 final long uaToken = proto.start(UidProto.USER_ACTIVITY);
7391 proto.write(UidProto.UserActivity.NAME, i);
7392 proto.write(UidProto.UserActivity.COUNT, val);
7393 proto.end(uaToken);
7394 }
7395 }
7396 }
7397
7398 // Vibrator (VIBRATOR_DATA)
7399 dumpTimer(proto, UidProto.VIBRATOR, u.getVibratorOnTimer(), rawRealtimeUs, which);
7400
7401 // Video (VIDEO_DATA)
7402 dumpTimer(proto, UidProto.VIDEO, u.getVideoTurnedOnTimer(), rawRealtimeUs, which);
7403
7404 // Wakelocks (WAKELOCK_DATA)
7405 final ArrayMap<String, ? extends Uid.Wakelock> wakelocks = u.getWakelockStats();
7406 for (int iw = wakelocks.size() - 1; iw >= 0; --iw) {
7407 final Uid.Wakelock wl = wakelocks.valueAt(iw);
7408 final long wToken = proto.start(UidProto.WAKELOCKS);
7409 proto.write(UidProto.Wakelock.NAME, wakelocks.keyAt(iw));
7410 dumpTimer(proto, UidProto.Wakelock.FULL, wl.getWakeTime(WAKE_TYPE_FULL),
7411 rawRealtimeUs, which);
7412 final Timer pTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
7413 if (pTimer != null) {
7414 dumpTimer(proto, UidProto.Wakelock.PARTIAL, pTimer, rawRealtimeUs, which);
7415 dumpTimer(proto, UidProto.Wakelock.BACKGROUND_PARTIAL, pTimer.getSubTimer(),
7416 rawRealtimeUs, which);
7417 }
7418 dumpTimer(proto, UidProto.Wakelock.WINDOW, wl.getWakeTime(WAKE_TYPE_WINDOW),
7419 rawRealtimeUs, which);
7420 proto.end(wToken);
7421 }
7422
Ahmed ElArabawyddd09692017-10-30 17:58:29 -07007423 // Wifi Multicast Wakelock (WIFI_MULTICAST_WAKELOCK_DATA)
7424 dumpTimer(proto, UidProto.WIFI_MULTICAST_WAKELOCK, u.getMulticastWakelockStats(),
7425 rawRealtimeUs, which);
7426
Kweku Adams103351f2017-10-16 14:39:34 -07007427 // Wakeup alarms (WAKEUP_ALARM_DATA)
7428 for (int ipkg = packageStats.size() - 1; ipkg >= 0; --ipkg) {
7429 final Uid.Pkg ps = packageStats.valueAt(ipkg);
7430 final ArrayMap<String, ? extends Counter> alarms = ps.getWakeupAlarmStats();
7431 for (int iwa = alarms.size() - 1; iwa >= 0; --iwa) {
7432 final long waToken = proto.start(UidProto.WAKEUP_ALARM);
7433 proto.write(UidProto.WakeupAlarm.NAME, alarms.keyAt(iwa));
7434 proto.write(UidProto.WakeupAlarm.COUNT,
7435 alarms.valueAt(iwa).getCountLocked(which));
7436 proto.end(waToken);
7437 }
7438 }
7439
7440 // Wifi Controller (WIFI_CONTROLLER_DATA)
7441 dumpControllerActivityProto(proto, UidProto.WIFI_CONTROLLER,
7442 u.getWifiControllerActivity(), which);
7443
7444 // Wifi data (WIFI_DATA)
7445 final long wToken = proto.start(UidProto.WIFI);
7446 proto.write(UidProto.Wifi.FULL_WIFI_LOCK_DURATION_MS,
7447 roundUsToMs(u.getFullWifiLockTime(rawRealtimeUs, which)));
7448 dumpTimer(proto, UidProto.Wifi.APPORTIONED_SCAN, u.getWifiScanTimer(),
7449 rawRealtimeUs, which);
7450 proto.write(UidProto.Wifi.RUNNING_DURATION_MS,
7451 roundUsToMs(u.getWifiRunningTime(rawRealtimeUs, which)));
7452 dumpTimer(proto, UidProto.Wifi.BACKGROUND_SCAN, u.getWifiScanBackgroundTimer(),
7453 rawRealtimeUs, which);
7454 proto.end(wToken);
7455
7456 proto.end(uTkn);
7457 }
7458 }
7459
7460 private void dumpProtoSystemLocked(ProtoOutputStream proto, BatteryStatsHelper helper) {
Kweku Adams87b19ec2017-10-09 12:40:03 -07007461 final long sToken = proto.start(BatteryStatsProto.SYSTEM);
7462 final long rawUptimeUs = SystemClock.uptimeMillis() * 1000;
7463 final long rawRealtimeMs = SystemClock.elapsedRealtime();
7464 final long rawRealtimeUs = rawRealtimeMs * 1000;
7465 final int which = STATS_SINCE_CHARGED;
7466
7467 // Battery data (BATTERY_DATA)
Kweku Adams103351f2017-10-16 14:39:34 -07007468 final long bToken = proto.start(SystemProto.BATTERY);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007469 proto.write(SystemProto.Battery.START_CLOCK_TIME_MS, getStartClockTime());
7470 proto.write(SystemProto.Battery.START_COUNT, getStartCount());
7471 proto.write(SystemProto.Battery.TOTAL_REALTIME_MS,
7472 computeRealtime(rawRealtimeUs, which) / 1000);
7473 proto.write(SystemProto.Battery.TOTAL_UPTIME_MS,
7474 computeUptime(rawUptimeUs, which) / 1000);
7475 proto.write(SystemProto.Battery.BATTERY_REALTIME_MS,
7476 computeBatteryRealtime(rawRealtimeUs, which) / 1000);
7477 proto.write(SystemProto.Battery.BATTERY_UPTIME_MS,
7478 computeBatteryUptime(rawUptimeUs, which) / 1000);
7479 proto.write(SystemProto.Battery.SCREEN_OFF_REALTIME_MS,
7480 computeBatteryScreenOffRealtime(rawRealtimeUs, which) / 1000);
7481 proto.write(SystemProto.Battery.SCREEN_OFF_UPTIME_MS,
7482 computeBatteryScreenOffUptime(rawUptimeUs, which) / 1000);
7483 proto.write(SystemProto.Battery.SCREEN_DOZE_DURATION_MS,
7484 getScreenDozeTime(rawRealtimeUs, which) / 1000);
7485 proto.write(SystemProto.Battery.ESTIMATED_BATTERY_CAPACITY_MAH,
7486 getEstimatedBatteryCapacity());
7487 proto.write(SystemProto.Battery.MIN_LEARNED_BATTERY_CAPACITY_UAH,
7488 getMinLearnedBatteryCapacity());
7489 proto.write(SystemProto.Battery.MAX_LEARNED_BATTERY_CAPACITY_UAH,
7490 getMaxLearnedBatteryCapacity());
Kweku Adams103351f2017-10-16 14:39:34 -07007491 proto.end(bToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007492
7493 // Battery discharge (BATTERY_DISCHARGE_DATA)
Kweku Adams103351f2017-10-16 14:39:34 -07007494 final long bdToken = proto.start(SystemProto.BATTERY_DISCHARGE);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007495 proto.write(SystemProto.BatteryDischarge.LOWER_BOUND_SINCE_CHARGE,
7496 getLowDischargeAmountSinceCharge());
7497 proto.write(SystemProto.BatteryDischarge.UPPER_BOUND_SINCE_CHARGE,
7498 getHighDischargeAmountSinceCharge());
7499 proto.write(SystemProto.BatteryDischarge.SCREEN_ON_SINCE_CHARGE,
7500 getDischargeAmountScreenOnSinceCharge());
7501 proto.write(SystemProto.BatteryDischarge.SCREEN_OFF_SINCE_CHARGE,
7502 getDischargeAmountScreenOffSinceCharge());
7503 proto.write(SystemProto.BatteryDischarge.SCREEN_DOZE_SINCE_CHARGE,
7504 getDischargeAmountScreenDozeSinceCharge());
7505 proto.write(SystemProto.BatteryDischarge.TOTAL_MAH,
7506 getUahDischarge(which) / 1000);
7507 proto.write(SystemProto.BatteryDischarge.TOTAL_MAH_SCREEN_OFF,
7508 getUahDischargeScreenOff(which) / 1000);
7509 proto.write(SystemProto.BatteryDischarge.TOTAL_MAH_SCREEN_DOZE,
7510 getUahDischargeScreenDoze(which) / 1000);
Mike Ma15313c92017-11-15 17:58:21 -08007511 proto.write(SystemProto.BatteryDischarge.TOTAL_MAH_LIGHT_DOZE,
7512 getUahDischargeLightDoze(which) / 1000);
7513 proto.write(SystemProto.BatteryDischarge.TOTAL_MAH_DEEP_DOZE,
7514 getUahDischargeDeepDoze(which) / 1000);
Kweku Adams103351f2017-10-16 14:39:34 -07007515 proto.end(bdToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007516
7517 // Time remaining
7518 long timeRemainingUs = computeChargeTimeRemaining(rawRealtimeUs);
Kweku Adams103351f2017-10-16 14:39:34 -07007519 // These are part of a oneof, so we should only set one of them.
Kweku Adams87b19ec2017-10-09 12:40:03 -07007520 if (timeRemainingUs >= 0) {
7521 // Charge time remaining (CHARGE_TIME_REMAIN_DATA)
7522 proto.write(SystemProto.CHARGE_TIME_REMAINING_MS, timeRemainingUs / 1000);
7523 } else {
7524 timeRemainingUs = computeBatteryTimeRemaining(rawRealtimeUs);
7525 // Discharge time remaining (DISCHARGE_TIME_REMAIN_DATA)
7526 if (timeRemainingUs >= 0) {
7527 proto.write(SystemProto.DISCHARGE_TIME_REMAINING_MS, timeRemainingUs / 1000);
7528 } else {
7529 proto.write(SystemProto.DISCHARGE_TIME_REMAINING_MS, -1);
7530 }
7531 }
7532
7533 // Charge step (CHARGE_STEP_DATA)
7534 dumpDurationSteps(proto, SystemProto.CHARGE_STEP, getChargeLevelStepTracker());
7535
7536 // Phone data connection (DATA_CONNECTION_TIME_DATA and DATA_CONNECTION_COUNT_DATA)
7537 for (int i = 0; i < NUM_DATA_CONNECTION_TYPES; ++i) {
Kweku Adams103351f2017-10-16 14:39:34 -07007538 final long pdcToken = proto.start(SystemProto.DATA_CONNECTION);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007539 proto.write(SystemProto.DataConnection.NAME, i);
7540 dumpTimer(proto, SystemProto.DataConnection.TOTAL, getPhoneDataConnectionTimer(i),
7541 rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007542 proto.end(pdcToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007543 }
7544
7545 // Discharge step (DISCHARGE_STEP_DATA)
7546 dumpDurationSteps(proto, SystemProto.DISCHARGE_STEP, getDischargeLevelStepTracker());
7547
7548 // CPU frequencies (GLOBAL_CPU_FREQ_DATA)
7549 final long[] cpuFreqs = getCpuFreqs();
7550 if (cpuFreqs != null) {
7551 for (long i : cpuFreqs) {
7552 proto.write(SystemProto.CPU_FREQUENCY, i);
7553 }
7554 }
7555
7556 // Bluetooth controller (GLOBAL_BLUETOOTH_CONTROLLER_DATA)
7557 dumpControllerActivityProto(proto, SystemProto.GLOBAL_BLUETOOTH_CONTROLLER,
7558 getBluetoothControllerActivity(), which);
7559
7560 // Modem controller (GLOBAL_MODEM_CONTROLLER_DATA)
7561 dumpControllerActivityProto(proto, SystemProto.GLOBAL_MODEM_CONTROLLER,
7562 getModemControllerActivity(), which);
7563
7564 // Global network data (GLOBAL_NETWORK_DATA)
Kweku Adams103351f2017-10-16 14:39:34 -07007565 final long gnToken = proto.start(SystemProto.GLOBAL_NETWORK);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007566 proto.write(SystemProto.GlobalNetwork.MOBILE_BYTES_RX,
7567 getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which));
7568 proto.write(SystemProto.GlobalNetwork.MOBILE_BYTES_TX,
7569 getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which));
7570 proto.write(SystemProto.GlobalNetwork.MOBILE_PACKETS_RX,
7571 getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which));
7572 proto.write(SystemProto.GlobalNetwork.MOBILE_PACKETS_TX,
7573 getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which));
7574 proto.write(SystemProto.GlobalNetwork.WIFI_BYTES_RX,
7575 getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which));
7576 proto.write(SystemProto.GlobalNetwork.WIFI_BYTES_TX,
7577 getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which));
7578 proto.write(SystemProto.GlobalNetwork.WIFI_PACKETS_RX,
7579 getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which));
7580 proto.write(SystemProto.GlobalNetwork.WIFI_PACKETS_TX,
7581 getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which));
7582 proto.write(SystemProto.GlobalNetwork.BT_BYTES_RX,
7583 getNetworkActivityBytes(NETWORK_BT_RX_DATA, which));
7584 proto.write(SystemProto.GlobalNetwork.BT_BYTES_TX,
7585 getNetworkActivityBytes(NETWORK_BT_TX_DATA, which));
Kweku Adams103351f2017-10-16 14:39:34 -07007586 proto.end(gnToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007587
7588 // Wifi controller (GLOBAL_WIFI_CONTROLLER_DATA)
7589 dumpControllerActivityProto(proto, SystemProto.GLOBAL_WIFI_CONTROLLER,
7590 getWifiControllerActivity(), which);
7591
7592
7593 // Global wifi (GLOBAL_WIFI_DATA)
Kweku Adams103351f2017-10-16 14:39:34 -07007594 final long gwToken = proto.start(SystemProto.GLOBAL_WIFI);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007595 proto.write(SystemProto.GlobalWifi.ON_DURATION_MS,
7596 getWifiOnTime(rawRealtimeUs, which) / 1000);
7597 proto.write(SystemProto.GlobalWifi.RUNNING_DURATION_MS,
7598 getGlobalWifiRunningTime(rawRealtimeUs, which) / 1000);
Kweku Adams103351f2017-10-16 14:39:34 -07007599 proto.end(gwToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007600
7601 // Kernel wakelock (KERNEL_WAKELOCK_DATA)
7602 final Map<String, ? extends Timer> kernelWakelocks = getKernelWakelockStats();
7603 for (Map.Entry<String, ? extends Timer> ent : kernelWakelocks.entrySet()) {
Kweku Adams103351f2017-10-16 14:39:34 -07007604 final long kwToken = proto.start(SystemProto.KERNEL_WAKELOCK);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007605 proto.write(SystemProto.KernelWakelock.NAME, ent.getKey());
7606 dumpTimer(proto, SystemProto.KernelWakelock.TOTAL, ent.getValue(),
7607 rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007608 proto.end(kwToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007609 }
7610
7611 // Misc (MISC_DATA)
7612 // Calculate wakelock times across all uids.
7613 long fullWakeLockTimeTotalUs = 0;
7614 long partialWakeLockTimeTotalUs = 0;
7615
7616 final SparseArray<? extends Uid> uidStats = getUidStats();
7617 for (int iu = 0; iu < uidStats.size(); iu++) {
7618 final Uid u = uidStats.valueAt(iu);
7619
7620 final ArrayMap<String, ? extends BatteryStats.Uid.Wakelock> wakelocks =
7621 u.getWakelockStats();
7622 for (int iw = wakelocks.size() - 1; iw >= 0; --iw) {
7623 final Uid.Wakelock wl = wakelocks.valueAt(iw);
7624
7625 final Timer fullWakeTimer = wl.getWakeTime(WAKE_TYPE_FULL);
7626 if (fullWakeTimer != null) {
7627 fullWakeLockTimeTotalUs += fullWakeTimer.getTotalTimeLocked(rawRealtimeUs,
7628 which);
7629 }
7630
7631 final Timer partialWakeTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
7632 if (partialWakeTimer != null) {
7633 partialWakeLockTimeTotalUs += partialWakeTimer.getTotalTimeLocked(
7634 rawRealtimeUs, which);
7635 }
7636 }
7637 }
Kweku Adams103351f2017-10-16 14:39:34 -07007638 final long mToken = proto.start(SystemProto.MISC);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007639 proto.write(SystemProto.Misc.SCREEN_ON_DURATION_MS,
7640 getScreenOnTime(rawRealtimeUs, which) / 1000);
7641 proto.write(SystemProto.Misc.PHONE_ON_DURATION_MS,
7642 getPhoneOnTime(rawRealtimeUs, which) / 1000);
7643 proto.write(SystemProto.Misc.FULL_WAKELOCK_TOTAL_DURATION_MS,
7644 fullWakeLockTimeTotalUs / 1000);
7645 proto.write(SystemProto.Misc.PARTIAL_WAKELOCK_TOTAL_DURATION_MS,
7646 partialWakeLockTimeTotalUs / 1000);
7647 proto.write(SystemProto.Misc.MOBILE_RADIO_ACTIVE_DURATION_MS,
7648 getMobileRadioActiveTime(rawRealtimeUs, which) / 1000);
7649 proto.write(SystemProto.Misc.MOBILE_RADIO_ACTIVE_ADJUSTED_TIME_MS,
7650 getMobileRadioActiveAdjustedTime(which) / 1000);
7651 proto.write(SystemProto.Misc.MOBILE_RADIO_ACTIVE_COUNT,
7652 getMobileRadioActiveCount(which));
7653 proto.write(SystemProto.Misc.MOBILE_RADIO_ACTIVE_UNKNOWN_DURATION_MS,
7654 getMobileRadioActiveUnknownTime(which) / 1000);
7655 proto.write(SystemProto.Misc.INTERACTIVE_DURATION_MS,
7656 getInteractiveTime(rawRealtimeUs, which) / 1000);
7657 proto.write(SystemProto.Misc.BATTERY_SAVER_MODE_ENABLED_DURATION_MS,
7658 getPowerSaveModeEnabledTime(rawRealtimeUs, which) / 1000);
7659 proto.write(SystemProto.Misc.NUM_CONNECTIVITY_CHANGES,
7660 getNumConnectivityChange(which));
7661 proto.write(SystemProto.Misc.DEEP_DOZE_ENABLED_DURATION_MS,
7662 getDeviceIdleModeTime(DEVICE_IDLE_MODE_DEEP, rawRealtimeUs, which) / 1000);
7663 proto.write(SystemProto.Misc.DEEP_DOZE_COUNT,
7664 getDeviceIdleModeCount(DEVICE_IDLE_MODE_DEEP, which));
7665 proto.write(SystemProto.Misc.DEEP_DOZE_IDLING_DURATION_MS,
7666 getDeviceIdlingTime(DEVICE_IDLE_MODE_DEEP, rawRealtimeUs, which) / 1000);
7667 proto.write(SystemProto.Misc.DEEP_DOZE_IDLING_COUNT,
7668 getDeviceIdlingCount(DEVICE_IDLE_MODE_DEEP, which));
7669 proto.write(SystemProto.Misc.LONGEST_DEEP_DOZE_DURATION_MS,
7670 getLongestDeviceIdleModeTime(DEVICE_IDLE_MODE_DEEP));
7671 proto.write(SystemProto.Misc.LIGHT_DOZE_ENABLED_DURATION_MS,
7672 getDeviceIdleModeTime(DEVICE_IDLE_MODE_LIGHT, rawRealtimeUs, which) / 1000);
7673 proto.write(SystemProto.Misc.LIGHT_DOZE_COUNT,
7674 getDeviceIdleModeCount(DEVICE_IDLE_MODE_LIGHT, which));
7675 proto.write(SystemProto.Misc.LIGHT_DOZE_IDLING_DURATION_MS,
7676 getDeviceIdlingTime(DEVICE_IDLE_MODE_LIGHT, rawRealtimeUs, which) / 1000);
7677 proto.write(SystemProto.Misc.LIGHT_DOZE_IDLING_COUNT,
7678 getDeviceIdlingCount(DEVICE_IDLE_MODE_LIGHT, which));
7679 proto.write(SystemProto.Misc.LONGEST_LIGHT_DOZE_DURATION_MS,
7680 getLongestDeviceIdleModeTime(DEVICE_IDLE_MODE_LIGHT));
Kweku Adams103351f2017-10-16 14:39:34 -07007681 proto.end(mToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007682
Ahmed ElArabawyddd09692017-10-30 17:58:29 -07007683 // Wifi multicast wakelock total stats (WIFI_MULTICAST_WAKELOCK_TOTAL_DATA)
Ahmed ElArabawyf88571f2017-11-28 12:18:10 -08007684 final long multicastWakeLockTimeTotalUs =
7685 getWifiMulticastWakelockTime(rawRealtimeUs, which);
7686 final int multicastWakeLockCountTotal = getWifiMulticastWakelockCount(which);
Ahmed ElArabawyddd09692017-10-30 17:58:29 -07007687 final long wmctToken = proto.start(SystemProto.WIFI_MULTICAST_WAKELOCK_TOTAL);
7688 proto.write(SystemProto.WifiMulticastWakelockTotal.DURATION_MS,
7689 multicastWakeLockTimeTotalUs / 1000);
7690 proto.write(SystemProto.WifiMulticastWakelockTotal.COUNT,
7691 multicastWakeLockCountTotal);
7692 proto.end(wmctToken);
7693
Kweku Adams87b19ec2017-10-09 12:40:03 -07007694 // Power use item (POWER_USE_ITEM_DATA)
7695 final List<BatterySipper> sippers = helper.getUsageList();
7696 if (sippers != null) {
7697 for (int i = 0; i < sippers.size(); ++i) {
7698 final BatterySipper bs = sippers.get(i);
7699 int n = SystemProto.PowerUseItem.UNKNOWN_SIPPER;
7700 int uid = 0;
7701 switch (bs.drainType) {
7702 case IDLE:
7703 n = SystemProto.PowerUseItem.IDLE;
7704 break;
7705 case CELL:
7706 n = SystemProto.PowerUseItem.CELL;
7707 break;
7708 case PHONE:
7709 n = SystemProto.PowerUseItem.PHONE;
7710 break;
7711 case WIFI:
7712 n = SystemProto.PowerUseItem.WIFI;
7713 break;
7714 case BLUETOOTH:
7715 n = SystemProto.PowerUseItem.BLUETOOTH;
7716 break;
7717 case SCREEN:
7718 n = SystemProto.PowerUseItem.SCREEN;
7719 break;
7720 case FLASHLIGHT:
7721 n = SystemProto.PowerUseItem.FLASHLIGHT;
7722 break;
7723 case APP:
Kweku Adams103351f2017-10-16 14:39:34 -07007724 // dumpProtoAppsLocked will handle this.
Kweku Adams87b19ec2017-10-09 12:40:03 -07007725 continue;
7726 case USER:
7727 n = SystemProto.PowerUseItem.USER;
7728 uid = UserHandle.getUid(bs.userId, 0);
7729 break;
7730 case UNACCOUNTED:
7731 n = SystemProto.PowerUseItem.UNACCOUNTED;
7732 break;
7733 case OVERCOUNTED:
7734 n = SystemProto.PowerUseItem.OVERCOUNTED;
7735 break;
7736 case CAMERA:
7737 n = SystemProto.PowerUseItem.CAMERA;
7738 break;
7739 case MEMORY:
7740 n = SystemProto.PowerUseItem.MEMORY;
7741 break;
7742 }
Kweku Adams103351f2017-10-16 14:39:34 -07007743 final long puiToken = proto.start(SystemProto.POWER_USE_ITEM);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007744 proto.write(SystemProto.PowerUseItem.NAME, n);
7745 proto.write(SystemProto.PowerUseItem.UID, uid);
7746 proto.write(SystemProto.PowerUseItem.COMPUTED_POWER_MAH, bs.totalPowerMah);
7747 proto.write(SystemProto.PowerUseItem.SHOULD_HIDE, bs.shouldHide);
7748 proto.write(SystemProto.PowerUseItem.SCREEN_POWER_MAH, bs.screenPowerMah);
7749 proto.write(SystemProto.PowerUseItem.PROPORTIONAL_SMEAR_MAH,
7750 bs.proportionalSmearMah);
Kweku Adams103351f2017-10-16 14:39:34 -07007751 proto.end(puiToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007752 }
7753 }
7754
7755 // Power use summary (POWER_USE_SUMMARY_DATA)
Kweku Adams103351f2017-10-16 14:39:34 -07007756 final long pusToken = proto.start(SystemProto.POWER_USE_SUMMARY);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007757 proto.write(SystemProto.PowerUseSummary.BATTERY_CAPACITY_MAH,
7758 helper.getPowerProfile().getBatteryCapacity());
7759 proto.write(SystemProto.PowerUseSummary.COMPUTED_POWER_MAH, helper.getComputedPower());
7760 proto.write(SystemProto.PowerUseSummary.MIN_DRAINED_POWER_MAH, helper.getMinDrainedPower());
7761 proto.write(SystemProto.PowerUseSummary.MAX_DRAINED_POWER_MAH, helper.getMaxDrainedPower());
Kweku Adams103351f2017-10-16 14:39:34 -07007762 proto.end(pusToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007763
7764 // RPM stats (RESOURCE_POWER_MANAGER_DATA)
7765 final Map<String, ? extends Timer> rpmStats = getRpmStats();
7766 final Map<String, ? extends Timer> screenOffRpmStats = getScreenOffRpmStats();
7767 for (Map.Entry<String, ? extends Timer> ent : rpmStats.entrySet()) {
Kweku Adams103351f2017-10-16 14:39:34 -07007768 final long rpmToken = proto.start(SystemProto.RESOURCE_POWER_MANAGER);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007769 proto.write(SystemProto.ResourcePowerManager.NAME, ent.getKey());
7770 dumpTimer(proto, SystemProto.ResourcePowerManager.TOTAL,
7771 ent.getValue(), rawRealtimeUs, which);
7772 dumpTimer(proto, SystemProto.ResourcePowerManager.SCREEN_OFF,
7773 screenOffRpmStats.get(ent.getKey()), rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007774 proto.end(rpmToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007775 }
7776
7777 // Screen brightness (SCREEN_BRIGHTNESS_DATA)
7778 for (int i = 0; i < NUM_SCREEN_BRIGHTNESS_BINS; ++i) {
Kweku Adams103351f2017-10-16 14:39:34 -07007779 final long sbToken = proto.start(SystemProto.SCREEN_BRIGHTNESS);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007780 proto.write(SystemProto.ScreenBrightness.NAME, i);
7781 dumpTimer(proto, SystemProto.ScreenBrightness.TOTAL, getScreenBrightnessTimer(i),
7782 rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007783 proto.end(sbToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007784 }
7785
7786 // Signal scanning time (SIGNAL_SCANNING_TIME_DATA)
7787 dumpTimer(proto, SystemProto.SIGNAL_SCANNING, getPhoneSignalScanningTimer(), rawRealtimeUs,
7788 which);
7789
7790 // Phone signal strength (SIGNAL_STRENGTH_TIME_DATA and SIGNAL_STRENGTH_COUNT_DATA)
7791 for (int i = 0; i < SignalStrength.NUM_SIGNAL_STRENGTH_BINS; ++i) {
Kweku Adams103351f2017-10-16 14:39:34 -07007792 final long pssToken = proto.start(SystemProto.PHONE_SIGNAL_STRENGTH);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007793 proto.write(SystemProto.PhoneSignalStrength.NAME, i);
7794 dumpTimer(proto, SystemProto.PhoneSignalStrength.TOTAL, getPhoneSignalStrengthTimer(i),
7795 rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007796 proto.end(pssToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007797 }
7798
7799 // Wakeup reasons (WAKEUP_REASON_DATA)
7800 final Map<String, ? extends Timer> wakeupReasons = getWakeupReasonStats();
7801 for (Map.Entry<String, ? extends Timer> ent : wakeupReasons.entrySet()) {
Kweku Adams103351f2017-10-16 14:39:34 -07007802 final long wrToken = proto.start(SystemProto.WAKEUP_REASON);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007803 proto.write(SystemProto.WakeupReason.NAME, ent.getKey());
7804 dumpTimer(proto, SystemProto.WakeupReason.TOTAL, ent.getValue(), rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007805 proto.end(wrToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007806 }
7807
7808 // Wifi signal strength (WIFI_SIGNAL_STRENGTH_TIME_DATA and WIFI_SIGNAL_STRENGTH_COUNT_DATA)
7809 for (int i = 0; i < NUM_WIFI_SIGNAL_STRENGTH_BINS; ++i) {
Kweku Adams103351f2017-10-16 14:39:34 -07007810 final long wssToken = proto.start(SystemProto.WIFI_SIGNAL_STRENGTH);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007811 proto.write(SystemProto.WifiSignalStrength.NAME, i);
7812 dumpTimer(proto, SystemProto.WifiSignalStrength.TOTAL, getWifiSignalStrengthTimer(i),
7813 rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007814 proto.end(wssToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007815 }
7816
7817 // Wifi state (WIFI_STATE_TIME_DATA and WIFI_STATE_COUNT_DATA)
7818 for (int i = 0; i < NUM_WIFI_STATES; ++i) {
Kweku Adams103351f2017-10-16 14:39:34 -07007819 final long wsToken = proto.start(SystemProto.WIFI_STATE);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007820 proto.write(SystemProto.WifiState.NAME, i);
7821 dumpTimer(proto, SystemProto.WifiState.TOTAL, getWifiStateTimer(i),
7822 rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007823 proto.end(wsToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007824 }
7825
7826 // Wifi supplicant state (WIFI_SUPPL_STATE_TIME_DATA and WIFI_SUPPL_STATE_COUNT_DATA)
7827 for (int i = 0; i < NUM_WIFI_SUPPL_STATES; ++i) {
Kweku Adams103351f2017-10-16 14:39:34 -07007828 final long wssToken = proto.start(SystemProto.WIFI_SUPPLICANT_STATE);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007829 proto.write(SystemProto.WifiSupplicantState.NAME, i);
7830 dumpTimer(proto, SystemProto.WifiSupplicantState.TOTAL, getWifiSupplStateTimer(i),
7831 rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007832 proto.end(wssToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007833 }
7834
7835 proto.end(sToken);
7836 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007837}