blob: 831af85e010dd1ab48f78b78cd4ba2592a703e81 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server;
18
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080019import android.app.Activity;
Adrian Roosc42a1e12014-07-07 23:35:53 +020020import android.app.ActivityManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080021import android.app.ActivityManagerNative;
Christopher Tate57ceaaa2013-07-19 16:30:43 -070022import android.app.AlarmManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023import android.app.IAlarmManager;
24import android.app.PendingIntent;
25import android.content.BroadcastReceiver;
26import android.content.Context;
27import android.content.Intent;
28import android.content.IntentFilter;
29import android.content.pm.PackageManager;
30import android.net.Uri;
31import android.os.Binder;
32import android.os.Bundle;
33import android.os.Handler;
Adam Lesinski182f73f2013-12-05 16:48:06 -080034import android.os.IBinder;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035import android.os.Message;
36import android.os.PowerManager;
37import android.os.SystemClock;
38import android.os.SystemProperties;
Dianne Hackborn80a4af22012-08-27 19:18:31 -070039import android.os.UserHandle;
Christopher Tatec4a07d12012-04-06 14:19:13 -070040import android.os.WorkSource;
Adrian Roosc42a1e12014-07-07 23:35:53 +020041import android.provider.Settings;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042import android.text.TextUtils;
Adrian Roosc42a1e12014-07-07 23:35:53 +020043import android.text.format.DateFormat;
Dianne Hackborn3d658bf2014-02-05 13:38:56 -080044import android.util.ArrayMap;
Adrian Roosc42a1e12014-07-07 23:35:53 +020045import android.util.Log;
Joe Onorato8a9b2202010-02-26 18:56:32 -080046import android.util.Slog;
Dianne Hackborn3d658bf2014-02-05 13:38:56 -080047import android.util.SparseArray;
Adrian Roosc42a1e12014-07-07 23:35:53 +020048import android.util.SparseBooleanArray;
Dianne Hackborn043fcd92010-10-06 14:27:34 -070049import android.util.TimeUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080050
Christopher Tate4cb338d2013-07-26 13:11:31 -070051import java.io.ByteArrayOutputStream;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052import java.io.FileDescriptor;
53import java.io.PrintWriter;
Dianne Hackborn043fcd92010-10-06 14:27:34 -070054import java.text.SimpleDateFormat;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080055import java.util.ArrayList;
Dianne Hackborn81038902012-11-26 17:04:09 -080056import java.util.Arrays;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080057import java.util.Calendar;
58import java.util.Collections;
59import java.util.Comparator;
Mike Lockwood1f7b4132009-11-20 15:12:51 -050060import java.util.Date;
Christopher Tate1590f1e2014-10-02 17:27:57 -070061import java.util.HashMap;
Christopher Tate18a75f12013-07-01 18:18:59 -070062import java.util.LinkedList;
Adrian Roosc42a1e12014-07-07 23:35:53 +020063import java.util.Locale;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080064import java.util.TimeZone;
65
Christopher Tatee0a22b32013-07-11 14:43:13 -070066import static android.app.AlarmManager.RTC_WAKEUP;
67import static android.app.AlarmManager.RTC;
68import static android.app.AlarmManager.ELAPSED_REALTIME_WAKEUP;
69import static android.app.AlarmManager.ELAPSED_REALTIME;
70
Dianne Hackborn81038902012-11-26 17:04:09 -080071import com.android.internal.util.LocalLog;
72
Adam Lesinski182f73f2013-12-05 16:48:06 -080073class AlarmManagerService extends SystemService {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080074 // The threshold for how long an alarm can be late before we print a
75 // warning message. The time duration is in milliseconds.
76 private static final long LATE_ALARM_THRESHOLD = 10 * 1000;
Christopher Tatee0a22b32013-07-11 14:43:13 -070077
Christopher Tate498c6cb2014-11-17 16:09:27 -080078 // Minimum futurity of a new alarm
79 private static final long MIN_FUTURITY = 5 * 1000; // 5 seconds, in millis
80
81 // Minimum alarm recurrence interval
82 private static final long MIN_INTERVAL = 60 * 1000; // one minute, in millis
83
Christopher Tatee0a22b32013-07-11 14:43:13 -070084 private static final int RTC_WAKEUP_MASK = 1 << RTC_WAKEUP;
85 private static final int RTC_MASK = 1 << RTC;
Adam Lesinski182f73f2013-12-05 16:48:06 -080086 private static final int ELAPSED_REALTIME_WAKEUP_MASK = 1 << ELAPSED_REALTIME_WAKEUP;
Christopher Tatee0a22b32013-07-11 14:43:13 -070087 private static final int ELAPSED_REALTIME_MASK = 1 << ELAPSED_REALTIME;
Adam Lesinski182f73f2013-12-05 16:48:06 -080088 static final int TIME_CHANGED_MASK = 1 << 16;
89 static final int IS_WAKEUP_MASK = RTC_WAKEUP_MASK|ELAPSED_REALTIME_WAKEUP_MASK;
Christopher Tateb8849c12011-02-08 13:39:01 -080090
Christopher Tatee0a22b32013-07-11 14:43:13 -070091 // Mask for testing whether a given alarm type is wakeup vs non-wakeup
Adam Lesinski182f73f2013-12-05 16:48:06 -080092 static final int TYPE_NONWAKEUP_MASK = 0x1; // low bit => non-wakeup
Christopher Tateb8849c12011-02-08 13:39:01 -080093
Adam Lesinski182f73f2013-12-05 16:48:06 -080094 static final String TAG = "AlarmManager";
95 static final String ClockReceiver_TAG = "ClockReceiver";
96 static final boolean localLOGV = false;
97 static final boolean DEBUG_BATCH = localLOGV || false;
98 static final boolean DEBUG_VALIDATE = localLOGV || false;
Adrian Roosc42a1e12014-07-07 23:35:53 +020099 static final boolean DEBUG_ALARM_CLOCK = localLOGV || false;
Adam Lesinski182f73f2013-12-05 16:48:06 -0800100 static final int ALARM_EVENT = 1;
101 static final String TIMEZONE_PROPERTY = "persist.sys.timezone";
Adrian Roosc42a1e12014-07-07 23:35:53 +0200102
Adam Lesinski182f73f2013-12-05 16:48:06 -0800103 static final Intent mBackgroundIntent
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800104 = new Intent().addFlags(Intent.FLAG_FROM_BACKGROUND);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800105 static final IncreasingTimeOrder sIncreasingTimeOrder = new IncreasingTimeOrder();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800106
Adam Lesinski182f73f2013-12-05 16:48:06 -0800107 static final boolean WAKEUP_STATS = false;
Christopher Tate18a75f12013-07-01 18:18:59 -0700108
Adrian Roosc42a1e12014-07-07 23:35:53 +0200109 private static final Intent NEXT_ALARM_CLOCK_CHANGED_INTENT = new Intent(
110 AlarmManager.ACTION_NEXT_ALARM_CLOCK_CHANGED);
111
Adam Lesinski182f73f2013-12-05 16:48:06 -0800112 final LocalLog mLog = new LocalLog(TAG);
Dianne Hackborn81038902012-11-26 17:04:09 -0800113
Adam Lesinski182f73f2013-12-05 16:48:06 -0800114 final Object mLock = new Object();
Dianne Hackborn81038902012-11-26 17:04:09 -0800115
Greg Hackmannf1bdbdd2013-12-17 11:56:22 -0800116 long mNativeData;
Christopher Tatee0a22b32013-07-11 14:43:13 -0700117 private long mNextWakeup;
118 private long mNextNonWakeup;
Adam Lesinski182f73f2013-12-05 16:48:06 -0800119 int mBroadcastRefCount = 0;
120 PowerManager.WakeLock mWakeLock;
Dianne Hackborna1bd7922014-03-21 11:07:11 -0700121 boolean mLastWakeLockUnimportantForLogging;
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700122 ArrayList<Alarm> mPendingNonWakeupAlarms = new ArrayList<Alarm>();
Adam Lesinski182f73f2013-12-05 16:48:06 -0800123 ArrayList<InFlight> mInFlight = new ArrayList<InFlight>();
124 final AlarmHandler mHandler = new AlarmHandler();
125 ClockReceiver mClockReceiver;
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700126 InteractiveStateReceiver mInteractiveStateReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800127 private UninstallReceiver mUninstallReceiver;
Adam Lesinski182f73f2013-12-05 16:48:06 -0800128 final ResultReceiver mResultReceiver = new ResultReceiver();
129 PendingIntent mTimeTickSender;
130 PendingIntent mDateChangeSender;
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700131 boolean mInteractive = true;
132 long mNonInteractiveStartTime;
133 long mNonInteractiveTime;
134 long mLastAlarmDeliveryTime;
135 long mStartCurrentDelayTime;
136 long mNextNonWakeupDeliveryTime;
Dianne Hackborn998e6082014-09-11 19:13:23 -0700137 int mNumTimeChanged;
Dianne Hackborn81038902012-11-26 17:04:09 -0800138
Jose Lima235510e2014-08-13 12:50:01 -0700139 private final SparseArray<AlarmManager.AlarmClockInfo> mNextAlarmClockForUser =
140 new SparseArray<>();
141 private final SparseArray<AlarmManager.AlarmClockInfo> mTmpSparseAlarmClockArray =
142 new SparseArray<>();
Adrian Roosc42a1e12014-07-07 23:35:53 +0200143 private final SparseBooleanArray mPendingSendNextAlarmClockChangedForUser =
144 new SparseBooleanArray();
145 private boolean mNextAlarmClockMayChange;
146
147 // May only use on mHandler's thread, locking not required.
Jose Lima235510e2014-08-13 12:50:01 -0700148 private final SparseArray<AlarmManager.AlarmClockInfo> mHandlerSparseAlarmClockArray =
149 new SparseArray<>();
Adrian Roosc42a1e12014-07-07 23:35:53 +0200150
Christopher Tate1590f1e2014-10-02 17:27:57 -0700151 // Alarm delivery ordering bookkeeping
152 static final int PRIO_TICK = 0;
153 static final int PRIO_WAKEUP = 1;
154 static final int PRIO_NORMAL = 2;
155
156 class PriorityClass {
157 int seq;
158 int priority;
159
160 PriorityClass() {
161 seq = mCurrentSeq - 1;
162 priority = PRIO_NORMAL;
163 }
164 }
165
166 final HashMap<String, PriorityClass> mPriorities =
167 new HashMap<String, PriorityClass>();
168 int mCurrentSeq = 0;
169
Christopher Tate18a75f12013-07-01 18:18:59 -0700170 class WakeupEvent {
171 public long when;
172 public int uid;
173 public String action;
174
175 public WakeupEvent(long theTime, int theUid, String theAction) {
176 when = theTime;
177 uid = theUid;
178 action = theAction;
179 }
180 }
181
Adam Lesinski182f73f2013-12-05 16:48:06 -0800182 final LinkedList<WakeupEvent> mRecentWakeups = new LinkedList<WakeupEvent>();
183 final long RECENT_WAKEUP_PERIOD = 1000L * 60 * 60 * 24; // one day
Christopher Tate18a75f12013-07-01 18:18:59 -0700184
Adrian Roosc42a1e12014-07-07 23:35:53 +0200185 final class Batch {
Christopher Tatee0a22b32013-07-11 14:43:13 -0700186 long start; // These endpoints are always in ELAPSED
187 long end;
188 boolean standalone; // certain "batches" don't participate in coalescing
189
190 final ArrayList<Alarm> alarms = new ArrayList<Alarm>();
191
192 Batch() {
193 start = 0;
194 end = Long.MAX_VALUE;
195 }
196
197 Batch(Alarm seed) {
198 start = seed.whenElapsed;
199 end = seed.maxWhen;
200 alarms.add(seed);
201 }
202
203 int size() {
204 return alarms.size();
205 }
206
207 Alarm get(int index) {
208 return alarms.get(index);
209 }
210
211 boolean canHold(long whenElapsed, long maxWhen) {
212 return (end >= whenElapsed) && (start <= maxWhen);
213 }
214
215 boolean add(Alarm alarm) {
216 boolean newStart = false;
217 // narrows the batch if necessary; presumes that canHold(alarm) is true
218 int index = Collections.binarySearch(alarms, alarm, sIncreasingTimeOrder);
219 if (index < 0) {
220 index = 0 - index - 1;
221 }
222 alarms.add(index, alarm);
223 if (DEBUG_BATCH) {
224 Slog.v(TAG, "Adding " + alarm + " to " + this);
225 }
226 if (alarm.whenElapsed > start) {
227 start = alarm.whenElapsed;
228 newStart = true;
229 }
230 if (alarm.maxWhen < end) {
231 end = alarm.maxWhen;
232 }
233
234 if (DEBUG_BATCH) {
235 Slog.v(TAG, " => now " + this);
236 }
237 return newStart;
238 }
239
240 boolean remove(final PendingIntent operation) {
241 boolean didRemove = false;
242 long newStart = 0; // recalculate endpoints as we go
243 long newEnd = Long.MAX_VALUE;
Christopher Tateae269d52013-09-26 13:11:55 -0700244 for (int i = 0; i < alarms.size(); ) {
Christopher Tatee0a22b32013-07-11 14:43:13 -0700245 Alarm alarm = alarms.get(i);
246 if (alarm.operation.equals(operation)) {
247 alarms.remove(i);
248 didRemove = true;
Adrian Roosc42a1e12014-07-07 23:35:53 +0200249 if (alarm.alarmClock != null) {
250 mNextAlarmClockMayChange = true;
251 }
Christopher Tatee0a22b32013-07-11 14:43:13 -0700252 } else {
253 if (alarm.whenElapsed > newStart) {
254 newStart = alarm.whenElapsed;
255 }
256 if (alarm.maxWhen < newEnd) {
257 newEnd = alarm.maxWhen;
258 }
259 i++;
260 }
261 }
262 if (didRemove) {
263 // commit the new batch bounds
264 start = newStart;
265 end = newEnd;
266 }
267 return didRemove;
268 }
269
270 boolean remove(final String packageName) {
271 boolean didRemove = false;
272 long newStart = 0; // recalculate endpoints as we go
273 long newEnd = Long.MAX_VALUE;
Christopher Tateae269d52013-09-26 13:11:55 -0700274 for (int i = 0; i < alarms.size(); ) {
Christopher Tatee0a22b32013-07-11 14:43:13 -0700275 Alarm alarm = alarms.get(i);
276 if (alarm.operation.getTargetPackage().equals(packageName)) {
277 alarms.remove(i);
278 didRemove = true;
Adrian Roosc42a1e12014-07-07 23:35:53 +0200279 if (alarm.alarmClock != null) {
280 mNextAlarmClockMayChange = true;
281 }
Christopher Tatee0a22b32013-07-11 14:43:13 -0700282 } else {
283 if (alarm.whenElapsed > newStart) {
284 newStart = alarm.whenElapsed;
285 }
286 if (alarm.maxWhen < newEnd) {
287 newEnd = alarm.maxWhen;
288 }
289 i++;
290 }
291 }
292 if (didRemove) {
293 // commit the new batch bounds
294 start = newStart;
295 end = newEnd;
296 }
297 return didRemove;
298 }
299
300 boolean remove(final int userHandle) {
301 boolean didRemove = false;
302 long newStart = 0; // recalculate endpoints as we go
303 long newEnd = Long.MAX_VALUE;
Christopher Tateae269d52013-09-26 13:11:55 -0700304 for (int i = 0; i < alarms.size(); ) {
Christopher Tatee0a22b32013-07-11 14:43:13 -0700305 Alarm alarm = alarms.get(i);
306 if (UserHandle.getUserId(alarm.operation.getCreatorUid()) == userHandle) {
307 alarms.remove(i);
308 didRemove = true;
Adrian Roosc42a1e12014-07-07 23:35:53 +0200309 if (alarm.alarmClock != null) {
310 mNextAlarmClockMayChange = true;
311 }
Christopher Tatee0a22b32013-07-11 14:43:13 -0700312 } else {
313 if (alarm.whenElapsed > newStart) {
314 newStart = alarm.whenElapsed;
315 }
316 if (alarm.maxWhen < newEnd) {
317 newEnd = alarm.maxWhen;
318 }
319 i++;
320 }
321 }
322 if (didRemove) {
323 // commit the new batch bounds
324 start = newStart;
325 end = newEnd;
326 }
327 return didRemove;
328 }
329
330 boolean hasPackage(final String packageName) {
331 final int N = alarms.size();
332 for (int i = 0; i < N; i++) {
333 Alarm a = alarms.get(i);
334 if (a.operation.getTargetPackage().equals(packageName)) {
335 return true;
336 }
337 }
338 return false;
339 }
340
341 boolean hasWakeups() {
342 final int N = alarms.size();
343 for (int i = 0; i < N; i++) {
344 Alarm a = alarms.get(i);
345 // non-wakeup alarms are types 1 and 3, i.e. have the low bit set
346 if ((a.type & TYPE_NONWAKEUP_MASK) == 0) {
347 return true;
348 }
349 }
350 return false;
351 }
352
353 @Override
354 public String toString() {
355 StringBuilder b = new StringBuilder(40);
356 b.append("Batch{"); b.append(Integer.toHexString(this.hashCode()));
357 b.append(" num="); b.append(size());
358 b.append(" start="); b.append(start);
359 b.append(" end="); b.append(end);
360 if (standalone) {
361 b.append(" STANDALONE");
362 }
363 b.append('}');
364 return b.toString();
365 }
366 }
367
368 static class BatchTimeOrder implements Comparator<Batch> {
369 public int compare(Batch b1, Batch b2) {
370 long when1 = b1.start;
371 long when2 = b2.start;
372 if (when1 - when2 > 0) {
373 return 1;
374 }
375 if (when1 - when2 < 0) {
376 return -1;
377 }
378 return 0;
379 }
380 }
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800381
382 final Comparator<Alarm> mAlarmDispatchComparator = new Comparator<Alarm>() {
383 @Override
384 public int compare(Alarm lhs, Alarm rhs) {
Christopher Tate1590f1e2014-10-02 17:27:57 -0700385 // priority class trumps everything. TICK < WAKEUP < NORMAL
386 if (lhs.priorityClass.priority < rhs.priorityClass.priority) {
387 return -1;
388 } else if (lhs.priorityClass.priority > rhs.priorityClass.priority) {
389 return 1;
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800390 }
Christopher Tate1590f1e2014-10-02 17:27:57 -0700391
392 // within each class, sort by nominal delivery time
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800393 if (lhs.whenElapsed < rhs.whenElapsed) {
394 return -1;
395 } else if (lhs.whenElapsed > rhs.whenElapsed) {
396 return 1;
397 }
Christopher Tate1590f1e2014-10-02 17:27:57 -0700398
399 // same priority class + same target delivery time
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800400 return 0;
401 }
402 };
403
Christopher Tate1590f1e2014-10-02 17:27:57 -0700404 void calculateDeliveryPriorities(ArrayList<Alarm> alarms) {
405 final int N = alarms.size();
406 for (int i = 0; i < N; i++) {
407 Alarm a = alarms.get(i);
408
409 final int alarmPrio;
410 if (Intent.ACTION_TIME_TICK.equals(a.operation.getIntent().getAction())) {
411 alarmPrio = PRIO_TICK;
412 } else if (a.wakeup) {
413 alarmPrio = PRIO_WAKEUP;
414 } else {
415 alarmPrio = PRIO_NORMAL;
416 }
417
418 PriorityClass packagePrio = a.priorityClass;
419 if (packagePrio == null) packagePrio = mPriorities.get(a.operation.getCreatorPackage());
420 if (packagePrio == null) {
421 packagePrio = a.priorityClass = new PriorityClass(); // lowest prio & stale sequence
422 mPriorities.put(a.operation.getCreatorPackage(), packagePrio);
423 }
424 a.priorityClass = packagePrio;
425
426 if (packagePrio.seq != mCurrentSeq) {
427 // first alarm we've seen in the current delivery generation from this package
428 packagePrio.priority = alarmPrio;
429 packagePrio.seq = mCurrentSeq;
430 } else {
431 // Multiple alarms from this package being delivered in this generation;
432 // bump the package's delivery class if it's warranted.
433 // TICK < WAKEUP < NORMAL
434 if (alarmPrio < packagePrio.priority) {
435 packagePrio.priority = alarmPrio;
436 }
437 }
438 }
439 }
440
Christopher Tatee0a22b32013-07-11 14:43:13 -0700441 // minimum recurrence period or alarm futurity for us to be able to fuzz it
Adam Lesinski182f73f2013-12-05 16:48:06 -0800442 static final long MIN_FUZZABLE_INTERVAL = 10000;
443 static final BatchTimeOrder sBatchOrder = new BatchTimeOrder();
444 final ArrayList<Batch> mAlarmBatches = new ArrayList<Batch>();
Christopher Tatee0a22b32013-07-11 14:43:13 -0700445
Jeff Brownb880d882014-02-10 19:47:07 -0800446 public AlarmManagerService(Context context) {
447 super(context);
448 }
449
Christopher Tatee0a22b32013-07-11 14:43:13 -0700450 static long convertToElapsed(long when, int type) {
451 final boolean isRtc = (type == RTC || type == RTC_WAKEUP);
452 if (isRtc) {
453 when -= System.currentTimeMillis() - SystemClock.elapsedRealtime();
454 }
455 return when;
456 }
457
458 // Apply a heuristic to { recurrence interval, futurity of the trigger time } to
459 // calculate the end of our nominal delivery window for the alarm.
460 static long maxTriggerTime(long now, long triggerAtTime, long interval) {
461 // Current heuristic: batchable window is 75% of either the recurrence interval
462 // [for a periodic alarm] or of the time from now to the desired delivery time,
463 // with a minimum delay/interval of 10 seconds, under which we will simply not
464 // defer the alarm.
465 long futurity = (interval == 0)
466 ? (triggerAtTime - now)
467 : interval;
Christopher Tate57ceaaa2013-07-19 16:30:43 -0700468 if (futurity < MIN_FUZZABLE_INTERVAL) {
Christopher Tatee0a22b32013-07-11 14:43:13 -0700469 futurity = 0;
470 }
471 return triggerAtTime + (long)(.75 * futurity);
472 }
473
474 // returns true if the batch was added at the head
475 static boolean addBatchLocked(ArrayList<Batch> list, Batch newBatch) {
476 int index = Collections.binarySearch(list, newBatch, sBatchOrder);
477 if (index < 0) {
478 index = 0 - index - 1;
479 }
480 list.add(index, newBatch);
481 return (index == 0);
482 }
483
Christopher Tate385e4982013-07-23 18:22:29 -0700484 // Return the index of the matching batch, or -1 if none found.
485 int attemptCoalesceLocked(long whenElapsed, long maxWhen) {
Christopher Tatee0a22b32013-07-11 14:43:13 -0700486 final int N = mAlarmBatches.size();
487 for (int i = 0; i < N; i++) {
488 Batch b = mAlarmBatches.get(i);
489 if (!b.standalone && b.canHold(whenElapsed, maxWhen)) {
Christopher Tate385e4982013-07-23 18:22:29 -0700490 return i;
Christopher Tatee0a22b32013-07-11 14:43:13 -0700491 }
492 }
Christopher Tate385e4982013-07-23 18:22:29 -0700493 return -1;
Christopher Tatee0a22b32013-07-11 14:43:13 -0700494 }
495
496 // The RTC clock has moved arbitrarily, so we need to recalculate all the batching
497 void rebatchAllAlarms() {
Christopher Tatee0a22b32013-07-11 14:43:13 -0700498 synchronized (mLock) {
Christopher Tate4cb338d2013-07-26 13:11:31 -0700499 rebatchAllAlarmsLocked(true);
500 }
501 }
502
503 void rebatchAllAlarmsLocked(boolean doValidate) {
504 ArrayList<Batch> oldSet = (ArrayList<Batch>) mAlarmBatches.clone();
505 mAlarmBatches.clear();
506 final long nowElapsed = SystemClock.elapsedRealtime();
507 final int oldBatches = oldSet.size();
508 for (int batchNum = 0; batchNum < oldBatches; batchNum++) {
509 Batch batch = oldSet.get(batchNum);
510 final int N = batch.size();
511 for (int i = 0; i < N; i++) {
512 Alarm a = batch.get(i);
513 long whenElapsed = convertToElapsed(a.when, a.type);
Christopher Tate3e04b472013-10-21 17:51:31 -0700514 final long maxElapsed;
515 if (a.whenElapsed == a.maxWhen) {
516 // Exact
517 maxElapsed = whenElapsed;
518 } else {
519 // Not exact. Preserve any explicit window, otherwise recalculate
520 // the window based on the alarm's new futurity. Note that this
521 // reflects a policy of preferring timely to deferred delivery.
522 maxElapsed = (a.windowLength > 0)
523 ? (whenElapsed + a.windowLength)
524 : maxTriggerTime(nowElapsed, whenElapsed, a.repeatInterval);
525 }
526 setImplLocked(a.type, a.when, whenElapsed, a.windowLength, maxElapsed,
Adrian Roosc42a1e12014-07-07 23:35:53 +0200527 a.repeatInterval, a.operation, batch.standalone, doValidate, a.workSource,
528 a.alarmClock, a.userId);
Christopher Tatee0a22b32013-07-11 14:43:13 -0700529 }
530 }
531 }
532
Adam Lesinski182f73f2013-12-05 16:48:06 -0800533 static final class InFlight extends Intent {
Dianne Hackborn81038902012-11-26 17:04:09 -0800534 final PendingIntent mPendingIntent;
David Christieebe51fc2013-07-26 13:23:29 -0700535 final WorkSource mWorkSource;
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700536 final String mTag;
Dianne Hackborn81038902012-11-26 17:04:09 -0800537 final BroadcastStats mBroadcastStats;
538 final FilterStats mFilterStats;
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800539 final int mAlarmType;
Dianne Hackborn81038902012-11-26 17:04:09 -0800540
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800541 InFlight(AlarmManagerService service, PendingIntent pendingIntent, WorkSource workSource,
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700542 int alarmType, String tag) {
Dianne Hackborn81038902012-11-26 17:04:09 -0800543 mPendingIntent = pendingIntent;
David Christieebe51fc2013-07-26 13:23:29 -0700544 mWorkSource = workSource;
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700545 mTag = tag;
Dianne Hackborn81038902012-11-26 17:04:09 -0800546 mBroadcastStats = service.getStatsLocked(pendingIntent);
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700547 FilterStats fs = mBroadcastStats.filterStats.get(mTag);
Dianne Hackborn81038902012-11-26 17:04:09 -0800548 if (fs == null) {
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700549 fs = new FilterStats(mBroadcastStats, mTag);
550 mBroadcastStats.filterStats.put(mTag, fs);
Dianne Hackborn81038902012-11-26 17:04:09 -0800551 }
552 mFilterStats = fs;
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800553 mAlarmType = alarmType;
Dianne Hackborn81038902012-11-26 17:04:09 -0800554 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800555 }
Dianne Hackborn81038902012-11-26 17:04:09 -0800556
Adam Lesinski182f73f2013-12-05 16:48:06 -0800557 static final class FilterStats {
Dianne Hackborn81038902012-11-26 17:04:09 -0800558 final BroadcastStats mBroadcastStats;
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700559 final String mTag;
Dianne Hackborn81038902012-11-26 17:04:09 -0800560
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800561 long aggregateTime;
Dianne Hackborn81038902012-11-26 17:04:09 -0800562 int count;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800563 int numWakeup;
564 long startTime;
565 int nesting;
Dianne Hackborn81038902012-11-26 17:04:09 -0800566
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700567 FilterStats(BroadcastStats broadcastStats, String tag) {
Dianne Hackborn81038902012-11-26 17:04:09 -0800568 mBroadcastStats = broadcastStats;
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700569 mTag = tag;
Dianne Hackborn81038902012-11-26 17:04:09 -0800570 }
571 }
572
Adam Lesinski182f73f2013-12-05 16:48:06 -0800573 static final class BroadcastStats {
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800574 final int mUid;
Dianne Hackborn81038902012-11-26 17:04:09 -0800575 final String mPackageName;
576
577 long aggregateTime;
578 int count;
579 int numWakeup;
580 long startTime;
581 int nesting;
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700582 final ArrayMap<String, FilterStats> filterStats = new ArrayMap<String, FilterStats>();
Dianne Hackborn81038902012-11-26 17:04:09 -0800583
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800584 BroadcastStats(int uid, String packageName) {
585 mUid = uid;
Dianne Hackborn81038902012-11-26 17:04:09 -0800586 mPackageName = packageName;
587 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800588 }
589
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800590 final SparseArray<ArrayMap<String, BroadcastStats>> mBroadcastStats
591 = new SparseArray<ArrayMap<String, BroadcastStats>>();
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700592
593 int mNumDelayedAlarms = 0;
594 long mTotalDelayTime = 0;
595 long mMaxDelayTime = 0;
596
Adam Lesinski182f73f2013-12-05 16:48:06 -0800597 @Override
598 public void onStart() {
Greg Hackmanna1d6f922013-12-09 16:56:53 -0800599 mNativeData = init();
Christopher Tatee0a22b32013-07-11 14:43:13 -0700600 mNextWakeup = mNextNonWakeup = 0;
Robert CH Chou64ba8e42009-11-04 21:38:49 +0800601
602 // We have to set current TimeZone info to kernel
603 // because kernel doesn't keep this after reboot
Adam Lesinski182f73f2013-12-05 16:48:06 -0800604 setTimeZoneImpl(SystemProperties.get(TIMEZONE_PROPERTY));
Robert CH Chou64ba8e42009-11-04 21:38:49 +0800605
Adam Lesinski182f73f2013-12-05 16:48:06 -0800606 PowerManager pm = (PowerManager) getContext().getSystemService(Context.POWER_SERVICE);
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800607 mWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "*alarm*");
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -0800608
Adam Lesinski182f73f2013-12-05 16:48:06 -0800609 mTimeTickSender = PendingIntent.getBroadcastAsUser(getContext(), 0,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800610 new Intent(Intent.ACTION_TIME_TICK).addFlags(
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -0700611 Intent.FLAG_RECEIVER_REGISTERED_ONLY
612 | Intent.FLAG_RECEIVER_FOREGROUND), 0,
Dianne Hackborndb5aca92012-10-26 13:39:41 -0700613 UserHandle.ALL);
Dianne Hackborn1c633fc2009-12-08 19:45:14 -0800614 Intent intent = new Intent(Intent.ACTION_DATE_CHANGED);
615 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800616 mDateChangeSender = PendingIntent.getBroadcastAsUser(getContext(), 0, intent,
Dianne Hackborndb5aca92012-10-26 13:39:41 -0700617 Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT, UserHandle.ALL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800618
619 // now that we have initied the driver schedule the alarm
Adam Lesinski182f73f2013-12-05 16:48:06 -0800620 mClockReceiver = new ClockReceiver();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800621 mClockReceiver.scheduleTimeTickEvent();
622 mClockReceiver.scheduleDateChangedEvent();
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700623 mInteractiveStateReceiver = new InteractiveStateReceiver();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800624 mUninstallReceiver = new UninstallReceiver();
625
Greg Hackmanna1d6f922013-12-09 16:56:53 -0800626 if (mNativeData != 0) {
Adam Lesinski182f73f2013-12-05 16:48:06 -0800627 AlarmThread waitThread = new AlarmThread();
628 waitThread.start();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800629 } else {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800630 Slog.w(TAG, "Failed to open alarm driver. Falling back to a handler.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800631 }
Adam Lesinski182f73f2013-12-05 16:48:06 -0800632
633 publishBinderService(Context.ALARM_SERVICE, mService);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800634 }
Adam Lesinski182f73f2013-12-05 16:48:06 -0800635
636 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800637 protected void finalize() throws Throwable {
638 try {
Greg Hackmanna1d6f922013-12-09 16:56:53 -0800639 close(mNativeData);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800640 } finally {
641 super.finalize();
642 }
643 }
Christopher Tatee0a22b32013-07-11 14:43:13 -0700644
Adam Lesinski182f73f2013-12-05 16:48:06 -0800645 void setTimeZoneImpl(String tz) {
646 if (TextUtils.isEmpty(tz)) {
647 return;
David Christieebe51fc2013-07-26 13:23:29 -0700648 }
649
Adam Lesinski182f73f2013-12-05 16:48:06 -0800650 TimeZone zone = TimeZone.getTimeZone(tz);
651 // Prevent reentrant calls from stepping on each other when writing
652 // the time zone property
653 boolean timeZoneWasChanged = false;
654 synchronized (this) {
655 String current = SystemProperties.get(TIMEZONE_PROPERTY);
656 if (current == null || !current.equals(zone.getID())) {
657 if (localLOGV) {
658 Slog.v(TAG, "timezone changed: " + current + ", new=" + zone.getID());
659 }
660 timeZoneWasChanged = true;
661 SystemProperties.set(TIMEZONE_PROPERTY, zone.getID());
662 }
663
664 // Update the kernel timezone information
665 // Kernel tracks time offsets as 'minutes west of GMT'
666 int gmtOffset = zone.getOffset(System.currentTimeMillis());
Greg Hackmannf1bdbdd2013-12-17 11:56:22 -0800667 setKernelTimezone(mNativeData, -(gmtOffset / 60000));
Adam Lesinski182f73f2013-12-05 16:48:06 -0800668 }
669
670 TimeZone.setDefault(null);
671
672 if (timeZoneWasChanged) {
673 Intent intent = new Intent(Intent.ACTION_TIMEZONE_CHANGED);
674 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
675 intent.putExtra("time-zone", zone.getID());
676 getContext().sendBroadcastAsUser(intent, UserHandle.ALL);
677 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800678 }
Christopher Tatee0a22b32013-07-11 14:43:13 -0700679
Adam Lesinski182f73f2013-12-05 16:48:06 -0800680 void removeImpl(PendingIntent operation) {
681 if (operation == null) {
682 return;
683 }
684 synchronized (mLock) {
685 removeLocked(operation);
686 }
687 }
688
689 void setImpl(int type, long triggerAtTime, long windowLength, long interval,
Adrian Roosc42a1e12014-07-07 23:35:53 +0200690 PendingIntent operation, boolean isStandalone, WorkSource workSource,
Jose Lima235510e2014-08-13 12:50:01 -0700691 AlarmManager.AlarmClockInfo alarmClock) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800692 if (operation == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800693 Slog.w(TAG, "set/setRepeating ignored because there is no intent");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800694 return;
695 }
Christopher Tatee0a22b32013-07-11 14:43:13 -0700696
Christopher Tate57ceaaa2013-07-19 16:30:43 -0700697 // Sanity check the window length. This will catch people mistakenly
698 // trying to pass an end-of-window timestamp rather than a duration.
699 if (windowLength > AlarmManager.INTERVAL_HALF_DAY) {
700 Slog.w(TAG, "Window length " + windowLength
701 + "ms suspiciously long; limiting to 1 hour");
702 windowLength = AlarmManager.INTERVAL_HOUR;
703 }
704
Christopher Tate498c6cb2014-11-17 16:09:27 -0800705 // Sanity check the recurrence interval. This will catch people who supply
706 // seconds when the API expects milliseconds.
707 if (interval > 0 && interval < MIN_INTERVAL) {
708 Slog.w(TAG, "Suspiciously short interval " + interval
709 + " millis; expanding to " + (int)(MIN_INTERVAL/1000)
710 + " seconds");
711 interval = MIN_INTERVAL;
712 }
713
Christopher Tatee0a22b32013-07-11 14:43:13 -0700714 if (type < RTC_WAKEUP || type > ELAPSED_REALTIME) {
715 throw new IllegalArgumentException("Invalid alarm type " + type);
716 }
717
Christopher Tate5f221e82013-07-30 17:13:15 -0700718 if (triggerAtTime < 0) {
719 final long who = Binder.getCallingUid();
720 final long what = Binder.getCallingPid();
721 Slog.w(TAG, "Invalid alarm trigger time! " + triggerAtTime + " from uid=" + who
722 + " pid=" + what);
723 triggerAtTime = 0;
724 }
725
Christopher Tate57ceaaa2013-07-19 16:30:43 -0700726 final long nowElapsed = SystemClock.elapsedRealtime();
Christopher Tate498c6cb2014-11-17 16:09:27 -0800727 final long nominalTrigger = convertToElapsed(triggerAtTime, type);
728 // Try to prevent spamming by making sure we aren't firing alarms in the immediate future
729 final long minTrigger = nowElapsed + MIN_FUTURITY;
730 final long triggerElapsed = (nominalTrigger > minTrigger) ? nominalTrigger : minTrigger;
731
Christopher Tate57ceaaa2013-07-19 16:30:43 -0700732 final long maxElapsed;
733 if (windowLength == AlarmManager.WINDOW_EXACT) {
734 maxElapsed = triggerElapsed;
735 } else if (windowLength < 0) {
736 maxElapsed = maxTriggerTime(nowElapsed, triggerElapsed, interval);
737 } else {
738 maxElapsed = triggerElapsed + windowLength;
739 }
Christopher Tatee0a22b32013-07-11 14:43:13 -0700740
Adrian Roosc42a1e12014-07-07 23:35:53 +0200741 final int userId = UserHandle.getCallingUserId();
742
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800743 synchronized (mLock) {
Christopher Tatee0a22b32013-07-11 14:43:13 -0700744 if (DEBUG_BATCH) {
745 Slog.v(TAG, "set(" + operation + ") : type=" + type
Christopher Tate57ceaaa2013-07-19 16:30:43 -0700746 + " triggerAtTime=" + triggerAtTime + " win=" + windowLength
Christopher Tatee0a22b32013-07-11 14:43:13 -0700747 + " tElapsed=" + triggerElapsed + " maxElapsed=" + maxElapsed
748 + " interval=" + interval + " standalone=" + isStandalone);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800749 }
Christopher Tate3e04b472013-10-21 17:51:31 -0700750 setImplLocked(type, triggerAtTime, triggerElapsed, windowLength, maxElapsed,
Adrian Roosc42a1e12014-07-07 23:35:53 +0200751 interval, operation, isStandalone, true, workSource, alarmClock, userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800752 }
753 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800754
Christopher Tate3e04b472013-10-21 17:51:31 -0700755 private void setImplLocked(int type, long when, long whenElapsed, long windowLength,
756 long maxWhen, long interval, PendingIntent operation, boolean isStandalone,
Jose Lima235510e2014-08-13 12:50:01 -0700757 boolean doValidate, WorkSource workSource, AlarmManager.AlarmClockInfo alarmClock,
758 int userId) {
Christopher Tate3e04b472013-10-21 17:51:31 -0700759 Alarm a = new Alarm(type, when, whenElapsed, windowLength, maxWhen, interval,
Adrian Roosc42a1e12014-07-07 23:35:53 +0200760 operation, workSource, alarmClock, userId);
Christopher Tatee0a22b32013-07-11 14:43:13 -0700761 removeLocked(operation);
Christopher Tateb8849c12011-02-08 13:39:01 -0800762
Christopher Tate385e4982013-07-23 18:22:29 -0700763 int whichBatch = (isStandalone) ? -1 : attemptCoalesceLocked(whenElapsed, maxWhen);
764 if (whichBatch < 0) {
765 Batch batch = new Batch(a);
Christopher Tatee0a22b32013-07-11 14:43:13 -0700766 batch.standalone = isStandalone;
Christopher Tate7d57ed82013-10-25 20:18:03 -0700767 addBatchLocked(mAlarmBatches, batch);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800768 } else {
Christopher Tate385e4982013-07-23 18:22:29 -0700769 Batch batch = mAlarmBatches.get(whichBatch);
Christopher Tate7d57ed82013-10-25 20:18:03 -0700770 if (batch.add(a)) {
Christopher Tate385e4982013-07-23 18:22:29 -0700771 // The start time of this batch advanced, so batch ordering may
772 // have just been broken. Move it to where it now belongs.
773 mAlarmBatches.remove(whichBatch);
774 addBatchLocked(mAlarmBatches, batch);
775 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800776 }
777
Adrian Roosc42a1e12014-07-07 23:35:53 +0200778 if (alarmClock != null) {
779 mNextAlarmClockMayChange = true;
780 updateNextAlarmClockLocked();
781 }
782
Christopher Tate4cb338d2013-07-26 13:11:31 -0700783 if (DEBUG_VALIDATE) {
Christopher Tate5f221e82013-07-30 17:13:15 -0700784 if (doValidate && !validateConsistencyLocked()) {
785 Slog.v(TAG, "Tipping-point operation: type=" + type + " when=" + when
786 + " when(hex)=" + Long.toHexString(when)
787 + " whenElapsed=" + whenElapsed + " maxWhen=" + maxWhen
788 + " interval=" + interval + " op=" + operation
789 + " standalone=" + isStandalone);
Christopher Tate4cb338d2013-07-26 13:11:31 -0700790 rebatchAllAlarmsLocked(false);
Christopher Tate4cb338d2013-07-26 13:11:31 -0700791 }
792 }
793
Christopher Tate7d57ed82013-10-25 20:18:03 -0700794 rescheduleKernelAlarmsLocked();
Christopher Tatee0a22b32013-07-11 14:43:13 -0700795 }
796
Adam Lesinski182f73f2013-12-05 16:48:06 -0800797 private final IBinder mService = new IAlarmManager.Stub() {
798 @Override
799 public void set(int type, long triggerAtTime, long windowLength, long interval,
Jose Lima235510e2014-08-13 12:50:01 -0700800 PendingIntent operation, WorkSource workSource,
801 AlarmManager.AlarmClockInfo alarmClock) {
Adam Lesinski182f73f2013-12-05 16:48:06 -0800802 if (workSource != null) {
803 getContext().enforceCallingPermission(
804 android.Manifest.permission.UPDATE_DEVICE_STATS,
805 "AlarmManager.set");
Christopher Tate89779822012-08-31 14:40:03 -0700806 }
807
Adam Lesinski182f73f2013-12-05 16:48:06 -0800808 setImpl(type, triggerAtTime, windowLength, interval, operation,
Adrian Roosc42a1e12014-07-07 23:35:53 +0200809 false, workSource, alarmClock);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800810 }
Christopher Tate89779822012-08-31 14:40:03 -0700811
Adam Lesinski182f73f2013-12-05 16:48:06 -0800812 @Override
Greg Hackmann0cab8962014-02-21 16:35:52 -0800813 public boolean setTime(long millis) {
Adam Lesinski182f73f2013-12-05 16:48:06 -0800814 getContext().enforceCallingOrSelfPermission(
815 "android.permission.SET_TIME",
816 "setTime");
817
Greg Hackmann0cab8962014-02-21 16:35:52 -0800818 if (mNativeData == 0) {
819 Slog.w(TAG, "Not setting time since no alarm driver is available.");
820 return false;
Christopher Tate89779822012-08-31 14:40:03 -0700821 }
Greg Hackmann0cab8962014-02-21 16:35:52 -0800822
823 synchronized (mLock) {
824 return setKernelTime(mNativeData, millis) == 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800825 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800826 }
Adam Lesinski182f73f2013-12-05 16:48:06 -0800827
828 @Override
829 public void setTimeZone(String tz) {
830 getContext().enforceCallingOrSelfPermission(
831 "android.permission.SET_TIME_ZONE",
832 "setTimeZone");
833
834 final long oldId = Binder.clearCallingIdentity();
835 try {
836 setTimeZoneImpl(tz);
837 } finally {
838 Binder.restoreCallingIdentity(oldId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800839 }
840 }
Christopher Tate4cb338d2013-07-26 13:11:31 -0700841
Adam Lesinski182f73f2013-12-05 16:48:06 -0800842 @Override
843 public void remove(PendingIntent operation) {
844 removeImpl(operation);
Dianne Hackborn80a4af22012-08-27 19:18:31 -0700845
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800846 }
Christopher Tate4cb338d2013-07-26 13:11:31 -0700847
Adam Lesinski182f73f2013-12-05 16:48:06 -0800848 @Override
Jose Lima235510e2014-08-13 12:50:01 -0700849 public AlarmManager.AlarmClockInfo getNextAlarmClock(int userId) {
Adrian Roosc42a1e12014-07-07 23:35:53 +0200850 userId = ActivityManager.handleIncomingUser(Binder.getCallingPid(),
851 Binder.getCallingUid(), userId, false /* allowAll */, false /* requireFull */,
852 "getNextAlarmClock", null);
853
854 return getNextAlarmClockImpl(userId);
855 }
856
857 @Override
Adam Lesinski182f73f2013-12-05 16:48:06 -0800858 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
859 if (getContext().checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
860 != PackageManager.PERMISSION_GRANTED) {
861 pw.println("Permission Denial: can't dump AlarmManager from from pid="
862 + Binder.getCallingPid()
863 + ", uid=" + Binder.getCallingUid());
864 return;
Christopher Tate4cb338d2013-07-26 13:11:31 -0700865 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -0700866
Adam Lesinski182f73f2013-12-05 16:48:06 -0800867 dumpImpl(pw);
Dianne Hackborn80a4af22012-08-27 19:18:31 -0700868 }
Adam Lesinski182f73f2013-12-05 16:48:06 -0800869 };
Christopher Tate4cb338d2013-07-26 13:11:31 -0700870
Adam Lesinski182f73f2013-12-05 16:48:06 -0800871 void dumpImpl(PrintWriter pw) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800872 synchronized (mLock) {
873 pw.println("Current Alarm Manager state:");
Christopher Tatee0a22b32013-07-11 14:43:13 -0700874 final long nowRTC = System.currentTimeMillis();
875 final long nowELAPSED = SystemClock.elapsedRealtime();
876 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
877
878 pw.print("nowRTC="); pw.print(nowRTC);
879 pw.print("="); pw.print(sdf.format(new Date(nowRTC)));
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700880 pw.print(" nowELAPSED="); TimeUtils.formatDuration(nowELAPSED, pw);
881 pw.println();
882 if (!mInteractive) {
883 pw.print("Time since non-interactive: ");
884 TimeUtils.formatDuration(nowELAPSED - mNonInteractiveStartTime, pw);
885 pw.println();
886 pw.print("Max wakeup delay: ");
887 TimeUtils.formatDuration(currentNonWakeupFuzzLocked(nowELAPSED), pw);
888 pw.println();
889 pw.print("Time since last dispatch: ");
890 TimeUtils.formatDuration(nowELAPSED - mLastAlarmDeliveryTime, pw);
891 pw.println();
892 pw.print("Next non-wakeup delivery time: ");
893 TimeUtils.formatDuration(nowELAPSED - mNextNonWakeupDeliveryTime, pw);
894 pw.println();
895 }
Christopher Tatee0a22b32013-07-11 14:43:13 -0700896
897 long nextWakeupRTC = mNextWakeup + (nowRTC - nowELAPSED);
898 long nextNonWakeupRTC = mNextNonWakeup + (nowRTC - nowELAPSED);
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700899 pw.print("Next non-wakeup alarm: ");
900 TimeUtils.formatDuration(mNextNonWakeup, nowELAPSED, pw);
Christopher Tatee0a22b32013-07-11 14:43:13 -0700901 pw.print(" = "); pw.println(sdf.format(new Date(nextNonWakeupRTC)));
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700902 pw.print("Next wakeup: "); TimeUtils.formatDuration(mNextWakeup, nowELAPSED, pw);
Christopher Tatee0a22b32013-07-11 14:43:13 -0700903 pw.print(" = "); pw.println(sdf.format(new Date(nextWakeupRTC)));
Dianne Hackborn998e6082014-09-11 19:13:23 -0700904 pw.print("Num time change events: "); pw.println(mNumTimeChanged);
Christopher Tatee0a22b32013-07-11 14:43:13 -0700905
906 if (mAlarmBatches.size() > 0) {
907 pw.println();
908 pw.print("Pending alarm batches: ");
909 pw.println(mAlarmBatches.size());
910 for (Batch b : mAlarmBatches) {
911 pw.print(b); pw.println(':');
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700912 dumpAlarmList(pw, b.alarms, " ", nowELAPSED, nowRTC, sdf);
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700913 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800914 }
Dianne Hackborn81038902012-11-26 17:04:09 -0800915
916 pw.println();
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700917 pw.print("Past-due non-wakeup alarms: ");
918 if (mPendingNonWakeupAlarms.size() > 0) {
919 pw.println(mPendingNonWakeupAlarms.size());
920 dumpAlarmList(pw, mPendingNonWakeupAlarms, " ", nowELAPSED, nowRTC, sdf);
921 } else {
922 pw.println("(none)");
923 }
924 pw.print(" Number of delayed alarms: "); pw.print(mNumDelayedAlarms);
925 pw.print(", total delay time: "); TimeUtils.formatDuration(mTotalDelayTime, pw);
926 pw.println();
927 pw.print(" Max delay time: "); TimeUtils.formatDuration(mMaxDelayTime, pw);
928 pw.print(", max non-interactive time: ");
929 TimeUtils.formatDuration(mNonInteractiveTime, pw);
930 pw.println();
931
932 pw.println();
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700933 pw.print(" Broadcast ref count: "); pw.println(mBroadcastRefCount);
Dianne Hackborn81038902012-11-26 17:04:09 -0800934 pw.println();
935
936 if (mLog.dump(pw, " Recent problems", " ")) {
937 pw.println();
938 }
939
940 final FilterStats[] topFilters = new FilterStats[10];
941 final Comparator<FilterStats> comparator = new Comparator<FilterStats>() {
942 @Override
943 public int compare(FilterStats lhs, FilterStats rhs) {
944 if (lhs.aggregateTime < rhs.aggregateTime) {
945 return 1;
946 } else if (lhs.aggregateTime > rhs.aggregateTime) {
947 return -1;
948 }
949 return 0;
950 }
951 };
952 int len = 0;
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800953 for (int iu=0; iu<mBroadcastStats.size(); iu++) {
954 ArrayMap<String, BroadcastStats> uidStats = mBroadcastStats.valueAt(iu);
955 for (int ip=0; ip<uidStats.size(); ip++) {
956 BroadcastStats bs = uidStats.valueAt(ip);
957 for (int is=0; is<bs.filterStats.size(); is++) {
958 FilterStats fs = bs.filterStats.valueAt(is);
959 int pos = len > 0
960 ? Arrays.binarySearch(topFilters, 0, len, fs, comparator) : 0;
961 if (pos < 0) {
962 pos = -pos - 1;
Dianne Hackborn81038902012-11-26 17:04:09 -0800963 }
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800964 if (pos < topFilters.length) {
965 int copylen = topFilters.length - pos - 1;
966 if (copylen > 0) {
967 System.arraycopy(topFilters, pos, topFilters, pos+1, copylen);
968 }
969 topFilters[pos] = fs;
970 if (len < topFilters.length) {
971 len++;
972 }
Dianne Hackborn81038902012-11-26 17:04:09 -0800973 }
974 }
975 }
976 }
977 if (len > 0) {
978 pw.println(" Top Alarms:");
979 for (int i=0; i<len; i++) {
980 FilterStats fs = topFilters[i];
981 pw.print(" ");
982 if (fs.nesting > 0) pw.print("*ACTIVE* ");
983 TimeUtils.formatDuration(fs.aggregateTime, pw);
984 pw.print(" running, "); pw.print(fs.numWakeup);
985 pw.print(" wakeups, "); pw.print(fs.count);
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800986 pw.print(" alarms: "); UserHandle.formatUid(pw, fs.mBroadcastStats.mUid);
987 pw.print(":"); pw.print(fs.mBroadcastStats.mPackageName);
Dianne Hackborn81038902012-11-26 17:04:09 -0800988 pw.println();
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700989 pw.print(" "); pw.print(fs.mTag);
Dianne Hackborn81038902012-11-26 17:04:09 -0800990 pw.println();
991 }
992 }
993
994 pw.println(" ");
995 pw.println(" Alarm Stats:");
996 final ArrayList<FilterStats> tmpFilters = new ArrayList<FilterStats>();
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800997 for (int iu=0; iu<mBroadcastStats.size(); iu++) {
998 ArrayMap<String, BroadcastStats> uidStats = mBroadcastStats.valueAt(iu);
999 for (int ip=0; ip<uidStats.size(); ip++) {
1000 BroadcastStats bs = uidStats.valueAt(ip);
1001 pw.print(" ");
1002 if (bs.nesting > 0) pw.print("*ACTIVE* ");
1003 UserHandle.formatUid(pw, bs.mUid);
1004 pw.print(":");
1005 pw.print(bs.mPackageName);
1006 pw.print(" "); TimeUtils.formatDuration(bs.aggregateTime, pw);
1007 pw.print(" running, "); pw.print(bs.numWakeup);
1008 pw.println(" wakeups:");
1009 tmpFilters.clear();
1010 for (int is=0; is<bs.filterStats.size(); is++) {
1011 tmpFilters.add(bs.filterStats.valueAt(is));
1012 }
1013 Collections.sort(tmpFilters, comparator);
1014 for (int i=0; i<tmpFilters.size(); i++) {
1015 FilterStats fs = tmpFilters.get(i);
1016 pw.print(" ");
1017 if (fs.nesting > 0) pw.print("*ACTIVE* ");
1018 TimeUtils.formatDuration(fs.aggregateTime, pw);
1019 pw.print(" "); pw.print(fs.numWakeup);
1020 pw.print(" wakes " ); pw.print(fs.count);
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001021 pw.print(" alarms: ");
1022 pw.print(fs.mTag);
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001023 pw.println();
1024 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001025 }
1026 }
Christopher Tate18a75f12013-07-01 18:18:59 -07001027
1028 if (WAKEUP_STATS) {
1029 pw.println();
1030 pw.println(" Recent Wakeup History:");
Christopher Tate18a75f12013-07-01 18:18:59 -07001031 long last = -1;
1032 for (WakeupEvent event : mRecentWakeups) {
1033 pw.print(" "); pw.print(sdf.format(new Date(event.when)));
1034 pw.print('|');
1035 if (last < 0) {
1036 pw.print('0');
1037 } else {
1038 pw.print(event.when - last);
1039 }
1040 last = event.when;
1041 pw.print('|'); pw.print(event.uid);
1042 pw.print('|'); pw.print(event.action);
1043 pw.println();
1044 }
1045 pw.println();
1046 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001047 }
1048 }
1049
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001050 private void logBatchesLocked(SimpleDateFormat sdf) {
Adam Lesinski182f73f2013-12-05 16:48:06 -08001051 ByteArrayOutputStream bs = new ByteArrayOutputStream(2048);
1052 PrintWriter pw = new PrintWriter(bs);
1053 final long nowRTC = System.currentTimeMillis();
1054 final long nowELAPSED = SystemClock.elapsedRealtime();
1055 final int NZ = mAlarmBatches.size();
1056 for (int iz = 0; iz < NZ; iz++) {
1057 Batch bz = mAlarmBatches.get(iz);
1058 pw.append("Batch "); pw.print(iz); pw.append(": "); pw.println(bz);
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001059 dumpAlarmList(pw, bz.alarms, " ", nowELAPSED, nowRTC, sdf);
Adam Lesinski182f73f2013-12-05 16:48:06 -08001060 pw.flush();
1061 Slog.v(TAG, bs.toString());
1062 bs.reset();
1063 }
1064 }
1065
1066 private boolean validateConsistencyLocked() {
1067 if (DEBUG_VALIDATE) {
1068 long lastTime = Long.MIN_VALUE;
1069 final int N = mAlarmBatches.size();
1070 for (int i = 0; i < N; i++) {
1071 Batch b = mAlarmBatches.get(i);
1072 if (b.start >= lastTime) {
1073 // duplicate start times are okay because of standalone batches
1074 lastTime = b.start;
1075 } else {
1076 Slog.e(TAG, "CONSISTENCY FAILURE: Batch " + i + " is out of order");
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001077 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
1078 logBatchesLocked(sdf);
Adam Lesinski182f73f2013-12-05 16:48:06 -08001079 return false;
1080 }
1081 }
1082 }
1083 return true;
1084 }
1085
1086 private Batch findFirstWakeupBatchLocked() {
1087 final int N = mAlarmBatches.size();
1088 for (int i = 0; i < N; i++) {
1089 Batch b = mAlarmBatches.get(i);
1090 if (b.hasWakeups()) {
1091 return b;
1092 }
1093 }
1094 return null;
1095 }
1096
Jose Lima235510e2014-08-13 12:50:01 -07001097 private AlarmManager.AlarmClockInfo getNextAlarmClockImpl(int userId) {
Adrian Roosc42a1e12014-07-07 23:35:53 +02001098 synchronized (mLock) {
1099 return mNextAlarmClockForUser.get(userId);
1100 }
1101 }
1102
1103 /**
1104 * Recomputes the next alarm clock for all users.
1105 */
1106 private void updateNextAlarmClockLocked() {
1107 if (!mNextAlarmClockMayChange) {
1108 return;
1109 }
1110 mNextAlarmClockMayChange = false;
1111
Jose Lima235510e2014-08-13 12:50:01 -07001112 SparseArray<AlarmManager.AlarmClockInfo> nextForUser = mTmpSparseAlarmClockArray;
Adrian Roosc42a1e12014-07-07 23:35:53 +02001113 nextForUser.clear();
1114
1115 final int N = mAlarmBatches.size();
1116 for (int i = 0; i < N; i++) {
1117 ArrayList<Alarm> alarms = mAlarmBatches.get(i).alarms;
1118 final int M = alarms.size();
1119
1120 for (int j = 0; j < M; j++) {
1121 Alarm a = alarms.get(j);
1122 if (a.alarmClock != null) {
1123 final int userId = a.userId;
1124
1125 if (DEBUG_ALARM_CLOCK) {
1126 Log.v(TAG, "Found AlarmClockInfo at " +
Selim Cinek9c4a7072014-11-21 17:44:34 +01001127 formatNextAlarm(getContext(), a.alarmClock, userId) +
Adrian Roosc42a1e12014-07-07 23:35:53 +02001128 " for user " + userId);
1129 }
1130
1131 // Alarms and batches are sorted by time, no need to compare times here.
1132 if (nextForUser.get(userId) == null) {
1133 nextForUser.put(userId, a.alarmClock);
1134 }
1135 }
1136 }
1137 }
1138
1139 // Update mNextAlarmForUser with new values.
1140 final int NN = nextForUser.size();
1141 for (int i = 0; i < NN; i++) {
Jose Lima235510e2014-08-13 12:50:01 -07001142 AlarmManager.AlarmClockInfo newAlarm = nextForUser.valueAt(i);
Adrian Roosc42a1e12014-07-07 23:35:53 +02001143 int userId = nextForUser.keyAt(i);
Jose Lima235510e2014-08-13 12:50:01 -07001144 AlarmManager.AlarmClockInfo currentAlarm = mNextAlarmClockForUser.get(userId);
Adrian Roosc42a1e12014-07-07 23:35:53 +02001145 if (!newAlarm.equals(currentAlarm)) {
1146 updateNextAlarmInfoForUserLocked(userId, newAlarm);
1147 }
1148 }
1149
1150 // Remove users without any alarm clocks scheduled.
1151 final int NNN = mNextAlarmClockForUser.size();
1152 for (int i = NNN - 1; i >= 0; i--) {
1153 int userId = mNextAlarmClockForUser.keyAt(i);
1154 if (nextForUser.get(userId) == null) {
1155 updateNextAlarmInfoForUserLocked(userId, null);
1156 }
1157 }
1158 }
1159
Jose Lima235510e2014-08-13 12:50:01 -07001160 private void updateNextAlarmInfoForUserLocked(int userId,
1161 AlarmManager.AlarmClockInfo alarmClock) {
Adrian Roosc42a1e12014-07-07 23:35:53 +02001162 if (alarmClock != null) {
1163 if (DEBUG_ALARM_CLOCK) {
1164 Log.v(TAG, "Next AlarmClockInfoForUser(" + userId + "): " +
Selim Cinek9c4a7072014-11-21 17:44:34 +01001165 formatNextAlarm(getContext(), alarmClock, userId));
Adrian Roosc42a1e12014-07-07 23:35:53 +02001166 }
1167 mNextAlarmClockForUser.put(userId, alarmClock);
1168 } else {
1169 if (DEBUG_ALARM_CLOCK) {
1170 Log.v(TAG, "Next AlarmClockInfoForUser(" + userId + "): None");
1171 }
1172 mNextAlarmClockForUser.remove(userId);
1173 }
1174
1175 mPendingSendNextAlarmClockChangedForUser.put(userId, true);
1176 mHandler.removeMessages(AlarmHandler.SEND_NEXT_ALARM_CLOCK_CHANGED);
1177 mHandler.sendEmptyMessage(AlarmHandler.SEND_NEXT_ALARM_CLOCK_CHANGED);
1178 }
1179
1180 /**
1181 * Updates NEXT_ALARM_FORMATTED and sends NEXT_ALARM_CLOCK_CHANGED_INTENT for all users
1182 * for which alarm clocks have changed since the last call to this.
1183 *
1184 * Do not call with a lock held. Only call from mHandler's thread.
1185 *
1186 * @see AlarmHandler#SEND_NEXT_ALARM_CLOCK_CHANGED
1187 */
1188 private void sendNextAlarmClockChanged() {
Jose Lima235510e2014-08-13 12:50:01 -07001189 SparseArray<AlarmManager.AlarmClockInfo> pendingUsers = mHandlerSparseAlarmClockArray;
Adrian Roosc42a1e12014-07-07 23:35:53 +02001190 pendingUsers.clear();
1191
1192 synchronized (mLock) {
1193 final int N = mPendingSendNextAlarmClockChangedForUser.size();
1194 for (int i = 0; i < N; i++) {
1195 int userId = mPendingSendNextAlarmClockChangedForUser.keyAt(i);
1196 pendingUsers.append(userId, mNextAlarmClockForUser.get(userId));
1197 }
1198 mPendingSendNextAlarmClockChangedForUser.clear();
1199 }
1200
1201 final int N = pendingUsers.size();
1202 for (int i = 0; i < N; i++) {
1203 int userId = pendingUsers.keyAt(i);
Jose Lima235510e2014-08-13 12:50:01 -07001204 AlarmManager.AlarmClockInfo alarmClock = pendingUsers.valueAt(i);
Adrian Roosc42a1e12014-07-07 23:35:53 +02001205 Settings.System.putStringForUser(getContext().getContentResolver(),
1206 Settings.System.NEXT_ALARM_FORMATTED,
Selim Cinek9c4a7072014-11-21 17:44:34 +01001207 formatNextAlarm(getContext(), alarmClock, userId),
Adrian Roosc42a1e12014-07-07 23:35:53 +02001208 userId);
1209
1210 getContext().sendBroadcastAsUser(NEXT_ALARM_CLOCK_CHANGED_INTENT,
1211 new UserHandle(userId));
1212 }
1213 }
1214
1215 /**
1216 * Formats an alarm like platform/packages/apps/DeskClock used to.
1217 */
Selim Cinek9c4a7072014-11-21 17:44:34 +01001218 private static String formatNextAlarm(final Context context, AlarmManager.AlarmClockInfo info,
1219 int userId) {
1220 String skeleton = DateFormat.is24HourFormat(context, userId) ? "EHm" : "Ehma";
Adrian Roosc42a1e12014-07-07 23:35:53 +02001221 String pattern = DateFormat.getBestDateTimePattern(Locale.getDefault(), skeleton);
1222 return (info == null) ? "" :
1223 DateFormat.format(pattern, info.getTriggerTime()).toString();
1224 }
1225
Adam Lesinski182f73f2013-12-05 16:48:06 -08001226 void rescheduleKernelAlarmsLocked() {
1227 // Schedule the next upcoming wakeup alarm. If there is a deliverable batch
1228 // prior to that which contains no wakeups, we schedule that as well.
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001229 long nextNonWakeup = 0;
Adam Lesinski182f73f2013-12-05 16:48:06 -08001230 if (mAlarmBatches.size() > 0) {
1231 final Batch firstWakeup = findFirstWakeupBatchLocked();
1232 final Batch firstBatch = mAlarmBatches.get(0);
1233 if (firstWakeup != null && mNextWakeup != firstWakeup.start) {
1234 mNextWakeup = firstWakeup.start;
1235 setLocked(ELAPSED_REALTIME_WAKEUP, firstWakeup.start);
1236 }
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001237 if (firstBatch != firstWakeup) {
1238 nextNonWakeup = firstBatch.start;
Adam Lesinski182f73f2013-12-05 16:48:06 -08001239 }
1240 }
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001241 if (mPendingNonWakeupAlarms.size() > 0) {
1242 if (nextNonWakeup == 0 || mNextNonWakeupDeliveryTime < nextNonWakeup) {
1243 nextNonWakeup = mNextNonWakeupDeliveryTime;
1244 }
1245 }
1246 if (nextNonWakeup != 0 && mNextNonWakeup != nextNonWakeup) {
1247 mNextNonWakeup = nextNonWakeup;
1248 setLocked(ELAPSED_REALTIME, nextNonWakeup);
1249 }
Adam Lesinski182f73f2013-12-05 16:48:06 -08001250 }
1251
1252 private void removeLocked(PendingIntent operation) {
1253 boolean didRemove = false;
1254 for (int i = mAlarmBatches.size() - 1; i >= 0; i--) {
1255 Batch b = mAlarmBatches.get(i);
1256 didRemove |= b.remove(operation);
1257 if (b.size() == 0) {
1258 mAlarmBatches.remove(i);
1259 }
1260 }
1261
1262 if (didRemove) {
1263 if (DEBUG_BATCH) {
1264 Slog.v(TAG, "remove(operation) changed bounds; rebatching");
1265 }
1266 rebatchAllAlarmsLocked(true);
1267 rescheduleKernelAlarmsLocked();
Adrian Roosc42a1e12014-07-07 23:35:53 +02001268 updateNextAlarmClockLocked();
Adam Lesinski182f73f2013-12-05 16:48:06 -08001269 }
1270 }
1271
1272 void removeLocked(String packageName) {
1273 boolean didRemove = false;
1274 for (int i = mAlarmBatches.size() - 1; i >= 0; i--) {
1275 Batch b = mAlarmBatches.get(i);
1276 didRemove |= b.remove(packageName);
1277 if (b.size() == 0) {
1278 mAlarmBatches.remove(i);
1279 }
1280 }
1281
1282 if (didRemove) {
1283 if (DEBUG_BATCH) {
1284 Slog.v(TAG, "remove(package) changed bounds; rebatching");
1285 }
1286 rebatchAllAlarmsLocked(true);
1287 rescheduleKernelAlarmsLocked();
Adrian Roosc42a1e12014-07-07 23:35:53 +02001288 updateNextAlarmClockLocked();
Adam Lesinski182f73f2013-12-05 16:48:06 -08001289 }
1290 }
1291
1292 void removeUserLocked(int userHandle) {
1293 boolean didRemove = false;
1294 for (int i = mAlarmBatches.size() - 1; i >= 0; i--) {
1295 Batch b = mAlarmBatches.get(i);
1296 didRemove |= b.remove(userHandle);
1297 if (b.size() == 0) {
1298 mAlarmBatches.remove(i);
1299 }
1300 }
1301
1302 if (didRemove) {
1303 if (DEBUG_BATCH) {
1304 Slog.v(TAG, "remove(user) changed bounds; rebatching");
1305 }
1306 rebatchAllAlarmsLocked(true);
1307 rescheduleKernelAlarmsLocked();
Adrian Roosc42a1e12014-07-07 23:35:53 +02001308 updateNextAlarmClockLocked();
Adam Lesinski182f73f2013-12-05 16:48:06 -08001309 }
1310 }
1311
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001312 void interactiveStateChangedLocked(boolean interactive) {
1313 if (mInteractive != interactive) {
1314 mInteractive = interactive;
1315 final long nowELAPSED = SystemClock.elapsedRealtime();
1316 if (interactive) {
1317 if (mPendingNonWakeupAlarms.size() > 0) {
1318 final long thisDelayTime = nowELAPSED - mStartCurrentDelayTime;
1319 mTotalDelayTime += thisDelayTime;
1320 if (mMaxDelayTime < thisDelayTime) {
1321 mMaxDelayTime = thisDelayTime;
1322 }
1323 deliverAlarmsLocked(mPendingNonWakeupAlarms, nowELAPSED);
1324 mPendingNonWakeupAlarms.clear();
1325 }
1326 if (mNonInteractiveStartTime > 0) {
1327 long dur = nowELAPSED - mNonInteractiveStartTime;
1328 if (dur > mNonInteractiveTime) {
1329 mNonInteractiveTime = dur;
1330 }
1331 }
1332 } else {
1333 mNonInteractiveStartTime = nowELAPSED;
1334 }
1335 }
1336 }
1337
Adam Lesinski182f73f2013-12-05 16:48:06 -08001338 boolean lookForPackageLocked(String packageName) {
1339 for (int i = 0; i < mAlarmBatches.size(); i++) {
1340 Batch b = mAlarmBatches.get(i);
1341 if (b.hasPackage(packageName)) {
1342 return true;
1343 }
1344 }
1345 return false;
1346 }
1347
1348 private void setLocked(int type, long when) {
Greg Hackmannf1bdbdd2013-12-17 11:56:22 -08001349 if (mNativeData != 0) {
Adam Lesinski182f73f2013-12-05 16:48:06 -08001350 // The kernel never triggers alarms with negative wakeup times
1351 // so we ensure they are positive.
1352 long alarmSeconds, alarmNanoseconds;
1353 if (when < 0) {
1354 alarmSeconds = 0;
1355 alarmNanoseconds = 0;
1356 } else {
1357 alarmSeconds = when / 1000;
1358 alarmNanoseconds = (when % 1000) * 1000 * 1000;
1359 }
1360
Greg Hackmannf1bdbdd2013-12-17 11:56:22 -08001361 set(mNativeData, type, alarmSeconds, alarmNanoseconds);
Adam Lesinski182f73f2013-12-05 16:48:06 -08001362 } else {
1363 Message msg = Message.obtain();
1364 msg.what = ALARM_EVENT;
1365
1366 mHandler.removeMessages(ALARM_EVENT);
1367 mHandler.sendMessageAtTime(msg, when);
1368 }
1369 }
1370
Dianne Hackborn043fcd92010-10-06 14:27:34 -07001371 private static final void dumpAlarmList(PrintWriter pw, ArrayList<Alarm> list,
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001372 String prefix, String label, long nowRTC, long nowELAPSED, SimpleDateFormat sdf) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001373 for (int i=list.size()-1; i>=0; i--) {
1374 Alarm a = list.get(i);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001375 pw.print(prefix); pw.print(label); pw.print(" #"); pw.print(i);
1376 pw.print(": "); pw.println(a);
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001377 a.dump(pw, prefix + " ", nowRTC, nowELAPSED, sdf);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001378 }
1379 }
Christopher Tatee0a22b32013-07-11 14:43:13 -07001380
1381 private static final String labelForType(int type) {
1382 switch (type) {
1383 case RTC: return "RTC";
1384 case RTC_WAKEUP : return "RTC_WAKEUP";
1385 case ELAPSED_REALTIME : return "ELAPSED";
1386 case ELAPSED_REALTIME_WAKEUP: return "ELAPSED_WAKEUP";
1387 default:
1388 break;
1389 }
1390 return "--unknown--";
1391 }
1392
1393 private static final void dumpAlarmList(PrintWriter pw, ArrayList<Alarm> list,
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001394 String prefix, long nowELAPSED, long nowRTC, SimpleDateFormat sdf) {
Christopher Tatee0a22b32013-07-11 14:43:13 -07001395 for (int i=list.size()-1; i>=0; i--) {
1396 Alarm a = list.get(i);
1397 final String label = labelForType(a.type);
Christopher Tatee0a22b32013-07-11 14:43:13 -07001398 pw.print(prefix); pw.print(label); pw.print(" #"); pw.print(i);
1399 pw.print(": "); pw.println(a);
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001400 a.dump(pw, prefix + " ", nowRTC, nowELAPSED, sdf);
Christopher Tatee0a22b32013-07-11 14:43:13 -07001401 }
1402 }
1403
Greg Hackmanna1d6f922013-12-09 16:56:53 -08001404 private native long init();
1405 private native void close(long nativeData);
1406 private native void set(long nativeData, int type, long seconds, long nanoseconds);
1407 private native int waitForAlarm(long nativeData);
Greg Hackmann38bf5142014-02-19 16:39:36 -08001408 private native int setKernelTime(long nativeData, long millis);
Greg Hackmanna1d6f922013-12-09 16:56:53 -08001409 private native int setKernelTimezone(long nativeData, int minuteswest);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001410
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001411 boolean triggerAlarmsLocked(ArrayList<Alarm> triggerList, final long nowELAPSED,
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001412 final long nowRTC) {
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001413 boolean hasWakeup = false;
Christopher Tatee0a22b32013-07-11 14:43:13 -07001414 // batches are temporally sorted, so we need only pull from the
1415 // start of the list until we either empty it or hit a batch
1416 // that is not yet deliverable
Christopher Tate6578ad12013-09-24 17:12:46 -07001417 while (mAlarmBatches.size() > 0) {
1418 Batch batch = mAlarmBatches.get(0);
Christopher Tatee0a22b32013-07-11 14:43:13 -07001419 if (batch.start > nowELAPSED) {
1420 // Everything else is scheduled for the future
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001421 break;
1422 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001423
Christopher Tatee0a22b32013-07-11 14:43:13 -07001424 // We will (re)schedule some alarms now; don't let that interfere
1425 // with delivery of this current batch
1426 mAlarmBatches.remove(0);
Dianne Hackborn390517b2013-05-30 15:03:32 -07001427
Christopher Tatee0a22b32013-07-11 14:43:13 -07001428 final int N = batch.size();
1429 for (int i = 0; i < N; i++) {
1430 Alarm alarm = batch.get(i);
1431 alarm.count = 1;
1432 triggerList.add(alarm);
1433
1434 // Recurring alarms may have passed several alarm intervals while the
1435 // phone was asleep or off, so pass a trigger count when sending them.
1436 if (alarm.repeatInterval > 0) {
1437 // this adjustment will be zero if we're late by
1438 // less than one full repeat interval
1439 alarm.count += (nowELAPSED - alarm.whenElapsed) / alarm.repeatInterval;
1440
1441 // Also schedule its next recurrence
1442 final long delta = alarm.count * alarm.repeatInterval;
1443 final long nextElapsed = alarm.whenElapsed + delta;
Christopher Tate3e04b472013-10-21 17:51:31 -07001444 setImplLocked(alarm.type, alarm.when + delta, nextElapsed, alarm.windowLength,
Christopher Tatee0a22b32013-07-11 14:43:13 -07001445 maxTriggerTime(nowELAPSED, nextElapsed, alarm.repeatInterval),
David Christieebe51fc2013-07-26 13:23:29 -07001446 alarm.repeatInterval, alarm.operation, batch.standalone, true,
Adrian Roosc42a1e12014-07-07 23:35:53 +02001447 alarm.workSource, alarm.alarmClock, alarm.userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001448
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001449 // For now we count this as a wakeup alarm, meaning it needs to be
1450 // delivered immediately. In the future we should change this, but
1451 // that required delaying when we reschedule the repeat...!
1452 hasWakeup = false;
1453 } else if (alarm.wakeup) {
1454 hasWakeup = true;
1455 }
Adrian Roosc42a1e12014-07-07 23:35:53 +02001456
1457 // We removed an alarm clock. Let the caller recompute the next alarm clock.
1458 if (alarm.alarmClock != null) {
1459 mNextAlarmClockMayChange = true;
1460 }
Dianne Hackborn390517b2013-05-30 15:03:32 -07001461 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001462 }
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001463
Christopher Tate1590f1e2014-10-02 17:27:57 -07001464 // This is a new alarm delivery set; bump the sequence number to indicate that
1465 // all apps' alarm delivery classes should be recalculated.
1466 mCurrentSeq++;
1467 calculateDeliveryPriorities(triggerList);
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001468 Collections.sort(triggerList, mAlarmDispatchComparator);
1469
1470 if (localLOGV) {
1471 for (int i=0; i<triggerList.size(); i++) {
1472 Slog.v(TAG, "Triggering alarm #" + i + ": " + triggerList.get(i));
1473 }
1474 }
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001475
1476 return hasWakeup;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001477 }
Christopher Tatee0a22b32013-07-11 14:43:13 -07001478
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001479 /**
1480 * This Comparator sorts Alarms into increasing time order.
1481 */
1482 public static class IncreasingTimeOrder implements Comparator<Alarm> {
1483 public int compare(Alarm a1, Alarm a2) {
1484 long when1 = a1.when;
1485 long when2 = a2.when;
1486 if (when1 - when2 > 0) {
1487 return 1;
1488 }
1489 if (when1 - when2 < 0) {
1490 return -1;
1491 }
1492 return 0;
1493 }
1494 }
1495
1496 private static class Alarm {
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001497 public final int type;
1498 public final boolean wakeup;
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001499 public final PendingIntent operation;
1500 public final String tag;
1501 public final WorkSource workSource;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001502 public int count;
1503 public long when;
Christopher Tate3e04b472013-10-21 17:51:31 -07001504 public long windowLength;
Christopher Tatee0a22b32013-07-11 14:43:13 -07001505 public long whenElapsed; // 'when' in the elapsed time base
1506 public long maxWhen; // also in the elapsed time base
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001507 public long repeatInterval;
Jose Lima235510e2014-08-13 12:50:01 -07001508 public final AlarmManager.AlarmClockInfo alarmClock;
Adrian Roosc42a1e12014-07-07 23:35:53 +02001509 public final int userId;
Christopher Tate1590f1e2014-10-02 17:27:57 -07001510 public PriorityClass priorityClass;
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001511
Christopher Tate3e04b472013-10-21 17:51:31 -07001512 public Alarm(int _type, long _when, long _whenElapsed, long _windowLength, long _maxWhen,
Jose Lima235510e2014-08-13 12:50:01 -07001513 long _interval, PendingIntent _op, WorkSource _ws,
1514 AlarmManager.AlarmClockInfo _info, int _userId) {
Christopher Tatee0a22b32013-07-11 14:43:13 -07001515 type = _type;
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001516 wakeup = _type == AlarmManager.ELAPSED_REALTIME_WAKEUP
1517 || _type == AlarmManager.RTC_WAKEUP;
Christopher Tatee0a22b32013-07-11 14:43:13 -07001518 when = _when;
1519 whenElapsed = _whenElapsed;
Christopher Tate3e04b472013-10-21 17:51:31 -07001520 windowLength = _windowLength;
Christopher Tatee0a22b32013-07-11 14:43:13 -07001521 maxWhen = _maxWhen;
1522 repeatInterval = _interval;
1523 operation = _op;
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001524 tag = makeTag(_op, _type);
David Christieebe51fc2013-07-26 13:23:29 -07001525 workSource = _ws;
Adrian Roosc42a1e12014-07-07 23:35:53 +02001526 alarmClock = _info;
1527 userId = _userId;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001528 }
Christopher Tatee0a22b32013-07-11 14:43:13 -07001529
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001530 public static String makeTag(PendingIntent pi, int type) {
1531 return pi.getTag(type == ELAPSED_REALTIME_WAKEUP || type == RTC_WAKEUP
1532 ? "*walarm*:" : "*alarm*:");
1533 }
1534
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001535 @Override
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001536 public String toString() {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001537 StringBuilder sb = new StringBuilder(128);
1538 sb.append("Alarm{");
1539 sb.append(Integer.toHexString(System.identityHashCode(this)));
1540 sb.append(" type ");
1541 sb.append(type);
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001542 sb.append(" when ");
1543 sb.append(when);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001544 sb.append(" ");
1545 sb.append(operation.getTargetPackage());
1546 sb.append('}');
1547 return sb.toString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001548 }
1549
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001550 public void dump(PrintWriter pw, String prefix, long nowRTC, long nowELAPSED,
1551 SimpleDateFormat sdf) {
1552 final boolean isRtc = (type == RTC || type == RTC_WAKEUP);
1553 pw.print(prefix); pw.print("tag="); pw.println(tag);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001554 pw.print(prefix); pw.print("type="); pw.print(type);
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001555 pw.print(" whenElapsed="); TimeUtils.formatDuration(whenElapsed,
1556 nowELAPSED, pw);
1557 if (isRtc) {
1558 pw.print(" when="); pw.print(sdf.format(new Date(when)));
1559 } else {
1560 pw.print(" when="); TimeUtils.formatDuration(when, nowELAPSED, pw);
1561 }
1562 pw.println();
1563 pw.print(prefix); pw.print("window="); pw.print(windowLength);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001564 pw.print(" repeatInterval="); pw.print(repeatInterval);
1565 pw.print(" count="); pw.println(count);
1566 pw.print(prefix); pw.print("operation="); pw.println(operation);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001567 }
1568 }
Christopher Tate18a75f12013-07-01 18:18:59 -07001569
Christopher Tatee0a22b32013-07-11 14:43:13 -07001570 void recordWakeupAlarms(ArrayList<Batch> batches, long nowELAPSED, long nowRTC) {
1571 final int numBatches = batches.size();
Christopher Tatee982faf2013-07-19 14:51:44 -07001572 for (int nextBatch = 0; nextBatch < numBatches; nextBatch++) {
1573 Batch b = batches.get(nextBatch);
Christopher Tatee0a22b32013-07-11 14:43:13 -07001574 if (b.start > nowELAPSED) {
Christopher Tate18a75f12013-07-01 18:18:59 -07001575 break;
1576 }
1577
Christopher Tatee0a22b32013-07-11 14:43:13 -07001578 final int numAlarms = b.alarms.size();
Christopher Tatee982faf2013-07-19 14:51:44 -07001579 for (int nextAlarm = 0; nextAlarm < numAlarms; nextAlarm++) {
1580 Alarm a = b.alarms.get(nextAlarm);
Christopher Tatee0a22b32013-07-11 14:43:13 -07001581 WakeupEvent e = new WakeupEvent(nowRTC,
1582 a.operation.getCreatorUid(),
1583 a.operation.getIntent().getAction());
1584 mRecentWakeups.add(e);
1585 }
Christopher Tate18a75f12013-07-01 18:18:59 -07001586 }
1587 }
1588
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001589 long currentNonWakeupFuzzLocked(long nowELAPSED) {
1590 long timeSinceOn = nowELAPSED - mNonInteractiveStartTime;
1591 if (timeSinceOn < 5*60*1000) {
1592 // If the screen has been off for 5 minutes, only delay by at most two minutes.
1593 return 2*60*1000;
1594 } else if (timeSinceOn < 30*60*1000) {
1595 // If the screen has been off for 30 minutes, only delay by at most 15 minutes.
1596 return 15*60*1000;
1597 } else {
1598 // Otherwise, we will delay by at most an hour.
1599 return 60*60*1000;
1600 }
1601 }
1602
1603 boolean checkAllowNonWakeupDelayLocked(long nowELAPSED) {
1604 if (mInteractive) {
1605 return false;
1606 }
1607 if (mLastAlarmDeliveryTime <= 0) {
1608 return false;
1609 }
1610 if (mPendingNonWakeupAlarms.size() > 0 && mNextNonWakeupDeliveryTime > nowELAPSED) {
1611 // This is just a little paranoia, if somehow we have pending non-wakeup alarms
1612 // and the next delivery time is in the past, then just deliver them all. This
1613 // avoids bugs where we get stuck in a loop trying to poll for alarms.
1614 return false;
1615 }
1616 long timeSinceLast = nowELAPSED - mLastAlarmDeliveryTime;
1617 return timeSinceLast <= currentNonWakeupFuzzLocked(nowELAPSED);
1618 }
1619
1620 void deliverAlarmsLocked(ArrayList<Alarm> triggerList, long nowELAPSED) {
1621 mLastAlarmDeliveryTime = nowELAPSED;
1622 for (int i=0; i<triggerList.size(); i++) {
1623 Alarm alarm = triggerList.get(i);
1624 try {
Christopher Tate2ff5a732014-09-18 13:47:57 -07001625 if (localLOGV) {
1626 Slog.v(TAG, "sending alarm " + alarm);
1627 }
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001628 alarm.operation.send(getContext(), 0,
1629 mBackgroundIntent.putExtra(
1630 Intent.EXTRA_ALARM_COUNT, alarm.count),
1631 mResultReceiver, mHandler);
1632
1633 // we have an active broadcast so stay awake.
1634 if (mBroadcastRefCount == 0) {
1635 setWakelockWorkSource(alarm.operation, alarm.workSource,
1636 alarm.type, alarm.tag, true);
1637 mWakeLock.acquire();
1638 }
1639 final InFlight inflight = new InFlight(AlarmManagerService.this,
1640 alarm.operation, alarm.workSource, alarm.type, alarm.tag);
1641 mInFlight.add(inflight);
1642 mBroadcastRefCount++;
1643
1644 final BroadcastStats bs = inflight.mBroadcastStats;
1645 bs.count++;
1646 if (bs.nesting == 0) {
1647 bs.nesting = 1;
1648 bs.startTime = nowELAPSED;
1649 } else {
1650 bs.nesting++;
1651 }
1652 final FilterStats fs = inflight.mFilterStats;
1653 fs.count++;
1654 if (fs.nesting == 0) {
1655 fs.nesting = 1;
1656 fs.startTime = nowELAPSED;
1657 } else {
1658 fs.nesting++;
1659 }
1660 if (alarm.type == ELAPSED_REALTIME_WAKEUP
1661 || alarm.type == RTC_WAKEUP) {
1662 bs.numWakeup++;
1663 fs.numWakeup++;
1664 if (alarm.workSource != null && alarm.workSource.size() > 0) {
1665 for (int wi=0; wi<alarm.workSource.size(); wi++) {
1666 ActivityManagerNative.noteWakeupAlarm(
1667 alarm.operation, alarm.workSource.get(wi),
1668 alarm.workSource.getName(wi));
1669 }
1670 } else {
1671 ActivityManagerNative.noteWakeupAlarm(
1672 alarm.operation, -1, null);
1673 }
1674 }
1675 } catch (PendingIntent.CanceledException e) {
1676 if (alarm.repeatInterval > 0) {
1677 // This IntentSender is no longer valid, but this
1678 // is a repeating alarm, so toss the hoser.
1679 removeImpl(alarm.operation);
1680 }
1681 } catch (RuntimeException e) {
1682 Slog.w(TAG, "Failure sending alarm.", e);
1683 }
1684 }
1685 }
1686
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001687 private class AlarmThread extends Thread
1688 {
1689 public AlarmThread()
1690 {
1691 super("AlarmManager");
1692 }
1693
1694 public void run()
1695 {
Dianne Hackborn390517b2013-05-30 15:03:32 -07001696 ArrayList<Alarm> triggerList = new ArrayList<Alarm>();
1697
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001698 while (true)
1699 {
Greg Hackmanna1d6f922013-12-09 16:56:53 -08001700 int result = waitForAlarm(mNativeData);
Dianne Hackborn390517b2013-05-30 15:03:32 -07001701
1702 triggerList.clear();
1703
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001704 if ((result & TIME_CHANGED_MASK) != 0) {
Christopher Tate385e4982013-07-23 18:22:29 -07001705 if (DEBUG_BATCH) {
Christopher Tate4cb338d2013-07-26 13:11:31 -07001706 Slog.v(TAG, "Time changed notification from kernel; rebatching");
Christopher Tate385e4982013-07-23 18:22:29 -07001707 }
Adam Lesinski182f73f2013-12-05 16:48:06 -08001708 removeImpl(mTimeTickSender);
Christopher Tatee0a22b32013-07-11 14:43:13 -07001709 rebatchAllAlarms();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001710 mClockReceiver.scheduleTimeTickEvent();
Dianne Hackborn998e6082014-09-11 19:13:23 -07001711 synchronized (mLock) {
1712 mNumTimeChanged++;
1713 }
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08001714 Intent intent = new Intent(Intent.ACTION_TIME_CHANGED);
Dianne Hackborn89ba6752011-01-23 16:51:16 -08001715 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING
1716 | Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Adam Lesinski182f73f2013-12-05 16:48:06 -08001717 getContext().sendBroadcastAsUser(intent, UserHandle.ALL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001718 }
1719
1720 synchronized (mLock) {
1721 final long nowRTC = System.currentTimeMillis();
1722 final long nowELAPSED = SystemClock.elapsedRealtime();
Joe Onorato8a9b2202010-02-26 18:56:32 -08001723 if (localLOGV) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001724 TAG, "Checking for alarms... rtc=" + nowRTC
1725 + ", elapsed=" + nowELAPSED);
1726
Christopher Tate18a75f12013-07-01 18:18:59 -07001727 if (WAKEUP_STATS) {
1728 if ((result & IS_WAKEUP_MASK) != 0) {
1729 long newEarliest = nowRTC - RECENT_WAKEUP_PERIOD;
1730 int n = 0;
1731 for (WakeupEvent event : mRecentWakeups) {
1732 if (event.when > newEarliest) break;
1733 n++; // number of now-stale entries at the list head
1734 }
1735 for (int i = 0; i < n; i++) {
1736 mRecentWakeups.remove();
1737 }
1738
Christopher Tatee0a22b32013-07-11 14:43:13 -07001739 recordWakeupAlarms(mAlarmBatches, nowELAPSED, nowRTC);
Christopher Tate18a75f12013-07-01 18:18:59 -07001740 }
1741 }
1742
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001743 boolean hasWakeup = triggerAlarmsLocked(triggerList, nowELAPSED, nowRTC);
1744 if (!hasWakeup && checkAllowNonWakeupDelayLocked(nowELAPSED)) {
1745 // if there are no wakeup alarms and the screen is off, we can
1746 // delay what we have so far until the future.
1747 if (mPendingNonWakeupAlarms.size() == 0) {
1748 mStartCurrentDelayTime = nowELAPSED;
1749 mNextNonWakeupDeliveryTime = nowELAPSED
1750 + ((currentNonWakeupFuzzLocked(nowELAPSED)*3)/2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001751 }
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001752 mPendingNonWakeupAlarms.addAll(triggerList);
1753 mNumDelayedAlarms += triggerList.size();
1754 rescheduleKernelAlarmsLocked();
Adrian Roosc42a1e12014-07-07 23:35:53 +02001755 updateNextAlarmClockLocked();
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001756 } else {
1757 // now deliver the alarm intents; if there are pending non-wakeup
1758 // alarms, we need to merge them in to the list. note we don't
1759 // just deliver them first because we generally want non-wakeup
1760 // alarms delivered after wakeup alarms.
1761 rescheduleKernelAlarmsLocked();
Adrian Roosc42a1e12014-07-07 23:35:53 +02001762 updateNextAlarmClockLocked();
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001763 if (mPendingNonWakeupAlarms.size() > 0) {
Christopher Tate1590f1e2014-10-02 17:27:57 -07001764 calculateDeliveryPriorities(mPendingNonWakeupAlarms);
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001765 triggerList.addAll(mPendingNonWakeupAlarms);
1766 Collections.sort(triggerList, mAlarmDispatchComparator);
1767 final long thisDelayTime = nowELAPSED - mStartCurrentDelayTime;
1768 mTotalDelayTime += thisDelayTime;
1769 if (mMaxDelayTime < thisDelayTime) {
1770 mMaxDelayTime = thisDelayTime;
1771 }
1772 mPendingNonWakeupAlarms.clear();
1773 }
1774 deliverAlarmsLocked(triggerList, nowELAPSED);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001775 }
1776 }
1777 }
1778 }
1779 }
Christopher Tatec4a07d12012-04-06 14:19:13 -07001780
David Christieebe51fc2013-07-26 13:23:29 -07001781 /**
1782 * Attribute blame for a WakeLock.
1783 * @param pi PendingIntent to attribute blame to if ws is null.
1784 * @param ws WorkSource to attribute blame.
1785 */
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001786 void setWakelockWorkSource(PendingIntent pi, WorkSource ws, int type, String tag,
1787 boolean first) {
Christopher Tatec4a07d12012-04-06 14:19:13 -07001788 try {
Dianne Hackborna1bd7922014-03-21 11:07:11 -07001789 final boolean unimportant = pi == mTimeTickSender;
1790 mWakeLock.setUnimportantForLogging(unimportant);
Dianne Hackborn4590e522014-03-24 13:36:46 -07001791 if (first || mLastWakeLockUnimportantForLogging) {
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001792 mWakeLock.setHistoryTag(tag);
Dianne Hackborn4590e522014-03-24 13:36:46 -07001793 } else {
1794 mWakeLock.setHistoryTag(null);
1795 }
1796 mLastWakeLockUnimportantForLogging = unimportant;
David Christieebe51fc2013-07-26 13:23:29 -07001797 if (ws != null) {
1798 mWakeLock.setWorkSource(ws);
1799 return;
1800 }
1801
Christopher Tatec4a07d12012-04-06 14:19:13 -07001802 final int uid = ActivityManagerNative.getDefault()
1803 .getUidForIntentSender(pi.getTarget());
1804 if (uid >= 0) {
1805 mWakeLock.setWorkSource(new WorkSource(uid));
1806 return;
1807 }
1808 } catch (Exception e) {
1809 }
1810
1811 // Something went wrong; fall back to attributing the lock to the OS
1812 mWakeLock.setWorkSource(null);
1813 }
1814
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001815 private class AlarmHandler extends Handler {
1816 public static final int ALARM_EVENT = 1;
1817 public static final int MINUTE_CHANGE_EVENT = 2;
1818 public static final int DATE_CHANGE_EVENT = 3;
Adrian Roosc42a1e12014-07-07 23:35:53 +02001819 public static final int SEND_NEXT_ALARM_CLOCK_CHANGED = 4;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001820
1821 public AlarmHandler() {
1822 }
1823
1824 public void handleMessage(Message msg) {
1825 if (msg.what == ALARM_EVENT) {
1826 ArrayList<Alarm> triggerList = new ArrayList<Alarm>();
1827 synchronized (mLock) {
1828 final long nowRTC = System.currentTimeMillis();
Christopher Tatee0a22b32013-07-11 14:43:13 -07001829 final long nowELAPSED = SystemClock.elapsedRealtime();
1830 triggerAlarmsLocked(triggerList, nowELAPSED, nowRTC);
Adrian Roosc42a1e12014-07-07 23:35:53 +02001831 updateNextAlarmClockLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001832 }
Adrian Roosc42a1e12014-07-07 23:35:53 +02001833
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001834 // now trigger the alarms without the lock held
Dianne Hackborn390517b2013-05-30 15:03:32 -07001835 for (int i=0; i<triggerList.size(); i++) {
1836 Alarm alarm = triggerList.get(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001837 try {
1838 alarm.operation.send();
1839 } catch (PendingIntent.CanceledException e) {
1840 if (alarm.repeatInterval > 0) {
1841 // This IntentSender is no longer valid, but this
1842 // is a repeating alarm, so toss the hoser.
Adam Lesinski182f73f2013-12-05 16:48:06 -08001843 removeImpl(alarm.operation);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001844 }
1845 }
1846 }
Adrian Roosc42a1e12014-07-07 23:35:53 +02001847 } else if (msg.what == SEND_NEXT_ALARM_CLOCK_CHANGED) {
1848 sendNextAlarmClockChanged();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001849 }
1850 }
1851 }
1852
1853 class ClockReceiver extends BroadcastReceiver {
1854 public ClockReceiver() {
1855 IntentFilter filter = new IntentFilter();
1856 filter.addAction(Intent.ACTION_TIME_TICK);
1857 filter.addAction(Intent.ACTION_DATE_CHANGED);
Adam Lesinski182f73f2013-12-05 16:48:06 -08001858 getContext().registerReceiver(this, filter);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001859 }
1860
1861 @Override
1862 public void onReceive(Context context, Intent intent) {
1863 if (intent.getAction().equals(Intent.ACTION_TIME_TICK)) {
Christopher Tate385e4982013-07-23 18:22:29 -07001864 if (DEBUG_BATCH) {
1865 Slog.v(TAG, "Received TIME_TICK alarm; rescheduling");
1866 }
1867 scheduleTimeTickEvent();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001868 } else if (intent.getAction().equals(Intent.ACTION_DATE_CHANGED)) {
1869 // Since the kernel does not keep track of DST, we need to
1870 // reset the TZ information at the beginning of each day
1871 // based off of the current Zone gmt offset + userspace tracked
1872 // daylight savings information.
1873 TimeZone zone = TimeZone.getTimeZone(SystemProperties.get(TIMEZONE_PROPERTY));
Lavettacn Xiaoc84cc4f2010-08-30 12:47:23 +02001874 int gmtOffset = zone.getOffset(System.currentTimeMillis());
Greg Hackmanna1d6f922013-12-09 16:56:53 -08001875 setKernelTimezone(mNativeData, -(gmtOffset / 60000));
Christopher Tate385e4982013-07-23 18:22:29 -07001876 scheduleDateChangedEvent();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001877 }
1878 }
1879
1880 public void scheduleTimeTickEvent() {
Paul Westbrook51608a52011-08-25 13:18:54 -07001881 final long currentTime = System.currentTimeMillis();
Sungmin Choi563914a2013-01-10 17:28:40 +09001882 final long nextTime = 60000 * ((currentTime / 60000) + 1);
Paul Westbrook51608a52011-08-25 13:18:54 -07001883
1884 // Schedule this event for the amount of time that it would take to get to
1885 // the top of the next minute.
Sungmin Choi563914a2013-01-10 17:28:40 +09001886 final long tickEventDelay = nextTime - currentTime;
Paul Westbrook51608a52011-08-25 13:18:54 -07001887
David Christieebe51fc2013-07-26 13:23:29 -07001888 final WorkSource workSource = null; // Let system take blame for time tick events.
Adam Lesinski182f73f2013-12-05 16:48:06 -08001889 setImpl(ELAPSED_REALTIME, SystemClock.elapsedRealtime() + tickEventDelay, 0,
Adrian Roosc42a1e12014-07-07 23:35:53 +02001890 0, mTimeTickSender, true, workSource, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001891 }
Christopher Tate385e4982013-07-23 18:22:29 -07001892
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001893 public void scheduleDateChangedEvent() {
1894 Calendar calendar = Calendar.getInstance();
1895 calendar.setTimeInMillis(System.currentTimeMillis());
1896 calendar.set(Calendar.HOUR, 0);
1897 calendar.set(Calendar.MINUTE, 0);
1898 calendar.set(Calendar.SECOND, 0);
1899 calendar.set(Calendar.MILLISECOND, 0);
1900 calendar.add(Calendar.DAY_OF_MONTH, 1);
David Christieebe51fc2013-07-26 13:23:29 -07001901
1902 final WorkSource workSource = null; // Let system take blame for date change events.
Adrian Roosc42a1e12014-07-07 23:35:53 +02001903 setImpl(RTC, calendar.getTimeInMillis(), 0, 0, mDateChangeSender, true, workSource,
1904 null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001905 }
1906 }
1907
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001908 class InteractiveStateReceiver extends BroadcastReceiver {
1909 public InteractiveStateReceiver() {
1910 IntentFilter filter = new IntentFilter();
1911 filter.addAction(Intent.ACTION_SCREEN_OFF);
1912 filter.addAction(Intent.ACTION_SCREEN_ON);
1913 filter.setPriority(IntentFilter.SYSTEM_HIGH_PRIORITY);
1914 getContext().registerReceiver(this, filter);
1915 }
1916
1917 @Override
1918 public void onReceive(Context context, Intent intent) {
1919 synchronized (mLock) {
1920 interactiveStateChangedLocked(Intent.ACTION_SCREEN_ON.equals(intent.getAction()));
1921 }
1922 }
1923 }
1924
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001925 class UninstallReceiver extends BroadcastReceiver {
1926 public UninstallReceiver() {
1927 IntentFilter filter = new IntentFilter();
1928 filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
1929 filter.addAction(Intent.ACTION_PACKAGE_RESTARTED);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001930 filter.addAction(Intent.ACTION_QUERY_PACKAGE_RESTART);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001931 filter.addDataScheme("package");
Adam Lesinski182f73f2013-12-05 16:48:06 -08001932 getContext().registerReceiver(this, filter);
Suchi Amalapurapu08675a32010-01-28 09:57:30 -08001933 // Register for events related to sdcard installation.
1934 IntentFilter sdFilter = new IntentFilter();
Suchi Amalapurapub56ae202010-02-04 22:51:07 -08001935 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001936 sdFilter.addAction(Intent.ACTION_USER_STOPPED);
Adam Lesinski182f73f2013-12-05 16:48:06 -08001937 getContext().registerReceiver(this, sdFilter);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001938 }
1939
1940 @Override
1941 public void onReceive(Context context, Intent intent) {
1942 synchronized (mLock) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -08001943 String action = intent.getAction();
1944 String pkgList[] = null;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001945 if (Intent.ACTION_QUERY_PACKAGE_RESTART.equals(action)) {
1946 pkgList = intent.getStringArrayExtra(Intent.EXTRA_PACKAGES);
1947 for (String packageName : pkgList) {
1948 if (lookForPackageLocked(packageName)) {
1949 setResultCode(Activity.RESULT_OK);
1950 return;
1951 }
1952 }
1953 return;
1954 } else if (Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE.equals(action)) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -08001955 pkgList = intent.getStringArrayExtra(Intent.EXTRA_CHANGED_PACKAGE_LIST);
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001956 } else if (Intent.ACTION_USER_STOPPED.equals(action)) {
1957 int userHandle = intent.getIntExtra(Intent.EXTRA_USER_HANDLE, -1);
1958 if (userHandle >= 0) {
1959 removeUserLocked(userHandle);
1960 }
Suchi Amalapurapu08675a32010-01-28 09:57:30 -08001961 } else {
Dianne Hackborn409578f2010-03-10 17:23:43 -08001962 if (Intent.ACTION_PACKAGE_REMOVED.equals(action)
1963 && intent.getBooleanExtra(Intent.EXTRA_REPLACING, false)) {
1964 // This package is being updated; don't kill its alarms.
1965 return;
1966 }
Suchi Amalapurapu08675a32010-01-28 09:57:30 -08001967 Uri data = intent.getData();
1968 if (data != null) {
1969 String pkg = data.getSchemeSpecificPart();
1970 if (pkg != null) {
1971 pkgList = new String[]{pkg};
1972 }
1973 }
1974 }
1975 if (pkgList != null && (pkgList.length > 0)) {
1976 for (String pkg : pkgList) {
1977 removeLocked(pkg);
Christopher Tate1590f1e2014-10-02 17:27:57 -07001978 mPriorities.remove(pkg);
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001979 for (int i=mBroadcastStats.size()-1; i>=0; i--) {
1980 ArrayMap<String, BroadcastStats> uidStats = mBroadcastStats.valueAt(i);
1981 if (uidStats.remove(pkg) != null) {
1982 if (uidStats.size() <= 0) {
1983 mBroadcastStats.removeAt(i);
1984 }
1985 }
1986 }
Suchi Amalapurapu08675a32010-01-28 09:57:30 -08001987 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001988 }
1989 }
1990 }
1991 }
1992
1993 private final BroadcastStats getStatsLocked(PendingIntent pi) {
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001994 String pkg = pi.getCreatorPackage();
1995 int uid = pi.getCreatorUid();
1996 ArrayMap<String, BroadcastStats> uidStats = mBroadcastStats.get(uid);
1997 if (uidStats == null) {
1998 uidStats = new ArrayMap<String, BroadcastStats>();
1999 mBroadcastStats.put(uid, uidStats);
2000 }
2001 BroadcastStats bs = uidStats.get(pkg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002002 if (bs == null) {
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08002003 bs = new BroadcastStats(uid, pkg);
2004 uidStats.put(pkg, bs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002005 }
2006 return bs;
2007 }
Dianne Hackborn81038902012-11-26 17:04:09 -08002008
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002009 class ResultReceiver implements PendingIntent.OnFinished {
2010 public void onSendFinished(PendingIntent pi, Intent intent, int resultCode,
2011 String resultData, Bundle resultExtras) {
2012 synchronized (mLock) {
Dianne Hackborn81038902012-11-26 17:04:09 -08002013 InFlight inflight = null;
2014 for (int i=0; i<mInFlight.size(); i++) {
2015 if (mInFlight.get(i).mPendingIntent == pi) {
2016 inflight = mInFlight.remove(i);
2017 break;
2018 }
2019 }
2020 if (inflight != null) {
2021 final long nowELAPSED = SystemClock.elapsedRealtime();
2022 BroadcastStats bs = inflight.mBroadcastStats;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002023 bs.nesting--;
2024 if (bs.nesting <= 0) {
2025 bs.nesting = 0;
Dianne Hackborn81038902012-11-26 17:04:09 -08002026 bs.aggregateTime += nowELAPSED - bs.startTime;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002027 }
Dianne Hackborn81038902012-11-26 17:04:09 -08002028 FilterStats fs = inflight.mFilterStats;
2029 fs.nesting--;
2030 if (fs.nesting <= 0) {
2031 fs.nesting = 0;
2032 fs.aggregateTime += nowELAPSED - fs.startTime;
2033 }
2034 } else {
2035 mLog.w("No in-flight alarm for " + pi + " " + intent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002036 }
2037 mBroadcastRefCount--;
2038 if (mBroadcastRefCount == 0) {
2039 mWakeLock.release();
Dianne Hackborn81038902012-11-26 17:04:09 -08002040 if (mInFlight.size() > 0) {
2041 mLog.w("Finished all broadcasts with " + mInFlight.size()
2042 + " remaining inflights");
2043 for (int i=0; i<mInFlight.size(); i++) {
2044 mLog.w(" Remaining #" + i + ": " + mInFlight.get(i));
2045 }
2046 mInFlight.clear();
2047 }
Christopher Tatec4a07d12012-04-06 14:19:13 -07002048 } else {
2049 // the next of our alarms is now in flight. reattribute the wakelock.
Dianne Hackborn81038902012-11-26 17:04:09 -08002050 if (mInFlight.size() > 0) {
David Christieebe51fc2013-07-26 13:23:29 -07002051 InFlight inFlight = mInFlight.get(0);
Dianne Hackborne5167ca2014-03-08 14:39:10 -08002052 setWakelockWorkSource(inFlight.mPendingIntent, inFlight.mWorkSource,
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07002053 inFlight.mAlarmType, inFlight.mTag, false);
Christopher Tatec4a07d12012-04-06 14:19:13 -07002054 } else {
2055 // should never happen
Dianne Hackborn81038902012-11-26 17:04:09 -08002056 mLog.w("Alarm wakelock still held but sent queue empty");
Christopher Tatec4a07d12012-04-06 14:19:13 -07002057 mWakeLock.setWorkSource(null);
2058 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002059 }
2060 }
2061 }
2062 }
2063}