DeviceState: Use AlarmManager for time schedule#84
Merged
chenxiaolong merged 1 commit intomasterfrom Apr 7, 2026
Merged
Conversation
Previously, the timers were based on the SystemClock.uptimeMillis() clock, which is monotonic, but pauses while the device is in deep sleep. For devices that enter deep sleep frequently, a time interval based on this clock can be significantly longer than the same interval based on wall time. This commit changes the timer mechanism to use AlarmManager instead. There are a couple caveats here: * AlarmManager enforces that the execution time is at least 5 seconds into the future in AOSP, but Google and OEMs can override this at runtime via DeviceConfig. This is unlikely to matter much since users are generally going to be configuring intervals in the minutes or hours. * The intervals are no longer exact, even when the device is awake. AlarmManager.set() always tries to batch calls to avoid unnecessary wakeups. AlarmManager.setExact() is intentionally not used in this initial implementation. This can be revisited in the future if devices are scheduling wakeups too much later than what the user expects. Fixes: #83 Signed-off-by: Andrew Gunnerson <accounts+github@chiller3.com>
chenxiaolong
added a commit
that referenced
this pull request
Apr 7, 2026
Signed-off-by: Andrew Gunnerson <accounts+github@chiller3.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Previously, the timers were based on the
SystemClock.uptimeMillis()clock, which is monotonic, but pauses while the device is in deep sleep. For devices that enter deep sleep frequently, a time interval based on this clock can be significantly longer than the same interval based on wall time.This commit changes the timer mechanism to use
AlarmManagerinstead. There are a couple caveats here:AlarmManagerenforces that the execution time is at least 5 seconds into the future in AOSP, but Google and OEMs can override this at runtime viaDeviceConfig. This is unlikely to matter much since users are generally going to be configuring intervals in the minutes or hours.The intervals are no longer exact, even when the device is awake.
AlarmManager.set()always tries to batch calls to avoid unnecessary wakeups.AlarmManager.setExact()is intentionally not used in this initial implementation. This can be revisited in the future if devices are scheduling wakeups too much later than what the user expects.Fixes: #83