blob: d52dd3006a36600da6a825f7234a612a06e52669 [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}
99 * permission in an {@code &lt;uses-permission&gt;} 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 Brown155fc702012-07-27 12:12:15 -0700208 * Mask for the wake lock level component of a combined wake lock level and flags integer.
Mike Lockwood0e39ea82009-11-18 15:37:10 -0500209 *
Jeff Brown155fc702012-07-27 12:12:15 -0700210 * @hide
Mike Lockwood0e39ea82009-11-18 15:37:10 -0500211 */
Jeff Brown155fc702012-07-27 12:12:15 -0700212 public static final int WAKE_LOCK_LEVEL_MASK = 0x0000ffff;
Mike Lockwood0e39ea82009-11-18 15:37:10 -0500213
214 /**
Jeff Brown1244cda2012-06-19 16:44:46 -0700215 * Wake lock flag: Turn the screen on when the wake lock is acquired.
216 * <p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800217 * Normally wake locks don't actually wake the device, they just cause
Jeff Brown1244cda2012-06-19 16:44:46 -0700218 * the screen to remain on once it's already on. Think of the video player
219 * application as the normal behavior. Notifications that pop up and want
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800220 * the device to be on are the exception; use this flag to be like them.
Jeff Brown1244cda2012-06-19 16:44:46 -0700221 * </p><p>
222 * Cannot be used with {@link #PARTIAL_WAKE_LOCK}.
223 * </p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800224 */
Jeff Brown155fc702012-07-27 12:12:15 -0700225 public static final int ACQUIRE_CAUSES_WAKEUP = 0x10000000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800226
227 /**
Jeff Brown1244cda2012-06-19 16:44:46 -0700228 * Wake lock flag: When this wake lock is released, poke the user activity timer
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800229 * so the screen stays on for a little longer.
230 * <p>
Jeff Brown1244cda2012-06-19 16:44:46 -0700231 * Will not turn the screen on if it is not already on.
232 * See {@link #ACQUIRE_CAUSES_WAKEUP} if you want that.
233 * </p><p>
234 * Cannot be used with {@link #PARTIAL_WAKE_LOCK}.
235 * </p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800236 */
Jeff Brown155fc702012-07-27 12:12:15 -0700237 public static final int ON_AFTER_RELEASE = 0x20000000;
238
239 /**
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800240 * Wake lock flag: This wake lock is not important for logging events. If a later
241 * wake lock is acquired that is important, it will be considered the one to log.
242 * @hide
243 */
244 public static final int UNIMPORTANT_FOR_LOGGING = 0x40000000;
245
246 /**
Jeff Browna71f03c2014-08-21 18:01:51 -0700247 * Flag for {@link WakeLock#release WakeLock.release(int)}: Defer releasing a
248 * {@link #PROXIMITY_SCREEN_OFF_WAKE_LOCK} wake lock until the proximity sensor
249 * indicates that an object is not in close proximity.
Jeff Brown155fc702012-07-27 12:12:15 -0700250 */
Michael Wright1208e272014-09-08 19:57:50 -0700251 public static final int RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY = 1;
Jeff Brown7304c342012-05-11 18:42:42 -0700252
253 /**
Jeff Brown7304c342012-05-11 18:42:42 -0700254 * Brightness value for fully on.
255 * @hide
256 */
257 public static final int BRIGHTNESS_ON = 255;
258
259 /**
Jeff Brown7304c342012-05-11 18:42:42 -0700260 * Brightness value for fully off.
261 * @hide
262 */
263 public static final int BRIGHTNESS_OFF = 0;
264
Jeff Brown970d4132014-07-19 11:33:47 -0700265 /**
266 * Brightness value for default policy handling by the system.
267 * @hide
268 */
269 public static final int BRIGHTNESS_DEFAULT = -1;
270
Jeff Brownb696de52012-07-27 15:38:50 -0700271 // Note: Be sure to update android.os.BatteryStats and PowerManager.h
272 // if adding or modifying user activity event constants.
273
274 /**
275 * User activity event type: Unspecified event type.
276 * @hide
277 */
Jeff Brown0a571122014-08-21 21:50:43 -0700278 @SystemApi
Jeff Brownb696de52012-07-27 15:38:50 -0700279 public static final int USER_ACTIVITY_EVENT_OTHER = 0;
280
281 /**
282 * User activity event type: Button or key pressed or released.
283 * @hide
284 */
Jeff Brown0a571122014-08-21 21:50:43 -0700285 @SystemApi
Jeff Brownb696de52012-07-27 15:38:50 -0700286 public static final int USER_ACTIVITY_EVENT_BUTTON = 1;
287
288 /**
289 * User activity event type: Touch down, move or up.
290 * @hide
291 */
Jeff Brown0a571122014-08-21 21:50:43 -0700292 @SystemApi
Jeff Brownb696de52012-07-27 15:38:50 -0700293 public static final int USER_ACTIVITY_EVENT_TOUCH = 2;
294
Jeff Brown96307042012-07-27 15:51:34 -0700295 /**
Jeff Brown0a571122014-08-21 21:50:43 -0700296 * User activity flag: If already dimmed, extend the dim timeout
297 * but do not brighten. This flag is useful for keeping the screen on
298 * a little longer without causing a visible change such as when
299 * the power key is pressed.
Jeff Brown96307042012-07-27 15:51:34 -0700300 * @hide
301 */
Jeff Brown0a571122014-08-21 21:50:43 -0700302 @SystemApi
Jeff Brown96307042012-07-27 15:51:34 -0700303 public static final int USER_ACTIVITY_FLAG_NO_CHANGE_LIGHTS = 1 << 0;
304
305 /**
Jeff Brown0a571122014-08-21 21:50:43 -0700306 * User activity flag: Note the user activity as usual but do not
307 * reset the user activity timeout. This flag is useful for applying
308 * user activity power hints when interacting with the device indirectly
309 * on a secondary screen while allowing the primary screen to go to sleep.
310 * @hide
311 */
312 @SystemApi
313 public static final int USER_ACTIVITY_FLAG_INDIRECT = 1 << 1;
314
315 /**
Jeff Brownc12035c2014-08-13 18:52:25 -0700316 * Go to sleep reason code: Going to sleep due by application request.
Jeff Brown96307042012-07-27 15:51:34 -0700317 * @hide
318 */
Jeff Brownc12035c2014-08-13 18:52:25 -0700319 public static final int GO_TO_SLEEP_REASON_APPLICATION = 0;
Jeff Brown96307042012-07-27 15:51:34 -0700320
321 /**
322 * Go to sleep reason code: Going to sleep due by request of the
323 * device administration policy.
324 * @hide
325 */
326 public static final int GO_TO_SLEEP_REASON_DEVICE_ADMIN = 1;
327
328 /**
329 * Go to sleep reason code: Going to sleep due to a screen timeout.
330 * @hide
331 */
332 public static final int GO_TO_SLEEP_REASON_TIMEOUT = 2;
333
Doug Zongker3b0218b2014-01-14 12:29:06 -0800334 /**
Jeff Brownc12035c2014-08-13 18:52:25 -0700335 * Go to sleep reason code: Going to sleep due to the lid switch being closed.
336 * @hide
337 */
338 public static final int GO_TO_SLEEP_REASON_LID_SWITCH = 3;
339
340 /**
341 * Go to sleep reason code: Going to sleep due to the power button being pressed.
342 * @hide
343 */
344 public static final int GO_TO_SLEEP_REASON_POWER_BUTTON = 4;
345
346 /**
347 * Go to sleep reason code: Going to sleep due to HDMI.
348 * @hide
349 */
350 public static final int GO_TO_SLEEP_REASON_HDMI = 5;
351
352 /**
Jeff Brown72671fb2014-08-21 21:41:09 -0700353 * Go to sleep flag: Skip dozing state and directly go to full sleep.
354 * @hide
355 */
356 public static final int GO_TO_SLEEP_FLAG_NO_DOZE = 1 << 0;
357
358 /**
Doug Zongker3b0218b2014-01-14 12:29:06 -0800359 * The value to pass as the 'reason' argument to reboot() to
360 * reboot into recovery mode (for applying system updates, doing
361 * factory resets, etc.).
362 * <p>
363 * Requires the {@link android.Manifest.permission#RECOVERY}
364 * permission (in addition to
365 * {@link android.Manifest.permission#REBOOT}).
366 * </p>
Doug Zongker183415e2014-08-12 10:18:40 -0700367 * @hide
Doug Zongker3b0218b2014-01-14 12:29:06 -0800368 */
369 public static final String REBOOT_RECOVERY = "recovery";
370
Jeff Brown96307042012-07-27 15:51:34 -0700371 final Context mContext;
Jeff Brown1244cda2012-06-19 16:44:46 -0700372 final IPowerManager mService;
373 final Handler mHandler;
374
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800375 /**
Jeff Brown1244cda2012-06-19 16:44:46 -0700376 * {@hide}
377 */
Jeff Brown96307042012-07-27 15:51:34 -0700378 public PowerManager(Context context, IPowerManager service, Handler handler) {
379 mContext = context;
Jeff Brown1244cda2012-06-19 16:44:46 -0700380 mService = service;
381 mHandler = handler;
382 }
383
384 /**
Jeff Brown96307042012-07-27 15:51:34 -0700385 * Gets the minimum supported screen brightness setting.
386 * The screen may be allowed to become dimmer than this value but
387 * this is the minimum value that can be set by the user.
388 * @hide
389 */
390 public int getMinimumScreenBrightnessSetting() {
391 return mContext.getResources().getInteger(
Jeff Brownf9bba132012-08-21 22:04:02 -0700392 com.android.internal.R.integer.config_screenBrightnessSettingMinimum);
Jeff Brown96307042012-07-27 15:51:34 -0700393 }
394
395 /**
396 * Gets the maximum supported screen brightness setting.
397 * The screen may be allowed to become dimmer than this value but
398 * this is the maximum value that can be set by the user.
399 * @hide
400 */
401 public int getMaximumScreenBrightnessSetting() {
Jeff Brownf9bba132012-08-21 22:04:02 -0700402 return mContext.getResources().getInteger(
403 com.android.internal.R.integer.config_screenBrightnessSettingMaximum);
Jeff Brown96307042012-07-27 15:51:34 -0700404 }
405
406 /**
407 * Gets the default screen brightness setting.
408 * @hide
409 */
410 public int getDefaultScreenBrightnessSetting() {
Jeff Brownf9bba132012-08-21 22:04:02 -0700411 return mContext.getResources().getInteger(
412 com.android.internal.R.integer.config_screenBrightnessSettingDefault);
Jeff Brown96307042012-07-27 15:51:34 -0700413 }
414
415 /**
Jeff Browndb212842012-10-01 14:33:09 -0700416 * Returns true if the twilight service should be used to adjust screen brightness
417 * policy. This setting is experimental and disabled by default.
418 * @hide
419 */
420 public static boolean useTwilightAdjustmentFeature() {
421 return SystemProperties.getBoolean("persist.power.usetwilightadj", false);
422 }
423
424 /**
Jeff Brown1244cda2012-06-19 16:44:46 -0700425 * Creates a new wake lock with the specified level and flags.
Kenny Rootd710fb52011-03-15 17:39:45 -0700426 * <p>
Jeff Brown1244cda2012-06-19 16:44:46 -0700427 * The {@code levelAndFlags} parameter specifies a wake lock level and optional flags
428 * combined using the logical OR operator.
429 * </p><p>
430 * The wake lock levels are: {@link #PARTIAL_WAKE_LOCK},
431 * {@link #FULL_WAKE_LOCK}, {@link #SCREEN_DIM_WAKE_LOCK}
432 * and {@link #SCREEN_BRIGHT_WAKE_LOCK}. Exactly one wake lock level must be
433 * specified as part of the {@code levelAndFlags} parameter.
434 * </p><p>
435 * The wake lock flags are: {@link #ACQUIRE_CAUSES_WAKEUP}
436 * and {@link #ON_AFTER_RELEASE}. Multiple flags can be combined as part of the
437 * {@code levelAndFlags} parameters.
438 * </p><p>
439 * Call {@link WakeLock#acquire() acquire()} on the object to acquire the
440 * wake lock, and {@link WakeLock#release release()} when you are done.
441 * </p><p>
442 * {@samplecode
443 * PowerManager pm = (PowerManager)mContext.getSystemService(
444 * Context.POWER_SERVICE);
445 * PowerManager.WakeLock wl = pm.newWakeLock(
446 * PowerManager.SCREEN_DIM_WAKE_LOCK
447 * | PowerManager.ON_AFTER_RELEASE,
448 * TAG);
449 * wl.acquire();
450 * // ... do work...
451 * wl.release();
452 * }
453 * </p><p>
454 * Although a wake lock can be created without special permissions,
455 * the {@link android.Manifest.permission#WAKE_LOCK} permission is
456 * required to actually acquire or release the wake lock that is returned.
457 * </p><p class="note">
458 * If using this to keep the screen on, you should strongly consider using
459 * {@link android.view.WindowManager.LayoutParams#FLAG_KEEP_SCREEN_ON} instead.
460 * This window flag will be correctly managed by the platform
461 * as the user moves between applications and doesn't require a special permission.
462 * </p>
463 *
464 * @param levelAndFlags Combination of wake lock level and flag values defining
465 * the requested behavior of the WakeLock.
466 * @param tag Your class name (or other tag) for debugging purposes.
467 *
468 * @see WakeLock#acquire()
469 * @see WakeLock#release()
470 * @see #PARTIAL_WAKE_LOCK
471 * @see #FULL_WAKE_LOCK
472 * @see #SCREEN_DIM_WAKE_LOCK
473 * @see #SCREEN_BRIGHT_WAKE_LOCK
Jeff Browna71f03c2014-08-21 18:01:51 -0700474 * @see #PROXIMITY_SCREEN_OFF_WAKE_LOCK
Jeff Brown1244cda2012-06-19 16:44:46 -0700475 * @see #ACQUIRE_CAUSES_WAKEUP
476 * @see #ON_AFTER_RELEASE
477 */
478 public WakeLock newWakeLock(int levelAndFlags, String tag) {
Jeff Brown155fc702012-07-27 12:12:15 -0700479 validateWakeLockParameters(levelAndFlags, tag);
Dianne Hackborn95d78532013-09-11 09:51:14 -0700480 return new WakeLock(levelAndFlags, tag, mContext.getOpPackageName());
Jeff Brown155fc702012-07-27 12:12:15 -0700481 }
482
483 /** @hide */
484 public static void validateWakeLockParameters(int levelAndFlags, String tag) {
485 switch (levelAndFlags & WAKE_LOCK_LEVEL_MASK) {
486 case PARTIAL_WAKE_LOCK:
487 case SCREEN_DIM_WAKE_LOCK:
488 case SCREEN_BRIGHT_WAKE_LOCK:
489 case FULL_WAKE_LOCK:
490 case PROXIMITY_SCREEN_OFF_WAKE_LOCK:
Jeff Brown26875502014-01-30 21:47:47 -0800491 case DOZE_WAKE_LOCK:
Jeff Brown155fc702012-07-27 12:12:15 -0700492 break;
493 default:
494 throw new IllegalArgumentException("Must specify a valid wake lock level.");
Jeff Brown1244cda2012-06-19 16:44:46 -0700495 }
496 if (tag == null) {
497 throw new IllegalArgumentException("The tag must not be null.");
498 }
Jeff Brown1244cda2012-06-19 16:44:46 -0700499 }
500
501 /**
502 * Notifies the power manager that user activity happened.
503 * <p>
Jeff Brown96307042012-07-27 15:51:34 -0700504 * Resets the auto-off timer and brightens the screen if the device
505 * is not asleep. This is what happens normally when a key or the touch
506 * screen is pressed or when some other user activity occurs.
507 * This method does not wake up the device if it has been put to sleep.
Jeff Brown1244cda2012-06-19 16:44:46 -0700508 * </p><p>
509 * Requires the {@link android.Manifest.permission#DEVICE_POWER} permission.
510 * </p>
511 *
512 * @param when The time of the user activity, in the {@link SystemClock#uptimeMillis()}
Jeff Brown62c82e42012-09-26 01:30:41 -0700513 * time base. This timestamp is used to correctly order the user activity request with
Jeff Brown1244cda2012-06-19 16:44:46 -0700514 * other power management functions. It should be set
515 * to the timestamp of the input event that caused the user activity.
516 * @param noChangeLights If true, does not cause the keyboard backlight to turn on
517 * because of this event. This is set when the power key is pressed.
518 * We want the device to stay on while the button is down, but we're about
519 * to turn off the screen so we don't want the keyboard backlight to turn on again.
520 * Otherwise the lights flash on and then off and it looks weird.
Jeff Brown96307042012-07-27 15:51:34 -0700521 *
522 * @see #wakeUp
523 * @see #goToSleep
Jeff Brown7d827512014-08-21 21:56:02 -0700524 *
525 * @removed Requires signature or system permission.
526 * @deprecated Use {@link #userActivity(long, int, int)}.
Jeff Brown1244cda2012-06-19 16:44:46 -0700527 */
Jeff Brown7d827512014-08-21 21:56:02 -0700528 @Deprecated
Jeff Brown1244cda2012-06-19 16:44:46 -0700529 public void userActivity(long when, boolean noChangeLights) {
Jeff Brown0a571122014-08-21 21:50:43 -0700530 userActivity(when, USER_ACTIVITY_EVENT_OTHER,
531 noChangeLights ? USER_ACTIVITY_FLAG_NO_CHANGE_LIGHTS : 0);
532 }
533
534 /**
535 * Notifies the power manager that user activity happened.
536 * <p>
537 * Resets the auto-off timer and brightens the screen if the device
538 * is not asleep. This is what happens normally when a key or the touch
539 * screen is pressed or when some other user activity occurs.
540 * This method does not wake up the device if it has been put to sleep.
541 * </p><p>
542 * Requires the {@link android.Manifest.permission#DEVICE_POWER} or
543 * {@link android.Manifest.permission#USER_ACTIVITY} permission.
544 * </p>
545 *
546 * @param when The time of the user activity, in the {@link SystemClock#uptimeMillis()}
547 * time base. This timestamp is used to correctly order the user activity request with
548 * other power management functions. It should be set
549 * to the timestamp of the input event that caused the user activity.
550 * @param event The user activity event.
551 * @param flags Optional user activity flags.
552 *
553 * @see #wakeUp
554 * @see #goToSleep
555 *
556 * @hide Requires signature or system permission.
557 */
558 @SystemApi
559 public void userActivity(long when, int event, int flags) {
Jeff Brown1244cda2012-06-19 16:44:46 -0700560 try {
Jeff Brown0a571122014-08-21 21:50:43 -0700561 mService.userActivity(when, event, flags);
Jeff Brown1244cda2012-06-19 16:44:46 -0700562 } catch (RemoteException e) {
563 }
564 }
565
566 /**
567 * Forces the device to go to sleep.
568 * <p>
Jeff Brown96307042012-07-27 15:51:34 -0700569 * Overrides all the wake locks that are held.
570 * This is what happens when the power key is pressed to turn off the screen.
Jeff Brown1244cda2012-06-19 16:44:46 -0700571 * </p><p>
572 * Requires the {@link android.Manifest.permission#DEVICE_POWER} permission.
573 * </p>
574 *
575 * @param time The time when the request to go to sleep was issued, in the
576 * {@link SystemClock#uptimeMillis()} time base. This timestamp is used to correctly
Jeff Brown62c82e42012-09-26 01:30:41 -0700577 * order the go to sleep request with other power management functions. It should be set
Jeff Brown1244cda2012-06-19 16:44:46 -0700578 * to the timestamp of the input event that caused the request to go to sleep.
Jeff Brown96307042012-07-27 15:51:34 -0700579 *
580 * @see #userActivity
581 * @see #wakeUp
Jeff Brown7d827512014-08-21 21:56:02 -0700582 *
583 * @removed Requires signature permission.
Jeff Brown1244cda2012-06-19 16:44:46 -0700584 */
585 public void goToSleep(long time) {
Jeff Brownc12035c2014-08-13 18:52:25 -0700586 goToSleep(time, GO_TO_SLEEP_REASON_APPLICATION, 0);
Jeff Brown6d8fd272014-05-20 21:24:38 -0700587 }
588
589 /**
Jeff Brown7d827512014-08-21 21:56:02 -0700590 * Forces the device to go to sleep.
591 * <p>
592 * Overrides all the wake locks that are held.
593 * This is what happens when the power key is pressed to turn off the screen.
594 * </p><p>
595 * Requires the {@link android.Manifest.permission#DEVICE_POWER} permission.
596 * </p>
597 *
598 * @param time The time when the request to go to sleep was issued, in the
599 * {@link SystemClock#uptimeMillis()} time base. This timestamp is used to correctly
600 * order the go to sleep request with other power management functions. It should be set
601 * to the timestamp of the input event that caused the request to go to sleep.
602 * @param reason The reason the device is going to sleep.
603 * @param flags Optional flags to apply when going to sleep.
604 *
605 * @see #userActivity
606 * @see #wakeUp
607 *
608 * @hide Requires signature permission.
Jeff Brown6d8fd272014-05-20 21:24:38 -0700609 */
610 public void goToSleep(long time, int reason, int flags) {
Jeff Brown1244cda2012-06-19 16:44:46 -0700611 try {
Jeff Brown6d8fd272014-05-20 21:24:38 -0700612 mService.goToSleep(time, reason, flags);
Jeff Brown96307042012-07-27 15:51:34 -0700613 } catch (RemoteException e) {
614 }
615 }
616
617 /**
618 * Forces the device to wake up from sleep.
619 * <p>
620 * If the device is currently asleep, wakes it up, otherwise does nothing.
621 * This is what happens when the power key is pressed to turn on the screen.
622 * </p><p>
623 * Requires the {@link android.Manifest.permission#DEVICE_POWER} permission.
624 * </p>
625 *
626 * @param time The time when the request to wake up was issued, in the
627 * {@link SystemClock#uptimeMillis()} time base. This timestamp is used to correctly
Jeff Brown62c82e42012-09-26 01:30:41 -0700628 * order the wake up request with other power management functions. It should be set
Jeff Brown96307042012-07-27 15:51:34 -0700629 * to the timestamp of the input event that caused the request to wake up.
630 *
631 * @see #userActivity
632 * @see #goToSleep
Jeff Brown7d827512014-08-21 21:56:02 -0700633 *
634 * @removed Requires signature permission.
Jeff Brown96307042012-07-27 15:51:34 -0700635 */
636 public void wakeUp(long time) {
637 try {
638 mService.wakeUp(time);
Jeff Brown1244cda2012-06-19 16:44:46 -0700639 } catch (RemoteException e) {
640 }
641 }
642
643 /**
Jeff Brown62c82e42012-09-26 01:30:41 -0700644 * Forces the device to start napping.
645 * <p>
646 * If the device is currently awake, starts dreaming, otherwise does nothing.
647 * When the dream ends or if the dream cannot be started, the device will
648 * either wake up or go to sleep depending on whether there has been recent
649 * user activity.
650 * </p><p>
651 * Requires the {@link android.Manifest.permission#DEVICE_POWER} permission.
652 * </p>
653 *
654 * @param time The time when the request to nap was issued, in the
655 * {@link SystemClock#uptimeMillis()} time base. This timestamp is used to correctly
656 * order the nap request with other power management functions. It should be set
657 * to the timestamp of the input event that caused the request to nap.
658 *
659 * @see #wakeUp
660 * @see #goToSleep
661 *
Jeff Brown7d827512014-08-21 21:56:02 -0700662 * @hide Requires signature permission.
Jeff Brown62c82e42012-09-26 01:30:41 -0700663 */
664 public void nap(long time) {
665 try {
666 mService.nap(time);
667 } catch (RemoteException e) {
668 }
669 }
670
671 /**
Jeff Browne333e672014-10-28 13:48:55 -0700672 * Boosts the brightness of the screen to maximum for a predetermined
673 * period of time. This is used to make the screen more readable in bright
674 * daylight for a short duration.
675 * <p>
676 * Requires the {@link android.Manifest.permission#DEVICE_POWER} permission.
677 * </p>
678 *
679 * @param time The time when the request to boost was issued, in the
680 * {@link SystemClock#uptimeMillis()} time base. This timestamp is used to correctly
681 * order the boost request with other power management functions. It should be set
682 * to the timestamp of the input event that caused the request to boost.
683 *
684 * @hide Requires signature permission.
685 */
686 public void boostScreenBrightness(long time) {
687 try {
688 mService.boostScreenBrightness(time);
689 } catch (RemoteException e) {
690 }
691 }
692
693 /**
Jeff Brown1244cda2012-06-19 16:44:46 -0700694 * Sets the brightness of the backlights (screen, keyboard, button).
695 * <p>
696 * Requires the {@link android.Manifest.permission#DEVICE_POWER} permission.
697 * </p>
698 *
699 * @param brightness The brightness value from 0 to 255.
700 *
Jeff Brown7d827512014-08-21 21:56:02 -0700701 * @hide Requires signature permission.
Jeff Brown1244cda2012-06-19 16:44:46 -0700702 */
703 public void setBacklightBrightness(int brightness) {
704 try {
Jeff Brown96307042012-07-27 15:51:34 -0700705 mService.setTemporaryScreenBrightnessSettingOverride(brightness);
Jeff Brown1244cda2012-06-19 16:44:46 -0700706 } catch (RemoteException e) {
707 }
708 }
709
710 /**
Jeff Brown96307042012-07-27 15:51:34 -0700711 * Returns true if the specified wake lock level is supported.
Jeff Brown1244cda2012-06-19 16:44:46 -0700712 *
Jeff Brown96307042012-07-27 15:51:34 -0700713 * @param level The wake lock level to check.
714 * @return True if the specified wake lock level is supported.
Jeff Brown1244cda2012-06-19 16:44:46 -0700715 */
Jeff Brown96307042012-07-27 15:51:34 -0700716 public boolean isWakeLockLevelSupported(int level) {
Jeff Brown1244cda2012-06-19 16:44:46 -0700717 try {
Jeff Brown96307042012-07-27 15:51:34 -0700718 return mService.isWakeLockLevelSupported(level);
Jeff Brown1244cda2012-06-19 16:44:46 -0700719 } catch (RemoteException e) {
Jeff Brown96307042012-07-27 15:51:34 -0700720 return false;
Jeff Brown1244cda2012-06-19 16:44:46 -0700721 }
722 }
723
724 /**
Jeff Brown037c33e2014-04-09 00:31:55 -0700725 * Returns true if the device is in an interactive state.
Jeff Brown1244cda2012-06-19 16:44:46 -0700726 * <p>
Jeff Brown037c33e2014-04-09 00:31:55 -0700727 * For historical reasons, the name of this method refers to the power state of
728 * the screen but it actually describes the overall interactive state of
729 * the device. This method has been replaced by {@link #isInteractive}.
Jeff Brown1244cda2012-06-19 16:44:46 -0700730 * </p><p>
Jeff Brown037c33e2014-04-09 00:31:55 -0700731 * The value returned by this method only indicates whether the device is
732 * in an interactive state which may have nothing to do with the screen being
733 * on or off. To determine the actual state of the screen,
734 * use {@link android.view.Display#getState}.
Jeff Brown1244cda2012-06-19 16:44:46 -0700735 * </p>
736 *
Jeff Brown037c33e2014-04-09 00:31:55 -0700737 * @return True if the device is in an interactive state.
738 *
739 * @deprecated Use {@link #isInteractive} instead.
Jeff Brown1244cda2012-06-19 16:44:46 -0700740 */
Jeff Brown037c33e2014-04-09 00:31:55 -0700741 @Deprecated
Jeff Brown1244cda2012-06-19 16:44:46 -0700742 public boolean isScreenOn() {
Jeff Brown037c33e2014-04-09 00:31:55 -0700743 return isInteractive();
744 }
745
746 /**
747 * Returns true if the device is in an interactive state.
748 * <p>
749 * When this method returns true, the device is awake and ready to interact
750 * with the user (although this is not a guarantee that the user is actively
751 * interacting with the device just this moment). The main screen is usually
752 * turned on while in this state. Certain features, such as the proximity
753 * sensor, may temporarily turn off the screen while still leaving the device in an
754 * interactive state. Note in particular that the device is still considered
755 * to be interactive while dreaming (since dreams can be interactive) but not
756 * when it is dozing or asleep.
757 * </p><p>
758 * When this method returns false, the device is dozing or asleep and must
759 * be awoken before it will become ready to interact with the user again. The
760 * main screen is usually turned off while in this state. Certain features,
761 * such as "ambient mode" may cause the main screen to remain on (albeit in a
762 * low power state) to display system-provided content while the device dozes.
763 * </p><p>
764 * The system will send a {@link android.content.Intent#ACTION_SCREEN_ON screen on}
765 * or {@link android.content.Intent#ACTION_SCREEN_OFF screen off} broadcast
766 * whenever the interactive state of the device changes. For historical reasons,
767 * the names of these broadcasts refer to the power state of the screen
768 * but they are actually sent in response to changes in the overall interactive
769 * state of the device, as described by this method.
770 * </p><p>
771 * Services may use the non-interactive state as a hint to conserve power
772 * since the user is not present.
773 * </p>
774 *
775 * @return True if the device is in an interactive state.
776 *
777 * @see android.content.Intent#ACTION_SCREEN_ON
778 * @see android.content.Intent#ACTION_SCREEN_OFF
779 */
780 public boolean isInteractive() {
Jeff Brown1244cda2012-06-19 16:44:46 -0700781 try {
Jeff Brown037c33e2014-04-09 00:31:55 -0700782 return mService.isInteractive();
Jeff Brown1244cda2012-06-19 16:44:46 -0700783 } catch (RemoteException e) {
784 return false;
785 }
786 }
787
788 /**
789 * Reboot the device. Will not return if the reboot is successful.
790 * <p>
791 * Requires the {@link android.Manifest.permission#REBOOT} permission.
792 * </p>
793 *
794 * @param reason code to pass to the kernel (e.g., "recovery") to
795 * request special boot modes, or null.
796 */
797 public void reboot(String reason) {
798 try {
Dianne Hackbornc428aae2012-10-03 16:38:22 -0700799 mService.reboot(false, reason, true);
Jeff Brown1244cda2012-06-19 16:44:46 -0700800 } catch (RemoteException e) {
801 }
802 }
803
804 /**
Dianne Hackborneb94fa72014-06-03 17:48:12 -0700805 * Returns true if the device is currently in power save mode. When in this mode,
806 * applications should reduce their functionality in order to conserve battery as
807 * much as possible. You can monitor for changes to this state with
808 * {@link #ACTION_POWER_SAVE_MODE_CHANGED}.
809 *
810 * @return Returns true if currently in low power mode, else false.
811 */
812 public boolean isPowerSaveMode() {
813 try {
814 return mService.isPowerSaveMode();
815 } catch (RemoteException e) {
816 return false;
817 }
818 }
819
820 /**
John Spurlock8d4e6cb2014-09-14 11:10:22 -0400821 * Set the current power save mode.
822 *
823 * @return True if the set was allowed.
824 *
825 * @see #isPowerSaveMode()
826 *
827 * @hide
828 */
829 public boolean setPowerSaveMode(boolean mode) {
830 try {
831 return mService.setPowerSaveMode(mode);
832 } catch (RemoteException e) {
833 return false;
834 }
835 }
836
837 /**
Filip Gruszczynskid05af862015-02-04 09:48:47 -0800838 * Turn off the device.
839 *
840 * @param confirm If true, shows a shutdown confirmation dialog.
841 * @param wait If true, this call waits for the shutdown to complete and does not return.
842 *
843 * @hide
844 */
845 public void shutdown(boolean confirm, boolean wait) {
846 try {
847 mService.shutdown(confirm, wait);
848 } catch (RemoteException e) {
849 }
850 }
851
852 /**
Dianne Hackborneb94fa72014-06-03 17:48:12 -0700853 * Intent that is broadcast when the state of {@link #isPowerSaveMode()} changes.
854 * This broadcast is only sent to registered receivers.
855 */
856 @SdkConstant(SdkConstant.SdkConstantType.BROADCAST_INTENT_ACTION)
857 public static final String ACTION_POWER_SAVE_MODE_CHANGED
858 = "android.os.action.POWER_SAVE_MODE_CHANGED";
859
860 /**
John Spurlock1bb480a2014-08-02 17:12:43 -0400861 * Intent that is broadcast when the state of {@link #isPowerSaveMode()} is about to change.
862 * This broadcast is only sent to registered receivers.
863 *
864 * @hide
865 */
866 @SdkConstant(SdkConstant.SdkConstantType.BROADCAST_INTENT_ACTION)
867 public static final String ACTION_POWER_SAVE_MODE_CHANGING
868 = "android.os.action.POWER_SAVE_MODE_CHANGING";
869
870 /** @hide */
871 public static final String EXTRA_POWER_SAVE_MODE = "mode";
872
873 /**
Jeff Brown1244cda2012-06-19 16:44:46 -0700874 * A wake lock is a mechanism to indicate that your application needs
875 * to have the device stay on.
Kenny Rootd710fb52011-03-15 17:39:45 -0700876 * <p>
877 * Any application using a WakeLock must request the {@code android.permission.WAKE_LOCK}
878 * permission in an {@code &lt;uses-permission&gt;} element of the application's manifest.
Jeff Brown1244cda2012-06-19 16:44:46 -0700879 * Obtain a wake lock by calling {@link PowerManager#newWakeLock(int, String)}.
880 * </p><p>
881 * Call {@link #acquire()} to acquire the wake lock and force the device to stay
882 * on at the level that was requested when the wake lock was created.
883 * </p><p>
884 * Call {@link #release()} when you are done and don't need the lock anymore.
885 * It is very important to do this as soon as possible to avoid running down the
886 * device's battery excessively.
887 * </p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800888 */
Jeff Brown1244cda2012-06-19 16:44:46 -0700889 public final class WakeLock {
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800890 private int mFlags;
891 private String mTag;
Dianne Hackborn713df152013-05-17 11:27:57 -0700892 private final String mPackageName;
Jeff Brown1244cda2012-06-19 16:44:46 -0700893 private final IBinder mToken;
894 private int mCount;
895 private boolean mRefCounted = true;
896 private boolean mHeld;
897 private WorkSource mWorkSource;
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -0800898 private String mHistoryTag;
Jeff Brown3edf5272014-08-14 19:25:14 -0700899 private final String mTraceName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800900
Jeff Brown1244cda2012-06-19 16:44:46 -0700901 private final Runnable mReleaser = new Runnable() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800902 public void run() {
903 release();
904 }
905 };
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800906
Dianne Hackborn713df152013-05-17 11:27:57 -0700907 WakeLock(int flags, String tag, String packageName) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800908 mFlags = flags;
909 mTag = tag;
Dianne Hackborn713df152013-05-17 11:27:57 -0700910 mPackageName = packageName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800911 mToken = new Binder();
Jeff Brown3edf5272014-08-14 19:25:14 -0700912 mTraceName = "WakeLock (" + mTag + ")";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800913 }
914
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800915 @Override
Jeff Brown1244cda2012-06-19 16:44:46 -0700916 protected void finalize() throws Throwable {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800917 synchronized (mToken) {
918 if (mHeld) {
Dan Egnor60d87622009-12-16 16:32:58 -0800919 Log.wtf(TAG, "WakeLock finalized while still held: " + mTag);
Jeff Brown3edf5272014-08-14 19:25:14 -0700920 Trace.asyncTraceEnd(Trace.TRACE_TAG_POWER, mTraceName, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800921 try {
Mike Lockwood0e39ea82009-11-18 15:37:10 -0500922 mService.releaseWakeLock(mToken, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800923 } catch (RemoteException e) {
924 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800925 }
926 }
927 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800928
Jeff Brown1244cda2012-06-19 16:44:46 -0700929 /**
930 * Sets whether this WakeLock is reference counted.
931 * <p>
932 * Wake locks are reference counted by default. If a wake lock is
933 * reference counted, then each call to {@link #acquire()} must be
934 * balanced by an equal number of calls to {@link #release()}. If a wake
935 * lock is not reference counted, then one call to {@link #release()} is
936 * sufficient to undo the effect of all previous calls to {@link #acquire()}.
937 * </p>
938 *
939 * @param value True to make the wake lock reference counted, false to
940 * make the wake lock non-reference counted.
941 */
942 public void setReferenceCounted(boolean value) {
943 synchronized (mToken) {
944 mRefCounted = value;
945 }
Mike Lockwoodf5bd0922010-03-22 17:10:15 -0400946 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800947
Jeff Brown1244cda2012-06-19 16:44:46 -0700948 /**
949 * Acquires the wake lock.
950 * <p>
951 * Ensures that the device is on at the level requested when
952 * the wake lock was created.
953 * </p>
954 */
955 public void acquire() {
956 synchronized (mToken) {
957 acquireLocked();
958 }
959 }
960
961 /**
962 * Acquires the wake lock with a timeout.
963 * <p>
964 * Ensures that the device is on at the level requested when
965 * the wake lock was created. The lock will be released after the given timeout
966 * expires.
967 * </p>
968 *
969 * @param timeout The timeout after which to release the wake lock, in milliseconds.
970 */
971 public void acquire(long timeout) {
972 synchronized (mToken) {
973 acquireLocked();
974 mHandler.postDelayed(mReleaser, timeout);
975 }
976 }
977
978 private void acquireLocked() {
979 if (!mRefCounted || mCount++ == 0) {
Jeff Brownff1baef2012-07-19 15:01:17 -0700980 // Do this even if the wake lock is already thought to be held (mHeld == true)
981 // because non-reference counted wake locks are not always properly released.
982 // For example, the keyguard's wake lock might be forcibly released by the
983 // power manager without the keyguard knowing. A subsequent call to acquire
984 // should immediately acquire the wake lock once again despite never having
985 // been explicitly released by the keyguard.
Jeff Brown1244cda2012-06-19 16:44:46 -0700986 mHandler.removeCallbacks(mReleaser);
Jeff Brown3edf5272014-08-14 19:25:14 -0700987 Trace.asyncTraceBegin(Trace.TRACE_TAG_POWER, mTraceName, 0);
Jeff Brownff1baef2012-07-19 15:01:17 -0700988 try {
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -0800989 mService.acquireWakeLock(mToken, mFlags, mTag, mPackageName, mWorkSource,
990 mHistoryTag);
Jeff Brownff1baef2012-07-19 15:01:17 -0700991 } catch (RemoteException e) {
Jeff Brown1244cda2012-06-19 16:44:46 -0700992 }
Jeff Brownff1baef2012-07-19 15:01:17 -0700993 mHeld = true;
Jeff Brown1244cda2012-06-19 16:44:46 -0700994 }
995 }
996
997 /**
998 * Releases the wake lock.
999 * <p>
1000 * This method releases your claim to the CPU or screen being on.
1001 * The screen may turn off shortly after you release the wake lock, or it may
1002 * not if there are other wake locks still held.
1003 * </p>
1004 */
1005 public void release() {
1006 release(0);
1007 }
1008
1009 /**
1010 * Releases the wake lock with flags to modify the release behavior.
1011 * <p>
1012 * This method releases your claim to the CPU or screen being on.
1013 * The screen may turn off shortly after you release the wake lock, or it may
1014 * not if there are other wake locks still held.
1015 * </p>
1016 *
1017 * @param flags Combination of flag values to modify the release behavior.
Michael Wright1208e272014-09-08 19:57:50 -07001018 * Currently only {@link #RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY} is supported.
1019 * Passing 0 is equivalent to calling {@link #release()}.
Jeff Brown1244cda2012-06-19 16:44:46 -07001020 */
1021 public void release(int flags) {
1022 synchronized (mToken) {
1023 if (!mRefCounted || --mCount == 0) {
1024 mHandler.removeCallbacks(mReleaser);
1025 if (mHeld) {
Jeff Brown3edf5272014-08-14 19:25:14 -07001026 Trace.asyncTraceEnd(Trace.TRACE_TAG_POWER, mTraceName, 0);
Jeff Brown1244cda2012-06-19 16:44:46 -07001027 try {
1028 mService.releaseWakeLock(mToken, flags);
1029 } catch (RemoteException e) {
1030 }
1031 mHeld = false;
1032 }
1033 }
1034 if (mCount < 0) {
1035 throw new RuntimeException("WakeLock under-locked " + mTag);
1036 }
1037 }
1038 }
1039
1040 /**
1041 * Returns true if the wake lock has been acquired but not yet released.
1042 *
1043 * @return True if the wake lock is held.
1044 */
1045 public boolean isHeld() {
1046 synchronized (mToken) {
1047 return mHeld;
1048 }
1049 }
1050
1051 /**
1052 * Sets the work source associated with the wake lock.
1053 * <p>
1054 * The work source is used to determine on behalf of which application
1055 * the wake lock is being held. This is useful in the case where a
1056 * service is performing work on behalf of an application so that the
1057 * cost of that work can be accounted to the application.
1058 * </p>
1059 *
1060 * @param ws The work source, or null if none.
1061 */
1062 public void setWorkSource(WorkSource ws) {
1063 synchronized (mToken) {
1064 if (ws != null && ws.size() == 0) {
1065 ws = null;
1066 }
1067
1068 final boolean changed;
1069 if (ws == null) {
1070 changed = mWorkSource != null;
1071 mWorkSource = null;
1072 } else if (mWorkSource == null) {
1073 changed = true;
1074 mWorkSource = new WorkSource(ws);
1075 } else {
1076 changed = mWorkSource.diff(ws);
1077 if (changed) {
1078 mWorkSource.set(ws);
1079 }
1080 }
1081
1082 if (changed && mHeld) {
1083 try {
Dianne Hackborn4590e522014-03-24 13:36:46 -07001084 mService.updateWakeLockWorkSource(mToken, mWorkSource, mHistoryTag);
Jeff Brown1244cda2012-06-19 16:44:46 -07001085 } catch (RemoteException e) {
1086 }
1087 }
1088 }
1089 }
1090
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001091 /** @hide */
1092 public void setTag(String tag) {
1093 mTag = tag;
1094 }
1095
1096 /** @hide */
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -08001097 public void setHistoryTag(String tag) {
1098 mHistoryTag = tag;
1099 }
1100
1101 /** @hide */
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001102 public void setUnimportantForLogging(boolean state) {
1103 if (state) mFlags |= UNIMPORTANT_FOR_LOGGING;
1104 else mFlags &= ~UNIMPORTANT_FOR_LOGGING;
1105 }
1106
Jeff Brown1244cda2012-06-19 16:44:46 -07001107 @Override
1108 public String toString() {
1109 synchronized (mToken) {
1110 return "WakeLock{"
1111 + Integer.toHexString(System.identityHashCode(this))
1112 + " held=" + mHeld + ", refCount=" + mCount + "}";
1113 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001114 }
1115 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001116}