blob: 7cd58e8b7c36ac5fe685dfb9afe579fe18a23834 [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;
Siddharth Rayf5e796a2018-01-22 18:18:17 -08001540 public static final int STATE2_CELLULAR_HIGH_TX_POWER_FLAG = 1 << 19;
Dianne Hackborn3251b902014-06-20 14:40:53 -07001541
1542 public static final int MOST_INTERESTING_STATES2 =
Mike Mac2f518a2017-09-19 16:06:03 -07001543 STATE2_POWER_SAVE_FLAG | STATE2_WIFI_ON_FLAG | STATE2_DEVICE_IDLE_MASK
1544 | STATE2_CHARGING_FLAG | STATE2_PHONE_IN_CALL_FLAG | STATE2_BLUETOOTH_ON_FLAG;
Dianne Hackborn0c820db2015-04-14 17:47:34 -07001545
1546 public static final int SETTLE_TO_ZERO_STATES2 = 0xffff0000 & ~MOST_INTERESTING_STATES2;
Dianne Hackborn3251b902014-06-20 14:40:53 -07001547
Dianne Hackborn40c87252014-03-19 16:55:40 -07001548 public int states2;
1549
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001550 // The wake lock that was acquired at this point.
1551 public HistoryTag wakelockTag;
1552
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001553 // Kernel wakeup reason at this point.
1554 public HistoryTag wakeReasonTag;
1555
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08001556 // Non-null when there is more detailed information at this step.
1557 public HistoryStepDetails stepDetails;
1558
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08001559 public static final int EVENT_FLAG_START = 0x8000;
1560 public static final int EVENT_FLAG_FINISH = 0x4000;
1561
1562 // No event in this item.
1563 public static final int EVENT_NONE = 0x0000;
1564 // Event is about a process that is running.
1565 public static final int EVENT_PROC = 0x0001;
1566 // Event is about an application package that is in the foreground.
1567 public static final int EVENT_FOREGROUND = 0x0002;
1568 // Event is about an application package that is at the top of the screen.
1569 public static final int EVENT_TOP = 0x0003;
Dianne Hackbornfdb19562014-07-11 16:03:36 -07001570 // Event is about active sync operations.
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -08001571 public static final int EVENT_SYNC = 0x0004;
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001572 // Events for all additional wake locks aquired/release within a wake block.
1573 // These are not generated by default.
1574 public static final int EVENT_WAKE_LOCK = 0x0005;
Dianne Hackbornfdb19562014-07-11 16:03:36 -07001575 // Event is about an application executing a scheduled job.
1576 public static final int EVENT_JOB = 0x0006;
1577 // Events for users running.
1578 public static final int EVENT_USER_RUNNING = 0x0007;
1579 // Events for foreground user.
1580 public static final int EVENT_USER_FOREGROUND = 0x0008;
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001581 // Event for connectivity changed.
Dianne Hackborn1e01d162014-12-04 17:46:42 -08001582 public static final int EVENT_CONNECTIVITY_CHANGED = 0x0009;
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001583 // Event for becoming active taking us out of idle mode.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001584 public static final int EVENT_ACTIVE = 0x000a;
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001585 // Event for a package being installed.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001586 public static final int EVENT_PACKAGE_INSTALLED = 0x000b;
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001587 // Event for a package being uninstalled.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001588 public static final int EVENT_PACKAGE_UNINSTALLED = 0x000c;
Dianne Hackborn1e383822015-04-10 14:02:33 -07001589 // Event for a package being uninstalled.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001590 public static final int EVENT_ALARM = 0x000d;
Dianne Hackborn0c820db2015-04-14 17:47:34 -07001591 // Record that we have decided we need to collect new stats data.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001592 public static final int EVENT_COLLECT_EXTERNAL_STATS = 0x000e;
Amith Yamasani67768492015-06-09 12:23:58 -07001593 // Event for a package becoming inactive due to being unused for a period of time.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001594 public static final int EVENT_PACKAGE_INACTIVE = 0x000f;
Amith Yamasani67768492015-06-09 12:23:58 -07001595 // Event for a package becoming active due to an interaction.
Dianne Hackbornb6683c42015-06-18 17:40:33 -07001596 public static final int EVENT_PACKAGE_ACTIVE = 0x0010;
Dianne Hackbornfd854ee2015-07-13 18:00:37 -07001597 // Event for a package being on the temporary whitelist.
1598 public static final int EVENT_TEMP_WHITELIST = 0x0011;
Dianne Hackborn280a64e2015-07-13 14:48:08 -07001599 // Event for the screen waking up.
1600 public static final int EVENT_SCREEN_WAKE_UP = 0x0012;
Adam Lesinski5f056f62016-07-14 16:56:08 -07001601 // Event for the UID that woke up the application processor.
1602 // Used for wakeups coming from WiFi, modem, etc.
1603 public static final int EVENT_WAKEUP_AP = 0x0013;
Dianne Hackbornd0db6f02016-07-18 14:14:20 -07001604 // Event for reporting that a specific partial wake lock has been held for a long duration.
1605 public static final int EVENT_LONG_WAKE_LOCK = 0x0014;
Amith Yamasani67768492015-06-09 12:23:58 -07001606
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08001607 // Number of event types.
Adam Lesinski041d9172016-12-12 12:03:56 -08001608 public static final int EVENT_COUNT = 0x0016;
Dianne Hackborn37de0982014-05-09 09:32:18 -07001609 // Mask to extract out only the type part of the event.
1610 public static final int EVENT_TYPE_MASK = ~(EVENT_FLAG_START|EVENT_FLAG_FINISH);
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08001611
1612 public static final int EVENT_PROC_START = EVENT_PROC | EVENT_FLAG_START;
1613 public static final int EVENT_PROC_FINISH = EVENT_PROC | EVENT_FLAG_FINISH;
1614 public static final int EVENT_FOREGROUND_START = EVENT_FOREGROUND | EVENT_FLAG_START;
1615 public static final int EVENT_FOREGROUND_FINISH = EVENT_FOREGROUND | EVENT_FLAG_FINISH;
1616 public static final int EVENT_TOP_START = EVENT_TOP | EVENT_FLAG_START;
1617 public static final int EVENT_TOP_FINISH = EVENT_TOP | EVENT_FLAG_FINISH;
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -08001618 public static final int EVENT_SYNC_START = EVENT_SYNC | EVENT_FLAG_START;
1619 public static final int EVENT_SYNC_FINISH = EVENT_SYNC | EVENT_FLAG_FINISH;
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001620 public static final int EVENT_WAKE_LOCK_START = EVENT_WAKE_LOCK | EVENT_FLAG_START;
1621 public static final int EVENT_WAKE_LOCK_FINISH = EVENT_WAKE_LOCK | EVENT_FLAG_FINISH;
Dianne Hackbornfdb19562014-07-11 16:03:36 -07001622 public static final int EVENT_JOB_START = EVENT_JOB | EVENT_FLAG_START;
1623 public static final int EVENT_JOB_FINISH = EVENT_JOB | EVENT_FLAG_FINISH;
1624 public static final int EVENT_USER_RUNNING_START = EVENT_USER_RUNNING | EVENT_FLAG_START;
1625 public static final int EVENT_USER_RUNNING_FINISH = EVENT_USER_RUNNING | EVENT_FLAG_FINISH;
1626 public static final int EVENT_USER_FOREGROUND_START =
1627 EVENT_USER_FOREGROUND | EVENT_FLAG_START;
1628 public static final int EVENT_USER_FOREGROUND_FINISH =
1629 EVENT_USER_FOREGROUND | EVENT_FLAG_FINISH;
Dianne Hackborn1e383822015-04-10 14:02:33 -07001630 public static final int EVENT_ALARM_START = EVENT_ALARM | EVENT_FLAG_START;
1631 public static final int EVENT_ALARM_FINISH = EVENT_ALARM | EVENT_FLAG_FINISH;
Dianne Hackbornfd854ee2015-07-13 18:00:37 -07001632 public static final int EVENT_TEMP_WHITELIST_START =
1633 EVENT_TEMP_WHITELIST | EVENT_FLAG_START;
1634 public static final int EVENT_TEMP_WHITELIST_FINISH =
1635 EVENT_TEMP_WHITELIST | EVENT_FLAG_FINISH;
Dianne Hackbornd0db6f02016-07-18 14:14:20 -07001636 public static final int EVENT_LONG_WAKE_LOCK_START =
1637 EVENT_LONG_WAKE_LOCK | EVENT_FLAG_START;
1638 public static final int EVENT_LONG_WAKE_LOCK_FINISH =
1639 EVENT_LONG_WAKE_LOCK | EVENT_FLAG_FINISH;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001640
1641 // For CMD_EVENT.
1642 public int eventCode;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001643 public HistoryTag eventTag;
1644
Dianne Hackborn9a755432014-05-15 17:05:22 -07001645 // Only set for CMD_CURRENT_TIME or CMD_RESET, as per System.currentTimeMillis().
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001646 public long currentTime;
1647
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001648 // Meta-data when reading.
1649 public int numReadInts;
1650
1651 // Pre-allocated objects.
1652 public final HistoryTag localWakelockTag = new HistoryTag();
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001653 public final HistoryTag localWakeReasonTag = new HistoryTag();
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001654 public final HistoryTag localEventTag = new HistoryTag();
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001655
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001656 public HistoryItem() {
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001657 }
Bookatzc8c44962017-05-11 12:12:54 -07001658
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001659 public HistoryItem(long time, Parcel src) {
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001660 this.time = time;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001661 numReadInts = 2;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001662 readFromParcel(src);
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001663 }
Bookatzc8c44962017-05-11 12:12:54 -07001664
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001665 public int describeContents() {
1666 return 0;
1667 }
1668
1669 public void writeToParcel(Parcel dest, int flags) {
1670 dest.writeLong(time);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001671 int bat = (((int)cmd)&0xff)
1672 | ((((int)batteryLevel)<<8)&0xff00)
1673 | ((((int)batteryStatus)<<16)&0xf0000)
1674 | ((((int)batteryHealth)<<20)&0xf00000)
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001675 | ((((int)batteryPlugType)<<24)&0xf000000)
1676 | (wakelockTag != null ? 0x10000000 : 0)
1677 | (wakeReasonTag != null ? 0x20000000 : 0)
1678 | (eventCode != EVENT_NONE ? 0x40000000 : 0);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001679 dest.writeInt(bat);
1680 bat = (((int)batteryTemperature)&0xffff)
1681 | ((((int)batteryVoltage)<<16)&0xffff0000);
1682 dest.writeInt(bat);
Adam Lesinskia8018ac2016-05-03 10:18:10 -07001683 dest.writeInt(batteryChargeUAh);
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001684 dest.writeInt(states);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001685 dest.writeInt(states2);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001686 if (wakelockTag != null) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001687 wakelockTag.writeToParcel(dest, flags);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001688 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001689 if (wakeReasonTag != null) {
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001690 wakeReasonTag.writeToParcel(dest, flags);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001691 }
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001692 if (eventCode != EVENT_NONE) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001693 dest.writeInt(eventCode);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001694 eventTag.writeToParcel(dest, flags);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001695 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07001696 if (cmd == CMD_CURRENT_TIME || cmd == CMD_RESET) {
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001697 dest.writeLong(currentTime);
1698 }
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001699 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001700
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001701 public void readFromParcel(Parcel src) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001702 int start = src.dataPosition();
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001703 int bat = src.readInt();
1704 cmd = (byte)(bat&0xff);
1705 batteryLevel = (byte)((bat>>8)&0xff);
1706 batteryStatus = (byte)((bat>>16)&0xf);
1707 batteryHealth = (byte)((bat>>20)&0xf);
1708 batteryPlugType = (byte)((bat>>24)&0xf);
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001709 int bat2 = src.readInt();
1710 batteryTemperature = (short)(bat2&0xffff);
1711 batteryVoltage = (char)((bat2>>16)&0xffff);
Adam Lesinskia8018ac2016-05-03 10:18:10 -07001712 batteryChargeUAh = src.readInt();
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001713 states = src.readInt();
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001714 states2 = src.readInt();
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001715 if ((bat&0x10000000) != 0) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001716 wakelockTag = localWakelockTag;
1717 wakelockTag.readFromParcel(src);
1718 } else {
1719 wakelockTag = null;
1720 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001721 if ((bat&0x20000000) != 0) {
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001722 wakeReasonTag = localWakeReasonTag;
1723 wakeReasonTag.readFromParcel(src);
1724 } else {
1725 wakeReasonTag = null;
1726 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001727 if ((bat&0x40000000) != 0) {
1728 eventCode = src.readInt();
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001729 eventTag = localEventTag;
1730 eventTag.readFromParcel(src);
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001731 } else {
1732 eventCode = EVENT_NONE;
1733 eventTag = null;
1734 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07001735 if (cmd == CMD_CURRENT_TIME || cmd == CMD_RESET) {
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001736 currentTime = src.readLong();
1737 } else {
1738 currentTime = 0;
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001739 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001740 numReadInts += (src.dataPosition()-start)/4;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001741 }
1742
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001743 public void clear() {
1744 time = 0;
1745 cmd = CMD_NULL;
1746 batteryLevel = 0;
1747 batteryStatus = 0;
1748 batteryHealth = 0;
1749 batteryPlugType = 0;
1750 batteryTemperature = 0;
1751 batteryVoltage = 0;
Adam Lesinskia8018ac2016-05-03 10:18:10 -07001752 batteryChargeUAh = 0;
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001753 states = 0;
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001754 states2 = 0;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001755 wakelockTag = null;
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001756 wakeReasonTag = null;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001757 eventCode = EVENT_NONE;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001758 eventTag = null;
Dianne Hackborn1fadab52011-04-14 17:57:33 -07001759 }
Bookatzc8c44962017-05-11 12:12:54 -07001760
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001761 public void setTo(HistoryItem o) {
1762 time = o.time;
1763 cmd = o.cmd;
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001764 setToCommon(o);
1765 }
1766
1767 public void setTo(long time, byte cmd, HistoryItem o) {
1768 this.time = time;
1769 this.cmd = cmd;
1770 setToCommon(o);
1771 }
1772
1773 private void setToCommon(HistoryItem o) {
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001774 batteryLevel = o.batteryLevel;
1775 batteryStatus = o.batteryStatus;
1776 batteryHealth = o.batteryHealth;
1777 batteryPlugType = o.batteryPlugType;
1778 batteryTemperature = o.batteryTemperature;
1779 batteryVoltage = o.batteryVoltage;
Adam Lesinskia8018ac2016-05-03 10:18:10 -07001780 batteryChargeUAh = o.batteryChargeUAh;
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001781 states = o.states;
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001782 states2 = o.states2;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001783 if (o.wakelockTag != null) {
1784 wakelockTag = localWakelockTag;
1785 wakelockTag.setTo(o.wakelockTag);
1786 } else {
1787 wakelockTag = null;
1788 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001789 if (o.wakeReasonTag != null) {
1790 wakeReasonTag = localWakeReasonTag;
1791 wakeReasonTag.setTo(o.wakeReasonTag);
1792 } else {
1793 wakeReasonTag = null;
1794 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001795 eventCode = o.eventCode;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001796 if (o.eventTag != null) {
1797 eventTag = localEventTag;
1798 eventTag.setTo(o.eventTag);
1799 } else {
1800 eventTag = null;
1801 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001802 currentTime = o.currentTime;
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001803 }
1804
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001805 public boolean sameNonEvent(HistoryItem o) {
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07001806 return batteryLevel == o.batteryLevel
1807 && batteryStatus == o.batteryStatus
1808 && batteryHealth == o.batteryHealth
1809 && batteryPlugType == o.batteryPlugType
1810 && batteryTemperature == o.batteryTemperature
1811 && batteryVoltage == o.batteryVoltage
Adam Lesinskia8018ac2016-05-03 10:18:10 -07001812 && batteryChargeUAh == o.batteryChargeUAh
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001813 && states == o.states
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001814 && states2 == o.states2
Dianne Hackborne5167ca2014-03-08 14:39:10 -08001815 && currentTime == o.currentTime;
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07001816 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001817
1818 public boolean same(HistoryItem o) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001819 if (!sameNonEvent(o) || eventCode != o.eventCode) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001820 return false;
1821 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001822 if (wakelockTag != o.wakelockTag) {
1823 if (wakelockTag == null || o.wakelockTag == null) {
1824 return false;
1825 }
1826 if (!wakelockTag.equals(o.wakelockTag)) {
1827 return false;
1828 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001829 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001830 if (wakeReasonTag != o.wakeReasonTag) {
1831 if (wakeReasonTag == null || o.wakeReasonTag == null) {
1832 return false;
1833 }
1834 if (!wakeReasonTag.equals(o.wakeReasonTag)) {
1835 return false;
1836 }
1837 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001838 if (eventTag != o.eventTag) {
1839 if (eventTag == null || o.eventTag == null) {
1840 return false;
1841 }
1842 if (!eventTag.equals(o.eventTag)) {
1843 return false;
1844 }
1845 }
1846 return true;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001847 }
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001848 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07001849
1850 public final static class HistoryEventTracker {
1851 private final HashMap<String, SparseIntArray>[] mActiveEvents
1852 = (HashMap<String, SparseIntArray>[]) new HashMap[HistoryItem.EVENT_COUNT];
1853
1854 public boolean updateState(int code, String name, int uid, int poolIdx) {
1855 if ((code&HistoryItem.EVENT_FLAG_START) != 0) {
1856 int idx = code&HistoryItem.EVENT_TYPE_MASK;
1857 HashMap<String, SparseIntArray> active = mActiveEvents[idx];
1858 if (active == null) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07001859 active = new HashMap<>();
Dianne Hackborn37de0982014-05-09 09:32:18 -07001860 mActiveEvents[idx] = active;
1861 }
1862 SparseIntArray uids = active.get(name);
1863 if (uids == null) {
1864 uids = new SparseIntArray();
1865 active.put(name, uids);
1866 }
1867 if (uids.indexOfKey(uid) >= 0) {
1868 // Already set, nothing to do!
1869 return false;
1870 }
1871 uids.put(uid, poolIdx);
1872 } else if ((code&HistoryItem.EVENT_FLAG_FINISH) != 0) {
1873 int idx = code&HistoryItem.EVENT_TYPE_MASK;
1874 HashMap<String, SparseIntArray> active = mActiveEvents[idx];
1875 if (active == null) {
1876 // not currently active, nothing to do.
1877 return false;
1878 }
1879 SparseIntArray uids = active.get(name);
1880 if (uids == null) {
1881 // not currently active, nothing to do.
1882 return false;
1883 }
1884 idx = uids.indexOfKey(uid);
1885 if (idx < 0) {
1886 // not currently active, nothing to do.
1887 return false;
1888 }
1889 uids.removeAt(idx);
1890 if (uids.size() <= 0) {
1891 active.remove(name);
1892 }
1893 }
1894 return true;
1895 }
1896
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001897 public void removeEvents(int code) {
1898 int idx = code&HistoryItem.EVENT_TYPE_MASK;
1899 mActiveEvents[idx] = null;
1900 }
1901
Dianne Hackborn37de0982014-05-09 09:32:18 -07001902 public HashMap<String, SparseIntArray> getStateForEvent(int code) {
1903 return mActiveEvents[code];
1904 }
1905 }
1906
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001907 public static final class BitDescription {
1908 public final int mask;
1909 public final int shift;
1910 public final String name;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001911 public final String shortName;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001912 public final String[] values;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001913 public final String[] shortValues;
Bookatzc8c44962017-05-11 12:12:54 -07001914
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001915 public BitDescription(int mask, String name, String shortName) {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001916 this.mask = mask;
1917 this.shift = -1;
1918 this.name = name;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001919 this.shortName = shortName;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001920 this.values = null;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001921 this.shortValues = null;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001922 }
Bookatzc8c44962017-05-11 12:12:54 -07001923
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001924 public BitDescription(int mask, int shift, String name, String shortName,
1925 String[] values, String[] shortValues) {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001926 this.mask = mask;
1927 this.shift = shift;
1928 this.name = name;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001929 this.shortName = shortName;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001930 this.values = values;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08001931 this.shortValues = shortValues;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07001932 }
Dianne Hackborn32907cf2010-06-10 17:50:20 -07001933 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07001934
Dianne Hackbornfc064132014-06-02 12:42:12 -07001935 /**
1936 * Don't allow any more batching in to the current history event. This
1937 * is called when printing partial histories, so to ensure that the next
1938 * history event will go in to a new batch after what was printed in the
1939 * last partial history.
1940 */
1941 public abstract void commitCurrentHistoryBatchLocked();
1942
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001943 public abstract int getHistoryTotalSize();
1944
1945 public abstract int getHistoryUsedSize();
1946
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001947 public abstract boolean startIteratingHistoryLocked();
1948
Dianne Hackborn099bc622014-01-22 13:39:16 -08001949 public abstract int getHistoryStringPoolSize();
1950
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08001951 public abstract int getHistoryStringPoolBytes();
1952
1953 public abstract String getHistoryTagPoolString(int index);
1954
1955 public abstract int getHistoryTagPoolUid(int index);
Dianne Hackborn099bc622014-01-22 13:39:16 -08001956
Dianne Hackbornce2ef762010-09-20 11:39:14 -07001957 public abstract boolean getNextHistoryLocked(HistoryItem out);
1958
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001959 public abstract void finishIteratingHistoryLocked();
1960
1961 public abstract boolean startIteratingOldHistoryLocked();
1962
1963 public abstract boolean getNextOldHistoryLocked(HistoryItem out);
1964
1965 public abstract void finishIteratingOldHistoryLocked();
1966
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001967 /**
Dianne Hackbornb5e31652010-09-07 12:13:55 -07001968 * Return the base time offset for the battery history.
1969 */
1970 public abstract long getHistoryBaseTime();
Bookatzc8c44962017-05-11 12:12:54 -07001971
Dianne Hackbornb5e31652010-09-07 12:13:55 -07001972 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001973 * Returns the number of times the device has been started.
1974 */
1975 public abstract int getStartCount();
Bookatzc8c44962017-05-11 12:12:54 -07001976
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001977 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07001978 * 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 -08001979 * running on battery.
Bookatzc8c44962017-05-11 12:12:54 -07001980 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001981 * {@hide}
1982 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08001983 public abstract long getScreenOnTime(long elapsedRealtimeUs, int which);
Bookatzc8c44962017-05-11 12:12:54 -07001984
Dianne Hackborn77b987f2014-02-26 16:20:52 -08001985 /**
1986 * Returns the number of times the screen was turned on.
1987 *
1988 * {@hide}
1989 */
1990 public abstract int getScreenOnCount(int which);
1991
Mike Mac2f518a2017-09-19 16:06:03 -07001992 /**
1993 * Returns the time in microseconds that the screen has been dozing while the device was
1994 * running on battery.
1995 *
1996 * {@hide}
1997 */
1998 public abstract long getScreenDozeTime(long elapsedRealtimeUs, int which);
1999
2000 /**
2001 * Returns the number of times the screen was turned dozing.
2002 *
2003 * {@hide}
2004 */
2005 public abstract int getScreenDozeCount(int which);
2006
Jeff Browne95c3cd2014-05-02 16:59:26 -07002007 public abstract long getInteractiveTime(long elapsedRealtimeUs, int which);
2008
Dianne Hackborn617f8772009-03-31 15:04:46 -07002009 public static final int SCREEN_BRIGHTNESS_DARK = 0;
2010 public static final int SCREEN_BRIGHTNESS_DIM = 1;
2011 public static final int SCREEN_BRIGHTNESS_MEDIUM = 2;
2012 public static final int SCREEN_BRIGHTNESS_LIGHT = 3;
2013 public static final int SCREEN_BRIGHTNESS_BRIGHT = 4;
Bookatzc8c44962017-05-11 12:12:54 -07002014
Dianne Hackborn617f8772009-03-31 15:04:46 -07002015 static final String[] SCREEN_BRIGHTNESS_NAMES = {
2016 "dark", "dim", "medium", "light", "bright"
2017 };
Bookatzc8c44962017-05-11 12:12:54 -07002018
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002019 static final String[] SCREEN_BRIGHTNESS_SHORT_NAMES = {
2020 "0", "1", "2", "3", "4"
2021 };
2022
Dianne Hackborn617f8772009-03-31 15:04:46 -07002023 public static final int NUM_SCREEN_BRIGHTNESS_BINS = 5;
Dianne Hackborn3251b902014-06-20 14:40:53 -07002024
Dianne Hackborn617f8772009-03-31 15:04:46 -07002025 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07002026 * Returns the time in microseconds that the screen has been on with
Dianne Hackborn617f8772009-03-31 15:04:46 -07002027 * the given brightness
Bookatzc8c44962017-05-11 12:12:54 -07002028 *
Dianne Hackborn617f8772009-03-31 15:04:46 -07002029 * {@hide}
2030 */
2031 public abstract long getScreenBrightnessTime(int brightnessBin,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002032 long elapsedRealtimeUs, int which);
Dianne Hackborn617f8772009-03-31 15:04:46 -07002033
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002034 /**
Kweku Adams87b19ec2017-10-09 12:40:03 -07002035 * Returns the {@link Timer} object that tracks the given screen brightness.
2036 *
2037 * {@hide}
2038 */
2039 public abstract Timer getScreenBrightnessTimer(int brightnessBin);
2040
2041 /**
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002042 * Returns the time in microseconds that power save mode has been enabled while the device was
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07002043 * running on battery.
2044 *
2045 * {@hide}
2046 */
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002047 public abstract long getPowerSaveModeEnabledTime(long elapsedRealtimeUs, int which);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07002048
2049 /**
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002050 * Returns the number of times that power save mode was enabled.
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07002051 *
2052 * {@hide}
2053 */
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002054 public abstract int getPowerSaveModeEnabledCount(int which);
2055
2056 /**
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002057 * Constant for device idle mode: not active.
2058 */
Bookatz8bdae8d2018-01-16 11:24:30 -08002059 public static final int DEVICE_IDLE_MODE_OFF = ServerProtoEnums.DEVICE_IDLE_MODE_OFF; // 0
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002060
2061 /**
2062 * Constant for device idle mode: active in lightweight mode.
2063 */
Bookatz8bdae8d2018-01-16 11:24:30 -08002064 public static final int DEVICE_IDLE_MODE_LIGHT = ServerProtoEnums.DEVICE_IDLE_MODE_LIGHT; // 1
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002065
2066 /**
2067 * Constant for device idle mode: active in full mode.
2068 */
Bookatz8bdae8d2018-01-16 11:24:30 -08002069 public static final int DEVICE_IDLE_MODE_DEEP = ServerProtoEnums.DEVICE_IDLE_MODE_DEEP; // 2
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002070
2071 /**
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002072 * Returns the time in microseconds that device has been in idle mode while
2073 * running on battery.
2074 *
2075 * {@hide}
2076 */
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002077 public abstract long getDeviceIdleModeTime(int mode, long elapsedRealtimeUs, int which);
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002078
2079 /**
2080 * Returns the number of times that the devie has gone in to idle mode.
2081 *
2082 * {@hide}
2083 */
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002084 public abstract int getDeviceIdleModeCount(int mode, int which);
2085
2086 /**
2087 * Return the longest duration we spent in a particular device idle mode (fully in the
2088 * mode, not in idle maintenance etc).
2089 */
2090 public abstract long getLongestDeviceIdleModeTime(int mode);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07002091
2092 /**
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002093 * Returns the time in microseconds that device has been in idling while on
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002094 * battery. This is broader than {@link #getDeviceIdleModeTime} -- it
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002095 * counts all of the time that we consider the device to be idle, whether or not
2096 * it is currently in the actual device idle mode.
2097 *
2098 * {@hide}
2099 */
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002100 public abstract long getDeviceIdlingTime(int mode, long elapsedRealtimeUs, int which);
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002101
2102 /**
Bookatz8c6571b2017-10-24 15:04:41 -07002103 * Returns the number of times that the device has started idling.
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002104 *
2105 * {@hide}
2106 */
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002107 public abstract int getDeviceIdlingCount(int mode, int which);
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002108
2109 /**
Dianne Hackborn1e01d162014-12-04 17:46:42 -08002110 * Returns the number of times that connectivity state changed.
2111 *
2112 * {@hide}
2113 */
2114 public abstract int getNumConnectivityChange(int which);
2115
Siddharth Ray78ccaf52017-12-23 16:16:21 -08002116
2117 /**
2118 * Returns the time in microseconds that the phone has been running with
2119 * the given GPS signal quality level
2120 *
2121 * {@hide}
2122 */
2123 public abstract long getGpsSignalQualityTime(int strengthBin,
2124 long elapsedRealtimeUs, int which);
2125
2126 /**
2127 * Returns the GPS battery drain in mA-ms
2128 *
2129 * {@hide}
2130 */
2131 public abstract long getGpsBatteryDrainMaMs();
2132
Dianne Hackborn1e01d162014-12-04 17:46:42 -08002133 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07002134 * 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 -08002135 * running on battery.
Bookatzc8c44962017-05-11 12:12:54 -07002136 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002137 * {@hide}
2138 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002139 public abstract long getPhoneOnTime(long elapsedRealtimeUs, int which);
Bookatzc8c44962017-05-11 12:12:54 -07002140
Dianne Hackborn627bba72009-03-24 22:32:56 -07002141 /**
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002142 * Returns the number of times a phone call was activated.
2143 *
2144 * {@hide}
2145 */
2146 public abstract int getPhoneOnCount(int which);
2147
2148 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07002149 * Returns the time in microseconds that the phone has been running with
Dianne Hackborn627bba72009-03-24 22:32:56 -07002150 * the given signal strength.
Bookatzc8c44962017-05-11 12:12:54 -07002151 *
Dianne Hackborn627bba72009-03-24 22:32:56 -07002152 * {@hide}
2153 */
2154 public abstract long getPhoneSignalStrengthTime(int strengthBin,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002155 long elapsedRealtimeUs, int which);
Dianne Hackborn627bba72009-03-24 22:32:56 -07002156
Dianne Hackborn617f8772009-03-31 15:04:46 -07002157 /**
Amith Yamasanif37447b2009-10-08 18:28:01 -07002158 * Returns the time in microseconds that the phone has been trying to
2159 * acquire a signal.
2160 *
2161 * {@hide}
2162 */
2163 public abstract long getPhoneSignalScanningTime(
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002164 long elapsedRealtimeUs, int which);
Amith Yamasanif37447b2009-10-08 18:28:01 -07002165
2166 /**
Kweku Adams87b19ec2017-10-09 12:40:03 -07002167 * Returns the {@link Timer} object that tracks how much the phone has been trying to
2168 * acquire a signal.
2169 *
2170 * {@hide}
2171 */
2172 public abstract Timer getPhoneSignalScanningTimer();
2173
2174 /**
Dianne Hackborn617f8772009-03-31 15:04:46 -07002175 * Returns the number of times the phone has entered the given signal strength.
Bookatzc8c44962017-05-11 12:12:54 -07002176 *
Dianne Hackborn617f8772009-03-31 15:04:46 -07002177 * {@hide}
2178 */
2179 public abstract int getPhoneSignalStrengthCount(int strengthBin, int which);
2180
Dianne Hackborne13c4c02014-02-11 17:18:35 -08002181 /**
Kweku Adams87b19ec2017-10-09 12:40:03 -07002182 * Return the {@link Timer} object used to track the given signal strength's duration and
2183 * counts.
2184 */
2185 protected abstract Timer getPhoneSignalStrengthTimer(int strengthBin);
2186
2187 /**
Dianne Hackborne13c4c02014-02-11 17:18:35 -08002188 * Returns the time in microseconds that the mobile network has been active
2189 * (in a high power state).
2190 *
2191 * {@hide}
2192 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002193 public abstract long getMobileRadioActiveTime(long elapsedRealtimeUs, int which);
Dianne Hackborne13c4c02014-02-11 17:18:35 -08002194
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002195 /**
2196 * Returns the number of times that the mobile network has transitioned to the
2197 * active state.
2198 *
2199 * {@hide}
2200 */
2201 public abstract int getMobileRadioActiveCount(int which);
2202
2203 /**
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002204 * Returns the time in microseconds that is the difference between the mobile radio
2205 * time we saw based on the elapsed timestamp when going down vs. the given time stamp
2206 * from the radio.
2207 *
2208 * {@hide}
2209 */
2210 public abstract long getMobileRadioActiveAdjustedTime(int which);
2211
2212 /**
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002213 * Returns the time in microseconds that the mobile network has been active
2214 * (in a high power state) but not being able to blame on an app.
2215 *
2216 * {@hide}
2217 */
2218 public abstract long getMobileRadioActiveUnknownTime(int which);
2219
2220 /**
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002221 * Return count of number of times radio was up that could not be blamed on apps.
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002222 *
2223 * {@hide}
2224 */
2225 public abstract int getMobileRadioActiveUnknownCount(int which);
Dianne Hackborne13c4c02014-02-11 17:18:35 -08002226
Dianne Hackborn627bba72009-03-24 22:32:56 -07002227 public static final int DATA_CONNECTION_NONE = 0;
2228 public static final int DATA_CONNECTION_GPRS = 1;
2229 public static final int DATA_CONNECTION_EDGE = 2;
2230 public static final int DATA_CONNECTION_UMTS = 3;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002231 public static final int DATA_CONNECTION_CDMA = 4;
2232 public static final int DATA_CONNECTION_EVDO_0 = 5;
2233 public static final int DATA_CONNECTION_EVDO_A = 6;
2234 public static final int DATA_CONNECTION_1xRTT = 7;
2235 public static final int DATA_CONNECTION_HSDPA = 8;
2236 public static final int DATA_CONNECTION_HSUPA = 9;
2237 public static final int DATA_CONNECTION_HSPA = 10;
2238 public static final int DATA_CONNECTION_IDEN = 11;
2239 public static final int DATA_CONNECTION_EVDO_B = 12;
Robert Greenwalt962a9902010-11-02 11:10:25 -07002240 public static final int DATA_CONNECTION_LTE = 13;
2241 public static final int DATA_CONNECTION_EHRPD = 14;
Patrick Tjinb71703c2013-11-06 09:27:03 -08002242 public static final int DATA_CONNECTION_HSPAP = 15;
Siddharth Rayc72081d2018-02-13 11:31:54 -08002243 public static final int DATA_CONNECTION_GSM = 16;
2244 public static final int DATA_CONNECTION_TD_SCDMA = 17;
2245 public static final int DATA_CONNECTION_IWLAN = 18;
2246 public static final int DATA_CONNECTION_LTE_CA = 19;
2247 public static final int DATA_CONNECTION_OTHER = 20;
Robert Greenwalt962a9902010-11-02 11:10:25 -07002248
Dianne Hackborn627bba72009-03-24 22:32:56 -07002249 static final String[] DATA_CONNECTION_NAMES = {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002250 "none", "gprs", "edge", "umts", "cdma", "evdo_0", "evdo_A",
Robert Greenwalt962a9902010-11-02 11:10:25 -07002251 "1xrtt", "hsdpa", "hsupa", "hspa", "iden", "evdo_b", "lte",
Siddharth Rayc72081d2018-02-13 11:31:54 -08002252 "ehrpd", "hspap", "gsm", "td_scdma", "iwlan", "lte_ca", "other"
Dianne Hackborn627bba72009-03-24 22:32:56 -07002253 };
Bookatzc8c44962017-05-11 12:12:54 -07002254
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002255 public static final int NUM_DATA_CONNECTION_TYPES = DATA_CONNECTION_OTHER+1;
Bookatzc8c44962017-05-11 12:12:54 -07002256
Dianne Hackborn627bba72009-03-24 22:32:56 -07002257 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07002258 * Returns the time in microseconds that the phone has been running with
Dianne Hackborn627bba72009-03-24 22:32:56 -07002259 * the given data connection.
Bookatzc8c44962017-05-11 12:12:54 -07002260 *
Dianne Hackborn627bba72009-03-24 22:32:56 -07002261 * {@hide}
2262 */
2263 public abstract long getPhoneDataConnectionTime(int dataType,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002264 long elapsedRealtimeUs, int which);
Dianne Hackborn627bba72009-03-24 22:32:56 -07002265
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002266 /**
Dianne Hackborn617f8772009-03-31 15:04:46 -07002267 * Returns the number of times the phone has entered the given data
2268 * connection type.
Bookatzc8c44962017-05-11 12:12:54 -07002269 *
Dianne Hackborn617f8772009-03-31 15:04:46 -07002270 * {@hide}
2271 */
2272 public abstract int getPhoneDataConnectionCount(int dataType, int which);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002273
Kweku Adams87b19ec2017-10-09 12:40:03 -07002274 /**
2275 * Returns the {@link Timer} object that tracks the phone's data connection type stats.
2276 */
2277 public abstract Timer getPhoneDataConnectionTimer(int dataType);
2278
Dianne Hackborn3251b902014-06-20 14:40:53 -07002279 public static final int WIFI_SUPPL_STATE_INVALID = 0;
2280 public static final int WIFI_SUPPL_STATE_DISCONNECTED = 1;
2281 public static final int WIFI_SUPPL_STATE_INTERFACE_DISABLED = 2;
2282 public static final int WIFI_SUPPL_STATE_INACTIVE = 3;
2283 public static final int WIFI_SUPPL_STATE_SCANNING = 4;
2284 public static final int WIFI_SUPPL_STATE_AUTHENTICATING = 5;
2285 public static final int WIFI_SUPPL_STATE_ASSOCIATING = 6;
2286 public static final int WIFI_SUPPL_STATE_ASSOCIATED = 7;
2287 public static final int WIFI_SUPPL_STATE_FOUR_WAY_HANDSHAKE = 8;
2288 public static final int WIFI_SUPPL_STATE_GROUP_HANDSHAKE = 9;
2289 public static final int WIFI_SUPPL_STATE_COMPLETED = 10;
2290 public static final int WIFI_SUPPL_STATE_DORMANT = 11;
2291 public static final int WIFI_SUPPL_STATE_UNINITIALIZED = 12;
2292
2293 public static final int NUM_WIFI_SUPPL_STATES = WIFI_SUPPL_STATE_UNINITIALIZED+1;
2294
2295 static final String[] WIFI_SUPPL_STATE_NAMES = {
2296 "invalid", "disconn", "disabled", "inactive", "scanning",
2297 "authenticating", "associating", "associated", "4-way-handshake",
2298 "group-handshake", "completed", "dormant", "uninit"
2299 };
2300
2301 static final String[] WIFI_SUPPL_STATE_SHORT_NAMES = {
2302 "inv", "dsc", "dis", "inact", "scan",
2303 "auth", "ascing", "asced", "4-way",
2304 "group", "compl", "dorm", "uninit"
2305 };
2306
Mike Mac2f518a2017-09-19 16:06:03 -07002307 public static final BitDescription[] HISTORY_STATE_DESCRIPTIONS = new BitDescription[] {
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002308 new BitDescription(HistoryItem.STATE_CPU_RUNNING_FLAG, "running", "r"),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08002309 new BitDescription(HistoryItem.STATE_WAKE_LOCK_FLAG, "wake_lock", "w"),
2310 new BitDescription(HistoryItem.STATE_SENSOR_ON_FLAG, "sensor", "s"),
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002311 new BitDescription(HistoryItem.STATE_GPS_ON_FLAG, "gps", "g"),
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002312 new BitDescription(HistoryItem.STATE_WIFI_FULL_LOCK_FLAG, "wifi_full_lock", "Wl"),
2313 new BitDescription(HistoryItem.STATE_WIFI_SCAN_FLAG, "wifi_scan", "Ws"),
2314 new BitDescription(HistoryItem.STATE_WIFI_MULTICAST_ON_FLAG, "wifi_multicast", "Wm"),
Dianne Hackborn0c820db2015-04-14 17:47:34 -07002315 new BitDescription(HistoryItem.STATE_WIFI_RADIO_ACTIVE_FLAG, "wifi_radio", "Wr"),
Dianne Hackborne13c4c02014-02-11 17:18:35 -08002316 new BitDescription(HistoryItem.STATE_MOBILE_RADIO_ACTIVE_FLAG, "mobile_radio", "Pr"),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08002317 new BitDescription(HistoryItem.STATE_PHONE_SCANNING_FLAG, "phone_scanning", "Psc"),
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002318 new BitDescription(HistoryItem.STATE_AUDIO_ON_FLAG, "audio", "a"),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08002319 new BitDescription(HistoryItem.STATE_SCREEN_ON_FLAG, "screen", "S"),
2320 new BitDescription(HistoryItem.STATE_BATTERY_PLUGGED_FLAG, "plugged", "BP"),
Mike Mac2f518a2017-09-19 16:06:03 -07002321 new BitDescription(HistoryItem.STATE_SCREEN_DOZE_FLAG, "screen_doze", "Sd"),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08002322 new BitDescription(HistoryItem.STATE_DATA_CONNECTION_MASK,
2323 HistoryItem.STATE_DATA_CONNECTION_SHIFT, "data_conn", "Pcn",
2324 DATA_CONNECTION_NAMES, DATA_CONNECTION_NAMES),
2325 new BitDescription(HistoryItem.STATE_PHONE_STATE_MASK,
2326 HistoryItem.STATE_PHONE_STATE_SHIFT, "phone_state", "Pst",
2327 new String[] {"in", "out", "emergency", "off"},
2328 new String[] {"in", "out", "em", "off"}),
Dianne Hackborn3251b902014-06-20 14:40:53 -07002329 new BitDescription(HistoryItem.STATE_PHONE_SIGNAL_STRENGTH_MASK,
2330 HistoryItem.STATE_PHONE_SIGNAL_STRENGTH_SHIFT, "phone_signal_strength", "Pss",
2331 SignalStrength.SIGNAL_STRENGTH_NAMES,
2332 new String[] { "0", "1", "2", "3", "4" }),
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08002333 new BitDescription(HistoryItem.STATE_BRIGHTNESS_MASK,
2334 HistoryItem.STATE_BRIGHTNESS_SHIFT, "brightness", "Sb",
2335 SCREEN_BRIGHTNESS_NAMES, SCREEN_BRIGHTNESS_SHORT_NAMES),
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07002336 };
Dianne Hackborn617f8772009-03-31 15:04:46 -07002337
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002338 public static final BitDescription[] HISTORY_STATE2_DESCRIPTIONS
2339 = new BitDescription[] {
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002340 new BitDescription(HistoryItem.STATE2_POWER_SAVE_FLAG, "power_save", "ps"),
Dianne Hackborn3251b902014-06-20 14:40:53 -07002341 new BitDescription(HistoryItem.STATE2_VIDEO_ON_FLAG, "video", "v"),
Dianne Hackborn0c820db2015-04-14 17:47:34 -07002342 new BitDescription(HistoryItem.STATE2_WIFI_RUNNING_FLAG, "wifi_running", "Ww"),
Dianne Hackborn3251b902014-06-20 14:40:53 -07002343 new BitDescription(HistoryItem.STATE2_WIFI_ON_FLAG, "wifi", "W"),
Dianne Hackbornabc7c492014-06-30 16:57:46 -07002344 new BitDescription(HistoryItem.STATE2_FLASHLIGHT_FLAG, "flashlight", "fl"),
Dianne Hackborn08c47a52015-10-15 12:38:14 -07002345 new BitDescription(HistoryItem.STATE2_DEVICE_IDLE_MASK,
2346 HistoryItem.STATE2_DEVICE_IDLE_SHIFT, "device_idle", "di",
2347 new String[] { "off", "light", "full", "???" },
2348 new String[] { "off", "light", "full", "???" }),
Dianne Hackborn0c820db2015-04-14 17:47:34 -07002349 new BitDescription(HistoryItem.STATE2_CHARGING_FLAG, "charging", "ch"),
2350 new BitDescription(HistoryItem.STATE2_PHONE_IN_CALL_FLAG, "phone_in_call", "Pcl"),
2351 new BitDescription(HistoryItem.STATE2_BLUETOOTH_ON_FLAG, "bluetooth", "b"),
Dianne Hackborn3251b902014-06-20 14:40:53 -07002352 new BitDescription(HistoryItem.STATE2_WIFI_SIGNAL_STRENGTH_MASK,
2353 HistoryItem.STATE2_WIFI_SIGNAL_STRENGTH_SHIFT, "wifi_signal_strength", "Wss",
2354 new String[] { "0", "1", "2", "3", "4" },
2355 new String[] { "0", "1", "2", "3", "4" }),
2356 new BitDescription(HistoryItem.STATE2_WIFI_SUPPL_STATE_MASK,
2357 HistoryItem.STATE2_WIFI_SUPPL_STATE_SHIFT, "wifi_suppl", "Wsp",
2358 WIFI_SUPPL_STATE_NAMES, WIFI_SUPPL_STATE_SHORT_NAMES),
Ruben Brunk6d2c3632015-05-26 17:32:16 -07002359 new BitDescription(HistoryItem.STATE2_CAMERA_FLAG, "camera", "ca"),
Adam Lesinski9f55cc72016-01-27 20:42:14 -08002360 new BitDescription(HistoryItem.STATE2_BLUETOOTH_SCAN_FLAG, "ble_scan", "bles"),
Siddharth Rayf5e796a2018-01-22 18:18:17 -08002361 new BitDescription(HistoryItem.STATE2_CELLULAR_HIGH_TX_POWER_FLAG,
2362 "cellular_high_tx_power", "Chtp"),
Siddharth Ray78ccaf52017-12-23 16:16:21 -08002363 new BitDescription(HistoryItem.STATE2_GPS_SIGNAL_QUALITY_MASK,
2364 HistoryItem.STATE2_GPS_SIGNAL_QUALITY_SHIFT, "gps_signal_quality", "Gss",
Siddharth Rayf5e796a2018-01-22 18:18:17 -08002365 new String[] { "poor", "good"}, new String[] { "poor", "good"})
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002366 };
2367
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08002368 public static final String[] HISTORY_EVENT_NAMES = new String[] {
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002369 "null", "proc", "fg", "top", "sync", "wake_lock_in", "job", "user", "userfg", "conn",
Kweku Adams134c59b2017-03-08 16:48:01 -08002370 "active", "pkginst", "pkgunin", "alarm", "stats", "pkginactive", "pkgactive",
2371 "tmpwhitelist", "screenwake", "wakeupap", "longwake", "est_capacity"
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08002372 };
2373
2374 public static final String[] HISTORY_EVENT_CHECKIN_NAMES = new String[] {
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002375 "Enl", "Epr", "Efg", "Etp", "Esy", "Ewl", "Ejb", "Eur", "Euf", "Ecn",
Dianne Hackborn280a64e2015-07-13 14:48:08 -07002376 "Eac", "Epi", "Epu", "Eal", "Est", "Eai", "Eaa", "Etw",
Adam Lesinski041d9172016-12-12 12:03:56 -08002377 "Esw", "Ewa", "Elw", "Eec"
2378 };
2379
2380 @FunctionalInterface
2381 public interface IntToString {
2382 String applyAsString(int val);
2383 }
2384
2385 private static final IntToString sUidToString = UserHandle::formatUid;
2386 private static final IntToString sIntToString = Integer::toString;
2387
2388 public static final IntToString[] HISTORY_EVENT_INT_FORMATTERS = new IntToString[] {
2389 sUidToString, sUidToString, sUidToString, sUidToString, sUidToString, sUidToString,
2390 sUidToString, sUidToString, sUidToString, sUidToString, sUidToString, sUidToString,
2391 sUidToString, sUidToString, sUidToString, sUidToString, sUidToString, sUidToString,
2392 sUidToString, sUidToString, sUidToString, sIntToString
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08002393 };
2394
Dianne Hackborn617f8772009-03-31 15:04:46 -07002395 /**
Ahmed ElArabawyf88571f2017-11-28 12:18:10 -08002396 * Returns total time for WiFi Multicast Wakelock timer.
2397 * Note that this may be different from the sum of per uid timer values.
2398 *
2399 * {@hide}
2400 */
2401 public abstract long getWifiMulticastWakelockTime(long elapsedRealtimeUs, int which);
2402
2403 /**
2404 * Returns total time for WiFi Multicast Wakelock timer
2405 * Note that this may be different from the sum of per uid timer values.
2406 *
2407 * {@hide}
2408 */
2409 public abstract int getWifiMulticastWakelockCount(int which);
2410
2411 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07002412 * Returns the time in microseconds that wifi has been on while the device was
The Android Open Source Project10592532009-03-18 17:39:46 -07002413 * running on battery.
Bookatzc8c44962017-05-11 12:12:54 -07002414 *
The Android Open Source Project10592532009-03-18 17:39:46 -07002415 * {@hide}
2416 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002417 public abstract long getWifiOnTime(long elapsedRealtimeUs, int which);
Eric Shienbroodd4c5f892009-03-24 18:13:20 -07002418
2419 /**
Siddharth Rayb50a6842017-12-14 15:15:28 -08002420 * Returns the time in microseconds that wifi has been active while the device was
2421 * running on battery.
2422 *
2423 * {@hide}
2424 */
2425 public abstract long getWifiActiveTime(long elapsedRealtimeUs, int which);
2426
2427 /**
Amith Yamasanieaeb6632009-06-03 15:16:10 -07002428 * Returns the time in microseconds that wifi has been on and the driver has
Eric Shienbroodd4c5f892009-03-24 18:13:20 -07002429 * been in the running state while the device was running on battery.
2430 *
2431 * {@hide}
2432 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002433 public abstract long getGlobalWifiRunningTime(long elapsedRealtimeUs, int which);
Eric Shienbroodd4c5f892009-03-24 18:13:20 -07002434
Dianne Hackbornca1bf212014-02-14 14:18:36 -08002435 public static final int WIFI_STATE_OFF = 0;
2436 public static final int WIFI_STATE_OFF_SCANNING = 1;
2437 public static final int WIFI_STATE_ON_NO_NETWORKS = 2;
2438 public static final int WIFI_STATE_ON_DISCONNECTED = 3;
2439 public static final int WIFI_STATE_ON_CONNECTED_STA = 4;
2440 public static final int WIFI_STATE_ON_CONNECTED_P2P = 5;
2441 public static final int WIFI_STATE_ON_CONNECTED_STA_P2P = 6;
2442 public static final int WIFI_STATE_SOFT_AP = 7;
2443
2444 static final String[] WIFI_STATE_NAMES = {
2445 "off", "scanning", "no_net", "disconn",
2446 "sta", "p2p", "sta_p2p", "soft_ap"
2447 };
2448
2449 public static final int NUM_WIFI_STATES = WIFI_STATE_SOFT_AP+1;
2450
2451 /**
2452 * Returns the time in microseconds that WiFi has been running in the given state.
2453 *
2454 * {@hide}
2455 */
2456 public abstract long getWifiStateTime(int wifiState,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002457 long elapsedRealtimeUs, int which);
Dianne Hackbornca1bf212014-02-14 14:18:36 -08002458
2459 /**
2460 * Returns the number of times that WiFi has entered the given state.
2461 *
2462 * {@hide}
2463 */
2464 public abstract int getWifiStateCount(int wifiState, int which);
2465
The Android Open Source Project10592532009-03-18 17:39:46 -07002466 /**
Kweku Adams87b19ec2017-10-09 12:40:03 -07002467 * Returns the {@link Timer} object that tracks the given WiFi state.
2468 *
2469 * {@hide}
2470 */
2471 public abstract Timer getWifiStateTimer(int wifiState);
2472
2473 /**
Dianne Hackborn3251b902014-06-20 14:40:53 -07002474 * Returns the time in microseconds that the wifi supplicant has been
2475 * in a given state.
2476 *
2477 * {@hide}
2478 */
2479 public abstract long getWifiSupplStateTime(int state, long elapsedRealtimeUs, int which);
2480
2481 /**
2482 * Returns the number of times that the wifi supplicant has transitioned
2483 * to a given state.
2484 *
2485 * {@hide}
2486 */
2487 public abstract int getWifiSupplStateCount(int state, int which);
2488
Kweku Adams87b19ec2017-10-09 12:40:03 -07002489 /**
2490 * Returns the {@link Timer} object that tracks the given wifi supplicant state.
2491 *
2492 * {@hide}
2493 */
2494 public abstract Timer getWifiSupplStateTimer(int state);
2495
Dianne Hackborn3251b902014-06-20 14:40:53 -07002496 public static final int NUM_WIFI_SIGNAL_STRENGTH_BINS = 5;
2497
2498 /**
2499 * Returns the time in microseconds that WIFI has been running with
2500 * the given signal strength.
2501 *
2502 * {@hide}
2503 */
2504 public abstract long getWifiSignalStrengthTime(int strengthBin,
2505 long elapsedRealtimeUs, int which);
2506
2507 /**
2508 * Returns the number of times WIFI has entered the given signal strength.
2509 *
2510 * {@hide}
2511 */
2512 public abstract int getWifiSignalStrengthCount(int strengthBin, int which);
2513
2514 /**
Kweku Adams87b19ec2017-10-09 12:40:03 -07002515 * Returns the {@link Timer} object that tracks the given WIFI signal strength.
2516 *
2517 * {@hide}
2518 */
2519 public abstract Timer getWifiSignalStrengthTimer(int strengthBin);
2520
2521 /**
Dianne Hackbornabc7c492014-06-30 16:57:46 -07002522 * Returns the time in microseconds that the flashlight has been on while the device was
2523 * running on battery.
2524 *
2525 * {@hide}
2526 */
2527 public abstract long getFlashlightOnTime(long elapsedRealtimeUs, int which);
2528
2529 /**
2530 * Returns the number of times that the flashlight has been turned on while the device was
2531 * running on battery.
2532 *
2533 * {@hide}
2534 */
2535 public abstract long getFlashlightOnCount(int which);
2536
Ruben Brunk5b1308f2015-06-03 18:49:27 -07002537 /**
2538 * Returns the time in microseconds that the camera has been on while the device was
2539 * running on battery.
2540 *
2541 * {@hide}
2542 */
2543 public abstract long getCameraOnTime(long elapsedRealtimeUs, int which);
2544
Adam Lesinski9f55cc72016-01-27 20:42:14 -08002545 /**
2546 * Returns the time in microseconds that bluetooth scans were running while the device was
2547 * on battery.
2548 *
2549 * {@hide}
2550 */
2551 public abstract long getBluetoothScanTime(long elapsedRealtimeUs, int which);
Ruben Brunk5b1308f2015-06-03 18:49:27 -07002552
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002553 public static final int NETWORK_MOBILE_RX_DATA = 0;
2554 public static final int NETWORK_MOBILE_TX_DATA = 1;
2555 public static final int NETWORK_WIFI_RX_DATA = 2;
2556 public static final int NETWORK_WIFI_TX_DATA = 3;
Adam Lesinski50e47602015-12-04 17:04:54 -08002557 public static final int NETWORK_BT_RX_DATA = 4;
2558 public static final int NETWORK_BT_TX_DATA = 5;
Amith Yamasani59fe8412017-03-03 16:28:52 -08002559 public static final int NETWORK_MOBILE_BG_RX_DATA = 6;
2560 public static final int NETWORK_MOBILE_BG_TX_DATA = 7;
2561 public static final int NETWORK_WIFI_BG_RX_DATA = 8;
2562 public static final int NETWORK_WIFI_BG_TX_DATA = 9;
2563 public static final int NUM_NETWORK_ACTIVITY_TYPES = NETWORK_WIFI_BG_TX_DATA + 1;
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07002564
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002565 public abstract long getNetworkActivityBytes(int type, int which);
2566 public abstract long getNetworkActivityPackets(int type, int which);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07002567
Adam Lesinskie08af192015-03-25 16:42:59 -07002568 /**
Adam Lesinski17390762015-04-10 13:17:47 -07002569 * Returns true if the BatteryStats object has detailed WiFi power reports.
Adam Lesinski21f76aa2016-01-25 12:27:06 -08002570 * When true, calling {@link #getWifiControllerActivity()} will yield the
Adam Lesinski17390762015-04-10 13:17:47 -07002571 * actual power data.
2572 */
2573 public abstract boolean hasWifiActivityReporting();
2574
2575 /**
Adam Lesinski21f76aa2016-01-25 12:27:06 -08002576 * Returns a {@link ControllerActivityCounter} which is an aggregate of the times spent
2577 * in various radio controller states, such as transmit, receive, and idle.
2578 * @return non-null {@link ControllerActivityCounter}
Adam Lesinskie08af192015-03-25 16:42:59 -07002579 */
Adam Lesinski21f76aa2016-01-25 12:27:06 -08002580 public abstract ControllerActivityCounter getWifiControllerActivity();
2581
2582 /**
2583 * Returns true if the BatteryStats object has detailed bluetooth power reports.
2584 * When true, calling {@link #getBluetoothControllerActivity()} will yield the
2585 * actual power data.
2586 */
2587 public abstract boolean hasBluetoothActivityReporting();
2588
2589 /**
2590 * Returns a {@link ControllerActivityCounter} which is an aggregate of the times spent
2591 * in various radio controller states, such as transmit, receive, and idle.
2592 * @return non-null {@link ControllerActivityCounter}
2593 */
2594 public abstract ControllerActivityCounter getBluetoothControllerActivity();
2595
2596 /**
2597 * Returns true if the BatteryStats object has detailed modem power reports.
2598 * When true, calling {@link #getModemControllerActivity()} will yield the
2599 * actual power data.
2600 */
2601 public abstract boolean hasModemActivityReporting();
2602
2603 /**
2604 * Returns a {@link ControllerActivityCounter} which is an aggregate of the times spent
2605 * in various radio controller states, such as transmit, receive, and idle.
2606 * @return non-null {@link ControllerActivityCounter}
2607 */
2608 public abstract ControllerActivityCounter getModemControllerActivity();
Adam Lesinski33dac552015-03-09 15:24:48 -07002609
The Android Open Source Project10592532009-03-18 17:39:46 -07002610 /**
Dianne Hackborn5f4a5f92014-01-24 16:59:34 -08002611 * Return the wall clock time when battery stats data collection started.
2612 */
2613 public abstract long getStartClockTime();
2614
2615 /**
Dianne Hackborncd0e3352014-08-07 17:08:09 -07002616 * Return platform version tag that we were running in when the battery stats started.
2617 */
2618 public abstract String getStartPlatformVersion();
2619
2620 /**
2621 * Return platform version tag that we were running in when the battery stats ended.
2622 */
2623 public abstract String getEndPlatformVersion();
2624
2625 /**
2626 * Return the internal version code of the parcelled format.
2627 */
2628 public abstract int getParcelVersion();
2629
2630 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002631 * Return whether we are currently running on battery.
2632 */
2633 public abstract boolean getIsOnBattery();
Bookatzc8c44962017-05-11 12:12:54 -07002634
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002635 /**
2636 * Returns a SparseArray containing the statistics for each uid.
2637 */
2638 public abstract SparseArray<? extends Uid> getUidStats();
2639
2640 /**
2641 * Returns the current battery uptime in microseconds.
2642 *
2643 * @param curTime the amount of elapsed realtime in microseconds.
2644 */
2645 public abstract long getBatteryUptime(long curTime);
2646
2647 /**
2648 * Returns the current battery realtime in microseconds.
2649 *
2650 * @param curTime the amount of elapsed realtime in microseconds.
2651 */
2652 public abstract long getBatteryRealtime(long curTime);
Bookatzc8c44962017-05-11 12:12:54 -07002653
The Android Open Source Project10592532009-03-18 17:39:46 -07002654 /**
Evan Millar633a1742009-04-02 16:36:33 -07002655 * Returns the battery percentage level at the last time the device was unplugged from power, or
Bookatzc8c44962017-05-11 12:12:54 -07002656 * the last time it booted on battery power.
The Android Open Source Project10592532009-03-18 17:39:46 -07002657 */
Evan Millar633a1742009-04-02 16:36:33 -07002658 public abstract int getDischargeStartLevel();
Bookatzc8c44962017-05-11 12:12:54 -07002659
The Android Open Source Project10592532009-03-18 17:39:46 -07002660 /**
Evan Millar633a1742009-04-02 16:36:33 -07002661 * Returns the current battery percentage level if we are in a discharge cycle, otherwise
2662 * returns the level at the last plug event.
The Android Open Source Project10592532009-03-18 17:39:46 -07002663 */
Evan Millar633a1742009-04-02 16:36:33 -07002664 public abstract int getDischargeCurrentLevel();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002665
2666 /**
Dianne Hackborn3bee5af82010-07-23 00:22:04 -07002667 * Get the amount the battery has discharged since the stats were
2668 * last reset after charging, as a lower-end approximation.
2669 */
2670 public abstract int getLowDischargeAmountSinceCharge();
2671
2672 /**
2673 * Get the amount the battery has discharged since the stats were
2674 * last reset after charging, as an upper-end approximation.
2675 */
2676 public abstract int getHighDischargeAmountSinceCharge();
2677
2678 /**
Dianne Hackborn40c87252014-03-19 16:55:40 -07002679 * Retrieve the discharge amount over the selected discharge period <var>which</var>.
2680 */
2681 public abstract int getDischargeAmount(int which);
2682
2683 /**
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08002684 * Get the amount the battery has discharged while the screen was on,
2685 * since the last time power was unplugged.
2686 */
2687 public abstract int getDischargeAmountScreenOn();
2688
2689 /**
2690 * Get the amount the battery has discharged while the screen was on,
2691 * since the last time the device was charged.
2692 */
2693 public abstract int getDischargeAmountScreenOnSinceCharge();
2694
2695 /**
2696 * Get the amount the battery has discharged while the screen was off,
2697 * since the last time power was unplugged.
2698 */
2699 public abstract int getDischargeAmountScreenOff();
2700
2701 /**
2702 * Get the amount the battery has discharged while the screen was off,
2703 * since the last time the device was charged.
2704 */
2705 public abstract int getDischargeAmountScreenOffSinceCharge();
2706
2707 /**
Kweku Adams87b19ec2017-10-09 12:40:03 -07002708 * Get the amount the battery has discharged while the screen was dozing,
Mike Mac2f518a2017-09-19 16:06:03 -07002709 * since the last time power was unplugged.
2710 */
2711 public abstract int getDischargeAmountScreenDoze();
2712
2713 /**
Kweku Adams87b19ec2017-10-09 12:40:03 -07002714 * Get the amount the battery has discharged while the screen was dozing,
Mike Mac2f518a2017-09-19 16:06:03 -07002715 * since the last time the device was charged.
2716 */
2717 public abstract int getDischargeAmountScreenDozeSinceCharge();
2718
2719 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002720 * Returns the total, last, or current battery uptime in microseconds.
2721 *
2722 * @param curTime the elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002723 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002724 */
2725 public abstract long computeBatteryUptime(long curTime, int which);
2726
2727 /**
2728 * Returns the total, last, or current battery realtime in microseconds.
2729 *
2730 * @param curTime the current elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002731 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002732 */
2733 public abstract long computeBatteryRealtime(long curTime, int which);
2734
2735 /**
Mike Mac2f518a2017-09-19 16:06:03 -07002736 * Returns the total, last, or current battery screen off/doze uptime in microseconds.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002737 *
2738 * @param curTime the elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002739 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002740 */
2741 public abstract long computeBatteryScreenOffUptime(long curTime, int which);
2742
2743 /**
Mike Mac2f518a2017-09-19 16:06:03 -07002744 * Returns the total, last, or current battery screen off/doze realtime in microseconds.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002745 *
2746 * @param curTime the current elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002747 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002748 */
2749 public abstract long computeBatteryScreenOffRealtime(long curTime, int which);
2750
2751 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002752 * Returns the total, last, or current uptime in microseconds.
2753 *
2754 * @param curTime the current elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002755 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002756 */
2757 public abstract long computeUptime(long curTime, int which);
2758
2759 /**
2760 * Returns the total, last, or current realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002761 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002762 * @param curTime the current elapsed realtime in microseconds.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002763 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002764 */
2765 public abstract long computeRealtime(long curTime, int which);
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002766
2767 /**
2768 * Compute an approximation for how much run time (in microseconds) is remaining on
2769 * the battery. Returns -1 if no time can be computed: either there is not
2770 * enough current data to make a decision, or the battery is currently
2771 * charging.
2772 *
2773 * @param curTime The current elepsed realtime in microseconds.
2774 */
2775 public abstract long computeBatteryTimeRemaining(long curTime);
2776
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07002777 // The part of a step duration that is the actual time.
2778 public static final long STEP_LEVEL_TIME_MASK = 0x000000ffffffffffL;
2779
2780 // Bits in a step duration that are the new battery level we are at.
2781 public static final long STEP_LEVEL_LEVEL_MASK = 0x0000ff0000000000L;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002782 public static final int STEP_LEVEL_LEVEL_SHIFT = 40;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07002783
2784 // Bits in a step duration that are the initial mode we were in at that step.
2785 public static final long STEP_LEVEL_INITIAL_MODE_MASK = 0x00ff000000000000L;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002786 public static final int STEP_LEVEL_INITIAL_MODE_SHIFT = 48;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07002787
2788 // Bits in a step duration that indicate which modes changed during that step.
2789 public static final long STEP_LEVEL_MODIFIED_MODE_MASK = 0xff00000000000000L;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002790 public static final int STEP_LEVEL_MODIFIED_MODE_SHIFT = 56;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07002791
2792 // Step duration mode: the screen is on, off, dozed, etc; value is Display.STATE_* - 1.
2793 public static final int STEP_LEVEL_MODE_SCREEN_STATE = 0x03;
2794
Santos Cordone94f0502017-02-24 12:31:20 -08002795 // The largest value for screen state that is tracked in battery states. Any values above
2796 // this should be mapped back to one of the tracked values before being tracked here.
2797 public static final int MAX_TRACKED_SCREEN_STATE = Display.STATE_DOZE_SUSPEND;
2798
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07002799 // Step duration mode: power save is on.
2800 public static final int STEP_LEVEL_MODE_POWER_SAVE = 0x04;
2801
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002802 // Step duration mode: device is currently in idle mode.
2803 public static final int STEP_LEVEL_MODE_DEVICE_IDLE = 0x08;
2804
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002805 public static final int[] STEP_LEVEL_MODES_OF_INTEREST = new int[] {
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 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE,
2810 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE,
2811 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE,
2812 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE,
2813 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE,
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002814 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_POWER_SAVE|STEP_LEVEL_MODE_DEVICE_IDLE,
2815 STEP_LEVEL_MODE_SCREEN_STATE|STEP_LEVEL_MODE_DEVICE_IDLE,
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002816 };
2817 public static final int[] STEP_LEVEL_MODE_VALUES = new int[] {
2818 (Display.STATE_OFF-1),
2819 (Display.STATE_OFF-1)|STEP_LEVEL_MODE_POWER_SAVE,
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002820 (Display.STATE_OFF-1)|STEP_LEVEL_MODE_DEVICE_IDLE,
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002821 (Display.STATE_ON-1),
2822 (Display.STATE_ON-1)|STEP_LEVEL_MODE_POWER_SAVE,
2823 (Display.STATE_DOZE-1),
2824 (Display.STATE_DOZE-1)|STEP_LEVEL_MODE_POWER_SAVE,
2825 (Display.STATE_DOZE_SUSPEND-1),
2826 (Display.STATE_DOZE_SUSPEND-1)|STEP_LEVEL_MODE_POWER_SAVE,
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002827 (Display.STATE_DOZE_SUSPEND-1)|STEP_LEVEL_MODE_DEVICE_IDLE,
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002828 };
2829 public static final String[] STEP_LEVEL_MODE_LABELS = new String[] {
2830 "screen off",
2831 "screen off power save",
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002832 "screen off device idle",
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002833 "screen on",
2834 "screen on power save",
2835 "screen doze",
2836 "screen doze power save",
2837 "screen doze-suspend",
2838 "screen doze-suspend power save",
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002839 "screen doze-suspend device idle",
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002840 };
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002841
2842 /**
Mike Mac2f518a2017-09-19 16:06:03 -07002843 * Return the amount of battery discharge while the screen was off, measured in
Adam Lesinski3ee3f632016-06-08 13:55:55 -07002844 * 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 getUahDischargeScreenOff(int which);
Mike Mac2f518a2017-09-19 16:06:03 -07002848
2849 /**
2850 * Return the amount of battery discharge while the screen was in doze mode, measured in
2851 * micro-Ampere-hours. This will be non-zero only if the device's battery has
2852 * a coulomb counter.
2853 */
Kweku Adams87b19ec2017-10-09 12:40:03 -07002854 public abstract long getUahDischargeScreenDoze(int which);
Mike Mac2f518a2017-09-19 16:06:03 -07002855
2856 /**
2857 * Return the amount of battery discharge measured in micro-Ampere-hours. This will be
2858 * non-zero only if the device's battery has a coulomb counter.
2859 */
Kweku Adams87b19ec2017-10-09 12:40:03 -07002860 public abstract long getUahDischarge(int which);
Adam Lesinski3ee3f632016-06-08 13:55:55 -07002861
2862 /**
Mike Ma15313c92017-11-15 17:58:21 -08002863 * @return the amount of battery discharge while the device is in light idle mode, measured in
2864 * micro-Ampere-hours.
2865 */
2866 public abstract long getUahDischargeLightDoze(int which);
2867
2868 /**
2869 * @return the amount of battery discharge while the device is in deep idle mode, measured in
2870 * micro-Ampere-hours.
2871 */
2872 public abstract long getUahDischargeDeepDoze(int which);
2873
2874 /**
Adam Lesinskif9b20a92016-06-17 17:30:01 -07002875 * Returns the estimated real battery capacity, which may be less than the capacity
2876 * declared by the PowerProfile.
2877 * @return The estimated battery capacity in mAh.
2878 */
2879 public abstract int getEstimatedBatteryCapacity();
2880
2881 /**
Jocelyn Dangc627d102017-04-14 13:15:14 -07002882 * @return The minimum learned battery capacity in uAh.
2883 */
2884 public abstract int getMinLearnedBatteryCapacity();
2885
2886 /**
2887 * @return The maximum learned battery capacity in uAh.
2888 */
2889 public abstract int getMaxLearnedBatteryCapacity() ;
2890
2891 /**
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002892 * Return the array of discharge step durations.
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002893 */
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002894 public abstract LevelStepTracker getDischargeLevelStepTracker();
2895
2896 /**
2897 * Return the array of daily discharge step durations.
2898 */
2899 public abstract LevelStepTracker getDailyDischargeLevelStepTracker();
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002900
2901 /**
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07002902 * Compute an approximation for how much time (in microseconds) remains until the battery
2903 * is fully charged. Returns -1 if no time can be computed: either there is not
2904 * enough current data to make a decision, or the battery is currently
2905 * discharging.
2906 *
2907 * @param curTime The current elepsed realtime in microseconds.
2908 */
2909 public abstract long computeChargeTimeRemaining(long curTime);
2910
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002911 /**
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002912 * Return the array of charge step durations.
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002913 */
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002914 public abstract LevelStepTracker getChargeLevelStepTracker();
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002915
2916 /**
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002917 * Return the array of daily charge step durations.
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002918 */
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08002919 public abstract LevelStepTracker getDailyChargeLevelStepTracker();
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07002920
Dianne Hackborn88e98df2015-03-23 13:29:14 -07002921 public abstract ArrayList<PackageChange> getDailyPackageChanges();
2922
Dianne Hackbornc3940bc2014-09-05 15:50:25 -07002923 public abstract Map<String, ? extends Timer> getWakeupReasonStats();
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002924
Evan Millarc64edde2009-04-18 12:26:32 -07002925 public abstract Map<String, ? extends Timer> getKernelWakelockStats();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002926
Bookatz50df7112017-08-04 14:53:26 -07002927 /**
2928 * Returns Timers tracking the total time of each Resource Power Manager state and voter.
2929 */
2930 public abstract Map<String, ? extends Timer> getRpmStats();
2931 /**
2932 * Returns Timers tracking the screen-off time of each Resource Power Manager state and voter.
2933 */
2934 public abstract Map<String, ? extends Timer> getScreenOffRpmStats();
2935
2936
James Carr2dd7e5e2016-07-20 18:48:39 -07002937 public abstract LongSparseArray<? extends Timer> getKernelMemoryStats();
2938
Dianne Hackborna7c837f2014-01-15 16:20:44 -08002939 public abstract void writeToParcelWithoutUids(Parcel out, int flags);
2940
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002941 private final static void formatTimeRaw(StringBuilder out, long seconds) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002942 long days = seconds / (60 * 60 * 24);
2943 if (days != 0) {
2944 out.append(days);
2945 out.append("d ");
2946 }
2947 long used = days * 60 * 60 * 24;
2948
2949 long hours = (seconds - used) / (60 * 60);
2950 if (hours != 0 || used != 0) {
2951 out.append(hours);
2952 out.append("h ");
2953 }
2954 used += hours * 60 * 60;
2955
2956 long mins = (seconds-used) / 60;
2957 if (mins != 0 || used != 0) {
2958 out.append(mins);
2959 out.append("m ");
2960 }
2961 used += mins * 60;
2962
2963 if (seconds != 0 || used != 0) {
2964 out.append(seconds-used);
2965 out.append("s ");
2966 }
2967 }
2968
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002969 public final static void formatTimeMs(StringBuilder sb, long time) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002970 long sec = time / 1000;
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002971 formatTimeRaw(sb, sec);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002972 sb.append(time - (sec * 1000));
2973 sb.append("ms ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002974 }
2975
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002976 public final static void formatTimeMsNoSpace(StringBuilder sb, long time) {
Dianne Hackbornd45665b2014-02-26 12:35:32 -08002977 long sec = time / 1000;
2978 formatTimeRaw(sb, sec);
2979 sb.append(time - (sec * 1000));
2980 sb.append("ms");
2981 }
2982
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002983 public final String formatRatioLocked(long num, long den) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002984 if (den == 0L) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08002985 return "--%";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002986 }
2987 float perc = ((float)num) / ((float)den) * 100;
2988 mFormatBuilder.setLength(0);
2989 mFormatter.format("%.1f%%", perc);
2990 return mFormatBuilder.toString();
2991 }
2992
Dianne Hackborn97ae5382014-03-05 16:43:25 -08002993 final String formatBytesLocked(long bytes) {
Evan Millar22ac0432009-03-31 11:33:18 -07002994 mFormatBuilder.setLength(0);
Bookatzc8c44962017-05-11 12:12:54 -07002995
Evan Millar22ac0432009-03-31 11:33:18 -07002996 if (bytes < BYTES_PER_KB) {
2997 return bytes + "B";
2998 } else if (bytes < BYTES_PER_MB) {
2999 mFormatter.format("%.2fKB", bytes / (double) BYTES_PER_KB);
3000 return mFormatBuilder.toString();
3001 } else if (bytes < BYTES_PER_GB){
3002 mFormatter.format("%.2fMB", bytes / (double) BYTES_PER_MB);
3003 return mFormatBuilder.toString();
3004 } else {
3005 mFormatter.format("%.2fGB", bytes / (double) BYTES_PER_GB);
3006 return mFormatBuilder.toString();
3007 }
3008 }
3009
Kweku Adams103351f2017-10-16 14:39:34 -07003010 private static long roundUsToMs(long timeUs) {
3011 return (timeUs + 500) / 1000;
3012 }
3013
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003014 private static long computeWakeLock(Timer timer, long elapsedRealtimeUs, int which) {
Dianne Hackbornc24ab862011-10-18 15:55:03 -07003015 if (timer != null) {
3016 // Convert from microseconds to milliseconds with rounding
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003017 long totalTimeMicros = timer.getTotalTimeLocked(elapsedRealtimeUs, which);
Dianne Hackbornc24ab862011-10-18 15:55:03 -07003018 long totalTimeMillis = (totalTimeMicros + 500) / 1000;
3019 return totalTimeMillis;
3020 }
3021 return 0;
3022 }
3023
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003024 /**
3025 *
3026 * @param sb a StringBuilder object.
3027 * @param timer a Timer object contining the wakelock times.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003028 * @param elapsedRealtimeUs the current on-battery time in microseconds.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003029 * @param name the name of the wakelock.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07003030 * @param which which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003031 * @param linePrefix a String to be prepended to each line of output.
3032 * @return the line prefix
3033 */
3034 private static final String printWakeLock(StringBuilder sb, Timer timer,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003035 long elapsedRealtimeUs, String name, int which, String linePrefix) {
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003036
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003037 if (timer != null) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003038 long totalTimeMillis = computeWakeLock(timer, elapsedRealtimeUs, which);
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003039
Evan Millarc64edde2009-04-18 12:26:32 -07003040 int count = timer.getCountLocked(which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003041 if (totalTimeMillis != 0) {
3042 sb.append(linePrefix);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07003043 formatTimeMs(sb, totalTimeMillis);
Dianne Hackborn81038902012-11-26 17:04:09 -08003044 if (name != null) {
3045 sb.append(name);
3046 sb.append(' ');
3047 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003048 sb.append('(');
3049 sb.append(count);
3050 sb.append(" times)");
Joe Onorato92fd23f2016-07-25 11:18:42 -07003051 final long maxDurationMs = timer.getMaxDurationMsLocked(elapsedRealtimeUs/1000);
3052 if (maxDurationMs >= 0) {
3053 sb.append(" max=");
3054 sb.append(maxDurationMs);
3055 }
Bookatz506a8182017-05-01 14:18:42 -07003056 // Put actual time if it is available and different from totalTimeMillis.
3057 final long totalDurMs = timer.getTotalDurationMsLocked(elapsedRealtimeUs/1000);
3058 if (totalDurMs > totalTimeMillis) {
3059 sb.append(" actual=");
3060 sb.append(totalDurMs);
3061 }
Joe Onorato92fd23f2016-07-25 11:18:42 -07003062 if (timer.isRunningLocked()) {
3063 final long currentMs = timer.getCurrentDurationMsLocked(elapsedRealtimeUs/1000);
3064 if (currentMs >= 0) {
3065 sb.append(" (running for ");
3066 sb.append(currentMs);
3067 sb.append("ms)");
3068 } else {
3069 sb.append(" (running)");
3070 }
3071 }
3072
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003073 return ", ";
3074 }
3075 }
3076 return linePrefix;
3077 }
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003078
3079 /**
Joe Onorato92fd23f2016-07-25 11:18:42 -07003080 * Prints details about a timer, if its total time was greater than 0.
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003081 *
3082 * @param pw a PrintWriter object to print to.
3083 * @param sb a StringBuilder object.
3084 * @param timer a Timer object contining the wakelock times.
Bookatz867c0d72017-03-07 18:23:42 -08003085 * @param rawRealtimeUs the current on-battery time in microseconds.
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003086 * @param which which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
3087 * @param prefix a String to be prepended to each line of output.
3088 * @param type the name of the timer.
Joe Onorato92fd23f2016-07-25 11:18:42 -07003089 * @return true if anything was printed.
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003090 */
3091 private static final boolean printTimer(PrintWriter pw, StringBuilder sb, Timer timer,
Joe Onorato92fd23f2016-07-25 11:18:42 -07003092 long rawRealtimeUs, int which, String prefix, String type) {
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003093 if (timer != null) {
3094 // Convert from microseconds to milliseconds with rounding
Joe Onorato92fd23f2016-07-25 11:18:42 -07003095 final long totalTimeMs = (timer.getTotalTimeLocked(
3096 rawRealtimeUs, which) + 500) / 1000;
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003097 final int count = timer.getCountLocked(which);
Joe Onorato92fd23f2016-07-25 11:18:42 -07003098 if (totalTimeMs != 0) {
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003099 sb.setLength(0);
3100 sb.append(prefix);
3101 sb.append(" ");
3102 sb.append(type);
3103 sb.append(": ");
Joe Onorato92fd23f2016-07-25 11:18:42 -07003104 formatTimeMs(sb, totalTimeMs);
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003105 sb.append("realtime (");
3106 sb.append(count);
3107 sb.append(" times)");
Joe Onorato92fd23f2016-07-25 11:18:42 -07003108 final long maxDurationMs = timer.getMaxDurationMsLocked(rawRealtimeUs/1000);
3109 if (maxDurationMs >= 0) {
3110 sb.append(" max=");
3111 sb.append(maxDurationMs);
3112 }
3113 if (timer.isRunningLocked()) {
3114 final long currentMs = timer.getCurrentDurationMsLocked(rawRealtimeUs/1000);
3115 if (currentMs >= 0) {
3116 sb.append(" (running for ");
3117 sb.append(currentMs);
3118 sb.append("ms)");
3119 } else {
3120 sb.append(" (running)");
3121 }
3122 }
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003123 pw.println(sb.toString());
3124 return true;
3125 }
3126 }
3127 return false;
3128 }
Bookatzc8c44962017-05-11 12:12:54 -07003129
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003130 /**
3131 * Checkin version of wakelock printer. Prints simple comma-separated list.
Bookatzc8c44962017-05-11 12:12:54 -07003132 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003133 * @param sb a StringBuilder object.
3134 * @param timer a Timer object contining the wakelock times.
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003135 * @param elapsedRealtimeUs the current time in microseconds.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003136 * @param name the name of the wakelock.
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07003137 * @param which which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003138 * @param linePrefix a String to be prepended to each line of output.
3139 * @return the line prefix
3140 */
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003141 private static final String printWakeLockCheckin(StringBuilder sb, Timer timer,
3142 long elapsedRealtimeUs, String name, int which, String linePrefix) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003143 long totalTimeMicros = 0;
3144 int count = 0;
Bookatz941d98f2017-05-02 19:25:18 -07003145 long max = 0;
3146 long current = 0;
3147 long totalDuration = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003148 if (timer != null) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003149 totalTimeMicros = timer.getTotalTimeLocked(elapsedRealtimeUs, which);
Bookatz506a8182017-05-01 14:18:42 -07003150 count = timer.getCountLocked(which);
Joe Onorato92fd23f2016-07-25 11:18:42 -07003151 current = timer.getCurrentDurationMsLocked(elapsedRealtimeUs/1000);
3152 max = timer.getMaxDurationMsLocked(elapsedRealtimeUs/1000);
Bookatz506a8182017-05-01 14:18:42 -07003153 totalDuration = timer.getTotalDurationMsLocked(elapsedRealtimeUs/1000);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003154 }
3155 sb.append(linePrefix);
3156 sb.append((totalTimeMicros + 500) / 1000); // microseconds to milliseconds with rounding
3157 sb.append(',');
Evan Millarc64edde2009-04-18 12:26:32 -07003158 sb.append(name != null ? name + "," : "");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003159 sb.append(count);
Joe Onorato92fd23f2016-07-25 11:18:42 -07003160 sb.append(',');
3161 sb.append(current);
3162 sb.append(',');
3163 sb.append(max);
Bookatz506a8182017-05-01 14:18:42 -07003164 // Partial, full, and window wakelocks are pooled, so totalDuration is meaningful (albeit
3165 // not always tracked). Kernel wakelocks (which have name == null) have no notion of
3166 // totalDuration independent of totalTimeMicros (since they are not pooled).
3167 if (name != null) {
3168 sb.append(',');
3169 sb.append(totalDuration);
3170 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003171 return ",";
3172 }
Bookatz506a8182017-05-01 14:18:42 -07003173
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003174 private static final void dumpLineHeader(PrintWriter pw, int uid, String category,
3175 String type) {
3176 pw.print(BATTERY_STATS_CHECKIN_VERSION);
3177 pw.print(',');
3178 pw.print(uid);
3179 pw.print(',');
3180 pw.print(category);
3181 pw.print(',');
3182 pw.print(type);
3183 }
3184
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003185 /**
3186 * Dump a comma-separated line of values for terse checkin mode.
Bookatzc8c44962017-05-11 12:12:54 -07003187 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003188 * @param pw the PageWriter to dump log to
3189 * @param category category of data (e.g. "total", "last", "unplugged", "current" )
3190 * @param type type of data (e.g. "wakelock", "sensor", "process", "apk" , "process", "network")
3191 * @param args type-dependent data arguments
3192 */
Bookatzc8c44962017-05-11 12:12:54 -07003193 private static final void dumpLine(PrintWriter pw, int uid, String category, String type,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003194 Object... args ) {
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003195 dumpLineHeader(pw, uid, category, type);
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003196 for (Object arg : args) {
Dianne Hackborn13ac0412013-06-25 19:34:49 -07003197 pw.print(',');
3198 pw.print(arg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003199 }
Dianne Hackborn13ac0412013-06-25 19:34:49 -07003200 pw.println();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003201 }
Dianne Hackbornd953c532014-08-16 18:17:38 -07003202
3203 /**
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003204 * Dump a given timer stat for terse checkin mode.
3205 *
3206 * @param pw the PageWriter to dump log to
3207 * @param uid the UID to log
3208 * @param category category of data (e.g. "total", "last", "unplugged", "current" )
3209 * @param type type of data (e.g. "wakelock", "sensor", "process", "apk" , "process", "network")
3210 * @param timer a {@link Timer} to dump stats for
3211 * @param rawRealtime the current elapsed realtime of the system in microseconds
3212 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT
3213 */
3214 private static final void dumpTimer(PrintWriter pw, int uid, String category, String type,
3215 Timer timer, long rawRealtime, int which) {
3216 if (timer != null) {
3217 // Convert from microseconds to milliseconds with rounding
Kweku Adams103351f2017-10-16 14:39:34 -07003218 final long totalTime = roundUsToMs(timer.getTotalTimeLocked(rawRealtime, which));
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003219 final int count = timer.getCountLocked(which);
Kweku Adams87b19ec2017-10-09 12:40:03 -07003220 if (totalTime != 0 || count != 0) {
Ruben Brunk6d2c3632015-05-26 17:32:16 -07003221 dumpLine(pw, uid, category, type, totalTime, count);
3222 }
3223 }
3224 }
3225
3226 /**
Kweku Adams2f73ecd2017-09-27 16:59:19 -07003227 * Dump a given timer stat to the proto stream.
3228 *
3229 * @param proto the ProtoOutputStream to log to
3230 * @param fieldId type of data, the field to save to (e.g. AggregatedBatteryStats.WAKELOCK)
3231 * @param timer a {@link Timer} to dump stats for
3232 * @param rawRealtimeUs the current elapsed realtime of the system in microseconds
3233 * @param which one of STATS_SINCE_CHARGED, STATS_SINCE_UNPLUGGED, or STATS_CURRENT
3234 */
3235 private static void dumpTimer(ProtoOutputStream proto, long fieldId,
Kweku Adams87b19ec2017-10-09 12:40:03 -07003236 Timer timer, long rawRealtimeUs, int which) {
Kweku Adams2f73ecd2017-09-27 16:59:19 -07003237 if (timer == null) {
3238 return;
3239 }
3240 // Convert from microseconds to milliseconds with rounding
Kweku Adams103351f2017-10-16 14:39:34 -07003241 final long timeMs = roundUsToMs(timer.getTotalTimeLocked(rawRealtimeUs, which));
Kweku Adams2f73ecd2017-09-27 16:59:19 -07003242 final int count = timer.getCountLocked(which);
Kweku Adams103351f2017-10-16 14:39:34 -07003243 final long maxDurationMs = timer.getMaxDurationMsLocked(rawRealtimeUs / 1000);
3244 final long curDurationMs = timer.getCurrentDurationMsLocked(rawRealtimeUs / 1000);
3245 final long totalDurationMs = timer.getTotalDurationMsLocked(rawRealtimeUs / 1000);
3246 if (timeMs != 0 || count != 0 || maxDurationMs != -1 || curDurationMs != -1
3247 || totalDurationMs != -1) {
Kweku Adams2f73ecd2017-09-27 16:59:19 -07003248 final long token = proto.start(fieldId);
Kweku Adams103351f2017-10-16 14:39:34 -07003249 proto.write(TimerProto.DURATION_MS, timeMs);
Kweku Adams2f73ecd2017-09-27 16:59:19 -07003250 proto.write(TimerProto.COUNT, count);
Kweku Adams103351f2017-10-16 14:39:34 -07003251 // These values will be -1 for timers that don't implement the functionality.
3252 if (maxDurationMs != -1) {
3253 proto.write(TimerProto.MAX_DURATION_MS, maxDurationMs);
3254 }
3255 if (curDurationMs != -1) {
3256 proto.write(TimerProto.CURRENT_DURATION_MS, curDurationMs);
3257 }
3258 if (totalDurationMs != -1) {
3259 proto.write(TimerProto.TOTAL_DURATION_MS, totalDurationMs);
3260 }
Kweku Adams2f73ecd2017-09-27 16:59:19 -07003261 proto.end(token);
3262 }
3263 }
3264
3265 /**
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003266 * Checks if the ControllerActivityCounter has any data worth dumping.
3267 */
3268 private static boolean controllerActivityHasData(ControllerActivityCounter counter, int which) {
3269 if (counter == null) {
3270 return false;
3271 }
3272
3273 if (counter.getIdleTimeCounter().getCountLocked(which) != 0
3274 || counter.getRxTimeCounter().getCountLocked(which) != 0
3275 || counter.getPowerCounter().getCountLocked(which) != 0) {
3276 return true;
3277 }
3278
3279 for (LongCounter c : counter.getTxTimeCounters()) {
3280 if (c.getCountLocked(which) != 0) {
3281 return true;
3282 }
3283 }
3284 return false;
3285 }
3286
3287 /**
3288 * Dumps the ControllerActivityCounter if it has any data worth dumping.
3289 * The order of the arguments in the final check in line is:
3290 *
3291 * idle, rx, power, tx...
3292 *
3293 * where tx... is one or more transmit level times.
3294 */
3295 private static final void dumpControllerActivityLine(PrintWriter pw, int uid, String category,
3296 String type,
3297 ControllerActivityCounter counter,
3298 int which) {
3299 if (!controllerActivityHasData(counter, which)) {
3300 return;
3301 }
3302
3303 dumpLineHeader(pw, uid, category, type);
3304 pw.print(",");
3305 pw.print(counter.getIdleTimeCounter().getCountLocked(which));
3306 pw.print(",");
3307 pw.print(counter.getRxTimeCounter().getCountLocked(which));
3308 pw.print(",");
3309 pw.print(counter.getPowerCounter().getCountLocked(which) / (1000 * 60 * 60));
3310 for (LongCounter c : counter.getTxTimeCounters()) {
3311 pw.print(",");
3312 pw.print(c.getCountLocked(which));
3313 }
3314 pw.println();
3315 }
3316
Kweku Adams2f73ecd2017-09-27 16:59:19 -07003317 /**
3318 * Dumps the ControllerActivityCounter if it has any data worth dumping.
3319 */
3320 private static void dumpControllerActivityProto(ProtoOutputStream proto, long fieldId,
3321 ControllerActivityCounter counter,
3322 int which) {
3323 if (!controllerActivityHasData(counter, which)) {
3324 return;
3325 }
3326
3327 final long cToken = proto.start(fieldId);
3328
3329 proto.write(ControllerActivityProto.IDLE_DURATION_MS,
3330 counter.getIdleTimeCounter().getCountLocked(which));
3331 proto.write(ControllerActivityProto.RX_DURATION_MS,
3332 counter.getRxTimeCounter().getCountLocked(which));
3333 proto.write(ControllerActivityProto.POWER_MAH,
3334 counter.getPowerCounter().getCountLocked(which) / (1000 * 60 * 60));
3335
3336 long tToken;
3337 LongCounter[] txCounters = counter.getTxTimeCounters();
3338 for (int i = 0; i < txCounters.length; ++i) {
3339 LongCounter c = txCounters[i];
3340 tToken = proto.start(ControllerActivityProto.TX);
3341 proto.write(ControllerActivityProto.TxLevel.LEVEL, i);
3342 proto.write(ControllerActivityProto.TxLevel.DURATION_MS, c.getCountLocked(which));
3343 proto.end(tToken);
3344 }
3345
3346 proto.end(cToken);
3347 }
3348
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003349 private final void printControllerActivityIfInteresting(PrintWriter pw, StringBuilder sb,
3350 String prefix, String controllerName,
3351 ControllerActivityCounter counter,
3352 int which) {
3353 if (controllerActivityHasData(counter, which)) {
3354 printControllerActivity(pw, sb, prefix, controllerName, counter, which);
3355 }
3356 }
3357
3358 private final void printControllerActivity(PrintWriter pw, StringBuilder sb, String prefix,
3359 String controllerName,
3360 ControllerActivityCounter counter, int which) {
3361 final long idleTimeMs = counter.getIdleTimeCounter().getCountLocked(which);
3362 final long rxTimeMs = counter.getRxTimeCounter().getCountLocked(which);
3363 final long powerDrainMaMs = counter.getPowerCounter().getCountLocked(which);
Siddharth Ray3c648c42017-10-02 17:30:58 -07003364 // Battery real time
3365 final long totalControllerActivityTimeMs
3366 = computeBatteryRealtime(SystemClock.elapsedRealtime() * 1000, which) / 1000;
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003367 long totalTxTimeMs = 0;
3368 for (LongCounter txState : counter.getTxTimeCounters()) {
3369 totalTxTimeMs += txState.getCountLocked(which);
3370 }
Siddharth Ray3c648c42017-10-02 17:30:58 -07003371 final long sleepTimeMs
3372 = totalControllerActivityTimeMs - (idleTimeMs + rxTimeMs + totalTxTimeMs);
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003373
Siddharth Rayb50a6842017-12-14 15:15:28 -08003374 if (controllerName.equals(WIFI_CONTROLLER_NAME)) {
3375 final long scanTimeMs = counter.getScanTimeCounter().getCountLocked(which);
3376 sb.setLength(0);
3377 sb.append(prefix);
3378 sb.append(" ");
3379 sb.append(controllerName);
3380 sb.append(" Scan time: ");
3381 formatTimeMs(sb, scanTimeMs);
3382 sb.append("(");
3383 sb.append(formatRatioLocked(scanTimeMs, totalControllerActivityTimeMs));
3384 sb.append(")");
3385 pw.println(sb.toString());
3386 }
3387
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003388 sb.setLength(0);
3389 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07003390 sb.append(" ");
3391 sb.append(controllerName);
3392 sb.append(" Sleep time: ");
3393 formatTimeMs(sb, sleepTimeMs);
3394 sb.append("(");
3395 sb.append(formatRatioLocked(sleepTimeMs, totalControllerActivityTimeMs));
3396 sb.append(")");
3397 pw.println(sb.toString());
3398
3399 sb.setLength(0);
3400 sb.append(prefix);
3401 sb.append(" ");
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003402 sb.append(controllerName);
3403 sb.append(" Idle time: ");
3404 formatTimeMs(sb, idleTimeMs);
3405 sb.append("(");
Siddharth Ray3c648c42017-10-02 17:30:58 -07003406 sb.append(formatRatioLocked(idleTimeMs, totalControllerActivityTimeMs));
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003407 sb.append(")");
3408 pw.println(sb.toString());
3409
3410 sb.setLength(0);
3411 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07003412 sb.append(" ");
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003413 sb.append(controllerName);
3414 sb.append(" Rx time: ");
3415 formatTimeMs(sb, rxTimeMs);
3416 sb.append("(");
Siddharth Ray3c648c42017-10-02 17:30:58 -07003417 sb.append(formatRatioLocked(rxTimeMs, totalControllerActivityTimeMs));
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003418 sb.append(")");
3419 pw.println(sb.toString());
3420
3421 sb.setLength(0);
3422 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07003423 sb.append(" ");
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003424 sb.append(controllerName);
3425 sb.append(" Tx time: ");
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003426
Siddharth Ray3c648c42017-10-02 17:30:58 -07003427 String [] powerLevel;
3428 switch(controllerName) {
Siddharth Rayb50a6842017-12-14 15:15:28 -08003429 case CELLULAR_CONTROLLER_NAME:
Siddharth Ray3c648c42017-10-02 17:30:58 -07003430 powerLevel = new String[] {
3431 " less than 0dBm: ",
3432 " 0dBm to 8dBm: ",
3433 " 8dBm to 15dBm: ",
3434 " 15dBm to 20dBm: ",
3435 " above 20dBm: "};
3436 break;
3437 default:
3438 powerLevel = new String[] {"[0]", "[1]", "[2]", "[3]", "[4]"};
3439 break;
3440 }
3441 final int numTxLvls = Math.min(counter.getTxTimeCounters().length, powerLevel.length);
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003442 if (numTxLvls > 1) {
Siddharth Ray3c648c42017-10-02 17:30:58 -07003443 pw.println(sb.toString());
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003444 for (int lvl = 0; lvl < numTxLvls; lvl++) {
3445 final long txLvlTimeMs = counter.getTxTimeCounters()[lvl].getCountLocked(which);
3446 sb.setLength(0);
3447 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07003448 sb.append(" ");
3449 sb.append(powerLevel[lvl]);
3450 sb.append(" ");
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003451 formatTimeMs(sb, txLvlTimeMs);
3452 sb.append("(");
Siddharth Ray3c648c42017-10-02 17:30:58 -07003453 sb.append(formatRatioLocked(txLvlTimeMs, totalControllerActivityTimeMs));
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003454 sb.append(")");
3455 pw.println(sb.toString());
3456 }
Siddharth Ray3c648c42017-10-02 17:30:58 -07003457 } else {
3458 final long txLvlTimeMs = counter.getTxTimeCounters()[0].getCountLocked(which);
3459 formatTimeMs(sb, txLvlTimeMs);
3460 sb.append("(");
3461 sb.append(formatRatioLocked(txLvlTimeMs, totalControllerActivityTimeMs));
3462 sb.append(")");
3463 pw.println(sb.toString());
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003464 }
3465
Siddharth Ray3c648c42017-10-02 17:30:58 -07003466 if (powerDrainMaMs > 0) {
3467 sb.setLength(0);
3468 sb.append(prefix);
3469 sb.append(" ");
3470 sb.append(controllerName);
3471 sb.append(" Battery drain: ").append(
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003472 BatteryStatsHelper.makemAh(powerDrainMaMs / (double) (1000*60*60)));
Siddharth Ray3c648c42017-10-02 17:30:58 -07003473 sb.append("mAh");
3474 pw.println(sb.toString());
3475 }
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003476 }
3477
3478 /**
Dianne Hackbornd953c532014-08-16 18:17:38 -07003479 * Temporary for settings.
3480 */
3481 public final void dumpCheckinLocked(Context context, PrintWriter pw, int which, int reqUid) {
3482 dumpCheckinLocked(context, pw, which, reqUid, BatteryStatsHelper.checkWifiOnly(context));
3483 }
3484
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003485 /**
3486 * Checkin server version of dump to produce more compact, computer-readable log.
Bookatzc8c44962017-05-11 12:12:54 -07003487 *
Kweku Adams87b19ec2017-10-09 12:40:03 -07003488 * NOTE: all times are expressed in microseconds, unless specified otherwise.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003489 */
Dianne Hackbornd953c532014-08-16 18:17:38 -07003490 public final void dumpCheckinLocked(Context context, PrintWriter pw, int which, int reqUid,
3491 boolean wifiOnly) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003492 final long rawUptime = SystemClock.uptimeMillis() * 1000;
Kweku Adams87b19ec2017-10-09 12:40:03 -07003493 final long rawRealtimeMs = SystemClock.elapsedRealtime();
3494 final long rawRealtime = rawRealtimeMs * 1000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003495 final long batteryUptime = getBatteryUptime(rawUptime);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003496 final long whichBatteryUptime = computeBatteryUptime(rawUptime, which);
3497 final long whichBatteryRealtime = computeBatteryRealtime(rawRealtime, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003498 final long whichBatteryScreenOffUptime = computeBatteryScreenOffUptime(rawUptime, which);
3499 final long whichBatteryScreenOffRealtime = computeBatteryScreenOffRealtime(rawRealtime,
3500 which);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003501 final long totalRealtime = computeRealtime(rawRealtime, which);
3502 final long totalUptime = computeUptime(rawUptime, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003503 final long screenOnTime = getScreenOnTime(rawRealtime, which);
Mike Mac2f518a2017-09-19 16:06:03 -07003504 final long screenDozeTime = getScreenDozeTime(rawRealtime, which);
Jeff Browne95c3cd2014-05-02 16:59:26 -07003505 final long interactiveTime = getInteractiveTime(rawRealtime, which);
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07003506 final long powerSaveModeEnabledTime = getPowerSaveModeEnabledTime(rawRealtime, which);
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003507 final long deviceIdleModeLightTime = getDeviceIdleModeTime(DEVICE_IDLE_MODE_LIGHT,
3508 rawRealtime, which);
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07003509 final long deviceIdleModeFullTime = getDeviceIdleModeTime(DEVICE_IDLE_MODE_DEEP,
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003510 rawRealtime, which);
3511 final long deviceLightIdlingTime = getDeviceIdlingTime(DEVICE_IDLE_MODE_LIGHT,
3512 rawRealtime, which);
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07003513 final long deviceIdlingTime = getDeviceIdlingTime(DEVICE_IDLE_MODE_DEEP,
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003514 rawRealtime, which);
Dianne Hackborn1e01d162014-12-04 17:46:42 -08003515 final int connChanges = getNumConnectivityChange(which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003516 final long phoneOnTime = getPhoneOnTime(rawRealtime, which);
Kweku Adams87b19ec2017-10-09 12:40:03 -07003517 final long dischargeCount = getUahDischarge(which);
3518 final long dischargeScreenOffCount = getUahDischargeScreenOff(which);
3519 final long dischargeScreenDozeCount = getUahDischargeScreenDoze(which);
Mike Ma15313c92017-11-15 17:58:21 -08003520 final long dischargeLightDozeCount = getUahDischargeLightDoze(which);
3521 final long dischargeDeepDozeCount = getUahDischargeDeepDoze(which);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07003522
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003523 final StringBuilder sb = new StringBuilder(128);
Bookatzc8c44962017-05-11 12:12:54 -07003524
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003525 final SparseArray<? extends Uid> uidStats = getUidStats();
Evan Millar22ac0432009-03-31 11:33:18 -07003526 final int NU = uidStats.size();
Bookatzc8c44962017-05-11 12:12:54 -07003527
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003528 final String category = STAT_NAMES[which];
Jeff Sharkey3e013e82013-04-25 14:48:19 -07003529
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003530 // Dump "battery" stat
Jocelyn Dangc627d102017-04-14 13:15:14 -07003531 dumpLine(pw, 0 /* uid */, category, BATTERY_DATA,
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07003532 which == STATS_SINCE_CHARGED ? getStartCount() : "N/A",
Dianne Hackborn617f8772009-03-31 15:04:46 -07003533 whichBatteryRealtime / 1000, whichBatteryUptime / 1000,
Dianne Hackborn5f4a5f92014-01-24 16:59:34 -08003534 totalRealtime / 1000, totalUptime / 1000,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003535 getStartClockTime(),
Adam Lesinskif9b20a92016-06-17 17:30:01 -07003536 whichBatteryScreenOffRealtime / 1000, whichBatteryScreenOffUptime / 1000,
Jocelyn Dangc627d102017-04-14 13:15:14 -07003537 getEstimatedBatteryCapacity(),
Mike Mac2f518a2017-09-19 16:06:03 -07003538 getMinLearnedBatteryCapacity(), getMaxLearnedBatteryCapacity(),
3539 screenDozeTime / 1000);
Adam Lesinski67c134f2016-06-10 15:15:08 -07003540
Bookatzc8c44962017-05-11 12:12:54 -07003541
Ahmed ElArabawyf88571f2017-11-28 12:18:10 -08003542 // Calculate wakelock times across all uids.
Evan Millar22ac0432009-03-31 11:33:18 -07003543 long fullWakeLockTimeTotal = 0;
3544 long partialWakeLockTimeTotal = 0;
Bookatzc8c44962017-05-11 12:12:54 -07003545
Evan Millar22ac0432009-03-31 11:33:18 -07003546 for (int iu = 0; iu < NU; iu++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003547 final Uid u = uidStats.valueAt(iu);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07003548
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003549 final ArrayMap<String, ? extends BatteryStats.Uid.Wakelock> wakelocks
3550 = u.getWakelockStats();
3551 for (int iw=wakelocks.size()-1; iw>=0; iw--) {
3552 final Uid.Wakelock wl = wakelocks.valueAt(iw);
Evan Millar22ac0432009-03-31 11:33:18 -07003553
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003554 final Timer fullWakeTimer = wl.getWakeTime(WAKE_TYPE_FULL);
3555 if (fullWakeTimer != null) {
3556 fullWakeLockTimeTotal += fullWakeTimer.getTotalTimeLocked(rawRealtime,
3557 which);
3558 }
3559
3560 final Timer partialWakeTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
3561 if (partialWakeTimer != null) {
3562 partialWakeLockTimeTotal += partialWakeTimer.getTotalTimeLocked(
3563 rawRealtime, which);
Evan Millar22ac0432009-03-31 11:33:18 -07003564 }
3565 }
3566 }
Adam Lesinskie283d332015-04-16 12:29:25 -07003567
3568 // Dump network stats
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003569 final long mobileRxTotalBytes = getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which);
3570 final long mobileTxTotalBytes = getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which);
3571 final long wifiRxTotalBytes = getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which);
3572 final long wifiTxTotalBytes = getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which);
3573 final long mobileRxTotalPackets = getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which);
3574 final long mobileTxTotalPackets = getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which);
3575 final long wifiRxTotalPackets = getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which);
3576 final long wifiTxTotalPackets = getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which);
Adam Lesinski9f55cc72016-01-27 20:42:14 -08003577 final long btRxTotalBytes = getNetworkActivityBytes(NETWORK_BT_RX_DATA, which);
3578 final long btTxTotalBytes = getNetworkActivityBytes(NETWORK_BT_TX_DATA, which);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003579 dumpLine(pw, 0 /* uid */, category, GLOBAL_NETWORK_DATA,
3580 mobileRxTotalBytes, mobileTxTotalBytes, wifiRxTotalBytes, wifiTxTotalBytes,
Adam Lesinski9f55cc72016-01-27 20:42:14 -08003581 mobileRxTotalPackets, mobileTxTotalPackets, wifiRxTotalPackets, wifiTxTotalPackets,
3582 btRxTotalBytes, btTxTotalBytes);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003583
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003584 // Dump Modem controller stats
3585 dumpControllerActivityLine(pw, 0 /* uid */, category, GLOBAL_MODEM_CONTROLLER_DATA,
3586 getModemControllerActivity(), which);
3587
Adam Lesinskie283d332015-04-16 12:29:25 -07003588 // Dump Wifi controller stats
3589 final long wifiOnTime = getWifiOnTime(rawRealtime, which);
3590 final long wifiRunningTime = getGlobalWifiRunningTime(rawRealtime, which);
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003591 dumpLine(pw, 0 /* uid */, category, GLOBAL_WIFI_DATA, wifiOnTime / 1000,
Adam Lesinski2208e742016-02-19 12:53:31 -08003592 wifiRunningTime / 1000, /* legacy fields follow, keep at 0 */ 0, 0, 0);
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003593
3594 dumpControllerActivityLine(pw, 0 /* uid */, category, GLOBAL_WIFI_CONTROLLER_DATA,
3595 getWifiControllerActivity(), which);
Adam Lesinskie283d332015-04-16 12:29:25 -07003596
3597 // Dump Bluetooth controller stats
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003598 dumpControllerActivityLine(pw, 0 /* uid */, category, GLOBAL_BLUETOOTH_CONTROLLER_DATA,
3599 getBluetoothControllerActivity(), which);
Adam Lesinskie283d332015-04-16 12:29:25 -07003600
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003601 // Dump misc stats
3602 dumpLine(pw, 0 /* uid */, category, MISC_DATA,
Adam Lesinskie283d332015-04-16 12:29:25 -07003603 screenOnTime / 1000, phoneOnTime / 1000,
Ashish Sharma213bb2f2014-07-07 17:14:52 -07003604 fullWakeLockTimeTotal / 1000, partialWakeLockTimeTotal / 1000,
Adam Lesinskie283d332015-04-16 12:29:25 -07003605 getMobileRadioActiveTime(rawRealtime, which) / 1000,
Ashish Sharma213bb2f2014-07-07 17:14:52 -07003606 getMobileRadioActiveAdjustedTime(which) / 1000, interactiveTime / 1000,
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003607 powerSaveModeEnabledTime / 1000, connChanges, deviceIdleModeFullTime / 1000,
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07003608 getDeviceIdleModeCount(DEVICE_IDLE_MODE_DEEP, which), deviceIdlingTime / 1000,
3609 getDeviceIdlingCount(DEVICE_IDLE_MODE_DEEP, which),
Adam Lesinski782327b2015-07-30 16:36:29 -07003610 getMobileRadioActiveCount(which),
Dianne Hackborn08c47a52015-10-15 12:38:14 -07003611 getMobileRadioActiveUnknownTime(which) / 1000, deviceIdleModeLightTime / 1000,
3612 getDeviceIdleModeCount(DEVICE_IDLE_MODE_LIGHT, which), deviceLightIdlingTime / 1000,
3613 getDeviceIdlingCount(DEVICE_IDLE_MODE_LIGHT, which),
3614 getLongestDeviceIdleModeTime(DEVICE_IDLE_MODE_LIGHT),
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07003615 getLongestDeviceIdleModeTime(DEVICE_IDLE_MODE_DEEP));
Bookatzc8c44962017-05-11 12:12:54 -07003616
Dianne Hackborn617f8772009-03-31 15:04:46 -07003617 // Dump screen brightness stats
3618 Object[] args = new Object[NUM_SCREEN_BRIGHTNESS_BINS];
3619 for (int i=0; i<NUM_SCREEN_BRIGHTNESS_BINS; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003620 args[i] = getScreenBrightnessTime(i, rawRealtime, which) / 1000;
Dianne Hackborn617f8772009-03-31 15:04:46 -07003621 }
3622 dumpLine(pw, 0 /* uid */, category, SCREEN_BRIGHTNESS_DATA, args);
Bookatzc8c44962017-05-11 12:12:54 -07003623
Dianne Hackborn627bba72009-03-24 22:32:56 -07003624 // Dump signal strength stats
Wink Saville52840902011-02-18 12:40:47 -08003625 args = new Object[SignalStrength.NUM_SIGNAL_STRENGTH_BINS];
3626 for (int i=0; i<SignalStrength.NUM_SIGNAL_STRENGTH_BINS; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003627 args[i] = getPhoneSignalStrengthTime(i, rawRealtime, which) / 1000;
Dianne Hackborn627bba72009-03-24 22:32:56 -07003628 }
Dianne Hackborn617f8772009-03-31 15:04:46 -07003629 dumpLine(pw, 0 /* uid */, category, SIGNAL_STRENGTH_TIME_DATA, args);
Amith Yamasanif37447b2009-10-08 18:28:01 -07003630 dumpLine(pw, 0 /* uid */, category, SIGNAL_SCANNING_TIME_DATA,
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003631 getPhoneSignalScanningTime(rawRealtime, which) / 1000);
Wink Saville52840902011-02-18 12:40:47 -08003632 for (int i=0; i<SignalStrength.NUM_SIGNAL_STRENGTH_BINS; i++) {
Dianne Hackborn617f8772009-03-31 15:04:46 -07003633 args[i] = getPhoneSignalStrengthCount(i, which);
3634 }
3635 dumpLine(pw, 0 /* uid */, category, SIGNAL_STRENGTH_COUNT_DATA, args);
Dianne Hackborne13c4c02014-02-11 17:18:35 -08003636
Dianne Hackborn627bba72009-03-24 22:32:56 -07003637 // Dump network type stats
3638 args = new Object[NUM_DATA_CONNECTION_TYPES];
3639 for (int i=0; i<NUM_DATA_CONNECTION_TYPES; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003640 args[i] = getPhoneDataConnectionTime(i, rawRealtime, which) / 1000;
Dianne Hackborn627bba72009-03-24 22:32:56 -07003641 }
Dianne Hackborn617f8772009-03-31 15:04:46 -07003642 dumpLine(pw, 0 /* uid */, category, DATA_CONNECTION_TIME_DATA, args);
3643 for (int i=0; i<NUM_DATA_CONNECTION_TYPES; i++) {
3644 args[i] = getPhoneDataConnectionCount(i, which);
3645 }
3646 dumpLine(pw, 0 /* uid */, category, DATA_CONNECTION_COUNT_DATA, args);
Dianne Hackbornca1bf212014-02-14 14:18:36 -08003647
3648 // Dump wifi state stats
3649 args = new Object[NUM_WIFI_STATES];
3650 for (int i=0; i<NUM_WIFI_STATES; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003651 args[i] = getWifiStateTime(i, rawRealtime, which) / 1000;
Dianne Hackbornca1bf212014-02-14 14:18:36 -08003652 }
3653 dumpLine(pw, 0 /* uid */, category, WIFI_STATE_TIME_DATA, args);
3654 for (int i=0; i<NUM_WIFI_STATES; i++) {
3655 args[i] = getWifiStateCount(i, which);
3656 }
3657 dumpLine(pw, 0 /* uid */, category, WIFI_STATE_COUNT_DATA, args);
3658
Dianne Hackborn3251b902014-06-20 14:40:53 -07003659 // Dump wifi suppl state stats
3660 args = new Object[NUM_WIFI_SUPPL_STATES];
3661 for (int i=0; i<NUM_WIFI_SUPPL_STATES; i++) {
3662 args[i] = getWifiSupplStateTime(i, rawRealtime, which) / 1000;
3663 }
3664 dumpLine(pw, 0 /* uid */, category, WIFI_SUPPL_STATE_TIME_DATA, args);
3665 for (int i=0; i<NUM_WIFI_SUPPL_STATES; i++) {
3666 args[i] = getWifiSupplStateCount(i, which);
3667 }
3668 dumpLine(pw, 0 /* uid */, category, WIFI_SUPPL_STATE_COUNT_DATA, args);
3669
3670 // Dump wifi signal strength stats
3671 args = new Object[NUM_WIFI_SIGNAL_STRENGTH_BINS];
3672 for (int i=0; i<NUM_WIFI_SIGNAL_STRENGTH_BINS; i++) {
3673 args[i] = getWifiSignalStrengthTime(i, rawRealtime, which) / 1000;
3674 }
3675 dumpLine(pw, 0 /* uid */, category, WIFI_SIGNAL_STRENGTH_TIME_DATA, args);
3676 for (int i=0; i<NUM_WIFI_SIGNAL_STRENGTH_BINS; i++) {
3677 args[i] = getWifiSignalStrengthCount(i, which);
3678 }
3679 dumpLine(pw, 0 /* uid */, category, WIFI_SIGNAL_STRENGTH_COUNT_DATA, args);
3680
Ahmed ElArabawyddd09692017-10-30 17:58:29 -07003681 // Dump Multicast total stats
Ahmed ElArabawyf88571f2017-11-28 12:18:10 -08003682 final long multicastWakeLockTimeTotalMicros =
3683 getWifiMulticastWakelockTime(rawRealtime, which);
3684 final int multicastWakeLockCountTotal = getWifiMulticastWakelockCount(which);
Ahmed ElArabawyddd09692017-10-30 17:58:29 -07003685 dumpLine(pw, 0 /* uid */, category, WIFI_MULTICAST_TOTAL_DATA,
3686 multicastWakeLockTimeTotalMicros / 1000,
3687 multicastWakeLockCountTotal);
3688
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07003689 if (which == STATS_SINCE_UNPLUGGED) {
Dianne Hackborne13c4c02014-02-11 17:18:35 -08003690 dumpLine(pw, 0 /* uid */, category, BATTERY_LEVEL_DATA, getDischargeStartLevel(),
Evan Millar633a1742009-04-02 16:36:33 -07003691 getDischargeCurrentLevel());
The Android Open Source Project10592532009-03-18 17:39:46 -07003692 }
Bookatzc8c44962017-05-11 12:12:54 -07003693
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08003694 if (which == STATS_SINCE_UNPLUGGED) {
3695 dumpLine(pw, 0 /* uid */, category, BATTERY_DISCHARGE_DATA,
3696 getDischargeStartLevel()-getDischargeCurrentLevel(),
3697 getDischargeStartLevel()-getDischargeCurrentLevel(),
Adam Lesinski67c134f2016-06-10 15:15:08 -07003698 getDischargeAmountScreenOn(), getDischargeAmountScreenOff(),
Mike Mac2f518a2017-09-19 16:06:03 -07003699 dischargeCount / 1000, dischargeScreenOffCount / 1000,
Mike Ma15313c92017-11-15 17:58:21 -08003700 getDischargeAmountScreenDoze(), dischargeScreenDozeCount / 1000,
3701 dischargeLightDozeCount / 1000, dischargeDeepDozeCount / 1000);
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08003702 } else {
3703 dumpLine(pw, 0 /* uid */, category, BATTERY_DISCHARGE_DATA,
3704 getLowDischargeAmountSinceCharge(), getHighDischargeAmountSinceCharge(),
Dianne Hackborncd0e3352014-08-07 17:08:09 -07003705 getDischargeAmountScreenOnSinceCharge(),
Adam Lesinski67c134f2016-06-10 15:15:08 -07003706 getDischargeAmountScreenOffSinceCharge(),
Mike Mac2f518a2017-09-19 16:06:03 -07003707 dischargeCount / 1000, dischargeScreenOffCount / 1000,
Mike Ma15313c92017-11-15 17:58:21 -08003708 getDischargeAmountScreenDozeSinceCharge(), dischargeScreenDozeCount / 1000,
3709 dischargeLightDozeCount / 1000, dischargeDeepDozeCount / 1000);
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08003710 }
Bookatzc8c44962017-05-11 12:12:54 -07003711
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003712 if (reqUid < 0) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003713 final Map<String, ? extends Timer> kernelWakelocks = getKernelWakelockStats();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003714 if (kernelWakelocks.size() > 0) {
Dianne Hackborna1bd7922014-03-21 11:07:11 -07003715 for (Map.Entry<String, ? extends Timer> ent : kernelWakelocks.entrySet()) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003716 sb.setLength(0);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08003717 printWakeLockCheckin(sb, ent.getValue(), rawRealtime, null, which, "");
Kweku Adamse0dd9c12017-03-08 08:12:15 -08003718 dumpLine(pw, 0 /* uid */, category, KERNEL_WAKELOCK_DATA,
3719 "\"" + ent.getKey() + "\"", sb.toString());
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003720 }
Evan Millarc64edde2009-04-18 12:26:32 -07003721 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003722 final Map<String, ? extends Timer> wakeupReasons = getWakeupReasonStats();
Dianne Hackborna1bd7922014-03-21 11:07:11 -07003723 if (wakeupReasons.size() > 0) {
Dianne Hackbornc3940bc2014-09-05 15:50:25 -07003724 for (Map.Entry<String, ? extends Timer> ent : wakeupReasons.entrySet()) {
3725 // Not doing the regular wake lock formatting to remain compatible
3726 // with the old checkin format.
3727 long totalTimeMicros = ent.getValue().getTotalTimeLocked(rawRealtime, which);
3728 int count = ent.getValue().getCountLocked(which);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07003729 dumpLine(pw, 0 /* uid */, category, WAKEUP_REASON_DATA,
Dianne Hackbornc3940bc2014-09-05 15:50:25 -07003730 "\"" + ent.getKey() + "\"", (totalTimeMicros + 500) / 1000, count);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07003731 }
3732 }
Evan Millarc64edde2009-04-18 12:26:32 -07003733 }
Bookatzc8c44962017-05-11 12:12:54 -07003734
Bookatz50df7112017-08-04 14:53:26 -07003735 final Map<String, ? extends Timer> rpmStats = getRpmStats();
3736 final Map<String, ? extends Timer> screenOffRpmStats = getScreenOffRpmStats();
3737 if (rpmStats.size() > 0) {
3738 for (Map.Entry<String, ? extends Timer> ent : rpmStats.entrySet()) {
3739 sb.setLength(0);
3740 Timer totalTimer = ent.getValue();
3741 long timeMs = (totalTimer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000;
3742 int count = totalTimer.getCountLocked(which);
3743 Timer screenOffTimer = screenOffRpmStats.get(ent.getKey());
3744 long screenOffTimeMs = screenOffTimer != null
3745 ? (screenOffTimer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000 : 0;
3746 int screenOffCount = screenOffTimer != null
3747 ? screenOffTimer.getCountLocked(which) : 0;
Bookatz82b341172017-09-07 19:06:08 -07003748 if (SCREEN_OFF_RPM_STATS_ENABLED) {
3749 dumpLine(pw, 0 /* uid */, category, RESOURCE_POWER_MANAGER_DATA,
3750 "\"" + ent.getKey() + "\"", timeMs, count, screenOffTimeMs,
3751 screenOffCount);
3752 } else {
3753 dumpLine(pw, 0 /* uid */, category, RESOURCE_POWER_MANAGER_DATA,
3754 "\"" + ent.getKey() + "\"", timeMs, count);
3755 }
Bookatz50df7112017-08-04 14:53:26 -07003756 }
3757 }
3758
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003759 final BatteryStatsHelper helper = new BatteryStatsHelper(context, false, wifiOnly);
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003760 helper.create(this);
3761 helper.refreshStats(which, UserHandle.USER_ALL);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003762 final List<BatterySipper> sippers = helper.getUsageList();
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003763 if (sippers != null && sippers.size() > 0) {
3764 dumpLine(pw, 0 /* uid */, category, POWER_USE_SUMMARY_DATA,
3765 BatteryStatsHelper.makemAh(helper.getPowerProfile().getBatteryCapacity()),
Dianne Hackborn099bc622014-01-22 13:39:16 -08003766 BatteryStatsHelper.makemAh(helper.getComputedPower()),
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003767 BatteryStatsHelper.makemAh(helper.getMinDrainedPower()),
3768 BatteryStatsHelper.makemAh(helper.getMaxDrainedPower()));
Kweku Adams87b19ec2017-10-09 12:40:03 -07003769 int uid = 0;
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003770 for (int i=0; i<sippers.size(); i++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003771 final BatterySipper bs = sippers.get(i);
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003772 String label;
3773 switch (bs.drainType) {
3774 case IDLE:
3775 label="idle";
3776 break;
3777 case CELL:
3778 label="cell";
3779 break;
3780 case PHONE:
3781 label="phone";
3782 break;
3783 case WIFI:
3784 label="wifi";
3785 break;
3786 case BLUETOOTH:
3787 label="blue";
3788 break;
3789 case SCREEN:
3790 label="scrn";
3791 break;
Dianne Hackbornabc7c492014-06-30 16:57:46 -07003792 case FLASHLIGHT:
3793 label="flashlight";
3794 break;
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003795 case APP:
3796 uid = bs.uidObj.getUid();
3797 label = "uid";
3798 break;
3799 case USER:
3800 uid = UserHandle.getUid(bs.userId, 0);
3801 label = "user";
3802 break;
3803 case UNACCOUNTED:
3804 label = "unacc";
3805 break;
3806 case OVERCOUNTED:
3807 label = "over";
3808 break;
Ruben Brunk5b1308f2015-06-03 18:49:27 -07003809 case CAMERA:
3810 label = "camera";
3811 break;
Kweku Adams87b19ec2017-10-09 12:40:03 -07003812 case MEMORY:
3813 label = "memory";
3814 break;
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003815 default:
3816 label = "???";
3817 }
3818 dumpLine(pw, uid, category, POWER_USE_ITEM_DATA, label,
Bookatz17d7d9d2017-06-08 14:50:46 -07003819 BatteryStatsHelper.makemAh(bs.totalPowerMah),
3820 bs.shouldHide ? 1 : 0,
3821 BatteryStatsHelper.makemAh(bs.screenPowerMah),
3822 BatteryStatsHelper.makemAh(bs.proportionalSmearMah));
Dianne Hackborna7c837f2014-01-15 16:20:44 -08003823 }
3824 }
3825
Sudheer Shanka9b735c52017-05-09 18:26:18 -07003826 final long[] cpuFreqs = getCpuFreqs();
3827 if (cpuFreqs != null) {
3828 sb.setLength(0);
3829 for (int i = 0; i < cpuFreqs.length; ++i) {
3830 sb.append((i == 0 ? "" : ",") + cpuFreqs[i]);
3831 }
3832 dumpLine(pw, 0 /* uid */, category, GLOBAL_CPU_FREQ_DATA, sb.toString());
3833 }
3834
Kweku Adams87b19ec2017-10-09 12:40:03 -07003835 // Dump stats per UID.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003836 for (int iu = 0; iu < NU; iu++) {
3837 final int uid = uidStats.keyAt(iu);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003838 if (reqUid >= 0 && uid != reqUid) {
3839 continue;
3840 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003841 final Uid u = uidStats.valueAt(iu);
Adam Lesinskie283d332015-04-16 12:29:25 -07003842
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003843 // Dump Network stats per uid, if any
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003844 final long mobileBytesRx = u.getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which);
3845 final long mobileBytesTx = u.getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which);
3846 final long wifiBytesRx = u.getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which);
3847 final long wifiBytesTx = u.getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which);
3848 final long mobilePacketsRx = u.getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which);
3849 final long mobilePacketsTx = u.getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which);
3850 final long mobileActiveTime = u.getMobileRadioActiveTime(which);
3851 final int mobileActiveCount = u.getMobileRadioActiveCount(which);
Adam Lesinski5f056f62016-07-14 16:56:08 -07003852 final long mobileWakeup = u.getMobileRadioApWakeupCount(which);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003853 final long wifiPacketsRx = u.getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which);
3854 final long wifiPacketsTx = u.getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which);
Adam Lesinski5f056f62016-07-14 16:56:08 -07003855 final long wifiWakeup = u.getWifiRadioApWakeupCount(which);
Adam Lesinski9f55cc72016-01-27 20:42:14 -08003856 final long btBytesRx = u.getNetworkActivityBytes(NETWORK_BT_RX_DATA, which);
3857 final long btBytesTx = u.getNetworkActivityBytes(NETWORK_BT_TX_DATA, which);
Amith Yamasani59fe8412017-03-03 16:28:52 -08003858 // Background data transfers
3859 final long mobileBytesBgRx = u.getNetworkActivityBytes(NETWORK_MOBILE_BG_RX_DATA,
3860 which);
3861 final long mobileBytesBgTx = u.getNetworkActivityBytes(NETWORK_MOBILE_BG_TX_DATA,
3862 which);
3863 final long wifiBytesBgRx = u.getNetworkActivityBytes(NETWORK_WIFI_BG_RX_DATA, which);
3864 final long wifiBytesBgTx = u.getNetworkActivityBytes(NETWORK_WIFI_BG_TX_DATA, which);
3865 final long mobilePacketsBgRx = u.getNetworkActivityPackets(NETWORK_MOBILE_BG_RX_DATA,
3866 which);
3867 final long mobilePacketsBgTx = u.getNetworkActivityPackets(NETWORK_MOBILE_BG_TX_DATA,
3868 which);
3869 final long wifiPacketsBgRx = u.getNetworkActivityPackets(NETWORK_WIFI_BG_RX_DATA,
3870 which);
3871 final long wifiPacketsBgTx = u.getNetworkActivityPackets(NETWORK_WIFI_BG_TX_DATA,
3872 which);
3873
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003874 if (mobileBytesRx > 0 || mobileBytesTx > 0 || wifiBytesRx > 0 || wifiBytesTx > 0
3875 || mobilePacketsRx > 0 || mobilePacketsTx > 0 || wifiPacketsRx > 0
Adam Lesinski9f55cc72016-01-27 20:42:14 -08003876 || wifiPacketsTx > 0 || mobileActiveTime > 0 || mobileActiveCount > 0
Amith Yamasani59fe8412017-03-03 16:28:52 -08003877 || btBytesRx > 0 || btBytesTx > 0 || mobileWakeup > 0 || wifiWakeup > 0
3878 || mobileBytesBgRx > 0 || mobileBytesBgTx > 0 || wifiBytesBgRx > 0
3879 || wifiBytesBgTx > 0
3880 || mobilePacketsBgRx > 0 || mobilePacketsBgTx > 0 || wifiPacketsBgRx > 0
3881 || wifiPacketsBgTx > 0) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08003882 dumpLine(pw, uid, category, NETWORK_DATA, mobileBytesRx, mobileBytesTx,
3883 wifiBytesRx, wifiBytesTx,
3884 mobilePacketsRx, mobilePacketsTx,
Dianne Hackbornd45665b2014-02-26 12:35:32 -08003885 wifiPacketsRx, wifiPacketsTx,
Adam Lesinski9f55cc72016-01-27 20:42:14 -08003886 mobileActiveTime, mobileActiveCount,
Amith Yamasani59fe8412017-03-03 16:28:52 -08003887 btBytesRx, btBytesTx, mobileWakeup, wifiWakeup,
3888 mobileBytesBgRx, mobileBytesBgTx, wifiBytesBgRx, wifiBytesBgTx,
3889 mobilePacketsBgRx, mobilePacketsBgTx, wifiPacketsBgRx, wifiPacketsBgTx
3890 );
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07003891 }
3892
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003893 // Dump modem controller data, per UID.
3894 dumpControllerActivityLine(pw, uid, category, MODEM_CONTROLLER_DATA,
3895 u.getModemControllerActivity(), which);
3896
3897 // Dump Wifi controller data, per UID.
Adam Lesinskie283d332015-04-16 12:29:25 -07003898 final long fullWifiLockOnTime = u.getFullWifiLockTime(rawRealtime, which);
3899 final long wifiScanTime = u.getWifiScanTime(rawRealtime, which);
3900 final int wifiScanCount = u.getWifiScanCount(which);
Bookatz867c0d72017-03-07 18:23:42 -08003901 final int wifiScanCountBg = u.getWifiScanBackgroundCount(which);
3902 // Note that 'ActualTime' are unpooled and always since reset (regardless of 'which')
Bookatzce49aca2017-04-03 09:47:05 -07003903 final long wifiScanActualTimeMs = (u.getWifiScanActualTime(rawRealtime) + 500) / 1000;
3904 final long wifiScanActualTimeMsBg = (u.getWifiScanBackgroundTime(rawRealtime) + 500)
3905 / 1000;
Adam Lesinskie283d332015-04-16 12:29:25 -07003906 final long uidWifiRunningTime = u.getWifiRunningTime(rawRealtime, which);
Dianne Hackborn62793e42015-03-09 11:15:41 -07003907 if (fullWifiLockOnTime != 0 || wifiScanTime != 0 || wifiScanCount != 0
Bookatzce49aca2017-04-03 09:47:05 -07003908 || wifiScanCountBg != 0 || wifiScanActualTimeMs != 0
3909 || wifiScanActualTimeMsBg != 0 || uidWifiRunningTime != 0) {
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003910 dumpLine(pw, uid, category, WIFI_DATA, fullWifiLockOnTime, wifiScanTime,
3911 uidWifiRunningTime, wifiScanCount,
Bookatz867c0d72017-03-07 18:23:42 -08003912 /* legacy fields follow, keep at 0 */ 0, 0, 0,
Bookatzce49aca2017-04-03 09:47:05 -07003913 wifiScanCountBg, wifiScanActualTimeMs, wifiScanActualTimeMsBg);
The Android Open Source Project10592532009-03-18 17:39:46 -07003914 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003915
Adam Lesinski21f76aa2016-01-25 12:27:06 -08003916 dumpControllerActivityLine(pw, uid, category, WIFI_CONTROLLER_DATA,
3917 u.getWifiControllerActivity(), which);
3918
Bookatz867c0d72017-03-07 18:23:42 -08003919 final Timer bleTimer = u.getBluetoothScanTimer();
3920 if (bleTimer != null) {
3921 // Convert from microseconds to milliseconds with rounding
3922 final long totalTime = (bleTimer.getTotalTimeLocked(rawRealtime, which) + 500)
3923 / 1000;
3924 if (totalTime != 0) {
3925 final int count = bleTimer.getCountLocked(which);
3926 final Timer bleTimerBg = u.getBluetoothScanBackgroundTimer();
3927 final int countBg = bleTimerBg != null ? bleTimerBg.getCountLocked(which) : 0;
Bookatz867c0d72017-03-07 18:23:42 -08003928 // 'actualTime' are unpooled and always since reset (regardless of 'which')
3929 final long actualTime = bleTimer.getTotalDurationMsLocked(rawRealtimeMs);
3930 final long actualTimeBg = bleTimerBg != null ?
3931 bleTimerBg.getTotalDurationMsLocked(rawRealtimeMs) : 0;
Bookatzb1f04f32017-05-19 13:57:32 -07003932 // Result counters
Bookatz956f36bf2017-04-28 09:48:17 -07003933 final int resultCount = u.getBluetoothScanResultCounter() != null ?
3934 u.getBluetoothScanResultCounter().getCountLocked(which) : 0;
Bookatzb1f04f32017-05-19 13:57:32 -07003935 final int resultCountBg = u.getBluetoothScanResultBgCounter() != null ?
3936 u.getBluetoothScanResultBgCounter().getCountLocked(which) : 0;
3937 // Unoptimized scan timer. Unpooled and since reset (regardless of 'which').
3938 final Timer unoptimizedScanTimer = u.getBluetoothUnoptimizedScanTimer();
3939 final long unoptimizedScanTotalTime = unoptimizedScanTimer != null ?
3940 unoptimizedScanTimer.getTotalDurationMsLocked(rawRealtimeMs) : 0;
3941 final long unoptimizedScanMaxTime = unoptimizedScanTimer != null ?
3942 unoptimizedScanTimer.getMaxDurationMsLocked(rawRealtimeMs) : 0;
3943 // Unoptimized bg scan timer. Unpooled and since reset (regardless of 'which').
3944 final Timer unoptimizedScanTimerBg =
3945 u.getBluetoothUnoptimizedScanBackgroundTimer();
3946 final long unoptimizedScanTotalTimeBg = unoptimizedScanTimerBg != null ?
3947 unoptimizedScanTimerBg.getTotalDurationMsLocked(rawRealtimeMs) : 0;
3948 final long unoptimizedScanMaxTimeBg = unoptimizedScanTimerBg != null ?
3949 unoptimizedScanTimerBg.getMaxDurationMsLocked(rawRealtimeMs) : 0;
3950
Bookatz867c0d72017-03-07 18:23:42 -08003951 dumpLine(pw, uid, category, BLUETOOTH_MISC_DATA, totalTime, count,
Bookatzb1f04f32017-05-19 13:57:32 -07003952 countBg, actualTime, actualTimeBg, resultCount, resultCountBg,
3953 unoptimizedScanTotalTime, unoptimizedScanTotalTimeBg,
3954 unoptimizedScanMaxTime, unoptimizedScanMaxTimeBg);
Bookatz867c0d72017-03-07 18:23:42 -08003955 }
3956 }
Adam Lesinskid9b99be2016-03-30 16:58:51 -07003957
Adam Lesinski9f55cc72016-01-27 20:42:14 -08003958 dumpControllerActivityLine(pw, uid, category, BLUETOOTH_CONTROLLER_DATA,
3959 u.getBluetoothControllerActivity(), which);
3960
Dianne Hackborn617f8772009-03-31 15:04:46 -07003961 if (u.hasUserActivity()) {
3962 args = new Object[Uid.NUM_USER_ACTIVITY_TYPES];
3963 boolean hasData = false;
3964 for (int i=0; i<Uid.NUM_USER_ACTIVITY_TYPES; i++) {
3965 int val = u.getUserActivityCount(i, which);
3966 args[i] = val;
3967 if (val != 0) hasData = true;
3968 }
3969 if (hasData) {
Ashish Sharmacba12152014-07-07 17:14:52 -07003970 dumpLine(pw, uid /* uid */, category, USER_ACTIVITY_DATA, args);
Dianne Hackborn617f8772009-03-31 15:04:46 -07003971 }
3972 }
Bookatzc8c44962017-05-11 12:12:54 -07003973
3974 if (u.getAggregatedPartialWakelockTimer() != null) {
3975 final Timer timer = u.getAggregatedPartialWakelockTimer();
Bookatz6d799932017-06-07 12:30:07 -07003976 // Times are since reset (regardless of 'which')
3977 final long totTimeMs = timer.getTotalDurationMsLocked(rawRealtimeMs);
Bookatzc8c44962017-05-11 12:12:54 -07003978 final Timer bgTimer = timer.getSubTimer();
3979 final long bgTimeMs = bgTimer != null ?
Bookatz6d799932017-06-07 12:30:07 -07003980 bgTimer.getTotalDurationMsLocked(rawRealtimeMs) : 0;
Bookatzc8c44962017-05-11 12:12:54 -07003981 dumpLine(pw, uid, category, AGGREGATED_WAKELOCK_DATA, totTimeMs, bgTimeMs);
3982 }
3983
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003984 final ArrayMap<String, ? extends Uid.Wakelock> wakelocks = u.getWakelockStats();
3985 for (int iw=wakelocks.size()-1; iw>=0; iw--) {
3986 final Uid.Wakelock wl = wakelocks.valueAt(iw);
3987 String linePrefix = "";
3988 sb.setLength(0);
3989 linePrefix = printWakeLockCheckin(sb, wl.getWakeTime(WAKE_TYPE_FULL),
3990 rawRealtime, "f", which, linePrefix);
Bookatz5b5ec322017-05-26 09:40:38 -07003991 final Timer pTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
3992 linePrefix = printWakeLockCheckin(sb, pTimer,
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003993 rawRealtime, "p", which, linePrefix);
Bookatz5b5ec322017-05-26 09:40:38 -07003994 linePrefix = printWakeLockCheckin(sb, pTimer != null ? pTimer.getSubTimer() : null,
3995 rawRealtime, "bp", which, linePrefix);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07003996 linePrefix = printWakeLockCheckin(sb, wl.getWakeTime(WAKE_TYPE_WINDOW),
3997 rawRealtime, "w", which, linePrefix);
3998
Kweku Adams103351f2017-10-16 14:39:34 -07003999 // Only log if we had at least one wakelock...
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004000 if (sb.length() > 0) {
4001 String name = wakelocks.keyAt(iw);
4002 if (name.indexOf(',') >= 0) {
4003 name = name.replace(',', '_');
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004004 }
Yi Jin02483362017-08-04 11:30:44 -07004005 if (name.indexOf('\n') >= 0) {
4006 name = name.replace('\n', '_');
4007 }
4008 if (name.indexOf('\r') >= 0) {
4009 name = name.replace('\r', '_');
4010 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004011 dumpLine(pw, uid, category, WAKELOCK_DATA, name, sb.toString());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004012 }
4013 }
Dianne Hackborn61659e52014-07-09 16:13:01 -07004014
Ahmed ElArabawyddd09692017-10-30 17:58:29 -07004015 // WiFi Multicast Wakelock Statistics
4016 final Timer mcTimer = u.getMulticastWakelockStats();
4017 if (mcTimer != null) {
4018 final long totalMcWakelockTimeMs =
4019 mcTimer.getTotalTimeLocked(rawRealtime, which) / 1000 ;
4020 final int countMcWakelock = mcTimer.getCountLocked(which);
4021 if(totalMcWakelockTimeMs > 0) {
4022 dumpLine(pw, uid, category, WIFI_MULTICAST_DATA,
4023 totalMcWakelockTimeMs, countMcWakelock);
4024 }
4025 }
4026
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004027 final ArrayMap<String, ? extends Timer> syncs = u.getSyncStats();
4028 for (int isy=syncs.size()-1; isy>=0; isy--) {
4029 final Timer timer = syncs.valueAt(isy);
4030 // Convert from microseconds to milliseconds with rounding
4031 final long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000;
4032 final int count = timer.getCountLocked(which);
Bookatz2bffb5b2017-04-13 11:59:33 -07004033 final Timer bgTimer = timer.getSubTimer();
4034 final long bgTime = bgTimer != null ?
Bookatz6d799932017-06-07 12:30:07 -07004035 bgTimer.getTotalDurationMsLocked(rawRealtimeMs) : -1;
Bookatz2bffb5b2017-04-13 11:59:33 -07004036 final int bgCount = bgTimer != null ? bgTimer.getCountLocked(which) : -1;
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004037 if (totalTime != 0) {
Kweku Adamse0dd9c12017-03-08 08:12:15 -08004038 dumpLine(pw, uid, category, SYNC_DATA, "\"" + syncs.keyAt(isy) + "\"",
Bookatz2bffb5b2017-04-13 11:59:33 -07004039 totalTime, count, bgTime, bgCount);
Dianne Hackbornfdb19562014-07-11 16:03:36 -07004040 }
4041 }
4042
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004043 final ArrayMap<String, ? extends Timer> jobs = u.getJobStats();
4044 for (int ij=jobs.size()-1; ij>=0; ij--) {
4045 final Timer timer = jobs.valueAt(ij);
4046 // Convert from microseconds to milliseconds with rounding
4047 final long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000;
4048 final int count = timer.getCountLocked(which);
Bookatzaa4594a2017-03-24 12:39:56 -07004049 final Timer bgTimer = timer.getSubTimer();
4050 final long bgTime = bgTimer != null ?
Bookatz6d799932017-06-07 12:30:07 -07004051 bgTimer.getTotalDurationMsLocked(rawRealtimeMs) : -1;
Bookatzaa4594a2017-03-24 12:39:56 -07004052 final int bgCount = bgTimer != null ? bgTimer.getCountLocked(which) : -1;
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004053 if (totalTime != 0) {
Kweku Adamse0dd9c12017-03-08 08:12:15 -08004054 dumpLine(pw, uid, category, JOB_DATA, "\"" + jobs.keyAt(ij) + "\"",
Bookatzaa4594a2017-03-24 12:39:56 -07004055 totalTime, count, bgTime, bgCount);
Dianne Hackbornfdb19562014-07-11 16:03:36 -07004056 }
4057 }
4058
Dianne Hackborn94326cb2017-06-28 16:17:20 -07004059 final ArrayMap<String, SparseIntArray> completions = u.getJobCompletionStats();
4060 for (int ic=completions.size()-1; ic>=0; ic--) {
4061 SparseIntArray types = completions.valueAt(ic);
4062 if (types != null) {
4063 dumpLine(pw, uid, category, JOB_COMPLETION_DATA,
4064 "\"" + completions.keyAt(ic) + "\"",
4065 types.get(JobParameters.REASON_CANCELED, 0),
4066 types.get(JobParameters.REASON_CONSTRAINTS_NOT_SATISFIED, 0),
4067 types.get(JobParameters.REASON_PREEMPT, 0),
4068 types.get(JobParameters.REASON_TIMEOUT, 0),
4069 types.get(JobParameters.REASON_DEVICE_IDLE, 0));
4070 }
4071 }
4072
Ruben Brunk6d2c3632015-05-26 17:32:16 -07004073 dumpTimer(pw, uid, category, FLASHLIGHT_DATA, u.getFlashlightTurnedOnTimer(),
4074 rawRealtime, which);
4075 dumpTimer(pw, uid, category, CAMERA_DATA, u.getCameraTurnedOnTimer(),
4076 rawRealtime, which);
4077 dumpTimer(pw, uid, category, VIDEO_DATA, u.getVideoTurnedOnTimer(),
4078 rawRealtime, which);
4079 dumpTimer(pw, uid, category, AUDIO_DATA, u.getAudioTurnedOnTimer(),
4080 rawRealtime, which);
4081
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004082 final SparseArray<? extends BatteryStats.Uid.Sensor> sensors = u.getSensorStats();
4083 final int NSE = sensors.size();
Dianne Hackborn61659e52014-07-09 16:13:01 -07004084 for (int ise=0; ise<NSE; ise++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004085 final Uid.Sensor se = sensors.valueAt(ise);
4086 final int sensorNumber = sensors.keyAt(ise);
4087 final Timer timer = se.getSensorTime();
Dianne Hackborn61659e52014-07-09 16:13:01 -07004088 if (timer != null) {
4089 // Convert from microseconds to milliseconds with rounding
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004090 final long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500)
4091 / 1000;
Dianne Hackborn61659e52014-07-09 16:13:01 -07004092 if (totalTime != 0) {
Bookatz867c0d72017-03-07 18:23:42 -08004093 final int count = timer.getCountLocked(which);
4094 final Timer bgTimer = se.getSensorBackgroundTime();
4095 final int bgCount = bgTimer != null ? bgTimer.getCountLocked(which) : 0;
Bookatz867c0d72017-03-07 18:23:42 -08004096 // 'actualTime' are unpooled and always since reset (regardless of 'which')
4097 final long actualTime = timer.getTotalDurationMsLocked(rawRealtimeMs);
4098 final long bgActualTime = bgTimer != null ?
4099 bgTimer.getTotalDurationMsLocked(rawRealtimeMs) : 0;
4100 dumpLine(pw, uid, category, SENSOR_DATA, sensorNumber, totalTime,
4101 count, bgCount, actualTime, bgActualTime);
Dianne Hackborn61659e52014-07-09 16:13:01 -07004102 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004103 }
4104 }
4105
Ruben Brunk6d2c3632015-05-26 17:32:16 -07004106 dumpTimer(pw, uid, category, VIBRATOR_DATA, u.getVibratorOnTimer(),
4107 rawRealtime, which);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08004108
Michael Wachenschwanzb05a3c52017-07-07 17:47:04 -07004109 dumpTimer(pw, uid, category, FOREGROUND_ACTIVITY_DATA, u.getForegroundActivityTimer(),
4110 rawRealtime, which);
4111
4112 dumpTimer(pw, uid, category, FOREGROUND_SERVICE_DATA, u.getForegroundServiceTimer(),
Ruben Brunk6d2c3632015-05-26 17:32:16 -07004113 rawRealtime, which);
Jeff Sharkey3e013e82013-04-25 14:48:19 -07004114
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004115 final Object[] stateTimes = new Object[Uid.NUM_PROCESS_STATE];
Dianne Hackborn61659e52014-07-09 16:13:01 -07004116 long totalStateTime = 0;
4117 for (int ips=0; ips<Uid.NUM_PROCESS_STATE; ips++) {
Dianne Hackborna8d10942015-11-19 17:55:19 -08004118 final long time = u.getProcessStateTime(ips, rawRealtime, which);
4119 totalStateTime += time;
4120 stateTimes[ips] = (time + 500) / 1000;
Dianne Hackborn61659e52014-07-09 16:13:01 -07004121 }
4122 if (totalStateTime > 0) {
4123 dumpLine(pw, uid, category, STATE_TIME_DATA, stateTimes);
4124 }
4125
Adam Lesinskia7a4ccc2015-06-26 17:43:04 -07004126 final long userCpuTimeUs = u.getUserCpuTimeUs(which);
4127 final long systemCpuTimeUs = u.getSystemCpuTimeUs(which);
Adam Lesinskid4abd1e2017-04-12 11:29:13 -07004128 if (userCpuTimeUs > 0 || systemCpuTimeUs > 0) {
Adam Lesinskia7a4ccc2015-06-26 17:43:04 -07004129 dumpLine(pw, uid, category, CPU_DATA, userCpuTimeUs / 1000, systemCpuTimeUs / 1000,
Adam Lesinskid4abd1e2017-04-12 11:29:13 -07004130 0 /* old cpu power, keep for compatibility */);
Adam Lesinskia7a4ccc2015-06-26 17:43:04 -07004131 }
4132
Sudheer Shankaa87245d2017-08-10 12:02:31 -07004133 // If the cpuFreqs is null, then don't bother checking for cpu freq times.
4134 if (cpuFreqs != null) {
4135 final long[] cpuFreqTimeMs = u.getCpuFreqTimes(which);
4136 // If total cpuFreqTimes is null, then we don't need to check for
4137 // screenOffCpuFreqTimes.
4138 if (cpuFreqTimeMs != null && cpuFreqTimeMs.length == cpuFreqs.length) {
4139 sb.setLength(0);
Sudheer Shanka9b735c52017-05-09 18:26:18 -07004140 for (int i = 0; i < cpuFreqTimeMs.length; ++i) {
Sudheer Shankaa87245d2017-08-10 12:02:31 -07004141 sb.append((i == 0 ? "" : ",") + cpuFreqTimeMs[i]);
Sudheer Shanka9b735c52017-05-09 18:26:18 -07004142 }
Sudheer Shankaa87245d2017-08-10 12:02:31 -07004143 final long[] screenOffCpuFreqTimeMs = u.getScreenOffCpuFreqTimes(which);
4144 if (screenOffCpuFreqTimeMs != null) {
4145 for (int i = 0; i < screenOffCpuFreqTimeMs.length; ++i) {
4146 sb.append("," + screenOffCpuFreqTimeMs[i]);
4147 }
4148 } else {
4149 for (int i = 0; i < cpuFreqTimeMs.length; ++i) {
4150 sb.append(",0");
4151 }
4152 }
4153 dumpLine(pw, uid, category, CPU_TIMES_AT_FREQ_DATA, UID_TIMES_TYPE_ALL,
4154 cpuFreqTimeMs.length, sb.toString());
Sudheer Shanka9b735c52017-05-09 18:26:18 -07004155 }
Sudheer Shankab2f83c12017-11-13 19:25:01 -08004156
4157 for (int procState = 0; procState < Uid.NUM_PROCESS_STATE; ++procState) {
4158 final long[] timesMs = u.getCpuFreqTimes(which, procState);
4159 if (timesMs != null && timesMs.length == cpuFreqs.length) {
4160 sb.setLength(0);
4161 for (int i = 0; i < timesMs.length; ++i) {
4162 sb.append((i == 0 ? "" : ",") + timesMs[i]);
4163 }
4164 final long[] screenOffTimesMs = u.getScreenOffCpuFreqTimes(
4165 which, procState);
4166 if (screenOffTimesMs != null) {
4167 for (int i = 0; i < screenOffTimesMs.length; ++i) {
4168 sb.append("," + screenOffTimesMs[i]);
4169 }
4170 } else {
4171 for (int i = 0; i < timesMs.length; ++i) {
4172 sb.append(",0");
4173 }
4174 }
4175 dumpLine(pw, uid, category, CPU_TIMES_AT_FREQ_DATA,
4176 Uid.UID_PROCESS_TYPES[procState], timesMs.length, sb.toString());
4177 }
4178 }
Sudheer Shanka9b735c52017-05-09 18:26:18 -07004179 }
4180
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004181 final ArrayMap<String, ? extends BatteryStats.Uid.Proc> processStats
4182 = u.getProcessStats();
4183 for (int ipr=processStats.size()-1; ipr>=0; ipr--) {
4184 final Uid.Proc ps = processStats.valueAt(ipr);
Jeff Sharkey3e013e82013-04-25 14:48:19 -07004185
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004186 final long userMillis = ps.getUserTime(which);
4187 final long systemMillis = ps.getSystemTime(which);
4188 final long foregroundMillis = ps.getForegroundTime(which);
4189 final int starts = ps.getStarts(which);
4190 final int numCrashes = ps.getNumCrashes(which);
4191 final int numAnrs = ps.getNumAnrs(which);
Jeff Sharkey3e013e82013-04-25 14:48:19 -07004192
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004193 if (userMillis != 0 || systemMillis != 0 || foregroundMillis != 0
4194 || starts != 0 || numAnrs != 0 || numCrashes != 0) {
Kweku Adamse0dd9c12017-03-08 08:12:15 -08004195 dumpLine(pw, uid, category, PROCESS_DATA, "\"" + processStats.keyAt(ipr) + "\"",
4196 userMillis, systemMillis, foregroundMillis, starts, numAnrs, numCrashes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004197 }
4198 }
4199
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004200 final ArrayMap<String, ? extends BatteryStats.Uid.Pkg> packageStats
4201 = u.getPackageStats();
4202 for (int ipkg=packageStats.size()-1; ipkg>=0; ipkg--) {
4203 final Uid.Pkg ps = packageStats.valueAt(ipkg);
4204 int wakeups = 0;
4205 final ArrayMap<String, ? extends Counter> alarms = ps.getWakeupAlarmStats();
4206 for (int iwa=alarms.size()-1; iwa>=0; iwa--) {
Joe Onorato1476d322016-05-05 14:46:15 -07004207 int count = alarms.valueAt(iwa).getCountLocked(which);
4208 wakeups += count;
4209 String name = alarms.keyAt(iwa).replace(',', '_');
4210 dumpLine(pw, uid, category, WAKEUP_ALARM_DATA, name, count);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004211 }
4212 final ArrayMap<String, ? extends Uid.Pkg.Serv> serviceStats = ps.getServiceStats();
4213 for (int isvc=serviceStats.size()-1; isvc>=0; isvc--) {
4214 final BatteryStats.Uid.Pkg.Serv ss = serviceStats.valueAt(isvc);
4215 final long startTime = ss.getStartTime(batteryUptime, which);
4216 final int starts = ss.getStarts(which);
4217 final int launches = ss.getLaunches(which);
4218 if (startTime != 0 || starts != 0 || launches != 0) {
4219 dumpLine(pw, uid, category, APK_DATA,
4220 wakeups, // wakeup alarms
4221 packageStats.keyAt(ipkg), // Apk
4222 serviceStats.keyAt(isvc), // service
4223 startTime / 1000, // time spent started, in ms
4224 starts,
4225 launches);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004226 }
4227 }
4228 }
4229 }
4230 }
4231
Dianne Hackborn81038902012-11-26 17:04:09 -08004232 static final class TimerEntry {
4233 final String mName;
4234 final int mId;
4235 final BatteryStats.Timer mTimer;
4236 final long mTime;
4237 TimerEntry(String name, int id, BatteryStats.Timer timer, long time) {
4238 mName = name;
4239 mId = id;
4240 mTimer = timer;
4241 mTime = time;
4242 }
4243 }
4244
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004245 private void printmAh(PrintWriter printer, double power) {
4246 printer.print(BatteryStatsHelper.makemAh(power));
4247 }
4248
Adam Lesinskia7a4ccc2015-06-26 17:43:04 -07004249 private void printmAh(StringBuilder sb, double power) {
4250 sb.append(BatteryStatsHelper.makemAh(power));
4251 }
4252
Dianne Hackbornd953c532014-08-16 18:17:38 -07004253 /**
4254 * Temporary for settings.
4255 */
4256 public final void dumpLocked(Context context, PrintWriter pw, String prefix, int which,
4257 int reqUid) {
4258 dumpLocked(context, pw, prefix, which, reqUid, BatteryStatsHelper.checkWifiOnly(context));
4259 }
4260
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004261 @SuppressWarnings("unused")
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004262 public final void dumpLocked(Context context, PrintWriter pw, String prefix, final int which,
Dianne Hackbornd953c532014-08-16 18:17:38 -07004263 int reqUid, boolean wifiOnly) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004264 final long rawUptime = SystemClock.uptimeMillis() * 1000;
4265 final long rawRealtime = SystemClock.elapsedRealtime() * 1000;
Bookatz6d799932017-06-07 12:30:07 -07004266 final long rawRealtimeMs = (rawRealtime + 500) / 1000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004267 final long batteryUptime = getBatteryUptime(rawUptime);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004268
4269 final long whichBatteryUptime = computeBatteryUptime(rawUptime, which);
4270 final long whichBatteryRealtime = computeBatteryRealtime(rawRealtime, which);
4271 final long totalRealtime = computeRealtime(rawRealtime, which);
4272 final long totalUptime = computeUptime(rawUptime, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004273 final long whichBatteryScreenOffUptime = computeBatteryScreenOffUptime(rawUptime, which);
4274 final long whichBatteryScreenOffRealtime = computeBatteryScreenOffRealtime(rawRealtime,
4275 which);
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07004276 final long batteryTimeRemaining = computeBatteryTimeRemaining(rawRealtime);
4277 final long chargeTimeRemaining = computeChargeTimeRemaining(rawRealtime);
Mike Mac2f518a2017-09-19 16:06:03 -07004278 final long screenDozeTime = getScreenDozeTime(rawRealtime, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004279
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004280 final StringBuilder sb = new StringBuilder(128);
Bookatzc8c44962017-05-11 12:12:54 -07004281
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004282 final SparseArray<? extends Uid> uidStats = getUidStats();
Evan Millar22ac0432009-03-31 11:33:18 -07004283 final int NU = uidStats.size();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004284
Adam Lesinskif9b20a92016-06-17 17:30:01 -07004285 final int estimatedBatteryCapacity = getEstimatedBatteryCapacity();
4286 if (estimatedBatteryCapacity > 0) {
4287 sb.setLength(0);
4288 sb.append(prefix);
4289 sb.append(" Estimated battery capacity: ");
4290 sb.append(BatteryStatsHelper.makemAh(estimatedBatteryCapacity));
4291 sb.append(" mAh");
4292 pw.println(sb.toString());
4293 }
4294
Jocelyn Dangc627d102017-04-14 13:15:14 -07004295 final int minLearnedBatteryCapacity = getMinLearnedBatteryCapacity();
4296 if (minLearnedBatteryCapacity > 0) {
4297 sb.setLength(0);
4298 sb.append(prefix);
4299 sb.append(" Min learned battery capacity: ");
4300 sb.append(BatteryStatsHelper.makemAh(minLearnedBatteryCapacity / 1000));
4301 sb.append(" mAh");
4302 pw.println(sb.toString());
4303 }
4304 final int maxLearnedBatteryCapacity = getMaxLearnedBatteryCapacity();
4305 if (maxLearnedBatteryCapacity > 0) {
4306 sb.setLength(0);
4307 sb.append(prefix);
4308 sb.append(" Max learned battery capacity: ");
4309 sb.append(BatteryStatsHelper.makemAh(maxLearnedBatteryCapacity / 1000));
4310 sb.append(" mAh");
4311 pw.println(sb.toString());
4312 }
4313
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004314 sb.setLength(0);
4315 sb.append(prefix);
Mike Mac2f518a2017-09-19 16:06:03 -07004316 sb.append(" Time on battery: ");
4317 formatTimeMs(sb, whichBatteryRealtime / 1000); sb.append("(");
4318 sb.append(formatRatioLocked(whichBatteryRealtime, totalRealtime));
4319 sb.append(") realtime, ");
4320 formatTimeMs(sb, whichBatteryUptime / 1000);
4321 sb.append("("); sb.append(formatRatioLocked(whichBatteryUptime, whichBatteryRealtime));
4322 sb.append(") uptime");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004323 pw.println(sb.toString());
Mike Mac2f518a2017-09-19 16:06:03 -07004324
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004325 sb.setLength(0);
4326 sb.append(prefix);
Mike Mac2f518a2017-09-19 16:06:03 -07004327 sb.append(" Time on battery screen off: ");
4328 formatTimeMs(sb, whichBatteryScreenOffRealtime / 1000); sb.append("(");
4329 sb.append(formatRatioLocked(whichBatteryScreenOffRealtime, whichBatteryRealtime));
4330 sb.append(") realtime, ");
4331 formatTimeMs(sb, whichBatteryScreenOffUptime / 1000);
4332 sb.append("(");
4333 sb.append(formatRatioLocked(whichBatteryScreenOffUptime, whichBatteryRealtime));
4334 sb.append(") uptime");
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004335 pw.println(sb.toString());
Mike Mac2f518a2017-09-19 16:06:03 -07004336
4337 sb.setLength(0);
4338 sb.append(prefix);
4339 sb.append(" Time on battery screen doze: ");
4340 formatTimeMs(sb, screenDozeTime / 1000); sb.append("(");
4341 sb.append(formatRatioLocked(screenDozeTime, whichBatteryRealtime));
4342 sb.append(")");
4343 pw.println(sb.toString());
4344
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004345 sb.setLength(0);
4346 sb.append(prefix);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004347 sb.append(" Total run time: ");
4348 formatTimeMs(sb, totalRealtime / 1000);
4349 sb.append("realtime, ");
4350 formatTimeMs(sb, totalUptime / 1000);
Dianne Hackborn77b987f2014-02-26 16:20:52 -08004351 sb.append("uptime");
Jeff Browne95c3cd2014-05-02 16:59:26 -07004352 pw.println(sb.toString());
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -07004353 if (batteryTimeRemaining >= 0) {
4354 sb.setLength(0);
4355 sb.append(prefix);
4356 sb.append(" Battery time remaining: ");
4357 formatTimeMs(sb, batteryTimeRemaining / 1000);
4358 pw.println(sb.toString());
4359 }
4360 if (chargeTimeRemaining >= 0) {
4361 sb.setLength(0);
4362 sb.append(prefix);
4363 sb.append(" Charge time remaining: ");
4364 formatTimeMs(sb, chargeTimeRemaining / 1000);
4365 pw.println(sb.toString());
4366 }
Adam Lesinski3ee3f632016-06-08 13:55:55 -07004367
Kweku Adams87b19ec2017-10-09 12:40:03 -07004368 final long dischargeCount = getUahDischarge(which);
Adam Lesinski3ee3f632016-06-08 13:55:55 -07004369 if (dischargeCount >= 0) {
4370 sb.setLength(0);
4371 sb.append(prefix);
4372 sb.append(" Discharge: ");
4373 sb.append(BatteryStatsHelper.makemAh(dischargeCount / 1000.0));
4374 sb.append(" mAh");
4375 pw.println(sb.toString());
4376 }
4377
Kweku Adams87b19ec2017-10-09 12:40:03 -07004378 final long dischargeScreenOffCount = getUahDischargeScreenOff(which);
Adam Lesinski3ee3f632016-06-08 13:55:55 -07004379 if (dischargeScreenOffCount >= 0) {
4380 sb.setLength(0);
4381 sb.append(prefix);
4382 sb.append(" Screen off discharge: ");
4383 sb.append(BatteryStatsHelper.makemAh(dischargeScreenOffCount / 1000.0));
4384 sb.append(" mAh");
4385 pw.println(sb.toString());
4386 }
4387
Kweku Adams87b19ec2017-10-09 12:40:03 -07004388 final long dischargeScreenDozeCount = getUahDischargeScreenDoze(which);
Mike Mac2f518a2017-09-19 16:06:03 -07004389 if (dischargeScreenDozeCount >= 0) {
4390 sb.setLength(0);
4391 sb.append(prefix);
4392 sb.append(" Screen doze discharge: ");
4393 sb.append(BatteryStatsHelper.makemAh(dischargeScreenDozeCount / 1000.0));
4394 sb.append(" mAh");
4395 pw.println(sb.toString());
4396 }
4397
4398 final long dischargeScreenOnCount =
4399 dischargeCount - dischargeScreenOffCount - dischargeScreenDozeCount;
Adam Lesinski3ee3f632016-06-08 13:55:55 -07004400 if (dischargeScreenOnCount >= 0) {
4401 sb.setLength(0);
4402 sb.append(prefix);
4403 sb.append(" Screen on discharge: ");
4404 sb.append(BatteryStatsHelper.makemAh(dischargeScreenOnCount / 1000.0));
4405 sb.append(" mAh");
4406 pw.println(sb.toString());
4407 }
4408
Mike Ma15313c92017-11-15 17:58:21 -08004409 final long dischargeLightDozeCount = getUahDischargeLightDoze(which);
4410 if (dischargeLightDozeCount >= 0) {
4411 sb.setLength(0);
4412 sb.append(prefix);
4413 sb.append(" Device light doze discharge: ");
4414 sb.append(BatteryStatsHelper.makemAh(dischargeLightDozeCount / 1000.0));
4415 sb.append(" mAh");
4416 pw.println(sb.toString());
4417 }
4418
4419 final long dischargeDeepDozeCount = getUahDischargeDeepDoze(which);
4420 if (dischargeDeepDozeCount >= 0) {
4421 sb.setLength(0);
4422 sb.append(prefix);
4423 sb.append(" Device deep doze discharge: ");
4424 sb.append(BatteryStatsHelper.makemAh(dischargeDeepDozeCount / 1000.0));
4425 sb.append(" mAh");
4426 pw.println(sb.toString());
4427 }
4428
Dianne Hackborn5f4a5f92014-01-24 16:59:34 -08004429 pw.print(" Start clock time: ");
4430 pw.println(DateFormat.format("yyyy-MM-dd-HH-mm-ss", getStartClockTime()).toString());
4431
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004432 final long screenOnTime = getScreenOnTime(rawRealtime, which);
Jeff Browne95c3cd2014-05-02 16:59:26 -07004433 final long interactiveTime = getInteractiveTime(rawRealtime, which);
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004434 final long powerSaveModeEnabledTime = getPowerSaveModeEnabledTime(rawRealtime, which);
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004435 final long deviceIdleModeLightTime = getDeviceIdleModeTime(DEVICE_IDLE_MODE_LIGHT,
4436 rawRealtime, which);
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07004437 final long deviceIdleModeFullTime = getDeviceIdleModeTime(DEVICE_IDLE_MODE_DEEP,
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004438 rawRealtime, which);
4439 final long deviceLightIdlingTime = getDeviceIdlingTime(DEVICE_IDLE_MODE_LIGHT,
4440 rawRealtime, which);
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07004441 final long deviceIdlingTime = getDeviceIdlingTime(DEVICE_IDLE_MODE_DEEP,
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004442 rawRealtime, which);
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004443 final long phoneOnTime = getPhoneOnTime(rawRealtime, which);
4444 final long wifiRunningTime = getGlobalWifiRunningTime(rawRealtime, which);
4445 final long wifiOnTime = getWifiOnTime(rawRealtime, which);
Dianne Hackborn617f8772009-03-31 15:04:46 -07004446 sb.setLength(0);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004447 sb.append(prefix);
4448 sb.append(" Screen on: "); formatTimeMs(sb, screenOnTime / 1000);
4449 sb.append("("); sb.append(formatRatioLocked(screenOnTime, whichBatteryRealtime));
Dianne Hackborn77b987f2014-02-26 16:20:52 -08004450 sb.append(") "); sb.append(getScreenOnCount(which));
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07004451 sb.append("x, Interactive: "); formatTimeMs(sb, interactiveTime / 1000);
4452 sb.append("("); sb.append(formatRatioLocked(interactiveTime, whichBatteryRealtime));
Jeff Browne95c3cd2014-05-02 16:59:26 -07004453 sb.append(")");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004454 pw.println(sb.toString());
4455 sb.setLength(0);
4456 sb.append(prefix);
Dianne Hackborn77b987f2014-02-26 16:20:52 -08004457 sb.append(" Screen brightnesses:");
Dianne Hackborn617f8772009-03-31 15:04:46 -07004458 boolean didOne = false;
4459 for (int i=0; i<NUM_SCREEN_BRIGHTNESS_BINS; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004460 final long time = getScreenBrightnessTime(i, rawRealtime, which);
Dianne Hackborn617f8772009-03-31 15:04:46 -07004461 if (time == 0) {
4462 continue;
4463 }
Dianne Hackborn77b987f2014-02-26 16:20:52 -08004464 sb.append("\n ");
4465 sb.append(prefix);
Dianne Hackborn617f8772009-03-31 15:04:46 -07004466 didOne = true;
4467 sb.append(SCREEN_BRIGHTNESS_NAMES[i]);
4468 sb.append(" ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004469 formatTimeMs(sb, time/1000);
Dianne Hackborn617f8772009-03-31 15:04:46 -07004470 sb.append("(");
4471 sb.append(formatRatioLocked(time, screenOnTime));
4472 sb.append(")");
4473 }
Dianne Hackborn77b987f2014-02-26 16:20:52 -08004474 if (!didOne) sb.append(" (no activity)");
Dianne Hackborn617f8772009-03-31 15:04:46 -07004475 pw.println(sb.toString());
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004476 if (powerSaveModeEnabledTime != 0) {
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07004477 sb.setLength(0);
4478 sb.append(prefix);
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004479 sb.append(" Power save mode enabled: ");
4480 formatTimeMs(sb, powerSaveModeEnabledTime / 1000);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07004481 sb.append("(");
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004482 sb.append(formatRatioLocked(powerSaveModeEnabledTime, whichBatteryRealtime));
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07004483 sb.append(")");
4484 pw.println(sb.toString());
4485 }
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004486 if (deviceLightIdlingTime != 0) {
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004487 sb.setLength(0);
4488 sb.append(prefix);
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004489 sb.append(" Device light idling: ");
4490 formatTimeMs(sb, deviceLightIdlingTime / 1000);
Dianne Hackborn88e98df2015-03-23 13:29:14 -07004491 sb.append("(");
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004492 sb.append(formatRatioLocked(deviceLightIdlingTime, whichBatteryRealtime));
4493 sb.append(") "); sb.append(getDeviceIdlingCount(DEVICE_IDLE_MODE_LIGHT, which));
Dianne Hackborn88e98df2015-03-23 13:29:14 -07004494 sb.append("x");
4495 pw.println(sb.toString());
4496 }
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004497 if (deviceIdleModeLightTime != 0) {
Dianne Hackborn88e98df2015-03-23 13:29:14 -07004498 sb.setLength(0);
4499 sb.append(prefix);
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004500 sb.append(" Idle mode light time: ");
4501 formatTimeMs(sb, deviceIdleModeLightTime / 1000);
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004502 sb.append("(");
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004503 sb.append(formatRatioLocked(deviceIdleModeLightTime, whichBatteryRealtime));
4504 sb.append(") ");
4505 sb.append(getDeviceIdleModeCount(DEVICE_IDLE_MODE_LIGHT, which));
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004506 sb.append("x");
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004507 sb.append(" -- longest ");
4508 formatTimeMs(sb, getLongestDeviceIdleModeTime(DEVICE_IDLE_MODE_LIGHT));
4509 pw.println(sb.toString());
4510 }
4511 if (deviceIdlingTime != 0) {
4512 sb.setLength(0);
4513 sb.append(prefix);
4514 sb.append(" Device full idling: ");
4515 formatTimeMs(sb, deviceIdlingTime / 1000);
4516 sb.append("(");
4517 sb.append(formatRatioLocked(deviceIdlingTime, whichBatteryRealtime));
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07004518 sb.append(") "); sb.append(getDeviceIdlingCount(DEVICE_IDLE_MODE_DEEP, which));
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004519 sb.append("x");
4520 pw.println(sb.toString());
4521 }
4522 if (deviceIdleModeFullTime != 0) {
4523 sb.setLength(0);
4524 sb.append(prefix);
4525 sb.append(" Idle mode full time: ");
4526 formatTimeMs(sb, deviceIdleModeFullTime / 1000);
4527 sb.append("(");
4528 sb.append(formatRatioLocked(deviceIdleModeFullTime, whichBatteryRealtime));
4529 sb.append(") ");
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07004530 sb.append(getDeviceIdleModeCount(DEVICE_IDLE_MODE_DEEP, which));
Dianne Hackborn08c47a52015-10-15 12:38:14 -07004531 sb.append("x");
4532 sb.append(" -- longest ");
Dianne Hackborn2fefbcf2016-03-18 15:34:54 -07004533 formatTimeMs(sb, getLongestDeviceIdleModeTime(DEVICE_IDLE_MODE_DEEP));
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004534 pw.println(sb.toString());
4535 }
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07004536 if (phoneOnTime != 0) {
4537 sb.setLength(0);
4538 sb.append(prefix);
4539 sb.append(" Active phone call: "); formatTimeMs(sb, phoneOnTime / 1000);
4540 sb.append("("); sb.append(formatRatioLocked(phoneOnTime, whichBatteryRealtime));
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07004541 sb.append(") "); sb.append(getPhoneOnCount(which)); sb.append("x");
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07004542 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004543 final int connChanges = getNumConnectivityChange(which);
Dianne Hackborn1e01d162014-12-04 17:46:42 -08004544 if (connChanges != 0) {
4545 pw.print(prefix);
4546 pw.print(" Connectivity changes: "); pw.println(connChanges);
4547 }
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07004548
Ahmed ElArabawyf88571f2017-11-28 12:18:10 -08004549 // Calculate wakelock times across all uids.
Evan Millar22ac0432009-03-31 11:33:18 -07004550 long fullWakeLockTimeTotalMicros = 0;
4551 long partialWakeLockTimeTotalMicros = 0;
Dianne Hackborn81038902012-11-26 17:04:09 -08004552
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004553 final ArrayList<TimerEntry> timers = new ArrayList<>();
Dianne Hackborn81038902012-11-26 17:04:09 -08004554
Evan Millar22ac0432009-03-31 11:33:18 -07004555 for (int iu = 0; iu < NU; iu++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004556 final Uid u = uidStats.valueAt(iu);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07004557
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004558 final ArrayMap<String, ? extends BatteryStats.Uid.Wakelock> wakelocks
4559 = u.getWakelockStats();
4560 for (int iw=wakelocks.size()-1; iw>=0; iw--) {
4561 final Uid.Wakelock wl = wakelocks.valueAt(iw);
Evan Millar22ac0432009-03-31 11:33:18 -07004562
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004563 final Timer fullWakeTimer = wl.getWakeTime(WAKE_TYPE_FULL);
4564 if (fullWakeTimer != null) {
4565 fullWakeLockTimeTotalMicros += fullWakeTimer.getTotalTimeLocked(
4566 rawRealtime, which);
4567 }
4568
4569 final Timer partialWakeTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
4570 if (partialWakeTimer != null) {
4571 final long totalTimeMicros = partialWakeTimer.getTotalTimeLocked(
4572 rawRealtime, which);
4573 if (totalTimeMicros > 0) {
4574 if (reqUid < 0) {
4575 // Only show the ordered list of all wake
4576 // locks if the caller is not asking for data
4577 // about a specific uid.
4578 timers.add(new TimerEntry(wakelocks.keyAt(iw), u.getUid(),
4579 partialWakeTimer, totalTimeMicros));
Dianne Hackborn81038902012-11-26 17:04:09 -08004580 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004581 partialWakeLockTimeTotalMicros += totalTimeMicros;
Evan Millar22ac0432009-03-31 11:33:18 -07004582 }
4583 }
4584 }
4585 }
Bookatzc8c44962017-05-11 12:12:54 -07004586
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004587 final long mobileRxTotalBytes = getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which);
4588 final long mobileTxTotalBytes = getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which);
4589 final long wifiRxTotalBytes = getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which);
4590 final long wifiTxTotalBytes = getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which);
4591 final long mobileRxTotalPackets = getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which);
4592 final long mobileTxTotalPackets = getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which);
4593 final long wifiRxTotalPackets = getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which);
4594 final long wifiTxTotalPackets = getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which);
Adam Lesinski50e47602015-12-04 17:04:54 -08004595 final long btRxTotalBytes = getNetworkActivityBytes(NETWORK_BT_RX_DATA, which);
4596 final long btTxTotalBytes = getNetworkActivityBytes(NETWORK_BT_TX_DATA, which);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08004597
Dianne Hackborn77b987f2014-02-26 16:20:52 -08004598 if (fullWakeLockTimeTotalMicros != 0) {
4599 sb.setLength(0);
4600 sb.append(prefix);
4601 sb.append(" Total full wakelock time: "); formatTimeMsNoSpace(sb,
4602 (fullWakeLockTimeTotalMicros + 500) / 1000);
4603 pw.println(sb.toString());
4604 }
4605
4606 if (partialWakeLockTimeTotalMicros != 0) {
4607 sb.setLength(0);
4608 sb.append(prefix);
4609 sb.append(" Total partial wakelock time: "); formatTimeMsNoSpace(sb,
4610 (partialWakeLockTimeTotalMicros + 500) / 1000);
4611 pw.println(sb.toString());
4612 }
4613
Ahmed ElArabawyf88571f2017-11-28 12:18:10 -08004614 final long multicastWakeLockTimeTotalMicros =
4615 getWifiMulticastWakelockTime(rawRealtime, which);
4616 final int multicastWakeLockCountTotal = getWifiMulticastWakelockCount(which);
Ahmed ElArabawyddd09692017-10-30 17:58:29 -07004617 if (multicastWakeLockTimeTotalMicros != 0) {
4618 sb.setLength(0);
4619 sb.append(prefix);
4620 sb.append(" Total WiFi Multicast wakelock Count: ");
4621 sb.append(multicastWakeLockCountTotal);
4622 pw.println(sb.toString());
4623
4624 sb.setLength(0);
4625 sb.append(prefix);
4626 sb.append(" Total WiFi Multicast wakelock time: ");
4627 formatTimeMsNoSpace(sb, (multicastWakeLockTimeTotalMicros + 500) / 1000);
4628 pw.println(sb.toString());
4629 }
4630
Siddharth Ray3c648c42017-10-02 17:30:58 -07004631 pw.println("");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004632 pw.print(prefix);
Dianne Hackborn627bba72009-03-24 22:32:56 -07004633 sb.setLength(0);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004634 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004635 sb.append(" CONNECTIVITY POWER SUMMARY START");
4636 pw.println(sb.toString());
4637
4638 pw.print(prefix);
4639 sb.setLength(0);
4640 sb.append(prefix);
4641 sb.append(" Logging duration for connectivity statistics: ");
4642 formatTimeMs(sb, whichBatteryRealtime / 1000);
Dianne Hackborn627bba72009-03-24 22:32:56 -07004643 pw.println(sb.toString());
Amith Yamasanif37447b2009-10-08 18:28:01 -07004644
4645 sb.setLength(0);
4646 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004647 sb.append(" Cellular Statistics:");
Amith Yamasanif37447b2009-10-08 18:28:01 -07004648 pw.println(sb.toString());
4649
Siddharth Ray3c648c42017-10-02 17:30:58 -07004650 pw.print(prefix);
4651 sb.setLength(0);
4652 sb.append(prefix);
4653 sb.append(" Cellular kernel active time: ");
4654 final long mobileActiveTime = getMobileRadioActiveTime(rawRealtime, which);
4655 formatTimeMs(sb, mobileActiveTime / 1000);
4656 sb.append("("); sb.append(formatRatioLocked(mobileActiveTime, whichBatteryRealtime));
4657 sb.append(")");
4658 pw.println(sb.toString());
4659
4660 pw.print(" Cellular data received: "); pw.println(formatBytesLocked(mobileRxTotalBytes));
4661 pw.print(" Cellular data sent: "); pw.println(formatBytesLocked(mobileTxTotalBytes));
4662 pw.print(" Cellular packets received: "); pw.println(mobileRxTotalPackets);
4663 pw.print(" Cellular packets sent: "); pw.println(mobileTxTotalPackets);
4664
Dianne Hackborn627bba72009-03-24 22:32:56 -07004665 sb.setLength(0);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004666 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004667 sb.append(" Cellular Radio Access Technology:");
Dianne Hackborn627bba72009-03-24 22:32:56 -07004668 didOne = false;
4669 for (int i=0; i<NUM_DATA_CONNECTION_TYPES; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004670 final long time = getPhoneDataConnectionTime(i, rawRealtime, which);
Dianne Hackborn627bba72009-03-24 22:32:56 -07004671 if (time == 0) {
4672 continue;
4673 }
Siddharth Ray3c648c42017-10-02 17:30:58 -07004674 sb.append("\n ");
Dianne Hackborn77b987f2014-02-26 16:20:52 -08004675 sb.append(prefix);
Dianne Hackborn627bba72009-03-24 22:32:56 -07004676 didOne = true;
4677 sb.append(DATA_CONNECTION_NAMES[i]);
4678 sb.append(" ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004679 formatTimeMs(sb, time/1000);
Dianne Hackborn627bba72009-03-24 22:32:56 -07004680 sb.append("(");
4681 sb.append(formatRatioLocked(time, whichBatteryRealtime));
Dianne Hackborn617f8772009-03-31 15:04:46 -07004682 sb.append(") ");
Dianne Hackborn627bba72009-03-24 22:32:56 -07004683 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08004684 if (!didOne) sb.append(" (no activity)");
Dianne Hackborn627bba72009-03-24 22:32:56 -07004685 pw.println(sb.toString());
Amith Yamasani3f7e35c2009-07-13 16:02:45 -07004686
4687 sb.setLength(0);
4688 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004689 sb.append(" Cellular Rx signal strength (RSRP):");
4690 final String[] cellularRxSignalStrengthDescription = new String[]{
4691 "very poor (less than -128dBm): ",
4692 "poor (-128dBm to -118dBm): ",
4693 "moderate (-118dBm to -108dBm): ",
4694 "good (-108dBm to -98dBm): ",
4695 "great (greater than -98dBm): "};
4696 didOne = false;
4697 final int numCellularRxBins = Math.min(SignalStrength.NUM_SIGNAL_STRENGTH_BINS,
4698 cellularRxSignalStrengthDescription.length);
4699 for (int i=0; i<numCellularRxBins; i++) {
4700 final long time = getPhoneSignalStrengthTime(i, rawRealtime, which);
4701 if (time == 0) {
4702 continue;
4703 }
4704 sb.append("\n ");
4705 sb.append(prefix);
4706 didOne = true;
4707 sb.append(cellularRxSignalStrengthDescription[i]);
4708 sb.append(" ");
4709 formatTimeMs(sb, time/1000);
4710 sb.append("(");
4711 sb.append(formatRatioLocked(time, whichBatteryRealtime));
4712 sb.append(") ");
4713 }
4714 if (!didOne) sb.append(" (no activity)");
Amith Yamasani3f7e35c2009-07-13 16:02:45 -07004715 pw.println(sb.toString());
4716
Siddharth Rayb50a6842017-12-14 15:15:28 -08004717 printControllerActivity(pw, sb, prefix, CELLULAR_CONTROLLER_NAME,
Siddharth Ray3c648c42017-10-02 17:30:58 -07004718 getModemControllerActivity(), which);
Adam Lesinski21f76aa2016-01-25 12:27:06 -08004719
Dianne Hackborn77b987f2014-02-26 16:20:52 -08004720 pw.print(prefix);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004721 sb.setLength(0);
4722 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004723 sb.append(" Wifi Statistics:");
Dianne Hackbornca1bf212014-02-14 14:18:36 -08004724 pw.println(sb.toString());
4725
Siddharth Rayb50a6842017-12-14 15:15:28 -08004726 pw.print(prefix);
4727 sb.setLength(0);
4728 sb.append(prefix);
4729 sb.append(" Wifi kernel active time: ");
4730 final long wifiActiveTime = getWifiActiveTime(rawRealtime, which);
4731 formatTimeMs(sb, wifiActiveTime / 1000);
4732 sb.append("("); sb.append(formatRatioLocked(wifiActiveTime, whichBatteryRealtime));
4733 sb.append(")");
4734 pw.println(sb.toString());
4735
Siddharth Ray3c648c42017-10-02 17:30:58 -07004736 pw.print(" Wifi data received: "); pw.println(formatBytesLocked(wifiRxTotalBytes));
4737 pw.print(" Wifi data sent: "); pw.println(formatBytesLocked(wifiTxTotalBytes));
4738 pw.print(" Wifi packets received: "); pw.println(wifiRxTotalPackets);
4739 pw.print(" Wifi packets sent: "); pw.println(wifiTxTotalPackets);
4740
Dianne Hackbornca1bf212014-02-14 14:18:36 -08004741 sb.setLength(0);
4742 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004743 sb.append(" Wifi states:");
Dianne Hackbornca1bf212014-02-14 14:18:36 -08004744 didOne = false;
4745 for (int i=0; i<NUM_WIFI_STATES; i++) {
Dianne Hackborn97ae5382014-03-05 16:43:25 -08004746 final long time = getWifiStateTime(i, rawRealtime, which);
Dianne Hackbornca1bf212014-02-14 14:18:36 -08004747 if (time == 0) {
4748 continue;
4749 }
Siddharth Ray3c648c42017-10-02 17:30:58 -07004750 sb.append("\n ");
Dianne Hackbornca1bf212014-02-14 14:18:36 -08004751 didOne = true;
4752 sb.append(WIFI_STATE_NAMES[i]);
4753 sb.append(" ");
4754 formatTimeMs(sb, time/1000);
4755 sb.append("(");
4756 sb.append(formatRatioLocked(time, whichBatteryRealtime));
4757 sb.append(") ");
Dianne Hackborn3251b902014-06-20 14:40:53 -07004758 }
4759 if (!didOne) sb.append(" (no activity)");
4760 pw.println(sb.toString());
4761
4762 sb.setLength(0);
4763 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004764 sb.append(" Wifi supplicant states:");
Dianne Hackborn3251b902014-06-20 14:40:53 -07004765 didOne = false;
4766 for (int i=0; i<NUM_WIFI_SUPPL_STATES; i++) {
4767 final long time = getWifiSupplStateTime(i, rawRealtime, which);
4768 if (time == 0) {
4769 continue;
4770 }
Siddharth Ray3c648c42017-10-02 17:30:58 -07004771 sb.append("\n ");
Dianne Hackborn3251b902014-06-20 14:40:53 -07004772 didOne = true;
4773 sb.append(WIFI_SUPPL_STATE_NAMES[i]);
4774 sb.append(" ");
4775 formatTimeMs(sb, time/1000);
4776 sb.append("(");
4777 sb.append(formatRatioLocked(time, whichBatteryRealtime));
4778 sb.append(") ");
Dianne Hackborn3251b902014-06-20 14:40:53 -07004779 }
4780 if (!didOne) sb.append(" (no activity)");
4781 pw.println(sb.toString());
4782
4783 sb.setLength(0);
4784 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004785 sb.append(" Wifi Rx signal strength (RSSI):");
4786 final String[] wifiRxSignalStrengthDescription = new String[]{
4787 "very poor (less than -88.75dBm): ",
4788 "poor (-88.75 to -77.5dBm): ",
4789 "moderate (-77.5dBm to -66.25dBm): ",
4790 "good (-66.25dBm to -55dBm): ",
4791 "great (greater than -55dBm): "};
Dianne Hackborn3251b902014-06-20 14:40:53 -07004792 didOne = false;
Siddharth Ray3c648c42017-10-02 17:30:58 -07004793 final int numWifiRxBins = Math.min(NUM_WIFI_SIGNAL_STRENGTH_BINS,
4794 wifiRxSignalStrengthDescription.length);
4795 for (int i=0; i<numWifiRxBins; i++) {
Dianne Hackborn3251b902014-06-20 14:40:53 -07004796 final long time = getWifiSignalStrengthTime(i, rawRealtime, which);
4797 if (time == 0) {
4798 continue;
4799 }
4800 sb.append("\n ");
4801 sb.append(prefix);
4802 didOne = true;
Siddharth Ray3c648c42017-10-02 17:30:58 -07004803 sb.append(" ");
4804 sb.append(wifiRxSignalStrengthDescription[i]);
Dianne Hackborn3251b902014-06-20 14:40:53 -07004805 formatTimeMs(sb, time/1000);
4806 sb.append("(");
4807 sb.append(formatRatioLocked(time, whichBatteryRealtime));
4808 sb.append(") ");
Dianne Hackbornca1bf212014-02-14 14:18:36 -08004809 }
4810 if (!didOne) sb.append(" (no activity)");
4811 pw.println(sb.toString());
4812
Siddharth Rayb50a6842017-12-14 15:15:28 -08004813 printControllerActivity(pw, sb, prefix, WIFI_CONTROLLER_NAME,
4814 getWifiControllerActivity(), which);
Adam Lesinskie08af192015-03-25 16:42:59 -07004815
Adam Lesinski50e47602015-12-04 17:04:54 -08004816 pw.print(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004817 sb.setLength(0);
4818 sb.append(prefix);
Siddharth Ray78ccaf52017-12-23 16:16:21 -08004819 sb.append(" GPS Statistics:");
4820 pw.println(sb.toString());
4821
4822 sb.setLength(0);
4823 sb.append(prefix);
4824 sb.append(" GPS signal quality (Top 4 Average CN0):");
4825 final String[] gpsSignalQualityDescription = new String[]{
4826 "poor (less than 20 dBHz): ",
4827 "good (greater than 20 dBHz): "};
4828 final int numGpsSignalQualityBins = Math.min(GnssMetrics.NUM_GPS_SIGNAL_QUALITY_LEVELS,
4829 gpsSignalQualityDescription.length);
4830 for (int i=0; i<numGpsSignalQualityBins; i++) {
4831 final long time = getGpsSignalQualityTime(i, rawRealtime, which);
4832 sb.append("\n ");
4833 sb.append(prefix);
4834 sb.append(" ");
4835 sb.append(gpsSignalQualityDescription[i]);
4836 formatTimeMs(sb, time/1000);
4837 sb.append("(");
4838 sb.append(formatRatioLocked(time, whichBatteryRealtime));
4839 sb.append(") ");
4840 }
4841 pw.println(sb.toString());
4842
4843 final long gpsBatteryDrainMaMs = getGpsBatteryDrainMaMs();
4844 if (gpsBatteryDrainMaMs > 0) {
4845 pw.print(prefix);
4846 sb.setLength(0);
4847 sb.append(prefix);
4848 sb.append(" Battery Drain (mAh): ");
4849 sb.append(Double.toString(((double) gpsBatteryDrainMaMs)/(3600 * 1000)));
4850 pw.println(sb.toString());
4851 }
4852
4853 pw.print(prefix);
4854 sb.setLength(0);
4855 sb.append(prefix);
Siddharth Ray3c648c42017-10-02 17:30:58 -07004856 sb.append(" CONNECTIVITY POWER SUMMARY END");
4857 pw.println(sb.toString());
4858 pw.println("");
4859
4860 pw.print(prefix);
Adam Lesinski50e47602015-12-04 17:04:54 -08004861 pw.print(" Bluetooth total received: "); pw.print(formatBytesLocked(btRxTotalBytes));
4862 pw.print(", sent: "); pw.println(formatBytesLocked(btTxTotalBytes));
4863
Adam Lesinski9f55cc72016-01-27 20:42:14 -08004864 final long bluetoothScanTimeMs = getBluetoothScanTime(rawRealtime, which) / 1000;
4865 sb.setLength(0);
4866 sb.append(prefix);
4867 sb.append(" Bluetooth scan time: "); formatTimeMs(sb, bluetoothScanTimeMs);
4868 pw.println(sb.toString());
4869
Adam Lesinski21f76aa2016-01-25 12:27:06 -08004870 printControllerActivity(pw, sb, prefix, "Bluetooth", getBluetoothControllerActivity(),
4871 which);
Adam Lesinskie283d332015-04-16 12:29:25 -07004872
Dianne Hackbornca1bf212014-02-14 14:18:36 -08004873 pw.println();
The Android Open Source Project10592532009-03-18 17:39:46 -07004874
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07004875 if (which == STATS_SINCE_UNPLUGGED) {
The Android Open Source Project10592532009-03-18 17:39:46 -07004876 if (getIsOnBattery()) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004877 pw.print(prefix); pw.println(" Device is currently unplugged");
Bookatzc8c44962017-05-11 12:12:54 -07004878 pw.print(prefix); pw.print(" Discharge cycle start level: ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004879 pw.println(getDischargeStartLevel());
4880 pw.print(prefix); pw.print(" Discharge cycle current level: ");
4881 pw.println(getDischargeCurrentLevel());
Dianne Hackborn99d04522010-08-20 13:43:00 -07004882 } else {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004883 pw.print(prefix); pw.println(" Device is currently plugged into power");
Bookatzc8c44962017-05-11 12:12:54 -07004884 pw.print(prefix); pw.print(" Last discharge cycle start level: ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004885 pw.println(getDischargeStartLevel());
Bookatzc8c44962017-05-11 12:12:54 -07004886 pw.print(prefix); pw.print(" Last discharge cycle end level: ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07004887 pw.println(getDischargeCurrentLevel());
The Android Open Source Project10592532009-03-18 17:39:46 -07004888 }
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08004889 pw.print(prefix); pw.print(" Amount discharged while screen on: ");
Mike Mac2f518a2017-09-19 16:06:03 -07004890 pw.println(getDischargeAmountScreenOn());
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08004891 pw.print(prefix); pw.print(" Amount discharged while screen off: ");
Mike Mac2f518a2017-09-19 16:06:03 -07004892 pw.println(getDischargeAmountScreenOff());
4893 pw.print(prefix); pw.print(" Amount discharged while screen doze: ");
4894 pw.println(getDischargeAmountScreenDoze());
Dianne Hackborn617f8772009-03-31 15:04:46 -07004895 pw.println(" ");
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07004896 } else {
4897 pw.print(prefix); pw.println(" Device battery use since last full charge");
4898 pw.print(prefix); pw.print(" Amount discharged (lower bound): ");
Mike Mac2f518a2017-09-19 16:06:03 -07004899 pw.println(getLowDischargeAmountSinceCharge());
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07004900 pw.print(prefix); pw.print(" Amount discharged (upper bound): ");
Mike Mac2f518a2017-09-19 16:06:03 -07004901 pw.println(getHighDischargeAmountSinceCharge());
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08004902 pw.print(prefix); pw.print(" Amount discharged while screen on: ");
Mike Mac2f518a2017-09-19 16:06:03 -07004903 pw.println(getDischargeAmountScreenOnSinceCharge());
Dianne Hackbornc1b40e32011-01-05 18:27:40 -08004904 pw.print(prefix); pw.print(" Amount discharged while screen off: ");
Mike Mac2f518a2017-09-19 16:06:03 -07004905 pw.println(getDischargeAmountScreenOffSinceCharge());
4906 pw.print(prefix); pw.print(" Amount discharged while screen doze: ");
4907 pw.println(getDischargeAmountScreenDozeSinceCharge());
Dianne Hackborn81038902012-11-26 17:04:09 -08004908 pw.println();
The Android Open Source Project10592532009-03-18 17:39:46 -07004909 }
Dianne Hackborn81038902012-11-26 17:04:09 -08004910
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004911 final BatteryStatsHelper helper = new BatteryStatsHelper(context, false, wifiOnly);
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004912 helper.create(this);
4913 helper.refreshStats(which, UserHandle.USER_ALL);
4914 List<BatterySipper> sippers = helper.getUsageList();
4915 if (sippers != null && sippers.size() > 0) {
4916 pw.print(prefix); pw.println(" Estimated power use (mAh):");
4917 pw.print(prefix); pw.print(" Capacity: ");
4918 printmAh(pw, helper.getPowerProfile().getBatteryCapacity());
Dianne Hackborn099bc622014-01-22 13:39:16 -08004919 pw.print(", Computed drain: "); printmAh(pw, helper.getComputedPower());
Dianne Hackborn536456f2014-05-23 16:51:05 -07004920 pw.print(", actual drain: "); printmAh(pw, helper.getMinDrainedPower());
4921 if (helper.getMinDrainedPower() != helper.getMaxDrainedPower()) {
4922 pw.print("-"); printmAh(pw, helper.getMaxDrainedPower());
4923 }
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004924 pw.println();
4925 for (int i=0; i<sippers.size(); i++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07004926 final BatterySipper bs = sippers.get(i);
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004927 pw.print(prefix);
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004928 switch (bs.drainType) {
4929 case IDLE:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004930 pw.print(" Idle: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004931 break;
4932 case CELL:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004933 pw.print(" Cell standby: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004934 break;
4935 case PHONE:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004936 pw.print(" Phone calls: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004937 break;
4938 case WIFI:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004939 pw.print(" Wifi: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004940 break;
4941 case BLUETOOTH:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004942 pw.print(" Bluetooth: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004943 break;
4944 case SCREEN:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004945 pw.print(" Screen: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004946 break;
Dianne Hackbornabc7c492014-06-30 16:57:46 -07004947 case FLASHLIGHT:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004948 pw.print(" Flashlight: ");
Dianne Hackbornabc7c492014-06-30 16:57:46 -07004949 break;
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004950 case APP:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004951 pw.print(" Uid ");
Dianne Hackbornd45665b2014-02-26 12:35:32 -08004952 UserHandle.formatUid(pw, bs.uidObj.getUid());
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004953 pw.print(": ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004954 break;
4955 case USER:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004956 pw.print(" User "); pw.print(bs.userId);
4957 pw.print(": ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004958 break;
4959 case UNACCOUNTED:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004960 pw.print(" Unaccounted: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004961 break;
4962 case OVERCOUNTED:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004963 pw.print(" Over-counted: ");
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004964 break;
Ruben Brunk5b1308f2015-06-03 18:49:27 -07004965 case CAMERA:
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004966 pw.print(" Camera: ");
4967 break;
4968 default:
4969 pw.print(" ???: ");
Ruben Brunk5b1308f2015-06-03 18:49:27 -07004970 break;
Dianne Hackborna7c837f2014-01-15 16:20:44 -08004971 }
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004972 printmAh(pw, bs.totalPowerMah);
4973
Adam Lesinski57123002015-06-12 16:12:07 -07004974 if (bs.usagePowerMah != bs.totalPowerMah) {
4975 // If the usage (generic power) isn't the whole amount, we list out
4976 // what components are involved in the calculation.
4977
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004978 pw.print(" (");
Adam Lesinski57123002015-06-12 16:12:07 -07004979 if (bs.usagePowerMah != 0) {
4980 pw.print(" usage=");
4981 printmAh(pw, bs.usagePowerMah);
4982 }
Adam Lesinski628ef9c2015-06-10 13:08:57 -07004983 if (bs.cpuPowerMah != 0) {
4984 pw.print(" cpu=");
4985 printmAh(pw, bs.cpuPowerMah);
4986 }
4987 if (bs.wakeLockPowerMah != 0) {
4988 pw.print(" wake=");
4989 printmAh(pw, bs.wakeLockPowerMah);
4990 }
4991 if (bs.mobileRadioPowerMah != 0) {
4992 pw.print(" radio=");
4993 printmAh(pw, bs.mobileRadioPowerMah);
4994 }
4995 if (bs.wifiPowerMah != 0) {
4996 pw.print(" wifi=");
4997 printmAh(pw, bs.wifiPowerMah);
4998 }
Adam Lesinski9f55cc72016-01-27 20:42:14 -08004999 if (bs.bluetoothPowerMah != 0) {
5000 pw.print(" bt=");
5001 printmAh(pw, bs.bluetoothPowerMah);
5002 }
Adam Lesinski628ef9c2015-06-10 13:08:57 -07005003 if (bs.gpsPowerMah != 0) {
5004 pw.print(" gps=");
5005 printmAh(pw, bs.gpsPowerMah);
5006 }
5007 if (bs.sensorPowerMah != 0) {
5008 pw.print(" sensor=");
5009 printmAh(pw, bs.sensorPowerMah);
5010 }
5011 if (bs.cameraPowerMah != 0) {
5012 pw.print(" camera=");
5013 printmAh(pw, bs.cameraPowerMah);
5014 }
5015 if (bs.flashlightPowerMah != 0) {
5016 pw.print(" flash=");
5017 printmAh(pw, bs.flashlightPowerMah);
5018 }
5019 pw.print(" )");
5020 }
Bookatz17d7d9d2017-06-08 14:50:46 -07005021
5022 // If there is additional smearing information, include it.
5023 if (bs.totalSmearedPowerMah != bs.totalPowerMah) {
5024 pw.print(" Including smearing: ");
5025 printmAh(pw, bs.totalSmearedPowerMah);
5026 pw.print(" (");
5027 if (bs.screenPowerMah != 0) {
5028 pw.print(" screen=");
5029 printmAh(pw, bs.screenPowerMah);
5030 }
5031 if (bs.proportionalSmearMah != 0) {
5032 pw.print(" proportional=");
5033 printmAh(pw, bs.proportionalSmearMah);
5034 }
5035 pw.print(" )");
5036 }
5037 if (bs.shouldHide) {
5038 pw.print(" Excluded from smearing");
5039 }
5040
Adam Lesinski628ef9c2015-06-10 13:08:57 -07005041 pw.println();
Dianne Hackborna7c837f2014-01-15 16:20:44 -08005042 }
Dianne Hackbornc46809e2014-01-15 16:20:44 -08005043 pw.println();
Dianne Hackborna7c837f2014-01-15 16:20:44 -08005044 }
5045
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005046 sippers = helper.getMobilemsppList();
5047 if (sippers != null && sippers.size() > 0) {
5048 pw.print(prefix); pw.println(" Per-app mobile ms per packet:");
Dianne Hackborn77b987f2014-02-26 16:20:52 -08005049 long totalTime = 0;
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005050 for (int i=0; i<sippers.size(); i++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005051 final BatterySipper bs = sippers.get(i);
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005052 sb.setLength(0);
5053 sb.append(prefix); sb.append(" Uid ");
5054 UserHandle.formatUid(sb, bs.uidObj.getUid());
5055 sb.append(": "); sb.append(BatteryStatsHelper.makemAh(bs.mobilemspp));
5056 sb.append(" ("); sb.append(bs.mobileRxPackets+bs.mobileTxPackets);
5057 sb.append(" packets over "); formatTimeMsNoSpace(sb, bs.mobileActive);
Dianne Hackborn77b987f2014-02-26 16:20:52 -08005058 sb.append(") "); sb.append(bs.mobileActiveCount); sb.append("x");
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005059 pw.println(sb.toString());
Dianne Hackborn77b987f2014-02-26 16:20:52 -08005060 totalTime += bs.mobileActive;
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005061 }
Dianne Hackborn77b987f2014-02-26 16:20:52 -08005062 sb.setLength(0);
5063 sb.append(prefix);
5064 sb.append(" TOTAL TIME: ");
5065 formatTimeMs(sb, totalTime);
5066 sb.append("("); sb.append(formatRatioLocked(totalTime, whichBatteryRealtime));
5067 sb.append(")");
5068 pw.println(sb.toString());
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005069 pw.println();
5070 }
5071
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005072 final Comparator<TimerEntry> timerComparator = new Comparator<TimerEntry>() {
5073 @Override
5074 public int compare(TimerEntry lhs, TimerEntry rhs) {
5075 long lhsTime = lhs.mTime;
5076 long rhsTime = rhs.mTime;
5077 if (lhsTime < rhsTime) {
5078 return 1;
5079 }
5080 if (lhsTime > rhsTime) {
5081 return -1;
5082 }
5083 return 0;
5084 }
5085 };
5086
5087 if (reqUid < 0) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005088 final Map<String, ? extends BatteryStats.Timer> kernelWakelocks
5089 = getKernelWakelockStats();
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005090 if (kernelWakelocks.size() > 0) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005091 final ArrayList<TimerEntry> ktimers = new ArrayList<>();
5092 for (Map.Entry<String, ? extends BatteryStats.Timer> ent
5093 : kernelWakelocks.entrySet()) {
5094 final BatteryStats.Timer timer = ent.getValue();
5095 final long totalTimeMillis = computeWakeLock(timer, rawRealtime, which);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005096 if (totalTimeMillis > 0) {
5097 ktimers.add(new TimerEntry(ent.getKey(), 0, timer, totalTimeMillis));
5098 }
5099 }
5100 if (ktimers.size() > 0) {
5101 Collections.sort(ktimers, timerComparator);
5102 pw.print(prefix); pw.println(" All kernel wake locks:");
5103 for (int i=0; i<ktimers.size(); i++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005104 final TimerEntry timer = ktimers.get(i);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005105 String linePrefix = ": ";
5106 sb.setLength(0);
5107 sb.append(prefix);
5108 sb.append(" Kernel Wake lock ");
5109 sb.append(timer.mName);
5110 linePrefix = printWakeLock(sb, timer.mTimer, rawRealtime, null,
5111 which, linePrefix);
5112 if (!linePrefix.equals(": ")) {
5113 sb.append(" realtime");
5114 // Only print out wake locks that were held
5115 pw.println(sb.toString());
5116 }
5117 }
5118 pw.println();
5119 }
5120 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08005121
Dianne Hackborna1bd7922014-03-21 11:07:11 -07005122 if (timers.size() > 0) {
5123 Collections.sort(timers, timerComparator);
5124 pw.print(prefix); pw.println(" All partial wake locks:");
5125 for (int i=0; i<timers.size(); i++) {
5126 TimerEntry timer = timers.get(i);
5127 sb.setLength(0);
5128 sb.append(" Wake lock ");
5129 UserHandle.formatUid(sb, timer.mId);
5130 sb.append(" ");
5131 sb.append(timer.mName);
5132 printWakeLock(sb, timer.mTimer, rawRealtime, null, which, ": ");
5133 sb.append(" realtime");
5134 pw.println(sb.toString());
5135 }
5136 timers.clear();
5137 pw.println();
Dianne Hackborn81038902012-11-26 17:04:09 -08005138 }
Dianne Hackborna1bd7922014-03-21 11:07:11 -07005139
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005140 final Map<String, ? extends Timer> wakeupReasons = getWakeupReasonStats();
Dianne Hackborna1bd7922014-03-21 11:07:11 -07005141 if (wakeupReasons.size() > 0) {
5142 pw.print(prefix); pw.println(" All wakeup reasons:");
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005143 final ArrayList<TimerEntry> reasons = new ArrayList<>();
Dianne Hackbornc3940bc2014-09-05 15:50:25 -07005144 for (Map.Entry<String, ? extends Timer> ent : wakeupReasons.entrySet()) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005145 final Timer timer = ent.getValue();
Dianne Hackbornc3940bc2014-09-05 15:50:25 -07005146 reasons.add(new TimerEntry(ent.getKey(), 0, timer,
5147 timer.getCountLocked(which)));
Dianne Hackborna1bd7922014-03-21 11:07:11 -07005148 }
5149 Collections.sort(reasons, timerComparator);
5150 for (int i=0; i<reasons.size(); i++) {
5151 TimerEntry timer = reasons.get(i);
5152 String linePrefix = ": ";
5153 sb.setLength(0);
5154 sb.append(prefix);
5155 sb.append(" Wakeup reason ");
5156 sb.append(timer.mName);
Dianne Hackbornc3940bc2014-09-05 15:50:25 -07005157 printWakeLock(sb, timer.mTimer, rawRealtime, null, which, ": ");
5158 sb.append(" realtime");
Dianne Hackborna1bd7922014-03-21 11:07:11 -07005159 pw.println(sb.toString());
5160 }
5161 pw.println();
5162 }
Dianne Hackborn81038902012-11-26 17:04:09 -08005163 }
Evan Millar22ac0432009-03-31 11:33:18 -07005164
James Carr2dd7e5e2016-07-20 18:48:39 -07005165 final LongSparseArray<? extends Timer> mMemoryStats = getKernelMemoryStats();
Bookatz50df7112017-08-04 14:53:26 -07005166 if (mMemoryStats.size() > 0) {
5167 pw.println(" Memory Stats");
5168 for (int i = 0; i < mMemoryStats.size(); i++) {
5169 sb.setLength(0);
5170 sb.append(" Bandwidth ");
5171 sb.append(mMemoryStats.keyAt(i));
5172 sb.append(" Time ");
5173 sb.append(mMemoryStats.valueAt(i).getTotalTimeLocked(rawRealtime, which));
5174 pw.println(sb.toString());
5175 }
5176 pw.println();
5177 }
5178
5179 final Map<String, ? extends Timer> rpmStats = getRpmStats();
5180 if (rpmStats.size() > 0) {
5181 pw.print(prefix); pw.println(" Resource Power Manager Stats");
5182 if (rpmStats.size() > 0) {
5183 for (Map.Entry<String, ? extends Timer> ent : rpmStats.entrySet()) {
5184 final String timerName = ent.getKey();
5185 final Timer timer = ent.getValue();
5186 printTimer(pw, sb, timer, rawRealtime, which, prefix, timerName);
5187 }
5188 }
5189 pw.println();
5190 }
Bookatz82b341172017-09-07 19:06:08 -07005191 if (SCREEN_OFF_RPM_STATS_ENABLED) {
5192 final Map<String, ? extends Timer> screenOffRpmStats = getScreenOffRpmStats();
Bookatz50df7112017-08-04 14:53:26 -07005193 if (screenOffRpmStats.size() > 0) {
Bookatz82b341172017-09-07 19:06:08 -07005194 pw.print(prefix);
5195 pw.println(" Resource Power Manager Stats for when screen was off");
5196 if (screenOffRpmStats.size() > 0) {
5197 for (Map.Entry<String, ? extends Timer> ent : screenOffRpmStats.entrySet()) {
5198 final String timerName = ent.getKey();
5199 final Timer timer = ent.getValue();
5200 printTimer(pw, sb, timer, rawRealtime, which, prefix, timerName);
5201 }
Bookatz50df7112017-08-04 14:53:26 -07005202 }
Bookatz82b341172017-09-07 19:06:08 -07005203 pw.println();
Bookatz50df7112017-08-04 14:53:26 -07005204 }
James Carr2dd7e5e2016-07-20 18:48:39 -07005205 }
5206
Sudheer Shanka9b735c52017-05-09 18:26:18 -07005207 final long[] cpuFreqs = getCpuFreqs();
5208 if (cpuFreqs != null) {
5209 sb.setLength(0);
Bookatz50df7112017-08-04 14:53:26 -07005210 sb.append(" CPU freqs:");
Sudheer Shanka9b735c52017-05-09 18:26:18 -07005211 for (int i = 0; i < cpuFreqs.length; ++i) {
5212 sb.append(" " + cpuFreqs[i]);
5213 }
5214 pw.println(sb.toString());
Bookatz50df7112017-08-04 14:53:26 -07005215 pw.println();
Sudheer Shanka9b735c52017-05-09 18:26:18 -07005216 }
5217
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005218 for (int iu=0; iu<NU; iu++) {
5219 final int uid = uidStats.keyAt(iu);
Dianne Hackborne4a59512010-12-07 11:08:07 -08005220 if (reqUid >= 0 && uid != reqUid && uid != Process.SYSTEM_UID) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08005221 continue;
5222 }
Bookatzc8c44962017-05-11 12:12:54 -07005223
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005224 final Uid u = uidStats.valueAt(iu);
Dianne Hackborna4cc2052013-07-08 17:31:25 -07005225
5226 pw.print(prefix);
5227 pw.print(" ");
5228 UserHandle.formatUid(pw, uid);
5229 pw.println(":");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005230 boolean uidActivity = false;
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005231
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005232 final long mobileRxBytes = u.getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which);
5233 final long mobileTxBytes = u.getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which);
5234 final long wifiRxBytes = u.getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which);
5235 final long wifiTxBytes = u.getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which);
Adam Lesinski50e47602015-12-04 17:04:54 -08005236 final long btRxBytes = u.getNetworkActivityBytes(NETWORK_BT_RX_DATA, which);
5237 final long btTxBytes = u.getNetworkActivityBytes(NETWORK_BT_TX_DATA, which);
5238
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005239 final long mobileRxPackets = u.getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which);
5240 final long mobileTxPackets = u.getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005241 final long wifiRxPackets = u.getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which);
5242 final long wifiTxPackets = u.getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which);
Adam Lesinski50e47602015-12-04 17:04:54 -08005243
5244 final long uidMobileActiveTime = u.getMobileRadioActiveTime(which);
5245 final int uidMobileActiveCount = u.getMobileRadioActiveCount(which);
5246
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005247 final long fullWifiLockOnTime = u.getFullWifiLockTime(rawRealtime, which);
5248 final long wifiScanTime = u.getWifiScanTime(rawRealtime, which);
5249 final int wifiScanCount = u.getWifiScanCount(which);
Bookatz867c0d72017-03-07 18:23:42 -08005250 final int wifiScanCountBg = u.getWifiScanBackgroundCount(which);
5251 // 'actualTime' are unpooled and always since reset (regardless of 'which')
5252 final long wifiScanActualTime = u.getWifiScanActualTime(rawRealtime);
5253 final long wifiScanActualTimeBg = u.getWifiScanBackgroundTime(rawRealtime);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005254 final long uidWifiRunningTime = u.getWifiRunningTime(rawRealtime, which);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07005255
Adam Lesinski5f056f62016-07-14 16:56:08 -07005256 final long mobileWakeup = u.getMobileRadioApWakeupCount(which);
5257 final long wifiWakeup = u.getWifiRadioApWakeupCount(which);
5258
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08005259 if (mobileRxBytes > 0 || mobileTxBytes > 0
5260 || mobileRxPackets > 0 || mobileTxPackets > 0) {
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07005261 pw.print(prefix); pw.print(" Mobile network: ");
5262 pw.print(formatBytesLocked(mobileRxBytes)); pw.print(" received, ");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08005263 pw.print(formatBytesLocked(mobileTxBytes));
5264 pw.print(" sent (packets "); pw.print(mobileRxPackets);
5265 pw.print(" received, "); pw.print(mobileTxPackets); pw.println(" sent)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005266 }
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005267 if (uidMobileActiveTime > 0 || uidMobileActiveCount > 0) {
5268 sb.setLength(0);
5269 sb.append(prefix); sb.append(" Mobile radio active: ");
5270 formatTimeMs(sb, uidMobileActiveTime / 1000);
5271 sb.append("(");
5272 sb.append(formatRatioLocked(uidMobileActiveTime, mobileActiveTime));
5273 sb.append(") "); sb.append(uidMobileActiveCount); sb.append("x");
5274 long packets = mobileRxPackets + mobileTxPackets;
5275 if (packets == 0) {
5276 packets = 1;
5277 }
5278 sb.append(" @ ");
5279 sb.append(BatteryStatsHelper.makemAh(uidMobileActiveTime / 1000 / (double)packets));
5280 sb.append(" mspp");
5281 pw.println(sb.toString());
5282 }
5283
Adam Lesinski5f056f62016-07-14 16:56:08 -07005284 if (mobileWakeup > 0) {
5285 sb.setLength(0);
5286 sb.append(prefix);
5287 sb.append(" Mobile radio AP wakeups: ");
5288 sb.append(mobileWakeup);
5289 pw.println(sb.toString());
5290 }
5291
Siddharth Rayb50a6842017-12-14 15:15:28 -08005292 printControllerActivityIfInteresting(pw, sb, prefix + " ",
5293 CELLULAR_CONTROLLER_NAME, u.getModemControllerActivity(), which);
Adam Lesinski21f76aa2016-01-25 12:27:06 -08005294
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08005295 if (wifiRxBytes > 0 || wifiTxBytes > 0 || wifiRxPackets > 0 || wifiTxPackets > 0) {
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07005296 pw.print(prefix); pw.print(" Wi-Fi network: ");
5297 pw.print(formatBytesLocked(wifiRxBytes)); pw.print(" received, ");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08005298 pw.print(formatBytesLocked(wifiTxBytes));
5299 pw.print(" sent (packets "); pw.print(wifiRxPackets);
5300 pw.print(" received, "); pw.print(wifiTxPackets); pw.println(" sent)");
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07005301 }
5302
Dianne Hackborn62793e42015-03-09 11:15:41 -07005303 if (fullWifiLockOnTime != 0 || wifiScanTime != 0 || wifiScanCount != 0
Bookatz867c0d72017-03-07 18:23:42 -08005304 || wifiScanCountBg != 0 || wifiScanActualTime != 0 || wifiScanActualTimeBg != 0
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005305 || uidWifiRunningTime != 0) {
5306 sb.setLength(0);
5307 sb.append(prefix); sb.append(" Wifi Running: ");
5308 formatTimeMs(sb, uidWifiRunningTime / 1000);
5309 sb.append("("); sb.append(formatRatioLocked(uidWifiRunningTime,
5310 whichBatteryRealtime)); sb.append(")\n");
Bookatzc8c44962017-05-11 12:12:54 -07005311 sb.append(prefix); sb.append(" Full Wifi Lock: ");
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005312 formatTimeMs(sb, fullWifiLockOnTime / 1000);
5313 sb.append("("); sb.append(formatRatioLocked(fullWifiLockOnTime,
5314 whichBatteryRealtime)); sb.append(")\n");
Bookatz867c0d72017-03-07 18:23:42 -08005315 sb.append(prefix); sb.append(" Wifi Scan (blamed): ");
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005316 formatTimeMs(sb, wifiScanTime / 1000);
5317 sb.append("("); sb.append(formatRatioLocked(wifiScanTime,
Dianne Hackborn62793e42015-03-09 11:15:41 -07005318 whichBatteryRealtime)); sb.append(") ");
5319 sb.append(wifiScanCount);
Bookatz867c0d72017-03-07 18:23:42 -08005320 sb.append("x\n");
5321 // actual and background times are unpooled and since reset (regardless of 'which')
5322 sb.append(prefix); sb.append(" Wifi Scan (actual): ");
5323 formatTimeMs(sb, wifiScanActualTime / 1000);
5324 sb.append("("); sb.append(formatRatioLocked(wifiScanActualTime,
5325 computeBatteryRealtime(rawRealtime, STATS_SINCE_CHARGED)));
5326 sb.append(") ");
5327 sb.append(wifiScanCount);
5328 sb.append("x\n");
5329 sb.append(prefix); sb.append(" Background Wifi Scan: ");
5330 formatTimeMs(sb, wifiScanActualTimeBg / 1000);
5331 sb.append("("); sb.append(formatRatioLocked(wifiScanActualTimeBg,
5332 computeBatteryRealtime(rawRealtime, STATS_SINCE_CHARGED)));
5333 sb.append(") ");
5334 sb.append(wifiScanCountBg);
Dianne Hackborn62793e42015-03-09 11:15:41 -07005335 sb.append("x");
Dianne Hackbornd45665b2014-02-26 12:35:32 -08005336 pw.println(sb.toString());
5337 }
5338
Adam Lesinski5f056f62016-07-14 16:56:08 -07005339 if (wifiWakeup > 0) {
5340 sb.setLength(0);
5341 sb.append(prefix);
5342 sb.append(" WiFi AP wakeups: ");
5343 sb.append(wifiWakeup);
5344 pw.println(sb.toString());
5345 }
5346
Siddharth Rayb50a6842017-12-14 15:15:28 -08005347 printControllerActivityIfInteresting(pw, sb, prefix + " ", WIFI_CONTROLLER_NAME,
Adam Lesinski21f76aa2016-01-25 12:27:06 -08005348 u.getWifiControllerActivity(), which);
Adam Lesinski049c88b2015-05-28 11:38:12 -07005349
Adam Lesinski50e47602015-12-04 17:04:54 -08005350 if (btRxBytes > 0 || btTxBytes > 0) {
5351 pw.print(prefix); pw.print(" Bluetooth network: ");
5352 pw.print(formatBytesLocked(btRxBytes)); pw.print(" received, ");
5353 pw.print(formatBytesLocked(btTxBytes));
5354 pw.println(" sent");
5355 }
5356
Bookatz867c0d72017-03-07 18:23:42 -08005357 final Timer bleTimer = u.getBluetoothScanTimer();
5358 if (bleTimer != null) {
5359 // Convert from microseconds to milliseconds with rounding
5360 final long totalTimeMs = (bleTimer.getTotalTimeLocked(rawRealtime, which) + 500)
5361 / 1000;
5362 if (totalTimeMs != 0) {
5363 final int count = bleTimer.getCountLocked(which);
5364 final Timer bleTimerBg = u.getBluetoothScanBackgroundTimer();
5365 final int countBg = bleTimerBg != null ? bleTimerBg.getCountLocked(which) : 0;
Bookatz867c0d72017-03-07 18:23:42 -08005366 // 'actualTime' are unpooled and always since reset (regardless of 'which')
5367 final long actualTimeMs = bleTimer.getTotalDurationMsLocked(rawRealtimeMs);
5368 final long actualTimeMsBg = bleTimerBg != null ?
5369 bleTimerBg.getTotalDurationMsLocked(rawRealtimeMs) : 0;
Bookatzb1f04f32017-05-19 13:57:32 -07005370 // Result counters
Bookatz956f36bf2017-04-28 09:48:17 -07005371 final int resultCount = u.getBluetoothScanResultCounter() != null ?
5372 u.getBluetoothScanResultCounter().getCountLocked(which) : 0;
Bookatzb1f04f32017-05-19 13:57:32 -07005373 final int resultCountBg = u.getBluetoothScanResultBgCounter() != null ?
5374 u.getBluetoothScanResultBgCounter().getCountLocked(which) : 0;
5375 // Unoptimized scan timer. Unpooled and since reset (regardless of 'which').
5376 final Timer unoptimizedScanTimer = u.getBluetoothUnoptimizedScanTimer();
5377 final long unoptimizedScanTotalTime = unoptimizedScanTimer != null ?
5378 unoptimizedScanTimer.getTotalDurationMsLocked(rawRealtimeMs) : 0;
5379 final long unoptimizedScanMaxTime = unoptimizedScanTimer != null ?
5380 unoptimizedScanTimer.getMaxDurationMsLocked(rawRealtimeMs) : 0;
5381 // Unoptimized bg scan timer. Unpooled and since reset (regardless of 'which').
5382 final Timer unoptimizedScanTimerBg =
5383 u.getBluetoothUnoptimizedScanBackgroundTimer();
5384 final long unoptimizedScanTotalTimeBg = unoptimizedScanTimerBg != null ?
5385 unoptimizedScanTimerBg.getTotalDurationMsLocked(rawRealtimeMs) : 0;
5386 final long unoptimizedScanMaxTimeBg = unoptimizedScanTimerBg != null ?
5387 unoptimizedScanTimerBg.getMaxDurationMsLocked(rawRealtimeMs) : 0;
Bookatz867c0d72017-03-07 18:23:42 -08005388
5389 sb.setLength(0);
Bookatz867c0d72017-03-07 18:23:42 -08005390 if (actualTimeMs != totalTimeMs) {
Bookatzb1f04f32017-05-19 13:57:32 -07005391 sb.append(prefix);
5392 sb.append(" Bluetooth Scan (total blamed realtime): ");
Bookatz867c0d72017-03-07 18:23:42 -08005393 formatTimeMs(sb, totalTimeMs);
Bookatzb1f04f32017-05-19 13:57:32 -07005394 sb.append(" (");
5395 sb.append(count);
5396 sb.append(" times)");
5397 if (bleTimer.isRunningLocked()) {
5398 sb.append(" (currently running)");
5399 }
5400 sb.append("\n");
Bookatz867c0d72017-03-07 18:23:42 -08005401 }
Bookatzb1f04f32017-05-19 13:57:32 -07005402
5403 sb.append(prefix);
5404 sb.append(" Bluetooth Scan (total actual realtime): ");
5405 formatTimeMs(sb, actualTimeMs); // since reset, ignores 'which'
5406 sb.append(" (");
Bookatz867c0d72017-03-07 18:23:42 -08005407 sb.append(count);
5408 sb.append(" times)");
5409 if (bleTimer.isRunningLocked()) {
Bookatzb1f04f32017-05-19 13:57:32 -07005410 sb.append(" (currently running)");
Bookatz867c0d72017-03-07 18:23:42 -08005411 }
Bookatzb1f04f32017-05-19 13:57:32 -07005412 sb.append("\n");
5413 if (actualTimeMsBg > 0 || countBg > 0) {
5414 sb.append(prefix);
5415 sb.append(" Bluetooth Scan (background realtime): ");
5416 formatTimeMs(sb, actualTimeMsBg); // since reset, ignores 'which'
5417 sb.append(" (");
Bookatz867c0d72017-03-07 18:23:42 -08005418 sb.append(countBg);
5419 sb.append(" times)");
Bookatzb1f04f32017-05-19 13:57:32 -07005420 if (bleTimerBg != null && bleTimerBg.isRunningLocked()) {
5421 sb.append(" (currently running in background)");
5422 }
5423 sb.append("\n");
Bookatz867c0d72017-03-07 18:23:42 -08005424 }
Bookatzb1f04f32017-05-19 13:57:32 -07005425
5426 sb.append(prefix);
5427 sb.append(" Bluetooth Scan Results: ");
Bookatz956f36bf2017-04-28 09:48:17 -07005428 sb.append(resultCount);
Bookatzb1f04f32017-05-19 13:57:32 -07005429 sb.append(" (");
5430 sb.append(resultCountBg);
5431 sb.append(" in background)");
5432
5433 if (unoptimizedScanTotalTime > 0 || unoptimizedScanTotalTimeBg > 0) {
5434 sb.append("\n");
5435 sb.append(prefix);
5436 sb.append(" Unoptimized Bluetooth Scan (realtime): ");
5437 formatTimeMs(sb, unoptimizedScanTotalTime); // since reset, ignores 'which'
5438 sb.append(" (max ");
5439 formatTimeMs(sb, unoptimizedScanMaxTime); // since reset, ignores 'which'
5440 sb.append(")");
5441 if (unoptimizedScanTimer != null
5442 && unoptimizedScanTimer.isRunningLocked()) {
5443 sb.append(" (currently running unoptimized)");
5444 }
5445 if (unoptimizedScanTimerBg != null && unoptimizedScanTotalTimeBg > 0) {
5446 sb.append("\n");
5447 sb.append(prefix);
5448 sb.append(" Unoptimized Bluetooth Scan (background realtime): ");
5449 formatTimeMs(sb, unoptimizedScanTotalTimeBg); // since reset
5450 sb.append(" (max ");
5451 formatTimeMs(sb, unoptimizedScanMaxTimeBg); // since reset
5452 sb.append(")");
5453 if (unoptimizedScanTimerBg.isRunningLocked()) {
5454 sb.append(" (currently running unoptimized in background)");
5455 }
5456 }
5457 }
Bookatz867c0d72017-03-07 18:23:42 -08005458 pw.println(sb.toString());
5459 uidActivity = true;
5460 }
5461 }
5462
5463
Adam Lesinski9f55cc72016-01-27 20:42:14 -08005464
Dianne Hackborn617f8772009-03-31 15:04:46 -07005465 if (u.hasUserActivity()) {
5466 boolean hasData = false;
Raph Levien4c7a4a72012-08-03 14:32:39 -07005467 for (int i=0; i<Uid.NUM_USER_ACTIVITY_TYPES; i++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005468 final int val = u.getUserActivityCount(i, which);
Dianne Hackborn617f8772009-03-31 15:04:46 -07005469 if (val != 0) {
5470 if (!hasData) {
5471 sb.setLength(0);
5472 sb.append(" User activity: ");
5473 hasData = true;
5474 } else {
5475 sb.append(", ");
5476 }
5477 sb.append(val);
5478 sb.append(" ");
5479 sb.append(Uid.USER_ACTIVITY_TYPES[i]);
5480 }
5481 }
5482 if (hasData) {
5483 pw.println(sb.toString());
5484 }
5485 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005486
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005487 final ArrayMap<String, ? extends BatteryStats.Uid.Wakelock> wakelocks
5488 = u.getWakelockStats();
5489 long totalFullWakelock = 0, totalPartialWakelock = 0, totalWindowWakelock = 0;
Jeff Brown6a8bd7b2015-06-19 15:07:51 -07005490 long totalDrawWakelock = 0;
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005491 int countWakelock = 0;
5492 for (int iw=wakelocks.size()-1; iw>=0; iw--) {
5493 final Uid.Wakelock wl = wakelocks.valueAt(iw);
5494 String linePrefix = ": ";
5495 sb.setLength(0);
5496 sb.append(prefix);
5497 sb.append(" Wake lock ");
5498 sb.append(wakelocks.keyAt(iw));
5499 linePrefix = printWakeLock(sb, wl.getWakeTime(WAKE_TYPE_FULL), rawRealtime,
5500 "full", which, linePrefix);
Bookatz5b5ec322017-05-26 09:40:38 -07005501 final Timer pTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
5502 linePrefix = printWakeLock(sb, pTimer, rawRealtime,
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005503 "partial", which, linePrefix);
Bookatz5b5ec322017-05-26 09:40:38 -07005504 linePrefix = printWakeLock(sb, pTimer != null ? pTimer.getSubTimer() : null,
5505 rawRealtime, "background partial", which, linePrefix);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005506 linePrefix = printWakeLock(sb, wl.getWakeTime(WAKE_TYPE_WINDOW), rawRealtime,
5507 "window", which, linePrefix);
Jeff Brown6a8bd7b2015-06-19 15:07:51 -07005508 linePrefix = printWakeLock(sb, wl.getWakeTime(WAKE_TYPE_DRAW), rawRealtime,
5509 "draw", which, linePrefix);
Adam Lesinski9425fe22015-06-19 12:02:13 -07005510 sb.append(" realtime");
5511 pw.println(sb.toString());
5512 uidActivity = true;
5513 countWakelock++;
5514
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005515 totalFullWakelock += computeWakeLock(wl.getWakeTime(WAKE_TYPE_FULL),
5516 rawRealtime, which);
5517 totalPartialWakelock += computeWakeLock(wl.getWakeTime(WAKE_TYPE_PARTIAL),
5518 rawRealtime, which);
5519 totalWindowWakelock += computeWakeLock(wl.getWakeTime(WAKE_TYPE_WINDOW),
5520 rawRealtime, which);
Jeff Brown6a8bd7b2015-06-19 15:07:51 -07005521 totalDrawWakelock += computeWakeLock(wl.getWakeTime(WAKE_TYPE_DRAW),
Adam Lesinski9425fe22015-06-19 12:02:13 -07005522 rawRealtime, which);
Dianne Hackbornfdb19562014-07-11 16:03:36 -07005523 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005524 if (countWakelock > 1) {
Bookatzc8c44962017-05-11 12:12:54 -07005525 // get unpooled partial wakelock quantities (unlike totalPartialWakelock, which is
5526 // pooled and therefore just a lower bound)
5527 long actualTotalPartialWakelock = 0;
5528 long actualBgPartialWakelock = 0;
5529 if (u.getAggregatedPartialWakelockTimer() != null) {
5530 final Timer aggTimer = u.getAggregatedPartialWakelockTimer();
5531 // Convert from microseconds to milliseconds with rounding
5532 actualTotalPartialWakelock =
Bookatz6d799932017-06-07 12:30:07 -07005533 aggTimer.getTotalDurationMsLocked(rawRealtimeMs);
Bookatzc8c44962017-05-11 12:12:54 -07005534 final Timer bgAggTimer = aggTimer.getSubTimer();
5535 actualBgPartialWakelock = bgAggTimer != null ?
Bookatz6d799932017-06-07 12:30:07 -07005536 bgAggTimer.getTotalDurationMsLocked(rawRealtimeMs) : 0;
Bookatzc8c44962017-05-11 12:12:54 -07005537 }
5538
5539 if (actualTotalPartialWakelock != 0 || actualBgPartialWakelock != 0 ||
5540 totalFullWakelock != 0 || totalPartialWakelock != 0 ||
5541 totalWindowWakelock != 0) {
Dianne Hackbornfdb19562014-07-11 16:03:36 -07005542 sb.setLength(0);
5543 sb.append(prefix);
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005544 sb.append(" TOTAL wake: ");
5545 boolean needComma = false;
5546 if (totalFullWakelock != 0) {
5547 needComma = true;
5548 formatTimeMs(sb, totalFullWakelock);
5549 sb.append("full");
Dianne Hackbornfdb19562014-07-11 16:03:36 -07005550 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005551 if (totalPartialWakelock != 0) {
5552 if (needComma) {
5553 sb.append(", ");
5554 }
5555 needComma = true;
5556 formatTimeMs(sb, totalPartialWakelock);
Bookatzc8c44962017-05-11 12:12:54 -07005557 sb.append("blamed partial");
5558 }
5559 if (actualTotalPartialWakelock != 0) {
5560 if (needComma) {
5561 sb.append(", ");
5562 }
5563 needComma = true;
5564 formatTimeMs(sb, actualTotalPartialWakelock);
5565 sb.append("actual partial");
5566 }
5567 if (actualBgPartialWakelock != 0) {
5568 if (needComma) {
5569 sb.append(", ");
5570 }
5571 needComma = true;
5572 formatTimeMs(sb, actualBgPartialWakelock);
5573 sb.append("actual background partial");
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005574 }
5575 if (totalWindowWakelock != 0) {
5576 if (needComma) {
5577 sb.append(", ");
5578 }
5579 needComma = true;
5580 formatTimeMs(sb, totalWindowWakelock);
5581 sb.append("window");
5582 }
Jeff Brown6a8bd7b2015-06-19 15:07:51 -07005583 if (totalDrawWakelock != 0) {
Adam Lesinski9425fe22015-06-19 12:02:13 -07005584 if (needComma) {
5585 sb.append(",");
5586 }
5587 needComma = true;
Jeff Brown6a8bd7b2015-06-19 15:07:51 -07005588 formatTimeMs(sb, totalDrawWakelock);
5589 sb.append("draw");
Adam Lesinski9425fe22015-06-19 12:02:13 -07005590 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005591 sb.append(" realtime");
Dianne Hackbornfdb19562014-07-11 16:03:36 -07005592 pw.println(sb.toString());
Dianne Hackbornfdb19562014-07-11 16:03:36 -07005593 }
5594 }
5595
Ahmed ElArabawyddd09692017-10-30 17:58:29 -07005596 // Calculate multicast wakelock stats
5597 final Timer mcTimer = u.getMulticastWakelockStats();
5598 if (mcTimer != null) {
5599 final long multicastWakeLockTimeMicros = mcTimer.getTotalTimeLocked(rawRealtime, which);
5600 final int multicastWakeLockCount = mcTimer.getCountLocked(which);
5601
5602 if (multicastWakeLockTimeMicros > 0) {
5603 sb.setLength(0);
5604 sb.append(prefix);
5605 sb.append(" WiFi Multicast Wakelock");
5606 sb.append(" count = ");
5607 sb.append(multicastWakeLockCount);
5608 sb.append(" time = ");
5609 formatTimeMsNoSpace(sb, (multicastWakeLockTimeMicros + 500) / 1000);
5610 pw.println(sb.toString());
5611 }
5612 }
5613
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005614 final ArrayMap<String, ? extends Timer> syncs = u.getSyncStats();
5615 for (int isy=syncs.size()-1; isy>=0; isy--) {
5616 final Timer timer = syncs.valueAt(isy);
5617 // Convert from microseconds to milliseconds with rounding
5618 final long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000;
5619 final int count = timer.getCountLocked(which);
Bookatz2bffb5b2017-04-13 11:59:33 -07005620 final Timer bgTimer = timer.getSubTimer();
5621 final long bgTime = bgTimer != null ?
Bookatz6d799932017-06-07 12:30:07 -07005622 bgTimer.getTotalDurationMsLocked(rawRealtimeMs) : -1;
Bookatz2bffb5b2017-04-13 11:59:33 -07005623 final int bgCount = bgTimer != null ? bgTimer.getCountLocked(which) : -1;
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005624 sb.setLength(0);
5625 sb.append(prefix);
5626 sb.append(" Sync ");
5627 sb.append(syncs.keyAt(isy));
5628 sb.append(": ");
5629 if (totalTime != 0) {
5630 formatTimeMs(sb, totalTime);
5631 sb.append("realtime (");
5632 sb.append(count);
5633 sb.append(" times)");
Bookatz2bffb5b2017-04-13 11:59:33 -07005634 if (bgTime > 0) {
5635 sb.append(", ");
5636 formatTimeMs(sb, bgTime);
5637 sb.append("background (");
5638 sb.append(bgCount);
5639 sb.append(" times)");
5640 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005641 } else {
5642 sb.append("(not used)");
5643 }
5644 pw.println(sb.toString());
5645 uidActivity = true;
5646 }
5647
5648 final ArrayMap<String, ? extends Timer> jobs = u.getJobStats();
5649 for (int ij=jobs.size()-1; ij>=0; ij--) {
5650 final Timer timer = jobs.valueAt(ij);
5651 // Convert from microseconds to milliseconds with rounding
5652 final long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500) / 1000;
5653 final int count = timer.getCountLocked(which);
Bookatzaa4594a2017-03-24 12:39:56 -07005654 final Timer bgTimer = timer.getSubTimer();
5655 final long bgTime = bgTimer != null ?
Bookatz6d799932017-06-07 12:30:07 -07005656 bgTimer.getTotalDurationMsLocked(rawRealtimeMs) : -1;
Bookatzaa4594a2017-03-24 12:39:56 -07005657 final int bgCount = bgTimer != null ? bgTimer.getCountLocked(which) : -1;
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005658 sb.setLength(0);
5659 sb.append(prefix);
5660 sb.append(" Job ");
5661 sb.append(jobs.keyAt(ij));
5662 sb.append(": ");
5663 if (totalTime != 0) {
5664 formatTimeMs(sb, totalTime);
5665 sb.append("realtime (");
5666 sb.append(count);
5667 sb.append(" times)");
Bookatzaa4594a2017-03-24 12:39:56 -07005668 if (bgTime > 0) {
5669 sb.append(", ");
5670 formatTimeMs(sb, bgTime);
5671 sb.append("background (");
5672 sb.append(bgCount);
5673 sb.append(" times)");
5674 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005675 } else {
5676 sb.append("(not used)");
5677 }
5678 pw.println(sb.toString());
5679 uidActivity = true;
5680 }
5681
Dianne Hackborn94326cb2017-06-28 16:17:20 -07005682 final ArrayMap<String, SparseIntArray> completions = u.getJobCompletionStats();
5683 for (int ic=completions.size()-1; ic>=0; ic--) {
5684 SparseIntArray types = completions.valueAt(ic);
5685 if (types != null) {
5686 pw.print(prefix);
5687 pw.print(" Job Completions ");
5688 pw.print(completions.keyAt(ic));
5689 pw.print(":");
5690 for (int it=0; it<types.size(); it++) {
5691 pw.print(" ");
5692 pw.print(JobParameters.getReasonName(types.keyAt(it)));
5693 pw.print("(");
5694 pw.print(types.valueAt(it));
5695 pw.print("x)");
5696 }
5697 pw.println();
5698 }
5699 }
5700
Ruben Brunk6d2c3632015-05-26 17:32:16 -07005701 uidActivity |= printTimer(pw, sb, u.getFlashlightTurnedOnTimer(), rawRealtime, which,
5702 prefix, "Flashlight");
5703 uidActivity |= printTimer(pw, sb, u.getCameraTurnedOnTimer(), rawRealtime, which,
5704 prefix, "Camera");
5705 uidActivity |= printTimer(pw, sb, u.getVideoTurnedOnTimer(), rawRealtime, which,
5706 prefix, "Video");
5707 uidActivity |= printTimer(pw, sb, u.getAudioTurnedOnTimer(), rawRealtime, which,
5708 prefix, "Audio");
5709
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005710 final SparseArray<? extends BatteryStats.Uid.Sensor> sensors = u.getSensorStats();
5711 final int NSE = sensors.size();
Dianne Hackborn61659e52014-07-09 16:13:01 -07005712 for (int ise=0; ise<NSE; ise++) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005713 final Uid.Sensor se = sensors.valueAt(ise);
5714 final int sensorNumber = sensors.keyAt(ise);
Dianne Hackborn61659e52014-07-09 16:13:01 -07005715 sb.setLength(0);
5716 sb.append(prefix);
5717 sb.append(" Sensor ");
5718 int handle = se.getHandle();
5719 if (handle == Uid.Sensor.GPS) {
5720 sb.append("GPS");
5721 } else {
5722 sb.append(handle);
5723 }
5724 sb.append(": ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005725
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005726 final Timer timer = se.getSensorTime();
Dianne Hackborn61659e52014-07-09 16:13:01 -07005727 if (timer != null) {
5728 // Convert from microseconds to milliseconds with rounding
Bookatz867c0d72017-03-07 18:23:42 -08005729 final long totalTime = (timer.getTotalTimeLocked(rawRealtime, which) + 500)
5730 / 1000;
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005731 final int count = timer.getCountLocked(which);
Bookatz867c0d72017-03-07 18:23:42 -08005732 final Timer bgTimer = se.getSensorBackgroundTime();
5733 final int bgCount = bgTimer != null ? bgTimer.getCountLocked(which) : 0;
Bookatz867c0d72017-03-07 18:23:42 -08005734 // 'actualTime' are unpooled and always since reset (regardless of 'which')
5735 final long actualTime = timer.getTotalDurationMsLocked(rawRealtimeMs);
5736 final long bgActualTime = bgTimer != null ?
5737 bgTimer.getTotalDurationMsLocked(rawRealtimeMs) : 0;
5738
Dianne Hackborn61659e52014-07-09 16:13:01 -07005739 //timer.logState();
5740 if (totalTime != 0) {
Bookatz867c0d72017-03-07 18:23:42 -08005741 if (actualTime != totalTime) {
5742 formatTimeMs(sb, totalTime);
5743 sb.append("blamed realtime, ");
5744 }
5745
5746 formatTimeMs(sb, actualTime); // since reset, regardless of 'which'
Dianne Hackborn61659e52014-07-09 16:13:01 -07005747 sb.append("realtime (");
5748 sb.append(count);
Bookatz867c0d72017-03-07 18:23:42 -08005749 sb.append(" times)");
5750
5751 if (bgActualTime != 0 || bgCount > 0) {
Amith Yamasaniab9ad192016-12-06 12:46:59 -08005752 sb.append(", ");
Bookatz867c0d72017-03-07 18:23:42 -08005753 formatTimeMs(sb, bgActualTime); // since reset, regardless of 'which'
5754 sb.append("background (");
Amith Yamasaniab9ad192016-12-06 12:46:59 -08005755 sb.append(bgCount);
Bookatz867c0d72017-03-07 18:23:42 -08005756 sb.append(" times)");
Amith Yamasaniab9ad192016-12-06 12:46:59 -08005757 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005758 } else {
5759 sb.append("(not used)");
5760 }
Dianne Hackborn61659e52014-07-09 16:13:01 -07005761 } else {
5762 sb.append("(not used)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005763 }
Dianne Hackborn61659e52014-07-09 16:13:01 -07005764
5765 pw.println(sb.toString());
5766 uidActivity = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005767 }
5768
Ruben Brunk6d2c3632015-05-26 17:32:16 -07005769 uidActivity |= printTimer(pw, sb, u.getVibratorOnTimer(), rawRealtime, which, prefix,
5770 "Vibrator");
5771 uidActivity |= printTimer(pw, sb, u.getForegroundActivityTimer(), rawRealtime, which,
5772 prefix, "Foreground activities");
Michael Wachenschwanzb05a3c52017-07-07 17:47:04 -07005773 uidActivity |= printTimer(pw, sb, u.getForegroundServiceTimer(), rawRealtime, which,
5774 prefix, "Foreground services");
Jeff Sharkey3e013e82013-04-25 14:48:19 -07005775
Dianne Hackborn61659e52014-07-09 16:13:01 -07005776 long totalStateTime = 0;
5777 for (int ips=0; ips<Uid.NUM_PROCESS_STATE; ips++) {
5778 long time = u.getProcessStateTime(ips, rawRealtime, which);
5779 if (time > 0) {
5780 totalStateTime += time;
5781 sb.setLength(0);
5782 sb.append(prefix);
5783 sb.append(" ");
5784 sb.append(Uid.PROCESS_STATE_NAMES[ips]);
5785 sb.append(" for: ");
Dianne Hackborna8d10942015-11-19 17:55:19 -08005786 formatTimeMs(sb, (time + 500) / 1000);
Dianne Hackborn61659e52014-07-09 16:13:01 -07005787 pw.println(sb.toString());
5788 uidActivity = true;
5789 }
5790 }
Dianne Hackborna8d10942015-11-19 17:55:19 -08005791 if (totalStateTime > 0) {
5792 sb.setLength(0);
5793 sb.append(prefix);
5794 sb.append(" Total running: ");
5795 formatTimeMs(sb, (totalStateTime + 500) / 1000);
5796 pw.println(sb.toString());
5797 }
Dianne Hackborn61659e52014-07-09 16:13:01 -07005798
Adam Lesinski06af1fa2015-05-05 17:35:35 -07005799 final long userCpuTimeUs = u.getUserCpuTimeUs(which);
5800 final long systemCpuTimeUs = u.getSystemCpuTimeUs(which);
Adam Lesinskid4abd1e2017-04-12 11:29:13 -07005801 if (userCpuTimeUs > 0 || systemCpuTimeUs > 0) {
Adam Lesinski06af1fa2015-05-05 17:35:35 -07005802 sb.setLength(0);
5803 sb.append(prefix);
Adam Lesinski72478f02015-06-17 15:39:43 -07005804 sb.append(" Total cpu time: u=");
5805 formatTimeMs(sb, userCpuTimeUs / 1000);
5806 sb.append("s=");
5807 formatTimeMs(sb, systemCpuTimeUs / 1000);
Adam Lesinski06af1fa2015-05-05 17:35:35 -07005808 pw.println(sb.toString());
5809 }
5810
Sudheer Shanka9b735c52017-05-09 18:26:18 -07005811 final long[] cpuFreqTimes = u.getCpuFreqTimes(which);
5812 if (cpuFreqTimes != null) {
5813 sb.setLength(0);
5814 sb.append(" Total cpu time per freq:");
5815 for (int i = 0; i < cpuFreqTimes.length; ++i) {
5816 sb.append(" " + cpuFreqTimes[i]);
5817 }
5818 pw.println(sb.toString());
5819 }
5820 final long[] screenOffCpuFreqTimes = u.getScreenOffCpuFreqTimes(which);
5821 if (screenOffCpuFreqTimes != null) {
5822 sb.setLength(0);
5823 sb.append(" Total screen-off cpu time per freq:");
5824 for (int i = 0; i < screenOffCpuFreqTimes.length; ++i) {
5825 sb.append(" " + screenOffCpuFreqTimes[i]);
5826 }
5827 pw.println(sb.toString());
5828 }
5829
Sudheer Shankab2f83c12017-11-13 19:25:01 -08005830 for (int procState = 0; procState < Uid.NUM_PROCESS_STATE; ++procState) {
5831 final long[] cpuTimes = u.getCpuFreqTimes(which, procState);
5832 if (cpuTimes != null) {
5833 sb.setLength(0);
5834 sb.append(" Cpu times per freq at state "
5835 + Uid.PROCESS_STATE_NAMES[procState] + ":");
5836 for (int i = 0; i < cpuTimes.length; ++i) {
5837 sb.append(" " + cpuTimes[i]);
5838 }
5839 pw.println(sb.toString());
5840 }
5841
5842 final long[] screenOffCpuTimes = u.getScreenOffCpuFreqTimes(which, procState);
5843 if (screenOffCpuTimes != null) {
5844 sb.setLength(0);
5845 sb.append(" Screen-off cpu times per freq at state "
5846 + Uid.PROCESS_STATE_NAMES[procState] + ":");
5847 for (int i = 0; i < screenOffCpuTimes.length; ++i) {
5848 sb.append(" " + screenOffCpuTimes[i]);
5849 }
5850 pw.println(sb.toString());
5851 }
5852 }
5853
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005854 final ArrayMap<String, ? extends BatteryStats.Uid.Proc> processStats
5855 = u.getProcessStats();
5856 for (int ipr=processStats.size()-1; ipr>=0; ipr--) {
5857 final Uid.Proc ps = processStats.valueAt(ipr);
5858 long userTime;
5859 long systemTime;
5860 long foregroundTime;
5861 int starts;
5862 int numExcessive;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005863
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005864 userTime = ps.getUserTime(which);
5865 systemTime = ps.getSystemTime(which);
5866 foregroundTime = ps.getForegroundTime(which);
5867 starts = ps.getStarts(which);
5868 final int numCrashes = ps.getNumCrashes(which);
5869 final int numAnrs = ps.getNumAnrs(which);
5870 numExcessive = which == STATS_SINCE_CHARGED
5871 ? ps.countExcessivePowers() : 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005872
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005873 if (userTime != 0 || systemTime != 0 || foregroundTime != 0 || starts != 0
5874 || numExcessive != 0 || numCrashes != 0 || numAnrs != 0) {
5875 sb.setLength(0);
5876 sb.append(prefix); sb.append(" Proc ");
5877 sb.append(processStats.keyAt(ipr)); sb.append(":\n");
5878 sb.append(prefix); sb.append(" CPU: ");
5879 formatTimeMs(sb, userTime); sb.append("usr + ");
5880 formatTimeMs(sb, systemTime); sb.append("krn ; ");
5881 formatTimeMs(sb, foregroundTime); sb.append("fg");
5882 if (starts != 0 || numCrashes != 0 || numAnrs != 0) {
5883 sb.append("\n"); sb.append(prefix); sb.append(" ");
5884 boolean hasOne = false;
5885 if (starts != 0) {
5886 hasOne = true;
5887 sb.append(starts); sb.append(" starts");
Dianne Hackborn0d903a82010-09-07 23:51:03 -07005888 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005889 if (numCrashes != 0) {
5890 if (hasOne) {
5891 sb.append(", ");
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07005892 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005893 hasOne = true;
5894 sb.append(numCrashes); sb.append(" crashes");
Dianne Hackborn9adb9c32010-08-13 14:09:56 -07005895 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005896 if (numAnrs != 0) {
5897 if (hasOne) {
5898 sb.append(", ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005899 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005900 sb.append(numAnrs); sb.append(" anrs");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005901 }
5902 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005903 pw.println(sb.toString());
5904 for (int e=0; e<numExcessive; e++) {
5905 Uid.Proc.ExcessivePower ew = ps.getExcessivePower(e);
5906 if (ew != null) {
5907 pw.print(prefix); pw.print(" * Killed for ");
Dianne Hackbornffca58b2017-05-24 16:15:45 -07005908 if (ew.type == Uid.Proc.ExcessivePower.TYPE_CPU) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005909 pw.print("cpu");
5910 } else {
5911 pw.print("unknown");
5912 }
5913 pw.print(" use: ");
5914 TimeUtils.formatDuration(ew.usedTime, pw);
5915 pw.print(" over ");
5916 TimeUtils.formatDuration(ew.overTime, pw);
5917 if (ew.overTime != 0) {
5918 pw.print(" (");
5919 pw.print((ew.usedTime*100)/ew.overTime);
5920 pw.println("%)");
5921 }
5922 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005923 }
5924 uidActivity = true;
5925 }
5926 }
Dianne Hackborn1e725a72015-03-24 18:23:19 -07005927
5928 final ArrayMap<String, ? extends BatteryStats.Uid.Pkg> packageStats
5929 = u.getPackageStats();
5930 for (int ipkg=packageStats.size()-1; ipkg>=0; ipkg--) {
5931 pw.print(prefix); pw.print(" Apk "); pw.print(packageStats.keyAt(ipkg));
5932 pw.println(":");
5933 boolean apkActivity = false;
5934 final Uid.Pkg ps = packageStats.valueAt(ipkg);
5935 final ArrayMap<String, ? extends Counter> alarms = ps.getWakeupAlarmStats();
5936 for (int iwa=alarms.size()-1; iwa>=0; iwa--) {
5937 pw.print(prefix); pw.print(" Wakeup alarm ");
5938 pw.print(alarms.keyAt(iwa)); pw.print(": ");
5939 pw.print(alarms.valueAt(iwa).getCountLocked(which));
5940 pw.println(" times");
5941 apkActivity = true;
5942 }
5943 final ArrayMap<String, ? extends Uid.Pkg.Serv> serviceStats = ps.getServiceStats();
5944 for (int isvc=serviceStats.size()-1; isvc>=0; isvc--) {
5945 final BatteryStats.Uid.Pkg.Serv ss = serviceStats.valueAt(isvc);
5946 final long startTime = ss.getStartTime(batteryUptime, which);
5947 final int starts = ss.getStarts(which);
5948 final int launches = ss.getLaunches(which);
5949 if (startTime != 0 || starts != 0 || launches != 0) {
5950 sb.setLength(0);
5951 sb.append(prefix); sb.append(" Service ");
5952 sb.append(serviceStats.keyAt(isvc)); sb.append(":\n");
5953 sb.append(prefix); sb.append(" Created for: ");
5954 formatTimeMs(sb, startTime / 1000);
5955 sb.append("uptime\n");
5956 sb.append(prefix); sb.append(" Starts: ");
5957 sb.append(starts);
5958 sb.append(", launches: "); sb.append(launches);
5959 pw.println(sb.toString());
5960 apkActivity = true;
5961 }
5962 }
5963 if (!apkActivity) {
5964 pw.print(prefix); pw.println(" (nothing executed)");
5965 }
5966 uidActivity = true;
5967 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005968 if (!uidActivity) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07005969 pw.print(prefix); pw.println(" (nothing executed)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005970 }
5971 }
5972 }
5973
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08005974 static void printBitDescriptions(PrintWriter pw, int oldval, int newval, HistoryTag wakelockTag,
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08005975 BitDescription[] descriptions, boolean longNames) {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07005976 int diff = oldval ^ newval;
5977 if (diff == 0) return;
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08005978 boolean didWake = false;
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07005979 for (int i=0; i<descriptions.length; i++) {
5980 BitDescription bd = descriptions[i];
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08005981 if ((diff&bd.mask) != 0) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08005982 pw.print(longNames ? " " : ",");
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07005983 if (bd.shift < 0) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08005984 pw.print((newval&bd.mask) != 0 ? "+" : "-");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08005985 pw.print(longNames ? bd.name : bd.shortName);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08005986 if (bd.mask == HistoryItem.STATE_WAKE_LOCK_FLAG && wakelockTag != null) {
5987 didWake = true;
5988 pw.print("=");
5989 if (longNames) {
5990 UserHandle.formatUid(pw, wakelockTag.uid);
5991 pw.print(":\"");
5992 pw.print(wakelockTag.string);
5993 pw.print("\"");
5994 } else {
5995 pw.print(wakelockTag.poolIdx);
5996 }
5997 }
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07005998 } else {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08005999 pw.print(longNames ? bd.name : bd.shortName);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07006000 pw.print("=");
6001 int val = (newval&bd.mask)>>bd.shift;
6002 if (bd.values != null && val >= 0 && val < bd.values.length) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006003 pw.print(longNames? bd.values[val] : bd.shortValues[val]);
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07006004 } else {
6005 pw.print(val);
6006 }
6007 }
6008 }
6009 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006010 if (!didWake && wakelockTag != null) {
Ashish Sharma81850c42014-05-05 13:57:07 -07006011 pw.print(longNames ? " wake_lock=" : ",w=");
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006012 if (longNames) {
6013 UserHandle.formatUid(pw, wakelockTag.uid);
6014 pw.print(":\"");
6015 pw.print(wakelockTag.string);
6016 pw.print("\"");
6017 } else {
6018 pw.print(wakelockTag.poolIdx);
6019 }
6020 }
Dianne Hackborn6b7b4842010-06-14 17:17:44 -07006021 }
Mike Mac2f518a2017-09-19 16:06:03 -07006022
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006023 public void prepareForDumpLocked() {
Kweku Adams2f73ecd2017-09-27 16:59:19 -07006024 // We don't need to require subclasses implement this.
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006025 }
6026
6027 public static class HistoryPrinter {
6028 int oldState = 0;
Dianne Hackborna1bd7922014-03-21 11:07:11 -07006029 int oldState2 = 0;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006030 int oldLevel = -1;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006031 int oldStatus = -1;
6032 int oldHealth = -1;
6033 int oldPlug = -1;
6034 int oldTemp = -1;
6035 int oldVolt = -1;
Adam Lesinskia8018ac2016-05-03 10:18:10 -07006036 int oldChargeMAh = -1;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006037 long lastTime = -1;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006038
Dianne Hackborn3251b902014-06-20 14:40:53 -07006039 void reset() {
6040 oldState = oldState2 = 0;
6041 oldLevel = -1;
6042 oldStatus = -1;
6043 oldHealth = -1;
6044 oldPlug = -1;
6045 oldTemp = -1;
6046 oldVolt = -1;
Adam Lesinskia8018ac2016-05-03 10:18:10 -07006047 oldChargeMAh = -1;
Dianne Hackborn3251b902014-06-20 14:40:53 -07006048 }
6049
Dianne Hackborn99009ea2014-04-18 16:23:42 -07006050 public void printNextItem(PrintWriter pw, HistoryItem rec, long baseTime, boolean checkin,
Dianne Hackborna1bd7922014-03-21 11:07:11 -07006051 boolean verbose) {
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006052 if (!checkin) {
6053 pw.print(" ");
Dianne Hackborn99009ea2014-04-18 16:23:42 -07006054 TimeUtils.formatDuration(rec.time - baseTime, pw, TimeUtils.HUNDRED_DAY_FIELD_LEN);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006055 pw.print(" (");
6056 pw.print(rec.numReadInts);
6057 pw.print(") ");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006058 } else {
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07006059 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
6060 pw.print(HISTORY_DATA); pw.print(',');
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006061 if (lastTime < 0) {
Dianne Hackborn99009ea2014-04-18 16:23:42 -07006062 pw.print(rec.time - baseTime);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006063 } else {
Dianne Hackborn99009ea2014-04-18 16:23:42 -07006064 pw.print(rec.time - lastTime);
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006065 }
6066 lastTime = rec.time;
6067 }
6068 if (rec.cmd == HistoryItem.CMD_START) {
6069 if (checkin) {
6070 pw.print(":");
6071 }
6072 pw.println("START");
Dianne Hackborn3251b902014-06-20 14:40:53 -07006073 reset();
Dianne Hackborn37de0982014-05-09 09:32:18 -07006074 } else if (rec.cmd == HistoryItem.CMD_CURRENT_TIME
6075 || rec.cmd == HistoryItem.CMD_RESET) {
Dianne Hackborne5167ca2014-03-08 14:39:10 -08006076 if (checkin) {
6077 pw.print(":");
6078 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07006079 if (rec.cmd == HistoryItem.CMD_RESET) {
6080 pw.print("RESET:");
Dianne Hackborn3251b902014-06-20 14:40:53 -07006081 reset();
Dianne Hackborn37de0982014-05-09 09:32:18 -07006082 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08006083 pw.print("TIME:");
6084 if (checkin) {
6085 pw.println(rec.currentTime);
6086 } else {
6087 pw.print(" ");
6088 pw.println(DateFormat.format("yyyy-MM-dd-HH-mm-ss",
6089 rec.currentTime).toString());
6090 }
Dianne Hackborn29cd7f12015-01-08 10:37:05 -08006091 } else if (rec.cmd == HistoryItem.CMD_SHUTDOWN) {
6092 if (checkin) {
6093 pw.print(":");
6094 }
6095 pw.println("SHUTDOWN");
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006096 } else if (rec.cmd == HistoryItem.CMD_OVERFLOW) {
6097 if (checkin) {
6098 pw.print(":");
6099 }
6100 pw.println("*OVERFLOW*");
6101 } else {
6102 if (!checkin) {
6103 if (rec.batteryLevel < 10) pw.print("00");
6104 else if (rec.batteryLevel < 100) pw.print("0");
6105 pw.print(rec.batteryLevel);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07006106 if (verbose) {
6107 pw.print(" ");
6108 if (rec.states < 0) ;
6109 else if (rec.states < 0x10) pw.print("0000000");
6110 else if (rec.states < 0x100) pw.print("000000");
6111 else if (rec.states < 0x1000) pw.print("00000");
6112 else if (rec.states < 0x10000) pw.print("0000");
6113 else if (rec.states < 0x100000) pw.print("000");
6114 else if (rec.states < 0x1000000) pw.print("00");
6115 else if (rec.states < 0x10000000) pw.print("0");
6116 pw.print(Integer.toHexString(rec.states));
6117 }
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006118 } else {
6119 if (oldLevel != rec.batteryLevel) {
6120 oldLevel = rec.batteryLevel;
6121 pw.print(",Bl="); pw.print(rec.batteryLevel);
6122 }
6123 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006124 if (oldStatus != rec.batteryStatus) {
6125 oldStatus = rec.batteryStatus;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006126 pw.print(checkin ? ",Bs=" : " status=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006127 switch (oldStatus) {
6128 case BatteryManager.BATTERY_STATUS_UNKNOWN:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006129 pw.print(checkin ? "?" : "unknown");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006130 break;
6131 case BatteryManager.BATTERY_STATUS_CHARGING:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006132 pw.print(checkin ? "c" : "charging");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006133 break;
6134 case BatteryManager.BATTERY_STATUS_DISCHARGING:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006135 pw.print(checkin ? "d" : "discharging");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006136 break;
6137 case BatteryManager.BATTERY_STATUS_NOT_CHARGING:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006138 pw.print(checkin ? "n" : "not-charging");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006139 break;
6140 case BatteryManager.BATTERY_STATUS_FULL:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006141 pw.print(checkin ? "f" : "full");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006142 break;
6143 default:
6144 pw.print(oldStatus);
6145 break;
6146 }
6147 }
6148 if (oldHealth != rec.batteryHealth) {
6149 oldHealth = rec.batteryHealth;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006150 pw.print(checkin ? ",Bh=" : " health=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006151 switch (oldHealth) {
6152 case BatteryManager.BATTERY_HEALTH_UNKNOWN:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006153 pw.print(checkin ? "?" : "unknown");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006154 break;
6155 case BatteryManager.BATTERY_HEALTH_GOOD:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006156 pw.print(checkin ? "g" : "good");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006157 break;
6158 case BatteryManager.BATTERY_HEALTH_OVERHEAT:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006159 pw.print(checkin ? "h" : "overheat");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006160 break;
6161 case BatteryManager.BATTERY_HEALTH_DEAD:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006162 pw.print(checkin ? "d" : "dead");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006163 break;
6164 case BatteryManager.BATTERY_HEALTH_OVER_VOLTAGE:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006165 pw.print(checkin ? "v" : "over-voltage");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006166 break;
6167 case BatteryManager.BATTERY_HEALTH_UNSPECIFIED_FAILURE:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006168 pw.print(checkin ? "f" : "failure");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006169 break;
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08006170 case BatteryManager.BATTERY_HEALTH_COLD:
6171 pw.print(checkin ? "c" : "cold");
6172 break;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006173 default:
6174 pw.print(oldHealth);
6175 break;
6176 }
6177 }
6178 if (oldPlug != rec.batteryPlugType) {
6179 oldPlug = rec.batteryPlugType;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006180 pw.print(checkin ? ",Bp=" : " plug=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006181 switch (oldPlug) {
6182 case 0:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006183 pw.print(checkin ? "n" : "none");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006184 break;
6185 case BatteryManager.BATTERY_PLUGGED_AC:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006186 pw.print(checkin ? "a" : "ac");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006187 break;
6188 case BatteryManager.BATTERY_PLUGGED_USB:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006189 pw.print(checkin ? "u" : "usb");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006190 break;
Brian Muramatsu37a37f42012-08-14 15:21:02 -07006191 case BatteryManager.BATTERY_PLUGGED_WIRELESS:
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006192 pw.print(checkin ? "w" : "wireless");
Brian Muramatsu37a37f42012-08-14 15:21:02 -07006193 break;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006194 default:
6195 pw.print(oldPlug);
6196 break;
6197 }
6198 }
6199 if (oldTemp != rec.batteryTemperature) {
6200 oldTemp = rec.batteryTemperature;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006201 pw.print(checkin ? ",Bt=" : " temp=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006202 pw.print(oldTemp);
6203 }
6204 if (oldVolt != rec.batteryVoltage) {
6205 oldVolt = rec.batteryVoltage;
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006206 pw.print(checkin ? ",Bv=" : " volt=");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006207 pw.print(oldVolt);
6208 }
Adam Lesinskia8018ac2016-05-03 10:18:10 -07006209 final int chargeMAh = rec.batteryChargeUAh / 1000;
6210 if (oldChargeMAh != chargeMAh) {
6211 oldChargeMAh = chargeMAh;
Adam Lesinski926969b2016-04-28 17:31:12 -07006212 pw.print(checkin ? ",Bcc=" : " charge=");
Adam Lesinskia8018ac2016-05-03 10:18:10 -07006213 pw.print(oldChargeMAh);
Adam Lesinski926969b2016-04-28 17:31:12 -07006214 }
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006215 printBitDescriptions(pw, oldState, rec.states, rec.wakelockTag,
Dianne Hackborn57ed6a62013-12-09 18:15:56 -08006216 HISTORY_STATE_DESCRIPTIONS, !checkin);
Dianne Hackborna1bd7922014-03-21 11:07:11 -07006217 printBitDescriptions(pw, oldState2, rec.states2, null,
6218 HISTORY_STATE2_DESCRIPTIONS, !checkin);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006219 if (rec.wakeReasonTag != null) {
6220 if (checkin) {
Dianne Hackbornd06dcfd2014-05-02 13:49:30 -07006221 pw.print(",wr=");
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006222 pw.print(rec.wakeReasonTag.poolIdx);
6223 } else {
6224 pw.print(" wake_reason=");
6225 pw.print(rec.wakeReasonTag.uid);
6226 pw.print(":\"");
6227 pw.print(rec.wakeReasonTag.string);
6228 pw.print("\"");
6229 }
6230 }
Dianne Hackborn099bc622014-01-22 13:39:16 -08006231 if (rec.eventCode != HistoryItem.EVENT_NONE) {
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08006232 pw.print(checkin ? "," : " ");
6233 if ((rec.eventCode&HistoryItem.EVENT_FLAG_START) != 0) {
6234 pw.print("+");
6235 } else if ((rec.eventCode&HistoryItem.EVENT_FLAG_FINISH) != 0) {
6236 pw.print("-");
Dianne Hackborn099bc622014-01-22 13:39:16 -08006237 }
Dianne Hackborneaf2ac42014-02-07 13:01:07 -08006238 String[] eventNames = checkin ? HISTORY_EVENT_CHECKIN_NAMES
6239 : HISTORY_EVENT_NAMES;
6240 int idx = rec.eventCode & ~(HistoryItem.EVENT_FLAG_START
6241 | HistoryItem.EVENT_FLAG_FINISH);
6242 if (idx >= 0 && idx < eventNames.length) {
6243 pw.print(eventNames[idx]);
6244 } else {
6245 pw.print(checkin ? "Ev" : "event");
6246 pw.print(idx);
6247 }
6248 pw.print("=");
Dianne Hackborn099bc622014-01-22 13:39:16 -08006249 if (checkin) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006250 pw.print(rec.eventTag.poolIdx);
Dianne Hackborn099bc622014-01-22 13:39:16 -08006251 } else {
Adam Lesinski041d9172016-12-12 12:03:56 -08006252 pw.append(HISTORY_EVENT_INT_FORMATTERS[idx]
6253 .applyAsString(rec.eventTag.uid));
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006254 pw.print(":\"");
6255 pw.print(rec.eventTag.string);
6256 pw.print("\"");
Dianne Hackborn099bc622014-01-22 13:39:16 -08006257 }
6258 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006259 pw.println();
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08006260 if (rec.stepDetails != null) {
6261 if (!checkin) {
6262 pw.print(" Details: cpu=");
6263 pw.print(rec.stepDetails.userTime);
6264 pw.print("u+");
6265 pw.print(rec.stepDetails.systemTime);
6266 pw.print("s");
6267 if (rec.stepDetails.appCpuUid1 >= 0) {
6268 pw.print(" (");
6269 printStepCpuUidDetails(pw, rec.stepDetails.appCpuUid1,
6270 rec.stepDetails.appCpuUTime1, rec.stepDetails.appCpuSTime1);
6271 if (rec.stepDetails.appCpuUid2 >= 0) {
6272 pw.print(", ");
6273 printStepCpuUidDetails(pw, rec.stepDetails.appCpuUid2,
6274 rec.stepDetails.appCpuUTime2, rec.stepDetails.appCpuSTime2);
6275 }
6276 if (rec.stepDetails.appCpuUid3 >= 0) {
6277 pw.print(", ");
6278 printStepCpuUidDetails(pw, rec.stepDetails.appCpuUid3,
6279 rec.stepDetails.appCpuUTime3, rec.stepDetails.appCpuSTime3);
6280 }
6281 pw.print(')');
6282 }
6283 pw.println();
6284 pw.print(" /proc/stat=");
6285 pw.print(rec.stepDetails.statUserTime);
6286 pw.print(" usr, ");
6287 pw.print(rec.stepDetails.statSystemTime);
6288 pw.print(" sys, ");
6289 pw.print(rec.stepDetails.statIOWaitTime);
6290 pw.print(" io, ");
6291 pw.print(rec.stepDetails.statIrqTime);
6292 pw.print(" irq, ");
6293 pw.print(rec.stepDetails.statSoftIrqTime);
6294 pw.print(" sirq, ");
6295 pw.print(rec.stepDetails.statIdlTime);
6296 pw.print(" idle");
6297 int totalRun = rec.stepDetails.statUserTime + rec.stepDetails.statSystemTime
6298 + rec.stepDetails.statIOWaitTime + rec.stepDetails.statIrqTime
6299 + rec.stepDetails.statSoftIrqTime;
6300 int total = totalRun + rec.stepDetails.statIdlTime;
6301 if (total > 0) {
6302 pw.print(" (");
6303 float perc = ((float)totalRun) / ((float)total) * 100;
6304 pw.print(String.format("%.1f%%", perc));
6305 pw.print(" of ");
6306 StringBuilder sb = new StringBuilder(64);
6307 formatTimeMsNoSpace(sb, total*10);
6308 pw.print(sb);
6309 pw.print(")");
6310 }
Badhri Jagan Sridharan68cdf192016-04-03 21:57:15 -07006311 pw.print(", PlatformIdleStat ");
6312 pw.print(rec.stepDetails.statPlatformIdleState);
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08006313 pw.println();
Ahmed ElArabawyd8b44112017-05-23 21:25:02 +00006314
6315 pw.print(", SubsystemPowerState ");
6316 pw.print(rec.stepDetails.statSubsystemPowerState);
6317 pw.println();
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08006318 } else {
6319 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
6320 pw.print(HISTORY_DATA); pw.print(",0,Dcpu=");
6321 pw.print(rec.stepDetails.userTime);
6322 pw.print(":");
6323 pw.print(rec.stepDetails.systemTime);
6324 if (rec.stepDetails.appCpuUid1 >= 0) {
6325 printStepCpuUidCheckinDetails(pw, rec.stepDetails.appCpuUid1,
6326 rec.stepDetails.appCpuUTime1, rec.stepDetails.appCpuSTime1);
6327 if (rec.stepDetails.appCpuUid2 >= 0) {
6328 printStepCpuUidCheckinDetails(pw, rec.stepDetails.appCpuUid2,
6329 rec.stepDetails.appCpuUTime2, rec.stepDetails.appCpuSTime2);
6330 }
6331 if (rec.stepDetails.appCpuUid3 >= 0) {
6332 printStepCpuUidCheckinDetails(pw, rec.stepDetails.appCpuUid3,
6333 rec.stepDetails.appCpuUTime3, rec.stepDetails.appCpuSTime3);
6334 }
6335 }
6336 pw.println();
6337 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
6338 pw.print(HISTORY_DATA); pw.print(",0,Dpst=");
6339 pw.print(rec.stepDetails.statUserTime);
6340 pw.print(',');
6341 pw.print(rec.stepDetails.statSystemTime);
6342 pw.print(',');
6343 pw.print(rec.stepDetails.statIOWaitTime);
6344 pw.print(',');
6345 pw.print(rec.stepDetails.statIrqTime);
6346 pw.print(',');
6347 pw.print(rec.stepDetails.statSoftIrqTime);
6348 pw.print(',');
6349 pw.print(rec.stepDetails.statIdlTime);
Badhri Jagan Sridharan68cdf192016-04-03 21:57:15 -07006350 pw.print(',');
Adam Lesinski8568d8f2016-07-15 18:13:23 -07006351 if (rec.stepDetails.statPlatformIdleState != null) {
6352 pw.print(rec.stepDetails.statPlatformIdleState);
Ahmed ElArabawy307edcd2017-07-07 17:48:13 -07006353 if (rec.stepDetails.statSubsystemPowerState != null) {
6354 pw.print(',');
6355 }
Adam Lesinski8568d8f2016-07-15 18:13:23 -07006356 }
Ahmed ElArabawyd8b44112017-05-23 21:25:02 +00006357
6358 if (rec.stepDetails.statSubsystemPowerState != null) {
6359 pw.print(rec.stepDetails.statSubsystemPowerState);
6360 }
6361 pw.println();
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08006362 }
6363 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08006364 oldState = rec.states;
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07006365 oldState2 = rec.states2;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006366 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006367 }
Dianne Hackbornd1eccbe2015-02-18 14:02:14 -08006368
6369 private void printStepCpuUidDetails(PrintWriter pw, int uid, int utime, int stime) {
6370 UserHandle.formatUid(pw, uid);
6371 pw.print("=");
6372 pw.print(utime);
6373 pw.print("u+");
6374 pw.print(stime);
6375 pw.print("s");
6376 }
6377
6378 private void printStepCpuUidCheckinDetails(PrintWriter pw, int uid, int utime, int stime) {
6379 pw.print('/');
6380 pw.print(uid);
6381 pw.print(":");
6382 pw.print(utime);
6383 pw.print(":");
6384 pw.print(stime);
6385 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006386 }
6387
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006388 private void printSizeValue(PrintWriter pw, long size) {
6389 float result = size;
6390 String suffix = "";
6391 if (result >= 10*1024) {
6392 suffix = "KB";
6393 result = result / 1024;
6394 }
6395 if (result >= 10*1024) {
6396 suffix = "MB";
6397 result = result / 1024;
6398 }
6399 if (result >= 10*1024) {
6400 suffix = "GB";
6401 result = result / 1024;
6402 }
6403 if (result >= 10*1024) {
6404 suffix = "TB";
6405 result = result / 1024;
6406 }
6407 if (result >= 10*1024) {
6408 suffix = "PB";
6409 result = result / 1024;
6410 }
6411 pw.print((int)result);
6412 pw.print(suffix);
6413 }
6414
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006415 private static boolean dumpTimeEstimate(PrintWriter pw, String label1, String label2,
6416 String label3, long estimatedTime) {
6417 if (estimatedTime < 0) {
Dianne Hackbornad6a99b2014-11-18 10:11:10 -08006418 return false;
6419 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006420 pw.print(label1);
6421 pw.print(label2);
6422 pw.print(label3);
Dianne Hackbornad6a99b2014-11-18 10:11:10 -08006423 StringBuilder sb = new StringBuilder(64);
6424 formatTimeMs(sb, estimatedTime);
6425 pw.print(sb);
6426 pw.println();
Dianne Hackbornad6a99b2014-11-18 10:11:10 -08006427 return true;
6428 }
6429
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006430 private static boolean dumpDurationSteps(PrintWriter pw, String prefix, String header,
6431 LevelStepTracker steps, boolean checkin) {
6432 if (steps == null) {
6433 return false;
6434 }
6435 int count = steps.mNumStepDurations;
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006436 if (count <= 0) {
6437 return false;
6438 }
6439 if (!checkin) {
6440 pw.println(header);
6441 }
Kweku Adams030980a2015-04-01 16:07:48 -07006442 String[] lineArgs = new String[5];
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006443 for (int i=0; i<count; i++) {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006444 long duration = steps.getDurationAt(i);
6445 int level = steps.getLevelAt(i);
6446 long initMode = steps.getInitModeAt(i);
6447 long modMode = steps.getModModeAt(i);
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006448 if (checkin) {
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07006449 lineArgs[0] = Long.toString(duration);
6450 lineArgs[1] = Integer.toString(level);
6451 if ((modMode&STEP_LEVEL_MODE_SCREEN_STATE) == 0) {
6452 switch ((int)(initMode&STEP_LEVEL_MODE_SCREEN_STATE) + 1) {
6453 case Display.STATE_OFF: lineArgs[2] = "s-"; break;
6454 case Display.STATE_ON: lineArgs[2] = "s+"; break;
6455 case Display.STATE_DOZE: lineArgs[2] = "sd"; break;
6456 case Display.STATE_DOZE_SUSPEND: lineArgs[2] = "sds"; break;
Kweku Adams030980a2015-04-01 16:07:48 -07006457 default: lineArgs[2] = "?"; break;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07006458 }
6459 } else {
6460 lineArgs[2] = "";
6461 }
6462 if ((modMode&STEP_LEVEL_MODE_POWER_SAVE) == 0) {
6463 lineArgs[3] = (initMode&STEP_LEVEL_MODE_POWER_SAVE) != 0 ? "p+" : "p-";
6464 } else {
6465 lineArgs[3] = "";
6466 }
Dianne Hackborn88e98df2015-03-23 13:29:14 -07006467 if ((modMode&STEP_LEVEL_MODE_DEVICE_IDLE) == 0) {
Kweku Adams030980a2015-04-01 16:07:48 -07006468 lineArgs[4] = (initMode&STEP_LEVEL_MODE_DEVICE_IDLE) != 0 ? "i+" : "i-";
Dianne Hackborn88e98df2015-03-23 13:29:14 -07006469 } else {
Kweku Adams030980a2015-04-01 16:07:48 -07006470 lineArgs[4] = "";
Dianne Hackborn88e98df2015-03-23 13:29:14 -07006471 }
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006472 dumpLine(pw, 0 /* uid */, "i" /* category */, header, (Object[])lineArgs);
6473 } else {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006474 pw.print(prefix);
6475 pw.print("#"); pw.print(i); pw.print(": ");
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07006476 TimeUtils.formatDuration(duration, pw);
6477 pw.print(" to "); pw.print(level);
6478 boolean haveModes = false;
6479 if ((modMode&STEP_LEVEL_MODE_SCREEN_STATE) == 0) {
6480 pw.print(" (");
6481 switch ((int)(initMode&STEP_LEVEL_MODE_SCREEN_STATE) + 1) {
6482 case Display.STATE_OFF: pw.print("screen-off"); break;
6483 case Display.STATE_ON: pw.print("screen-on"); break;
6484 case Display.STATE_DOZE: pw.print("screen-doze"); break;
6485 case Display.STATE_DOZE_SUSPEND: pw.print("screen-doze-suspend"); break;
Kweku Adams030980a2015-04-01 16:07:48 -07006486 default: pw.print("screen-?"); break;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07006487 }
6488 haveModes = true;
6489 }
6490 if ((modMode&STEP_LEVEL_MODE_POWER_SAVE) == 0) {
6491 pw.print(haveModes ? ", " : " (");
6492 pw.print((initMode&STEP_LEVEL_MODE_POWER_SAVE) != 0
6493 ? "power-save-on" : "power-save-off");
6494 haveModes = true;
6495 }
Dianne Hackborn88e98df2015-03-23 13:29:14 -07006496 if ((modMode&STEP_LEVEL_MODE_DEVICE_IDLE) == 0) {
6497 pw.print(haveModes ? ", " : " (");
6498 pw.print((initMode&STEP_LEVEL_MODE_DEVICE_IDLE) != 0
6499 ? "device-idle-on" : "device-idle-off");
6500 haveModes = true;
6501 }
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07006502 if (haveModes) {
6503 pw.print(")");
6504 }
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006505 pw.println();
6506 }
6507 }
6508 return true;
6509 }
6510
Kweku Adams87b19ec2017-10-09 12:40:03 -07006511 private static void dumpDurationSteps(ProtoOutputStream proto, long fieldId,
6512 LevelStepTracker steps) {
6513 if (steps == null) {
6514 return;
6515 }
6516 int count = steps.mNumStepDurations;
Kweku Adams87b19ec2017-10-09 12:40:03 -07006517 for (int i = 0; i < count; ++i) {
Kweku Adams103351f2017-10-16 14:39:34 -07006518 long token = proto.start(fieldId);
Kweku Adams87b19ec2017-10-09 12:40:03 -07006519 proto.write(SystemProto.BatteryLevelStep.DURATION_MS, steps.getDurationAt(i));
6520 proto.write(SystemProto.BatteryLevelStep.LEVEL, steps.getLevelAt(i));
6521
6522 final long initMode = steps.getInitModeAt(i);
6523 final long modMode = steps.getModModeAt(i);
6524
6525 int ds = SystemProto.BatteryLevelStep.DS_MIXED;
6526 if ((modMode & STEP_LEVEL_MODE_SCREEN_STATE) == 0) {
6527 switch ((int) (initMode & STEP_LEVEL_MODE_SCREEN_STATE) + 1) {
6528 case Display.STATE_OFF:
6529 ds = SystemProto.BatteryLevelStep.DS_OFF;
6530 break;
6531 case Display.STATE_ON:
6532 ds = SystemProto.BatteryLevelStep.DS_ON;
6533 break;
6534 case Display.STATE_DOZE:
6535 ds = SystemProto.BatteryLevelStep.DS_DOZE;
6536 break;
6537 case Display.STATE_DOZE_SUSPEND:
6538 ds = SystemProto.BatteryLevelStep.DS_DOZE_SUSPEND;
6539 break;
6540 default:
6541 ds = SystemProto.BatteryLevelStep.DS_ERROR;
6542 break;
6543 }
6544 }
6545 proto.write(SystemProto.BatteryLevelStep.DISPLAY_STATE, ds);
6546
6547 int psm = SystemProto.BatteryLevelStep.PSM_MIXED;
6548 if ((modMode & STEP_LEVEL_MODE_POWER_SAVE) == 0) {
6549 psm = (initMode & STEP_LEVEL_MODE_POWER_SAVE) != 0
6550 ? SystemProto.BatteryLevelStep.PSM_ON : SystemProto.BatteryLevelStep.PSM_OFF;
6551 }
6552 proto.write(SystemProto.BatteryLevelStep.POWER_SAVE_MODE, psm);
6553
6554 int im = SystemProto.BatteryLevelStep.IM_MIXED;
6555 if ((modMode & STEP_LEVEL_MODE_DEVICE_IDLE) == 0) {
6556 im = (initMode & STEP_LEVEL_MODE_DEVICE_IDLE) != 0
6557 ? SystemProto.BatteryLevelStep.IM_ON : SystemProto.BatteryLevelStep.IM_OFF;
6558 }
6559 proto.write(SystemProto.BatteryLevelStep.IDLE_MODE, im);
6560
6561 proto.end(token);
6562 }
6563 }
6564
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006565 public static final int DUMP_CHARGED_ONLY = 1<<1;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006566 public static final int DUMP_DAILY_ONLY = 1<<2;
6567 public static final int DUMP_HISTORY_ONLY = 1<<3;
6568 public static final int DUMP_INCLUDE_HISTORY = 1<<4;
6569 public static final int DUMP_VERBOSE = 1<<5;
6570 public static final int DUMP_DEVICE_WIFI_ONLY = 1<<6;
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006571
Dianne Hackborn37de0982014-05-09 09:32:18 -07006572 private void dumpHistoryLocked(PrintWriter pw, int flags, long histStart, boolean checkin) {
6573 final HistoryPrinter hprinter = new HistoryPrinter();
6574 final HistoryItem rec = new HistoryItem();
6575 long lastTime = -1;
6576 long baseTime = -1;
6577 boolean printed = false;
6578 HistoryEventTracker tracker = null;
6579 while (getNextHistoryLocked(rec)) {
6580 lastTime = rec.time;
6581 if (baseTime < 0) {
6582 baseTime = lastTime;
6583 }
6584 if (rec.time >= histStart) {
6585 if (histStart >= 0 && !printed) {
6586 if (rec.cmd == HistoryItem.CMD_CURRENT_TIME
Ashish Sharma60200712014-05-23 18:22:20 -07006587 || rec.cmd == HistoryItem.CMD_RESET
Dianne Hackborn29cd7f12015-01-08 10:37:05 -08006588 || rec.cmd == HistoryItem.CMD_START
6589 || rec.cmd == HistoryItem.CMD_SHUTDOWN) {
Dianne Hackborn37de0982014-05-09 09:32:18 -07006590 printed = true;
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07006591 hprinter.printNextItem(pw, rec, baseTime, checkin,
6592 (flags&DUMP_VERBOSE) != 0);
6593 rec.cmd = HistoryItem.CMD_UPDATE;
Dianne Hackborn37de0982014-05-09 09:32:18 -07006594 } else if (rec.currentTime != 0) {
6595 printed = true;
6596 byte cmd = rec.cmd;
6597 rec.cmd = HistoryItem.CMD_CURRENT_TIME;
Dianne Hackborn37de0982014-05-09 09:32:18 -07006598 hprinter.printNextItem(pw, rec, baseTime, checkin,
6599 (flags&DUMP_VERBOSE) != 0);
6600 rec.cmd = cmd;
6601 }
6602 if (tracker != null) {
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07006603 if (rec.cmd != HistoryItem.CMD_UPDATE) {
6604 hprinter.printNextItem(pw, rec, baseTime, checkin,
6605 (flags&DUMP_VERBOSE) != 0);
6606 rec.cmd = HistoryItem.CMD_UPDATE;
6607 }
6608 int oldEventCode = rec.eventCode;
6609 HistoryTag oldEventTag = rec.eventTag;
Dianne Hackborn37de0982014-05-09 09:32:18 -07006610 rec.eventTag = new HistoryTag();
6611 for (int i=0; i<HistoryItem.EVENT_COUNT; i++) {
6612 HashMap<String, SparseIntArray> active
6613 = tracker.getStateForEvent(i);
6614 if (active == null) {
6615 continue;
6616 }
6617 for (HashMap.Entry<String, SparseIntArray> ent
6618 : active.entrySet()) {
6619 SparseIntArray uids = ent.getValue();
6620 for (int j=0; j<uids.size(); j++) {
6621 rec.eventCode = i;
6622 rec.eventTag.string = ent.getKey();
6623 rec.eventTag.uid = uids.keyAt(j);
6624 rec.eventTag.poolIdx = uids.valueAt(j);
Dianne Hackborn37de0982014-05-09 09:32:18 -07006625 hprinter.printNextItem(pw, rec, baseTime, checkin,
6626 (flags&DUMP_VERBOSE) != 0);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07006627 rec.wakeReasonTag = null;
6628 rec.wakelockTag = null;
Dianne Hackborn37de0982014-05-09 09:32:18 -07006629 }
6630 }
6631 }
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07006632 rec.eventCode = oldEventCode;
6633 rec.eventTag = oldEventTag;
Dianne Hackborn37de0982014-05-09 09:32:18 -07006634 tracker = null;
6635 }
6636 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07006637 hprinter.printNextItem(pw, rec, baseTime, checkin,
6638 (flags&DUMP_VERBOSE) != 0);
Dianne Hackborn536456f2014-05-23 16:51:05 -07006639 } else if (false && rec.eventCode != HistoryItem.EVENT_NONE) {
6640 // This is an attempt to aggregate the previous state and generate
6641 // fake events to reflect that state at the point where we start
6642 // printing real events. It doesn't really work right, so is turned off.
Dianne Hackborn37de0982014-05-09 09:32:18 -07006643 if (tracker == null) {
6644 tracker = new HistoryEventTracker();
6645 }
6646 tracker.updateState(rec.eventCode, rec.eventTag.string,
6647 rec.eventTag.uid, rec.eventTag.poolIdx);
6648 }
6649 }
6650 if (histStart >= 0) {
Dianne Hackbornfc064132014-06-02 12:42:12 -07006651 commitCurrentHistoryBatchLocked();
Dianne Hackborn37de0982014-05-09 09:32:18 -07006652 pw.print(checkin ? "NEXT: " : " NEXT: "); pw.println(lastTime+1);
6653 }
6654 }
6655
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006656 private void dumpDailyLevelStepSummary(PrintWriter pw, String prefix, String label,
6657 LevelStepTracker steps, StringBuilder tmpSb, int[] tmpOutInt) {
6658 if (steps == null) {
6659 return;
6660 }
6661 long timeRemaining = steps.computeTimeEstimate(0, 0, tmpOutInt);
6662 if (timeRemaining >= 0) {
6663 pw.print(prefix); pw.print(label); pw.print(" total time: ");
6664 tmpSb.setLength(0);
6665 formatTimeMs(tmpSb, timeRemaining);
6666 pw.print(tmpSb);
6667 pw.print(" (from "); pw.print(tmpOutInt[0]);
6668 pw.println(" steps)");
6669 }
6670 for (int i=0; i< STEP_LEVEL_MODES_OF_INTEREST.length; i++) {
6671 long estimatedTime = steps.computeTimeEstimate(STEP_LEVEL_MODES_OF_INTEREST[i],
6672 STEP_LEVEL_MODE_VALUES[i], tmpOutInt);
6673 if (estimatedTime > 0) {
6674 pw.print(prefix); pw.print(label); pw.print(" ");
6675 pw.print(STEP_LEVEL_MODE_LABELS[i]);
6676 pw.print(" time: ");
6677 tmpSb.setLength(0);
6678 formatTimeMs(tmpSb, estimatedTime);
6679 pw.print(tmpSb);
6680 pw.print(" (from "); pw.print(tmpOutInt[0]);
6681 pw.println(" steps)");
6682 }
6683 }
6684 }
6685
Dianne Hackborn88e98df2015-03-23 13:29:14 -07006686 private void dumpDailyPackageChanges(PrintWriter pw, String prefix,
6687 ArrayList<PackageChange> changes) {
6688 if (changes == null) {
6689 return;
6690 }
6691 pw.print(prefix); pw.println("Package changes:");
6692 for (int i=0; i<changes.size(); i++) {
6693 PackageChange pc = changes.get(i);
6694 if (pc.mUpdate) {
6695 pw.print(prefix); pw.print(" Update "); pw.print(pc.mPackageName);
6696 pw.print(" vers="); pw.println(pc.mVersionCode);
6697 } else {
6698 pw.print(prefix); pw.print(" Uninstall "); pw.println(pc.mPackageName);
6699 }
6700 }
6701 }
6702
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006703 /**
6704 * Dumps a human-readable summary of the battery statistics to the given PrintWriter.
6705 *
6706 * @param pw a Printer to receive the dump output.
6707 */
6708 @SuppressWarnings("unused")
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006709 public void dumpLocked(Context context, PrintWriter pw, int flags, int reqUid, long histStart) {
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006710 prepareForDumpLocked();
6711
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006712 final boolean filtering = (flags
Dianne Hackborn1e725a72015-03-24 18:23:19 -07006713 & (DUMP_HISTORY_ONLY|DUMP_CHARGED_ONLY|DUMP_DAILY_ONLY)) != 0;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006714
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006715 if ((flags&DUMP_HISTORY_ONLY) != 0 || !filtering) {
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006716 final long historyTotalSize = getHistoryTotalSize();
6717 final long historyUsedSize = getHistoryUsedSize();
6718 if (startIteratingHistoryLocked()) {
6719 try {
6720 pw.print("Battery History (");
6721 pw.print((100*historyUsedSize)/historyTotalSize);
6722 pw.print("% used, ");
6723 printSizeValue(pw, historyUsedSize);
6724 pw.print(" used of ");
6725 printSizeValue(pw, historyTotalSize);
6726 pw.print(", ");
6727 pw.print(getHistoryStringPoolSize());
6728 pw.print(" strings using ");
6729 printSizeValue(pw, getHistoryStringPoolBytes());
6730 pw.println("):");
Dianne Hackborn37de0982014-05-09 09:32:18 -07006731 dumpHistoryLocked(pw, flags, histStart, false);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006732 pw.println();
6733 } finally {
6734 finishIteratingHistoryLocked();
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006735 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006736 }
6737
6738 if (startIteratingOldHistoryLocked()) {
6739 try {
Dianne Hackborn37de0982014-05-09 09:32:18 -07006740 final HistoryItem rec = new HistoryItem();
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006741 pw.println("Old battery History:");
6742 HistoryPrinter hprinter = new HistoryPrinter();
Dianne Hackborn99009ea2014-04-18 16:23:42 -07006743 long baseTime = -1;
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006744 while (getNextOldHistoryLocked(rec)) {
Dianne Hackborn99009ea2014-04-18 16:23:42 -07006745 if (baseTime < 0) {
6746 baseTime = rec.time;
6747 }
6748 hprinter.printNextItem(pw, rec, baseTime, false, (flags&DUMP_VERBOSE) != 0);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006749 }
6750 pw.println();
6751 } finally {
6752 finishIteratingOldHistoryLocked();
6753 }
Dianne Hackborn32907cf2010-06-10 17:50:20 -07006754 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006755 }
6756
Dianne Hackborn1e725a72015-03-24 18:23:19 -07006757 if (filtering && (flags&(DUMP_CHARGED_ONLY|DUMP_DAILY_ONLY)) == 0) {
Dianne Hackborn099bc622014-01-22 13:39:16 -08006758 return;
6759 }
6760
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006761 if (!filtering) {
6762 SparseArray<? extends Uid> uidStats = getUidStats();
6763 final int NU = uidStats.size();
6764 boolean didPid = false;
6765 long nowRealtime = SystemClock.elapsedRealtime();
6766 for (int i=0; i<NU; i++) {
6767 Uid uid = uidStats.valueAt(i);
6768 SparseArray<? extends Uid.Pid> pids = uid.getPidStats();
6769 if (pids != null) {
6770 for (int j=0; j<pids.size(); j++) {
6771 Uid.Pid pid = pids.valueAt(j);
6772 if (!didPid) {
6773 pw.println("Per-PID Stats:");
6774 didPid = true;
6775 }
Dianne Hackborne5167ca2014-03-08 14:39:10 -08006776 long time = pid.mWakeSumMs + (pid.mWakeNesting > 0
6777 ? (nowRealtime - pid.mWakeStartMs) : 0);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006778 pw.print(" PID "); pw.print(pids.keyAt(j));
6779 pw.print(" wake time: ");
6780 TimeUtils.formatDuration(time, pw);
6781 pw.println("");
Dianne Hackbornb5e31652010-09-07 12:13:55 -07006782 }
Dianne Hackbornb5e31652010-09-07 12:13:55 -07006783 }
6784 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006785 if (didPid) {
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006786 pw.println();
6787 }
Dianne Hackborncd0e3352014-08-07 17:08:09 -07006788 }
6789
6790 if (!filtering || (flags&DUMP_CHARGED_ONLY) != 0) {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006791 if (dumpDurationSteps(pw, " ", "Discharge step durations:",
6792 getDischargeLevelStepTracker(), false)) {
Kweku Adamsb0449e02016-10-12 14:18:27 -07006793 long timeRemaining = computeBatteryTimeRemaining(
6794 SystemClock.elapsedRealtime() * 1000);
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006795 if (timeRemaining >= 0) {
6796 pw.print(" Estimated discharge time remaining: ");
6797 TimeUtils.formatDuration(timeRemaining / 1000, pw);
6798 pw.println();
6799 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006800 final LevelStepTracker steps = getDischargeLevelStepTracker();
6801 for (int i=0; i< STEP_LEVEL_MODES_OF_INTEREST.length; i++) {
6802 dumpTimeEstimate(pw, " Estimated ", STEP_LEVEL_MODE_LABELS[i], " time: ",
6803 steps.computeTimeEstimate(STEP_LEVEL_MODES_OF_INTEREST[i],
6804 STEP_LEVEL_MODE_VALUES[i], null));
6805 }
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006806 pw.println();
6807 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006808 if (dumpDurationSteps(pw, " ", "Charge step durations:",
6809 getChargeLevelStepTracker(), false)) {
Kweku Adamsb0449e02016-10-12 14:18:27 -07006810 long timeRemaining = computeChargeTimeRemaining(
6811 SystemClock.elapsedRealtime() * 1000);
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006812 if (timeRemaining >= 0) {
6813 pw.print(" Estimated charge time remaining: ");
6814 TimeUtils.formatDuration(timeRemaining / 1000, pw);
6815 pw.println();
6816 }
6817 pw.println();
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006818 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006819 }
Dianne Hackbornc81983a2017-10-20 16:16:32 -07006820 if (!filtering || (flags & DUMP_DAILY_ONLY) != 0) {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006821 pw.println("Daily stats:");
6822 pw.print(" Current start time: ");
6823 pw.println(DateFormat.format("yyyy-MM-dd-HH-mm-ss",
6824 getCurrentDailyStartTime()).toString());
6825 pw.print(" Next min deadline: ");
6826 pw.println(DateFormat.format("yyyy-MM-dd-HH-mm-ss",
6827 getNextMinDailyDeadline()).toString());
6828 pw.print(" Next max deadline: ");
6829 pw.println(DateFormat.format("yyyy-MM-dd-HH-mm-ss",
6830 getNextMaxDailyDeadline()).toString());
6831 StringBuilder sb = new StringBuilder(64);
6832 int[] outInt = new int[1];
6833 LevelStepTracker dsteps = getDailyDischargeLevelStepTracker();
6834 LevelStepTracker csteps = getDailyChargeLevelStepTracker();
Dianne Hackborn88e98df2015-03-23 13:29:14 -07006835 ArrayList<PackageChange> pkgc = getDailyPackageChanges();
6836 if (dsteps.mNumStepDurations > 0 || csteps.mNumStepDurations > 0 || pkgc != null) {
Dianne Hackborn1e725a72015-03-24 18:23:19 -07006837 if ((flags&DUMP_DAILY_ONLY) != 0 || !filtering) {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006838 if (dumpDurationSteps(pw, " ", " Current daily discharge step durations:",
6839 dsteps, false)) {
6840 dumpDailyLevelStepSummary(pw, " ", "Discharge", dsteps,
6841 sb, outInt);
6842 }
6843 if (dumpDurationSteps(pw, " ", " Current daily charge step durations:",
6844 csteps, false)) {
6845 dumpDailyLevelStepSummary(pw, " ", "Charge", csteps,
6846 sb, outInt);
6847 }
Dianne Hackborn88e98df2015-03-23 13:29:14 -07006848 dumpDailyPackageChanges(pw, " ", pkgc);
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006849 } else {
6850 pw.println(" Current daily steps:");
6851 dumpDailyLevelStepSummary(pw, " ", "Discharge", dsteps,
6852 sb, outInt);
6853 dumpDailyLevelStepSummary(pw, " ", "Charge", csteps,
6854 sb, outInt);
6855 }
6856 }
6857 DailyItem dit;
6858 int curIndex = 0;
6859 while ((dit=getDailyItemLocked(curIndex)) != null) {
6860 curIndex++;
6861 if ((flags&DUMP_DAILY_ONLY) != 0) {
6862 pw.println();
6863 }
6864 pw.print(" Daily from ");
6865 pw.print(DateFormat.format("yyyy-MM-dd-HH-mm-ss", dit.mStartTime).toString());
6866 pw.print(" to ");
6867 pw.print(DateFormat.format("yyyy-MM-dd-HH-mm-ss", dit.mEndTime).toString());
6868 pw.println(":");
Dianne Hackborn1e725a72015-03-24 18:23:19 -07006869 if ((flags&DUMP_DAILY_ONLY) != 0 || !filtering) {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006870 if (dumpDurationSteps(pw, " ",
6871 " Discharge step durations:", dit.mDischargeSteps, false)) {
6872 dumpDailyLevelStepSummary(pw, " ", "Discharge", dit.mDischargeSteps,
6873 sb, outInt);
6874 }
6875 if (dumpDurationSteps(pw, " ",
6876 " Charge step durations:", dit.mChargeSteps, false)) {
6877 dumpDailyLevelStepSummary(pw, " ", "Charge", dit.mChargeSteps,
6878 sb, outInt);
6879 }
Dianne Hackborn88e98df2015-03-23 13:29:14 -07006880 dumpDailyPackageChanges(pw, " ", dit.mPackageChanges);
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006881 } else {
6882 dumpDailyLevelStepSummary(pw, " ", "Discharge", dit.mDischargeSteps,
6883 sb, outInt);
6884 dumpDailyLevelStepSummary(pw, " ", "Charge", dit.mChargeSteps,
6885 sb, outInt);
6886 }
6887 }
6888 pw.println();
6889 }
6890 if (!filtering || (flags&DUMP_CHARGED_ONLY) != 0) {
Jeff Sharkeyec43a6b2013-04-30 13:33:18 -07006891 pw.println("Statistics since last charge:");
6892 pw.println(" System starts: " + getStartCount()
6893 + ", currently on battery: " + getIsOnBattery());
Dianne Hackbornd953c532014-08-16 18:17:38 -07006894 dumpLocked(context, pw, "", STATS_SINCE_CHARGED, reqUid,
6895 (flags&DUMP_DEVICE_WIFI_ONLY) != 0);
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -07006896 pw.println();
Jeff Sharkeyec43a6b2013-04-30 13:33:18 -07006897 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006898 }
Mike Mac2f518a2017-09-19 16:06:03 -07006899
Kweku Adams2f73ecd2017-09-27 16:59:19 -07006900 // This is called from BatteryStatsService.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006901 @SuppressWarnings("unused")
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006902 public void dumpCheckinLocked(Context context, PrintWriter pw,
6903 List<ApplicationInfo> apps, int flags, long histStart) {
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07006904 prepareForDumpLocked();
Dianne Hackborncd0e3352014-08-07 17:08:09 -07006905
6906 dumpLine(pw, 0 /* uid */, "i" /* category */, VERSION_DATA,
Dianne Hackborn0c820db2015-04-14 17:47:34 -07006907 CHECKIN_VERSION, getParcelVersion(), getStartPlatformVersion(),
6908 getEndPlatformVersion());
Dianne Hackborncd0e3352014-08-07 17:08:09 -07006909
Dianne Hackborn13ac0412013-06-25 19:34:49 -07006910 long now = getHistoryBaseTime() + SystemClock.elapsedRealtime();
6911
Kweku Adams2f73ecd2017-09-27 16:59:19 -07006912 if ((flags & (DUMP_INCLUDE_HISTORY | DUMP_HISTORY_ONLY)) != 0) {
Dianne Hackborn49021f52013-09-04 18:03:40 -07006913 if (startIteratingHistoryLocked()) {
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006914 try {
6915 for (int i=0; i<getHistoryStringPoolSize(); i++) {
6916 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
6917 pw.print(HISTORY_STRING_POOL); pw.print(',');
6918 pw.print(i);
Dianne Hackborn99009ea2014-04-18 16:23:42 -07006919 pw.print(",");
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006920 pw.print(getHistoryTagPoolUid(i));
Dianne Hackborn99009ea2014-04-18 16:23:42 -07006921 pw.print(",\"");
6922 String str = getHistoryTagPoolString(i);
6923 str = str.replace("\\", "\\\\");
6924 str = str.replace("\"", "\\\"");
6925 pw.print(str);
6926 pw.print("\"");
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006927 pw.println();
6928 }
Dianne Hackborn37de0982014-05-09 09:32:18 -07006929 dumpHistoryLocked(pw, flags, histStart, true);
Dianne Hackborn71fc13e2014-02-03 10:50:53 -08006930 } finally {
6931 finishIteratingHistoryLocked();
Dianne Hackborn099bc622014-01-22 13:39:16 -08006932 }
Dianne Hackborn13ac0412013-06-25 19:34:49 -07006933 }
Dianne Hackborn13ac0412013-06-25 19:34:49 -07006934 }
6935
Kweku Adams2f73ecd2017-09-27 16:59:19 -07006936 if ((flags & DUMP_HISTORY_ONLY) != 0) {
Dianne Hackborn099bc622014-01-22 13:39:16 -08006937 return;
6938 }
6939
Dianne Hackborne4a59512010-12-07 11:08:07 -08006940 if (apps != null) {
Dianne Hackborn9cfba352016-03-24 17:31:28 -07006941 SparseArray<Pair<ArrayList<String>, MutableBoolean>> uids = new SparseArray<>();
Dianne Hackborne4a59512010-12-07 11:08:07 -08006942 for (int i=0; i<apps.size(); i++) {
6943 ApplicationInfo ai = apps.get(i);
Dianne Hackborn9cfba352016-03-24 17:31:28 -07006944 Pair<ArrayList<String>, MutableBoolean> pkgs = uids.get(
6945 UserHandle.getAppId(ai.uid));
Dianne Hackborne4a59512010-12-07 11:08:07 -08006946 if (pkgs == null) {
Dianne Hackborn9cfba352016-03-24 17:31:28 -07006947 pkgs = new Pair<>(new ArrayList<String>(), new MutableBoolean(false));
6948 uids.put(UserHandle.getAppId(ai.uid), pkgs);
Dianne Hackborne4a59512010-12-07 11:08:07 -08006949 }
Dianne Hackborn9cfba352016-03-24 17:31:28 -07006950 pkgs.first.add(ai.packageName);
Dianne Hackborne4a59512010-12-07 11:08:07 -08006951 }
6952 SparseArray<? extends Uid> uidStats = getUidStats();
6953 final int NU = uidStats.size();
6954 String[] lineArgs = new String[2];
6955 for (int i=0; i<NU; i++) {
Dianne Hackborn9cfba352016-03-24 17:31:28 -07006956 int uid = UserHandle.getAppId(uidStats.keyAt(i));
6957 Pair<ArrayList<String>, MutableBoolean> pkgs = uids.get(uid);
6958 if (pkgs != null && !pkgs.second.value) {
6959 pkgs.second.value = true;
6960 for (int j=0; j<pkgs.first.size(); j++) {
Dianne Hackborne4a59512010-12-07 11:08:07 -08006961 lineArgs[0] = Integer.toString(uid);
Dianne Hackborn9cfba352016-03-24 17:31:28 -07006962 lineArgs[1] = pkgs.first.get(j);
Dianne Hackborne4a59512010-12-07 11:08:07 -08006963 dumpLine(pw, 0 /* uid */, "i" /* category */, UID_DATA,
6964 (Object[])lineArgs);
6965 }
6966 }
6967 }
6968 }
Kweku Adams2f73ecd2017-09-27 16:59:19 -07006969 if ((flags & DUMP_DAILY_ONLY) == 0) {
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006970 dumpDurationSteps(pw, "", DISCHARGE_STEP_DATA, getDischargeLevelStepTracker(), true);
Dianne Hackbornd06dcfd2014-05-02 13:49:30 -07006971 String[] lineArgs = new String[1];
Kweku Adamsb0449e02016-10-12 14:18:27 -07006972 long timeRemaining = computeBatteryTimeRemaining(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 */, DISCHARGE_TIME_REMAIN_DATA,
6976 (Object[])lineArgs);
6977 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08006978 dumpDurationSteps(pw, "", CHARGE_STEP_DATA, getChargeLevelStepTracker(), true);
Kweku Adamsb0449e02016-10-12 14:18:27 -07006979 timeRemaining = computeChargeTimeRemaining(SystemClock.elapsedRealtime() * 1000);
Dianne Hackbornd06dcfd2014-05-02 13:49:30 -07006980 if (timeRemaining >= 0) {
6981 lineArgs[0] = Long.toString(timeRemaining);
6982 dumpLine(pw, 0 /* uid */, "i" /* category */, CHARGE_TIME_REMAIN_DATA,
6983 (Object[])lineArgs);
6984 }
Dianne Hackbornd953c532014-08-16 18:17:38 -07006985 dumpCheckinLocked(context, pw, STATS_SINCE_CHARGED, -1,
6986 (flags&DUMP_DEVICE_WIFI_ONLY) != 0);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08006987 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006988 }
Kweku Adams2f73ecd2017-09-27 16:59:19 -07006989
Kweku Adams87b19ec2017-10-09 12:40:03 -07006990 /** Dump #STATS_SINCE_CHARGED batterystats data to a proto. @hide */
Kweku Adams2f73ecd2017-09-27 16:59:19 -07006991 public void dumpProtoLocked(Context context, FileDescriptor fd, List<ApplicationInfo> apps,
Kweku Adams6ccebf22017-12-11 12:30:35 -08006992 int flags) {
Kweku Adams2f73ecd2017-09-27 16:59:19 -07006993 final ProtoOutputStream proto = new ProtoOutputStream(fd);
6994 final long bToken = proto.start(BatteryStatsServiceDumpProto.BATTERYSTATS);
6995 prepareForDumpLocked();
6996
6997 proto.write(BatteryStatsProto.REPORT_VERSION, CHECKIN_VERSION);
6998 proto.write(BatteryStatsProto.PARCEL_VERSION, getParcelVersion());
6999 proto.write(BatteryStatsProto.START_PLATFORM_VERSION, getStartPlatformVersion());
7000 proto.write(BatteryStatsProto.END_PLATFORM_VERSION, getEndPlatformVersion());
7001
Kweku Adams6ccebf22017-12-11 12:30:35 -08007002 // History intentionally not included in proto dump.
Kweku Adams2f73ecd2017-09-27 16:59:19 -07007003
7004 if ((flags & (DUMP_HISTORY_ONLY | DUMP_DAILY_ONLY)) == 0) {
Kweku Adams103351f2017-10-16 14:39:34 -07007005 final BatteryStatsHelper helper = new BatteryStatsHelper(context, false,
7006 (flags & DUMP_DEVICE_WIFI_ONLY) != 0);
7007 helper.create(this);
7008 helper.refreshStats(STATS_SINCE_CHARGED, UserHandle.USER_ALL);
7009
7010 dumpProtoAppsLocked(proto, helper, apps);
7011 dumpProtoSystemLocked(proto, helper);
Kweku Adams2f73ecd2017-09-27 16:59:19 -07007012 }
7013
7014 proto.end(bToken);
7015 proto.flush();
7016 }
Kweku Adams87b19ec2017-10-09 12:40:03 -07007017
Kweku Adams103351f2017-10-16 14:39:34 -07007018 private void dumpProtoAppsLocked(ProtoOutputStream proto, BatteryStatsHelper helper,
7019 List<ApplicationInfo> apps) {
7020 final int which = STATS_SINCE_CHARGED;
7021 final long rawUptimeUs = SystemClock.uptimeMillis() * 1000;
7022 final long rawRealtimeMs = SystemClock.elapsedRealtime();
7023 final long rawRealtimeUs = rawRealtimeMs * 1000;
7024 final long batteryUptimeUs = getBatteryUptime(rawUptimeUs);
7025
7026 SparseArray<ArrayList<String>> aidToPackages = new SparseArray<>();
7027 if (apps != null) {
7028 for (int i = 0; i < apps.size(); ++i) {
7029 ApplicationInfo ai = apps.get(i);
7030 int aid = UserHandle.getAppId(ai.uid);
7031 ArrayList<String> pkgs = aidToPackages.get(aid);
7032 if (pkgs == null) {
7033 pkgs = new ArrayList<String>();
7034 aidToPackages.put(aid, pkgs);
7035 }
7036 pkgs.add(ai.packageName);
7037 }
7038 }
7039
7040 SparseArray<BatterySipper> uidToSipper = new SparseArray<>();
7041 final List<BatterySipper> sippers = helper.getUsageList();
7042 if (sippers != null) {
7043 for (int i = 0; i < sippers.size(); ++i) {
7044 final BatterySipper bs = sippers.get(i);
7045 if (bs.drainType != BatterySipper.DrainType.APP) {
7046 // Others are handled by dumpProtoSystemLocked()
7047 continue;
7048 }
7049 uidToSipper.put(bs.uidObj.getUid(), bs);
7050 }
7051 }
7052
7053 SparseArray<? extends Uid> uidStats = getUidStats();
7054 final int n = uidStats.size();
7055 for (int iu = 0; iu < n; ++iu) {
7056 final long uTkn = proto.start(BatteryStatsProto.UIDS);
7057 final Uid u = uidStats.valueAt(iu);
7058
7059 final int uid = uidStats.keyAt(iu);
7060 proto.write(UidProto.UID, uid);
7061
7062 // Print packages and apk stats (UID_DATA & APK_DATA)
7063 ArrayList<String> pkgs = aidToPackages.get(UserHandle.getAppId(uid));
7064 if (pkgs == null) {
7065 pkgs = new ArrayList<String>();
7066 }
7067 final ArrayMap<String, ? extends BatteryStats.Uid.Pkg> packageStats =
7068 u.getPackageStats();
7069 for (int ipkg = packageStats.size() - 1; ipkg >= 0; --ipkg) {
7070 String pkg = packageStats.keyAt(ipkg);
7071 final ArrayMap<String, ? extends Uid.Pkg.Serv> serviceStats =
7072 packageStats.valueAt(ipkg).getServiceStats();
7073 if (serviceStats.size() == 0) {
7074 // Due to the way ActivityManagerService logs wakeup alarms, some packages (for
7075 // example, "android") may be included in the packageStats that aren't part of
7076 // the UID. If they don't have any services, then they shouldn't be listed here.
7077 // These packages won't be a part in the pkgs List.
7078 continue;
7079 }
7080
7081 final long pToken = proto.start(UidProto.PACKAGES);
7082 proto.write(UidProto.Package.NAME, pkg);
7083 // Remove from the packages list since we're logging it here.
7084 pkgs.remove(pkg);
7085
7086 for (int isvc = serviceStats.size() - 1; isvc >= 0; --isvc) {
7087 final BatteryStats.Uid.Pkg.Serv ss = serviceStats.valueAt(isvc);
7088 long sToken = proto.start(UidProto.Package.SERVICES);
7089
7090 proto.write(UidProto.Package.Service.NAME, serviceStats.keyAt(isvc));
7091 proto.write(UidProto.Package.Service.START_DURATION_MS,
7092 roundUsToMs(ss.getStartTime(batteryUptimeUs, which)));
7093 proto.write(UidProto.Package.Service.START_COUNT, ss.getStarts(which));
7094 proto.write(UidProto.Package.Service.LAUNCH_COUNT, ss.getLaunches(which));
7095
7096 proto.end(sToken);
7097 }
7098 proto.end(pToken);
7099 }
7100 // Print any remaining packages that weren't in the packageStats map. pkgs is pulled
7101 // from PackageManager data. Packages are only included in packageStats if there was
7102 // specific data tracked for them (services and wakeup alarms, etc.).
7103 for (String p : pkgs) {
7104 final long pToken = proto.start(UidProto.PACKAGES);
7105 proto.write(UidProto.Package.NAME, p);
7106 proto.end(pToken);
7107 }
7108
7109 // Total wakelock data (AGGREGATED_WAKELOCK_DATA)
7110 if (u.getAggregatedPartialWakelockTimer() != null) {
7111 final Timer timer = u.getAggregatedPartialWakelockTimer();
7112 // Times are since reset (regardless of 'which')
7113 final long totTimeMs = timer.getTotalDurationMsLocked(rawRealtimeMs);
7114 final Timer bgTimer = timer.getSubTimer();
7115 final long bgTimeMs = bgTimer != null
7116 ? bgTimer.getTotalDurationMsLocked(rawRealtimeMs) : 0;
7117 final long awToken = proto.start(UidProto.AGGREGATED_WAKELOCK);
7118 proto.write(UidProto.AggregatedWakelock.PARTIAL_DURATION_MS, totTimeMs);
7119 proto.write(UidProto.AggregatedWakelock.BACKGROUND_PARTIAL_DURATION_MS, bgTimeMs);
7120 proto.end(awToken);
7121 }
7122
7123 // Audio (AUDIO_DATA)
7124 dumpTimer(proto, UidProto.AUDIO, u.getAudioTurnedOnTimer(), rawRealtimeUs, which);
7125
7126 // Bluetooth Controller (BLUETOOTH_CONTROLLER_DATA)
7127 dumpControllerActivityProto(proto, UidProto.BLUETOOTH_CONTROLLER,
7128 u.getBluetoothControllerActivity(), which);
7129
7130 // BLE scans (BLUETOOTH_MISC_DATA) (uses totalDurationMsLocked and MaxDurationMsLocked)
7131 final Timer bleTimer = u.getBluetoothScanTimer();
7132 if (bleTimer != null) {
7133 final long bmToken = proto.start(UidProto.BLUETOOTH_MISC);
7134
7135 dumpTimer(proto, UidProto.BluetoothMisc.APPORTIONED_BLE_SCAN, bleTimer,
7136 rawRealtimeUs, which);
7137 dumpTimer(proto, UidProto.BluetoothMisc.BACKGROUND_BLE_SCAN,
7138 u.getBluetoothScanBackgroundTimer(), rawRealtimeUs, which);
7139 // Unoptimized scan timer. Unpooled and since reset (regardless of 'which').
7140 dumpTimer(proto, UidProto.BluetoothMisc.UNOPTIMIZED_BLE_SCAN,
7141 u.getBluetoothUnoptimizedScanTimer(), rawRealtimeUs, which);
7142 // Unoptimized bg scan timer. Unpooled and since reset (regardless of 'which').
7143 dumpTimer(proto, UidProto.BluetoothMisc.BACKGROUND_UNOPTIMIZED_BLE_SCAN,
7144 u.getBluetoothUnoptimizedScanBackgroundTimer(), rawRealtimeUs, which);
7145 // Result counters
7146 proto.write(UidProto.BluetoothMisc.BLE_SCAN_RESULT_COUNT,
7147 u.getBluetoothScanResultCounter() != null
7148 ? u.getBluetoothScanResultCounter().getCountLocked(which) : 0);
7149 proto.write(UidProto.BluetoothMisc.BACKGROUND_BLE_SCAN_RESULT_COUNT,
7150 u.getBluetoothScanResultBgCounter() != null
7151 ? u.getBluetoothScanResultBgCounter().getCountLocked(which) : 0);
7152
7153 proto.end(bmToken);
7154 }
7155
7156 // Camera (CAMERA_DATA)
7157 dumpTimer(proto, UidProto.CAMERA, u.getCameraTurnedOnTimer(), rawRealtimeUs, which);
7158
7159 // CPU stats (CPU_DATA & CPU_TIMES_AT_FREQ_DATA)
7160 final long cpuToken = proto.start(UidProto.CPU);
7161 proto.write(UidProto.Cpu.USER_DURATION_MS, roundUsToMs(u.getUserCpuTimeUs(which)));
7162 proto.write(UidProto.Cpu.SYSTEM_DURATION_MS, roundUsToMs(u.getSystemCpuTimeUs(which)));
7163
7164 final long[] cpuFreqs = getCpuFreqs();
7165 if (cpuFreqs != null) {
7166 final long[] cpuFreqTimeMs = u.getCpuFreqTimes(which);
7167 // If total cpuFreqTimes is null, then we don't need to check for
7168 // screenOffCpuFreqTimes.
7169 if (cpuFreqTimeMs != null && cpuFreqTimeMs.length == cpuFreqs.length) {
7170 long[] screenOffCpuFreqTimeMs = u.getScreenOffCpuFreqTimes(which);
7171 if (screenOffCpuFreqTimeMs == null) {
7172 screenOffCpuFreqTimeMs = new long[cpuFreqTimeMs.length];
7173 }
7174 for (int ic = 0; ic < cpuFreqTimeMs.length; ++ic) {
7175 long cToken = proto.start(UidProto.Cpu.BY_FREQUENCY);
7176 proto.write(UidProto.Cpu.ByFrequency.FREQUENCY_INDEX, ic + 1);
7177 proto.write(UidProto.Cpu.ByFrequency.TOTAL_DURATION_MS,
7178 cpuFreqTimeMs[ic]);
7179 proto.write(UidProto.Cpu.ByFrequency.SCREEN_OFF_DURATION_MS,
7180 screenOffCpuFreqTimeMs[ic]);
7181 proto.end(cToken);
7182 }
7183 }
7184 }
Sudheer Shanka6d658d72018-01-01 01:36:49 -08007185
7186 for (int procState = 0; procState < Uid.NUM_PROCESS_STATE; ++procState) {
7187 final long[] timesMs = u.getCpuFreqTimes(which, procState);
7188 if (timesMs != null && timesMs.length == cpuFreqs.length) {
7189 long[] screenOffTimesMs = u.getScreenOffCpuFreqTimes(which, procState);
7190 if (screenOffTimesMs == null) {
7191 screenOffTimesMs = new long[timesMs.length];
7192 }
7193 final long procToken = proto.start(UidProto.Cpu.BY_PROCESS_STATE);
7194 proto.write(UidProto.Cpu.ByProcessState.PROCESS_STATE, procState);
7195 for (int ic = 0; ic < timesMs.length; ++ic) {
7196 long cToken = proto.start(UidProto.Cpu.ByProcessState.BY_FREQUENCY);
7197 proto.write(UidProto.Cpu.ByFrequency.FREQUENCY_INDEX, ic + 1);
7198 proto.write(UidProto.Cpu.ByFrequency.TOTAL_DURATION_MS,
7199 timesMs[ic]);
7200 proto.write(UidProto.Cpu.ByFrequency.SCREEN_OFF_DURATION_MS,
7201 screenOffTimesMs[ic]);
7202 proto.end(cToken);
7203 }
7204 proto.end(procToken);
7205 }
7206 }
Kweku Adams103351f2017-10-16 14:39:34 -07007207 proto.end(cpuToken);
7208
7209 // Flashlight (FLASHLIGHT_DATA)
7210 dumpTimer(proto, UidProto.FLASHLIGHT, u.getFlashlightTurnedOnTimer(),
7211 rawRealtimeUs, which);
7212
7213 // Foreground activity (FOREGROUND_ACTIVITY_DATA)
7214 dumpTimer(proto, UidProto.FOREGROUND_ACTIVITY, u.getForegroundActivityTimer(),
7215 rawRealtimeUs, which);
7216
7217 // Foreground service (FOREGROUND_SERVICE_DATA)
7218 dumpTimer(proto, UidProto.FOREGROUND_SERVICE, u.getForegroundServiceTimer(),
7219 rawRealtimeUs, which);
7220
7221 // Job completion (JOB_COMPLETION_DATA)
7222 final ArrayMap<String, SparseIntArray> completions = u.getJobCompletionStats();
7223 final int[] reasons = new int[]{
7224 JobParameters.REASON_CANCELED,
7225 JobParameters.REASON_CONSTRAINTS_NOT_SATISFIED,
7226 JobParameters.REASON_PREEMPT,
7227 JobParameters.REASON_TIMEOUT,
7228 JobParameters.REASON_DEVICE_IDLE,
7229 };
7230 for (int ic = 0; ic < completions.size(); ++ic) {
7231 SparseIntArray types = completions.valueAt(ic);
7232 if (types != null) {
7233 final long jcToken = proto.start(UidProto.JOB_COMPLETION);
7234
7235 proto.write(UidProto.JobCompletion.NAME, completions.keyAt(ic));
7236
7237 for (int r : reasons) {
7238 long rToken = proto.start(UidProto.JobCompletion.REASON_COUNT);
7239 proto.write(UidProto.JobCompletion.ReasonCount.NAME, r);
7240 proto.write(UidProto.JobCompletion.ReasonCount.COUNT, types.get(r, 0));
7241 proto.end(rToken);
7242 }
7243
7244 proto.end(jcToken);
7245 }
7246 }
7247
7248 // Scheduled jobs (JOB_DATA)
7249 final ArrayMap<String, ? extends Timer> jobs = u.getJobStats();
7250 for (int ij = jobs.size() - 1; ij >= 0; --ij) {
7251 final Timer timer = jobs.valueAt(ij);
7252 final Timer bgTimer = timer.getSubTimer();
7253 final long jToken = proto.start(UidProto.JOBS);
7254
7255 proto.write(UidProto.Job.NAME, jobs.keyAt(ij));
7256 // Background uses totalDurationMsLocked, while total uses totalTimeLocked
7257 dumpTimer(proto, UidProto.Job.TOTAL, timer, rawRealtimeUs, which);
7258 dumpTimer(proto, UidProto.Job.BACKGROUND, bgTimer, rawRealtimeUs, which);
7259
7260 proto.end(jToken);
7261 }
7262
7263 // Modem Controller (MODEM_CONTROLLER_DATA)
7264 dumpControllerActivityProto(proto, UidProto.MODEM_CONTROLLER,
7265 u.getModemControllerActivity(), which);
7266
7267 // Network stats (NETWORK_DATA)
7268 final long nToken = proto.start(UidProto.NETWORK);
7269 proto.write(UidProto.Network.MOBILE_BYTES_RX,
7270 u.getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which));
7271 proto.write(UidProto.Network.MOBILE_BYTES_TX,
7272 u.getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which));
7273 proto.write(UidProto.Network.WIFI_BYTES_RX,
7274 u.getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which));
7275 proto.write(UidProto.Network.WIFI_BYTES_TX,
7276 u.getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which));
7277 proto.write(UidProto.Network.BT_BYTES_RX,
7278 u.getNetworkActivityBytes(NETWORK_BT_RX_DATA, which));
7279 proto.write(UidProto.Network.BT_BYTES_TX,
7280 u.getNetworkActivityBytes(NETWORK_BT_TX_DATA, which));
7281 proto.write(UidProto.Network.MOBILE_PACKETS_RX,
7282 u.getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which));
7283 proto.write(UidProto.Network.MOBILE_PACKETS_TX,
7284 u.getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which));
7285 proto.write(UidProto.Network.WIFI_PACKETS_RX,
7286 u.getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which));
7287 proto.write(UidProto.Network.WIFI_PACKETS_TX,
7288 u.getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which));
7289 proto.write(UidProto.Network.MOBILE_ACTIVE_DURATION_MS,
7290 roundUsToMs(u.getMobileRadioActiveTime(which)));
7291 proto.write(UidProto.Network.MOBILE_ACTIVE_COUNT,
7292 u.getMobileRadioActiveCount(which));
7293 proto.write(UidProto.Network.MOBILE_WAKEUP_COUNT,
7294 u.getMobileRadioApWakeupCount(which));
7295 proto.write(UidProto.Network.WIFI_WAKEUP_COUNT,
7296 u.getWifiRadioApWakeupCount(which));
7297 proto.write(UidProto.Network.MOBILE_BYTES_BG_RX,
7298 u.getNetworkActivityBytes(NETWORK_MOBILE_BG_RX_DATA, which));
7299 proto.write(UidProto.Network.MOBILE_BYTES_BG_TX,
7300 u.getNetworkActivityBytes(NETWORK_MOBILE_BG_TX_DATA, which));
7301 proto.write(UidProto.Network.WIFI_BYTES_BG_RX,
7302 u.getNetworkActivityBytes(NETWORK_WIFI_BG_RX_DATA, which));
7303 proto.write(UidProto.Network.WIFI_BYTES_BG_TX,
7304 u.getNetworkActivityBytes(NETWORK_WIFI_BG_TX_DATA, which));
7305 proto.write(UidProto.Network.MOBILE_PACKETS_BG_RX,
7306 u.getNetworkActivityPackets(NETWORK_MOBILE_BG_RX_DATA, which));
7307 proto.write(UidProto.Network.MOBILE_PACKETS_BG_TX,
7308 u.getNetworkActivityPackets(NETWORK_MOBILE_BG_TX_DATA, which));
7309 proto.write(UidProto.Network.WIFI_PACKETS_BG_RX,
7310 u.getNetworkActivityPackets(NETWORK_WIFI_BG_RX_DATA, which));
7311 proto.write(UidProto.Network.WIFI_PACKETS_BG_TX,
7312 u.getNetworkActivityPackets(NETWORK_WIFI_BG_TX_DATA, which));
7313 proto.end(nToken);
7314
7315 // Power use item (POWER_USE_ITEM_DATA)
7316 BatterySipper bs = uidToSipper.get(uid);
7317 if (bs != null) {
7318 final long bsToken = proto.start(UidProto.POWER_USE_ITEM);
7319 proto.write(UidProto.PowerUseItem.COMPUTED_POWER_MAH, bs.totalPowerMah);
7320 proto.write(UidProto.PowerUseItem.SHOULD_HIDE, bs.shouldHide);
7321 proto.write(UidProto.PowerUseItem.SCREEN_POWER_MAH, bs.screenPowerMah);
7322 proto.write(UidProto.PowerUseItem.PROPORTIONAL_SMEAR_MAH,
7323 bs.proportionalSmearMah);
7324 proto.end(bsToken);
7325 }
7326
7327 // Processes (PROCESS_DATA)
7328 final ArrayMap<String, ? extends BatteryStats.Uid.Proc> processStats =
7329 u.getProcessStats();
7330 for (int ipr = processStats.size() - 1; ipr >= 0; --ipr) {
7331 final Uid.Proc ps = processStats.valueAt(ipr);
7332 final long prToken = proto.start(UidProto.PROCESS);
7333
7334 proto.write(UidProto.Process.NAME, processStats.keyAt(ipr));
7335 proto.write(UidProto.Process.USER_DURATION_MS, ps.getUserTime(which));
7336 proto.write(UidProto.Process.SYSTEM_DURATION_MS, ps.getSystemTime(which));
7337 proto.write(UidProto.Process.FOREGROUND_DURATION_MS, ps.getForegroundTime(which));
7338 proto.write(UidProto.Process.START_COUNT, ps.getStarts(which));
7339 proto.write(UidProto.Process.ANR_COUNT, ps.getNumAnrs(which));
7340 proto.write(UidProto.Process.CRASH_COUNT, ps.getNumCrashes(which));
7341
7342 proto.end(prToken);
7343 }
7344
7345 // Sensors (SENSOR_DATA)
7346 final SparseArray<? extends BatteryStats.Uid.Sensor> sensors = u.getSensorStats();
7347 for (int ise = 0; ise < sensors.size(); ++ise) {
7348 final Uid.Sensor se = sensors.valueAt(ise);
7349 final Timer timer = se.getSensorTime();
7350 if (timer == null) {
7351 continue;
7352 }
7353 final Timer bgTimer = se.getSensorBackgroundTime();
7354 final int sensorNumber = sensors.keyAt(ise);
7355 final long seToken = proto.start(UidProto.SENSORS);
7356
7357 proto.write(UidProto.Sensor.ID, sensorNumber);
7358 // Background uses totalDurationMsLocked, while total uses totalTimeLocked
7359 dumpTimer(proto, UidProto.Sensor.APPORTIONED, timer, rawRealtimeUs, which);
7360 dumpTimer(proto, UidProto.Sensor.BACKGROUND, bgTimer, rawRealtimeUs, which);
7361
7362 proto.end(seToken);
7363 }
7364
7365 // State times (STATE_TIME_DATA)
7366 for (int ips = 0; ips < Uid.NUM_PROCESS_STATE; ++ips) {
7367 long durMs = roundUsToMs(u.getProcessStateTime(ips, rawRealtimeUs, which));
7368 if (durMs == 0) {
7369 continue;
7370 }
7371 final long stToken = proto.start(UidProto.STATES);
7372 proto.write(UidProto.StateTime.STATE, ips);
7373 proto.write(UidProto.StateTime.DURATION_MS, durMs);
7374 proto.end(stToken);
7375 }
7376
7377 // Syncs (SYNC_DATA)
7378 final ArrayMap<String, ? extends Timer> syncs = u.getSyncStats();
7379 for (int isy = syncs.size() - 1; isy >= 0; --isy) {
7380 final Timer timer = syncs.valueAt(isy);
7381 final Timer bgTimer = timer.getSubTimer();
7382 final long syToken = proto.start(UidProto.SYNCS);
7383
7384 proto.write(UidProto.Sync.NAME, syncs.keyAt(isy));
7385 // Background uses totalDurationMsLocked, while total uses totalTimeLocked
7386 dumpTimer(proto, UidProto.Sync.TOTAL, timer, rawRealtimeUs, which);
7387 dumpTimer(proto, UidProto.Sync.BACKGROUND, bgTimer, rawRealtimeUs, which);
7388
7389 proto.end(syToken);
7390 }
7391
7392 // User activity (USER_ACTIVITY_DATA)
7393 if (u.hasUserActivity()) {
7394 for (int i = 0; i < Uid.NUM_USER_ACTIVITY_TYPES; ++i) {
7395 int val = u.getUserActivityCount(i, which);
7396 if (val != 0) {
7397 final long uaToken = proto.start(UidProto.USER_ACTIVITY);
7398 proto.write(UidProto.UserActivity.NAME, i);
7399 proto.write(UidProto.UserActivity.COUNT, val);
7400 proto.end(uaToken);
7401 }
7402 }
7403 }
7404
7405 // Vibrator (VIBRATOR_DATA)
7406 dumpTimer(proto, UidProto.VIBRATOR, u.getVibratorOnTimer(), rawRealtimeUs, which);
7407
7408 // Video (VIDEO_DATA)
7409 dumpTimer(proto, UidProto.VIDEO, u.getVideoTurnedOnTimer(), rawRealtimeUs, which);
7410
7411 // Wakelocks (WAKELOCK_DATA)
7412 final ArrayMap<String, ? extends Uid.Wakelock> wakelocks = u.getWakelockStats();
7413 for (int iw = wakelocks.size() - 1; iw >= 0; --iw) {
7414 final Uid.Wakelock wl = wakelocks.valueAt(iw);
7415 final long wToken = proto.start(UidProto.WAKELOCKS);
7416 proto.write(UidProto.Wakelock.NAME, wakelocks.keyAt(iw));
7417 dumpTimer(proto, UidProto.Wakelock.FULL, wl.getWakeTime(WAKE_TYPE_FULL),
7418 rawRealtimeUs, which);
7419 final Timer pTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
7420 if (pTimer != null) {
7421 dumpTimer(proto, UidProto.Wakelock.PARTIAL, pTimer, rawRealtimeUs, which);
7422 dumpTimer(proto, UidProto.Wakelock.BACKGROUND_PARTIAL, pTimer.getSubTimer(),
7423 rawRealtimeUs, which);
7424 }
7425 dumpTimer(proto, UidProto.Wakelock.WINDOW, wl.getWakeTime(WAKE_TYPE_WINDOW),
7426 rawRealtimeUs, which);
7427 proto.end(wToken);
7428 }
7429
Ahmed ElArabawyddd09692017-10-30 17:58:29 -07007430 // Wifi Multicast Wakelock (WIFI_MULTICAST_WAKELOCK_DATA)
7431 dumpTimer(proto, UidProto.WIFI_MULTICAST_WAKELOCK, u.getMulticastWakelockStats(),
7432 rawRealtimeUs, which);
7433
Kweku Adams103351f2017-10-16 14:39:34 -07007434 // Wakeup alarms (WAKEUP_ALARM_DATA)
7435 for (int ipkg = packageStats.size() - 1; ipkg >= 0; --ipkg) {
7436 final Uid.Pkg ps = packageStats.valueAt(ipkg);
7437 final ArrayMap<String, ? extends Counter> alarms = ps.getWakeupAlarmStats();
7438 for (int iwa = alarms.size() - 1; iwa >= 0; --iwa) {
7439 final long waToken = proto.start(UidProto.WAKEUP_ALARM);
7440 proto.write(UidProto.WakeupAlarm.NAME, alarms.keyAt(iwa));
7441 proto.write(UidProto.WakeupAlarm.COUNT,
7442 alarms.valueAt(iwa).getCountLocked(which));
7443 proto.end(waToken);
7444 }
7445 }
7446
7447 // Wifi Controller (WIFI_CONTROLLER_DATA)
7448 dumpControllerActivityProto(proto, UidProto.WIFI_CONTROLLER,
7449 u.getWifiControllerActivity(), which);
7450
7451 // Wifi data (WIFI_DATA)
7452 final long wToken = proto.start(UidProto.WIFI);
7453 proto.write(UidProto.Wifi.FULL_WIFI_LOCK_DURATION_MS,
7454 roundUsToMs(u.getFullWifiLockTime(rawRealtimeUs, which)));
7455 dumpTimer(proto, UidProto.Wifi.APPORTIONED_SCAN, u.getWifiScanTimer(),
7456 rawRealtimeUs, which);
7457 proto.write(UidProto.Wifi.RUNNING_DURATION_MS,
7458 roundUsToMs(u.getWifiRunningTime(rawRealtimeUs, which)));
7459 dumpTimer(proto, UidProto.Wifi.BACKGROUND_SCAN, u.getWifiScanBackgroundTimer(),
7460 rawRealtimeUs, which);
7461 proto.end(wToken);
7462
7463 proto.end(uTkn);
7464 }
7465 }
7466
7467 private void dumpProtoSystemLocked(ProtoOutputStream proto, BatteryStatsHelper helper) {
Kweku Adams87b19ec2017-10-09 12:40:03 -07007468 final long sToken = proto.start(BatteryStatsProto.SYSTEM);
7469 final long rawUptimeUs = SystemClock.uptimeMillis() * 1000;
7470 final long rawRealtimeMs = SystemClock.elapsedRealtime();
7471 final long rawRealtimeUs = rawRealtimeMs * 1000;
7472 final int which = STATS_SINCE_CHARGED;
7473
7474 // Battery data (BATTERY_DATA)
Kweku Adams103351f2017-10-16 14:39:34 -07007475 final long bToken = proto.start(SystemProto.BATTERY);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007476 proto.write(SystemProto.Battery.START_CLOCK_TIME_MS, getStartClockTime());
7477 proto.write(SystemProto.Battery.START_COUNT, getStartCount());
7478 proto.write(SystemProto.Battery.TOTAL_REALTIME_MS,
7479 computeRealtime(rawRealtimeUs, which) / 1000);
7480 proto.write(SystemProto.Battery.TOTAL_UPTIME_MS,
7481 computeUptime(rawUptimeUs, which) / 1000);
7482 proto.write(SystemProto.Battery.BATTERY_REALTIME_MS,
7483 computeBatteryRealtime(rawRealtimeUs, which) / 1000);
7484 proto.write(SystemProto.Battery.BATTERY_UPTIME_MS,
7485 computeBatteryUptime(rawUptimeUs, which) / 1000);
7486 proto.write(SystemProto.Battery.SCREEN_OFF_REALTIME_MS,
7487 computeBatteryScreenOffRealtime(rawRealtimeUs, which) / 1000);
7488 proto.write(SystemProto.Battery.SCREEN_OFF_UPTIME_MS,
7489 computeBatteryScreenOffUptime(rawUptimeUs, which) / 1000);
7490 proto.write(SystemProto.Battery.SCREEN_DOZE_DURATION_MS,
7491 getScreenDozeTime(rawRealtimeUs, which) / 1000);
7492 proto.write(SystemProto.Battery.ESTIMATED_BATTERY_CAPACITY_MAH,
7493 getEstimatedBatteryCapacity());
7494 proto.write(SystemProto.Battery.MIN_LEARNED_BATTERY_CAPACITY_UAH,
7495 getMinLearnedBatteryCapacity());
7496 proto.write(SystemProto.Battery.MAX_LEARNED_BATTERY_CAPACITY_UAH,
7497 getMaxLearnedBatteryCapacity());
Kweku Adams103351f2017-10-16 14:39:34 -07007498 proto.end(bToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007499
7500 // Battery discharge (BATTERY_DISCHARGE_DATA)
Kweku Adams103351f2017-10-16 14:39:34 -07007501 final long bdToken = proto.start(SystemProto.BATTERY_DISCHARGE);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007502 proto.write(SystemProto.BatteryDischarge.LOWER_BOUND_SINCE_CHARGE,
7503 getLowDischargeAmountSinceCharge());
7504 proto.write(SystemProto.BatteryDischarge.UPPER_BOUND_SINCE_CHARGE,
7505 getHighDischargeAmountSinceCharge());
7506 proto.write(SystemProto.BatteryDischarge.SCREEN_ON_SINCE_CHARGE,
7507 getDischargeAmountScreenOnSinceCharge());
7508 proto.write(SystemProto.BatteryDischarge.SCREEN_OFF_SINCE_CHARGE,
7509 getDischargeAmountScreenOffSinceCharge());
7510 proto.write(SystemProto.BatteryDischarge.SCREEN_DOZE_SINCE_CHARGE,
7511 getDischargeAmountScreenDozeSinceCharge());
7512 proto.write(SystemProto.BatteryDischarge.TOTAL_MAH,
7513 getUahDischarge(which) / 1000);
7514 proto.write(SystemProto.BatteryDischarge.TOTAL_MAH_SCREEN_OFF,
7515 getUahDischargeScreenOff(which) / 1000);
7516 proto.write(SystemProto.BatteryDischarge.TOTAL_MAH_SCREEN_DOZE,
7517 getUahDischargeScreenDoze(which) / 1000);
Mike Ma15313c92017-11-15 17:58:21 -08007518 proto.write(SystemProto.BatteryDischarge.TOTAL_MAH_LIGHT_DOZE,
7519 getUahDischargeLightDoze(which) / 1000);
7520 proto.write(SystemProto.BatteryDischarge.TOTAL_MAH_DEEP_DOZE,
7521 getUahDischargeDeepDoze(which) / 1000);
Kweku Adams103351f2017-10-16 14:39:34 -07007522 proto.end(bdToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007523
7524 // Time remaining
7525 long timeRemainingUs = computeChargeTimeRemaining(rawRealtimeUs);
Kweku Adams103351f2017-10-16 14:39:34 -07007526 // These are part of a oneof, so we should only set one of them.
Kweku Adams87b19ec2017-10-09 12:40:03 -07007527 if (timeRemainingUs >= 0) {
7528 // Charge time remaining (CHARGE_TIME_REMAIN_DATA)
7529 proto.write(SystemProto.CHARGE_TIME_REMAINING_MS, timeRemainingUs / 1000);
7530 } else {
7531 timeRemainingUs = computeBatteryTimeRemaining(rawRealtimeUs);
7532 // Discharge time remaining (DISCHARGE_TIME_REMAIN_DATA)
7533 if (timeRemainingUs >= 0) {
7534 proto.write(SystemProto.DISCHARGE_TIME_REMAINING_MS, timeRemainingUs / 1000);
7535 } else {
7536 proto.write(SystemProto.DISCHARGE_TIME_REMAINING_MS, -1);
7537 }
7538 }
7539
7540 // Charge step (CHARGE_STEP_DATA)
7541 dumpDurationSteps(proto, SystemProto.CHARGE_STEP, getChargeLevelStepTracker());
7542
7543 // Phone data connection (DATA_CONNECTION_TIME_DATA and DATA_CONNECTION_COUNT_DATA)
7544 for (int i = 0; i < NUM_DATA_CONNECTION_TYPES; ++i) {
Kweku Adams103351f2017-10-16 14:39:34 -07007545 final long pdcToken = proto.start(SystemProto.DATA_CONNECTION);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007546 proto.write(SystemProto.DataConnection.NAME, i);
7547 dumpTimer(proto, SystemProto.DataConnection.TOTAL, getPhoneDataConnectionTimer(i),
7548 rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007549 proto.end(pdcToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007550 }
7551
7552 // Discharge step (DISCHARGE_STEP_DATA)
7553 dumpDurationSteps(proto, SystemProto.DISCHARGE_STEP, getDischargeLevelStepTracker());
7554
7555 // CPU frequencies (GLOBAL_CPU_FREQ_DATA)
7556 final long[] cpuFreqs = getCpuFreqs();
7557 if (cpuFreqs != null) {
7558 for (long i : cpuFreqs) {
7559 proto.write(SystemProto.CPU_FREQUENCY, i);
7560 }
7561 }
7562
7563 // Bluetooth controller (GLOBAL_BLUETOOTH_CONTROLLER_DATA)
7564 dumpControllerActivityProto(proto, SystemProto.GLOBAL_BLUETOOTH_CONTROLLER,
7565 getBluetoothControllerActivity(), which);
7566
7567 // Modem controller (GLOBAL_MODEM_CONTROLLER_DATA)
7568 dumpControllerActivityProto(proto, SystemProto.GLOBAL_MODEM_CONTROLLER,
7569 getModemControllerActivity(), which);
7570
7571 // Global network data (GLOBAL_NETWORK_DATA)
Kweku Adams103351f2017-10-16 14:39:34 -07007572 final long gnToken = proto.start(SystemProto.GLOBAL_NETWORK);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007573 proto.write(SystemProto.GlobalNetwork.MOBILE_BYTES_RX,
7574 getNetworkActivityBytes(NETWORK_MOBILE_RX_DATA, which));
7575 proto.write(SystemProto.GlobalNetwork.MOBILE_BYTES_TX,
7576 getNetworkActivityBytes(NETWORK_MOBILE_TX_DATA, which));
7577 proto.write(SystemProto.GlobalNetwork.MOBILE_PACKETS_RX,
7578 getNetworkActivityPackets(NETWORK_MOBILE_RX_DATA, which));
7579 proto.write(SystemProto.GlobalNetwork.MOBILE_PACKETS_TX,
7580 getNetworkActivityPackets(NETWORK_MOBILE_TX_DATA, which));
7581 proto.write(SystemProto.GlobalNetwork.WIFI_BYTES_RX,
7582 getNetworkActivityBytes(NETWORK_WIFI_RX_DATA, which));
7583 proto.write(SystemProto.GlobalNetwork.WIFI_BYTES_TX,
7584 getNetworkActivityBytes(NETWORK_WIFI_TX_DATA, which));
7585 proto.write(SystemProto.GlobalNetwork.WIFI_PACKETS_RX,
7586 getNetworkActivityPackets(NETWORK_WIFI_RX_DATA, which));
7587 proto.write(SystemProto.GlobalNetwork.WIFI_PACKETS_TX,
7588 getNetworkActivityPackets(NETWORK_WIFI_TX_DATA, which));
7589 proto.write(SystemProto.GlobalNetwork.BT_BYTES_RX,
7590 getNetworkActivityBytes(NETWORK_BT_RX_DATA, which));
7591 proto.write(SystemProto.GlobalNetwork.BT_BYTES_TX,
7592 getNetworkActivityBytes(NETWORK_BT_TX_DATA, which));
Kweku Adams103351f2017-10-16 14:39:34 -07007593 proto.end(gnToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007594
7595 // Wifi controller (GLOBAL_WIFI_CONTROLLER_DATA)
7596 dumpControllerActivityProto(proto, SystemProto.GLOBAL_WIFI_CONTROLLER,
7597 getWifiControllerActivity(), which);
7598
7599
7600 // Global wifi (GLOBAL_WIFI_DATA)
Kweku Adams103351f2017-10-16 14:39:34 -07007601 final long gwToken = proto.start(SystemProto.GLOBAL_WIFI);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007602 proto.write(SystemProto.GlobalWifi.ON_DURATION_MS,
7603 getWifiOnTime(rawRealtimeUs, which) / 1000);
7604 proto.write(SystemProto.GlobalWifi.RUNNING_DURATION_MS,
7605 getGlobalWifiRunningTime(rawRealtimeUs, which) / 1000);
Kweku Adams103351f2017-10-16 14:39:34 -07007606 proto.end(gwToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007607
7608 // Kernel wakelock (KERNEL_WAKELOCK_DATA)
7609 final Map<String, ? extends Timer> kernelWakelocks = getKernelWakelockStats();
7610 for (Map.Entry<String, ? extends Timer> ent : kernelWakelocks.entrySet()) {
Kweku Adams103351f2017-10-16 14:39:34 -07007611 final long kwToken = proto.start(SystemProto.KERNEL_WAKELOCK);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007612 proto.write(SystemProto.KernelWakelock.NAME, ent.getKey());
7613 dumpTimer(proto, SystemProto.KernelWakelock.TOTAL, ent.getValue(),
7614 rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007615 proto.end(kwToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007616 }
7617
7618 // Misc (MISC_DATA)
7619 // Calculate wakelock times across all uids.
7620 long fullWakeLockTimeTotalUs = 0;
7621 long partialWakeLockTimeTotalUs = 0;
7622
7623 final SparseArray<? extends Uid> uidStats = getUidStats();
7624 for (int iu = 0; iu < uidStats.size(); iu++) {
7625 final Uid u = uidStats.valueAt(iu);
7626
7627 final ArrayMap<String, ? extends BatteryStats.Uid.Wakelock> wakelocks =
7628 u.getWakelockStats();
7629 for (int iw = wakelocks.size() - 1; iw >= 0; --iw) {
7630 final Uid.Wakelock wl = wakelocks.valueAt(iw);
7631
7632 final Timer fullWakeTimer = wl.getWakeTime(WAKE_TYPE_FULL);
7633 if (fullWakeTimer != null) {
7634 fullWakeLockTimeTotalUs += fullWakeTimer.getTotalTimeLocked(rawRealtimeUs,
7635 which);
7636 }
7637
7638 final Timer partialWakeTimer = wl.getWakeTime(WAKE_TYPE_PARTIAL);
7639 if (partialWakeTimer != null) {
7640 partialWakeLockTimeTotalUs += partialWakeTimer.getTotalTimeLocked(
7641 rawRealtimeUs, which);
7642 }
7643 }
7644 }
Kweku Adams103351f2017-10-16 14:39:34 -07007645 final long mToken = proto.start(SystemProto.MISC);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007646 proto.write(SystemProto.Misc.SCREEN_ON_DURATION_MS,
7647 getScreenOnTime(rawRealtimeUs, which) / 1000);
7648 proto.write(SystemProto.Misc.PHONE_ON_DURATION_MS,
7649 getPhoneOnTime(rawRealtimeUs, which) / 1000);
7650 proto.write(SystemProto.Misc.FULL_WAKELOCK_TOTAL_DURATION_MS,
7651 fullWakeLockTimeTotalUs / 1000);
7652 proto.write(SystemProto.Misc.PARTIAL_WAKELOCK_TOTAL_DURATION_MS,
7653 partialWakeLockTimeTotalUs / 1000);
7654 proto.write(SystemProto.Misc.MOBILE_RADIO_ACTIVE_DURATION_MS,
7655 getMobileRadioActiveTime(rawRealtimeUs, which) / 1000);
7656 proto.write(SystemProto.Misc.MOBILE_RADIO_ACTIVE_ADJUSTED_TIME_MS,
7657 getMobileRadioActiveAdjustedTime(which) / 1000);
7658 proto.write(SystemProto.Misc.MOBILE_RADIO_ACTIVE_COUNT,
7659 getMobileRadioActiveCount(which));
7660 proto.write(SystemProto.Misc.MOBILE_RADIO_ACTIVE_UNKNOWN_DURATION_MS,
7661 getMobileRadioActiveUnknownTime(which) / 1000);
7662 proto.write(SystemProto.Misc.INTERACTIVE_DURATION_MS,
7663 getInteractiveTime(rawRealtimeUs, which) / 1000);
7664 proto.write(SystemProto.Misc.BATTERY_SAVER_MODE_ENABLED_DURATION_MS,
7665 getPowerSaveModeEnabledTime(rawRealtimeUs, which) / 1000);
7666 proto.write(SystemProto.Misc.NUM_CONNECTIVITY_CHANGES,
7667 getNumConnectivityChange(which));
7668 proto.write(SystemProto.Misc.DEEP_DOZE_ENABLED_DURATION_MS,
7669 getDeviceIdleModeTime(DEVICE_IDLE_MODE_DEEP, rawRealtimeUs, which) / 1000);
7670 proto.write(SystemProto.Misc.DEEP_DOZE_COUNT,
7671 getDeviceIdleModeCount(DEVICE_IDLE_MODE_DEEP, which));
7672 proto.write(SystemProto.Misc.DEEP_DOZE_IDLING_DURATION_MS,
7673 getDeviceIdlingTime(DEVICE_IDLE_MODE_DEEP, rawRealtimeUs, which) / 1000);
7674 proto.write(SystemProto.Misc.DEEP_DOZE_IDLING_COUNT,
7675 getDeviceIdlingCount(DEVICE_IDLE_MODE_DEEP, which));
7676 proto.write(SystemProto.Misc.LONGEST_DEEP_DOZE_DURATION_MS,
7677 getLongestDeviceIdleModeTime(DEVICE_IDLE_MODE_DEEP));
7678 proto.write(SystemProto.Misc.LIGHT_DOZE_ENABLED_DURATION_MS,
7679 getDeviceIdleModeTime(DEVICE_IDLE_MODE_LIGHT, rawRealtimeUs, which) / 1000);
7680 proto.write(SystemProto.Misc.LIGHT_DOZE_COUNT,
7681 getDeviceIdleModeCount(DEVICE_IDLE_MODE_LIGHT, which));
7682 proto.write(SystemProto.Misc.LIGHT_DOZE_IDLING_DURATION_MS,
7683 getDeviceIdlingTime(DEVICE_IDLE_MODE_LIGHT, rawRealtimeUs, which) / 1000);
7684 proto.write(SystemProto.Misc.LIGHT_DOZE_IDLING_COUNT,
7685 getDeviceIdlingCount(DEVICE_IDLE_MODE_LIGHT, which));
7686 proto.write(SystemProto.Misc.LONGEST_LIGHT_DOZE_DURATION_MS,
7687 getLongestDeviceIdleModeTime(DEVICE_IDLE_MODE_LIGHT));
Kweku Adams103351f2017-10-16 14:39:34 -07007688 proto.end(mToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007689
Ahmed ElArabawyddd09692017-10-30 17:58:29 -07007690 // Wifi multicast wakelock total stats (WIFI_MULTICAST_WAKELOCK_TOTAL_DATA)
Ahmed ElArabawyf88571f2017-11-28 12:18:10 -08007691 final long multicastWakeLockTimeTotalUs =
7692 getWifiMulticastWakelockTime(rawRealtimeUs, which);
7693 final int multicastWakeLockCountTotal = getWifiMulticastWakelockCount(which);
Ahmed ElArabawyddd09692017-10-30 17:58:29 -07007694 final long wmctToken = proto.start(SystemProto.WIFI_MULTICAST_WAKELOCK_TOTAL);
7695 proto.write(SystemProto.WifiMulticastWakelockTotal.DURATION_MS,
7696 multicastWakeLockTimeTotalUs / 1000);
7697 proto.write(SystemProto.WifiMulticastWakelockTotal.COUNT,
7698 multicastWakeLockCountTotal);
7699 proto.end(wmctToken);
7700
Kweku Adams87b19ec2017-10-09 12:40:03 -07007701 // Power use item (POWER_USE_ITEM_DATA)
7702 final List<BatterySipper> sippers = helper.getUsageList();
7703 if (sippers != null) {
7704 for (int i = 0; i < sippers.size(); ++i) {
7705 final BatterySipper bs = sippers.get(i);
7706 int n = SystemProto.PowerUseItem.UNKNOWN_SIPPER;
7707 int uid = 0;
7708 switch (bs.drainType) {
7709 case IDLE:
7710 n = SystemProto.PowerUseItem.IDLE;
7711 break;
7712 case CELL:
7713 n = SystemProto.PowerUseItem.CELL;
7714 break;
7715 case PHONE:
7716 n = SystemProto.PowerUseItem.PHONE;
7717 break;
7718 case WIFI:
7719 n = SystemProto.PowerUseItem.WIFI;
7720 break;
7721 case BLUETOOTH:
7722 n = SystemProto.PowerUseItem.BLUETOOTH;
7723 break;
7724 case SCREEN:
7725 n = SystemProto.PowerUseItem.SCREEN;
7726 break;
7727 case FLASHLIGHT:
7728 n = SystemProto.PowerUseItem.FLASHLIGHT;
7729 break;
7730 case APP:
Kweku Adams103351f2017-10-16 14:39:34 -07007731 // dumpProtoAppsLocked will handle this.
Kweku Adams87b19ec2017-10-09 12:40:03 -07007732 continue;
7733 case USER:
7734 n = SystemProto.PowerUseItem.USER;
7735 uid = UserHandle.getUid(bs.userId, 0);
7736 break;
7737 case UNACCOUNTED:
7738 n = SystemProto.PowerUseItem.UNACCOUNTED;
7739 break;
7740 case OVERCOUNTED:
7741 n = SystemProto.PowerUseItem.OVERCOUNTED;
7742 break;
7743 case CAMERA:
7744 n = SystemProto.PowerUseItem.CAMERA;
7745 break;
7746 case MEMORY:
7747 n = SystemProto.PowerUseItem.MEMORY;
7748 break;
7749 }
Kweku Adams103351f2017-10-16 14:39:34 -07007750 final long puiToken = proto.start(SystemProto.POWER_USE_ITEM);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007751 proto.write(SystemProto.PowerUseItem.NAME, n);
7752 proto.write(SystemProto.PowerUseItem.UID, uid);
7753 proto.write(SystemProto.PowerUseItem.COMPUTED_POWER_MAH, bs.totalPowerMah);
7754 proto.write(SystemProto.PowerUseItem.SHOULD_HIDE, bs.shouldHide);
7755 proto.write(SystemProto.PowerUseItem.SCREEN_POWER_MAH, bs.screenPowerMah);
7756 proto.write(SystemProto.PowerUseItem.PROPORTIONAL_SMEAR_MAH,
7757 bs.proportionalSmearMah);
Kweku Adams103351f2017-10-16 14:39:34 -07007758 proto.end(puiToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007759 }
7760 }
7761
7762 // Power use summary (POWER_USE_SUMMARY_DATA)
Kweku Adams103351f2017-10-16 14:39:34 -07007763 final long pusToken = proto.start(SystemProto.POWER_USE_SUMMARY);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007764 proto.write(SystemProto.PowerUseSummary.BATTERY_CAPACITY_MAH,
7765 helper.getPowerProfile().getBatteryCapacity());
7766 proto.write(SystemProto.PowerUseSummary.COMPUTED_POWER_MAH, helper.getComputedPower());
7767 proto.write(SystemProto.PowerUseSummary.MIN_DRAINED_POWER_MAH, helper.getMinDrainedPower());
7768 proto.write(SystemProto.PowerUseSummary.MAX_DRAINED_POWER_MAH, helper.getMaxDrainedPower());
Kweku Adams103351f2017-10-16 14:39:34 -07007769 proto.end(pusToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007770
7771 // RPM stats (RESOURCE_POWER_MANAGER_DATA)
7772 final Map<String, ? extends Timer> rpmStats = getRpmStats();
7773 final Map<String, ? extends Timer> screenOffRpmStats = getScreenOffRpmStats();
7774 for (Map.Entry<String, ? extends Timer> ent : rpmStats.entrySet()) {
Kweku Adams103351f2017-10-16 14:39:34 -07007775 final long rpmToken = proto.start(SystemProto.RESOURCE_POWER_MANAGER);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007776 proto.write(SystemProto.ResourcePowerManager.NAME, ent.getKey());
7777 dumpTimer(proto, SystemProto.ResourcePowerManager.TOTAL,
7778 ent.getValue(), rawRealtimeUs, which);
7779 dumpTimer(proto, SystemProto.ResourcePowerManager.SCREEN_OFF,
7780 screenOffRpmStats.get(ent.getKey()), rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007781 proto.end(rpmToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007782 }
7783
7784 // Screen brightness (SCREEN_BRIGHTNESS_DATA)
7785 for (int i = 0; i < NUM_SCREEN_BRIGHTNESS_BINS; ++i) {
Kweku Adams103351f2017-10-16 14:39:34 -07007786 final long sbToken = proto.start(SystemProto.SCREEN_BRIGHTNESS);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007787 proto.write(SystemProto.ScreenBrightness.NAME, i);
7788 dumpTimer(proto, SystemProto.ScreenBrightness.TOTAL, getScreenBrightnessTimer(i),
7789 rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007790 proto.end(sbToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007791 }
7792
7793 // Signal scanning time (SIGNAL_SCANNING_TIME_DATA)
7794 dumpTimer(proto, SystemProto.SIGNAL_SCANNING, getPhoneSignalScanningTimer(), rawRealtimeUs,
7795 which);
7796
7797 // Phone signal strength (SIGNAL_STRENGTH_TIME_DATA and SIGNAL_STRENGTH_COUNT_DATA)
7798 for (int i = 0; i < SignalStrength.NUM_SIGNAL_STRENGTH_BINS; ++i) {
Kweku Adams103351f2017-10-16 14:39:34 -07007799 final long pssToken = proto.start(SystemProto.PHONE_SIGNAL_STRENGTH);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007800 proto.write(SystemProto.PhoneSignalStrength.NAME, i);
7801 dumpTimer(proto, SystemProto.PhoneSignalStrength.TOTAL, getPhoneSignalStrengthTimer(i),
7802 rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007803 proto.end(pssToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007804 }
7805
7806 // Wakeup reasons (WAKEUP_REASON_DATA)
7807 final Map<String, ? extends Timer> wakeupReasons = getWakeupReasonStats();
7808 for (Map.Entry<String, ? extends Timer> ent : wakeupReasons.entrySet()) {
Kweku Adams103351f2017-10-16 14:39:34 -07007809 final long wrToken = proto.start(SystemProto.WAKEUP_REASON);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007810 proto.write(SystemProto.WakeupReason.NAME, ent.getKey());
7811 dumpTimer(proto, SystemProto.WakeupReason.TOTAL, ent.getValue(), rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007812 proto.end(wrToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007813 }
7814
7815 // Wifi signal strength (WIFI_SIGNAL_STRENGTH_TIME_DATA and WIFI_SIGNAL_STRENGTH_COUNT_DATA)
7816 for (int i = 0; i < NUM_WIFI_SIGNAL_STRENGTH_BINS; ++i) {
Kweku Adams103351f2017-10-16 14:39:34 -07007817 final long wssToken = proto.start(SystemProto.WIFI_SIGNAL_STRENGTH);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007818 proto.write(SystemProto.WifiSignalStrength.NAME, i);
7819 dumpTimer(proto, SystemProto.WifiSignalStrength.TOTAL, getWifiSignalStrengthTimer(i),
7820 rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007821 proto.end(wssToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007822 }
7823
7824 // Wifi state (WIFI_STATE_TIME_DATA and WIFI_STATE_COUNT_DATA)
7825 for (int i = 0; i < NUM_WIFI_STATES; ++i) {
Kweku Adams103351f2017-10-16 14:39:34 -07007826 final long wsToken = proto.start(SystemProto.WIFI_STATE);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007827 proto.write(SystemProto.WifiState.NAME, i);
7828 dumpTimer(proto, SystemProto.WifiState.TOTAL, getWifiStateTimer(i),
7829 rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007830 proto.end(wsToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007831 }
7832
7833 // Wifi supplicant state (WIFI_SUPPL_STATE_TIME_DATA and WIFI_SUPPL_STATE_COUNT_DATA)
7834 for (int i = 0; i < NUM_WIFI_SUPPL_STATES; ++i) {
Kweku Adams103351f2017-10-16 14:39:34 -07007835 final long wssToken = proto.start(SystemProto.WIFI_SUPPLICANT_STATE);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007836 proto.write(SystemProto.WifiSupplicantState.NAME, i);
7837 dumpTimer(proto, SystemProto.WifiSupplicantState.TOTAL, getWifiSupplStateTimer(i),
7838 rawRealtimeUs, which);
Kweku Adams103351f2017-10-16 14:39:34 -07007839 proto.end(wssToken);
Kweku Adams87b19ec2017-10-09 12:40:03 -07007840 }
7841
7842 proto.end(sToken);
7843 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007844}