blob: 314b7d5491ff0c4f043a6092b8cdf7bba674f6a0 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 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 android.os;
18
Dianne Hackborneb94fa72014-06-03 17:48:12 -070019import android.annotation.SdkConstant;
Jeff Brown0a571122014-08-21 21:50:43 -070020import android.annotation.SystemApi;
Jeff Brown96307042012-07-27 15:51:34 -070021import android.content.Context;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022import android.util.Log;
23
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024/**
Jeff Brown1244cda2012-06-19 16:44:46 -070025 * This class gives you control of the power state of the device.
26 *
27 * <p>
28 * <b>Device battery life will be significantly affected by the use of this API.</b>
29 * Do not acquire {@link WakeLock}s unless you really need them, use the minimum levels
30 * possible, and be sure to release them as soon as possible.
31 * </p><p>
32 * You can obtain an instance of this class by calling
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033 * {@link android.content.Context#getSystemService(java.lang.String) Context.getSystemService()}.
Jeff Brown1244cda2012-06-19 16:44:46 -070034 * </p><p>
35 * The primary API you'll use is {@link #newWakeLock(int, String) newWakeLock()}.
36 * This will create a {@link PowerManager.WakeLock} object. You can then use methods
37 * on the wake lock object to control the power state of the device.
38 * </p><p>
39 * In practice it's quite simple:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040 * {@samplecode
41 * PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
42 * PowerManager.WakeLock wl = pm.newWakeLock(PowerManager.SCREEN_DIM_WAKE_LOCK, "My Tag");
43 * wl.acquire();
44 * ..screen will stay on during this section..
45 * wl.release();
46 * }
Jeff Brown1244cda2012-06-19 16:44:46 -070047 * </p><p>
Jeff Brown96307042012-07-27 15:51:34 -070048 * The following wake lock levels are defined, with varying effects on system power.
49 * <i>These levels are mutually exclusive - you may only specify one of them.</i>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080050 *
Dirk Dougherty7b9a2882012-10-28 12:07:08 -070051 * <table>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052 * <tr><th>Flag Value</th>
53 * <th>CPU</th> <th>Screen</th> <th>Keyboard</th></tr>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054 *
Dirk Dougherty7b9a2882012-10-28 12:07:08 -070055 * <tr><td>{@link #PARTIAL_WAKE_LOCK}</td>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080056 * <td>On*</td> <td>Off</td> <td>Off</td>
57 * </tr>
58 *
Dirk Dougherty7b9a2882012-10-28 12:07:08 -070059 * <tr><td>{@link #SCREEN_DIM_WAKE_LOCK}</td>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080060 * <td>On</td> <td>Dim</td> <td>Off</td>
61 * </tr>
62 *
Dirk Dougherty7b9a2882012-10-28 12:07:08 -070063 * <tr><td>{@link #SCREEN_BRIGHT_WAKE_LOCK}</td>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080064 * <td>On</td> <td>Bright</td> <td>Off</td>
65 * </tr>
66 *
Dirk Dougherty7b9a2882012-10-28 12:07:08 -070067 * <tr><td>{@link #FULL_WAKE_LOCK}</td>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080068 * <td>On</td> <td>Bright</td> <td>Bright</td>
69 * </tr>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080070 * </table>
Jeff Brown1244cda2012-06-19 16:44:46 -070071 * </p><p>
72 * *<i>If you hold a partial wake lock, the CPU will continue to run, regardless of any
73 * display timeouts or the state of the screen and even after the user presses the power button.
74 * In all other wake locks, the CPU will run, but the user can still put the device to sleep
75 * using the power button.</i>
76 * </p><p>
77 * In addition, you can add two more flags, which affect behavior of the screen only.
Dirk Dougherty7b9a2882012-10-28 12:07:08 -070078 * <i>These flags have no effect when combined with a {@link #PARTIAL_WAKE_LOCK}.</i></p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080079 *
Dirk Dougherty7b9a2882012-10-28 12:07:08 -070080 * <table>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080081 * <tr><th>Flag Value</th> <th>Description</th></tr>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080082 *
Dirk Dougherty7b9a2882012-10-28 12:07:08 -070083 * <tr><td>{@link #ACQUIRE_CAUSES_WAKEUP}</td>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084 * <td>Normal wake locks don't actually turn on the illumination. Instead, they cause
85 * the illumination to remain on once it turns on (e.g. from user activity). This flag
86 * will force the screen and/or keyboard to turn on immediately, when the WakeLock is
87 * acquired. A typical use would be for notifications which are important for the user to
88 * see immediately.</td>
89 * </tr>
90 *
Dirk Dougherty7b9a2882012-10-28 12:07:08 -070091 * <tr><td>{@link #ON_AFTER_RELEASE}</td>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080092 * <td>If this flag is set, the user activity timer will be reset when the WakeLock is
93 * released, causing the illumination to remain on a bit longer. This can be used to
94 * reduce flicker if you are cycling between wake lock conditions.</td>
95 * </tr>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080096 * </table>
Dirk Dougherty7b9a2882012-10-28 12:07:08 -070097 * <p>
Kenny Rootd710fb52011-03-15 17:39:45 -070098 * Any application using a WakeLock must request the {@code android.permission.WAKE_LOCK}
Neil Fuller71fbb812015-11-30 09:51:33 +000099 * permission in an {@code <uses-permission>} element of the application's manifest.
Jeff Brown1244cda2012-06-19 16:44:46 -0700100 * </p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800101 */
Jeff Brown1244cda2012-06-19 16:44:46 -0700102public final class PowerManager {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800103 private static final String TAG = "PowerManager";
Jeff Brown1244cda2012-06-19 16:44:46 -0700104
Jeff Brown155fc702012-07-27 12:12:15 -0700105 /* NOTE: Wake lock levels were previously defined as a bit field, except that only a few
106 * combinations were actually supported so the bit field was removed. This explains
107 * why the numbering scheme is so odd. If adding a new wake lock level, any unused
108 * value can be used.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800109 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800110
111 /**
Jeff Brown1244cda2012-06-19 16:44:46 -0700112 * Wake lock level: Ensures that the CPU is running; the screen and keyboard
113 * backlight will be allowed to go off.
Jeff Brown155fc702012-07-27 12:12:15 -0700114 * <p>
115 * If the user presses the power button, then the screen will be turned off
116 * but the CPU will be kept on until all partial wake locks have been released.
Jeff Brown1244cda2012-06-19 16:44:46 -0700117 * </p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800118 */
Jeff Brown155fc702012-07-27 12:12:15 -0700119 public static final int PARTIAL_WAKE_LOCK = 0x00000001;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800120
121 /**
Jeff Brown155fc702012-07-27 12:12:15 -0700122 * Wake lock level: Ensures that the screen is on (but may be dimmed);
Jeff Brown1244cda2012-06-19 16:44:46 -0700123 * the keyboard backlight will be allowed to go off.
Jeff Brown155fc702012-07-27 12:12:15 -0700124 * <p>
125 * If the user presses the power button, then the {@link #SCREEN_DIM_WAKE_LOCK} will be
126 * implicitly released by the system, causing both the screen and the CPU to be turned off.
127 * Contrast with {@link #PARTIAL_WAKE_LOCK}.
128 * </p>
Jeff Brown1244cda2012-06-19 16:44:46 -0700129 *
Dianne Hackborn9567a662011-04-19 18:44:03 -0700130 * @deprecated Most applications should use
131 * {@link android.view.WindowManager.LayoutParams#FLAG_KEEP_SCREEN_ON} instead
132 * of this type of wake lock, as it will be correctly managed by the platform
133 * as the user moves between applications and doesn't require a special permission.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800134 */
Dianne Hackborn9567a662011-04-19 18:44:03 -0700135 @Deprecated
Jeff Brown155fc702012-07-27 12:12:15 -0700136 public static final int SCREEN_DIM_WAKE_LOCK = 0x00000006;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800137
138 /**
Jeff Brown155fc702012-07-27 12:12:15 -0700139 * Wake lock level: Ensures that the screen is on at full brightness;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800140 * the keyboard backlight will be allowed to go off.
Jeff Brown155fc702012-07-27 12:12:15 -0700141 * <p>
142 * If the user presses the power button, then the {@link #SCREEN_BRIGHT_WAKE_LOCK} will be
143 * implicitly released by the system, causing both the screen and the CPU to be turned off.
144 * Contrast with {@link #PARTIAL_WAKE_LOCK}.
145 * </p>
146 *
147 * @deprecated Most applications should use
148 * {@link android.view.WindowManager.LayoutParams#FLAG_KEEP_SCREEN_ON} instead
149 * of this type of wake lock, as it will be correctly managed by the platform
150 * as the user moves between applications and doesn't require a special permission.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800151 */
Jeff Brown155fc702012-07-27 12:12:15 -0700152 @Deprecated
153 public static final int SCREEN_BRIGHT_WAKE_LOCK = 0x0000000a;
154
155 /**
156 * Wake lock level: Ensures that the screen and keyboard backlight are on at
157 * full brightness.
158 * <p>
159 * If the user presses the power button, then the {@link #FULL_WAKE_LOCK} will be
160 * implicitly released by the system, causing both the screen and the CPU to be turned off.
161 * Contrast with {@link #PARTIAL_WAKE_LOCK}.
162 * </p>
163 *
164 * @deprecated Most applications should use
165 * {@link android.view.WindowManager.LayoutParams#FLAG_KEEP_SCREEN_ON} instead
166 * of this type of wake lock, as it will be correctly managed by the platform
167 * as the user moves between applications and doesn't require a special permission.
168 */
169 @Deprecated
170 public static final int FULL_WAKE_LOCK = 0x0000001a;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800171
172 /**
Jeff Brown1244cda2012-06-19 16:44:46 -0700173 * Wake lock level: Turns the screen off when the proximity sensor activates.
174 * <p>
Jeff Brown93cbbb22012-10-04 13:18:36 -0700175 * If the proximity sensor detects that an object is nearby, the screen turns off
176 * immediately. Shortly after the object moves away, the screen turns on again.
177 * </p><p>
178 * A proximity wake lock does not prevent the device from falling asleep
179 * unlike {@link #FULL_WAKE_LOCK}, {@link #SCREEN_BRIGHT_WAKE_LOCK} and
180 * {@link #SCREEN_DIM_WAKE_LOCK}. If there is no user activity and no other
181 * wake locks are held, then the device will fall asleep (and lock) as usual.
182 * However, the device will not fall asleep while the screen has been turned off
183 * by the proximity sensor because it effectively counts as ongoing user activity.
184 * </p><p>
Jeff Brown96307042012-07-27 15:51:34 -0700185 * Since not all devices have proximity sensors, use {@link #isWakeLockLevelSupported}
Jeff Brown1244cda2012-06-19 16:44:46 -0700186 * to determine whether this wake lock level is supported.
Craig Mautner6edb6db2012-11-20 18:21:12 -0800187 * </p><p>
188 * Cannot be used with {@link #ACQUIRE_CAUSES_WAKEUP}.
Jeff Brown1244cda2012-06-19 16:44:46 -0700189 * </p>
Mike Lockwoodbc706a02009-07-27 13:50:57 -0700190 */
Jeff Brown155fc702012-07-27 12:12:15 -0700191 public static final int PROXIMITY_SCREEN_OFF_WAKE_LOCK = 0x00000020;
Mike Lockwoodbc706a02009-07-27 13:50:57 -0700192
193 /**
Jeff Brown26875502014-01-30 21:47:47 -0800194 * Wake lock level: Put the screen in a low power state and allow the CPU to suspend
195 * if no other wake locks are held.
196 * <p>
197 * This is used by the dream manager to implement doze mode. It currently
198 * has no effect unless the power manager is in the dozing state.
Jeff Brown72671fb2014-08-21 21:41:09 -0700199 * </p><p>
200 * Requires the {@link android.Manifest.permission#DEVICE_POWER} permission.
Jeff Brown26875502014-01-30 21:47:47 -0800201 * </p>
202 *
203 * {@hide}
204 */
205 public static final int DOZE_WAKE_LOCK = 0x00000040;
206
207 /**
Jeff Brownc2932a12014-11-20 18:04:05 -0800208 * Wake lock level: Keep the device awake enough to allow drawing to occur.
209 * <p>
210 * This is used by the window manager to allow applications to draw while the
211 * system is dozing. It currently has no effect unless the power manager is in
212 * the dozing state.
213 * </p><p>
214 * Requires the {@link android.Manifest.permission#DEVICE_POWER} permission.
215 * </p>
216 *
217 * {@hide}
218 */
219 public static final int DRAW_WAKE_LOCK = 0x00000080;
220
221 /**
Ruchi Kandoi0abc0012016-01-12 14:39:24 -0800222 * Wake lock level: Enables Sustained Performance Mode.
223 * <p>
224 * This is used by Gaming and VR applications to ensure the device provides
225 * will provide consistent performance over a large amount of time.
226 * </p>
227 */
228 public static final int SUSTAINED_PERFORMANCE_WAKE_LOCK = 0x00000100;
229
230 /**
Jeff Brown155fc702012-07-27 12:12:15 -0700231 * Mask for the wake lock level component of a combined wake lock level and flags integer.
Mike Lockwood0e39ea82009-11-18 15:37:10 -0500232 *
Jeff Brown155fc702012-07-27 12:12:15 -0700233 * @hide
Mike Lockwood0e39ea82009-11-18 15:37:10 -0500234 */
Jeff Brown155fc702012-07-27 12:12:15 -0700235 public static final int WAKE_LOCK_LEVEL_MASK = 0x0000ffff;
Mike Lockwood0e39ea82009-11-18 15:37:10 -0500236
237 /**
Jeff Brown1244cda2012-06-19 16:44:46 -0700238 * Wake lock flag: Turn the screen on when the wake lock is acquired.
239 * <p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800240 * Normally wake locks don't actually wake the device, they just cause
Jeff Brown1244cda2012-06-19 16:44:46 -0700241 * the screen to remain on once it's already on. Think of the video player
242 * application as the normal behavior. Notifications that pop up and want
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800243 * the device to be on are the exception; use this flag to be like them.
Jeff Brown1244cda2012-06-19 16:44:46 -0700244 * </p><p>
245 * Cannot be used with {@link #PARTIAL_WAKE_LOCK}.
246 * </p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800247 */
Jeff Brown155fc702012-07-27 12:12:15 -0700248 public static final int ACQUIRE_CAUSES_WAKEUP = 0x10000000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800249
250 /**
Jeff Brown1244cda2012-06-19 16:44:46 -0700251 * Wake lock flag: When this wake lock is released, poke the user activity timer
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800252 * so the screen stays on for a little longer.
253 * <p>
Jeff Brown1244cda2012-06-19 16:44:46 -0700254 * Will not turn the screen on if it is not already on.
255 * See {@link #ACQUIRE_CAUSES_WAKEUP} if you want that.
256 * </p><p>
257 * Cannot be used with {@link #PARTIAL_WAKE_LOCK}.
258 * </p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800259 */
Jeff Brown155fc702012-07-27 12:12:15 -0700260 public static final int ON_AFTER_RELEASE = 0x20000000;
261
262 /**
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800263 * Wake lock flag: This wake lock is not important for logging events. If a later
264 * wake lock is acquired that is important, it will be considered the one to log.
265 * @hide
266 */
267 public static final int UNIMPORTANT_FOR_LOGGING = 0x40000000;
268
269 /**
Jeff Browna71f03c2014-08-21 18:01:51 -0700270 * Flag for {@link WakeLock#release WakeLock.release(int)}: Defer releasing a
271 * {@link #PROXIMITY_SCREEN_OFF_WAKE_LOCK} wake lock until the proximity sensor
272 * indicates that an object is not in close proximity.
Jeff Brown155fc702012-07-27 12:12:15 -0700273 */
Michael Wright1208e272014-09-08 19:57:50 -0700274 public static final int RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY = 1;
Jeff Brown7304c342012-05-11 18:42:42 -0700275
276 /**
Jeff Brown7304c342012-05-11 18:42:42 -0700277 * Brightness value for fully on.
278 * @hide
279 */
280 public static final int BRIGHTNESS_ON = 255;
281
282 /**
Jeff Brown7304c342012-05-11 18:42:42 -0700283 * Brightness value for fully off.
284 * @hide
285 */
286 public static final int BRIGHTNESS_OFF = 0;
287
Jeff Brown970d4132014-07-19 11:33:47 -0700288 /**
289 * Brightness value for default policy handling by the system.
290 * @hide
291 */
292 public static final int BRIGHTNESS_DEFAULT = -1;
293
Jeff Brownb696de52012-07-27 15:38:50 -0700294 // Note: Be sure to update android.os.BatteryStats and PowerManager.h
295 // if adding or modifying user activity event constants.
296
297 /**
298 * User activity event type: Unspecified event type.
299 * @hide
300 */
Jeff Brown0a571122014-08-21 21:50:43 -0700301 @SystemApi
Jeff Brownb696de52012-07-27 15:38:50 -0700302 public static final int USER_ACTIVITY_EVENT_OTHER = 0;
303
304 /**
305 * User activity event type: Button or key pressed or released.
306 * @hide
307 */
Jeff Brown0a571122014-08-21 21:50:43 -0700308 @SystemApi
Jeff Brownb696de52012-07-27 15:38:50 -0700309 public static final int USER_ACTIVITY_EVENT_BUTTON = 1;
310
311 /**
312 * User activity event type: Touch down, move or up.
313 * @hide
314 */
Jeff Brown0a571122014-08-21 21:50:43 -0700315 @SystemApi
Jeff Brownb696de52012-07-27 15:38:50 -0700316 public static final int USER_ACTIVITY_EVENT_TOUCH = 2;
317
Jeff Brown96307042012-07-27 15:51:34 -0700318 /**
Jeff Brown0a571122014-08-21 21:50:43 -0700319 * User activity flag: If already dimmed, extend the dim timeout
320 * but do not brighten. This flag is useful for keeping the screen on
321 * a little longer without causing a visible change such as when
322 * the power key is pressed.
Jeff Brown96307042012-07-27 15:51:34 -0700323 * @hide
324 */
Jeff Brown0a571122014-08-21 21:50:43 -0700325 @SystemApi
Jeff Brown96307042012-07-27 15:51:34 -0700326 public static final int USER_ACTIVITY_FLAG_NO_CHANGE_LIGHTS = 1 << 0;
327
328 /**
Jeff Brown0a571122014-08-21 21:50:43 -0700329 * User activity flag: Note the user activity as usual but do not
330 * reset the user activity timeout. This flag is useful for applying
331 * user activity power hints when interacting with the device indirectly
332 * on a secondary screen while allowing the primary screen to go to sleep.
333 * @hide
334 */
335 @SystemApi
336 public static final int USER_ACTIVITY_FLAG_INDIRECT = 1 << 1;
337
338 /**
Jeff Brownc12035c2014-08-13 18:52:25 -0700339 * Go to sleep reason code: Going to sleep due by application request.
Jeff Brown96307042012-07-27 15:51:34 -0700340 * @hide
341 */
Jeff Brownc12035c2014-08-13 18:52:25 -0700342 public static final int GO_TO_SLEEP_REASON_APPLICATION = 0;
Jeff Brown96307042012-07-27 15:51:34 -0700343
344 /**
345 * Go to sleep reason code: Going to sleep due by request of the
346 * device administration policy.
347 * @hide
348 */
349 public static final int GO_TO_SLEEP_REASON_DEVICE_ADMIN = 1;
350
351 /**
352 * Go to sleep reason code: Going to sleep due to a screen timeout.
353 * @hide
354 */
355 public static final int GO_TO_SLEEP_REASON_TIMEOUT = 2;
356
Doug Zongker3b0218b2014-01-14 12:29:06 -0800357 /**
Jeff Brownc12035c2014-08-13 18:52:25 -0700358 * Go to sleep reason code: Going to sleep due to the lid switch being closed.
359 * @hide
360 */
361 public static final int GO_TO_SLEEP_REASON_LID_SWITCH = 3;
362
363 /**
364 * Go to sleep reason code: Going to sleep due to the power button being pressed.
365 * @hide
366 */
367 public static final int GO_TO_SLEEP_REASON_POWER_BUTTON = 4;
368
369 /**
370 * Go to sleep reason code: Going to sleep due to HDMI.
371 * @hide
372 */
373 public static final int GO_TO_SLEEP_REASON_HDMI = 5;
374
375 /**
Filip Gruszczynski9779e122015-03-13 17:39:31 -0700376 * Go to sleep reason code: Going to sleep due to the sleep button being pressed.
377 * @hide
378 */
379 public static final int GO_TO_SLEEP_REASON_SLEEP_BUTTON = 6;
380
381 /**
Jeff Brown72671fb2014-08-21 21:41:09 -0700382 * Go to sleep flag: Skip dozing state and directly go to full sleep.
383 * @hide
384 */
385 public static final int GO_TO_SLEEP_FLAG_NO_DOZE = 1 << 0;
386
387 /**
Doug Zongker3b0218b2014-01-14 12:29:06 -0800388 * The value to pass as the 'reason' argument to reboot() to
389 * reboot into recovery mode (for applying system updates, doing
390 * factory resets, etc.).
391 * <p>
392 * Requires the {@link android.Manifest.permission#RECOVERY}
393 * permission (in addition to
394 * {@link android.Manifest.permission#REBOOT}).
395 * </p>
Doug Zongker183415e2014-08-12 10:18:40 -0700396 * @hide
Doug Zongker3b0218b2014-01-14 12:29:06 -0800397 */
398 public static final String REBOOT_RECOVERY = "recovery";
Yusuke Sato705ffd12015-07-21 15:52:11 -0700399
400 /**
Mahaver Chopra1ce53bc2015-12-14 13:35:14 +0000401 * The value to pass as the 'reason' argument to reboot() when device owner requests a reboot on
402 * the device.
403 * @hide
404 */
405 public static final String REBOOT_REQUESTED_BY_DEVICE_OWNER = "deviceowner";
406
407 /**
Yusuke Sato705ffd12015-07-21 15:52:11 -0700408 * The value to pass as the 'reason' argument to android_reboot().
409 * @hide
410 */
411 public static final String SHUTDOWN_USER_REQUESTED = "userrequested";
412
Jeff Brown96307042012-07-27 15:51:34 -0700413 final Context mContext;
Jeff Brown1244cda2012-06-19 16:44:46 -0700414 final IPowerManager mService;
415 final Handler mHandler;
416
Dianne Hackborn1958e5e2015-06-12 18:11:41 -0700417 IDeviceIdleController mIDeviceIdleController;
418
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800419 /**
Jeff Brown1244cda2012-06-19 16:44:46 -0700420 * {@hide}
421 */
Jeff Brown96307042012-07-27 15:51:34 -0700422 public PowerManager(Context context, IPowerManager service, Handler handler) {
423 mContext = context;
Jeff Brown1244cda2012-06-19 16:44:46 -0700424 mService = service;
425 mHandler = handler;
426 }
427
428 /**
Jeff Brown96307042012-07-27 15:51:34 -0700429 * Gets the minimum supported screen brightness setting.
430 * The screen may be allowed to become dimmer than this value but
431 * this is the minimum value that can be set by the user.
432 * @hide
433 */
434 public int getMinimumScreenBrightnessSetting() {
435 return mContext.getResources().getInteger(
Jeff Brownf9bba132012-08-21 22:04:02 -0700436 com.android.internal.R.integer.config_screenBrightnessSettingMinimum);
Jeff Brown96307042012-07-27 15:51:34 -0700437 }
438
439 /**
440 * Gets the maximum supported screen brightness setting.
441 * The screen may be allowed to become dimmer than this value but
442 * this is the maximum value that can be set by the user.
443 * @hide
444 */
445 public int getMaximumScreenBrightnessSetting() {
Jeff Brownf9bba132012-08-21 22:04:02 -0700446 return mContext.getResources().getInteger(
447 com.android.internal.R.integer.config_screenBrightnessSettingMaximum);
Jeff Brown96307042012-07-27 15:51:34 -0700448 }
449
450 /**
451 * Gets the default screen brightness setting.
452 * @hide
453 */
454 public int getDefaultScreenBrightnessSetting() {
Jeff Brownf9bba132012-08-21 22:04:02 -0700455 return mContext.getResources().getInteger(
456 com.android.internal.R.integer.config_screenBrightnessSettingDefault);
Jeff Brown96307042012-07-27 15:51:34 -0700457 }
458
459 /**
Jeff Browndb212842012-10-01 14:33:09 -0700460 * Returns true if the twilight service should be used to adjust screen brightness
461 * policy. This setting is experimental and disabled by default.
462 * @hide
463 */
464 public static boolean useTwilightAdjustmentFeature() {
465 return SystemProperties.getBoolean("persist.power.usetwilightadj", false);
466 }
467
468 /**
Jeff Brown1244cda2012-06-19 16:44:46 -0700469 * Creates a new wake lock with the specified level and flags.
Kenny Rootd710fb52011-03-15 17:39:45 -0700470 * <p>
Jeff Brown1244cda2012-06-19 16:44:46 -0700471 * The {@code levelAndFlags} parameter specifies a wake lock level and optional flags
472 * combined using the logical OR operator.
473 * </p><p>
474 * The wake lock levels are: {@link #PARTIAL_WAKE_LOCK},
475 * {@link #FULL_WAKE_LOCK}, {@link #SCREEN_DIM_WAKE_LOCK}
476 * and {@link #SCREEN_BRIGHT_WAKE_LOCK}. Exactly one wake lock level must be
477 * specified as part of the {@code levelAndFlags} parameter.
478 * </p><p>
479 * The wake lock flags are: {@link #ACQUIRE_CAUSES_WAKEUP}
480 * and {@link #ON_AFTER_RELEASE}. Multiple flags can be combined as part of the
481 * {@code levelAndFlags} parameters.
482 * </p><p>
483 * Call {@link WakeLock#acquire() acquire()} on the object to acquire the
484 * wake lock, and {@link WakeLock#release release()} when you are done.
485 * </p><p>
486 * {@samplecode
487 * PowerManager pm = (PowerManager)mContext.getSystemService(
488 * Context.POWER_SERVICE);
489 * PowerManager.WakeLock wl = pm.newWakeLock(
490 * PowerManager.SCREEN_DIM_WAKE_LOCK
491 * | PowerManager.ON_AFTER_RELEASE,
492 * TAG);
493 * wl.acquire();
494 * // ... do work...
495 * wl.release();
496 * }
497 * </p><p>
498 * Although a wake lock can be created without special permissions,
499 * the {@link android.Manifest.permission#WAKE_LOCK} permission is
500 * required to actually acquire or release the wake lock that is returned.
501 * </p><p class="note">
502 * If using this to keep the screen on, you should strongly consider using
503 * {@link android.view.WindowManager.LayoutParams#FLAG_KEEP_SCREEN_ON} instead.
504 * This window flag will be correctly managed by the platform
505 * as the user moves between applications and doesn't require a special permission.
506 * </p>
507 *
508 * @param levelAndFlags Combination of wake lock level and flag values defining
509 * the requested behavior of the WakeLock.
510 * @param tag Your class name (or other tag) for debugging purposes.
511 *
512 * @see WakeLock#acquire()
513 * @see WakeLock#release()
514 * @see #PARTIAL_WAKE_LOCK
515 * @see #FULL_WAKE_LOCK
516 * @see #SCREEN_DIM_WAKE_LOCK
517 * @see #SCREEN_BRIGHT_WAKE_LOCK
Jeff Browna71f03c2014-08-21 18:01:51 -0700518 * @see #PROXIMITY_SCREEN_OFF_WAKE_LOCK
Jeff Brown1244cda2012-06-19 16:44:46 -0700519 * @see #ACQUIRE_CAUSES_WAKEUP
520 * @see #ON_AFTER_RELEASE
521 */
522 public WakeLock newWakeLock(int levelAndFlags, String tag) {
Jeff Brown155fc702012-07-27 12:12:15 -0700523 validateWakeLockParameters(levelAndFlags, tag);
Dianne Hackborn95d78532013-09-11 09:51:14 -0700524 return new WakeLock(levelAndFlags, tag, mContext.getOpPackageName());
Jeff Brown155fc702012-07-27 12:12:15 -0700525 }
526
527 /** @hide */
528 public static void validateWakeLockParameters(int levelAndFlags, String tag) {
529 switch (levelAndFlags & WAKE_LOCK_LEVEL_MASK) {
530 case PARTIAL_WAKE_LOCK:
531 case SCREEN_DIM_WAKE_LOCK:
532 case SCREEN_BRIGHT_WAKE_LOCK:
533 case FULL_WAKE_LOCK:
534 case PROXIMITY_SCREEN_OFF_WAKE_LOCK:
Jeff Brown26875502014-01-30 21:47:47 -0800535 case DOZE_WAKE_LOCK:
Jeff Brownc2932a12014-11-20 18:04:05 -0800536 case DRAW_WAKE_LOCK:
Ruchi Kandoi0abc0012016-01-12 14:39:24 -0800537 case SUSTAINED_PERFORMANCE_WAKE_LOCK:
Jeff Brown155fc702012-07-27 12:12:15 -0700538 break;
539 default:
540 throw new IllegalArgumentException("Must specify a valid wake lock level.");
Jeff Brown1244cda2012-06-19 16:44:46 -0700541 }
542 if (tag == null) {
543 throw new IllegalArgumentException("The tag must not be null.");
544 }
Jeff Brown1244cda2012-06-19 16:44:46 -0700545 }
546
547 /**
548 * Notifies the power manager that user activity happened.
549 * <p>
Jeff Brown96307042012-07-27 15:51:34 -0700550 * Resets the auto-off timer and brightens the screen if the device
551 * is not asleep. This is what happens normally when a key or the touch
552 * screen is pressed or when some other user activity occurs.
553 * This method does not wake up the device if it has been put to sleep.
Jeff Brown1244cda2012-06-19 16:44:46 -0700554 * </p><p>
555 * Requires the {@link android.Manifest.permission#DEVICE_POWER} permission.
556 * </p>
557 *
558 * @param when The time of the user activity, in the {@link SystemClock#uptimeMillis()}
Jeff Brown62c82e42012-09-26 01:30:41 -0700559 * time base. This timestamp is used to correctly order the user activity request with
Jeff Brown1244cda2012-06-19 16:44:46 -0700560 * other power management functions. It should be set
561 * to the timestamp of the input event that caused the user activity.
562 * @param noChangeLights If true, does not cause the keyboard backlight to turn on
563 * because of this event. This is set when the power key is pressed.
564 * We want the device to stay on while the button is down, but we're about
565 * to turn off the screen so we don't want the keyboard backlight to turn on again.
566 * Otherwise the lights flash on and then off and it looks weird.
Jeff Brown96307042012-07-27 15:51:34 -0700567 *
568 * @see #wakeUp
569 * @see #goToSleep
Jeff Brown7d827512014-08-21 21:56:02 -0700570 *
571 * @removed Requires signature or system permission.
572 * @deprecated Use {@link #userActivity(long, int, int)}.
Jeff Brown1244cda2012-06-19 16:44:46 -0700573 */
Jeff Brown7d827512014-08-21 21:56:02 -0700574 @Deprecated
Jeff Brown1244cda2012-06-19 16:44:46 -0700575 public void userActivity(long when, boolean noChangeLights) {
Jeff Brown0a571122014-08-21 21:50:43 -0700576 userActivity(when, USER_ACTIVITY_EVENT_OTHER,
577 noChangeLights ? USER_ACTIVITY_FLAG_NO_CHANGE_LIGHTS : 0);
578 }
579
580 /**
581 * Notifies the power manager that user activity happened.
582 * <p>
583 * Resets the auto-off timer and brightens the screen if the device
584 * is not asleep. This is what happens normally when a key or the touch
585 * screen is pressed or when some other user activity occurs.
586 * This method does not wake up the device if it has been put to sleep.
587 * </p><p>
588 * Requires the {@link android.Manifest.permission#DEVICE_POWER} or
589 * {@link android.Manifest.permission#USER_ACTIVITY} permission.
590 * </p>
591 *
592 * @param when The time of the user activity, in the {@link SystemClock#uptimeMillis()}
593 * time base. This timestamp is used to correctly order the user activity request with
594 * other power management functions. It should be set
595 * to the timestamp of the input event that caused the user activity.
596 * @param event The user activity event.
597 * @param flags Optional user activity flags.
598 *
599 * @see #wakeUp
600 * @see #goToSleep
601 *
602 * @hide Requires signature or system permission.
603 */
604 @SystemApi
605 public void userActivity(long when, int event, int flags) {
Jeff Brown1244cda2012-06-19 16:44:46 -0700606 try {
Jeff Brown0a571122014-08-21 21:50:43 -0700607 mService.userActivity(when, event, flags);
Jeff Brown1244cda2012-06-19 16:44:46 -0700608 } catch (RemoteException e) {
609 }
610 }
611
612 /**
613 * Forces the device to go to sleep.
614 * <p>
Jeff Brown96307042012-07-27 15:51:34 -0700615 * Overrides all the wake locks that are held.
616 * This is what happens when the power key is pressed to turn off the screen.
Jeff Brown1244cda2012-06-19 16:44:46 -0700617 * </p><p>
618 * Requires the {@link android.Manifest.permission#DEVICE_POWER} permission.
619 * </p>
620 *
621 * @param time The time when the request to go to sleep was issued, in the
622 * {@link SystemClock#uptimeMillis()} time base. This timestamp is used to correctly
Jeff Brown62c82e42012-09-26 01:30:41 -0700623 * order the go to sleep request with other power management functions. It should be set
Jeff Brown1244cda2012-06-19 16:44:46 -0700624 * to the timestamp of the input event that caused the request to go to sleep.
Jeff Brown96307042012-07-27 15:51:34 -0700625 *
626 * @see #userActivity
627 * @see #wakeUp
Jeff Brown7d827512014-08-21 21:56:02 -0700628 *
629 * @removed Requires signature permission.
Jeff Brown1244cda2012-06-19 16:44:46 -0700630 */
631 public void goToSleep(long time) {
Jeff Brownc12035c2014-08-13 18:52:25 -0700632 goToSleep(time, GO_TO_SLEEP_REASON_APPLICATION, 0);
Jeff Brown6d8fd272014-05-20 21:24:38 -0700633 }
634
635 /**
Jeff Brown7d827512014-08-21 21:56:02 -0700636 * Forces the device to go to sleep.
637 * <p>
638 * Overrides all the wake locks that are held.
639 * This is what happens when the power key is pressed to turn off the screen.
640 * </p><p>
641 * Requires the {@link android.Manifest.permission#DEVICE_POWER} permission.
642 * </p>
643 *
644 * @param time The time when the request to go to sleep was issued, in the
645 * {@link SystemClock#uptimeMillis()} time base. This timestamp is used to correctly
646 * order the go to sleep request with other power management functions. It should be set
647 * to the timestamp of the input event that caused the request to go to sleep.
648 * @param reason The reason the device is going to sleep.
649 * @param flags Optional flags to apply when going to sleep.
650 *
651 * @see #userActivity
652 * @see #wakeUp
653 *
654 * @hide Requires signature permission.
Jeff Brown6d8fd272014-05-20 21:24:38 -0700655 */
656 public void goToSleep(long time, int reason, int flags) {
Jeff Brown1244cda2012-06-19 16:44:46 -0700657 try {
Jeff Brown6d8fd272014-05-20 21:24:38 -0700658 mService.goToSleep(time, reason, flags);
Jeff Brown96307042012-07-27 15:51:34 -0700659 } catch (RemoteException e) {
660 }
661 }
662
663 /**
664 * Forces the device to wake up from sleep.
665 * <p>
666 * If the device is currently asleep, wakes it up, otherwise does nothing.
667 * This is what happens when the power key is pressed to turn on the screen.
668 * </p><p>
669 * Requires the {@link android.Manifest.permission#DEVICE_POWER} permission.
670 * </p>
671 *
672 * @param time The time when the request to wake up was issued, in the
673 * {@link SystemClock#uptimeMillis()} time base. This timestamp is used to correctly
Jeff Brown62c82e42012-09-26 01:30:41 -0700674 * order the wake up request with other power management functions. It should be set
Jeff Brown96307042012-07-27 15:51:34 -0700675 * to the timestamp of the input event that caused the request to wake up.
676 *
677 * @see #userActivity
678 * @see #goToSleep
Jeff Brown7d827512014-08-21 21:56:02 -0700679 *
680 * @removed Requires signature permission.
Jeff Brown96307042012-07-27 15:51:34 -0700681 */
682 public void wakeUp(long time) {
683 try {
Dianne Hackborn280a64e2015-07-13 14:48:08 -0700684 mService.wakeUp(time, "wakeUp", mContext.getOpPackageName());
685 } catch (RemoteException e) {
686 }
687 }
688
689 /**
690 * @hide
691 */
692 public void wakeUp(long time, String reason) {
693 try {
694 mService.wakeUp(time, reason, mContext.getOpPackageName());
Jeff Brown1244cda2012-06-19 16:44:46 -0700695 } catch (RemoteException e) {
696 }
697 }
698
699 /**
Jeff Brown62c82e42012-09-26 01:30:41 -0700700 * Forces the device to start napping.
701 * <p>
702 * If the device is currently awake, starts dreaming, otherwise does nothing.
703 * When the dream ends or if the dream cannot be started, the device will
704 * either wake up or go to sleep depending on whether there has been recent
705 * user activity.
706 * </p><p>
707 * Requires the {@link android.Manifest.permission#DEVICE_POWER} permission.
708 * </p>
709 *
710 * @param time The time when the request to nap was issued, in the
711 * {@link SystemClock#uptimeMillis()} time base. This timestamp is used to correctly
712 * order the nap request with other power management functions. It should be set
713 * to the timestamp of the input event that caused the request to nap.
714 *
715 * @see #wakeUp
716 * @see #goToSleep
717 *
Jeff Brown7d827512014-08-21 21:56:02 -0700718 * @hide Requires signature permission.
Jeff Brown62c82e42012-09-26 01:30:41 -0700719 */
720 public void nap(long time) {
721 try {
722 mService.nap(time);
723 } catch (RemoteException e) {
724 }
725 }
726
727 /**
Jeff Browne333e672014-10-28 13:48:55 -0700728 * Boosts the brightness of the screen to maximum for a predetermined
729 * period of time. This is used to make the screen more readable in bright
730 * daylight for a short duration.
731 * <p>
732 * Requires the {@link android.Manifest.permission#DEVICE_POWER} permission.
733 * </p>
734 *
735 * @param time The time when the request to boost was issued, in the
736 * {@link SystemClock#uptimeMillis()} time base. This timestamp is used to correctly
737 * order the boost request with other power management functions. It should be set
738 * to the timestamp of the input event that caused the request to boost.
739 *
740 * @hide Requires signature permission.
741 */
742 public void boostScreenBrightness(long time) {
743 try {
744 mService.boostScreenBrightness(time);
745 } catch (RemoteException e) {
746 }
747 }
748
749 /**
Bryce Lee84d6c0f2015-03-17 10:43:08 -0700750 * Returns whether the screen brightness is currently boosted to maximum, caused by a call
751 * to {@link #boostScreenBrightness(long)}.
752 * @return {@code True} if the screen brightness is currently boosted. {@code False} otherwise.
753 *
754 * @hide
755 */
756 @SystemApi
757 public boolean isScreenBrightnessBoosted() {
758 try {
759 return mService.isScreenBrightnessBoosted();
760 } catch (RemoteException e) {
761 return false;
762 }
763 }
764
765 /**
Jeff Brown1244cda2012-06-19 16:44:46 -0700766 * Sets the brightness of the backlights (screen, keyboard, button).
767 * <p>
768 * Requires the {@link android.Manifest.permission#DEVICE_POWER} permission.
769 * </p>
770 *
771 * @param brightness The brightness value from 0 to 255.
772 *
Jeff Brown7d827512014-08-21 21:56:02 -0700773 * @hide Requires signature permission.
Jeff Brown1244cda2012-06-19 16:44:46 -0700774 */
775 public void setBacklightBrightness(int brightness) {
776 try {
Jeff Brown96307042012-07-27 15:51:34 -0700777 mService.setTemporaryScreenBrightnessSettingOverride(brightness);
Jeff Brown1244cda2012-06-19 16:44:46 -0700778 } catch (RemoteException e) {
779 }
780 }
781
782 /**
Jeff Brown96307042012-07-27 15:51:34 -0700783 * Returns true if the specified wake lock level is supported.
Jeff Brown1244cda2012-06-19 16:44:46 -0700784 *
Jeff Brown96307042012-07-27 15:51:34 -0700785 * @param level The wake lock level to check.
786 * @return True if the specified wake lock level is supported.
Jeff Brown1244cda2012-06-19 16:44:46 -0700787 */
Jeff Brown96307042012-07-27 15:51:34 -0700788 public boolean isWakeLockLevelSupported(int level) {
Jeff Brown1244cda2012-06-19 16:44:46 -0700789 try {
Jeff Brown96307042012-07-27 15:51:34 -0700790 return mService.isWakeLockLevelSupported(level);
Jeff Brown1244cda2012-06-19 16:44:46 -0700791 } catch (RemoteException e) {
Jeff Brown96307042012-07-27 15:51:34 -0700792 return false;
Jeff Brown1244cda2012-06-19 16:44:46 -0700793 }
794 }
795
796 /**
Jeff Brown037c33e2014-04-09 00:31:55 -0700797 * Returns true if the device is in an interactive state.
Jeff Brown1244cda2012-06-19 16:44:46 -0700798 * <p>
Jeff Brown037c33e2014-04-09 00:31:55 -0700799 * For historical reasons, the name of this method refers to the power state of
800 * the screen but it actually describes the overall interactive state of
801 * the device. This method has been replaced by {@link #isInteractive}.
Jeff Brown1244cda2012-06-19 16:44:46 -0700802 * </p><p>
Jeff Brown037c33e2014-04-09 00:31:55 -0700803 * The value returned by this method only indicates whether the device is
804 * in an interactive state which may have nothing to do with the screen being
805 * on or off. To determine the actual state of the screen,
806 * use {@link android.view.Display#getState}.
Jeff Brown1244cda2012-06-19 16:44:46 -0700807 * </p>
808 *
Jeff Brown037c33e2014-04-09 00:31:55 -0700809 * @return True if the device is in an interactive state.
810 *
811 * @deprecated Use {@link #isInteractive} instead.
Jeff Brown1244cda2012-06-19 16:44:46 -0700812 */
Jeff Brown037c33e2014-04-09 00:31:55 -0700813 @Deprecated
Jeff Brown1244cda2012-06-19 16:44:46 -0700814 public boolean isScreenOn() {
Jeff Brown037c33e2014-04-09 00:31:55 -0700815 return isInteractive();
816 }
817
818 /**
819 * Returns true if the device is in an interactive state.
820 * <p>
821 * When this method returns true, the device is awake and ready to interact
822 * with the user (although this is not a guarantee that the user is actively
823 * interacting with the device just this moment). The main screen is usually
824 * turned on while in this state. Certain features, such as the proximity
825 * sensor, may temporarily turn off the screen while still leaving the device in an
826 * interactive state. Note in particular that the device is still considered
827 * to be interactive while dreaming (since dreams can be interactive) but not
828 * when it is dozing or asleep.
829 * </p><p>
830 * When this method returns false, the device is dozing or asleep and must
831 * be awoken before it will become ready to interact with the user again. The
832 * main screen is usually turned off while in this state. Certain features,
833 * such as "ambient mode" may cause the main screen to remain on (albeit in a
834 * low power state) to display system-provided content while the device dozes.
835 * </p><p>
836 * The system will send a {@link android.content.Intent#ACTION_SCREEN_ON screen on}
837 * or {@link android.content.Intent#ACTION_SCREEN_OFF screen off} broadcast
838 * whenever the interactive state of the device changes. For historical reasons,
839 * the names of these broadcasts refer to the power state of the screen
840 * but they are actually sent in response to changes in the overall interactive
841 * state of the device, as described by this method.
842 * </p><p>
843 * Services may use the non-interactive state as a hint to conserve power
844 * since the user is not present.
845 * </p>
846 *
847 * @return True if the device is in an interactive state.
848 *
849 * @see android.content.Intent#ACTION_SCREEN_ON
850 * @see android.content.Intent#ACTION_SCREEN_OFF
851 */
852 public boolean isInteractive() {
Jeff Brown1244cda2012-06-19 16:44:46 -0700853 try {
Jeff Brown037c33e2014-04-09 00:31:55 -0700854 return mService.isInteractive();
Jeff Brown1244cda2012-06-19 16:44:46 -0700855 } catch (RemoteException e) {
856 return false;
857 }
858 }
859
860 /**
861 * Reboot the device. Will not return if the reboot is successful.
862 * <p>
863 * Requires the {@link android.Manifest.permission#REBOOT} permission.
864 * </p>
865 *
866 * @param reason code to pass to the kernel (e.g., "recovery") to
867 * request special boot modes, or null.
868 */
869 public void reboot(String reason) {
870 try {
Dianne Hackbornc428aae2012-10-03 16:38:22 -0700871 mService.reboot(false, reason, true);
Jeff Brown1244cda2012-06-19 16:44:46 -0700872 } catch (RemoteException e) {
873 }
874 }
875
876 /**
Dianne Hackborneb94fa72014-06-03 17:48:12 -0700877 * Returns true if the device is currently in power save mode. When in this mode,
878 * applications should reduce their functionality in order to conserve battery as
879 * much as possible. You can monitor for changes to this state with
880 * {@link #ACTION_POWER_SAVE_MODE_CHANGED}.
881 *
882 * @return Returns true if currently in low power mode, else false.
883 */
884 public boolean isPowerSaveMode() {
885 try {
886 return mService.isPowerSaveMode();
887 } catch (RemoteException e) {
888 return false;
889 }
890 }
891
892 /**
John Spurlock8d4e6cb2014-09-14 11:10:22 -0400893 * Set the current power save mode.
894 *
895 * @return True if the set was allowed.
896 *
897 * @see #isPowerSaveMode()
898 *
899 * @hide
900 */
901 public boolean setPowerSaveMode(boolean mode) {
902 try {
903 return mService.setPowerSaveMode(mode);
904 } catch (RemoteException e) {
905 return false;
906 }
907 }
908
909 /**
Dianne Hackborn88e98df2015-03-23 13:29:14 -0700910 * Returns true if the device is currently in idle mode. This happens when a device
911 * has been sitting unused and unmoving for a sufficiently long period of time, so that
912 * it decides to go into a lower power-use state. This may involve things like turning
913 * off network access to apps. You can monitor for changes to this state with
914 * {@link #ACTION_DEVICE_IDLE_MODE_CHANGED}.
915 *
Dianne Hackbornece0f4f2015-06-11 13:29:01 -0700916 * @return Returns true if currently in active device idle mode, else false. This is
917 * when idle mode restrictions are being actively applied; it will return false if the
918 * device is in a long-term idle mode but currently running a maintenance window where
919 * restrictions have been lifted.
Dianne Hackborn88e98df2015-03-23 13:29:14 -0700920 */
921 public boolean isDeviceIdleMode() {
922 try {
923 return mService.isDeviceIdleMode();
924 } catch (RemoteException e) {
925 return false;
926 }
927 }
928
929 /**
Dianne Hackborn08c47a52015-10-15 12:38:14 -0700930 * Returns true if the device is currently in light idle mode. This happens when a device
931 * has had its screen off for a short time, switching it into a batching mode where we
932 * execute jobs, syncs, networking on a batching schedule. You can monitor for changes to
933 * this state with {@link #ACTION_LIGHT_DEVICE_IDLE_MODE_CHANGED}.
934 *
935 * @return Returns true if currently in active light device idle mode, else false. This is
936 * when light idle mode restrictions are being actively applied; it will return false if the
937 * device is in a long-term idle mode but currently running a maintenance window where
938 * restrictions have been lifted.
939 * @hide
940 */
941 public boolean isLightDeviceIdleMode() {
942 try {
943 return mService.isLightDeviceIdleMode();
944 } catch (RemoteException e) {
945 return false;
946 }
947 }
948
949 /**
Dianne Hackborn1958e5e2015-06-12 18:11:41 -0700950 * Return whether the given application package name is on the device's power whitelist.
951 * Apps can be placed on the whitelist through the settings UI invoked by
952 * {@link android.provider.Settings#ACTION_IGNORE_BATTERY_OPTIMIZATION_SETTINGS}.
953 */
954 public boolean isIgnoringBatteryOptimizations(String packageName) {
955 synchronized (this) {
956 if (mIDeviceIdleController == null) {
957 mIDeviceIdleController = IDeviceIdleController.Stub.asInterface(
958 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
959 }
960 }
961 try {
962 return mIDeviceIdleController.isPowerSaveWhitelistApp(packageName);
963 } catch (RemoteException e) {
964 return false;
965 }
966 }
967
968 /**
Filip Gruszczynskid05af862015-02-04 09:48:47 -0800969 * Turn off the device.
970 *
971 * @param confirm If true, shows a shutdown confirmation dialog.
Yusuke Sato705ffd12015-07-21 15:52:11 -0700972 * @param reason code to pass to android_reboot() (e.g. "userrequested"), or null.
Filip Gruszczynskid05af862015-02-04 09:48:47 -0800973 * @param wait If true, this call waits for the shutdown to complete and does not return.
974 *
975 * @hide
976 */
Yusuke Sato705ffd12015-07-21 15:52:11 -0700977 public void shutdown(boolean confirm, String reason, boolean wait) {
Filip Gruszczynskid05af862015-02-04 09:48:47 -0800978 try {
Yusuke Sato705ffd12015-07-21 15:52:11 -0700979 mService.shutdown(confirm, reason, wait);
Filip Gruszczynskid05af862015-02-04 09:48:47 -0800980 } catch (RemoteException e) {
981 }
982 }
983
984 /**
Dianne Hackborneb94fa72014-06-03 17:48:12 -0700985 * Intent that is broadcast when the state of {@link #isPowerSaveMode()} changes.
986 * This broadcast is only sent to registered receivers.
987 */
988 @SdkConstant(SdkConstant.SdkConstantType.BROADCAST_INTENT_ACTION)
989 public static final String ACTION_POWER_SAVE_MODE_CHANGED
990 = "android.os.action.POWER_SAVE_MODE_CHANGED";
991
992 /**
Jason Monkafae4bd2015-12-15 14:20:06 -0500993 * Intent that is broadcast when the state of {@link #isPowerSaveMode()} changes.
994 * @hide
995 */
996 @SdkConstant(SdkConstant.SdkConstantType.BROADCAST_INTENT_ACTION)
997 public static final String ACTION_POWER_SAVE_MODE_CHANGED_INTERNAL
998 = "android.os.action.POWER_SAVE_MODE_CHANGED_INTERNAL";
999
1000 /**
Dianne Hackborn88e98df2015-03-23 13:29:14 -07001001 * Intent that is broadcast when the state of {@link #isDeviceIdleMode()} changes.
1002 * This broadcast is only sent to registered receivers.
1003 */
1004 @SdkConstant(SdkConstant.SdkConstantType.BROADCAST_INTENT_ACTION)
1005 public static final String ACTION_DEVICE_IDLE_MODE_CHANGED
1006 = "android.os.action.DEVICE_IDLE_MODE_CHANGED";
1007
1008 /**
Dianne Hackborn08c47a52015-10-15 12:38:14 -07001009 * Intent that is broadcast when the state of {@link #isLightDeviceIdleMode()} changes.
1010 * This broadcast is only sent to registered receivers.
1011 * @hide
1012 */
1013 @SdkConstant(SdkConstant.SdkConstantType.BROADCAST_INTENT_ACTION)
1014 public static final String ACTION_LIGHT_DEVICE_IDLE_MODE_CHANGED
1015 = "android.os.action.LIGHT_DEVICE_IDLE_MODE_CHANGED";
1016
1017 /**
Dianne Hackborn0b4daca2015-04-27 09:47:32 -07001018 * @hide Intent that is broadcast when the set of power save whitelist apps has changed.
1019 * This broadcast is only sent to registered receivers.
1020 */
1021 @SdkConstant(SdkConstant.SdkConstantType.BROADCAST_INTENT_ACTION)
1022 public static final String ACTION_POWER_SAVE_WHITELIST_CHANGED
1023 = "android.os.action.POWER_SAVE_WHITELIST_CHANGED";
1024
1025 /**
Amith Yamasaniaf575b92015-05-29 15:35:26 -07001026 * @hide Intent that is broadcast when the set of temporarily whitelisted apps has changed.
1027 * This broadcast is only sent to registered receivers.
1028 */
1029 @SdkConstant(SdkConstant.SdkConstantType.BROADCAST_INTENT_ACTION)
1030 public static final String ACTION_POWER_SAVE_TEMP_WHITELIST_CHANGED
1031 = "android.os.action.POWER_SAVE_TEMP_WHITELIST_CHANGED";
1032
1033 /**
John Spurlock1bb480a2014-08-02 17:12:43 -04001034 * Intent that is broadcast when the state of {@link #isPowerSaveMode()} is about to change.
1035 * This broadcast is only sent to registered receivers.
1036 *
1037 * @hide
1038 */
1039 @SdkConstant(SdkConstant.SdkConstantType.BROADCAST_INTENT_ACTION)
1040 public static final String ACTION_POWER_SAVE_MODE_CHANGING
1041 = "android.os.action.POWER_SAVE_MODE_CHANGING";
1042
1043 /** @hide */
1044 public static final String EXTRA_POWER_SAVE_MODE = "mode";
1045
1046 /**
Bryce Lee84d6c0f2015-03-17 10:43:08 -07001047 * Intent that is broadcast when the state of {@link #isScreenBrightnessBoosted()} has changed.
1048 * This broadcast is only sent to registered receivers.
1049 *
1050 * @hide
1051 **/
1052 @SystemApi
1053 public static final String ACTION_SCREEN_BRIGHTNESS_BOOST_CHANGED
1054 = "android.os.action.SCREEN_BRIGHTNESS_BOOST_CHANGED";
1055
1056 /**
Jeff Brown1244cda2012-06-19 16:44:46 -07001057 * A wake lock is a mechanism to indicate that your application needs
1058 * to have the device stay on.
Kenny Rootd710fb52011-03-15 17:39:45 -07001059 * <p>
1060 * Any application using a WakeLock must request the {@code android.permission.WAKE_LOCK}
Neil Fuller71fbb812015-11-30 09:51:33 +00001061 * permission in an {@code <uses-permission>} element of the application's manifest.
Jeff Brown1244cda2012-06-19 16:44:46 -07001062 * Obtain a wake lock by calling {@link PowerManager#newWakeLock(int, String)}.
1063 * </p><p>
1064 * Call {@link #acquire()} to acquire the wake lock and force the device to stay
1065 * on at the level that was requested when the wake lock was created.
1066 * </p><p>
1067 * Call {@link #release()} when you are done and don't need the lock anymore.
1068 * It is very important to do this as soon as possible to avoid running down the
1069 * device's battery excessively.
1070 * </p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001071 */
Jeff Brown1244cda2012-06-19 16:44:46 -07001072 public final class WakeLock {
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001073 private int mFlags;
1074 private String mTag;
Dianne Hackborn713df152013-05-17 11:27:57 -07001075 private final String mPackageName;
Jeff Brown1244cda2012-06-19 16:44:46 -07001076 private final IBinder mToken;
1077 private int mCount;
1078 private boolean mRefCounted = true;
1079 private boolean mHeld;
1080 private WorkSource mWorkSource;
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -08001081 private String mHistoryTag;
Jeff Brown3edf5272014-08-14 19:25:14 -07001082 private final String mTraceName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001083
Jeff Brown1244cda2012-06-19 16:44:46 -07001084 private final Runnable mReleaser = new Runnable() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001085 public void run() {
1086 release();
1087 }
1088 };
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001089
Dianne Hackborn713df152013-05-17 11:27:57 -07001090 WakeLock(int flags, String tag, String packageName) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001091 mFlags = flags;
1092 mTag = tag;
Dianne Hackborn713df152013-05-17 11:27:57 -07001093 mPackageName = packageName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001094 mToken = new Binder();
Jeff Brown3edf5272014-08-14 19:25:14 -07001095 mTraceName = "WakeLock (" + mTag + ")";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001096 }
1097
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001098 @Override
Jeff Brown1244cda2012-06-19 16:44:46 -07001099 protected void finalize() throws Throwable {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001100 synchronized (mToken) {
1101 if (mHeld) {
Dan Egnor60d87622009-12-16 16:32:58 -08001102 Log.wtf(TAG, "WakeLock finalized while still held: " + mTag);
Jeff Brown3edf5272014-08-14 19:25:14 -07001103 Trace.asyncTraceEnd(Trace.TRACE_TAG_POWER, mTraceName, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001104 try {
Mike Lockwood0e39ea82009-11-18 15:37:10 -05001105 mService.releaseWakeLock(mToken, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001106 } catch (RemoteException e) {
1107 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001108 }
1109 }
1110 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001111
Jeff Brown1244cda2012-06-19 16:44:46 -07001112 /**
1113 * Sets whether this WakeLock is reference counted.
1114 * <p>
1115 * Wake locks are reference counted by default. If a wake lock is
1116 * reference counted, then each call to {@link #acquire()} must be
1117 * balanced by an equal number of calls to {@link #release()}. If a wake
1118 * lock is not reference counted, then one call to {@link #release()} is
1119 * sufficient to undo the effect of all previous calls to {@link #acquire()}.
1120 * </p>
1121 *
1122 * @param value True to make the wake lock reference counted, false to
1123 * make the wake lock non-reference counted.
1124 */
1125 public void setReferenceCounted(boolean value) {
1126 synchronized (mToken) {
1127 mRefCounted = value;
1128 }
Mike Lockwoodf5bd0922010-03-22 17:10:15 -04001129 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001130
Jeff Brown1244cda2012-06-19 16:44:46 -07001131 /**
1132 * Acquires the wake lock.
1133 * <p>
1134 * Ensures that the device is on at the level requested when
1135 * the wake lock was created.
1136 * </p>
1137 */
1138 public void acquire() {
1139 synchronized (mToken) {
1140 acquireLocked();
1141 }
1142 }
1143
1144 /**
1145 * Acquires the wake lock with a timeout.
1146 * <p>
1147 * Ensures that the device is on at the level requested when
1148 * the wake lock was created. The lock will be released after the given timeout
1149 * expires.
1150 * </p>
1151 *
1152 * @param timeout The timeout after which to release the wake lock, in milliseconds.
1153 */
1154 public void acquire(long timeout) {
1155 synchronized (mToken) {
1156 acquireLocked();
1157 mHandler.postDelayed(mReleaser, timeout);
1158 }
1159 }
1160
1161 private void acquireLocked() {
1162 if (!mRefCounted || mCount++ == 0) {
Jeff Brownff1baef2012-07-19 15:01:17 -07001163 // Do this even if the wake lock is already thought to be held (mHeld == true)
1164 // because non-reference counted wake locks are not always properly released.
1165 // For example, the keyguard's wake lock might be forcibly released by the
1166 // power manager without the keyguard knowing. A subsequent call to acquire
1167 // should immediately acquire the wake lock once again despite never having
1168 // been explicitly released by the keyguard.
Jeff Brown1244cda2012-06-19 16:44:46 -07001169 mHandler.removeCallbacks(mReleaser);
Jeff Brown3edf5272014-08-14 19:25:14 -07001170 Trace.asyncTraceBegin(Trace.TRACE_TAG_POWER, mTraceName, 0);
Jeff Brownff1baef2012-07-19 15:01:17 -07001171 try {
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -08001172 mService.acquireWakeLock(mToken, mFlags, mTag, mPackageName, mWorkSource,
1173 mHistoryTag);
Jeff Brownff1baef2012-07-19 15:01:17 -07001174 } catch (RemoteException e) {
Jeff Brown1244cda2012-06-19 16:44:46 -07001175 }
Jeff Brownff1baef2012-07-19 15:01:17 -07001176 mHeld = true;
Jeff Brown1244cda2012-06-19 16:44:46 -07001177 }
1178 }
1179
1180 /**
1181 * Releases the wake lock.
1182 * <p>
1183 * This method releases your claim to the CPU or screen being on.
1184 * The screen may turn off shortly after you release the wake lock, or it may
1185 * not if there are other wake locks still held.
1186 * </p>
1187 */
1188 public void release() {
1189 release(0);
1190 }
1191
1192 /**
1193 * Releases the wake lock with flags to modify the release behavior.
1194 * <p>
1195 * This method releases your claim to the CPU or screen being on.
1196 * The screen may turn off shortly after you release the wake lock, or it may
1197 * not if there are other wake locks still held.
1198 * </p>
1199 *
1200 * @param flags Combination of flag values to modify the release behavior.
Michael Wright1208e272014-09-08 19:57:50 -07001201 * Currently only {@link #RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY} is supported.
1202 * Passing 0 is equivalent to calling {@link #release()}.
Jeff Brown1244cda2012-06-19 16:44:46 -07001203 */
1204 public void release(int flags) {
1205 synchronized (mToken) {
1206 if (!mRefCounted || --mCount == 0) {
1207 mHandler.removeCallbacks(mReleaser);
1208 if (mHeld) {
Jeff Brown3edf5272014-08-14 19:25:14 -07001209 Trace.asyncTraceEnd(Trace.TRACE_TAG_POWER, mTraceName, 0);
Jeff Brown1244cda2012-06-19 16:44:46 -07001210 try {
1211 mService.releaseWakeLock(mToken, flags);
1212 } catch (RemoteException e) {
1213 }
1214 mHeld = false;
1215 }
1216 }
1217 if (mCount < 0) {
1218 throw new RuntimeException("WakeLock under-locked " + mTag);
1219 }
1220 }
1221 }
1222
1223 /**
1224 * Returns true if the wake lock has been acquired but not yet released.
1225 *
1226 * @return True if the wake lock is held.
1227 */
1228 public boolean isHeld() {
1229 synchronized (mToken) {
1230 return mHeld;
1231 }
1232 }
1233
1234 /**
1235 * Sets the work source associated with the wake lock.
1236 * <p>
1237 * The work source is used to determine on behalf of which application
1238 * the wake lock is being held. This is useful in the case where a
1239 * service is performing work on behalf of an application so that the
1240 * cost of that work can be accounted to the application.
1241 * </p>
1242 *
1243 * @param ws The work source, or null if none.
1244 */
1245 public void setWorkSource(WorkSource ws) {
1246 synchronized (mToken) {
1247 if (ws != null && ws.size() == 0) {
1248 ws = null;
1249 }
1250
1251 final boolean changed;
1252 if (ws == null) {
1253 changed = mWorkSource != null;
1254 mWorkSource = null;
1255 } else if (mWorkSource == null) {
1256 changed = true;
1257 mWorkSource = new WorkSource(ws);
1258 } else {
1259 changed = mWorkSource.diff(ws);
1260 if (changed) {
1261 mWorkSource.set(ws);
1262 }
1263 }
1264
1265 if (changed && mHeld) {
1266 try {
Dianne Hackborn4590e522014-03-24 13:36:46 -07001267 mService.updateWakeLockWorkSource(mToken, mWorkSource, mHistoryTag);
Jeff Brown1244cda2012-06-19 16:44:46 -07001268 } catch (RemoteException e) {
1269 }
1270 }
1271 }
1272 }
1273
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001274 /** @hide */
1275 public void setTag(String tag) {
1276 mTag = tag;
1277 }
1278
1279 /** @hide */
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -08001280 public void setHistoryTag(String tag) {
1281 mHistoryTag = tag;
1282 }
1283
1284 /** @hide */
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001285 public void setUnimportantForLogging(boolean state) {
1286 if (state) mFlags |= UNIMPORTANT_FOR_LOGGING;
1287 else mFlags &= ~UNIMPORTANT_FOR_LOGGING;
1288 }
1289
Jeff Brown1244cda2012-06-19 16:44:46 -07001290 @Override
1291 public String toString() {
1292 synchronized (mToken) {
1293 return "WakeLock{"
1294 + Integer.toHexString(System.identityHashCode(this))
1295 + " held=" + mHeld + ", refCount=" + mCount + "}";
1296 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001297 }
1298 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001299}