blob: f86ba278138c7ebf99b1c09bd79ce528b158d346 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006-2007 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
17package com.android.server.am;
18
Bookatzdb026a22018-01-10 19:01:56 -080019import android.app.ActivityManager;
Bookatz235343d2018-03-26 13:03:50 -070020import android.app.job.JobProtoEnums;
Adam Lesinski4b6bd8d2015-03-19 14:35:45 -070021import android.bluetooth.BluetoothActivityEnergyInfo;
Ng Zhi An09411202019-01-23 11:46:50 -080022import android.content.ContentResolver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023import android.content.Context;
Dianne Hackborne4a59512010-12-07 11:08:07 -080024import android.content.pm.ApplicationInfo;
Kenny Root3abd75b2011-09-29 11:00:41 -070025import android.content.pm.PackageManager;
Adam Lesinski4b6bd8d2015-03-19 14:35:45 -070026import android.net.wifi.WifiActivityEnergyInfo;
Dianne Hackborn91268cf2013-06-13 19:06:50 -070027import android.os.BatteryStats;
David Chenc8a43242017-10-17 16:23:28 -070028import android.os.BatteryStatsInternal;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029import android.os.Binder;
Jeff Brown6f357d32014-01-15 20:40:55 -080030import android.os.Handler;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031import android.os.IBinder;
32import android.os.Parcel;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -070033import android.os.ParcelFileDescriptor;
Adam Lesinski9ae9cba2015-07-08 17:09:34 -070034import android.os.ParcelFormatException;
Mike Mafbc01fc2018-04-02 10:28:28 -070035import android.os.PowerManager.ServiceType;
Dianne Hackborncbefd8d2014-05-14 11:42:00 -070036import android.os.PowerManagerInternal;
Mike Mafbc01fc2018-04-02 10:28:28 -070037import android.os.PowerSaveState;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080038import android.os.Process;
39import android.os.ServiceManager;
Dianne Hackborne5167ca2014-03-08 14:39:10 -080040import android.os.SystemClock;
Dianne Hackborncbfd23e2013-06-11 14:26:53 -070041import android.os.UserHandle;
Suprabh Shuklae6e723d2017-06-14 16:14:43 -070042import android.os.UserManagerInternal;
Dianne Hackborn7e9f4eb2010-09-10 18:43:00 -070043import android.os.WorkSource;
Siddharth Raya1fd0572017-11-13 14:20:47 -080044import android.os.connectivity.CellularBatteryStats;
Siddharth Ray78ccaf52017-12-23 16:16:21 -080045import android.os.connectivity.GpsBatteryStats;
Mike Mafbc01fc2018-04-02 10:28:28 -070046import android.os.connectivity.WifiBatteryStats;
Joe Onorato713fec82016-03-04 10:34:02 -080047import android.os.health.HealthStatsParceler;
48import android.os.health.HealthStatsWriter;
49import android.os.health.UidHealthStats;
Ng Zhi An09411202019-01-23 11:46:50 -080050import android.provider.Settings;
Adam Lesinski06f46cb2015-06-23 13:42:53 -070051import android.telephony.DataConnectionRealTimeInfo;
Adam Lesinski21f76aa2016-01-25 12:27:06 -080052import android.telephony.ModemActivityInfo;
Wink Savillee9b06d72009-05-18 21:47:50 -070053import android.telephony.SignalStrength;
Dianne Hackborne4a59512010-12-07 11:08:07 -080054import android.telephony.TelephonyManager;
Joe Onorato8a9b2202010-02-26 18:56:32 -080055import android.util.Slog;
Mike Mafbc01fc2018-04-02 10:28:28 -070056import android.util.StatsLog;
Amith Yamasani674c9bb2017-02-01 09:45:17 -080057
Amith Yamasani32dbefd2009-06-19 09:21:17 -070058import com.android.internal.app.IBatteryStats;
Dianne Hackbornd953c532014-08-16 18:17:38 -070059import com.android.internal.os.BatteryStatsHelper;
Amith Yamasani32dbefd2009-06-19 09:21:17 -070060import com.android.internal.os.BatteryStatsImpl;
Amith Yamasanie43530a2009-08-21 13:11:37 -070061import com.android.internal.os.PowerProfile;
Blake Kragtencb308d92019-01-28 10:54:13 -080062import com.android.internal.os.RailStats;
Bookatz50df7112017-08-04 14:53:26 -070063import com.android.internal.os.RpmStats;
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -060064import com.android.internal.util.DumpUtils;
Hui Yu0ed84f12018-06-20 19:07:56 -070065import com.android.internal.util.ParseUtils;
Dianne Hackborncbefd8d2014-05-14 11:42:00 -070066import com.android.server.LocalServices;
Amith Yamasani32dbefd2009-06-19 09:21:17 -070067
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -070068import java.io.File;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080069import java.io.FileDescriptor;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -070070import java.io.IOException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080071import java.io.PrintWriter;
Adam Lesinski515702c2015-07-23 18:13:38 -070072import java.nio.ByteBuffer;
73import java.nio.CharBuffer;
74import java.nio.charset.CharsetDecoder;
75import java.nio.charset.CodingErrorAction;
76import java.nio.charset.StandardCharsets;
Joe Onorato713fec82016-03-04 10:34:02 -080077import java.util.Arrays;
Dianne Hackborne4a59512010-12-07 11:08:07 -080078import java.util.List;
Adam Lesinskib3a1bad2017-05-26 11:50:40 -070079import java.util.concurrent.ExecutionException;
80import java.util.concurrent.Future;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080081
82/**
83 * All information we are collecting about things that can happen that impact
84 * battery life.
85 */
Dianne Hackborncbefd8d2014-05-14 11:42:00 -070086public final class BatteryStatsService extends IBatteryStats.Stub
Badhri Jagan Sridharan68cdf192016-04-03 21:57:15 -070087 implements PowerManagerInternal.LowPowerModeListener,
Blake Kragtencb308d92019-01-28 10:54:13 -080088 BatteryStatsImpl.PlatformIdleStateCallback,
89 BatteryStatsImpl.RailEnergyDataCallback {
Dianne Hackbornc51cf032014-03-02 19:08:15 -080090 static final String TAG = "BatteryStatsService";
Joe Onorato82ba91d2017-04-27 16:18:05 -070091 static final boolean DBG = false;
Dianne Hackbornc51cf032014-03-02 19:08:15 -080092
Adam Lesinski010bf372016-04-11 12:18:18 -070093 private static IBatteryStats sService;
94
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080095 final BatteryStatsImpl mStats;
Suprabh Shuklae6e723d2017-06-14 16:14:43 -070096 private final BatteryStatsImpl.UserInfoProvider mUserManagerUserInfoProvider;
Adam Lesinskib3a1bad2017-05-26 11:50:40 -070097 private final Context mContext;
98 private final BatteryExternalStatsWorker mWorker;
Adam Lesinski4b6bd8d2015-03-19 14:35:45 -070099
Bookatz50df7112017-08-04 14:53:26 -0700100 private native void getLowPowerStats(RpmStats rpmStats);
Badhri Jagan Sridharan68cdf192016-04-03 21:57:15 -0700101 private native int getPlatformLowPowerStats(ByteBuffer outBuffer);
Ahmed ElArabawyd8b44112017-05-23 21:25:02 +0000102 private native int getSubsystemLowPowerStats(ByteBuffer outBuffer);
Blake Kragtencb308d92019-01-28 10:54:13 -0800103 private native void getRailEnergyPowerStats(RailStats railStats);
Badhri Jagan Sridharan68cdf192016-04-03 21:57:15 -0700104 private CharsetDecoder mDecoderStat = StandardCharsets.UTF_8
105 .newDecoder()
106 .onMalformedInput(CodingErrorAction.REPLACE)
107 .onUnmappableCharacter(CodingErrorAction.REPLACE)
108 .replaceWith("?");
109 private ByteBuffer mUtf8BufferStat = ByteBuffer.allocateDirect(MAX_LOW_POWER_STATS_SIZE);
110 private CharBuffer mUtf16BufferStat = CharBuffer.allocate(MAX_LOW_POWER_STATS_SIZE);
Kelly Rossmoyer03ad13e2018-03-13 13:10:14 -0700111 private static final int MAX_LOW_POWER_STATS_SIZE = 2048;
Badhri Jagan Sridharan68cdf192016-04-03 21:57:15 -0700112
Bookatz50df7112017-08-04 14:53:26 -0700113 /**
114 * Replaces the information in the given rpmStats with up-to-date information.
115 */
116 @Override
117 public void fillLowPowerStats(RpmStats rpmStats) {
118 if (DBG) Slog.d(TAG, "begin getLowPowerStats");
119 try {
120 getLowPowerStats(rpmStats);
121 } finally {
122 if (DBG) Slog.d(TAG, "end getLowPowerStats");
123 }
124 }
125
Badhri Jagan Sridharan68cdf192016-04-03 21:57:15 -0700126 @Override
Blake Kragtencb308d92019-01-28 10:54:13 -0800127 public void fillRailDataStats(RailStats railStats) {
128 if (DBG) Slog.d(TAG, "begin getRailEnergyPowerStats");
129 try {
130 getRailEnergyPowerStats(railStats);
131 } finally {
132 if (DBG) Slog.d(TAG, "end getRailEnergyPowerStats");
133 }
134 }
135
136 @Override
Badhri Jagan Sridharan68cdf192016-04-03 21:57:15 -0700137 public String getPlatformLowPowerStats() {
Joe Onorato82ba91d2017-04-27 16:18:05 -0700138 if (DBG) Slog.d(TAG, "begin getPlatformLowPowerStats");
Adam Lesinskicd722082017-03-30 13:54:09 -0700139 try {
140 mUtf8BufferStat.clear();
141 mUtf16BufferStat.clear();
142 mDecoderStat.reset();
143 int bytesWritten = getPlatformLowPowerStats(mUtf8BufferStat);
144 if (bytesWritten < 0) {
145 return null;
146 } else if (bytesWritten == 0) {
147 return "Empty";
148 }
149 mUtf8BufferStat.limit(bytesWritten);
150 mDecoderStat.decode(mUtf8BufferStat, mUtf16BufferStat, true);
151 mUtf16BufferStat.flip();
152 return mUtf16BufferStat.toString();
153 } finally {
Joe Onorato82ba91d2017-04-27 16:18:05 -0700154 if (DBG) Slog.d(TAG, "end getPlatformLowPowerStats");
Badhri Jagan Sridharan68cdf192016-04-03 21:57:15 -0700155 }
Badhri Jagan Sridharan68cdf192016-04-03 21:57:15 -0700156 }
157
Ahmed ElArabawyd8b44112017-05-23 21:25:02 +0000158 @Override
159 public String getSubsystemLowPowerStats() {
Bookatz50df7112017-08-04 14:53:26 -0700160 if (DBG) Slog.d(TAG, "begin getSubsystemLowPowerStats");
Ahmed ElArabawyd8b44112017-05-23 21:25:02 +0000161 try {
162 mUtf8BufferStat.clear();
163 mUtf16BufferStat.clear();
164 mDecoderStat.reset();
165 int bytesWritten = getSubsystemLowPowerStats(mUtf8BufferStat);
166 if (bytesWritten < 0) {
167 return null;
168 } else if (bytesWritten == 0) {
169 return "Empty";
170 }
171 mUtf8BufferStat.limit(bytesWritten);
172 mDecoderStat.decode(mUtf8BufferStat, mUtf16BufferStat, true);
173 mUtf16BufferStat.flip();
174 return mUtf16BufferStat.toString();
175 } finally {
Bookatz50df7112017-08-04 14:53:26 -0700176 if (DBG) Slog.d(TAG, "end getSubsystemLowPowerStats");
Ahmed ElArabawyd8b44112017-05-23 21:25:02 +0000177 }
178 }
179
Adam Lesinskib3a1bad2017-05-26 11:50:40 -0700180 BatteryStatsService(Context context, File systemDir, Handler handler) {
Adam Lesinski4b6bd8d2015-03-19 14:35:45 -0700181 // BatteryStatsImpl expects the ActivityManagerService handler, so pass that one through.
Adam Lesinskib3a1bad2017-05-26 11:50:40 -0700182 mContext = context;
Suprabh Shuklae6e723d2017-06-14 16:14:43 -0700183 mUserManagerUserInfoProvider = new BatteryStatsImpl.UserInfoProvider() {
184 private UserManagerInternal umi;
185 @Override
186 public int[] getUserIds() {
187 if (umi == null) {
188 umi = LocalServices.getService(UserManagerInternal.class);
189 }
190 return (umi != null) ? umi.getUserIds() : null;
191 }
192 };
Blake Kragtencb308d92019-01-28 10:54:13 -0800193 mStats = new BatteryStatsImpl(systemDir, handler, this,
194 this, mUserManagerUserInfoProvider);
Adam Lesinskib3a1bad2017-05-26 11:50:40 -0700195 mWorker = new BatteryExternalStatsWorker(context, mStats);
196 mStats.setExternalStatsSyncLocked(mWorker);
197 mStats.setRadioScanningTimeoutLocked(mContext.getResources().getInteger(
198 com.android.internal.R.integer.config_radioScanningTimeout) * 1000L);
199 mStats.setPowerProfileLocked(new PowerProfile(context));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800200 }
Badhri Jagan Sridharan68cdf192016-04-03 21:57:15 -0700201
Adam Lesinskib3a1bad2017-05-26 11:50:40 -0700202 public void publish() {
David Chenc8a43242017-10-17 16:23:28 -0700203 LocalServices.addService(BatteryStatsInternal.class, new LocalService());
Adam Lesinski6832f392015-09-05 18:05:40 -0700204 ServiceManager.addService(BatteryStats.SERVICE_NAME, asBinder());
Jeff Brown2c43c332014-06-12 22:38:59 -0700205 }
206
Sudheer Shanka5c19b892018-01-05 17:25:46 -0800207 public void systemServicesReady() {
208 mStats.systemServicesReady(mContext);
209 }
210
David Chenc8a43242017-10-17 16:23:28 -0700211 private final class LocalService extends BatteryStatsInternal {
212 @Override
213 public String[] getWifiIfaces() {
214 return mStats.getWifiIfaces().clone();
215 }
216
217 @Override
218 public String[] getMobileIfaces() {
219 return mStats.getMobileIfaces().clone();
220 }
Amith Yamasani977e11f2018-02-16 11:29:54 -0800221
222 @Override
223 public void noteJobsDeferred(int uid, int numDeferred, long sinceLast) {
224 if (DBG) Slog.d(TAG, "Jobs deferred " + uid + ": " + numDeferred + " " + sinceLast);
225 BatteryStatsService.this.noteJobsDeferred(uid, numDeferred, sinceLast);
226 }
David Chenc8a43242017-10-17 16:23:28 -0700227 }
228
Adam Lesinskib3a1bad2017-05-26 11:50:40 -0700229 private static void awaitUninterruptibly(Future<?> future) {
230 while (true) {
231 try {
232 future.get();
233 return;
234 } catch (ExecutionException e) {
235 return;
236 } catch (InterruptedException e) {
237 // Keep looping
238 }
239 }
240 }
241
Sudheer Shankab2f83c12017-11-13 19:25:01 -0800242 private void syncStats(String reason, int flags) {
243 awaitUninterruptibly(mWorker.scheduleSync(reason, flags));
244 }
245
Jeff Brown2c43c332014-06-12 22:38:59 -0700246 /**
247 * At the time when the constructor runs, the power manager has not yet been
248 * initialized. So we initialize the low power observer later.
249 */
250 public void initPowerManagement() {
Adam Lesinski010bf372016-04-11 12:18:18 -0700251 final PowerManagerInternal powerMgr = LocalServices.getService(PowerManagerInternal.class);
252 powerMgr.registerLowPowerModeObserver(this);
Adam Lesinski14ae39a2017-05-26 11:50:40 -0700253 synchronized (mStats) {
254 mStats.notePowerSaveModeLocked(
255 powerMgr.getLowPowerState(ServiceType.BATTERY_STATS)
256 .batterySaverEnabled);
257 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -0800258 (new WakeupReasonThread()).start();
Jeff Brown2c43c332014-06-12 22:38:59 -0700259 }
260
Dianne Hackborn55280a92009-05-07 15:53:46 -0700261 public void shutdown() {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800262 Slog.w("BatteryStats", "Writing battery stats before shutdown...");
Adam Lesinski4b6bd8d2015-03-19 14:35:45 -0700263
Sudheer Shankab2f83c12017-11-13 19:25:01 -0800264 syncStats("shutdown", BatteryExternalStatsWorker.UPDATE_ALL);
Adam Lesinskib3a1bad2017-05-26 11:50:40 -0700265
Dianne Hackborn55280a92009-05-07 15:53:46 -0700266 synchronized (mStats) {
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700267 mStats.shutdownLocked();
Dianne Hackborn55280a92009-05-07 15:53:46 -0700268 }
Adam Lesinski20b84df2016-04-19 17:33:33 -0700269
270 // Shutdown the thread we made.
Adam Lesinskib3a1bad2017-05-26 11:50:40 -0700271 mWorker.shutdown();
Dianne Hackborn55280a92009-05-07 15:53:46 -0700272 }
Kweku Adams2f73ecd2017-09-27 16:59:19 -0700273
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800274 public static IBatteryStats getService() {
275 if (sService != null) {
276 return sService;
277 }
Dianne Hackborn91268cf2013-06-13 19:06:50 -0700278 IBinder b = ServiceManager.getService(BatteryStats.SERVICE_NAME);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800279 sService = asInterface(b);
280 return sService;
281 }
Dianne Hackborncbefd8d2014-05-14 11:42:00 -0700282
283 @Override
jackqdyulei455e90a2017-02-09 15:29:16 -0800284 public int getServiceType() {
285 return ServiceType.BATTERY_STATS;
286 }
287
288 @Override
289 public void onLowPowerModeChanged(PowerSaveState result) {
Dianne Hackborncbefd8d2014-05-14 11:42:00 -0700290 synchronized (mStats) {
Adam Lesinski14ae39a2017-05-26 11:50:40 -0700291 mStats.notePowerSaveModeLocked(result.batterySaverEnabled);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -0700292 }
293 }
294
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800295 /**
296 * @return the current statistics object, which may be modified
297 * to reflect events that affect battery usage. You must lock the
298 * stats object before doing anything with it.
299 */
300 public BatteryStatsImpl getActiveStatistics() {
301 return mStats;
302 }
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -0700303
Adam Lesinski4b6bd8d2015-03-19 14:35:45 -0700304 /**
305 * Schedules a write to disk to occur. This will cause the BatteryStatsImpl
306 * object to update with the latest info, then write to disk.
307 */
308 public void scheduleWriteToDisk() {
Adam Lesinskib3a1bad2017-05-26 11:50:40 -0700309 mWorker.scheduleWrite();
Adam Lesinski4b6bd8d2015-03-19 14:35:45 -0700310 }
311
Dianne Hackborn2f1993e2014-09-26 11:28:01 -0700312 // These are for direct use by the activity manager...
313
Adam Lesinskib83ffee2015-05-12 14:43:47 -0700314 /**
315 * Remove a UID from the BatteryStats and BatteryStats' external dependencies.
316 */
317 void removeUid(int uid) {
318 synchronized (mStats) {
319 mStats.removeUidStatsLocked(uid);
320 }
321 }
322
Suprabh Shuklae6e723d2017-06-14 16:14:43 -0700323 void onCleanupUser(int userId) {
324 synchronized (mStats) {
325 mStats.onCleanupUserLocked(userId);
326 }
327 }
328
329 void onUserRemoved(int userId) {
330 synchronized (mStats) {
331 mStats.onUserRemovedLocked(userId);
332 }
333 }
334
Dianne Hackborn2f1993e2014-09-26 11:28:01 -0700335 void addIsolatedUid(int isolatedUid, int appUid) {
336 synchronized (mStats) {
337 mStats.addIsolatedUidLocked(isolatedUid, appUid);
338 }
339 }
340
341 void removeIsolatedUid(int isolatedUid, int appUid) {
342 synchronized (mStats) {
Adam Lesinski61db88f2015-07-01 15:05:07 -0700343 mStats.scheduleRemoveIsolatedUidLocked(isolatedUid, appUid);
Dianne Hackborn2f1993e2014-09-26 11:28:01 -0700344 }
345 }
346
347 void noteProcessStart(String name, int uid) {
348 synchronized (mStats) {
349 mStats.noteProcessStartLocked(name, uid);
Bookatz90867622018-01-31 15:05:57 -0800350 StatsLog.write(StatsLog.PROCESS_LIFE_CYCLE_STATE_CHANGED, uid, name,
Chenjie Yu5caaa9d2018-03-06 15:48:54 -0800351 StatsLog.PROCESS_LIFE_CYCLE_STATE_CHANGED__STATE__STARTED);
Dianne Hackborn2f1993e2014-09-26 11:28:01 -0700352 }
353 }
354
Dianne Hackborn1e01d162014-12-04 17:46:42 -0800355 void noteProcessCrash(String name, int uid) {
356 synchronized (mStats) {
357 mStats.noteProcessCrashLocked(name, uid);
Bookatz90867622018-01-31 15:05:57 -0800358 StatsLog.write(StatsLog.PROCESS_LIFE_CYCLE_STATE_CHANGED, uid, name,
Chenjie Yu5caaa9d2018-03-06 15:48:54 -0800359 StatsLog.PROCESS_LIFE_CYCLE_STATE_CHANGED__STATE__CRASHED);
Dianne Hackborn1e01d162014-12-04 17:46:42 -0800360 }
361 }
362
363 void noteProcessAnr(String name, int uid) {
364 synchronized (mStats) {
365 mStats.noteProcessAnrLocked(name, uid);
366 }
367 }
368
Dianne Hackborn2f1993e2014-09-26 11:28:01 -0700369 void noteProcessFinish(String name, int uid) {
370 synchronized (mStats) {
371 mStats.noteProcessFinishLocked(name, uid);
Bookatz90867622018-01-31 15:05:57 -0800372 StatsLog.write(StatsLog.PROCESS_LIFE_CYCLE_STATE_CHANGED, uid, name,
Chenjie Yu5caaa9d2018-03-06 15:48:54 -0800373 StatsLog.PROCESS_LIFE_CYCLE_STATE_CHANGED__STATE__FINISHED);
Dianne Hackborn2f1993e2014-09-26 11:28:01 -0700374 }
375 }
376
Bookatzdb026a22018-01-10 19:01:56 -0800377 /** @param state Process state from ActivityManager.java. */
Dianne Hackborna8d10942015-11-19 17:55:19 -0800378 void noteUidProcessState(int uid, int state) {
379 synchronized (mStats) {
Bookatzdb026a22018-01-10 19:01:56 -0800380 StatsLog.write(StatsLog.UID_PROCESS_STATE_CHANGED, uid,
381 ActivityManager.processStateAmToProto(state));
Yao Chend54f9dd2017-10-17 17:37:48 +0000382
Dianne Hackborna8d10942015-11-19 17:55:19 -0800383 mStats.noteUidProcessStateLocked(uid, state);
384 }
385 }
386
Dianne Hackborn2f1993e2014-09-26 11:28:01 -0700387 // Public interface...
388
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800389 public byte[] getStatistics() {
390 mContext.enforceCallingPermission(
391 android.Manifest.permission.BATTERY_STATS, null);
Joe Onorato8a9b2202010-02-26 18:56:32 -0800392 //Slog.i("foo", "SENDING BATTERY INFO:");
393 //mStats.dumpLocked(new LogPrinter(Log.INFO, "foo", Log.LOG_ID_SYSTEM));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800394 Parcel out = Parcel.obtain();
Sudheer Shankab2f83c12017-11-13 19:25:01 -0800395 syncStats("get-stats", BatteryExternalStatsWorker.UPDATE_ALL);
Adam Lesinski4b6bd8d2015-03-19 14:35:45 -0700396 synchronized (mStats) {
397 mStats.writeToParcel(out, 0);
398 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800399 byte[] data = out.marshall();
400 out.recycle();
401 return data;
402 }
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -0700403
404 public ParcelFileDescriptor getStatisticsStream() {
405 mContext.enforceCallingPermission(
406 android.Manifest.permission.BATTERY_STATS, null);
407 //Slog.i("foo", "SENDING BATTERY INFO:");
408 //mStats.dumpLocked(new LogPrinter(Log.INFO, "foo", Log.LOG_ID_SYSTEM));
409 Parcel out = Parcel.obtain();
Sudheer Shankab2f83c12017-11-13 19:25:01 -0800410 syncStats("get-stats", BatteryExternalStatsWorker.UPDATE_ALL);
Adam Lesinski4b6bd8d2015-03-19 14:35:45 -0700411 synchronized (mStats) {
412 mStats.writeToParcel(out, 0);
413 }
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -0700414 byte[] data = out.marshall();
Hui Yu0ed84f12018-06-20 19:07:56 -0700415 if (DBG) Slog.d(TAG, "getStatisticsStream parcel size is:" + data.length);
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -0700416 out.recycle();
417 try {
418 return ParcelFileDescriptor.fromData(data, "battery-stats");
419 } catch (IOException e) {
420 Slog.w(TAG, "Unable to create shared memory", e);
421 return null;
422 }
423 }
424
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700425 public boolean isCharging() {
426 synchronized (mStats) {
427 return mStats.isCharging();
428 }
429 }
430
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -0700431 public long computeBatteryTimeRemaining() {
432 synchronized (mStats) {
433 long time = mStats.computeBatteryTimeRemaining(SystemClock.elapsedRealtime());
434 return time >= 0 ? (time/1000) : time;
435 }
436 }
437
438 public long computeChargeTimeRemaining() {
439 synchronized (mStats) {
440 long time = mStats.computeChargeTimeRemaining(SystemClock.elapsedRealtime());
441 return time >= 0 ? (time/1000) : time;
442 }
443 }
444
Dianne Hackborn099bc622014-01-22 13:39:16 -0800445 public void noteEvent(int code, String name, int uid) {
446 enforceCallingPermission();
447 synchronized (mStats) {
448 mStats.noteEventLocked(code, name, uid);
449 }
450 }
451
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700452 public void noteSyncStart(String name, int uid) {
453 enforceCallingPermission();
454 synchronized (mStats) {
455 mStats.noteSyncStartLocked(name, uid);
Bookatz235343d2018-03-26 13:03:50 -0700456 StatsLog.write_non_chained(StatsLog.SYNC_STATE_CHANGED, uid, null, name,
457 StatsLog.SYNC_STATE_CHANGED__STATE__ON);
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700458 }
459 }
460
461 public void noteSyncFinish(String name, int uid) {
462 enforceCallingPermission();
463 synchronized (mStats) {
464 mStats.noteSyncFinishLocked(name, uid);
Bookatz235343d2018-03-26 13:03:50 -0700465 StatsLog.write_non_chained(StatsLog.SYNC_STATE_CHANGED, uid, null, name,
466 StatsLog.SYNC_STATE_CHANGED__STATE__OFF);
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700467 }
468 }
469
470 public void noteJobStart(String name, int uid) {
471 enforceCallingPermission();
472 synchronized (mStats) {
473 mStats.noteJobStartLocked(name, uid);
Bookatz235343d2018-03-26 13:03:50 -0700474 StatsLog.write_non_chained(StatsLog.SCHEDULED_JOB_STATE_CHANGED, uid, null,
475 name, StatsLog.SCHEDULED_JOB_STATE_CHANGED__STATE__STARTED,
476 JobProtoEnums.STOP_REASON_UNKNOWN);
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700477 }
478 }
479
Dianne Hackborn94326cb2017-06-28 16:17:20 -0700480 public void noteJobFinish(String name, int uid, int stopReason) {
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700481 enforceCallingPermission();
482 synchronized (mStats) {
Dianne Hackborn94326cb2017-06-28 16:17:20 -0700483 mStats.noteJobFinishLocked(name, uid, stopReason);
Bookatz235343d2018-03-26 13:03:50 -0700484 StatsLog.write_non_chained(StatsLog.SCHEDULED_JOB_STATE_CHANGED, uid, null,
485 name, StatsLog.SCHEDULED_JOB_STATE_CHANGED__STATE__FINISHED,
486 stopReason);
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700487 }
488 }
489
Amith Yamasani977e11f2018-02-16 11:29:54 -0800490 void noteJobsDeferred(int uid, int numDeferred, long sinceLast) {
491 // No need to enforce calling permission, as it is called from an internal interface
492 synchronized (mStats) {
493 mStats.noteJobsDeferredLocked(uid, numDeferred, sinceLast);
494 }
495 }
496
Narayan Kamath695cf722017-12-21 18:32:47 +0000497 public void noteWakupAlarm(String name, int uid, WorkSource workSource, String tag) {
Dianne Hackborn1e383822015-04-10 14:02:33 -0700498 enforceCallingPermission();
499 synchronized (mStats) {
Narayan Kamath695cf722017-12-21 18:32:47 +0000500 mStats.noteWakupAlarmLocked(name, uid, workSource, tag);
Dianne Hackborn1e383822015-04-10 14:02:33 -0700501 }
502 }
503
Narayan Kamath695cf722017-12-21 18:32:47 +0000504 public void noteAlarmStart(String name, WorkSource workSource, int uid) {
Dianne Hackborn1e383822015-04-10 14:02:33 -0700505 enforceCallingPermission();
506 synchronized (mStats) {
Narayan Kamath695cf722017-12-21 18:32:47 +0000507 mStats.noteAlarmStartLocked(name, workSource, uid);
508 }
509 }
510
511 public void noteAlarmFinish(String name, WorkSource workSource, int uid) {
512 enforceCallingPermission();
513 synchronized (mStats) {
514 mStats.noteAlarmFinishLocked(name, workSource, uid);
Dianne Hackborn1e383822015-04-10 14:02:33 -0700515 }
516 }
517
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -0800518 public void noteStartWakelock(int uid, int pid, String name, String historyName, int type,
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800519 boolean unimportantForLogging) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800520 enforceCallingPermission();
521 synchronized (mStats) {
Narayan Kamath81822022017-12-08 11:56:01 +0000522 mStats.noteStartWakeLocked(uid, pid, null, name, historyName, type,
523 unimportantForLogging, SystemClock.elapsedRealtime(),
524 SystemClock.uptimeMillis());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800525 }
526 }
527
Dianne Hackborncbefd8d2014-05-14 11:42:00 -0700528 public void noteStopWakelock(int uid, int pid, String name, String historyName, int type) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800529 enforceCallingPermission();
530 synchronized (mStats) {
Narayan Kamath81822022017-12-08 11:56:01 +0000531 mStats.noteStopWakeLocked(uid, pid, null, name, historyName, type,
Dianne Hackborncbefd8d2014-05-14 11:42:00 -0700532 SystemClock.elapsedRealtime(), SystemClock.uptimeMillis());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800533 }
534 }
535
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -0800536 public void noteStartWakelockFromSource(WorkSource ws, int pid, String name,
537 String historyName, int type, boolean unimportantForLogging) {
Dianne Hackborn7e9f4eb2010-09-10 18:43:00 -0700538 enforceCallingPermission();
539 synchronized (mStats) {
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -0800540 mStats.noteStartWakeFromSourceLocked(ws, pid, name, historyName,
541 type, unimportantForLogging);
Dianne Hackborn7e9f4eb2010-09-10 18:43:00 -0700542 }
543 }
544
Dianne Hackborncbefd8d2014-05-14 11:42:00 -0700545 public void noteChangeWakelockFromSource(WorkSource ws, int pid, String name,
546 String historyName, int type, WorkSource newWs, int newPid, String newName,
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800547 String newHistoryName, int newType, boolean newUnimportantForLogging) {
548 enforceCallingPermission();
549 synchronized (mStats) {
Dianne Hackborncbefd8d2014-05-14 11:42:00 -0700550 mStats.noteChangeWakelockFromSourceLocked(ws, pid, name, historyName, type,
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800551 newWs, newPid, newName, newHistoryName, newType, newUnimportantForLogging);
552 }
553 }
554
Dianne Hackborncbefd8d2014-05-14 11:42:00 -0700555 public void noteStopWakelockFromSource(WorkSource ws, int pid, String name, String historyName,
556 int type) {
Dianne Hackborn7e9f4eb2010-09-10 18:43:00 -0700557 enforceCallingPermission();
558 synchronized (mStats) {
Dianne Hackborncbefd8d2014-05-14 11:42:00 -0700559 mStats.noteStopWakeFromSourceLocked(ws, pid, name, historyName, type);
Dianne Hackborn7e9f4eb2010-09-10 18:43:00 -0700560 }
561 }
562
Narayan Kamath96a92562018-01-02 18:57:17 +0000563 @Override
Dianne Hackbornd0db6f02016-07-18 14:14:20 -0700564 public void noteLongPartialWakelockStart(String name, String historyName, int uid) {
565 enforceCallingPermission();
566 synchronized (mStats) {
567 mStats.noteLongPartialWakelockStart(name, historyName, uid);
568 }
569 }
570
Narayan Kamath96a92562018-01-02 18:57:17 +0000571 @Override
572 public void noteLongPartialWakelockStartFromSource(String name, String historyName,
573 WorkSource workSource) {
574 enforceCallingPermission();
575 synchronized (mStats) {
576 mStats.noteLongPartialWakelockStartFromSource(name, historyName, workSource);
577 }
578 }
579
580 @Override
Dianne Hackbornd0db6f02016-07-18 14:14:20 -0700581 public void noteLongPartialWakelockFinish(String name, String historyName, int uid) {
582 enforceCallingPermission();
583 synchronized (mStats) {
584 mStats.noteLongPartialWakelockFinish(name, historyName, uid);
585 }
586 }
587
Narayan Kamath96a92562018-01-02 18:57:17 +0000588 @Override
589 public void noteLongPartialWakelockFinishFromSource(String name, String historyName,
590 WorkSource workSource) {
591 enforceCallingPermission();
592 synchronized (mStats) {
593 mStats.noteLongPartialWakelockFinishFromSource(name, historyName, workSource);
594 }
595 }
596
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800597 public void noteStartSensor(int uid, int sensor) {
598 enforceCallingPermission();
599 synchronized (mStats) {
Dianne Hackborn9adb9c32010-08-13 14:09:56 -0700600 mStats.noteStartSensorLocked(uid, sensor);
Bookatz235343d2018-03-26 13:03:50 -0700601 StatsLog.write_non_chained(StatsLog.SENSOR_STATE_CHANGED, uid, null, sensor,
602 StatsLog.SENSOR_STATE_CHANGED__STATE__ON);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800603 }
604 }
Chenjie Yu29fb1f72017-09-13 12:18:50 -0700605
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800606 public void noteStopSensor(int uid, int sensor) {
607 enforceCallingPermission();
608 synchronized (mStats) {
Dianne Hackborn9adb9c32010-08-13 14:09:56 -0700609 mStats.noteStopSensorLocked(uid, sensor);
Bookatz235343d2018-03-26 13:03:50 -0700610 StatsLog.write_non_chained(StatsLog.SENSOR_STATE_CHANGED, uid, null,
611 sensor, StatsLog.SENSOR_STATE_CHANGED__STATE__OFF);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800612 }
613 }
Chenjie Yu29fb1f72017-09-13 12:18:50 -0700614
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800615 public void noteVibratorOn(int uid, long durationMillis) {
616 enforceCallingPermission();
617 synchronized (mStats) {
618 mStats.noteVibratorOnLocked(uid, durationMillis);
619 }
620 }
621
622 public void noteVibratorOff(int uid) {
623 enforceCallingPermission();
624 synchronized (mStats) {
625 mStats.noteVibratorOffLocked(uid);
626 }
627 }
628
Narayan Kamath32684dd2018-01-08 17:32:51 +0000629 @Override
630 public void noteGpsChanged(WorkSource oldWs, WorkSource newWs) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800631 enforceCallingPermission();
632 synchronized (mStats) {
Narayan Kamath32684dd2018-01-08 17:32:51 +0000633 mStats.noteGpsChangedLocked(oldWs, newWs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800634 }
635 }
Chenjie Yu29fb1f72017-09-13 12:18:50 -0700636
Siddharth Ray78ccaf52017-12-23 16:16:21 -0800637 public void noteGpsSignalQuality(int signalLevel) {
638 synchronized (mStats) {
639 mStats.noteGpsSignalQualityLocked(signalLevel);
640 }
641 }
642
Jeff Browne95c3cd2014-05-02 16:59:26 -0700643 public void noteScreenState(int state) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800644 enforceCallingPermission();
Joe Onorato82ba91d2017-04-27 16:18:05 -0700645 if (DBG) Slog.d(TAG, "begin noteScreenState");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800646 synchronized (mStats) {
Yao Chend54f9dd2017-10-17 17:37:48 +0000647 StatsLog.write(StatsLog.SCREEN_STATE_CHANGED, state);
648
649 mStats.noteScreenStateLocked(state);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800650 }
Joe Onorato82ba91d2017-04-27 16:18:05 -0700651 if (DBG) Slog.d(TAG, "end noteScreenState");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800652 }
Chenjie Yu29fb1f72017-09-13 12:18:50 -0700653
Dianne Hackborn617f8772009-03-31 15:04:46 -0700654 public void noteScreenBrightness(int brightness) {
655 enforceCallingPermission();
656 synchronized (mStats) {
Bookatzc1a050a2017-10-10 15:49:28 -0700657 StatsLog.write(StatsLog.SCREEN_BRIGHTNESS_CHANGED, brightness);
Dianne Hackborn617f8772009-03-31 15:04:46 -0700658 mStats.noteScreenBrightnessLocked(brightness);
659 }
660 }
yroe03583e2017-09-20 22:51:26 -0700661
Dianne Hackborn617f8772009-03-31 15:04:46 -0700662 public void noteUserActivity(int uid, int event) {
663 enforceCallingPermission();
664 synchronized (mStats) {
665 mStats.noteUserActivityLocked(uid, event);
666 }
667 }
yroe03583e2017-09-20 22:51:26 -0700668
Dianne Hackborn280a64e2015-07-13 14:48:08 -0700669 public void noteWakeUp(String reason, int reasonUid) {
670 enforceCallingPermission();
671 synchronized (mStats) {
672 mStats.noteWakeUpLocked(reason, reasonUid);
673 }
674 }
675
Jeff Browne95c3cd2014-05-02 16:59:26 -0700676 public void noteInteractive(boolean interactive) {
677 enforceCallingPermission();
678 synchronized (mStats) {
679 mStats.noteInteractiveLocked(interactive);
680 }
681 }
Dianne Hackborne13c4c02014-02-11 17:18:35 -0800682
Dianne Hackborn1e01d162014-12-04 17:46:42 -0800683 public void noteConnectivityChanged(int type, String extra) {
684 enforceCallingPermission();
685 synchronized (mStats) {
686 mStats.noteConnectivityChangedLocked(type, extra);
687 }
688 }
689
Ruchi Kandoifa97fcf2016-05-13 15:10:39 -0700690 public void noteMobileRadioPowerState(int powerState, long timestampNs, int uid) {
Dianne Hackborne13c4c02014-02-11 17:18:35 -0800691 enforceCallingPermission();
Adam Lesinskib3a1bad2017-05-26 11:50:40 -0700692 final boolean update;
Dianne Hackborne13c4c02014-02-11 17:18:35 -0800693 synchronized (mStats) {
Adam Lesinski14ae39a2017-05-26 11:50:40 -0700694 update = mStats.noteMobileRadioPowerStateLocked(powerState, timestampNs, uid);
695 }
696
697 if (update) {
Adam Lesinskib3a1bad2017-05-26 11:50:40 -0700698 mWorker.scheduleSync("modem-data", BatteryExternalStatsWorker.UPDATE_RADIO);
Dianne Hackborne13c4c02014-02-11 17:18:35 -0800699 }
700 }
701
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800702 public void notePhoneOn() {
703 enforceCallingPermission();
704 synchronized (mStats) {
705 mStats.notePhoneOnLocked();
706 }
707 }
Kweku Adams2f73ecd2017-09-27 16:59:19 -0700708
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800709 public void notePhoneOff() {
710 enforceCallingPermission();
711 synchronized (mStats) {
712 mStats.notePhoneOffLocked();
713 }
714 }
Kweku Adams2f73ecd2017-09-27 16:59:19 -0700715
Wink Savillee9b06d72009-05-18 21:47:50 -0700716 public void notePhoneSignalStrength(SignalStrength signalStrength) {
Dianne Hackborn627bba72009-03-24 22:32:56 -0700717 enforceCallingPermission();
718 synchronized (mStats) {
Wink Savillee9b06d72009-05-18 21:47:50 -0700719 mStats.notePhoneSignalStrengthLocked(signalStrength);
Dianne Hackborn627bba72009-03-24 22:32:56 -0700720 }
721 }
Kweku Adams2f73ecd2017-09-27 16:59:19 -0700722
Dianne Hackborn627bba72009-03-24 22:32:56 -0700723 public void notePhoneDataConnectionState(int dataType, boolean hasData) {
724 enforceCallingPermission();
725 synchronized (mStats) {
726 mStats.notePhoneDataConnectionStateLocked(dataType, hasData);
727 }
728 }
Amith Yamasani32dbefd2009-06-19 09:21:17 -0700729
Amith Yamasanif37447b2009-10-08 18:28:01 -0700730 public void notePhoneState(int state) {
Amith Yamasani32dbefd2009-06-19 09:21:17 -0700731 enforceCallingPermission();
Dianne Hackborne4a59512010-12-07 11:08:07 -0800732 int simState = TelephonyManager.getDefault().getSimState();
Amith Yamasani32dbefd2009-06-19 09:21:17 -0700733 synchronized (mStats) {
Dianne Hackborne4a59512010-12-07 11:08:07 -0800734 mStats.notePhoneStateLocked(state, simState);
Amith Yamasani32dbefd2009-06-19 09:21:17 -0700735 }
736 }
737
Dianne Hackborn58e0eef2010-09-16 01:22:10 -0700738 public void noteWifiOn() {
The Android Open Source Project10592532009-03-18 17:39:46 -0700739 enforceCallingPermission();
740 synchronized (mStats) {
Dianne Hackborn58e0eef2010-09-16 01:22:10 -0700741 mStats.noteWifiOnLocked();
The Android Open Source Project10592532009-03-18 17:39:46 -0700742 }
Bookatzda1798c2018-12-13 14:16:00 -0800743 StatsLog.write(StatsLog.WIFI_ENABLED_STATE_CHANGED,
744 StatsLog.WIFI_ENABLED_STATE_CHANGED__STATE__ON);
The Android Open Source Project10592532009-03-18 17:39:46 -0700745 }
Kweku Adams2f73ecd2017-09-27 16:59:19 -0700746
Dianne Hackborn58e0eef2010-09-16 01:22:10 -0700747 public void noteWifiOff() {
The Android Open Source Project10592532009-03-18 17:39:46 -0700748 enforceCallingPermission();
749 synchronized (mStats) {
Dianne Hackborn58e0eef2010-09-16 01:22:10 -0700750 mStats.noteWifiOffLocked();
The Android Open Source Project10592532009-03-18 17:39:46 -0700751 }
Bookatzda1798c2018-12-13 14:16:00 -0800752 StatsLog.write(StatsLog.WIFI_ENABLED_STATE_CHANGED,
753 StatsLog.WIFI_ENABLED_STATE_CHANGED__STATE__OFF);
The Android Open Source Project10592532009-03-18 17:39:46 -0700754 }
Eric Shienbroodd4c5f892009-03-24 18:13:20 -0700755
Amith Yamasani244fa5c2009-05-22 14:36:07 -0700756 public void noteStartAudio(int uid) {
Ray Essick0fc2da02019-02-28 09:26:19 -0800757 enforceSelfOrCallingPermission(uid);
Amith Yamasani244fa5c2009-05-22 14:36:07 -0700758 synchronized (mStats) {
759 mStats.noteAudioOnLocked(uid);
Bookatz235343d2018-03-26 13:03:50 -0700760 StatsLog.write_non_chained(StatsLog.AUDIO_STATE_CHANGED, uid, null,
761 StatsLog.AUDIO_STATE_CHANGED__STATE__ON);
Amith Yamasani244fa5c2009-05-22 14:36:07 -0700762 }
763 }
764
765 public void noteStopAudio(int uid) {
Ray Essick0fc2da02019-02-28 09:26:19 -0800766 enforceSelfOrCallingPermission(uid);
Amith Yamasani244fa5c2009-05-22 14:36:07 -0700767 synchronized (mStats) {
768 mStats.noteAudioOffLocked(uid);
Bookatz235343d2018-03-26 13:03:50 -0700769 StatsLog.write_non_chained(StatsLog.AUDIO_STATE_CHANGED, uid, null,
770 StatsLog.AUDIO_STATE_CHANGED__STATE__OFF);
Amith Yamasani244fa5c2009-05-22 14:36:07 -0700771 }
772 }
773
774 public void noteStartVideo(int uid) {
Ray Essick0fc2da02019-02-28 09:26:19 -0800775 enforceSelfOrCallingPermission(uid);
Amith Yamasani244fa5c2009-05-22 14:36:07 -0700776 synchronized (mStats) {
777 mStats.noteVideoOnLocked(uid);
Chenjie Yu5caaa9d2018-03-06 15:48:54 -0800778 StatsLog.write_non_chained(StatsLog.MEDIA_CODEC_STATE_CHANGED, uid, null,
779 StatsLog.MEDIA_CODEC_STATE_CHANGED__STATE__ON);
Amith Yamasani244fa5c2009-05-22 14:36:07 -0700780 }
781 }
782
783 public void noteStopVideo(int uid) {
Ray Essick0fc2da02019-02-28 09:26:19 -0800784 enforceSelfOrCallingPermission(uid);
Amith Yamasani244fa5c2009-05-22 14:36:07 -0700785 synchronized (mStats) {
786 mStats.noteVideoOffLocked(uid);
Chenjie Yu5caaa9d2018-03-06 15:48:54 -0800787 StatsLog.write_non_chained(StatsLog.MEDIA_CODEC_STATE_CHANGED, uid,
788 null, StatsLog.MEDIA_CODEC_STATE_CHANGED__STATE__OFF);
Amith Yamasani244fa5c2009-05-22 14:36:07 -0700789 }
790 }
791
Dianne Hackborn10eaa852014-07-22 22:54:55 -0700792 public void noteResetAudio() {
793 enforceCallingPermission();
794 synchronized (mStats) {
795 mStats.noteResetAudioLocked();
Bookatz235343d2018-03-26 13:03:50 -0700796 StatsLog.write_non_chained(StatsLog.AUDIO_STATE_CHANGED, -1, null,
797 StatsLog.AUDIO_STATE_CHANGED__STATE__RESET);
Dianne Hackborn10eaa852014-07-22 22:54:55 -0700798 }
799 }
800
801 public void noteResetVideo() {
802 enforceCallingPermission();
803 synchronized (mStats) {
804 mStats.noteResetVideoLocked();
Chenjie Yu5caaa9d2018-03-06 15:48:54 -0800805 StatsLog.write_non_chained(StatsLog.MEDIA_CODEC_STATE_CHANGED, -1, null,
806 StatsLog.MEDIA_CODEC_STATE_CHANGED__STATE__RESET);
Dianne Hackborn10eaa852014-07-22 22:54:55 -0700807 }
808 }
809
Ruben Brunk6d2c3632015-05-26 17:32:16 -0700810 public void noteFlashlightOn(int uid) {
Dianne Hackbornabc7c492014-06-30 16:57:46 -0700811 enforceCallingPermission();
812 synchronized (mStats) {
Ruben Brunk6d2c3632015-05-26 17:32:16 -0700813 mStats.noteFlashlightOnLocked(uid);
Bookatz235343d2018-03-26 13:03:50 -0700814 StatsLog.write_non_chained(StatsLog.FLASHLIGHT_STATE_CHANGED, uid, null,
815 StatsLog.FLASHLIGHT_STATE_CHANGED__STATE__ON);
Dianne Hackbornabc7c492014-06-30 16:57:46 -0700816 }
817 }
818
Ruben Brunk6d2c3632015-05-26 17:32:16 -0700819 public void noteFlashlightOff(int uid) {
Dianne Hackbornabc7c492014-06-30 16:57:46 -0700820 enforceCallingPermission();
821 synchronized (mStats) {
Ruben Brunk6d2c3632015-05-26 17:32:16 -0700822 mStats.noteFlashlightOffLocked(uid);
Bookatz235343d2018-03-26 13:03:50 -0700823 StatsLog.write_non_chained(StatsLog.FLASHLIGHT_STATE_CHANGED, uid, null,
824 StatsLog.FLASHLIGHT_STATE_CHANGED__STATE__OFF);
Ruben Brunk6d2c3632015-05-26 17:32:16 -0700825 }
826 }
827
828 public void noteStartCamera(int uid) {
829 enforceCallingPermission();
Joe Onorato82ba91d2017-04-27 16:18:05 -0700830 if (DBG) Slog.d(TAG, "begin noteStartCamera");
Ruben Brunk6d2c3632015-05-26 17:32:16 -0700831 synchronized (mStats) {
832 mStats.noteCameraOnLocked(uid);
Bookatz235343d2018-03-26 13:03:50 -0700833 StatsLog.write_non_chained(StatsLog.CAMERA_STATE_CHANGED, uid, null,
834 StatsLog.CAMERA_STATE_CHANGED__STATE__ON);
Ruben Brunk6d2c3632015-05-26 17:32:16 -0700835 }
Joe Onorato82ba91d2017-04-27 16:18:05 -0700836 if (DBG) Slog.d(TAG, "end noteStartCamera");
Ruben Brunk6d2c3632015-05-26 17:32:16 -0700837 }
838
839 public void noteStopCamera(int uid) {
840 enforceCallingPermission();
841 synchronized (mStats) {
842 mStats.noteCameraOffLocked(uid);
Bookatz235343d2018-03-26 13:03:50 -0700843 StatsLog.write_non_chained(StatsLog.CAMERA_STATE_CHANGED, uid, null,
844 StatsLog.CAMERA_STATE_CHANGED__STATE__OFF);
Ruben Brunk6d2c3632015-05-26 17:32:16 -0700845 }
846 }
847
848 public void noteResetCamera() {
849 enforceCallingPermission();
850 synchronized (mStats) {
851 mStats.noteResetCameraLocked();
Bookatz235343d2018-03-26 13:03:50 -0700852 StatsLog.write_non_chained(StatsLog.CAMERA_STATE_CHANGED, -1, null,
853 StatsLog.CAMERA_STATE_CHANGED__STATE__RESET);
Ruben Brunk6d2c3632015-05-26 17:32:16 -0700854 }
855 }
856
857 public void noteResetFlashlight() {
858 enforceCallingPermission();
859 synchronized (mStats) {
860 mStats.noteResetFlashlightLocked();
Bookatz235343d2018-03-26 13:03:50 -0700861 StatsLog.write_non_chained(StatsLog.FLASHLIGHT_STATE_CHANGED, -1, null,
862 StatsLog.FLASHLIGHT_STATE_CHANGED__STATE__RESET);
Dianne Hackbornabc7c492014-06-30 16:57:46 -0700863 }
864 }
865
Adam Lesinskie08af192015-03-25 16:42:59 -0700866 @Override
Adam Lesinski5f056f62016-07-14 16:56:08 -0700867 public void noteWifiRadioPowerState(int powerState, long tsNanos, int uid) {
Adam Lesinskie08af192015-03-25 16:42:59 -0700868 enforceCallingPermission();
869
870 // There was a change in WiFi power state.
871 // Collect data now for the past activity.
Dianne Hackborn0c820db2015-04-14 17:47:34 -0700872 synchronized (mStats) {
Adam Lesinskia7c90c82015-06-18 14:52:24 -0700873 if (mStats.isOnBattery()) {
Adam Lesinski06f46cb2015-06-23 13:42:53 -0700874 final String type = (powerState == DataConnectionRealTimeInfo.DC_POWER_STATE_HIGH ||
875 powerState == DataConnectionRealTimeInfo.DC_POWER_STATE_MEDIUM) ? "active"
876 : "inactive";
Adam Lesinskib3a1bad2017-05-26 11:50:40 -0700877 mWorker.scheduleSync("wifi-data: " + type, BatteryExternalStatsWorker.UPDATE_WIFI);
Adam Lesinskia7c90c82015-06-18 14:52:24 -0700878 }
Adam Lesinski5f056f62016-07-14 16:56:08 -0700879 mStats.noteWifiRadioPowerState(powerState, tsNanos, uid);
Dianne Hackborn0c820db2015-04-14 17:47:34 -0700880 }
Adam Lesinskie08af192015-03-25 16:42:59 -0700881 }
882
Dianne Hackborn58e0eef2010-09-16 01:22:10 -0700883 public void noteWifiRunning(WorkSource ws) {
Eric Shienbroodd4c5f892009-03-24 18:13:20 -0700884 enforceCallingPermission();
885 synchronized (mStats) {
Dianne Hackborn58e0eef2010-09-16 01:22:10 -0700886 mStats.noteWifiRunningLocked(ws);
Eric Shienbroodd4c5f892009-03-24 18:13:20 -0700887 }
Bookatzda1798c2018-12-13 14:16:00 -0800888 // TODO: Log WIFI_RUNNING_STATE_CHANGED in a better spot to include Hotspot too.
889 StatsLog.write(StatsLog.WIFI_RUNNING_STATE_CHANGED,
890 ws, StatsLog.WIFI_RUNNING_STATE_CHANGED__STATE__ON);
Eric Shienbroodd4c5f892009-03-24 18:13:20 -0700891 }
892
Dianne Hackborn58e0eef2010-09-16 01:22:10 -0700893 public void noteWifiRunningChanged(WorkSource oldWs, WorkSource newWs) {
Eric Shienbroodd4c5f892009-03-24 18:13:20 -0700894 enforceCallingPermission();
895 synchronized (mStats) {
Dianne Hackborn58e0eef2010-09-16 01:22:10 -0700896 mStats.noteWifiRunningChangedLocked(oldWs, newWs);
897 }
Bookatzda1798c2018-12-13 14:16:00 -0800898 StatsLog.write(StatsLog.WIFI_RUNNING_STATE_CHANGED,
899 newWs, StatsLog.WIFI_RUNNING_STATE_CHANGED__STATE__ON);
900 StatsLog.write(StatsLog.WIFI_RUNNING_STATE_CHANGED,
901 oldWs, StatsLog.WIFI_RUNNING_STATE_CHANGED__STATE__OFF);
Dianne Hackborn58e0eef2010-09-16 01:22:10 -0700902 }
903
904 public void noteWifiStopped(WorkSource ws) {
905 enforceCallingPermission();
906 synchronized (mStats) {
907 mStats.noteWifiStoppedLocked(ws);
Eric Shienbroodd4c5f892009-03-24 18:13:20 -0700908 }
Bookatzda1798c2018-12-13 14:16:00 -0800909 StatsLog.write(StatsLog.WIFI_RUNNING_STATE_CHANGED,
910 ws, StatsLog.WIFI_RUNNING_STATE_CHANGED__STATE__OFF);
Eric Shienbroodd4c5f892009-03-24 18:13:20 -0700911 }
912
Dianne Hackbornca1bf212014-02-14 14:18:36 -0800913 public void noteWifiState(int wifiState, String accessPoint) {
914 enforceCallingPermission();
915 synchronized (mStats) {
916 mStats.noteWifiStateLocked(wifiState, accessPoint);
917 }
918 }
919
Dianne Hackborn3251b902014-06-20 14:40:53 -0700920 public void noteWifiSupplicantStateChanged(int supplState, boolean failedAuth) {
921 enforceCallingPermission();
922 synchronized (mStats) {
923 mStats.noteWifiSupplicantStateChangedLocked(supplState, failedAuth);
924 }
925 }
926
927 public void noteWifiRssiChanged(int newRssi) {
928 enforceCallingPermission();
929 synchronized (mStats) {
930 mStats.noteWifiRssiChangedLocked(newRssi);
931 }
932 }
933
The Android Open Source Project10592532009-03-18 17:39:46 -0700934 public void noteFullWifiLockAcquired(int uid) {
935 enforceCallingPermission();
936 synchronized (mStats) {
937 mStats.noteFullWifiLockAcquiredLocked(uid);
938 }
939 }
Kweku Adams2f73ecd2017-09-27 16:59:19 -0700940
The Android Open Source Project10592532009-03-18 17:39:46 -0700941 public void noteFullWifiLockReleased(int uid) {
942 enforceCallingPermission();
943 synchronized (mStats) {
944 mStats.noteFullWifiLockReleasedLocked(uid);
945 }
946 }
Nick Pelly6ccaa542012-06-15 15:22:47 -0700947
948 public void noteWifiScanStarted(int uid) {
The Android Open Source Project10592532009-03-18 17:39:46 -0700949 enforceCallingPermission();
950 synchronized (mStats) {
Nick Pelly6ccaa542012-06-15 15:22:47 -0700951 mStats.noteWifiScanStartedLocked(uid);
The Android Open Source Project10592532009-03-18 17:39:46 -0700952 }
953 }
Nick Pelly6ccaa542012-06-15 15:22:47 -0700954
955 public void noteWifiScanStopped(int uid) {
The Android Open Source Project10592532009-03-18 17:39:46 -0700956 enforceCallingPermission();
957 synchronized (mStats) {
Nick Pelly6ccaa542012-06-15 15:22:47 -0700958 mStats.noteWifiScanStoppedLocked(uid);
The Android Open Source Project10592532009-03-18 17:39:46 -0700959 }
960 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800961
Robert Greenwalt5347bd42009-05-13 15:10:16 -0700962 public void noteWifiMulticastEnabled(int uid) {
963 enforceCallingPermission();
964 synchronized (mStats) {
965 mStats.noteWifiMulticastEnabledLocked(uid);
966 }
967 }
968
969 public void noteWifiMulticastDisabled(int uid) {
970 enforceCallingPermission();
971 synchronized (mStats) {
972 mStats.noteWifiMulticastDisabledLocked(uid);
973 }
974 }
975
Dianne Hackborn7e9f4eb2010-09-10 18:43:00 -0700976 public void noteFullWifiLockAcquiredFromSource(WorkSource ws) {
977 enforceCallingPermission();
978 synchronized (mStats) {
979 mStats.noteFullWifiLockAcquiredFromSourceLocked(ws);
980 }
981 }
982
983 public void noteFullWifiLockReleasedFromSource(WorkSource ws) {
984 enforceCallingPermission();
985 synchronized (mStats) {
986 mStats.noteFullWifiLockReleasedFromSourceLocked(ws);
987 }
988 }
989
Nick Pelly6ccaa542012-06-15 15:22:47 -0700990 public void noteWifiScanStartedFromSource(WorkSource ws) {
Dianne Hackborn7e9f4eb2010-09-10 18:43:00 -0700991 enforceCallingPermission();
992 synchronized (mStats) {
Nick Pelly6ccaa542012-06-15 15:22:47 -0700993 mStats.noteWifiScanStartedFromSourceLocked(ws);
Dianne Hackborn7e9f4eb2010-09-10 18:43:00 -0700994 }
995 }
996
Nick Pelly6ccaa542012-06-15 15:22:47 -0700997 public void noteWifiScanStoppedFromSource(WorkSource ws) {
Dianne Hackborn7e9f4eb2010-09-10 18:43:00 -0700998 enforceCallingPermission();
999 synchronized (mStats) {
Nick Pelly6ccaa542012-06-15 15:22:47 -07001000 mStats.noteWifiScanStoppedFromSourceLocked(ws);
Dianne Hackborn7e9f4eb2010-09-10 18:43:00 -07001001 }
1002 }
1003
Robert Greenwalta029ea12013-09-25 16:38:12 -07001004 public void noteWifiBatchedScanStartedFromSource(WorkSource ws, int csph) {
1005 enforceCallingPermission();
1006 synchronized (mStats) {
1007 mStats.noteWifiBatchedScanStartedFromSourceLocked(ws, csph);
1008 }
1009 }
1010
1011 public void noteWifiBatchedScanStoppedFromSource(WorkSource ws) {
1012 enforceCallingPermission();
1013 synchronized (mStats) {
1014 mStats.noteWifiBatchedScanStoppedFromSourceLocked(ws);
1015 }
1016 }
1017
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07001018 @Override
Adam Lesinski4b6bd8d2015-03-19 14:35:45 -07001019 public void noteNetworkInterfaceType(String iface, int networkType) {
Jeff Sharkey1059c3c2011-10-04 16:54:49 -07001020 enforceCallingPermission();
1021 synchronized (mStats) {
Adam Lesinski4b6bd8d2015-03-19 14:35:45 -07001022 mStats.noteNetworkInterfaceTypeLocked(iface, networkType);
Jeff Sharkey1059c3c2011-10-04 16:54:49 -07001023 }
1024 }
1025
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07001026 @Override
1027 public void noteNetworkStatsEnabled() {
1028 enforceCallingPermission();
Adam Lesinskib3a1bad2017-05-26 11:50:40 -07001029 // During device boot, qtaguid isn't enabled until after the inital
1030 // loading of battery stats. Now that they're enabled, take our initial
1031 // snapshot for future delta calculation.
1032 mWorker.scheduleSync("network-stats-enabled",
1033 BatteryExternalStatsWorker.UPDATE_RADIO | BatteryExternalStatsWorker.UPDATE_WIFI);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -07001034 }
1035
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001036 @Override
Dianne Hackborn08c47a52015-10-15 12:38:14 -07001037 public void noteDeviceIdleMode(int mode, String activeReason, int activeUid) {
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001038 enforceCallingPermission();
1039 synchronized (mStats) {
Dianne Hackborn08c47a52015-10-15 12:38:14 -07001040 mStats.noteDeviceIdleModeLocked(mode, activeReason, activeUid);
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001041 }
1042 }
1043
Dianne Hackborn3accca02013-09-20 09:32:11 -07001044 public void notePackageInstalled(String pkgName, long versionCode) {
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07001045 enforceCallingPermission();
1046 synchronized (mStats) {
1047 mStats.notePackageInstalledLocked(pkgName, versionCode);
1048 }
1049 }
1050
1051 public void notePackageUninstalled(String pkgName) {
1052 enforceCallingPermission();
1053 synchronized (mStats) {
1054 mStats.notePackageUninstalledLocked(pkgName);
1055 }
1056 }
1057
Adam Lesinski6771d622016-01-15 18:14:47 -08001058 @Override
Bookatzb1f04f32017-05-19 13:57:32 -07001059 public void noteBleScanStarted(WorkSource ws, boolean isUnoptimized) {
Adam Lesinski6771d622016-01-15 18:14:47 -08001060 enforceCallingPermission();
Adam Lesinski9f55cc72016-01-27 20:42:14 -08001061 synchronized (mStats) {
Bookatzb1f04f32017-05-19 13:57:32 -07001062 mStats.noteBluetoothScanStartedFromSourceLocked(ws, isUnoptimized);
Adam Lesinski9f55cc72016-01-27 20:42:14 -08001063 }
Adam Lesinski6771d622016-01-15 18:14:47 -08001064 }
1065
1066 @Override
Bookatz94c5a312017-07-11 16:49:17 -07001067 public void noteBleScanStopped(WorkSource ws, boolean isUnoptimized) {
Adam Lesinski6771d622016-01-15 18:14:47 -08001068 enforceCallingPermission();
Adam Lesinski9f55cc72016-01-27 20:42:14 -08001069 synchronized (mStats) {
Bookatz94c5a312017-07-11 16:49:17 -07001070 mStats.noteBluetoothScanStoppedFromSourceLocked(ws, isUnoptimized);
Adam Lesinski9f55cc72016-01-27 20:42:14 -08001071 }
1072 }
1073
1074 @Override
1075 public void noteResetBleScan() {
1076 enforceCallingPermission();
1077 synchronized (mStats) {
1078 mStats.noteResetBluetoothScanLocked();
1079 }
Adam Lesinski6771d622016-01-15 18:14:47 -08001080 }
1081
Adam Lesinski010bf372016-04-11 12:18:18 -07001082 @Override
Bookatz4ebc0642017-05-11 12:21:19 -07001083 public void noteBleScanResults(WorkSource ws, int numNewResults) {
Bookatz956f36bf2017-04-28 09:48:17 -07001084 enforceCallingPermission();
1085 synchronized (mStats) {
Bookatz4ebc0642017-05-11 12:21:19 -07001086 mStats.noteBluetoothScanResultsFromSourceLocked(ws, numNewResults);
Bookatz956f36bf2017-04-28 09:48:17 -07001087 }
1088 }
1089
1090 @Override
Adam Lesinski010bf372016-04-11 12:18:18 -07001091 public void noteWifiControllerActivity(WifiActivityEnergyInfo info) {
1092 enforceCallingPermission();
1093
1094 if (info == null || !info.isValid()) {
1095 Slog.e(TAG, "invalid wifi data given: " + info);
1096 return;
1097 }
1098
Adam Lesinski14ae39a2017-05-26 11:50:40 -07001099 mStats.updateWifiState(info);
Adam Lesinski010bf372016-04-11 12:18:18 -07001100 }
1101
1102 @Override
1103 public void noteBluetoothControllerActivity(BluetoothActivityEnergyInfo info) {
1104 enforceCallingPermission();
1105 if (info == null || !info.isValid()) {
1106 Slog.e(TAG, "invalid bluetooth data given: " + info);
1107 return;
1108 }
1109
Adam Lesinskic357e682018-02-28 12:55:39 -08001110 synchronized (mStats) {
1111 mStats.updateBluetoothStateLocked(info);
1112 }
Adam Lesinski010bf372016-04-11 12:18:18 -07001113 }
1114
1115 @Override
1116 public void noteModemControllerActivity(ModemActivityInfo info) {
1117 enforceCallingPermission();
1118
1119 if (info == null || !info.isValid()) {
1120 Slog.e(TAG, "invalid modem data given: " + info);
1121 return;
1122 }
1123
Adam Lesinski14ae39a2017-05-26 11:50:40 -07001124 mStats.updateMobileRadioState(info);
Adam Lesinski010bf372016-04-11 12:18:18 -07001125 }
1126
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001127 public boolean isOnBattery() {
1128 return mStats.isOnBattery();
1129 }
Adam Lesinski4b6bd8d2015-03-19 14:35:45 -07001130
Adam Lesinskid7616ef2015-07-27 11:43:05 -07001131 @Override
1132 public void setBatteryState(final int status, final int health, final int plugType,
Adam Lesinski041d9172016-12-12 12:03:56 -08001133 final int level, final int temp, final int volt, final int chargeUAh,
1134 final int chargeFullUAh) {
Adam Lesinskid7616ef2015-07-27 11:43:05 -07001135 enforceCallingPermission();
1136
1137 // BatteryService calls us here and we may update external state. It would be wrong
1138 // to block such a low level service like BatteryService on external stats like WiFi.
Adam Lesinskib3a1bad2017-05-26 11:50:40 -07001139 mWorker.scheduleRunnable(() -> {
1140 synchronized (mStats) {
Sudheer Shankac57729a2018-02-09 15:44:42 -08001141 final boolean onBattery = BatteryStatsImpl.isOnBattery(plugType, status);
Adam Lesinskib3a1bad2017-05-26 11:50:40 -07001142 if (mStats.isOnBattery() == onBattery) {
1143 // The battery state has not changed, so we don't need to sync external
1144 // stats immediately.
1145 mStats.setBatteryStateLocked(status, health, plugType, level, temp, volt,
1146 chargeUAh, chargeFullUAh);
1147 return;
Adam Lesinskid7616ef2015-07-27 11:43:05 -07001148 }
Adam Lesinskib3a1bad2017-05-26 11:50:40 -07001149 }
Adam Lesinskid7616ef2015-07-27 11:43:05 -07001150
Adam Lesinskib3a1bad2017-05-26 11:50:40 -07001151 // Sync external stats first as the battery has changed states. If we don't sync
1152 // before changing the state, we may not collect the relevant data later.
1153 // Order here is guaranteed since we're scheduling from the same thread and we are
1154 // using a single threaded executor.
1155 mWorker.scheduleSync("battery-state", BatteryExternalStatsWorker.UPDATE_ALL);
1156 mWorker.scheduleRunnable(() -> {
Adam Lesinskid7616ef2015-07-27 11:43:05 -07001157 synchronized (mStats) {
Adam Lesinski926969b2016-04-28 17:31:12 -07001158 mStats.setBatteryStateLocked(status, health, plugType, level, temp, volt,
Adam Lesinski041d9172016-12-12 12:03:56 -08001159 chargeUAh, chargeFullUAh);
Adam Lesinskid7616ef2015-07-27 11:43:05 -07001160 }
Adam Lesinskib3a1bad2017-05-26 11:50:40 -07001161 });
Adam Lesinskid7616ef2015-07-27 11:43:05 -07001162 });
Evan Millar633a1742009-04-02 16:36:33 -07001163 }
Kweku Adams2f73ecd2017-09-27 16:59:19 -07001164
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001165 public long getAwakeTimeBattery() {
1166 mContext.enforceCallingOrSelfPermission(
1167 android.Manifest.permission.BATTERY_STATS, null);
1168 return mStats.getAwakeTimeBattery();
1169 }
1170
1171 public long getAwakeTimePlugged() {
1172 mContext.enforceCallingOrSelfPermission(
1173 android.Manifest.permission.BATTERY_STATS, null);
1174 return mStats.getAwakeTimePlugged();
1175 }
1176
1177 public void enforceCallingPermission() {
1178 if (Binder.getCallingPid() == Process.myPid()) {
1179 return;
1180 }
1181 mContext.enforcePermission(android.Manifest.permission.UPDATE_DEVICE_STATS,
1182 Binder.getCallingPid(), Binder.getCallingUid(), null);
1183 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001184
Ray Essick0fc2da02019-02-28 09:26:19 -08001185 private void enforceSelfOrCallingPermission(int uid) {
1186 if (Binder.getCallingUid() == uid) {
1187 return;
1188 }
1189 enforceCallingPermission();
1190 }
1191
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001192 final class WakeupReasonThread extends Thread {
Adam Lesinski515702c2015-07-23 18:13:38 -07001193 private static final int MAX_REASON_SIZE = 512;
1194 private CharsetDecoder mDecoder;
1195 private ByteBuffer mUtf8Buffer;
1196 private CharBuffer mUtf16Buffer;
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001197
1198 WakeupReasonThread() {
1199 super("BatteryStats_wakeupReason");
1200 }
1201
1202 public void run() {
1203 Process.setThreadPriority(Process.THREAD_PRIORITY_FOREGROUND);
1204
Adam Lesinski515702c2015-07-23 18:13:38 -07001205 mDecoder = StandardCharsets.UTF_8
1206 .newDecoder()
1207 .onMalformedInput(CodingErrorAction.REPLACE)
1208 .onUnmappableCharacter(CodingErrorAction.REPLACE)
1209 .replaceWith("?");
1210
1211 mUtf8Buffer = ByteBuffer.allocateDirect(MAX_REASON_SIZE);
1212 mUtf16Buffer = CharBuffer.allocate(MAX_REASON_SIZE);
1213
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001214 try {
Adam Lesinski515702c2015-07-23 18:13:38 -07001215 String reason;
1216 while ((reason = waitWakeup()) != null) {
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001217 synchronized (mStats) {
Adam Lesinski515702c2015-07-23 18:13:38 -07001218 mStats.noteWakeupReasonLocked(reason);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001219 }
1220 }
1221 } catch (RuntimeException e) {
1222 Slog.e(TAG, "Failure reading wakeup reasons", e);
1223 }
1224 }
Adam Lesinski515702c2015-07-23 18:13:38 -07001225
1226 private String waitWakeup() {
1227 mUtf8Buffer.clear();
1228 mUtf16Buffer.clear();
1229 mDecoder.reset();
1230
1231 int bytesWritten = nativeWaitWakeup(mUtf8Buffer);
1232 if (bytesWritten < 0) {
1233 return null;
1234 } else if (bytesWritten == 0) {
1235 return "unknown";
1236 }
1237
1238 // Set the buffer's limit to the number of bytes written.
1239 mUtf8Buffer.limit(bytesWritten);
1240
1241 // Decode the buffer from UTF-8 to UTF-16.
1242 // Unmappable characters will be replaced.
1243 mDecoder.decode(mUtf8Buffer, mUtf16Buffer, true);
1244 mUtf16Buffer.flip();
1245
1246 // Create a String from the UTF-16 buffer.
1247 return mUtf16Buffer.toString();
1248 }
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001249 }
1250
Adam Lesinski515702c2015-07-23 18:13:38 -07001251 private static native int nativeWaitWakeup(ByteBuffer outBuffer);
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001252
Dianne Hackbornae384452011-06-28 12:33:48 -07001253 private void dumpHelp(PrintWriter pw) {
Dianne Hackborn91268cf2013-06-13 19:06:50 -07001254 pw.println("Battery stats (batterystats) dump options:");
Kweku Adams3d160912018-05-07 11:26:27 -07001255 pw.println(" [--checkin] [--proto] [--history] [--history-start] [--charged] [-c]");
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001256 pw.println(" [--daily] [--reset] [--write] [--new-daily] [--read-daily] [-h] [<package.name>]");
Dianne Hackborn865b79b2015-08-18 17:33:00 -07001257 pw.println(" --checkin: generate output for a checkin report; will write (and clear) the");
1258 pw.println(" last old completed stats when they had been reset.");
Joe Onorato1476d322016-05-05 14:46:15 -07001259 pw.println(" -c: write the current stats in checkin format.");
Kweku Adams3d160912018-05-07 11:26:27 -07001260 pw.println(" --proto: write the current aggregate stats (without history) in proto format.");
Dianne Hackborn099bc622014-01-22 13:39:16 -08001261 pw.println(" --history: show only history data.");
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001262 pw.println(" --history-start <num>: show only history data starting at given time offset.");
Hui Yu0ed84f12018-06-20 19:07:56 -07001263 pw.println(" --history-create-events <num>: create <num> of battery history events.");
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001264 pw.println(" --charged: only output data since last charged.");
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001265 pw.println(" --daily: only output full daily data.");
Dianne Hackbornae384452011-06-28 12:33:48 -07001266 pw.println(" --reset: reset the stats, clearing all current data.");
1267 pw.println(" --write: force write current collected stats to disk.");
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001268 pw.println(" --new-daily: immediately create and write new daily stats record.");
1269 pw.println(" --read-daily: read-load last written daily stats.");
Sudheer Shanka5c19b892018-01-05 17:25:46 -08001270 pw.println(" --settings: dump the settings key/values related to batterystats");
Mike Ma234d1822018-03-13 18:53:21 -07001271 pw.println(" --cpu: dump cpu stats for debugging purpose");
Dianne Hackborncbfd23e2013-06-11 14:26:53 -07001272 pw.println(" <package.name>: optional name of package to filter output by.");
Dianne Hackbornfc064132014-06-02 12:42:12 -07001273 pw.println(" -h: print this help text.");
1274 pw.println("Battery stats (batterystats) commands:");
1275 pw.println(" enable|disable <option>");
1276 pw.println(" Enable or disable a running option. Option state is not saved across boots.");
1277 pw.println(" Options are:");
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07001278 pw.println(" full-history: include additional detailed events in battery history:");
Dianne Hackborn1e383822015-04-10 14:02:33 -07001279 pw.println(" wake_lock_in, alarms and proc events");
Dianne Hackbornfc064132014-06-02 12:42:12 -07001280 pw.println(" no-auto-reset: don't automatically reset stats when unplugged");
Amith Yamasani674c9bb2017-02-01 09:45:17 -08001281 pw.println(" pretend-screen-off: pretend the screen is off, even if screen state changes");
Dianne Hackbornae384452011-06-28 12:33:48 -07001282 }
1283
Sudheer Shanka5c19b892018-01-05 17:25:46 -08001284 private void dumpSettings(PrintWriter pw) {
1285 synchronized (mStats) {
1286 mStats.dumpConstantsLocked(pw);
1287 }
1288 }
1289
Mike Ma234d1822018-03-13 18:53:21 -07001290 private void dumpCpuStats(PrintWriter pw) {
1291 synchronized (mStats) {
1292 mStats.dumpCpuStatsLocked(pw);
1293 }
1294 }
1295
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001296 private int doEnableOrDisable(PrintWriter pw, int i, String[] args, boolean enable) {
1297 i++;
1298 if (i >= args.length) {
1299 pw.println("Missing option argument for " + (enable ? "--enable" : "--disable"));
1300 dumpHelp(pw);
1301 return -1;
1302 }
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07001303 if ("full-wake-history".equals(args[i]) || "full-history".equals(args[i])) {
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001304 synchronized (mStats) {
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07001305 mStats.setRecordAllHistoryLocked(enable);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001306 }
Dianne Hackborn9a755432014-05-15 17:05:22 -07001307 } else if ("no-auto-reset".equals(args[i])) {
1308 synchronized (mStats) {
1309 mStats.setNoAutoReset(enable);
1310 }
Amith Yamasani674c9bb2017-02-01 09:45:17 -08001311 } else if ("pretend-screen-off".equals(args[i])) {
1312 synchronized (mStats) {
1313 mStats.setPretendScreenOff(enable);
1314 }
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001315 } else {
1316 pw.println("Unknown enable/disable option: " + args[i]);
1317 dumpHelp(pw);
1318 return -1;
1319 }
1320 return i;
1321 }
1322
Adam Lesinski4b6bd8d2015-03-19 14:35:45 -07001323
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001324 @Override
1325 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
Jeff Sharkey6df866a2017-03-31 14:08:23 -06001326 if (!DumpUtils.checkDumpAndUsageStatsPermission(mContext, TAG, pw)) return;
Kenny Root3abd75b2011-09-29 11:00:41 -07001327
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001328 int flags = 0;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07001329 boolean useCheckinFormat = false;
Kweku Adams2f73ecd2017-09-27 16:59:19 -07001330 boolean toProto = false;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07001331 boolean isRealCheckin = false;
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001332 boolean noOutput = false;
Dianne Hackborn16b0b562014-06-03 17:24:42 -07001333 boolean writeData = false;
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001334 long historyStart = -1;
Dianne Hackborncbfd23e2013-06-11 14:26:53 -07001335 int reqUid = -1;
Dianne Hackborne4a59512010-12-07 11:08:07 -08001336 if (args != null) {
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001337 for (int i=0; i<args.length; i++) {
1338 String arg = args[i];
Dianne Hackborne4a59512010-12-07 11:08:07 -08001339 if ("--checkin".equals(arg)) {
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07001340 useCheckinFormat = true;
1341 isRealCheckin = true;
Dianne Hackborn099bc622014-01-22 13:39:16 -08001342 } else if ("--history".equals(arg)) {
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001343 flags |= BatteryStats.DUMP_HISTORY_ONLY;
1344 } else if ("--history-start".equals(arg)) {
1345 flags |= BatteryStats.DUMP_HISTORY_ONLY;
1346 i++;
1347 if (i >= args.length) {
1348 pw.println("Missing time argument for --history-since");
1349 dumpHelp(pw);
1350 return;
1351 }
Hui Yu0ed84f12018-06-20 19:07:56 -07001352 historyStart = ParseUtils.parseLong(args[i], 0);
Dianne Hackborn16b0b562014-06-03 17:24:42 -07001353 writeData = true;
Hui Yu0ed84f12018-06-20 19:07:56 -07001354 } else if ("--history-create-events".equals(arg)) {
1355 i++;
1356 if (i >= args.length) {
1357 pw.println("Missing events argument for --history-create-events");
1358 dumpHelp(pw);
1359 return;
1360 }
1361 final long events = ParseUtils.parseLong(args[i], 0);
1362 synchronized (mStats) {
1363 mStats.createFakeHistoryEvents(events);
1364 pw.println("Battery history create events started.");
1365 noOutput = true;
1366 }
Dianne Hackborn49021f52013-09-04 18:03:40 -07001367 } else if ("-c".equals(arg)) {
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07001368 useCheckinFormat = true;
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001369 flags |= BatteryStats.DUMP_INCLUDE_HISTORY;
Kweku Adams2f73ecd2017-09-27 16:59:19 -07001370 } else if ("--proto".equals(arg)) {
1371 toProto = true;
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001372 } else if ("--charged".equals(arg)) {
1373 flags |= BatteryStats.DUMP_CHARGED_ONLY;
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001374 } else if ("--daily".equals(arg)) {
1375 flags |= BatteryStats.DUMP_DAILY_ONLY;
Dianne Hackborne4a59512010-12-07 11:08:07 -08001376 } else if ("--reset".equals(arg)) {
1377 synchronized (mStats) {
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001378 mStats.resetAllStatsCmdLocked();
Dianne Hackborne4a59512010-12-07 11:08:07 -08001379 pw.println("Battery stats reset.");
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001380 noOutput = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001381 }
Adam Lesinskib3a1bad2017-05-26 11:50:40 -07001382 mWorker.scheduleSync("dump", BatteryExternalStatsWorker.UPDATE_ALL);
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001383 } else if ("--write".equals(arg)) {
Sudheer Shankab2f83c12017-11-13 19:25:01 -08001384 syncStats("dump", BatteryExternalStatsWorker.UPDATE_ALL);
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001385 synchronized (mStats) {
1386 mStats.writeSyncLocked();
1387 pw.println("Battery stats written.");
1388 noOutput = true;
1389 }
Dianne Hackbornd4a8af72015-03-03 10:06:15 -08001390 } else if ("--new-daily".equals(arg)) {
1391 synchronized (mStats) {
1392 mStats.recordDailyStatsLocked();
1393 pw.println("New daily stats written.");
1394 noOutput = true;
1395 }
1396 } else if ("--read-daily".equals(arg)) {
1397 synchronized (mStats) {
1398 mStats.readDailyStatsLocked();
1399 pw.println("Last daily stats read.");
1400 noOutput = true;
1401 }
Dianne Hackbornfc064132014-06-02 12:42:12 -07001402 } else if ("--enable".equals(arg) || "enable".equals(arg)) {
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001403 i = doEnableOrDisable(pw, i, args, true);
1404 if (i < 0) {
1405 return;
1406 }
1407 pw.println("Enabled: " + args[i]);
1408 return;
Dianne Hackbornfc064132014-06-02 12:42:12 -07001409 } else if ("--disable".equals(arg) || "disable".equals(arg)) {
Dianne Hackborncbefd8d2014-05-14 11:42:00 -07001410 i = doEnableOrDisable(pw, i, args, false);
1411 if (i < 0) {
1412 return;
1413 }
1414 pw.println("Disabled: " + args[i]);
1415 return;
Dianne Hackbornae384452011-06-28 12:33:48 -07001416 } else if ("-h".equals(arg)) {
1417 dumpHelp(pw);
1418 return;
Sudheer Shanka5c19b892018-01-05 17:25:46 -08001419 } else if ("--settings".equals(arg)) {
1420 dumpSettings(pw);
1421 return;
Mike Ma234d1822018-03-13 18:53:21 -07001422 } else if ("--cpu".equals(arg)) {
1423 dumpCpuStats(pw);
1424 return;
Mike Lockwoode8174042011-08-16 12:53:43 -07001425 } else if ("-a".equals(arg)) {
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001426 flags |= BatteryStats.DUMP_VERBOSE;
Dianne Hackborncbfd23e2013-06-11 14:26:53 -07001427 } else if (arg.length() > 0 && arg.charAt(0) == '-'){
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001428 pw.println("Unknown option: " + arg);
Dianne Hackbornae384452011-06-28 12:33:48 -07001429 dumpHelp(pw);
Dianne Hackborncbfd23e2013-06-11 14:26:53 -07001430 return;
1431 } else {
1432 // Not an option, last argument must be a package name.
1433 try {
Jeff Sharkeye06b4d12016-01-06 14:51:50 -07001434 reqUid = mContext.getPackageManager().getPackageUidAsUser(arg,
Dianne Hackborncbfd23e2013-06-11 14:26:53 -07001435 UserHandle.getCallingUserId());
1436 } catch (PackageManager.NameNotFoundException e) {
1437 pw.println("Unknown package: " + arg);
1438 dumpHelp(pw);
1439 return;
1440 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001441 }
1442 }
Dianne Hackborne4a59512010-12-07 11:08:07 -08001443 }
Dianne Hackborn0ffc9882011-04-13 18:15:56 -07001444 if (noOutput) {
1445 return;
1446 }
Dianne Hackborn13a6a9b2015-04-22 18:03:59 -07001447
1448 long ident = Binder.clearCallingIdentity();
1449 try {
1450 if (BatteryStatsHelper.checkWifiOnly(mContext)) {
1451 flags |= BatteryStats.DUMP_DEVICE_WIFI_ONLY;
1452 }
1453 // Fetch data from external sources and update the BatteryStatsImpl object with them.
Sudheer Shankab2f83c12017-11-13 19:25:01 -08001454 syncStats("dump", BatteryExternalStatsWorker.UPDATE_ALL);
Dianne Hackborn13a6a9b2015-04-22 18:03:59 -07001455 } finally {
1456 Binder.restoreCallingIdentity(ident);
Dianne Hackbornd953c532014-08-16 18:17:38 -07001457 }
Dianne Hackborn13a6a9b2015-04-22 18:03:59 -07001458
Dianne Hackbornab4a81b2014-10-09 17:59:38 -07001459 if (reqUid >= 0) {
1460 // By default, if the caller is only interested in a specific package, then
1461 // we only dump the aggregated data since charged.
Dianne Hackborn1e725a72015-03-24 18:23:19 -07001462 if ((flags&(BatteryStats.DUMP_HISTORY_ONLY|BatteryStats.DUMP_CHARGED_ONLY)) == 0) {
Dianne Hackbornab4a81b2014-10-09 17:59:38 -07001463 flags |= BatteryStats.DUMP_CHARGED_ONLY;
1464 // Also if they are doing -c, we don't want history.
1465 flags &= ~BatteryStats.DUMP_INCLUDE_HISTORY;
1466 }
1467 }
Adam Lesinski4b6bd8d2015-03-19 14:35:45 -07001468
Kweku Adams2f73ecd2017-09-27 16:59:19 -07001469 if (toProto) {
1470 List<ApplicationInfo> apps = mContext.getPackageManager().getInstalledApplications(
1471 PackageManager.MATCH_ANY_USER | PackageManager.MATCH_ALL);
1472 if (isRealCheckin) {
1473 // For a real checkin, first we want to prefer to use the last complete checkin
1474 // file if there is one.
1475 synchronized (mStats.mCheckinFile) {
1476 if (mStats.mCheckinFile.exists()) {
1477 try {
1478 byte[] raw = mStats.mCheckinFile.readFully();
1479 if (raw != null) {
1480 Parcel in = Parcel.obtain();
1481 in.unmarshall(raw, 0, raw.length);
1482 in.setDataPosition(0);
1483 BatteryStatsImpl checkinStats = new BatteryStatsImpl(
Blake Kragtencb308d92019-01-28 10:54:13 -08001484 null, mStats.mHandler, null, null,
1485 mUserManagerUserInfoProvider);
Kweku Adams2f73ecd2017-09-27 16:59:19 -07001486 checkinStats.readSummaryFromParcel(in);
1487 in.recycle();
Kweku Adams3d160912018-05-07 11:26:27 -07001488 checkinStats.dumpProtoLocked(
1489 mContext, fd, apps, flags, historyStart);
Kweku Adams2f73ecd2017-09-27 16:59:19 -07001490 mStats.mCheckinFile.delete();
1491 return;
1492 }
1493 } catch (IOException | ParcelFormatException e) {
1494 Slog.w(TAG, "Failure reading checkin file "
1495 + mStats.mCheckinFile.getBaseFile(), e);
1496 }
1497 }
1498 }
1499 }
1500 if (DBG) Slog.d(TAG, "begin dumpProtoLocked from UID " + Binder.getCallingUid());
1501 synchronized (mStats) {
Kweku Adams3d160912018-05-07 11:26:27 -07001502 mStats.dumpProtoLocked(mContext, fd, apps, flags, historyStart);
Kweku Adams2f73ecd2017-09-27 16:59:19 -07001503 if (writeData) {
1504 mStats.writeAsyncLocked();
1505 }
1506 }
1507 if (DBG) Slog.d(TAG, "end dumpProtoLocked");
1508 } else if (useCheckinFormat) {
Dianne Hackborn9cfba352016-03-24 17:31:28 -07001509 List<ApplicationInfo> apps = mContext.getPackageManager().getInstalledApplications(
Amith Yamasani0d1fd8d2016-10-12 14:21:51 -07001510 PackageManager.MATCH_ANY_USER | PackageManager.MATCH_ALL);
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07001511 if (isRealCheckin) {
1512 // For a real checkin, first we want to prefer to use the last complete checkin
1513 // file if there is one.
1514 synchronized (mStats.mCheckinFile) {
1515 if (mStats.mCheckinFile.exists()) {
1516 try {
1517 byte[] raw = mStats.mCheckinFile.readFully();
1518 if (raw != null) {
1519 Parcel in = Parcel.obtain();
1520 in.unmarshall(raw, 0, raw.length);
1521 in.setDataPosition(0);
1522 BatteryStatsImpl checkinStats = new BatteryStatsImpl(
Blake Kragtencb308d92019-01-28 10:54:13 -08001523 null, mStats.mHandler, null, null,
1524 mUserManagerUserInfoProvider);
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07001525 checkinStats.readSummaryFromParcel(in);
1526 in.recycle();
1527 checkinStats.dumpCheckinLocked(mContext, pw, apps, flags,
1528 historyStart);
1529 mStats.mCheckinFile.delete();
1530 return;
1531 }
Adam Lesinski9ae9cba2015-07-08 17:09:34 -07001532 } catch (IOException | ParcelFormatException e) {
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -07001533 Slog.w(TAG, "Failure reading checkin file "
1534 + mStats.mCheckinFile.getBaseFile(), e);
1535 }
1536 }
1537 }
1538 }
Joe Onorato82ba91d2017-04-27 16:18:05 -07001539 if (DBG) Slog.d(TAG, "begin dumpCheckinLocked from UID " + Binder.getCallingUid());
Dianne Hackborne4a59512010-12-07 11:08:07 -08001540 synchronized (mStats) {
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001541 mStats.dumpCheckinLocked(mContext, pw, apps, flags, historyStart);
Dianne Hackborn16b0b562014-06-03 17:24:42 -07001542 if (writeData) {
1543 mStats.writeAsyncLocked();
1544 }
Dianne Hackborne4a59512010-12-07 11:08:07 -08001545 }
Joe Onorato82ba91d2017-04-27 16:18:05 -07001546 if (DBG) Slog.d(TAG, "end dumpCheckinLocked");
Dianne Hackborne4a59512010-12-07 11:08:07 -08001547 } else {
Joe Onorato82ba91d2017-04-27 16:18:05 -07001548 if (DBG) Slog.d(TAG, "begin dumpLocked from UID " + Binder.getCallingUid());
Dianne Hackborne4a59512010-12-07 11:08:07 -08001549 synchronized (mStats) {
Dianne Hackbornc51cf032014-03-02 19:08:15 -08001550 mStats.dumpLocked(mContext, pw, flags, reqUid, historyStart);
Dianne Hackborn16b0b562014-06-03 17:24:42 -07001551 if (writeData) {
1552 mStats.writeAsyncLocked();
1553 }
Dianne Hackborne4a59512010-12-07 11:08:07 -08001554 }
Joe Onorato82ba91d2017-04-27 16:18:05 -07001555 if (DBG) Slog.d(TAG, "end dumpLocked");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001556 }
1557 }
Adam Lesinski4b6bd8d2015-03-19 14:35:45 -07001558
Joe Onorato713fec82016-03-04 10:34:02 -08001559 /**
Siddharth Raya1fd0572017-11-13 14:20:47 -08001560 * Gets a snapshot of cellular stats
1561 * @hide
1562 */
1563 public CellularBatteryStats getCellularBatteryStats() {
1564 synchronized (mStats) {
1565 return mStats.getCellularBatteryStats();
1566 }
1567 }
1568
1569 /**
Siddharth Rayb50a6842017-12-14 15:15:28 -08001570 * Gets a snapshot of Wifi stats
1571 * @hide
1572 */
1573 public WifiBatteryStats getWifiBatteryStats() {
1574 synchronized (mStats) {
1575 return mStats.getWifiBatteryStats();
1576 }
1577 }
1578
1579 /**
Siddharth Ray78ccaf52017-12-23 16:16:21 -08001580 * Gets a snapshot of Gps stats
1581 * @hide
1582 */
1583 public GpsBatteryStats getGpsBatteryStats() {
1584 synchronized (mStats) {
1585 return mStats.getGpsBatteryStats();
1586 }
1587 }
1588
1589 /**
Joe Onorato713fec82016-03-04 10:34:02 -08001590 * Gets a snapshot of the system health for a particular uid.
1591 */
1592 @Override
1593 public HealthStatsParceler takeUidSnapshot(int requestUid) {
1594 if (requestUid != Binder.getCallingUid()) {
1595 mContext.enforceCallingOrSelfPermission(
1596 android.Manifest.permission.BATTERY_STATS, null);
1597 }
1598 long ident = Binder.clearCallingIdentity();
1599 try {
Sudheer Shankae56013a2018-04-23 11:22:15 -07001600 if (shouldCollectExternalStats()) {
1601 syncStats("get-health-stats-for-uids", BatteryExternalStatsWorker.UPDATE_ALL);
1602 }
Joe Onorato713fec82016-03-04 10:34:02 -08001603 synchronized (mStats) {
1604 return getHealthStatsForUidLocked(requestUid);
1605 }
1606 } catch (Exception ex) {
Joe Onorato82ba91d2017-04-27 16:18:05 -07001607 Slog.w(TAG, "Crashed while writing for takeUidSnapshot(" + requestUid + ")", ex);
Joe Onorato713fec82016-03-04 10:34:02 -08001608 throw ex;
1609 } finally {
1610 Binder.restoreCallingIdentity(ident);
1611 }
1612 }
1613
1614 /**
1615 * Gets a snapshot of the system health for a number of uids.
1616 */
1617 @Override
1618 public HealthStatsParceler[] takeUidSnapshots(int[] requestUids) {
1619 if (!onlyCaller(requestUids)) {
1620 mContext.enforceCallingOrSelfPermission(
1621 android.Manifest.permission.BATTERY_STATS, null);
1622 }
1623 long ident = Binder.clearCallingIdentity();
1624 int i=-1;
1625 try {
Sudheer Shankae56013a2018-04-23 11:22:15 -07001626 if (shouldCollectExternalStats()) {
1627 syncStats("get-health-stats-for-uids", BatteryExternalStatsWorker.UPDATE_ALL);
1628 }
Joe Onorato713fec82016-03-04 10:34:02 -08001629 synchronized (mStats) {
1630 final int N = requestUids.length;
1631 final HealthStatsParceler[] results = new HealthStatsParceler[N];
1632 for (i=0; i<N; i++) {
1633 results[i] = getHealthStatsForUidLocked(requestUids[i]);
1634 }
1635 return results;
1636 }
1637 } catch (Exception ex) {
Joe Onorato82ba91d2017-04-27 16:18:05 -07001638 if (DBG) Slog.d(TAG, "Crashed while writing for takeUidSnapshots("
Joe Onorato713fec82016-03-04 10:34:02 -08001639 + Arrays.toString(requestUids) + ") i=" + i, ex);
1640 throw ex;
1641 } finally {
1642 Binder.restoreCallingIdentity(ident);
1643 }
1644 }
1645
Sudheer Shankae56013a2018-04-23 11:22:15 -07001646 private boolean shouldCollectExternalStats() {
1647 return (SystemClock.elapsedRealtime() - mWorker.getLastCollectionTimeStamp())
1648 > mStats.getExternalStatsCollectionRateLimitMs();
1649 }
1650
Joe Onorato713fec82016-03-04 10:34:02 -08001651 /**
1652 * Returns whether the Binder.getCallingUid is the only thing in requestUids.
1653 */
1654 private static boolean onlyCaller(int[] requestUids) {
1655 final int caller = Binder.getCallingUid();
1656 final int N = requestUids.length;
1657 for (int i=0; i<N; i++) {
1658 if (requestUids[i] != caller) {
1659 return false;
1660 }
1661 }
1662 return true;
1663 }
1664
1665 /**
1666 * Gets a HealthStatsParceler for the given uid. You should probably call
Adam Lesinski010bf372016-04-11 12:18:18 -07001667 * updateExternalStatsSync first.
Joe Onorato713fec82016-03-04 10:34:02 -08001668 */
1669 HealthStatsParceler getHealthStatsForUidLocked(int requestUid) {
1670 final HealthStatsBatteryStatsWriter writer = new HealthStatsBatteryStatsWriter();
1671 final HealthStatsWriter uidWriter = new HealthStatsWriter(UidHealthStats.CONSTANTS);
1672 final BatteryStats.Uid uid = mStats.getUidStats().get(requestUid);
1673 if (uid != null) {
1674 writer.writeUid(uidWriter, mStats, uid);
1675 }
1676 return new HealthStatsParceler(uidWriter);
1677 }
1678
Ng Zhi An09411202019-01-23 11:46:50 -08001679 /**
1680 * Delay for sending ACTION_CHARGING after device is plugged in.
1681 *
1682 * @hide
1683 */
1684 public boolean setChargingStateUpdateDelayMillis(int delayMillis) {
1685 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.POWER_SAVER, null);
1686 final long ident = Binder.clearCallingIdentity();
1687
1688 try {
1689 final ContentResolver contentResolver = mContext.getContentResolver();
1690 return Settings.Global.putLong(contentResolver,
1691 Settings.Global.BATTERY_CHARGING_STATE_UPDATE_DELAY,
1692 delayMillis);
1693 } finally {
1694 Binder.restoreCallingIdentity(ident);
1695 }
1696 }
1697
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001698}