blob: 736762f67ff31157515e2c707af0f97ec80e6b72 [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
Jeff Brown96307042012-07-27 15:51:34 -070019import android.content.Context;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080020import android.util.Log;
21
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022/**
Jeff Brown1244cda2012-06-19 16:44:46 -070023 * This class gives you control of the power state of the device.
24 *
25 * <p>
26 * <b>Device battery life will be significantly affected by the use of this API.</b>
27 * Do not acquire {@link WakeLock}s unless you really need them, use the minimum levels
28 * possible, and be sure to release them as soon as possible.
29 * </p><p>
30 * You can obtain an instance of this class by calling
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031 * {@link android.content.Context#getSystemService(java.lang.String) Context.getSystemService()}.
Jeff Brown1244cda2012-06-19 16:44:46 -070032 * </p><p>
33 * The primary API you'll use is {@link #newWakeLock(int, String) newWakeLock()}.
34 * This will create a {@link PowerManager.WakeLock} object. You can then use methods
35 * on the wake lock object to control the power state of the device.
36 * </p><p>
37 * In practice it's quite simple:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080038 * {@samplecode
39 * PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
40 * PowerManager.WakeLock wl = pm.newWakeLock(PowerManager.SCREEN_DIM_WAKE_LOCK, "My Tag");
41 * wl.acquire();
42 * ..screen will stay on during this section..
43 * wl.release();
44 * }
Jeff Brown1244cda2012-06-19 16:44:46 -070045 * </p><p>
Jeff Brown96307042012-07-27 15:51:34 -070046 * The following wake lock levels are defined, with varying effects on system power.
47 * <i>These levels are mutually exclusive - you may only specify one of them.</i>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080048 *
Dirk Dougherty7b9a2882012-10-28 12:07:08 -070049 * <table>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080050 * <tr><th>Flag Value</th>
51 * <th>CPU</th> <th>Screen</th> <th>Keyboard</th></tr>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052 *
Dirk Dougherty7b9a2882012-10-28 12:07:08 -070053 * <tr><td>{@link #PARTIAL_WAKE_LOCK}</td>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054 * <td>On*</td> <td>Off</td> <td>Off</td>
55 * </tr>
56 *
Dirk Dougherty7b9a2882012-10-28 12:07:08 -070057 * <tr><td>{@link #SCREEN_DIM_WAKE_LOCK}</td>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058 * <td>On</td> <td>Dim</td> <td>Off</td>
59 * </tr>
60 *
Dirk Dougherty7b9a2882012-10-28 12:07:08 -070061 * <tr><td>{@link #SCREEN_BRIGHT_WAKE_LOCK}</td>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080062 * <td>On</td> <td>Bright</td> <td>Off</td>
63 * </tr>
64 *
Dirk Dougherty7b9a2882012-10-28 12:07:08 -070065 * <tr><td>{@link #FULL_WAKE_LOCK}</td>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080066 * <td>On</td> <td>Bright</td> <td>Bright</td>
67 * </tr>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080068 * </table>
Jeff Brown1244cda2012-06-19 16:44:46 -070069 * </p><p>
70 * *<i>If you hold a partial wake lock, the CPU will continue to run, regardless of any
71 * display timeouts or the state of the screen and even after the user presses the power button.
72 * In all other wake locks, the CPU will run, but the user can still put the device to sleep
73 * using the power button.</i>
74 * </p><p>
75 * In addition, you can add two more flags, which affect behavior of the screen only.
Dirk Dougherty7b9a2882012-10-28 12:07:08 -070076 * <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 -080077 *
Dirk Dougherty7b9a2882012-10-28 12:07:08 -070078 * <table>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080079 * <tr><th>Flag Value</th> <th>Description</th></tr>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080080 *
Dirk Dougherty7b9a2882012-10-28 12:07:08 -070081 * <tr><td>{@link #ACQUIRE_CAUSES_WAKEUP}</td>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080082 * <td>Normal wake locks don't actually turn on the illumination. Instead, they cause
83 * the illumination to remain on once it turns on (e.g. from user activity). This flag
84 * will force the screen and/or keyboard to turn on immediately, when the WakeLock is
85 * acquired. A typical use would be for notifications which are important for the user to
86 * see immediately.</td>
87 * </tr>
88 *
Dirk Dougherty7b9a2882012-10-28 12:07:08 -070089 * <tr><td>{@link #ON_AFTER_RELEASE}</td>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080090 * <td>If this flag is set, the user activity timer will be reset when the WakeLock is
91 * released, causing the illumination to remain on a bit longer. This can be used to
92 * reduce flicker if you are cycling between wake lock conditions.</td>
93 * </tr>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080094 * </table>
Dirk Dougherty7b9a2882012-10-28 12:07:08 -070095 * <p>
Kenny Rootd710fb52011-03-15 17:39:45 -070096 * Any application using a WakeLock must request the {@code android.permission.WAKE_LOCK}
97 * permission in an {@code &lt;uses-permission&gt;} element of the application's manifest.
Jeff Brown1244cda2012-06-19 16:44:46 -070098 * </p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080099 */
Jeff Brown1244cda2012-06-19 16:44:46 -0700100public final class PowerManager {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800101 private static final String TAG = "PowerManager";
Jeff Brown1244cda2012-06-19 16:44:46 -0700102
Jeff Brown155fc702012-07-27 12:12:15 -0700103 /* NOTE: Wake lock levels were previously defined as a bit field, except that only a few
104 * combinations were actually supported so the bit field was removed. This explains
105 * why the numbering scheme is so odd. If adding a new wake lock level, any unused
106 * value can be used.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800107 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800108
109 /**
Jeff Brown1244cda2012-06-19 16:44:46 -0700110 * Wake lock level: Ensures that the CPU is running; the screen and keyboard
111 * backlight will be allowed to go off.
Jeff Brown155fc702012-07-27 12:12:15 -0700112 * <p>
113 * If the user presses the power button, then the screen will be turned off
114 * but the CPU will be kept on until all partial wake locks have been released.
Jeff Brown1244cda2012-06-19 16:44:46 -0700115 * </p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800116 */
Jeff Brown155fc702012-07-27 12:12:15 -0700117 public static final int PARTIAL_WAKE_LOCK = 0x00000001;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800118
119 /**
Jeff Brown155fc702012-07-27 12:12:15 -0700120 * Wake lock level: Ensures that the screen is on (but may be dimmed);
Jeff Brown1244cda2012-06-19 16:44:46 -0700121 * the keyboard backlight will be allowed to go off.
Jeff Brown155fc702012-07-27 12:12:15 -0700122 * <p>
123 * If the user presses the power button, then the {@link #SCREEN_DIM_WAKE_LOCK} will be
124 * implicitly released by the system, causing both the screen and the CPU to be turned off.
125 * Contrast with {@link #PARTIAL_WAKE_LOCK}.
126 * </p>
Jeff Brown1244cda2012-06-19 16:44:46 -0700127 *
Dianne Hackborn9567a662011-04-19 18:44:03 -0700128 * @deprecated Most applications should use
129 * {@link android.view.WindowManager.LayoutParams#FLAG_KEEP_SCREEN_ON} instead
130 * of this type of wake lock, as it will be correctly managed by the platform
131 * as the user moves between applications and doesn't require a special permission.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800132 */
Dianne Hackborn9567a662011-04-19 18:44:03 -0700133 @Deprecated
Jeff Brown155fc702012-07-27 12:12:15 -0700134 public static final int SCREEN_DIM_WAKE_LOCK = 0x00000006;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800135
136 /**
Jeff Brown155fc702012-07-27 12:12:15 -0700137 * Wake lock level: Ensures that the screen is on at full brightness;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800138 * the keyboard backlight will be allowed to go off.
Jeff Brown155fc702012-07-27 12:12:15 -0700139 * <p>
140 * If the user presses the power button, then the {@link #SCREEN_BRIGHT_WAKE_LOCK} will be
141 * implicitly released by the system, causing both the screen and the CPU to be turned off.
142 * Contrast with {@link #PARTIAL_WAKE_LOCK}.
143 * </p>
144 *
145 * @deprecated Most applications should use
146 * {@link android.view.WindowManager.LayoutParams#FLAG_KEEP_SCREEN_ON} instead
147 * of this type of wake lock, as it will be correctly managed by the platform
148 * as the user moves between applications and doesn't require a special permission.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800149 */
Jeff Brown155fc702012-07-27 12:12:15 -0700150 @Deprecated
151 public static final int SCREEN_BRIGHT_WAKE_LOCK = 0x0000000a;
152
153 /**
154 * Wake lock level: Ensures that the screen and keyboard backlight are on at
155 * full brightness.
156 * <p>
157 * If the user presses the power button, then the {@link #FULL_WAKE_LOCK} will be
158 * implicitly released by the system, causing both the screen and the CPU to be turned off.
159 * Contrast with {@link #PARTIAL_WAKE_LOCK}.
160 * </p>
161 *
162 * @deprecated Most applications should use
163 * {@link android.view.WindowManager.LayoutParams#FLAG_KEEP_SCREEN_ON} instead
164 * of this type of wake lock, as it will be correctly managed by the platform
165 * as the user moves between applications and doesn't require a special permission.
166 */
167 @Deprecated
168 public static final int FULL_WAKE_LOCK = 0x0000001a;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800169
170 /**
Jeff Brown1244cda2012-06-19 16:44:46 -0700171 * Wake lock level: Turns the screen off when the proximity sensor activates.
172 * <p>
Jeff Brown93cbbb22012-10-04 13:18:36 -0700173 * If the proximity sensor detects that an object is nearby, the screen turns off
174 * immediately. Shortly after the object moves away, the screen turns on again.
175 * </p><p>
176 * A proximity wake lock does not prevent the device from falling asleep
177 * unlike {@link #FULL_WAKE_LOCK}, {@link #SCREEN_BRIGHT_WAKE_LOCK} and
178 * {@link #SCREEN_DIM_WAKE_LOCK}. If there is no user activity and no other
179 * wake locks are held, then the device will fall asleep (and lock) as usual.
180 * However, the device will not fall asleep while the screen has been turned off
181 * by the proximity sensor because it effectively counts as ongoing user activity.
182 * </p><p>
Jeff Brown96307042012-07-27 15:51:34 -0700183 * Since not all devices have proximity sensors, use {@link #isWakeLockLevelSupported}
Jeff Brown1244cda2012-06-19 16:44:46 -0700184 * to determine whether this wake lock level is supported.
Craig Mautner6edb6db2012-11-20 18:21:12 -0800185 * </p><p>
186 * Cannot be used with {@link #ACQUIRE_CAUSES_WAKEUP}.
Jeff Brown1244cda2012-06-19 16:44:46 -0700187 * </p>
Mike Lockwoodbc706a02009-07-27 13:50:57 -0700188 *
189 * {@hide}
190 */
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 Brown155fc702012-07-27 12:12:15 -0700194 * Mask for the wake lock level component of a combined wake lock level and flags integer.
Mike Lockwood0e39ea82009-11-18 15:37:10 -0500195 *
Jeff Brown155fc702012-07-27 12:12:15 -0700196 * @hide
Mike Lockwood0e39ea82009-11-18 15:37:10 -0500197 */
Jeff Brown155fc702012-07-27 12:12:15 -0700198 public static final int WAKE_LOCK_LEVEL_MASK = 0x0000ffff;
Mike Lockwood0e39ea82009-11-18 15:37:10 -0500199
200 /**
Jeff Brown1244cda2012-06-19 16:44:46 -0700201 * Wake lock flag: Turn the screen on when the wake lock is acquired.
202 * <p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800203 * Normally wake locks don't actually wake the device, they just cause
Jeff Brown1244cda2012-06-19 16:44:46 -0700204 * the screen to remain on once it's already on. Think of the video player
205 * application as the normal behavior. Notifications that pop up and want
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800206 * the device to be on are the exception; use this flag to be like them.
Jeff Brown1244cda2012-06-19 16:44:46 -0700207 * </p><p>
208 * Cannot be used with {@link #PARTIAL_WAKE_LOCK}.
209 * </p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800210 */
Jeff Brown155fc702012-07-27 12:12:15 -0700211 public static final int ACQUIRE_CAUSES_WAKEUP = 0x10000000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800212
213 /**
Jeff Brown1244cda2012-06-19 16:44:46 -0700214 * Wake lock flag: When this wake lock is released, poke the user activity timer
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800215 * so the screen stays on for a little longer.
216 * <p>
Jeff Brown1244cda2012-06-19 16:44:46 -0700217 * Will not turn the screen on if it is not already on.
218 * See {@link #ACQUIRE_CAUSES_WAKEUP} if you want that.
219 * </p><p>
220 * Cannot be used with {@link #PARTIAL_WAKE_LOCK}.
221 * </p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800222 */
Jeff Brown155fc702012-07-27 12:12:15 -0700223 public static final int ON_AFTER_RELEASE = 0x20000000;
224
225 /**
226 * Flag for {@link WakeLock#release release(int)} to defer releasing a
227 * {@link #WAKE_BIT_PROXIMITY_SCREEN_OFF} wake lock until the proximity sensor returns
228 * a negative value.
229 *
230 * {@hide}
231 */
232 public static final int WAIT_FOR_PROXIMITY_NEGATIVE = 1;
Jeff Brown7304c342012-05-11 18:42:42 -0700233
234 /**
Jeff Brown7304c342012-05-11 18:42:42 -0700235 * Brightness value for fully on.
236 * @hide
237 */
238 public static final int BRIGHTNESS_ON = 255;
239
240 /**
Jeff Brown7304c342012-05-11 18:42:42 -0700241 * Brightness value for fully off.
242 * @hide
243 */
244 public static final int BRIGHTNESS_OFF = 0;
245
Jeff Brownb696de52012-07-27 15:38:50 -0700246 // Note: Be sure to update android.os.BatteryStats and PowerManager.h
247 // if adding or modifying user activity event constants.
248
249 /**
250 * User activity event type: Unspecified event type.
251 * @hide
252 */
253 public static final int USER_ACTIVITY_EVENT_OTHER = 0;
254
255 /**
256 * User activity event type: Button or key pressed or released.
257 * @hide
258 */
259 public static final int USER_ACTIVITY_EVENT_BUTTON = 1;
260
261 /**
262 * User activity event type: Touch down, move or up.
263 * @hide
264 */
265 public static final int USER_ACTIVITY_EVENT_TOUCH = 2;
266
Jeff Brown96307042012-07-27 15:51:34 -0700267 /**
268 * User activity flag: Do not restart the user activity timeout or brighten
269 * the display in response to user activity if it is already dimmed.
270 * @hide
271 */
272 public static final int USER_ACTIVITY_FLAG_NO_CHANGE_LIGHTS = 1 << 0;
273
274 /**
Jeff Brown96307042012-07-27 15:51:34 -0700275 * Go to sleep reason code: Going to sleep due by user request.
276 * @hide
277 */
278 public static final int GO_TO_SLEEP_REASON_USER = 0;
279
280 /**
281 * Go to sleep reason code: Going to sleep due by request of the
282 * device administration policy.
283 * @hide
284 */
285 public static final int GO_TO_SLEEP_REASON_DEVICE_ADMIN = 1;
286
287 /**
288 * Go to sleep reason code: Going to sleep due to a screen timeout.
289 * @hide
290 */
291 public static final int GO_TO_SLEEP_REASON_TIMEOUT = 2;
292
293 final Context mContext;
Jeff Brown1244cda2012-06-19 16:44:46 -0700294 final IPowerManager mService;
295 final Handler mHandler;
296
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800297 /**
Jeff Brown1244cda2012-06-19 16:44:46 -0700298 * {@hide}
299 */
Jeff Brown96307042012-07-27 15:51:34 -0700300 public PowerManager(Context context, IPowerManager service, Handler handler) {
301 mContext = context;
Jeff Brown1244cda2012-06-19 16:44:46 -0700302 mService = service;
303 mHandler = handler;
304 }
305
306 /**
Jeff Brown96307042012-07-27 15:51:34 -0700307 * Gets the minimum supported screen brightness setting.
308 * The screen may be allowed to become dimmer than this value but
309 * this is the minimum value that can be set by the user.
310 * @hide
311 */
312 public int getMinimumScreenBrightnessSetting() {
313 return mContext.getResources().getInteger(
Jeff Brownf9bba132012-08-21 22:04:02 -0700314 com.android.internal.R.integer.config_screenBrightnessSettingMinimum);
Jeff Brown96307042012-07-27 15:51:34 -0700315 }
316
317 /**
318 * Gets the maximum supported screen brightness setting.
319 * The screen may be allowed to become dimmer than this value but
320 * this is the maximum value that can be set by the user.
321 * @hide
322 */
323 public int getMaximumScreenBrightnessSetting() {
Jeff Brownf9bba132012-08-21 22:04:02 -0700324 return mContext.getResources().getInteger(
325 com.android.internal.R.integer.config_screenBrightnessSettingMaximum);
Jeff Brown96307042012-07-27 15:51:34 -0700326 }
327
328 /**
329 * Gets the default screen brightness setting.
330 * @hide
331 */
332 public int getDefaultScreenBrightnessSetting() {
Jeff Brownf9bba132012-08-21 22:04:02 -0700333 return mContext.getResources().getInteger(
334 com.android.internal.R.integer.config_screenBrightnessSettingDefault);
Jeff Brown96307042012-07-27 15:51:34 -0700335 }
336
337 /**
Jeff Brown631938f2012-09-08 15:11:11 -0700338 * Returns true if the screen auto-brightness adjustment setting should
339 * be available in the UI. This setting is experimental and disabled by default.
340 * @hide
341 */
342 public static boolean useScreenAutoBrightnessAdjustmentFeature() {
343 return SystemProperties.getBoolean("persist.power.useautobrightadj", false);
344 }
345
346 /**
Jeff Browndb212842012-10-01 14:33:09 -0700347 * Returns true if the twilight service should be used to adjust screen brightness
348 * policy. This setting is experimental and disabled by default.
349 * @hide
350 */
351 public static boolean useTwilightAdjustmentFeature() {
352 return SystemProperties.getBoolean("persist.power.usetwilightadj", false);
353 }
354
355 /**
Jeff Brown1244cda2012-06-19 16:44:46 -0700356 * Creates a new wake lock with the specified level and flags.
Kenny Rootd710fb52011-03-15 17:39:45 -0700357 * <p>
Jeff Brown1244cda2012-06-19 16:44:46 -0700358 * The {@code levelAndFlags} parameter specifies a wake lock level and optional flags
359 * combined using the logical OR operator.
360 * </p><p>
361 * The wake lock levels are: {@link #PARTIAL_WAKE_LOCK},
362 * {@link #FULL_WAKE_LOCK}, {@link #SCREEN_DIM_WAKE_LOCK}
363 * and {@link #SCREEN_BRIGHT_WAKE_LOCK}. Exactly one wake lock level must be
364 * specified as part of the {@code levelAndFlags} parameter.
365 * </p><p>
366 * The wake lock flags are: {@link #ACQUIRE_CAUSES_WAKEUP}
367 * and {@link #ON_AFTER_RELEASE}. Multiple flags can be combined as part of the
368 * {@code levelAndFlags} parameters.
369 * </p><p>
370 * Call {@link WakeLock#acquire() acquire()} on the object to acquire the
371 * wake lock, and {@link WakeLock#release release()} when you are done.
372 * </p><p>
373 * {@samplecode
374 * PowerManager pm = (PowerManager)mContext.getSystemService(
375 * Context.POWER_SERVICE);
376 * PowerManager.WakeLock wl = pm.newWakeLock(
377 * PowerManager.SCREEN_DIM_WAKE_LOCK
378 * | PowerManager.ON_AFTER_RELEASE,
379 * TAG);
380 * wl.acquire();
381 * // ... do work...
382 * wl.release();
383 * }
384 * </p><p>
385 * Although a wake lock can be created without special permissions,
386 * the {@link android.Manifest.permission#WAKE_LOCK} permission is
387 * required to actually acquire or release the wake lock that is returned.
388 * </p><p class="note">
389 * If using this to keep the screen on, you should strongly consider using
390 * {@link android.view.WindowManager.LayoutParams#FLAG_KEEP_SCREEN_ON} instead.
391 * This window flag will be correctly managed by the platform
392 * as the user moves between applications and doesn't require a special permission.
393 * </p>
394 *
395 * @param levelAndFlags Combination of wake lock level and flag values defining
396 * the requested behavior of the WakeLock.
397 * @param tag Your class name (or other tag) for debugging purposes.
398 *
399 * @see WakeLock#acquire()
400 * @see WakeLock#release()
401 * @see #PARTIAL_WAKE_LOCK
402 * @see #FULL_WAKE_LOCK
403 * @see #SCREEN_DIM_WAKE_LOCK
404 * @see #SCREEN_BRIGHT_WAKE_LOCK
405 * @see #ACQUIRE_CAUSES_WAKEUP
406 * @see #ON_AFTER_RELEASE
407 */
408 public WakeLock newWakeLock(int levelAndFlags, String tag) {
Jeff Brown155fc702012-07-27 12:12:15 -0700409 validateWakeLockParameters(levelAndFlags, tag);
410 return new WakeLock(levelAndFlags, tag);
411 }
412
413 /** @hide */
414 public static void validateWakeLockParameters(int levelAndFlags, String tag) {
415 switch (levelAndFlags & WAKE_LOCK_LEVEL_MASK) {
416 case PARTIAL_WAKE_LOCK:
417 case SCREEN_DIM_WAKE_LOCK:
418 case SCREEN_BRIGHT_WAKE_LOCK:
419 case FULL_WAKE_LOCK:
420 case PROXIMITY_SCREEN_OFF_WAKE_LOCK:
421 break;
422 default:
423 throw new IllegalArgumentException("Must specify a valid wake lock level.");
Jeff Brown1244cda2012-06-19 16:44:46 -0700424 }
425 if (tag == null) {
426 throw new IllegalArgumentException("The tag must not be null.");
427 }
Jeff Brown1244cda2012-06-19 16:44:46 -0700428 }
429
430 /**
431 * Notifies the power manager that user activity happened.
432 * <p>
Jeff Brown96307042012-07-27 15:51:34 -0700433 * Resets the auto-off timer and brightens the screen if the device
434 * is not asleep. This is what happens normally when a key or the touch
435 * screen is pressed or when some other user activity occurs.
436 * This method does not wake up the device if it has been put to sleep.
Jeff Brown1244cda2012-06-19 16:44:46 -0700437 * </p><p>
438 * Requires the {@link android.Manifest.permission#DEVICE_POWER} permission.
439 * </p>
440 *
441 * @param when The time of the user activity, in the {@link SystemClock#uptimeMillis()}
Jeff Brown62c82e42012-09-26 01:30:41 -0700442 * time base. This timestamp is used to correctly order the user activity request with
Jeff Brown1244cda2012-06-19 16:44:46 -0700443 * other power management functions. It should be set
444 * to the timestamp of the input event that caused the user activity.
445 * @param noChangeLights If true, does not cause the keyboard backlight to turn on
446 * because of this event. This is set when the power key is pressed.
447 * We want the device to stay on while the button is down, but we're about
448 * to turn off the screen so we don't want the keyboard backlight to turn on again.
449 * Otherwise the lights flash on and then off and it looks weird.
Jeff Brown96307042012-07-27 15:51:34 -0700450 *
451 * @see #wakeUp
452 * @see #goToSleep
Jeff Brown1244cda2012-06-19 16:44:46 -0700453 */
454 public void userActivity(long when, boolean noChangeLights) {
455 try {
Jeff Brown96307042012-07-27 15:51:34 -0700456 mService.userActivity(when, USER_ACTIVITY_EVENT_OTHER,
457 noChangeLights ? USER_ACTIVITY_FLAG_NO_CHANGE_LIGHTS : 0);
Jeff Brown1244cda2012-06-19 16:44:46 -0700458 } catch (RemoteException e) {
459 }
460 }
461
462 /**
463 * Forces the device to go to sleep.
464 * <p>
Jeff Brown96307042012-07-27 15:51:34 -0700465 * Overrides all the wake locks that are held.
466 * This is what happens when the power key is pressed to turn off the screen.
Jeff Brown1244cda2012-06-19 16:44:46 -0700467 * </p><p>
468 * Requires the {@link android.Manifest.permission#DEVICE_POWER} permission.
469 * </p>
470 *
471 * @param time The time when the request to go to sleep was issued, in the
472 * {@link SystemClock#uptimeMillis()} time base. This timestamp is used to correctly
Jeff Brown62c82e42012-09-26 01:30:41 -0700473 * order the go to sleep request with other power management functions. It should be set
Jeff Brown1244cda2012-06-19 16:44:46 -0700474 * to the timestamp of the input event that caused the request to go to sleep.
Jeff Brown96307042012-07-27 15:51:34 -0700475 *
476 * @see #userActivity
477 * @see #wakeUp
Jeff Brown1244cda2012-06-19 16:44:46 -0700478 */
479 public void goToSleep(long time) {
480 try {
Jeff Brown96307042012-07-27 15:51:34 -0700481 mService.goToSleep(time, GO_TO_SLEEP_REASON_USER);
482 } catch (RemoteException e) {
483 }
484 }
485
486 /**
487 * Forces the device to wake up from sleep.
488 * <p>
489 * If the device is currently asleep, wakes it up, otherwise does nothing.
490 * This is what happens when the power key is pressed to turn on the screen.
491 * </p><p>
492 * Requires the {@link android.Manifest.permission#DEVICE_POWER} permission.
493 * </p>
494 *
495 * @param time The time when the request to wake up was issued, in the
496 * {@link SystemClock#uptimeMillis()} time base. This timestamp is used to correctly
Jeff Brown62c82e42012-09-26 01:30:41 -0700497 * order the wake up request with other power management functions. It should be set
Jeff Brown96307042012-07-27 15:51:34 -0700498 * to the timestamp of the input event that caused the request to wake up.
499 *
500 * @see #userActivity
501 * @see #goToSleep
502 */
503 public void wakeUp(long time) {
504 try {
505 mService.wakeUp(time);
Jeff Brown1244cda2012-06-19 16:44:46 -0700506 } catch (RemoteException e) {
507 }
508 }
509
510 /**
Jeff Brown62c82e42012-09-26 01:30:41 -0700511 * Forces the device to start napping.
512 * <p>
513 * If the device is currently awake, starts dreaming, otherwise does nothing.
514 * When the dream ends or if the dream cannot be started, the device will
515 * either wake up or go to sleep depending on whether there has been recent
516 * user activity.
517 * </p><p>
518 * Requires the {@link android.Manifest.permission#DEVICE_POWER} permission.
519 * </p>
520 *
521 * @param time The time when the request to nap was issued, in the
522 * {@link SystemClock#uptimeMillis()} time base. This timestamp is used to correctly
523 * order the nap request with other power management functions. It should be set
524 * to the timestamp of the input event that caused the request to nap.
525 *
526 * @see #wakeUp
527 * @see #goToSleep
528 *
529 * @hide
530 */
531 public void nap(long time) {
532 try {
533 mService.nap(time);
534 } catch (RemoteException e) {
535 }
536 }
537
538 /**
Jeff Brown1244cda2012-06-19 16:44:46 -0700539 * Sets the brightness of the backlights (screen, keyboard, button).
540 * <p>
541 * Requires the {@link android.Manifest.permission#DEVICE_POWER} permission.
542 * </p>
543 *
544 * @param brightness The brightness value from 0 to 255.
545 *
546 * {@hide}
547 */
548 public void setBacklightBrightness(int brightness) {
549 try {
Jeff Brown96307042012-07-27 15:51:34 -0700550 mService.setTemporaryScreenBrightnessSettingOverride(brightness);
Jeff Brown1244cda2012-06-19 16:44:46 -0700551 } catch (RemoteException e) {
552 }
553 }
554
555 /**
Jeff Brown96307042012-07-27 15:51:34 -0700556 * Returns true if the specified wake lock level is supported.
Jeff Brown1244cda2012-06-19 16:44:46 -0700557 *
Jeff Brown96307042012-07-27 15:51:34 -0700558 * @param level The wake lock level to check.
559 * @return True if the specified wake lock level is supported.
Jeff Brown1244cda2012-06-19 16:44:46 -0700560 *
561 * {@hide}
562 */
Jeff Brown96307042012-07-27 15:51:34 -0700563 public boolean isWakeLockLevelSupported(int level) {
Jeff Brown1244cda2012-06-19 16:44:46 -0700564 try {
Jeff Brown96307042012-07-27 15:51:34 -0700565 return mService.isWakeLockLevelSupported(level);
Jeff Brown1244cda2012-06-19 16:44:46 -0700566 } catch (RemoteException e) {
Jeff Brown96307042012-07-27 15:51:34 -0700567 return false;
Jeff Brown1244cda2012-06-19 16:44:46 -0700568 }
569 }
570
571 /**
572 * Returns whether the screen is currently on.
573 * <p>
574 * Only indicates whether the screen is on. The screen could be either bright or dim.
575 * </p><p>
576 * {@samplecode
577 * PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
578 * boolean isScreenOn = pm.isScreenOn();
579 * }
580 * </p>
581 *
582 * @return whether the screen is on (bright or dim).
583 */
584 public boolean isScreenOn() {
585 try {
586 return mService.isScreenOn();
587 } catch (RemoteException e) {
588 return false;
589 }
590 }
591
592 /**
593 * Reboot the device. Will not return if the reboot is successful.
594 * <p>
595 * Requires the {@link android.Manifest.permission#REBOOT} permission.
596 * </p>
597 *
598 * @param reason code to pass to the kernel (e.g., "recovery") to
599 * request special boot modes, or null.
600 */
601 public void reboot(String reason) {
602 try {
Dianne Hackbornc428aae2012-10-03 16:38:22 -0700603 mService.reboot(false, reason, true);
Jeff Brown1244cda2012-06-19 16:44:46 -0700604 } catch (RemoteException e) {
605 }
606 }
607
608 /**
609 * A wake lock is a mechanism to indicate that your application needs
610 * to have the device stay on.
Kenny Rootd710fb52011-03-15 17:39:45 -0700611 * <p>
612 * Any application using a WakeLock must request the {@code android.permission.WAKE_LOCK}
613 * permission in an {@code &lt;uses-permission&gt;} element of the application's manifest.
Jeff Brown1244cda2012-06-19 16:44:46 -0700614 * Obtain a wake lock by calling {@link PowerManager#newWakeLock(int, String)}.
615 * </p><p>
616 * Call {@link #acquire()} to acquire the wake lock and force the device to stay
617 * on at the level that was requested when the wake lock was created.
618 * </p><p>
619 * Call {@link #release()} when you are done and don't need the lock anymore.
620 * It is very important to do this as soon as possible to avoid running down the
621 * device's battery excessively.
622 * </p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800623 */
Jeff Brown1244cda2012-06-19 16:44:46 -0700624 public final class WakeLock {
625 private final int mFlags;
626 private final String mTag;
627 private final IBinder mToken;
628 private int mCount;
629 private boolean mRefCounted = true;
630 private boolean mHeld;
631 private WorkSource mWorkSource;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800632
Jeff Brown1244cda2012-06-19 16:44:46 -0700633 private final Runnable mReleaser = new Runnable() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800634 public void run() {
635 release();
636 }
637 };
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800638
Jeff Brown1244cda2012-06-19 16:44:46 -0700639 WakeLock(int flags, String tag) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800640 mFlags = flags;
641 mTag = tag;
642 mToken = new Binder();
643 }
644
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800645 @Override
Jeff Brown1244cda2012-06-19 16:44:46 -0700646 protected void finalize() throws Throwable {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800647 synchronized (mToken) {
648 if (mHeld) {
Dan Egnor60d87622009-12-16 16:32:58 -0800649 Log.wtf(TAG, "WakeLock finalized while still held: " + mTag);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800650 try {
Mike Lockwood0e39ea82009-11-18 15:37:10 -0500651 mService.releaseWakeLock(mToken, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800652 } catch (RemoteException e) {
653 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800654 }
655 }
656 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800657
Jeff Brown1244cda2012-06-19 16:44:46 -0700658 /**
659 * Sets whether this WakeLock is reference counted.
660 * <p>
661 * Wake locks are reference counted by default. If a wake lock is
662 * reference counted, then each call to {@link #acquire()} must be
663 * balanced by an equal number of calls to {@link #release()}. If a wake
664 * lock is not reference counted, then one call to {@link #release()} is
665 * sufficient to undo the effect of all previous calls to {@link #acquire()}.
666 * </p>
667 *
668 * @param value True to make the wake lock reference counted, false to
669 * make the wake lock non-reference counted.
670 */
671 public void setReferenceCounted(boolean value) {
672 synchronized (mToken) {
673 mRefCounted = value;
674 }
Mike Lockwoodf5bd0922010-03-22 17:10:15 -0400675 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800676
Jeff Brown1244cda2012-06-19 16:44:46 -0700677 /**
678 * Acquires the wake lock.
679 * <p>
680 * Ensures that the device is on at the level requested when
681 * the wake lock was created.
682 * </p>
683 */
684 public void acquire() {
685 synchronized (mToken) {
686 acquireLocked();
687 }
688 }
689
690 /**
691 * Acquires the wake lock with a timeout.
692 * <p>
693 * Ensures that the device is on at the level requested when
694 * the wake lock was created. The lock will be released after the given timeout
695 * expires.
696 * </p>
697 *
698 * @param timeout The timeout after which to release the wake lock, in milliseconds.
699 */
700 public void acquire(long timeout) {
701 synchronized (mToken) {
702 acquireLocked();
703 mHandler.postDelayed(mReleaser, timeout);
704 }
705 }
706
707 private void acquireLocked() {
708 if (!mRefCounted || mCount++ == 0) {
Jeff Brownff1baef2012-07-19 15:01:17 -0700709 // Do this even if the wake lock is already thought to be held (mHeld == true)
710 // because non-reference counted wake locks are not always properly released.
711 // For example, the keyguard's wake lock might be forcibly released by the
712 // power manager without the keyguard knowing. A subsequent call to acquire
713 // should immediately acquire the wake lock once again despite never having
714 // been explicitly released by the keyguard.
Jeff Brown1244cda2012-06-19 16:44:46 -0700715 mHandler.removeCallbacks(mReleaser);
Jeff Brownff1baef2012-07-19 15:01:17 -0700716 try {
Jeff Brown96307042012-07-27 15:51:34 -0700717 mService.acquireWakeLock(mToken, mFlags, mTag, mWorkSource);
Jeff Brownff1baef2012-07-19 15:01:17 -0700718 } catch (RemoteException e) {
Jeff Brown1244cda2012-06-19 16:44:46 -0700719 }
Jeff Brownff1baef2012-07-19 15:01:17 -0700720 mHeld = true;
Jeff Brown1244cda2012-06-19 16:44:46 -0700721 }
722 }
723
724 /**
725 * Releases the wake lock.
726 * <p>
727 * This method releases your claim to the CPU or screen being on.
728 * The screen may turn off shortly after you release the wake lock, or it may
729 * not if there are other wake locks still held.
730 * </p>
731 */
732 public void release() {
733 release(0);
734 }
735
736 /**
737 * Releases the wake lock with flags to modify the release behavior.
738 * <p>
739 * This method releases your claim to the CPU or screen being on.
740 * The screen may turn off shortly after you release the wake lock, or it may
741 * not if there are other wake locks still held.
742 * </p>
743 *
744 * @param flags Combination of flag values to modify the release behavior.
745 * Currently only {@link #WAIT_FOR_PROXIMITY_NEGATIVE} is supported.
746 *
747 * {@hide}
748 */
749 public void release(int flags) {
750 synchronized (mToken) {
751 if (!mRefCounted || --mCount == 0) {
752 mHandler.removeCallbacks(mReleaser);
753 if (mHeld) {
754 try {
755 mService.releaseWakeLock(mToken, flags);
756 } catch (RemoteException e) {
757 }
758 mHeld = false;
759 }
760 }
761 if (mCount < 0) {
762 throw new RuntimeException("WakeLock under-locked " + mTag);
763 }
764 }
765 }
766
767 /**
768 * Returns true if the wake lock has been acquired but not yet released.
769 *
770 * @return True if the wake lock is held.
771 */
772 public boolean isHeld() {
773 synchronized (mToken) {
774 return mHeld;
775 }
776 }
777
778 /**
779 * Sets the work source associated with the wake lock.
780 * <p>
781 * The work source is used to determine on behalf of which application
782 * the wake lock is being held. This is useful in the case where a
783 * service is performing work on behalf of an application so that the
784 * cost of that work can be accounted to the application.
785 * </p>
786 *
787 * @param ws The work source, or null if none.
788 */
789 public void setWorkSource(WorkSource ws) {
790 synchronized (mToken) {
791 if (ws != null && ws.size() == 0) {
792 ws = null;
793 }
794
795 final boolean changed;
796 if (ws == null) {
797 changed = mWorkSource != null;
798 mWorkSource = null;
799 } else if (mWorkSource == null) {
800 changed = true;
801 mWorkSource = new WorkSource(ws);
802 } else {
803 changed = mWorkSource.diff(ws);
804 if (changed) {
805 mWorkSource.set(ws);
806 }
807 }
808
809 if (changed && mHeld) {
810 try {
811 mService.updateWakeLockWorkSource(mToken, mWorkSource);
812 } catch (RemoteException e) {
813 }
814 }
815 }
816 }
817
818 @Override
819 public String toString() {
820 synchronized (mToken) {
821 return "WakeLock{"
822 + Integer.toHexString(System.identityHashCode(this))
823 + " held=" + mHeld + ", refCount=" + mCount + "}";
824 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800825 }
826 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800827}