blob: a44fd675a709abe49b3da8fda0d9a7fc7745c96c [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -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
17package com.android.internal.app;
18
19import com.android.internal.os.BatteryStatsImpl;
20
Adam Lesinski010bf372016-04-11 12:18:18 -070021import android.bluetooth.BluetoothActivityEnergyInfo;
22import android.net.wifi.WifiActivityEnergyInfo;
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -070023import android.os.ParcelFileDescriptor;
Dianne Hackborn7e9f4eb2010-09-10 18:43:00 -070024import android.os.WorkSource;
Joe Onorato713fec82016-03-04 10:34:02 -080025import android.os.health.HealthStatsParceler;
Dianne Hackborn2ffa11e2014-04-21 15:56:18 -070026import android.telephony.DataConnectionRealTimeInfo;
Adam Lesinski010bf372016-04-11 12:18:18 -070027import android.telephony.ModemActivityInfo;
Wink Savillee9b06d72009-05-18 21:47:50 -070028import android.telephony.SignalStrength;
29
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030interface IBatteryStats {
Mike Lockwood488bb0e2013-09-25 09:27:18 -070031 // These first methods are also called by native code, so must
32 // be kept in sync with frameworks/native/include/binder/IBatteryStats.h
33 void noteStartSensor(int uid, int sensor);
34 void noteStopSensor(int uid, int sensor);
Chong Zhangf3d00e42014-07-22 09:12:36 -070035 void noteStartVideo(int uid);
36 void noteStopVideo(int uid);
37 void noteStartAudio(int uid);
38 void noteStopAudio(int uid);
Dianne Hackborn10eaa852014-07-22 22:54:55 -070039 void noteResetVideo();
40 void noteResetAudio();
Ruben Brunk6d2c3632015-05-26 17:32:16 -070041 void noteFlashlightOn(int uid);
42 void noteFlashlightOff(int uid);
43 void noteStartCamera(int uid);
44 void noteStopCamera(int uid);
45 void noteResetCamera();
46 void noteResetFlashlight();
Mike Lockwood488bb0e2013-09-25 09:27:18 -070047
48 // Remaining methods are only used in Java.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049 byte[] getStatistics();
Dianne Hackborn099bc622014-01-22 13:39:16 -080050
Dianne Hackborn0068d3dc2014-08-06 19:20:25 -070051 ParcelFileDescriptor getStatisticsStream();
52
Dianne Hackborn4870e9d2015-04-08 16:55:47 -070053 // Return true if we see the battery as currently charging.
54 boolean isCharging();
55
Dianne Hackbornab5c0ea2014-04-29 14:53:32 -070056 // Return the computed amount of time remaining on battery, in milliseconds.
57 // Returns -1 if nothing could be computed.
58 long computeBatteryTimeRemaining();
59
60 // Return the computed amount of time remaining to fully charge, in milliseconds.
61 // Returns -1 if nothing could be computed.
62 long computeChargeTimeRemaining();
63
Dianne Hackborn099bc622014-01-22 13:39:16 -080064 void noteEvent(int code, String name, int uid);
65
Dianne Hackbornfdb19562014-07-11 16:03:36 -070066 void noteSyncStart(String name, int uid);
67 void noteSyncFinish(String name, int uid);
68 void noteJobStart(String name, int uid);
69 void noteJobFinish(String name, int uid);
Dianne Hackborn61659e52014-07-09 16:13:01 -070070
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -080071 void noteStartWakelock(int uid, int pid, String name, String historyName,
72 int type, boolean unimportantForLogging);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -070073 void noteStopWakelock(int uid, int pid, String name, String historyName, int type);
Mathias Agopian32123fde2010-07-22 22:19:43 -070074
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -080075 void noteStartWakelockFromSource(in WorkSource ws, int pid, String name, String historyName,
76 int type, boolean unimportantForLogging);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -070077 void noteChangeWakelockFromSource(in WorkSource ws, int pid, String name, String histyoryName,
78 int type, in WorkSource newWs, int newPid, String newName,
Dianne Hackborne5167ca2014-03-08 14:39:10 -080079 String newHistoryName, int newType, boolean newUnimportantForLogging);
Dianne Hackborncbefd8d2014-05-14 11:42:00 -070080 void noteStopWakelockFromSource(in WorkSource ws, int pid, String name, String historyName,
81 int type);
Dianne Hackbornd0db6f02016-07-18 14:14:20 -070082 void noteLongPartialWakelockStart(String name, String historyName, int uid);
83 void noteLongPartialWakelockFinish(String name, String historyName, int uid);
Dianne Hackborn7e9f4eb2010-09-10 18:43:00 -070084
Dianne Hackborna06de0f2012-12-11 16:34:47 -080085 void noteVibratorOn(int uid, long durationMillis);
86 void noteVibratorOff(int uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080087 void noteStartGps(int uid);
88 void noteStopGps(int uid);
Jeff Browne95c3cd2014-05-02 16:59:26 -070089 void noteScreenState(int state);
Dianne Hackborn617f8772009-03-31 15:04:46 -070090 void noteScreenBrightness(int brightness);
Dianne Hackborn617f8772009-03-31 15:04:46 -070091 void noteUserActivity(int uid, int event);
Dianne Hackborn280a64e2015-07-13 14:48:08 -070092 void noteWakeUp(String reason, int reasonUid);
Jeff Browne95c3cd2014-05-02 16:59:26 -070093 void noteInteractive(boolean interactive);
Dianne Hackborn1e01d162014-12-04 17:46:42 -080094 void noteConnectivityChanged(int type, String extra);
Ruchi Kandoifa97fcf2016-05-13 15:10:39 -070095 void noteMobileRadioPowerState(int powerState, long timestampNs, int uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080096 void notePhoneOn();
97 void notePhoneOff();
Wink Savillee9b06d72009-05-18 21:47:50 -070098 void notePhoneSignalStrength(in SignalStrength signalStrength);
Dianne Hackborn627bba72009-03-24 22:32:56 -070099 void notePhoneDataConnectionState(int dataType, boolean hasData);
Amith Yamasanif37447b2009-10-08 18:28:01 -0700100 void notePhoneState(int phoneState);
Dianne Hackborn58e0eef2010-09-16 01:22:10 -0700101 void noteWifiOn();
102 void noteWifiOff();
103 void noteWifiRunning(in WorkSource ws);
104 void noteWifiRunningChanged(in WorkSource oldWs, in WorkSource newWs);
105 void noteWifiStopped(in WorkSource ws);
Dianne Hackbornca1bf212014-02-14 14:18:36 -0800106 void noteWifiState(int wifiState, String accessPoint);
Dianne Hackborn3251b902014-06-20 14:40:53 -0700107 void noteWifiSupplicantStateChanged(int supplState, boolean failedAuth);
108 void noteWifiRssiChanged(int newRssi);
The Android Open Source Project10592532009-03-18 17:39:46 -0700109 void noteFullWifiLockAcquired(int uid);
110 void noteFullWifiLockReleased(int uid);
Nick Pelly6ccaa542012-06-15 15:22:47 -0700111 void noteWifiScanStarted(int uid);
112 void noteWifiScanStopped(int uid);
Robert Greenwalt5347bd42009-05-13 15:10:16 -0700113 void noteWifiMulticastEnabled(int uid);
114 void noteWifiMulticastDisabled(int uid);
Dianne Hackborn7e9f4eb2010-09-10 18:43:00 -0700115 void noteFullWifiLockAcquiredFromSource(in WorkSource ws);
116 void noteFullWifiLockReleasedFromSource(in WorkSource ws);
Nick Pelly6ccaa542012-06-15 15:22:47 -0700117 void noteWifiScanStartedFromSource(in WorkSource ws);
118 void noteWifiScanStoppedFromSource(in WorkSource ws);
Robert Greenwalta029ea12013-09-25 16:38:12 -0700119 void noteWifiBatchedScanStartedFromSource(in WorkSource ws, int csph);
120 void noteWifiBatchedScanStoppedFromSource(in WorkSource ws);
Dianne Hackborn7e9f4eb2010-09-10 18:43:00 -0700121 void noteWifiMulticastEnabledFromSource(in WorkSource ws);
122 void noteWifiMulticastDisabledFromSource(in WorkSource ws);
Adam Lesinski5f056f62016-07-14 16:56:08 -0700123 void noteWifiRadioPowerState(int powerState, long timestampNs, int uid);
Jeff Sharkey1059c3c2011-10-04 16:54:49 -0700124 void noteNetworkInterfaceType(String iface, int type);
Jeff Sharkey7a1c3fc2013-06-04 12:29:00 -0700125 void noteNetworkStatsEnabled();
Dianne Hackborn08c47a52015-10-15 12:38:14 -0700126 void noteDeviceIdleMode(int mode, String activeReason, int activeUid);
Adam Lesinski926969b2016-04-28 17:31:12 -0700127 void setBatteryState(int status, int health, int plugType, int level, int temp, int volt,
Adam Lesinski041d9172016-12-12 12:03:56 -0800128 int chargeUAh, int chargeFullUAh);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800129 long getAwakeTimeBattery();
130 long getAwakeTimePlugged();
Adam Lesinski6771d622016-01-15 18:14:47 -0800131
Bookatzb1f04f32017-05-19 13:57:32 -0700132 void noteBleScanStarted(in WorkSource ws, boolean isUnoptimized);
Bookatz20e22f62017-07-11 16:49:17 -0700133 void noteBleScanStopped(in WorkSource ws, boolean isUnoptimized);
Adam Lesinski9f55cc72016-01-27 20:42:14 -0800134 void noteResetBleScan();
Bookatz4ebc0642017-05-11 12:21:19 -0700135 void noteBleScanResults(in WorkSource ws, int numNewResults);
Joe Onorato713fec82016-03-04 10:34:02 -0800136
137 HealthStatsParceler takeUidSnapshot(int uid);
138 HealthStatsParceler[] takeUidSnapshots(in int[] uid);
Adam Lesinski010bf372016-04-11 12:18:18 -0700139
140 oneway void noteBluetoothControllerActivity(in BluetoothActivityEnergyInfo info);
141 oneway void noteModemControllerActivity(in ModemActivityInfo info);
142 oneway void noteWifiControllerActivity(in WifiActivityEnergyInfo info);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800143}