blob: 4b20a53ba3ac0b53d8e64ab456b80a886a35c39c [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 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;
18
19import com.android.internal.app.IBatteryStats;
20import com.android.server.am.BatteryStatsService;
21
22import android.app.ActivityManagerNative;
23import android.content.ContentResolver;
24import android.content.Context;
25import android.content.Intent;
26import android.content.pm.PackageManager;
27import android.os.BatteryManager;
28import android.os.Binder;
Dianne Hackborn8bdf5932010-10-15 12:54:40 -070029import android.os.FileUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030import android.os.IBinder;
Dan Egnor18e93962010-02-10 19:27:58 -080031import android.os.DropBoxManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032import android.os.RemoteException;
33import android.os.ServiceManager;
34import android.os.SystemClock;
35import android.os.UEventObserver;
Dianne Hackborn5ac72a22012-08-29 18:32:08 -070036import android.os.UserHandle;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037import android.provider.Settings;
38import android.util.EventLog;
Joe Onorato8a9b2202010-02-26 18:56:32 -080039import android.util.Slog;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040
41import java.io.File;
42import java.io.FileDescriptor;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043import java.io.FileOutputStream;
44import java.io.IOException;
45import java.io.PrintWriter;
46
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080047
48/**
49 * <p>BatteryService monitors the charging status, and charge level of the device
50 * battery. When these values change this service broadcasts the new values
51 * to all {@link android.content.BroadcastReceiver IntentReceivers} that are
52 * watching the {@link android.content.Intent#ACTION_BATTERY_CHANGED
53 * BATTERY_CHANGED} action.</p>
54 * <p>The new values are stored in the Intent data and can be retrieved by
55 * calling {@link android.content.Intent#getExtra Intent.getExtra} with the
56 * following keys:</p>
57 * <p>&quot;scale&quot; - int, the maximum value for the charge level</p>
58 * <p>&quot;level&quot; - int, charge level, from 0 through &quot;scale&quot; inclusive</p>
59 * <p>&quot;status&quot; - String, the current charging status.<br />
60 * <p>&quot;health&quot; - String, the current battery health.<br />
61 * <p>&quot;present&quot; - boolean, true if the battery is present<br />
62 * <p>&quot;icon-small&quot; - int, suggested small icon to use for this state</p>
63 * <p>&quot;plugged&quot; - int, 0 if the device is not plugged in; 1 if plugged
64 * into an AC power adapter; 2 if plugged in via USB.</p>
65 * <p>&quot;voltage&quot; - int, current battery voltage in millivolts</p>
66 * <p>&quot;temperature&quot; - int, current battery temperature in tenths of
67 * a degree Centigrade</p>
68 * <p>&quot;technology&quot; - String, the type of battery installed, e.g. "Li-ion"</p>
69 */
Jeff Browna4d82042012-10-02 19:11:19 -070070public final class BatteryService extends Binder {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080071 private static final String TAG = BatteryService.class.getSimpleName();
Doug Zongkerab5c49c2009-12-04 10:31:43 -080072
Jeff Browna4d82042012-10-02 19:11:19 -070073 private static final boolean DEBUG = false;
Doug Zongkerab5c49c2009-12-04 10:31:43 -080074
Jeff Browna4d82042012-10-02 19:11:19 -070075 private static final int BATTERY_SCALE = 100; // battery capacity is a percentage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080076
77 // Used locally for determining when to make a last ditch effort to log
78 // discharge stats before the device dies.
Joe Onorato4ca7f1e2010-10-27 15:32:23 -070079 private int mCriticalBatteryLevel;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080080
81 private static final int DUMP_MAX_LENGTH = 24 * 1024;
Dianne Hackborn6447ca32009-04-07 19:50:08 -070082 private static final String[] DUMPSYS_ARGS = new String[] { "--checkin", "-u" };
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080083 private static final String BATTERY_STATS_SERVICE_NAME = "batteryinfo";
Doug Zongkerab5c49c2009-12-04 10:31:43 -080084
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085 private static final String DUMPSYS_DATA_PATH = "/data/system/";
86
87 // This should probably be exposed in the API, though it's not critical
88 private static final int BATTERY_PLUGGED_NONE = 0;
89
90 private final Context mContext;
91 private final IBatteryStats mBatteryStats;
Doug Zongkerab5c49c2009-12-04 10:31:43 -080092
Jeff Browna4d82042012-10-02 19:11:19 -070093 private final Object mLock = new Object();
94
95 /* Begin native fields: All of these fields are set by native code. */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080096 private boolean mAcOnline;
97 private boolean mUsbOnline;
Brian Muramatsu37a37f42012-08-14 15:21:02 -070098 private boolean mWirelessOnline;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080099 private int mBatteryStatus;
100 private int mBatteryHealth;
101 private boolean mBatteryPresent;
102 private int mBatteryLevel;
103 private int mBatteryVoltage;
104 private int mBatteryTemperature;
105 private String mBatteryTechnology;
106 private boolean mBatteryLevelCritical;
Jeff Browna4d82042012-10-02 19:11:19 -0700107 /* End native fields. */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800108
109 private int mLastBatteryStatus;
110 private int mLastBatteryHealth;
111 private boolean mLastBatteryPresent;
112 private int mLastBatteryLevel;
113 private int mLastBatteryVoltage;
114 private int mLastBatteryTemperature;
115 private boolean mLastBatteryLevelCritical;
Jeff Browna4d82042012-10-02 19:11:19 -0700116
117 private int mInvalidCharger;
Joe Onorato4ca7f1e2010-10-27 15:32:23 -0700118 private int mLastInvalidCharger;
Mike Lockwoodd81b1f42009-09-25 09:32:19 -0400119
120 private int mLowBatteryWarningLevel;
121 private int mLowBatteryCloseWarningLevel;
Brian Muramatsuf3c74f32012-08-31 15:14:48 -0700122 private int mShutdownBatteryTemperature;
Mike Lockwoodd81b1f42009-09-25 09:32:19 -0400123
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800124 private int mPlugType;
125 private int mLastPlugType = -1; // Extra state so we can detect first run
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800126
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800127 private long mDischargeStartTime;
128 private int mDischargeStartLevel;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800129
Joe Onoratode1b3592010-10-25 20:36:47 -0700130 private Led mLed;
131
Dianne Hackborn8ec5b832009-07-01 21:19:35 -0700132 private boolean mSentLowBatteryBroadcast = false;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800133
Jeff Browna4d82042012-10-02 19:11:19 -0700134 private native void native_update();
135
Joe Onoratode1b3592010-10-25 20:36:47 -0700136 public BatteryService(Context context, LightsService lights) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800137 mContext = context;
Joe Onoratode1b3592010-10-25 20:36:47 -0700138 mLed = new Led(context, lights);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800139 mBatteryStats = BatteryStatsService.getService();
140
Joe Onorato4ca7f1e2010-10-27 15:32:23 -0700141 mCriticalBatteryLevel = mContext.getResources().getInteger(
142 com.android.internal.R.integer.config_criticalBatteryWarningLevel);
Mike Lockwoodd81b1f42009-09-25 09:32:19 -0400143 mLowBatteryWarningLevel = mContext.getResources().getInteger(
144 com.android.internal.R.integer.config_lowBatteryWarningLevel);
145 mLowBatteryCloseWarningLevel = mContext.getResources().getInteger(
146 com.android.internal.R.integer.config_lowBatteryCloseWarningLevel);
Brian Muramatsuf3c74f32012-08-31 15:14:48 -0700147 mShutdownBatteryTemperature = mContext.getResources().getInteger(
148 com.android.internal.R.integer.config_shutdownBatteryTemperature);
Mike Lockwoodd81b1f42009-09-25 09:32:19 -0400149
Mike Lockwooddeff9c82010-09-04 10:29:17 -0400150 mPowerSupplyObserver.startObserving("SUBSYSTEM=power_supply");
151
152 // watch for invalid charger messages if the invalid_charger switch exists
153 if (new File("/sys/devices/virtual/switch/invalid_charger/state").exists()) {
Jeff Browna4d82042012-10-02 19:11:19 -0700154 mInvalidChargerObserver.startObserving(
155 "DEVPATH=/devices/virtual/switch/invalid_charger");
Mike Lockwooddeff9c82010-09-04 10:29:17 -0400156 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800157
158 // set initial status
Jeff Browna4d82042012-10-02 19:11:19 -0700159 synchronized (mLock) {
160 updateLocked();
161 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800162 }
163
Jeff Browna4d82042012-10-02 19:11:19 -0700164 void systemReady() {
165 // check our power situation now that it is safe to display the shutdown dialog.
166 synchronized (mLock) {
167 shutdownIfNoPowerLocked();
168 shutdownIfOverTempLocked();
169 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800170 }
171
Jeff Browna4d82042012-10-02 19:11:19 -0700172 /**
173 * Returns true if the device is plugged into any of the specified plug types.
174 */
175 public boolean isPowered(int plugTypeSet) {
176 synchronized (mLock) {
177 return isPoweredLocked(plugTypeSet);
178 }
179 }
180
181 private boolean isPoweredLocked(int plugTypeSet) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800182 // assume we are powered if battery state is unknown so
183 // the "stay on while plugged in" option will work.
184 if (mBatteryStatus == BatteryManager.BATTERY_STATUS_UNKNOWN) {
185 return true;
186 }
Jeff Browna4d82042012-10-02 19:11:19 -0700187 if ((plugTypeSet & BatteryManager.BATTERY_PLUGGED_AC) != 0 && mAcOnline) {
188 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800189 }
Jeff Browna4d82042012-10-02 19:11:19 -0700190 if ((plugTypeSet & BatteryManager.BATTERY_PLUGGED_USB) != 0 && mUsbOnline) {
191 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800192 }
Jeff Browna4d82042012-10-02 19:11:19 -0700193 if ((plugTypeSet & BatteryManager.BATTERY_PLUGGED_WIRELESS) != 0 && mWirelessOnline) {
194 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800195 }
Jeff Browna4d82042012-10-02 19:11:19 -0700196 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800197 }
198
Jeff Browna4d82042012-10-02 19:11:19 -0700199 /**
200 * Returns battery level as a percentage.
201 */
202 public int getBatteryLevel() {
203 synchronized (mLock) {
204 return mBatteryLevel;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800205 }
Jeff Browna4d82042012-10-02 19:11:19 -0700206 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800207
Jeff Browna4d82042012-10-02 19:11:19 -0700208 /**
209 * Returns true if battery level is below the first warning threshold.
210 */
211 public boolean isBatteryLow() {
212 synchronized (mLock) {
213 return mBatteryPresent && mBatteryLevel <= mLowBatteryWarningLevel;
Mike Lockwooddeff9c82010-09-04 10:29:17 -0400214 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800215 }
216
Jeff Browna4d82042012-10-02 19:11:19 -0700217 private void shutdownIfNoPowerLocked() {
Mike Lockwood07a500f2009-08-12 09:56:44 -0400218 // shut down gracefully if our battery is critically low and we are not powered.
219 // wait until the system has booted before attempting to display the shutdown dialog.
Jeff Browna4d82042012-10-02 19:11:19 -0700220 if (mBatteryLevel == 0 && !isPoweredLocked(BatteryManager.BATTERY_PLUGGED_ANY)
221 && ActivityManagerNative.isSystemReady()) {
Mike Lockwood07a500f2009-08-12 09:56:44 -0400222 Intent intent = new Intent(Intent.ACTION_REQUEST_SHUTDOWN);
223 intent.putExtra(Intent.EXTRA_KEY_CONFIRM, false);
224 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
225 mContext.startActivity(intent);
226 }
227 }
228
Jeff Browna4d82042012-10-02 19:11:19 -0700229 private void shutdownIfOverTempLocked() {
Brian Muramatsuf3c74f32012-08-31 15:14:48 -0700230 // shut down gracefully if temperature is too high (> 68.0C by default)
231 // wait until the system has booted before attempting to display the
232 // shutdown dialog.
233 if (mBatteryTemperature > mShutdownBatteryTemperature
234 && ActivityManagerNative.isSystemReady()) {
Eric Olsen6a362a92010-03-26 15:38:41 -0700235 Intent intent = new Intent(Intent.ACTION_REQUEST_SHUTDOWN);
236 intent.putExtra(Intent.EXTRA_KEY_CONFIRM, false);
237 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
238 mContext.startActivity(intent);
239 }
240 }
241
Jeff Browna4d82042012-10-02 19:11:19 -0700242 private void updateLocked() {
243 // Update the values of mAcOnline, et. all.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800244 native_update();
Jeff Browna4d82042012-10-02 19:11:19 -0700245
246 // Process the new values.
247 processValuesLocked();
Joe Onorato4ca7f1e2010-10-27 15:32:23 -0700248 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800249
Jeff Browna4d82042012-10-02 19:11:19 -0700250 private void processValuesLocked() {
The Android Open Source Project10592532009-03-18 17:39:46 -0700251 boolean logOutlier = false;
252 long dischargeDuration = 0;
Joe Onoratoa7e4cf9b2009-07-28 18:18:20 -0700253
Jeff Browna4d82042012-10-02 19:11:19 -0700254 mBatteryLevelCritical = (mBatteryLevel <= mCriticalBatteryLevel);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800255 if (mAcOnline) {
256 mPlugType = BatteryManager.BATTERY_PLUGGED_AC;
257 } else if (mUsbOnline) {
258 mPlugType = BatteryManager.BATTERY_PLUGGED_USB;
Brian Muramatsu37a37f42012-08-14 15:21:02 -0700259 } else if (mWirelessOnline) {
260 mPlugType = BatteryManager.BATTERY_PLUGGED_WIRELESS;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800261 } else {
262 mPlugType = BATTERY_PLUGGED_NONE;
263 }
Brian Muramatsuf3c74f32012-08-31 15:14:48 -0700264
Jeff Browna4d82042012-10-02 19:11:19 -0700265 if (DEBUG) {
266 Slog.d(TAG, "Processing new values: "
267 + "mAcOnline=" + mAcOnline
268 + ", mUsbOnline=" + mUsbOnline
269 + ", mWirelessOnline=" + mWirelessOnline
270 + ", mBatteryStatus=" + mBatteryStatus
271 + ", mBatteryHealth=" + mBatteryHealth
272 + ", mBatteryPresent=" + mBatteryPresent
273 + ", mBatteryLevel=" + mBatteryLevel
274 + ", mBatteryTechnology=" + mBatteryTechnology
275 + ", mBatteryVoltage=" + mBatteryVoltage
276 + ", mBatteryTemperature=" + mBatteryTemperature
277 + ", mBatteryLevelCritical=" + mBatteryLevelCritical
278 + ", mPlugType=" + mPlugType);
279 }
280
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700281 // Let the battery stats keep track of the current level.
282 try {
283 mBatteryStats.setBatteryState(mBatteryStatus, mBatteryHealth,
284 mPlugType, mBatteryLevel, mBatteryTemperature,
285 mBatteryVoltage);
286 } catch (RemoteException e) {
287 // Should never happen.
288 }
Brian Muramatsuf3c74f32012-08-31 15:14:48 -0700289
Jeff Browna4d82042012-10-02 19:11:19 -0700290 shutdownIfNoPowerLocked();
291 shutdownIfOverTempLocked();
Dianne Hackborn6b7b4842010-06-14 17:17:44 -0700292
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800293 if (mBatteryStatus != mLastBatteryStatus ||
294 mBatteryHealth != mLastBatteryHealth ||
295 mBatteryPresent != mLastBatteryPresent ||
296 mBatteryLevel != mLastBatteryLevel ||
297 mPlugType != mLastPlugType ||
298 mBatteryVoltage != mLastBatteryVoltage ||
Mike Lockwooddeff9c82010-09-04 10:29:17 -0400299 mBatteryTemperature != mLastBatteryTemperature ||
300 mInvalidCharger != mLastInvalidCharger) {
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800301
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800302 if (mPlugType != mLastPlugType) {
303 if (mLastPlugType == BATTERY_PLUGGED_NONE) {
304 // discharging -> charging
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800305
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800306 // There's no value in this data unless we've discharged at least once and the
307 // battery level has changed; so don't log until it does.
308 if (mDischargeStartTime != 0 && mDischargeStartLevel != mBatteryLevel) {
The Android Open Source Project10592532009-03-18 17:39:46 -0700309 dischargeDuration = SystemClock.elapsedRealtime() - mDischargeStartTime;
310 logOutlier = true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800311 EventLog.writeEvent(EventLogTags.BATTERY_DISCHARGE, dischargeDuration,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800312 mDischargeStartLevel, mBatteryLevel);
313 // make sure we see a discharge event before logging again
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800314 mDischargeStartTime = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800315 }
316 } else if (mPlugType == BATTERY_PLUGGED_NONE) {
317 // charging -> discharging or we just powered up
318 mDischargeStartTime = SystemClock.elapsedRealtime();
319 mDischargeStartLevel = mBatteryLevel;
320 }
321 }
322 if (mBatteryStatus != mLastBatteryStatus ||
323 mBatteryHealth != mLastBatteryHealth ||
324 mBatteryPresent != mLastBatteryPresent ||
325 mPlugType != mLastPlugType) {
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800326 EventLog.writeEvent(EventLogTags.BATTERY_STATUS,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800327 mBatteryStatus, mBatteryHealth, mBatteryPresent ? 1 : 0,
328 mPlugType, mBatteryTechnology);
329 }
330 if (mBatteryLevel != mLastBatteryLevel ||
331 mBatteryVoltage != mLastBatteryVoltage ||
332 mBatteryTemperature != mLastBatteryTemperature) {
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800333 EventLog.writeEvent(EventLogTags.BATTERY_LEVEL,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800334 mBatteryLevel, mBatteryVoltage, mBatteryTemperature);
335 }
336 if (mBatteryLevelCritical && !mLastBatteryLevelCritical &&
337 mPlugType == BATTERY_PLUGGED_NONE) {
338 // We want to make sure we log discharge cycle outliers
339 // if the battery is about to die.
The Android Open Source Project10592532009-03-18 17:39:46 -0700340 dischargeDuration = SystemClock.elapsedRealtime() - mDischargeStartTime;
341 logOutlier = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800342 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800343
Dianne Hackborn99f7eb452009-09-22 17:27:53 -0700344 final boolean plugged = mPlugType != BATTERY_PLUGGED_NONE;
345 final boolean oldPlugged = mLastPlugType != BATTERY_PLUGGED_NONE;
346
347 /* The ACTION_BATTERY_LOW broadcast is sent in these situations:
Mike Lockwoodd81b1f42009-09-25 09:32:19 -0400348 * - is just un-plugged (previously was plugged) and battery level is
349 * less than or equal to WARNING, or
350 * - is not plugged and battery level falls to WARNING boundary
351 * (becomes <= mLowBatteryWarningLevel).
Dianne Hackborn99f7eb452009-09-22 17:27:53 -0700352 */
353 final boolean sendBatteryLow = !plugged
Joe Onoratode1b3592010-10-25 20:36:47 -0700354 && mBatteryStatus != BatteryManager.BATTERY_STATUS_UNKNOWN
355 && mBatteryLevel <= mLowBatteryWarningLevel
356 && (oldPlugged || mLastBatteryLevel > mLowBatteryWarningLevel);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800357
Jeff Browna4d82042012-10-02 19:11:19 -0700358 sendIntentLocked();
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800359
Christopher Tate06ba5542009-04-09 16:03:56 -0700360 // Separate broadcast is sent for power connected / not connected
361 // since the standard intent will not wake any applications and some
362 // applications may want to have smart behavior based on this.
Christopher Tate93dc9fe2009-07-16 13:25:49 -0700363 Intent statusIntent = new Intent();
364 statusIntent.setFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Christopher Tate06ba5542009-04-09 16:03:56 -0700365 if (mPlugType != 0 && mLastPlugType == 0) {
Christopher Tate93dc9fe2009-07-16 13:25:49 -0700366 statusIntent.setAction(Intent.ACTION_POWER_CONNECTED);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -0700367 mContext.sendBroadcastAsUser(statusIntent, UserHandle.ALL);
Christopher Tate06ba5542009-04-09 16:03:56 -0700368 }
369 else if (mPlugType == 0 && mLastPlugType != 0) {
Christopher Tate93dc9fe2009-07-16 13:25:49 -0700370 statusIntent.setAction(Intent.ACTION_POWER_DISCONNECTED);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -0700371 mContext.sendBroadcastAsUser(statusIntent, UserHandle.ALL);
Christopher Tate06ba5542009-04-09 16:03:56 -0700372 }
Mihai Predaa82842f2009-04-29 15:05:56 +0200373
Mihai Predaa82842f2009-04-29 15:05:56 +0200374 if (sendBatteryLow) {
Dianne Hackborn8ec5b832009-07-01 21:19:35 -0700375 mSentLowBatteryBroadcast = true;
Christopher Tate93dc9fe2009-07-16 13:25:49 -0700376 statusIntent.setAction(Intent.ACTION_BATTERY_LOW);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -0700377 mContext.sendBroadcastAsUser(statusIntent, UserHandle.ALL);
Mike Lockwoodd81b1f42009-09-25 09:32:19 -0400378 } else if (mSentLowBatteryBroadcast && mLastBatteryLevel >= mLowBatteryCloseWarningLevel) {
Dianne Hackborn8ec5b832009-07-01 21:19:35 -0700379 mSentLowBatteryBroadcast = false;
Christopher Tate93dc9fe2009-07-16 13:25:49 -0700380 statusIntent.setAction(Intent.ACTION_BATTERY_OKAY);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -0700381 mContext.sendBroadcastAsUser(statusIntent, UserHandle.ALL);
Mihai Predaa82842f2009-04-29 15:05:56 +0200382 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800383
Joe Onoratode1b3592010-10-25 20:36:47 -0700384 // Update the battery LED
385 mLed.updateLightsLocked();
386
The Android Open Source Project10592532009-03-18 17:39:46 -0700387 // This needs to be done after sendIntent() so that we get the lastest battery stats.
388 if (logOutlier && dischargeDuration != 0) {
Jeff Browna4d82042012-10-02 19:11:19 -0700389 logOutlierLocked(dischargeDuration);
The Android Open Source Project10592532009-03-18 17:39:46 -0700390 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800391
Dianne Hackborn99f7eb452009-09-22 17:27:53 -0700392 mLastBatteryStatus = mBatteryStatus;
393 mLastBatteryHealth = mBatteryHealth;
394 mLastBatteryPresent = mBatteryPresent;
395 mLastBatteryLevel = mBatteryLevel;
396 mLastPlugType = mPlugType;
397 mLastBatteryVoltage = mBatteryVoltage;
398 mLastBatteryTemperature = mBatteryTemperature;
399 mLastBatteryLevelCritical = mBatteryLevelCritical;
Mike Lockwooddeff9c82010-09-04 10:29:17 -0400400 mLastInvalidCharger = mInvalidCharger;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800401 }
402 }
403
Jeff Browna4d82042012-10-02 19:11:19 -0700404 private void sendIntentLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800405 // Pack up the values and broadcast them to everyone
406 Intent intent = new Intent(Intent.ACTION_BATTERY_CHANGED);
Dianne Hackborn1c633fc2009-12-08 19:45:14 -0800407 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY
408 | Intent.FLAG_RECEIVER_REPLACE_PENDING);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800409
Jeff Browna4d82042012-10-02 19:11:19 -0700410 int icon = getIconLocked(mBatteryLevel);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800411
Dianne Hackbornedd93162009-09-19 14:03:05 -0700412 intent.putExtra(BatteryManager.EXTRA_STATUS, mBatteryStatus);
413 intent.putExtra(BatteryManager.EXTRA_HEALTH, mBatteryHealth);
414 intent.putExtra(BatteryManager.EXTRA_PRESENT, mBatteryPresent);
415 intent.putExtra(BatteryManager.EXTRA_LEVEL, mBatteryLevel);
416 intent.putExtra(BatteryManager.EXTRA_SCALE, BATTERY_SCALE);
417 intent.putExtra(BatteryManager.EXTRA_ICON_SMALL, icon);
418 intent.putExtra(BatteryManager.EXTRA_PLUGGED, mPlugType);
419 intent.putExtra(BatteryManager.EXTRA_VOLTAGE, mBatteryVoltage);
420 intent.putExtra(BatteryManager.EXTRA_TEMPERATURE, mBatteryTemperature);
421 intent.putExtra(BatteryManager.EXTRA_TECHNOLOGY, mBatteryTechnology);
Mike Lockwooddeff9c82010-09-04 10:29:17 -0400422 intent.putExtra(BatteryManager.EXTRA_INVALID_CHARGER, mInvalidCharger);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800423
Jeff Browna4d82042012-10-02 19:11:19 -0700424 if (DEBUG) {
425 Slog.d(TAG, "Sending ACTION_BATTERY_CHANGED. level:" + mBatteryLevel +
426 ", scale:" + BATTERY_SCALE + ", status:" + mBatteryStatus +
427 ", health:" + mBatteryHealth + ", present:" + mBatteryPresent +
428 ", voltage: " + mBatteryVoltage +
429 ", temperature: " + mBatteryTemperature +
430 ", technology: " + mBatteryTechnology +
431 ", AC powered:" + mAcOnline + ", USB powered:" + mUsbOnline +
432 ", Wireless powered:" + mWirelessOnline +
433 ", icon:" + icon + ", invalid charger:" + mInvalidCharger);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800434 }
435
Dianne Hackborn5ac72a22012-08-29 18:32:08 -0700436 ActivityManagerNative.broadcastStickyIntent(intent, null, UserHandle.USER_ALL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800437 }
438
Jeff Browna4d82042012-10-02 19:11:19 -0700439 private void logBatteryStatsLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800440 IBinder batteryInfoService = ServiceManager.getService(BATTERY_STATS_SERVICE_NAME);
Dan Egnor18e93962010-02-10 19:27:58 -0800441 if (batteryInfoService == null) return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800442
Dan Egnor18e93962010-02-10 19:27:58 -0800443 DropBoxManager db = (DropBoxManager) mContext.getSystemService(Context.DROPBOX_SERVICE);
444 if (db == null || !db.isTagEnabled("BATTERY_DISCHARGE_INFO")) return;
445
446 File dumpFile = null;
447 FileOutputStream dumpStream = null;
448 try {
449 // dump the service to a file
450 dumpFile = new File(DUMPSYS_DATA_PATH + BATTERY_STATS_SERVICE_NAME + ".dump");
451 dumpStream = new FileOutputStream(dumpFile);
452 batteryInfoService.dump(dumpStream.getFD(), DUMPSYS_ARGS);
Dianne Hackborn8bdf5932010-10-15 12:54:40 -0700453 FileUtils.sync(dumpStream);
Dan Egnor18e93962010-02-10 19:27:58 -0800454
455 // add dump file to drop box
456 db.addFile("BATTERY_DISCHARGE_INFO", dumpFile, DropBoxManager.IS_TEXT);
457 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800458 Slog.e(TAG, "failed to dump battery service", e);
Dan Egnor18e93962010-02-10 19:27:58 -0800459 } catch (IOException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800460 Slog.e(TAG, "failed to write dumpsys file", e);
Dan Egnor18e93962010-02-10 19:27:58 -0800461 } finally {
462 // make sure we clean up
463 if (dumpStream != null) {
464 try {
465 dumpStream.close();
466 } catch (IOException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800467 Slog.e(TAG, "failed to close dumpsys output stream");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800468 }
Dan Egnor18e93962010-02-10 19:27:58 -0800469 }
470 if (dumpFile != null && !dumpFile.delete()) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800471 Slog.e(TAG, "failed to delete temporary dumpsys file: "
Dan Egnor18e93962010-02-10 19:27:58 -0800472 + dumpFile.getAbsolutePath());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800473 }
474 }
475 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800476
Jeff Browna4d82042012-10-02 19:11:19 -0700477 private void logOutlierLocked(long duration) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800478 ContentResolver cr = mContext.getContentResolver();
Jeff Sharkey625239a2012-09-26 22:03:49 -0700479 String dischargeThresholdString = Settings.Global.getString(cr,
480 Settings.Global.BATTERY_DISCHARGE_THRESHOLD);
481 String durationThresholdString = Settings.Global.getString(cr,
482 Settings.Global.BATTERY_DISCHARGE_DURATION_THRESHOLD);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800483
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800484 if (dischargeThresholdString != null && durationThresholdString != null) {
485 try {
486 long durationThreshold = Long.parseLong(durationThresholdString);
487 int dischargeThreshold = Integer.parseInt(dischargeThresholdString);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800488 if (duration <= durationThreshold &&
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800489 mDischargeStartLevel - mBatteryLevel >= dischargeThreshold) {
490 // If the discharge cycle is bad enough we want to know about it.
Jeff Browna4d82042012-10-02 19:11:19 -0700491 logBatteryStatsLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800492 }
Jeff Browna4d82042012-10-02 19:11:19 -0700493 if (DEBUG) Slog.v(TAG, "duration threshold: " + durationThreshold +
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800494 " discharge threshold: " + dischargeThreshold);
Jeff Browna4d82042012-10-02 19:11:19 -0700495 if (DEBUG) Slog.v(TAG, "duration: " + duration + " discharge: " +
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800496 (mDischargeStartLevel - mBatteryLevel));
497 } catch (NumberFormatException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800498 Slog.e(TAG, "Invalid DischargeThresholds GService string: " +
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800499 durationThresholdString + " or " + dischargeThresholdString);
500 return;
501 }
502 }
503 }
504
Jeff Browna4d82042012-10-02 19:11:19 -0700505 private int getIconLocked(int level) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800506 if (mBatteryStatus == BatteryManager.BATTERY_STATUS_CHARGING) {
507 return com.android.internal.R.drawable.stat_sys_battery_charge;
Joe Onorato794be402010-11-21 19:22:25 -0800508 } else if (mBatteryStatus == BatteryManager.BATTERY_STATUS_DISCHARGING) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800509 return com.android.internal.R.drawable.stat_sys_battery;
Joe Onorato794be402010-11-21 19:22:25 -0800510 } else if (mBatteryStatus == BatteryManager.BATTERY_STATUS_NOT_CHARGING
511 || mBatteryStatus == BatteryManager.BATTERY_STATUS_FULL) {
Jeff Browna4d82042012-10-02 19:11:19 -0700512 if (isPoweredLocked(BatteryManager.BATTERY_PLUGGED_ANY)
513 && mBatteryLevel >= 100) {
Joe Onorato794be402010-11-21 19:22:25 -0800514 return com.android.internal.R.drawable.stat_sys_battery_charge;
515 } else {
516 return com.android.internal.R.drawable.stat_sys_battery;
517 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800518 } else {
519 return com.android.internal.R.drawable.stat_sys_battery_unknown;
520 }
521 }
522
523 @Override
524 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
525 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
526 != PackageManager.PERMISSION_GRANTED) {
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800527
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800528 pw.println("Permission Denial: can't dump Battery service from from pid="
529 + Binder.getCallingPid()
530 + ", uid=" + Binder.getCallingUid());
531 return;
532 }
533
Jeff Browna4d82042012-10-02 19:11:19 -0700534 synchronized (mLock) {
535 if (args == null || args.length == 0 || "-a".equals(args[0])) {
Joe Onorato4ca7f1e2010-10-27 15:32:23 -0700536 pw.println("Current Battery Service state:");
537 pw.println(" AC powered: " + mAcOnline);
538 pw.println(" USB powered: " + mUsbOnline);
Brian Muramatsu37a37f42012-08-14 15:21:02 -0700539 pw.println(" Wireless powered: " + mWirelessOnline);
Joe Onorato4ca7f1e2010-10-27 15:32:23 -0700540 pw.println(" status: " + mBatteryStatus);
541 pw.println(" health: " + mBatteryHealth);
542 pw.println(" present: " + mBatteryPresent);
543 pw.println(" level: " + mBatteryLevel);
544 pw.println(" scale: " + BATTERY_SCALE);
545 pw.println(" voltage:" + mBatteryVoltage);
546 pw.println(" temperature: " + mBatteryTemperature);
547 pw.println(" technology: " + mBatteryTechnology);
Jeff Browna4d82042012-10-02 19:11:19 -0700548 } else if (false) {
549 // DO NOT SUBMIT WITH THIS TURNED ON
550 if (args.length == 3 && "set".equals(args[0])) {
551 String key = args[1];
552 String value = args[2];
553 try {
554 boolean update = true;
555 if ("ac".equals(key)) {
556 mAcOnline = Integer.parseInt(value) != 0;
557 } else if ("usb".equals(key)) {
558 mUsbOnline = Integer.parseInt(value) != 0;
559 } else if ("wireless".equals(key)) {
560 mWirelessOnline = Integer.parseInt(value) != 0;
561 } else if ("status".equals(key)) {
562 mBatteryStatus = Integer.parseInt(value);
563 } else if ("level".equals(key)) {
564 mBatteryLevel = Integer.parseInt(value);
565 } else if ("invalid".equals(key)) {
566 mInvalidCharger = Integer.parseInt(value);
567 } else {
568 update = false;
569 }
570 if (update) {
571 processValuesLocked();
572 }
573 } catch (NumberFormatException ex) {
574 pw.println("Bad value: " + value);
Joe Onorato4ca7f1e2010-10-27 15:32:23 -0700575 }
Joe Onorato4ca7f1e2010-10-27 15:32:23 -0700576 }
577 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800578 }
579 }
Joe Onoratode1b3592010-10-25 20:36:47 -0700580
Jeff Browna4d82042012-10-02 19:11:19 -0700581 private final UEventObserver mPowerSupplyObserver = new UEventObserver() {
582 @Override
583 public void onUEvent(UEventObserver.UEvent event) {
584 synchronized (mLock) {
585 updateLocked();
586 }
587 }
588 };
Joe Onoratode1b3592010-10-25 20:36:47 -0700589
Jeff Browna4d82042012-10-02 19:11:19 -0700590 private final UEventObserver mInvalidChargerObserver = new UEventObserver() {
591 @Override
592 public void onUEvent(UEventObserver.UEvent event) {
593 final int invalidCharger = "1".equals(event.get("SWITCH_STATE")) ? 1 : 0;
594 synchronized (mLock) {
595 if (mInvalidCharger != invalidCharger) {
596 mInvalidCharger = invalidCharger;
597 updateLocked();
598 }
599 }
600 }
601 };
Joe Onoratode1b3592010-10-25 20:36:47 -0700602
Jeff Browna4d82042012-10-02 19:11:19 -0700603 private final class Led {
604 private final LightsService.Light mBatteryLight;
Joe Onoratode1b3592010-10-25 20:36:47 -0700605
Jeff Browna4d82042012-10-02 19:11:19 -0700606 private final int mBatteryLowARGB;
607 private final int mBatteryMediumARGB;
608 private final int mBatteryFullARGB;
609 private final int mBatteryLedOn;
610 private final int mBatteryLedOff;
611
612 public Led(Context context, LightsService lights) {
Joe Onoratode1b3592010-10-25 20:36:47 -0700613 mBatteryLight = lights.getLight(LightsService.LIGHT_ID_BATTERY);
614
Jeff Browna4d82042012-10-02 19:11:19 -0700615 mBatteryLowARGB = context.getResources().getInteger(
Joe Onoratode1b3592010-10-25 20:36:47 -0700616 com.android.internal.R.integer.config_notificationsBatteryLowARGB);
Jeff Browna4d82042012-10-02 19:11:19 -0700617 mBatteryMediumARGB = context.getResources().getInteger(
Joe Onoratode1b3592010-10-25 20:36:47 -0700618 com.android.internal.R.integer.config_notificationsBatteryMediumARGB);
Jeff Browna4d82042012-10-02 19:11:19 -0700619 mBatteryFullARGB = context.getResources().getInteger(
Joe Onoratode1b3592010-10-25 20:36:47 -0700620 com.android.internal.R.integer.config_notificationsBatteryFullARGB);
Jeff Browna4d82042012-10-02 19:11:19 -0700621 mBatteryLedOn = context.getResources().getInteger(
Joe Onoratode1b3592010-10-25 20:36:47 -0700622 com.android.internal.R.integer.config_notificationsBatteryLedOn);
Jeff Browna4d82042012-10-02 19:11:19 -0700623 mBatteryLedOff = context.getResources().getInteger(
Joe Onoratode1b3592010-10-25 20:36:47 -0700624 com.android.internal.R.integer.config_notificationsBatteryLedOff);
625 }
626
627 /**
628 * Synchronize on BatteryService.
629 */
Jeff Browna4d82042012-10-02 19:11:19 -0700630 public void updateLightsLocked() {
Joe Onoratode1b3592010-10-25 20:36:47 -0700631 final int level = mBatteryLevel;
632 final int status = mBatteryStatus;
633 if (level < mLowBatteryWarningLevel) {
634 if (status == BatteryManager.BATTERY_STATUS_CHARGING) {
635 // Solid red when battery is charging
636 mBatteryLight.setColor(mBatteryLowARGB);
637 } else {
638 // Flash red when battery is low and not charging
639 mBatteryLight.setFlashing(mBatteryLowARGB, LightsService.LIGHT_FLASH_TIMED,
640 mBatteryLedOn, mBatteryLedOff);
641 }
642 } else if (status == BatteryManager.BATTERY_STATUS_CHARGING
643 || status == BatteryManager.BATTERY_STATUS_FULL) {
644 if (status == BatteryManager.BATTERY_STATUS_FULL || level >= 90) {
645 // Solid green when full or charging and nearly full
646 mBatteryLight.setColor(mBatteryFullARGB);
647 } else {
648 // Solid orange when charging and halfway full
649 mBatteryLight.setColor(mBatteryMediumARGB);
650 }
651 } else {
652 // No lights if not charging and not low
653 mBatteryLight.turnOff();
654 }
655 }
656 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800657}