blob: 745c1906c46ced350b81845389e4e1664f27cd07 [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;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -070037import android.os.Process;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080038import android.os.SystemClock;
39import android.os.SystemProperties;
Dianne Hackborn80a4af22012-08-27 19:18:31 -070040import android.os.UserHandle;
Christopher Tatec4a07d12012-04-06 14:19:13 -070041import android.os.WorkSource;
Adrian Roosc42a1e12014-07-07 23:35:53 +020042import android.provider.Settings;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043import android.text.TextUtils;
Adrian Roosc42a1e12014-07-07 23:35:53 +020044import android.text.format.DateFormat;
Dianne Hackborn3d658bf2014-02-05 13:38:56 -080045import android.util.ArrayMap;
Adrian Roosc42a1e12014-07-07 23:35:53 +020046import android.util.Log;
Joe Onorato8a9b2202010-02-26 18:56:32 -080047import android.util.Slog;
Dianne Hackborn3d658bf2014-02-05 13:38:56 -080048import android.util.SparseArray;
Adrian Roosc42a1e12014-07-07 23:35:53 +020049import android.util.SparseBooleanArray;
Dianne Hackborn043fcd92010-10-06 14:27:34 -070050import android.util.TimeUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051
Christopher Tate4cb338d2013-07-26 13:11:31 -070052import java.io.ByteArrayOutputStream;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053import java.io.FileDescriptor;
54import java.io.PrintWriter;
Dianne Hackborn043fcd92010-10-06 14:27:34 -070055import java.text.SimpleDateFormat;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080056import java.util.ArrayList;
Dianne Hackborn81038902012-11-26 17:04:09 -080057import java.util.Arrays;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058import java.util.Calendar;
59import java.util.Collections;
60import java.util.Comparator;
Mike Lockwood1f7b4132009-11-20 15:12:51 -050061import java.util.Date;
Christopher Tate1590f1e2014-10-02 17:27:57 -070062import java.util.HashMap;
Christopher Tate18a75f12013-07-01 18:18:59 -070063import java.util.LinkedList;
Adrian Roosc42a1e12014-07-07 23:35:53 +020064import java.util.Locale;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -070065import java.util.Random;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080066import java.util.TimeZone;
67
Christopher Tatee0a22b32013-07-11 14:43:13 -070068import static android.app.AlarmManager.RTC_WAKEUP;
69import static android.app.AlarmManager.RTC;
70import static android.app.AlarmManager.ELAPSED_REALTIME_WAKEUP;
71import static android.app.AlarmManager.ELAPSED_REALTIME;
72
Dianne Hackborn81038902012-11-26 17:04:09 -080073import com.android.internal.util.LocalLog;
74
Adam Lesinski182f73f2013-12-05 16:48:06 -080075class AlarmManagerService extends SystemService {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080076 // The threshold for how long an alarm can be late before we print a
77 // warning message. The time duration is in milliseconds.
78 private static final long LATE_ALARM_THRESHOLD = 10 * 1000;
Christopher Tatee0a22b32013-07-11 14:43:13 -070079
Christopher Tate498c6cb2014-11-17 16:09:27 -080080 // Minimum futurity of a new alarm
81 private static final long MIN_FUTURITY = 5 * 1000; // 5 seconds, in millis
82
83 // Minimum alarm recurrence interval
84 private static final long MIN_INTERVAL = 60 * 1000; // one minute, in millis
85
Christopher Tatee0a22b32013-07-11 14:43:13 -070086 private static final int RTC_WAKEUP_MASK = 1 << RTC_WAKEUP;
87 private static final int RTC_MASK = 1 << RTC;
Adam Lesinski182f73f2013-12-05 16:48:06 -080088 private static final int ELAPSED_REALTIME_WAKEUP_MASK = 1 << ELAPSED_REALTIME_WAKEUP;
Christopher Tatee0a22b32013-07-11 14:43:13 -070089 private static final int ELAPSED_REALTIME_MASK = 1 << ELAPSED_REALTIME;
Adam Lesinski182f73f2013-12-05 16:48:06 -080090 static final int TIME_CHANGED_MASK = 1 << 16;
91 static final int IS_WAKEUP_MASK = RTC_WAKEUP_MASK|ELAPSED_REALTIME_WAKEUP_MASK;
Christopher Tateb8849c12011-02-08 13:39:01 -080092
Christopher Tatee0a22b32013-07-11 14:43:13 -070093 // Mask for testing whether a given alarm type is wakeup vs non-wakeup
Adam Lesinski182f73f2013-12-05 16:48:06 -080094 static final int TYPE_NONWAKEUP_MASK = 0x1; // low bit => non-wakeup
Christopher Tateb8849c12011-02-08 13:39:01 -080095
Adam Lesinski182f73f2013-12-05 16:48:06 -080096 static final String TAG = "AlarmManager";
97 static final String ClockReceiver_TAG = "ClockReceiver";
98 static final boolean localLOGV = false;
99 static final boolean DEBUG_BATCH = localLOGV || false;
100 static final boolean DEBUG_VALIDATE = localLOGV || false;
Adrian Roosc42a1e12014-07-07 23:35:53 +0200101 static final boolean DEBUG_ALARM_CLOCK = localLOGV || false;
Dianne Hackborn1e383822015-04-10 14:02:33 -0700102 static final boolean RECORD_ALARMS_IN_HISTORY = true;
Adam Lesinski182f73f2013-12-05 16:48:06 -0800103 static final int ALARM_EVENT = 1;
104 static final String TIMEZONE_PROPERTY = "persist.sys.timezone";
Adrian Roosc42a1e12014-07-07 23:35:53 +0200105
Adam Lesinski182f73f2013-12-05 16:48:06 -0800106 static final Intent mBackgroundIntent
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800107 = new Intent().addFlags(Intent.FLAG_FROM_BACKGROUND);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800108 static final IncreasingTimeOrder sIncreasingTimeOrder = new IncreasingTimeOrder();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800109
Adam Lesinski182f73f2013-12-05 16:48:06 -0800110 static final boolean WAKEUP_STATS = false;
Christopher Tate18a75f12013-07-01 18:18:59 -0700111
Adrian Roosc42a1e12014-07-07 23:35:53 +0200112 private static final Intent NEXT_ALARM_CLOCK_CHANGED_INTENT = new Intent(
113 AlarmManager.ACTION_NEXT_ALARM_CLOCK_CHANGED);
114
Adam Lesinski182f73f2013-12-05 16:48:06 -0800115 final LocalLog mLog = new LocalLog(TAG);
Dianne Hackborn81038902012-11-26 17:04:09 -0800116
Adam Lesinski182f73f2013-12-05 16:48:06 -0800117 final Object mLock = new Object();
Dianne Hackborn81038902012-11-26 17:04:09 -0800118
Greg Hackmannf1bdbdd2013-12-17 11:56:22 -0800119 long mNativeData;
Christopher Tate0dab4dc2014-12-16 12:14:06 -0800120 private long mNextWakeup;
Christopher Tatee0a22b32013-07-11 14:43:13 -0700121 private long mNextNonWakeup;
Adam Lesinski182f73f2013-12-05 16:48:06 -0800122 int mBroadcastRefCount = 0;
123 PowerManager.WakeLock mWakeLock;
Dianne Hackborna1bd7922014-03-21 11:07:11 -0700124 boolean mLastWakeLockUnimportantForLogging;
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700125 ArrayList<Alarm> mPendingNonWakeupAlarms = new ArrayList<Alarm>();
Adam Lesinski182f73f2013-12-05 16:48:06 -0800126 ArrayList<InFlight> mInFlight = new ArrayList<InFlight>();
127 final AlarmHandler mHandler = new AlarmHandler();
128 ClockReceiver mClockReceiver;
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700129 InteractiveStateReceiver mInteractiveStateReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800130 private UninstallReceiver mUninstallReceiver;
Adam Lesinski182f73f2013-12-05 16:48:06 -0800131 final ResultReceiver mResultReceiver = new ResultReceiver();
132 PendingIntent mTimeTickSender;
133 PendingIntent mDateChangeSender;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700134 Random mRandom;
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700135 boolean mInteractive = true;
136 long mNonInteractiveStartTime;
137 long mNonInteractiveTime;
138 long mLastAlarmDeliveryTime;
139 long mStartCurrentDelayTime;
140 long mNextNonWakeupDeliveryTime;
Dianne Hackborn998e6082014-09-11 19:13:23 -0700141 int mNumTimeChanged;
Dianne Hackborn81038902012-11-26 17:04:09 -0800142
Jose Lima235510e2014-08-13 12:50:01 -0700143 private final SparseArray<AlarmManager.AlarmClockInfo> mNextAlarmClockForUser =
144 new SparseArray<>();
145 private final SparseArray<AlarmManager.AlarmClockInfo> mTmpSparseAlarmClockArray =
146 new SparseArray<>();
Adrian Roosc42a1e12014-07-07 23:35:53 +0200147 private final SparseBooleanArray mPendingSendNextAlarmClockChangedForUser =
148 new SparseBooleanArray();
149 private boolean mNextAlarmClockMayChange;
150
151 // May only use on mHandler's thread, locking not required.
Jose Lima235510e2014-08-13 12:50:01 -0700152 private final SparseArray<AlarmManager.AlarmClockInfo> mHandlerSparseAlarmClockArray =
153 new SparseArray<>();
Adrian Roosc42a1e12014-07-07 23:35:53 +0200154
Christopher Tate1590f1e2014-10-02 17:27:57 -0700155 // Alarm delivery ordering bookkeeping
156 static final int PRIO_TICK = 0;
157 static final int PRIO_WAKEUP = 1;
158 static final int PRIO_NORMAL = 2;
159
160 class PriorityClass {
161 int seq;
162 int priority;
163
164 PriorityClass() {
165 seq = mCurrentSeq - 1;
166 priority = PRIO_NORMAL;
167 }
168 }
169
170 final HashMap<String, PriorityClass> mPriorities =
171 new HashMap<String, PriorityClass>();
172 int mCurrentSeq = 0;
173
Christopher Tate18a75f12013-07-01 18:18:59 -0700174 class WakeupEvent {
175 public long when;
176 public int uid;
177 public String action;
178
179 public WakeupEvent(long theTime, int theUid, String theAction) {
180 when = theTime;
181 uid = theUid;
182 action = theAction;
183 }
184 }
185
Adam Lesinski182f73f2013-12-05 16:48:06 -0800186 final LinkedList<WakeupEvent> mRecentWakeups = new LinkedList<WakeupEvent>();
187 final long RECENT_WAKEUP_PERIOD = 1000L * 60 * 60 * 24; // one day
Christopher Tate18a75f12013-07-01 18:18:59 -0700188
Adrian Roosc42a1e12014-07-07 23:35:53 +0200189 final class Batch {
Christopher Tatee0a22b32013-07-11 14:43:13 -0700190 long start; // These endpoints are always in ELAPSED
191 long end;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700192 int flags; // Flags for alarms, such as FLAG_STANDALONE.
Christopher Tatee0a22b32013-07-11 14:43:13 -0700193
194 final ArrayList<Alarm> alarms = new ArrayList<Alarm>();
195
196 Batch() {
197 start = 0;
198 end = Long.MAX_VALUE;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700199 flags = 0;
Christopher Tatee0a22b32013-07-11 14:43:13 -0700200 }
201
202 Batch(Alarm seed) {
203 start = seed.whenElapsed;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700204 end = seed.maxWhenElapsed;
205 flags = seed.flags;
Christopher Tatee0a22b32013-07-11 14:43:13 -0700206 alarms.add(seed);
207 }
208
209 int size() {
210 return alarms.size();
211 }
212
213 Alarm get(int index) {
214 return alarms.get(index);
215 }
216
217 boolean canHold(long whenElapsed, long maxWhen) {
218 return (end >= whenElapsed) && (start <= maxWhen);
219 }
220
221 boolean add(Alarm alarm) {
222 boolean newStart = false;
223 // narrows the batch if necessary; presumes that canHold(alarm) is true
224 int index = Collections.binarySearch(alarms, alarm, sIncreasingTimeOrder);
225 if (index < 0) {
226 index = 0 - index - 1;
227 }
228 alarms.add(index, alarm);
229 if (DEBUG_BATCH) {
230 Slog.v(TAG, "Adding " + alarm + " to " + this);
231 }
232 if (alarm.whenElapsed > start) {
233 start = alarm.whenElapsed;
234 newStart = true;
235 }
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700236 if (alarm.maxWhenElapsed < end) {
237 end = alarm.maxWhenElapsed;
Christopher Tatee0a22b32013-07-11 14:43:13 -0700238 }
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700239 flags |= alarm.flags;
Christopher Tatee0a22b32013-07-11 14:43:13 -0700240
241 if (DEBUG_BATCH) {
242 Slog.v(TAG, " => now " + this);
243 }
244 return newStart;
245 }
246
247 boolean remove(final PendingIntent operation) {
248 boolean didRemove = false;
249 long newStart = 0; // recalculate endpoints as we go
250 long newEnd = Long.MAX_VALUE;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700251 int newFlags = 0;
Christopher Tateae269d52013-09-26 13:11:55 -0700252 for (int i = 0; i < alarms.size(); ) {
Christopher Tatee0a22b32013-07-11 14:43:13 -0700253 Alarm alarm = alarms.get(i);
254 if (alarm.operation.equals(operation)) {
255 alarms.remove(i);
256 didRemove = true;
Adrian Roosc42a1e12014-07-07 23:35:53 +0200257 if (alarm.alarmClock != null) {
258 mNextAlarmClockMayChange = true;
259 }
Christopher Tatee0a22b32013-07-11 14:43:13 -0700260 } else {
261 if (alarm.whenElapsed > newStart) {
262 newStart = alarm.whenElapsed;
263 }
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700264 if (alarm.maxWhenElapsed < newEnd) {
265 newEnd = alarm.maxWhenElapsed;
Christopher Tatee0a22b32013-07-11 14:43:13 -0700266 }
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700267 newFlags |= alarm.flags;
Christopher Tatee0a22b32013-07-11 14:43:13 -0700268 i++;
269 }
270 }
271 if (didRemove) {
272 // commit the new batch bounds
273 start = newStart;
274 end = newEnd;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700275 flags = newFlags;
Christopher Tatee0a22b32013-07-11 14:43:13 -0700276 }
277 return didRemove;
278 }
279
280 boolean remove(final String packageName) {
281 boolean didRemove = false;
282 long newStart = 0; // recalculate endpoints as we go
283 long newEnd = Long.MAX_VALUE;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700284 int newFlags = 0;
Christopher Tateae269d52013-09-26 13:11:55 -0700285 for (int i = 0; i < alarms.size(); ) {
Christopher Tatee0a22b32013-07-11 14:43:13 -0700286 Alarm alarm = alarms.get(i);
287 if (alarm.operation.getTargetPackage().equals(packageName)) {
288 alarms.remove(i);
289 didRemove = true;
Adrian Roosc42a1e12014-07-07 23:35:53 +0200290 if (alarm.alarmClock != null) {
291 mNextAlarmClockMayChange = true;
292 }
Christopher Tatee0a22b32013-07-11 14:43:13 -0700293 } else {
294 if (alarm.whenElapsed > newStart) {
295 newStart = alarm.whenElapsed;
296 }
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700297 if (alarm.maxWhenElapsed < newEnd) {
298 newEnd = alarm.maxWhenElapsed;
Christopher Tatee0a22b32013-07-11 14:43:13 -0700299 }
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700300 newFlags |= alarm.flags;
Christopher Tatee0a22b32013-07-11 14:43:13 -0700301 i++;
302 }
303 }
304 if (didRemove) {
305 // commit the new batch bounds
306 start = newStart;
307 end = newEnd;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700308 flags = newFlags;
Christopher Tatee0a22b32013-07-11 14:43:13 -0700309 }
310 return didRemove;
311 }
312
313 boolean remove(final int userHandle) {
314 boolean didRemove = false;
315 long newStart = 0; // recalculate endpoints as we go
316 long newEnd = Long.MAX_VALUE;
Christopher Tateae269d52013-09-26 13:11:55 -0700317 for (int i = 0; i < alarms.size(); ) {
Christopher Tatee0a22b32013-07-11 14:43:13 -0700318 Alarm alarm = alarms.get(i);
319 if (UserHandle.getUserId(alarm.operation.getCreatorUid()) == userHandle) {
320 alarms.remove(i);
321 didRemove = true;
Adrian Roosc42a1e12014-07-07 23:35:53 +0200322 if (alarm.alarmClock != null) {
323 mNextAlarmClockMayChange = true;
324 }
Christopher Tatee0a22b32013-07-11 14:43:13 -0700325 } else {
326 if (alarm.whenElapsed > newStart) {
327 newStart = alarm.whenElapsed;
328 }
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700329 if (alarm.maxWhenElapsed < newEnd) {
330 newEnd = alarm.maxWhenElapsed;
Christopher Tatee0a22b32013-07-11 14:43:13 -0700331 }
332 i++;
333 }
334 }
335 if (didRemove) {
336 // commit the new batch bounds
337 start = newStart;
338 end = newEnd;
339 }
340 return didRemove;
341 }
342
343 boolean hasPackage(final String packageName) {
344 final int N = alarms.size();
345 for (int i = 0; i < N; i++) {
346 Alarm a = alarms.get(i);
347 if (a.operation.getTargetPackage().equals(packageName)) {
348 return true;
349 }
350 }
351 return false;
352 }
353
354 boolean hasWakeups() {
355 final int N = alarms.size();
356 for (int i = 0; i < N; i++) {
357 Alarm a = alarms.get(i);
358 // non-wakeup alarms are types 1 and 3, i.e. have the low bit set
359 if ((a.type & TYPE_NONWAKEUP_MASK) == 0) {
360 return true;
361 }
362 }
363 return false;
364 }
365
366 @Override
367 public String toString() {
368 StringBuilder b = new StringBuilder(40);
369 b.append("Batch{"); b.append(Integer.toHexString(this.hashCode()));
370 b.append(" num="); b.append(size());
371 b.append(" start="); b.append(start);
372 b.append(" end="); b.append(end);
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700373 if (flags != 0) {
374 b.append(" flgs=0x");
375 b.append(Integer.toHexString(flags));
Christopher Tatee0a22b32013-07-11 14:43:13 -0700376 }
377 b.append('}');
378 return b.toString();
379 }
380 }
381
382 static class BatchTimeOrder implements Comparator<Batch> {
383 public int compare(Batch b1, Batch b2) {
Christopher Tate0dab4dc2014-12-16 12:14:06 -0800384 long when1 = b1.start;
385 long when2 = b2.start;
386 if (when1 - when2 > 0) {
Christopher Tatee0a22b32013-07-11 14:43:13 -0700387 return 1;
388 }
Christopher Tate0dab4dc2014-12-16 12:14:06 -0800389 if (when1 - when2 < 0) {
Christopher Tatee0a22b32013-07-11 14:43:13 -0700390 return -1;
391 }
392 return 0;
393 }
394 }
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800395
396 final Comparator<Alarm> mAlarmDispatchComparator = new Comparator<Alarm>() {
397 @Override
398 public int compare(Alarm lhs, Alarm rhs) {
Christopher Tate1590f1e2014-10-02 17:27:57 -0700399 // priority class trumps everything. TICK < WAKEUP < NORMAL
400 if (lhs.priorityClass.priority < rhs.priorityClass.priority) {
401 return -1;
402 } else if (lhs.priorityClass.priority > rhs.priorityClass.priority) {
403 return 1;
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800404 }
Christopher Tate1590f1e2014-10-02 17:27:57 -0700405
406 // within each class, sort by nominal delivery time
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800407 if (lhs.whenElapsed < rhs.whenElapsed) {
408 return -1;
409 } else if (lhs.whenElapsed > rhs.whenElapsed) {
410 return 1;
411 }
Christopher Tate1590f1e2014-10-02 17:27:57 -0700412
413 // same priority class + same target delivery time
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800414 return 0;
415 }
416 };
417
Christopher Tate1590f1e2014-10-02 17:27:57 -0700418 void calculateDeliveryPriorities(ArrayList<Alarm> alarms) {
419 final int N = alarms.size();
420 for (int i = 0; i < N; i++) {
421 Alarm a = alarms.get(i);
422
423 final int alarmPrio;
424 if (Intent.ACTION_TIME_TICK.equals(a.operation.getIntent().getAction())) {
425 alarmPrio = PRIO_TICK;
426 } else if (a.wakeup) {
427 alarmPrio = PRIO_WAKEUP;
428 } else {
429 alarmPrio = PRIO_NORMAL;
430 }
431
432 PriorityClass packagePrio = a.priorityClass;
433 if (packagePrio == null) packagePrio = mPriorities.get(a.operation.getCreatorPackage());
434 if (packagePrio == null) {
435 packagePrio = a.priorityClass = new PriorityClass(); // lowest prio & stale sequence
436 mPriorities.put(a.operation.getCreatorPackage(), packagePrio);
437 }
438 a.priorityClass = packagePrio;
439
440 if (packagePrio.seq != mCurrentSeq) {
441 // first alarm we've seen in the current delivery generation from this package
442 packagePrio.priority = alarmPrio;
443 packagePrio.seq = mCurrentSeq;
444 } else {
445 // Multiple alarms from this package being delivered in this generation;
446 // bump the package's delivery class if it's warranted.
447 // TICK < WAKEUP < NORMAL
448 if (alarmPrio < packagePrio.priority) {
449 packagePrio.priority = alarmPrio;
450 }
451 }
452 }
453 }
454
Christopher Tatee0a22b32013-07-11 14:43:13 -0700455 // minimum recurrence period or alarm futurity for us to be able to fuzz it
Adam Lesinski182f73f2013-12-05 16:48:06 -0800456 static final long MIN_FUZZABLE_INTERVAL = 10000;
457 static final BatchTimeOrder sBatchOrder = new BatchTimeOrder();
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700458 final ArrayList<Batch> mAlarmBatches = new ArrayList<>();
459
460 // set to null if in idle mode; while in this mode, any alarms we don't want
461 // to run during this time are placed in mPendingWhileIdleAlarms
462 Alarm mPendingIdleUntil = null;
Dianne Hackbornf70faed2015-04-21 14:11:38 -0700463 Alarm mNextWakeFromIdle = null;
Dianne Hackborn0b4daca2015-04-27 09:47:32 -0700464 ArrayList<Alarm> mPendingWhileIdleAlarms = new ArrayList<>();
Christopher Tatee0a22b32013-07-11 14:43:13 -0700465
Jeff Brownb880d882014-02-10 19:47:07 -0800466 public AlarmManagerService(Context context) {
467 super(context);
468 }
469
Christopher Tatee0a22b32013-07-11 14:43:13 -0700470 static long convertToElapsed(long when, int type) {
471 final boolean isRtc = (type == RTC || type == RTC_WAKEUP);
472 if (isRtc) {
473 when -= System.currentTimeMillis() - SystemClock.elapsedRealtime();
474 }
475 return when;
476 }
477
478 // Apply a heuristic to { recurrence interval, futurity of the trigger time } to
479 // calculate the end of our nominal delivery window for the alarm.
480 static long maxTriggerTime(long now, long triggerAtTime, long interval) {
481 // Current heuristic: batchable window is 75% of either the recurrence interval
482 // [for a periodic alarm] or of the time from now to the desired delivery time,
483 // with a minimum delay/interval of 10 seconds, under which we will simply not
484 // defer the alarm.
485 long futurity = (interval == 0)
486 ? (triggerAtTime - now)
487 : interval;
Christopher Tate57ceaaa2013-07-19 16:30:43 -0700488 if (futurity < MIN_FUZZABLE_INTERVAL) {
Christopher Tatee0a22b32013-07-11 14:43:13 -0700489 futurity = 0;
490 }
491 return triggerAtTime + (long)(.75 * futurity);
492 }
493
494 // returns true if the batch was added at the head
495 static boolean addBatchLocked(ArrayList<Batch> list, Batch newBatch) {
496 int index = Collections.binarySearch(list, newBatch, sBatchOrder);
497 if (index < 0) {
498 index = 0 - index - 1;
499 }
500 list.add(index, newBatch);
501 return (index == 0);
502 }
503
Christopher Tate385e4982013-07-23 18:22:29 -0700504 // Return the index of the matching batch, or -1 if none found.
505 int attemptCoalesceLocked(long whenElapsed, long maxWhen) {
Christopher Tatee0a22b32013-07-11 14:43:13 -0700506 final int N = mAlarmBatches.size();
507 for (int i = 0; i < N; i++) {
508 Batch b = mAlarmBatches.get(i);
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700509 if ((b.flags&AlarmManager.FLAG_STANDALONE) == 0 && b.canHold(whenElapsed, maxWhen)) {
Christopher Tate385e4982013-07-23 18:22:29 -0700510 return i;
Christopher Tatee0a22b32013-07-11 14:43:13 -0700511 }
512 }
Christopher Tate385e4982013-07-23 18:22:29 -0700513 return -1;
Christopher Tatee0a22b32013-07-11 14:43:13 -0700514 }
515
516 // The RTC clock has moved arbitrarily, so we need to recalculate all the batching
517 void rebatchAllAlarms() {
Christopher Tatee0a22b32013-07-11 14:43:13 -0700518 synchronized (mLock) {
Christopher Tate4cb338d2013-07-26 13:11:31 -0700519 rebatchAllAlarmsLocked(true);
520 }
521 }
522
523 void rebatchAllAlarmsLocked(boolean doValidate) {
524 ArrayList<Batch> oldSet = (ArrayList<Batch>) mAlarmBatches.clone();
525 mAlarmBatches.clear();
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700526 Alarm oldPendingIdleUntil = mPendingIdleUntil;
Christopher Tate4cb338d2013-07-26 13:11:31 -0700527 final long nowElapsed = SystemClock.elapsedRealtime();
528 final int oldBatches = oldSet.size();
529 for (int batchNum = 0; batchNum < oldBatches; batchNum++) {
530 Batch batch = oldSet.get(batchNum);
531 final int N = batch.size();
532 for (int i = 0; i < N; i++) {
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700533 reAddAlarmLocked(batch.get(i), nowElapsed, doValidate);
Christopher Tatee0a22b32013-07-11 14:43:13 -0700534 }
535 }
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700536 if (oldPendingIdleUntil != null && oldPendingIdleUntil != mPendingIdleUntil) {
537 Slog.wtf(TAG, "Rebatching: idle until changed from " + oldPendingIdleUntil
538 + " to " + mPendingIdleUntil);
539 if (mPendingIdleUntil == null) {
540 // Somehow we lost this... we need to restore all of the pending alarms.
541 restorePendingWhileIdleAlarmsLocked();
542 }
543 }
544 rescheduleKernelAlarmsLocked();
545 updateNextAlarmClockLocked();
546 }
547
548 void reAddAlarmLocked(Alarm a, long nowElapsed, boolean doValidate) {
549 a.when = a.origWhen;
550 long whenElapsed = convertToElapsed(a.when, a.type);
551 final long maxElapsed;
552 if (a.whenElapsed == a.maxWhenElapsed) {
553 // Exact
554 maxElapsed = whenElapsed;
555 } else {
556 // Not exact. Preserve any explicit window, otherwise recalculate
557 // the window based on the alarm's new futurity. Note that this
558 // reflects a policy of preferring timely to deferred delivery.
559 maxElapsed = (a.windowLength > 0)
560 ? (whenElapsed + a.windowLength)
561 : maxTriggerTime(nowElapsed, whenElapsed, a.repeatInterval);
562 }
563 a.whenElapsed = whenElapsed;
564 a.maxWhenElapsed = maxElapsed;
565 setImplLocked(a, true, doValidate);
566 }
567
568 void restorePendingWhileIdleAlarmsLocked() {
Dianne Hackborn35d54032015-04-23 10:30:43 -0700569 // Bring pending alarms back into the main list.
Dianne Hackborn0b4daca2015-04-27 09:47:32 -0700570 if (mPendingWhileIdleAlarms.size() > 0) {
571 ArrayList<Alarm> alarms = mPendingWhileIdleAlarms;
572 mPendingWhileIdleAlarms = new ArrayList<>();
573 final long nowElapsed = SystemClock.elapsedRealtime();
574 for (int i=alarms.size() - 1; i >= 0; i--) {
575 Alarm a = alarms.get(i);
576 reAddAlarmLocked(a, nowElapsed, false);
577 }
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700578 }
Dianne Hackborn35d54032015-04-23 10:30:43 -0700579
580 // Reschedule everything.
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700581 rescheduleKernelAlarmsLocked();
582 updateNextAlarmClockLocked();
Dianne Hackborn35d54032015-04-23 10:30:43 -0700583
584 // And send a TIME_TICK right now, since it is important to get the UI updated.
585 try {
586 mTimeTickSender.send();
587 } catch (PendingIntent.CanceledException e) {
588 }
Christopher Tatee0a22b32013-07-11 14:43:13 -0700589 }
590
Adam Lesinski182f73f2013-12-05 16:48:06 -0800591 static final class InFlight extends Intent {
Dianne Hackborn81038902012-11-26 17:04:09 -0800592 final PendingIntent mPendingIntent;
David Christieebe51fc2013-07-26 13:23:29 -0700593 final WorkSource mWorkSource;
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700594 final String mTag;
Dianne Hackborn81038902012-11-26 17:04:09 -0800595 final BroadcastStats mBroadcastStats;
596 final FilterStats mFilterStats;
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800597 final int mAlarmType;
Dianne Hackborn81038902012-11-26 17:04:09 -0800598
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800599 InFlight(AlarmManagerService service, PendingIntent pendingIntent, WorkSource workSource,
Dianne Hackbornf70faed2015-04-21 14:11:38 -0700600 int alarmType, String tag, long nowELAPSED) {
Dianne Hackborn81038902012-11-26 17:04:09 -0800601 mPendingIntent = pendingIntent;
David Christieebe51fc2013-07-26 13:23:29 -0700602 mWorkSource = workSource;
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700603 mTag = tag;
Dianne Hackborn81038902012-11-26 17:04:09 -0800604 mBroadcastStats = service.getStatsLocked(pendingIntent);
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700605 FilterStats fs = mBroadcastStats.filterStats.get(mTag);
Dianne Hackborn81038902012-11-26 17:04:09 -0800606 if (fs == null) {
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700607 fs = new FilterStats(mBroadcastStats, mTag);
608 mBroadcastStats.filterStats.put(mTag, fs);
Dianne Hackborn81038902012-11-26 17:04:09 -0800609 }
Dianne Hackbornf70faed2015-04-21 14:11:38 -0700610 fs.lastTime = nowELAPSED;
Dianne Hackborn81038902012-11-26 17:04:09 -0800611 mFilterStats = fs;
Dianne Hackborne5167ca2014-03-08 14:39:10 -0800612 mAlarmType = alarmType;
Dianne Hackborn81038902012-11-26 17:04:09 -0800613 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800614 }
Dianne Hackborn81038902012-11-26 17:04:09 -0800615
Adam Lesinski182f73f2013-12-05 16:48:06 -0800616 static final class FilterStats {
Dianne Hackborn81038902012-11-26 17:04:09 -0800617 final BroadcastStats mBroadcastStats;
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700618 final String mTag;
Dianne Hackborn81038902012-11-26 17:04:09 -0800619
Dianne Hackbornf70faed2015-04-21 14:11:38 -0700620 long lastTime;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800621 long aggregateTime;
Dianne Hackborn81038902012-11-26 17:04:09 -0800622 int count;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800623 int numWakeup;
624 long startTime;
625 int nesting;
Dianne Hackborn81038902012-11-26 17:04:09 -0800626
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700627 FilterStats(BroadcastStats broadcastStats, String tag) {
Dianne Hackborn81038902012-11-26 17:04:09 -0800628 mBroadcastStats = broadcastStats;
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700629 mTag = tag;
Dianne Hackborn81038902012-11-26 17:04:09 -0800630 }
631 }
632
Adam Lesinski182f73f2013-12-05 16:48:06 -0800633 static final class BroadcastStats {
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800634 final int mUid;
Dianne Hackborn81038902012-11-26 17:04:09 -0800635 final String mPackageName;
636
637 long aggregateTime;
638 int count;
639 int numWakeup;
640 long startTime;
641 int nesting;
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700642 final ArrayMap<String, FilterStats> filterStats = new ArrayMap<String, FilterStats>();
Dianne Hackborn81038902012-11-26 17:04:09 -0800643
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800644 BroadcastStats(int uid, String packageName) {
645 mUid = uid;
Dianne Hackborn81038902012-11-26 17:04:09 -0800646 mPackageName = packageName;
647 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800648 }
649
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800650 final SparseArray<ArrayMap<String, BroadcastStats>> mBroadcastStats
651 = new SparseArray<ArrayMap<String, BroadcastStats>>();
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700652
653 int mNumDelayedAlarms = 0;
654 long mTotalDelayTime = 0;
655 long mMaxDelayTime = 0;
656
Adam Lesinski182f73f2013-12-05 16:48:06 -0800657 @Override
658 public void onStart() {
Greg Hackmanna1d6f922013-12-09 16:56:53 -0800659 mNativeData = init();
Christopher Tate0dab4dc2014-12-16 12:14:06 -0800660 mNextWakeup = mNextNonWakeup = 0;
Robert CH Chou64ba8e42009-11-04 21:38:49 +0800661
662 // We have to set current TimeZone info to kernel
663 // because kernel doesn't keep this after reboot
Adam Lesinski182f73f2013-12-05 16:48:06 -0800664 setTimeZoneImpl(SystemProperties.get(TIMEZONE_PROPERTY));
Robert CH Chou64ba8e42009-11-04 21:38:49 +0800665
Adam Lesinski182f73f2013-12-05 16:48:06 -0800666 PowerManager pm = (PowerManager) getContext().getSystemService(Context.POWER_SERVICE);
Dianne Hackborn3d658bf2014-02-05 13:38:56 -0800667 mWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "*alarm*");
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -0800668
Adam Lesinski182f73f2013-12-05 16:48:06 -0800669 mTimeTickSender = PendingIntent.getBroadcastAsUser(getContext(), 0,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800670 new Intent(Intent.ACTION_TIME_TICK).addFlags(
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -0700671 Intent.FLAG_RECEIVER_REGISTERED_ONLY
672 | Intent.FLAG_RECEIVER_FOREGROUND), 0,
Dianne Hackborndb5aca92012-10-26 13:39:41 -0700673 UserHandle.ALL);
Dianne Hackborn1c633fc2009-12-08 19:45:14 -0800674 Intent intent = new Intent(Intent.ACTION_DATE_CHANGED);
675 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800676 mDateChangeSender = PendingIntent.getBroadcastAsUser(getContext(), 0, intent,
Dianne Hackborndb5aca92012-10-26 13:39:41 -0700677 Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT, UserHandle.ALL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800678
679 // now that we have initied the driver schedule the alarm
Adam Lesinski182f73f2013-12-05 16:48:06 -0800680 mClockReceiver = new ClockReceiver();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800681 mClockReceiver.scheduleTimeTickEvent();
682 mClockReceiver.scheduleDateChangedEvent();
Dianne Hackbornd4e6d462014-05-16 16:32:37 -0700683 mInteractiveStateReceiver = new InteractiveStateReceiver();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800684 mUninstallReceiver = new UninstallReceiver();
685
Greg Hackmanna1d6f922013-12-09 16:56:53 -0800686 if (mNativeData != 0) {
Adam Lesinski182f73f2013-12-05 16:48:06 -0800687 AlarmThread waitThread = new AlarmThread();
688 waitThread.start();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800689 } else {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800690 Slog.w(TAG, "Failed to open alarm driver. Falling back to a handler.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800691 }
Adam Lesinski182f73f2013-12-05 16:48:06 -0800692
693 publishBinderService(Context.ALARM_SERVICE, mService);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800694 }
Adam Lesinski182f73f2013-12-05 16:48:06 -0800695
696 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800697 protected void finalize() throws Throwable {
698 try {
Greg Hackmanna1d6f922013-12-09 16:56:53 -0800699 close(mNativeData);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800700 } finally {
701 super.finalize();
702 }
703 }
Christopher Tatee0a22b32013-07-11 14:43:13 -0700704
Adam Lesinski182f73f2013-12-05 16:48:06 -0800705 void setTimeZoneImpl(String tz) {
706 if (TextUtils.isEmpty(tz)) {
707 return;
David Christieebe51fc2013-07-26 13:23:29 -0700708 }
709
Adam Lesinski182f73f2013-12-05 16:48:06 -0800710 TimeZone zone = TimeZone.getTimeZone(tz);
711 // Prevent reentrant calls from stepping on each other when writing
712 // the time zone property
713 boolean timeZoneWasChanged = false;
714 synchronized (this) {
715 String current = SystemProperties.get(TIMEZONE_PROPERTY);
716 if (current == null || !current.equals(zone.getID())) {
717 if (localLOGV) {
718 Slog.v(TAG, "timezone changed: " + current + ", new=" + zone.getID());
719 }
720 timeZoneWasChanged = true;
721 SystemProperties.set(TIMEZONE_PROPERTY, zone.getID());
722 }
723
724 // Update the kernel timezone information
725 // Kernel tracks time offsets as 'minutes west of GMT'
726 int gmtOffset = zone.getOffset(System.currentTimeMillis());
Greg Hackmannf1bdbdd2013-12-17 11:56:22 -0800727 setKernelTimezone(mNativeData, -(gmtOffset / 60000));
Adam Lesinski182f73f2013-12-05 16:48:06 -0800728 }
729
730 TimeZone.setDefault(null);
731
732 if (timeZoneWasChanged) {
733 Intent intent = new Intent(Intent.ACTION_TIMEZONE_CHANGED);
734 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
735 intent.putExtra("time-zone", zone.getID());
736 getContext().sendBroadcastAsUser(intent, UserHandle.ALL);
737 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800738 }
Christopher Tatee0a22b32013-07-11 14:43:13 -0700739
Adam Lesinski182f73f2013-12-05 16:48:06 -0800740 void removeImpl(PendingIntent operation) {
741 if (operation == null) {
742 return;
743 }
744 synchronized (mLock) {
745 removeLocked(operation);
746 }
747 }
748
749 void setImpl(int type, long triggerAtTime, long windowLength, long interval,
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700750 PendingIntent operation, int flags, WorkSource workSource,
Jose Lima235510e2014-08-13 12:50:01 -0700751 AlarmManager.AlarmClockInfo alarmClock) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800752 if (operation == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800753 Slog.w(TAG, "set/setRepeating ignored because there is no intent");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800754 return;
755 }
Christopher Tatee0a22b32013-07-11 14:43:13 -0700756
Christopher Tate57ceaaa2013-07-19 16:30:43 -0700757 // Sanity check the window length. This will catch people mistakenly
758 // trying to pass an end-of-window timestamp rather than a duration.
759 if (windowLength > AlarmManager.INTERVAL_HALF_DAY) {
760 Slog.w(TAG, "Window length " + windowLength
761 + "ms suspiciously long; limiting to 1 hour");
762 windowLength = AlarmManager.INTERVAL_HOUR;
763 }
764
Christopher Tate498c6cb2014-11-17 16:09:27 -0800765 // Sanity check the recurrence interval. This will catch people who supply
766 // seconds when the API expects milliseconds.
767 if (interval > 0 && interval < MIN_INTERVAL) {
768 Slog.w(TAG, "Suspiciously short interval " + interval
769 + " millis; expanding to " + (int)(MIN_INTERVAL/1000)
770 + " seconds");
771 interval = MIN_INTERVAL;
772 }
773
Christopher Tatee0a22b32013-07-11 14:43:13 -0700774 if (type < RTC_WAKEUP || type > ELAPSED_REALTIME) {
775 throw new IllegalArgumentException("Invalid alarm type " + type);
776 }
777
Christopher Tate5f221e82013-07-30 17:13:15 -0700778 if (triggerAtTime < 0) {
779 final long who = Binder.getCallingUid();
780 final long what = Binder.getCallingPid();
781 Slog.w(TAG, "Invalid alarm trigger time! " + triggerAtTime + " from uid=" + who
782 + " pid=" + what);
783 triggerAtTime = 0;
784 }
785
Christopher Tate57ceaaa2013-07-19 16:30:43 -0700786 final long nowElapsed = SystemClock.elapsedRealtime();
Christopher Tate498c6cb2014-11-17 16:09:27 -0800787 final long nominalTrigger = convertToElapsed(triggerAtTime, type);
788 // Try to prevent spamming by making sure we aren't firing alarms in the immediate future
789 final long minTrigger = nowElapsed + MIN_FUTURITY;
790 final long triggerElapsed = (nominalTrigger > minTrigger) ? nominalTrigger : minTrigger;
791
Christopher Tate57ceaaa2013-07-19 16:30:43 -0700792 final long maxElapsed;
793 if (windowLength == AlarmManager.WINDOW_EXACT) {
794 maxElapsed = triggerElapsed;
795 } else if (windowLength < 0) {
796 maxElapsed = maxTriggerTime(nowElapsed, triggerElapsed, interval);
797 } else {
798 maxElapsed = triggerElapsed + windowLength;
799 }
Christopher Tatee0a22b32013-07-11 14:43:13 -0700800
Adrian Roosc42a1e12014-07-07 23:35:53 +0200801 final int userId = UserHandle.getCallingUserId();
802
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800803 synchronized (mLock) {
Christopher Tatee0a22b32013-07-11 14:43:13 -0700804 if (DEBUG_BATCH) {
805 Slog.v(TAG, "set(" + operation + ") : type=" + type
Christopher Tate57ceaaa2013-07-19 16:30:43 -0700806 + " triggerAtTime=" + triggerAtTime + " win=" + windowLength
Christopher Tatee0a22b32013-07-11 14:43:13 -0700807 + " tElapsed=" + triggerElapsed + " maxElapsed=" + maxElapsed
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700808 + " interval=" + interval + " flags=0x" + Integer.toHexString(flags));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800809 }
Christopher Tate3e04b472013-10-21 17:51:31 -0700810 setImplLocked(type, triggerAtTime, triggerElapsed, windowLength, maxElapsed,
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700811 interval, operation, flags, true, workSource, alarmClock, userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800812 }
813 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800814
Christopher Tate3e04b472013-10-21 17:51:31 -0700815 private void setImplLocked(int type, long when, long whenElapsed, long windowLength,
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700816 long maxWhen, long interval, PendingIntent operation, int flags,
Jose Lima235510e2014-08-13 12:50:01 -0700817 boolean doValidate, WorkSource workSource, AlarmManager.AlarmClockInfo alarmClock,
818 int userId) {
Christopher Tate3e04b472013-10-21 17:51:31 -0700819 Alarm a = new Alarm(type, when, whenElapsed, windowLength, maxWhen, interval,
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700820 operation, workSource, flags, alarmClock, userId);
Christopher Tatee0a22b32013-07-11 14:43:13 -0700821 removeLocked(operation);
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700822 setImplLocked(a, false, doValidate);
823 }
Christopher Tateb8849c12011-02-08 13:39:01 -0800824
Dianne Hackbornf70faed2015-04-21 14:11:38 -0700825 private void updateNextWakeFromIdleFuzzLocked() {
826 if (mNextWakeFromIdle != null) {
827
828 }
829 }
830
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700831 private void setImplLocked(Alarm a, boolean rebatching, boolean doValidate) {
832 if ((a.flags&AlarmManager.FLAG_IDLE_UNTIL) != 0) {
Dianne Hackbornf70faed2015-04-21 14:11:38 -0700833 // This is a special alarm that will put the system into idle until it goes off.
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700834 // The caller has given the time they want this to happen at, however we need
835 // to pull that earlier if there are existing alarms that have requested to
836 // bring us out of idle.
Dianne Hackbornf70faed2015-04-21 14:11:38 -0700837 if (mNextWakeFromIdle != null) {
838 a.when = a.whenElapsed = a.maxWhenElapsed = mNextWakeFromIdle.whenElapsed;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700839 }
840 // Add fuzz to make the alarm go off some time before the actual desired time.
841 final long nowElapsed = SystemClock.elapsedRealtime();
Dianne Hackbornf70faed2015-04-21 14:11:38 -0700842 final int fuzz = fuzzForDuration(a.whenElapsed-nowElapsed);
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700843 if (fuzz > 0) {
844 if (mRandom == null) {
845 mRandom = new Random();
846 }
Dianne Hackbornf70faed2015-04-21 14:11:38 -0700847 final int delta = mRandom.nextInt(fuzz);
848 a.whenElapsed -= delta;
849 if (false) {
850 Slog.d(TAG, "Alarm when: " + a.whenElapsed);
851 Slog.d(TAG, "Delta until alarm: " + (a.whenElapsed-nowElapsed));
852 Slog.d(TAG, "Applied fuzz: " + fuzz);
853 Slog.d(TAG, "Final delta: " + delta);
854 Slog.d(TAG, "Final when: " + a.whenElapsed);
855 }
856 a.when = a.maxWhenElapsed = a.whenElapsed;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700857 }
858
859 } else if (mPendingIdleUntil != null) {
860 // We currently have an idle until alarm scheduled; if the new alarm has
861 // not explicitly stated it wants to run while idle, then put it on hold.
862 if ((a.flags&(AlarmManager.FLAG_ALLOW_WHILE_IDLE|AlarmManager.FLAG_WAKE_FROM_IDLE))
863 == 0) {
864 mPendingWhileIdleAlarms.add(a);
865 return;
866 }
867 }
868
869 int whichBatch = ((a.flags&AlarmManager.FLAG_STANDALONE) != 0)
870 ? -1 : attemptCoalesceLocked(a.whenElapsed, a.maxWhenElapsed);
Christopher Tate385e4982013-07-23 18:22:29 -0700871 if (whichBatch < 0) {
872 Batch batch = new Batch(a);
Christopher Tate7d57ed82013-10-25 20:18:03 -0700873 addBatchLocked(mAlarmBatches, batch);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800874 } else {
Christopher Tate385e4982013-07-23 18:22:29 -0700875 Batch batch = mAlarmBatches.get(whichBatch);
Christopher Tate7d57ed82013-10-25 20:18:03 -0700876 if (batch.add(a)) {
Christopher Tate385e4982013-07-23 18:22:29 -0700877 // The start time of this batch advanced, so batch ordering may
878 // have just been broken. Move it to where it now belongs.
879 mAlarmBatches.remove(whichBatch);
880 addBatchLocked(mAlarmBatches, batch);
881 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800882 }
883
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700884 if (a.alarmClock != null) {
Adrian Roosc42a1e12014-07-07 23:35:53 +0200885 mNextAlarmClockMayChange = true;
Adrian Roosc42a1e12014-07-07 23:35:53 +0200886 }
887
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700888 boolean needRebatch = false;
889
890 if ((a.flags&AlarmManager.FLAG_IDLE_UNTIL) != 0) {
891 mPendingIdleUntil = a;
892 needRebatch = true;
Dianne Hackbornf70faed2015-04-21 14:11:38 -0700893 } else if ((a.flags&AlarmManager.FLAG_WAKE_FROM_IDLE) != 0) {
894 if (mNextWakeFromIdle == null || mNextWakeFromIdle.whenElapsed > a.whenElapsed) {
895 mNextWakeFromIdle = a;
896 // If this wake from idle is earlier than whatever was previously scheduled,
897 // and we are currently idling, then we need to rebatch alarms in case the idle
898 // until time needs to be updated.
899 if (mPendingIdleUntil != null) {
900 needRebatch = true;
901 }
902 }
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700903 }
904
905 if (!rebatching) {
906 if (DEBUG_VALIDATE) {
907 if (doValidate && !validateConsistencyLocked()) {
908 Slog.v(TAG, "Tipping-point operation: type=" + a.type + " when=" + a.when
909 + " when(hex)=" + Long.toHexString(a.when)
910 + " whenElapsed=" + a.whenElapsed
911 + " maxWhenElapsed=" + a.maxWhenElapsed
912 + " interval=" + a.repeatInterval + " op=" + a.operation
913 + " flags=0x" + Integer.toHexString(a.flags));
914 rebatchAllAlarmsLocked(false);
915 needRebatch = false;
916 }
917 }
918
919 if (needRebatch) {
Christopher Tate4cb338d2013-07-26 13:11:31 -0700920 rebatchAllAlarmsLocked(false);
Christopher Tate4cb338d2013-07-26 13:11:31 -0700921 }
Christopher Tate4cb338d2013-07-26 13:11:31 -0700922
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700923 rescheduleKernelAlarmsLocked();
924 updateNextAlarmClockLocked();
925 }
Christopher Tatee0a22b32013-07-11 14:43:13 -0700926 }
927
Adam Lesinski182f73f2013-12-05 16:48:06 -0800928 private final IBinder mService = new IAlarmManager.Stub() {
929 @Override
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700930 public void set(int type, long triggerAtTime, long windowLength, long interval, int flags,
Jose Lima235510e2014-08-13 12:50:01 -0700931 PendingIntent operation, WorkSource workSource,
932 AlarmManager.AlarmClockInfo alarmClock) {
Adam Lesinski182f73f2013-12-05 16:48:06 -0800933 if (workSource != null) {
934 getContext().enforceCallingPermission(
935 android.Manifest.permission.UPDATE_DEVICE_STATS,
936 "AlarmManager.set");
Christopher Tate89779822012-08-31 14:40:03 -0700937 }
938
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700939 if (windowLength == AlarmManager.WINDOW_EXACT) {
940 flags |= AlarmManager.FLAG_STANDALONE;
941 }
942 if (alarmClock != null) {
943 flags |= AlarmManager.FLAG_WAKE_FROM_IDLE | AlarmManager.FLAG_STANDALONE;
944 }
945 if (Binder.getCallingUid() < Process.FIRST_APPLICATION_UID) {
946 flags |= AlarmManager.FLAG_ALLOW_WHILE_IDLE;
947 }
Adam Lesinski182f73f2013-12-05 16:48:06 -0800948 setImpl(type, triggerAtTime, windowLength, interval, operation,
Dianne Hackborn4870e9d2015-04-08 16:55:47 -0700949 flags, workSource, alarmClock);
Adam Lesinski182f73f2013-12-05 16:48:06 -0800950 }
Christopher Tate89779822012-08-31 14:40:03 -0700951
Adam Lesinski182f73f2013-12-05 16:48:06 -0800952 @Override
Greg Hackmann0cab8962014-02-21 16:35:52 -0800953 public boolean setTime(long millis) {
Adam Lesinski182f73f2013-12-05 16:48:06 -0800954 getContext().enforceCallingOrSelfPermission(
955 "android.permission.SET_TIME",
956 "setTime");
957
Greg Hackmann0cab8962014-02-21 16:35:52 -0800958 if (mNativeData == 0) {
959 Slog.w(TAG, "Not setting time since no alarm driver is available.");
960 return false;
Christopher Tate89779822012-08-31 14:40:03 -0700961 }
Greg Hackmann0cab8962014-02-21 16:35:52 -0800962
963 synchronized (mLock) {
964 return setKernelTime(mNativeData, millis) == 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800965 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800966 }
Adam Lesinski182f73f2013-12-05 16:48:06 -0800967
968 @Override
969 public void setTimeZone(String tz) {
970 getContext().enforceCallingOrSelfPermission(
971 "android.permission.SET_TIME_ZONE",
972 "setTimeZone");
973
974 final long oldId = Binder.clearCallingIdentity();
975 try {
976 setTimeZoneImpl(tz);
977 } finally {
978 Binder.restoreCallingIdentity(oldId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800979 }
980 }
Christopher Tate4cb338d2013-07-26 13:11:31 -0700981
Adam Lesinski182f73f2013-12-05 16:48:06 -0800982 @Override
983 public void remove(PendingIntent operation) {
984 removeImpl(operation);
Dianne Hackborn80a4af22012-08-27 19:18:31 -0700985
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800986 }
Christopher Tate4cb338d2013-07-26 13:11:31 -0700987
Adam Lesinski182f73f2013-12-05 16:48:06 -0800988 @Override
Dianne Hackbornf70faed2015-04-21 14:11:38 -0700989 public long getNextWakeFromIdleTime() {
990 return getNextWakeFromIdleTimeImpl();
991 }
992
993 @Override
Jose Lima235510e2014-08-13 12:50:01 -0700994 public AlarmManager.AlarmClockInfo getNextAlarmClock(int userId) {
Adrian Roosc42a1e12014-07-07 23:35:53 +0200995 userId = ActivityManager.handleIncomingUser(Binder.getCallingPid(),
996 Binder.getCallingUid(), userId, false /* allowAll */, false /* requireFull */,
997 "getNextAlarmClock", null);
998
999 return getNextAlarmClockImpl(userId);
1000 }
1001
1002 @Override
Adam Lesinski182f73f2013-12-05 16:48:06 -08001003 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
1004 if (getContext().checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
1005 != PackageManager.PERMISSION_GRANTED) {
1006 pw.println("Permission Denial: can't dump AlarmManager from from pid="
1007 + Binder.getCallingPid()
1008 + ", uid=" + Binder.getCallingUid());
1009 return;
Christopher Tate4cb338d2013-07-26 13:11:31 -07001010 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001011
Adam Lesinski182f73f2013-12-05 16:48:06 -08001012 dumpImpl(pw);
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001013 }
Adam Lesinski182f73f2013-12-05 16:48:06 -08001014 };
Christopher Tate4cb338d2013-07-26 13:11:31 -07001015
Adam Lesinski182f73f2013-12-05 16:48:06 -08001016 void dumpImpl(PrintWriter pw) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001017 synchronized (mLock) {
1018 pw.println("Current Alarm Manager state:");
Christopher Tatee0a22b32013-07-11 14:43:13 -07001019 final long nowRTC = System.currentTimeMillis();
1020 final long nowELAPSED = SystemClock.elapsedRealtime();
1021 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
1022
1023 pw.print("nowRTC="); pw.print(nowRTC);
1024 pw.print("="); pw.print(sdf.format(new Date(nowRTC)));
Christopher Tate0dab4dc2014-12-16 12:14:06 -08001025 pw.print(" nowELAPSED="); TimeUtils.formatDuration(nowELAPSED, pw);
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001026 pw.println();
1027 if (!mInteractive) {
1028 pw.print("Time since non-interactive: ");
1029 TimeUtils.formatDuration(nowELAPSED - mNonInteractiveStartTime, pw);
1030 pw.println();
1031 pw.print("Max wakeup delay: ");
1032 TimeUtils.formatDuration(currentNonWakeupFuzzLocked(nowELAPSED), pw);
1033 pw.println();
1034 pw.print("Time since last dispatch: ");
1035 TimeUtils.formatDuration(nowELAPSED - mLastAlarmDeliveryTime, pw);
1036 pw.println();
1037 pw.print("Next non-wakeup delivery time: ");
1038 TimeUtils.formatDuration(nowELAPSED - mNextNonWakeupDeliveryTime, pw);
1039 pw.println();
1040 }
Christopher Tatee0a22b32013-07-11 14:43:13 -07001041
1042 long nextWakeupRTC = mNextWakeup + (nowRTC - nowELAPSED);
1043 long nextNonWakeupRTC = mNextNonWakeup + (nowRTC - nowELAPSED);
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001044 pw.print("Next non-wakeup alarm: ");
1045 TimeUtils.formatDuration(mNextNonWakeup, nowELAPSED, pw);
Christopher Tatee0a22b32013-07-11 14:43:13 -07001046 pw.print(" = "); pw.println(sdf.format(new Date(nextNonWakeupRTC)));
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001047 pw.print("Next wakeup: "); TimeUtils.formatDuration(mNextWakeup, nowELAPSED, pw);
Christopher Tatee0a22b32013-07-11 14:43:13 -07001048 pw.print(" = "); pw.println(sdf.format(new Date(nextWakeupRTC)));
Dianne Hackborn998e6082014-09-11 19:13:23 -07001049 pw.print("Num time change events: "); pw.println(mNumTimeChanged);
Christopher Tatee0a22b32013-07-11 14:43:13 -07001050
1051 if (mAlarmBatches.size() > 0) {
1052 pw.println();
1053 pw.print("Pending alarm batches: ");
1054 pw.println(mAlarmBatches.size());
1055 for (Batch b : mAlarmBatches) {
1056 pw.print(b); pw.println(':');
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001057 dumpAlarmList(pw, b.alarms, " ", nowELAPSED, nowRTC, sdf);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001058 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001059 }
Dianne Hackborn0b4daca2015-04-27 09:47:32 -07001060 if (mPendingIdleUntil != null || mPendingWhileIdleAlarms.size() > 0) {
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07001061 pw.println();
1062 pw.println("Idle mode state:");
Dianne Hackborn0b4daca2015-04-27 09:47:32 -07001063 pw.print(" Idling until: ");
1064 if (mPendingIdleUntil != null) {
1065 pw.println(mPendingIdleUntil);
1066 mPendingIdleUntil.dump(pw, " ", nowRTC, nowELAPSED, sdf);
1067 } else {
1068 pw.println("null");
1069 }
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07001070 pw.println(" Pending alarms:");
1071 dumpAlarmList(pw, mPendingWhileIdleAlarms, " ", nowELAPSED, nowRTC, sdf);
1072 }
Dianne Hackbornf70faed2015-04-21 14:11:38 -07001073 if (mNextWakeFromIdle != null) {
1074 pw.println();
1075 pw.print(" Next wake from idle: "); pw.println(mNextWakeFromIdle);
1076 mNextWakeFromIdle.dump(pw, " ", nowRTC, nowELAPSED, sdf);
1077 }
Dianne Hackborn81038902012-11-26 17:04:09 -08001078
1079 pw.println();
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001080 pw.print("Past-due non-wakeup alarms: ");
1081 if (mPendingNonWakeupAlarms.size() > 0) {
1082 pw.println(mPendingNonWakeupAlarms.size());
1083 dumpAlarmList(pw, mPendingNonWakeupAlarms, " ", nowELAPSED, nowRTC, sdf);
1084 } else {
1085 pw.println("(none)");
1086 }
1087 pw.print(" Number of delayed alarms: "); pw.print(mNumDelayedAlarms);
1088 pw.print(", total delay time: "); TimeUtils.formatDuration(mTotalDelayTime, pw);
1089 pw.println();
1090 pw.print(" Max delay time: "); TimeUtils.formatDuration(mMaxDelayTime, pw);
1091 pw.print(", max non-interactive time: ");
1092 TimeUtils.formatDuration(mNonInteractiveTime, pw);
1093 pw.println();
1094
1095 pw.println();
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001096 pw.print(" Broadcast ref count: "); pw.println(mBroadcastRefCount);
Dianne Hackborn81038902012-11-26 17:04:09 -08001097 pw.println();
1098
1099 if (mLog.dump(pw, " Recent problems", " ")) {
1100 pw.println();
1101 }
1102
1103 final FilterStats[] topFilters = new FilterStats[10];
1104 final Comparator<FilterStats> comparator = new Comparator<FilterStats>() {
1105 @Override
1106 public int compare(FilterStats lhs, FilterStats rhs) {
1107 if (lhs.aggregateTime < rhs.aggregateTime) {
1108 return 1;
1109 } else if (lhs.aggregateTime > rhs.aggregateTime) {
1110 return -1;
1111 }
1112 return 0;
1113 }
1114 };
1115 int len = 0;
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001116 for (int iu=0; iu<mBroadcastStats.size(); iu++) {
1117 ArrayMap<String, BroadcastStats> uidStats = mBroadcastStats.valueAt(iu);
1118 for (int ip=0; ip<uidStats.size(); ip++) {
1119 BroadcastStats bs = uidStats.valueAt(ip);
1120 for (int is=0; is<bs.filterStats.size(); is++) {
1121 FilterStats fs = bs.filterStats.valueAt(is);
1122 int pos = len > 0
1123 ? Arrays.binarySearch(topFilters, 0, len, fs, comparator) : 0;
1124 if (pos < 0) {
1125 pos = -pos - 1;
Dianne Hackborn81038902012-11-26 17:04:09 -08001126 }
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001127 if (pos < topFilters.length) {
1128 int copylen = topFilters.length - pos - 1;
1129 if (copylen > 0) {
1130 System.arraycopy(topFilters, pos, topFilters, pos+1, copylen);
1131 }
1132 topFilters[pos] = fs;
1133 if (len < topFilters.length) {
1134 len++;
1135 }
Dianne Hackborn81038902012-11-26 17:04:09 -08001136 }
1137 }
1138 }
1139 }
1140 if (len > 0) {
1141 pw.println(" Top Alarms:");
1142 for (int i=0; i<len; i++) {
1143 FilterStats fs = topFilters[i];
1144 pw.print(" ");
1145 if (fs.nesting > 0) pw.print("*ACTIVE* ");
1146 TimeUtils.formatDuration(fs.aggregateTime, pw);
1147 pw.print(" running, "); pw.print(fs.numWakeup);
1148 pw.print(" wakeups, "); pw.print(fs.count);
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001149 pw.print(" alarms: "); UserHandle.formatUid(pw, fs.mBroadcastStats.mUid);
1150 pw.print(":"); pw.print(fs.mBroadcastStats.mPackageName);
Dianne Hackborn81038902012-11-26 17:04:09 -08001151 pw.println();
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001152 pw.print(" "); pw.print(fs.mTag);
Dianne Hackborn81038902012-11-26 17:04:09 -08001153 pw.println();
1154 }
1155 }
1156
1157 pw.println(" ");
1158 pw.println(" Alarm Stats:");
1159 final ArrayList<FilterStats> tmpFilters = new ArrayList<FilterStats>();
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001160 for (int iu=0; iu<mBroadcastStats.size(); iu++) {
1161 ArrayMap<String, BroadcastStats> uidStats = mBroadcastStats.valueAt(iu);
1162 for (int ip=0; ip<uidStats.size(); ip++) {
1163 BroadcastStats bs = uidStats.valueAt(ip);
1164 pw.print(" ");
1165 if (bs.nesting > 0) pw.print("*ACTIVE* ");
1166 UserHandle.formatUid(pw, bs.mUid);
1167 pw.print(":");
1168 pw.print(bs.mPackageName);
1169 pw.print(" "); TimeUtils.formatDuration(bs.aggregateTime, pw);
1170 pw.print(" running, "); pw.print(bs.numWakeup);
1171 pw.println(" wakeups:");
1172 tmpFilters.clear();
1173 for (int is=0; is<bs.filterStats.size(); is++) {
1174 tmpFilters.add(bs.filterStats.valueAt(is));
1175 }
1176 Collections.sort(tmpFilters, comparator);
1177 for (int i=0; i<tmpFilters.size(); i++) {
1178 FilterStats fs = tmpFilters.get(i);
1179 pw.print(" ");
1180 if (fs.nesting > 0) pw.print("*ACTIVE* ");
1181 TimeUtils.formatDuration(fs.aggregateTime, pw);
1182 pw.print(" "); pw.print(fs.numWakeup);
1183 pw.print(" wakes " ); pw.print(fs.count);
Dianne Hackbornf70faed2015-04-21 14:11:38 -07001184 pw.print(" alarms, last ");
1185 TimeUtils.formatDuration(fs.lastTime, nowELAPSED, pw);
1186 pw.println(":");
1187 pw.print(" ");
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001188 pw.print(fs.mTag);
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001189 pw.println();
1190 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001191 }
1192 }
Christopher Tate18a75f12013-07-01 18:18:59 -07001193
1194 if (WAKEUP_STATS) {
1195 pw.println();
1196 pw.println(" Recent Wakeup History:");
Christopher Tate18a75f12013-07-01 18:18:59 -07001197 long last = -1;
1198 for (WakeupEvent event : mRecentWakeups) {
1199 pw.print(" "); pw.print(sdf.format(new Date(event.when)));
1200 pw.print('|');
1201 if (last < 0) {
1202 pw.print('0');
1203 } else {
1204 pw.print(event.when - last);
1205 }
1206 last = event.when;
1207 pw.print('|'); pw.print(event.uid);
1208 pw.print('|'); pw.print(event.action);
1209 pw.println();
1210 }
1211 pw.println();
1212 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001213 }
1214 }
1215
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001216 private void logBatchesLocked(SimpleDateFormat sdf) {
Adam Lesinski182f73f2013-12-05 16:48:06 -08001217 ByteArrayOutputStream bs = new ByteArrayOutputStream(2048);
1218 PrintWriter pw = new PrintWriter(bs);
1219 final long nowRTC = System.currentTimeMillis();
1220 final long nowELAPSED = SystemClock.elapsedRealtime();
1221 final int NZ = mAlarmBatches.size();
1222 for (int iz = 0; iz < NZ; iz++) {
1223 Batch bz = mAlarmBatches.get(iz);
1224 pw.append("Batch "); pw.print(iz); pw.append(": "); pw.println(bz);
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001225 dumpAlarmList(pw, bz.alarms, " ", nowELAPSED, nowRTC, sdf);
Adam Lesinski182f73f2013-12-05 16:48:06 -08001226 pw.flush();
1227 Slog.v(TAG, bs.toString());
1228 bs.reset();
1229 }
1230 }
1231
1232 private boolean validateConsistencyLocked() {
1233 if (DEBUG_VALIDATE) {
1234 long lastTime = Long.MIN_VALUE;
1235 final int N = mAlarmBatches.size();
1236 for (int i = 0; i < N; i++) {
1237 Batch b = mAlarmBatches.get(i);
1238 if (b.start >= lastTime) {
1239 // duplicate start times are okay because of standalone batches
1240 lastTime = b.start;
1241 } else {
1242 Slog.e(TAG, "CONSISTENCY FAILURE: Batch " + i + " is out of order");
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001243 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
1244 logBatchesLocked(sdf);
Adam Lesinski182f73f2013-12-05 16:48:06 -08001245 return false;
1246 }
1247 }
1248 }
1249 return true;
1250 }
1251
Christopher Tate0dab4dc2014-12-16 12:14:06 -08001252 private Batch findFirstWakeupBatchLocked() {
1253 final int N = mAlarmBatches.size();
1254 for (int i = 0; i < N; i++) {
1255 Batch b = mAlarmBatches.get(i);
1256 if (b.hasWakeups()) {
1257 return b;
1258 }
1259 }
1260 return null;
1261 }
1262
Dianne Hackbornf70faed2015-04-21 14:11:38 -07001263 long getNextWakeFromIdleTimeImpl() {
1264 synchronized (mLock) {
1265 return mNextWakeFromIdle != null ? mNextWakeFromIdle.whenElapsed : Long.MAX_VALUE;
1266 }
1267 }
1268
1269 AlarmManager.AlarmClockInfo getNextAlarmClockImpl(int userId) {
Adrian Roosc42a1e12014-07-07 23:35:53 +02001270 synchronized (mLock) {
1271 return mNextAlarmClockForUser.get(userId);
1272 }
1273 }
1274
1275 /**
1276 * Recomputes the next alarm clock for all users.
1277 */
1278 private void updateNextAlarmClockLocked() {
1279 if (!mNextAlarmClockMayChange) {
1280 return;
1281 }
1282 mNextAlarmClockMayChange = false;
1283
Jose Lima235510e2014-08-13 12:50:01 -07001284 SparseArray<AlarmManager.AlarmClockInfo> nextForUser = mTmpSparseAlarmClockArray;
Adrian Roosc42a1e12014-07-07 23:35:53 +02001285 nextForUser.clear();
1286
1287 final int N = mAlarmBatches.size();
1288 for (int i = 0; i < N; i++) {
1289 ArrayList<Alarm> alarms = mAlarmBatches.get(i).alarms;
1290 final int M = alarms.size();
1291
1292 for (int j = 0; j < M; j++) {
1293 Alarm a = alarms.get(j);
1294 if (a.alarmClock != null) {
1295 final int userId = a.userId;
1296
1297 if (DEBUG_ALARM_CLOCK) {
1298 Log.v(TAG, "Found AlarmClockInfo at " +
Selim Cinek9c4a7072014-11-21 17:44:34 +01001299 formatNextAlarm(getContext(), a.alarmClock, userId) +
Adrian Roosc42a1e12014-07-07 23:35:53 +02001300 " for user " + userId);
1301 }
1302
1303 // Alarms and batches are sorted by time, no need to compare times here.
1304 if (nextForUser.get(userId) == null) {
1305 nextForUser.put(userId, a.alarmClock);
1306 }
1307 }
1308 }
1309 }
1310
1311 // Update mNextAlarmForUser with new values.
1312 final int NN = nextForUser.size();
1313 for (int i = 0; i < NN; i++) {
Jose Lima235510e2014-08-13 12:50:01 -07001314 AlarmManager.AlarmClockInfo newAlarm = nextForUser.valueAt(i);
Adrian Roosc42a1e12014-07-07 23:35:53 +02001315 int userId = nextForUser.keyAt(i);
Jose Lima235510e2014-08-13 12:50:01 -07001316 AlarmManager.AlarmClockInfo currentAlarm = mNextAlarmClockForUser.get(userId);
Adrian Roosc42a1e12014-07-07 23:35:53 +02001317 if (!newAlarm.equals(currentAlarm)) {
1318 updateNextAlarmInfoForUserLocked(userId, newAlarm);
1319 }
1320 }
1321
1322 // Remove users without any alarm clocks scheduled.
1323 final int NNN = mNextAlarmClockForUser.size();
1324 for (int i = NNN - 1; i >= 0; i--) {
1325 int userId = mNextAlarmClockForUser.keyAt(i);
1326 if (nextForUser.get(userId) == null) {
1327 updateNextAlarmInfoForUserLocked(userId, null);
1328 }
1329 }
1330 }
1331
Jose Lima235510e2014-08-13 12:50:01 -07001332 private void updateNextAlarmInfoForUserLocked(int userId,
1333 AlarmManager.AlarmClockInfo alarmClock) {
Adrian Roosc42a1e12014-07-07 23:35:53 +02001334 if (alarmClock != null) {
1335 if (DEBUG_ALARM_CLOCK) {
1336 Log.v(TAG, "Next AlarmClockInfoForUser(" + userId + "): " +
Selim Cinek9c4a7072014-11-21 17:44:34 +01001337 formatNextAlarm(getContext(), alarmClock, userId));
Adrian Roosc42a1e12014-07-07 23:35:53 +02001338 }
1339 mNextAlarmClockForUser.put(userId, alarmClock);
1340 } else {
1341 if (DEBUG_ALARM_CLOCK) {
1342 Log.v(TAG, "Next AlarmClockInfoForUser(" + userId + "): None");
1343 }
1344 mNextAlarmClockForUser.remove(userId);
1345 }
1346
1347 mPendingSendNextAlarmClockChangedForUser.put(userId, true);
1348 mHandler.removeMessages(AlarmHandler.SEND_NEXT_ALARM_CLOCK_CHANGED);
1349 mHandler.sendEmptyMessage(AlarmHandler.SEND_NEXT_ALARM_CLOCK_CHANGED);
1350 }
1351
1352 /**
1353 * Updates NEXT_ALARM_FORMATTED and sends NEXT_ALARM_CLOCK_CHANGED_INTENT for all users
1354 * for which alarm clocks have changed since the last call to this.
1355 *
1356 * Do not call with a lock held. Only call from mHandler's thread.
1357 *
1358 * @see AlarmHandler#SEND_NEXT_ALARM_CLOCK_CHANGED
1359 */
1360 private void sendNextAlarmClockChanged() {
Jose Lima235510e2014-08-13 12:50:01 -07001361 SparseArray<AlarmManager.AlarmClockInfo> pendingUsers = mHandlerSparseAlarmClockArray;
Adrian Roosc42a1e12014-07-07 23:35:53 +02001362 pendingUsers.clear();
1363
1364 synchronized (mLock) {
1365 final int N = mPendingSendNextAlarmClockChangedForUser.size();
1366 for (int i = 0; i < N; i++) {
1367 int userId = mPendingSendNextAlarmClockChangedForUser.keyAt(i);
1368 pendingUsers.append(userId, mNextAlarmClockForUser.get(userId));
1369 }
1370 mPendingSendNextAlarmClockChangedForUser.clear();
1371 }
1372
1373 final int N = pendingUsers.size();
1374 for (int i = 0; i < N; i++) {
1375 int userId = pendingUsers.keyAt(i);
Jose Lima235510e2014-08-13 12:50:01 -07001376 AlarmManager.AlarmClockInfo alarmClock = pendingUsers.valueAt(i);
Adrian Roosc42a1e12014-07-07 23:35:53 +02001377 Settings.System.putStringForUser(getContext().getContentResolver(),
1378 Settings.System.NEXT_ALARM_FORMATTED,
Selim Cinek9c4a7072014-11-21 17:44:34 +01001379 formatNextAlarm(getContext(), alarmClock, userId),
Adrian Roosc42a1e12014-07-07 23:35:53 +02001380 userId);
1381
1382 getContext().sendBroadcastAsUser(NEXT_ALARM_CLOCK_CHANGED_INTENT,
1383 new UserHandle(userId));
1384 }
1385 }
1386
1387 /**
1388 * Formats an alarm like platform/packages/apps/DeskClock used to.
1389 */
Selim Cinek9c4a7072014-11-21 17:44:34 +01001390 private static String formatNextAlarm(final Context context, AlarmManager.AlarmClockInfo info,
1391 int userId) {
1392 String skeleton = DateFormat.is24HourFormat(context, userId) ? "EHm" : "Ehma";
Adrian Roosc42a1e12014-07-07 23:35:53 +02001393 String pattern = DateFormat.getBestDateTimePattern(Locale.getDefault(), skeleton);
1394 return (info == null) ? "" :
1395 DateFormat.format(pattern, info.getTriggerTime()).toString();
1396 }
1397
Adam Lesinski182f73f2013-12-05 16:48:06 -08001398 void rescheduleKernelAlarmsLocked() {
1399 // Schedule the next upcoming wakeup alarm. If there is a deliverable batch
1400 // prior to that which contains no wakeups, we schedule that as well.
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001401 long nextNonWakeup = 0;
Adam Lesinski182f73f2013-12-05 16:48:06 -08001402 if (mAlarmBatches.size() > 0) {
Christopher Tate0dab4dc2014-12-16 12:14:06 -08001403 final Batch firstWakeup = findFirstWakeupBatchLocked();
Adam Lesinski182f73f2013-12-05 16:48:06 -08001404 final Batch firstBatch = mAlarmBatches.get(0);
Christopher Tatec83d3e42015-02-04 13:48:29 -08001405 // always update the kernel alarms, as a backstop against missed wakeups
1406 if (firstWakeup != null) {
Christopher Tate0dab4dc2014-12-16 12:14:06 -08001407 mNextWakeup = firstWakeup.start;
1408 setLocked(ELAPSED_REALTIME_WAKEUP, firstWakeup.start);
Adam Lesinski182f73f2013-12-05 16:48:06 -08001409 }
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001410 if (firstBatch != firstWakeup) {
1411 nextNonWakeup = firstBatch.start;
Adam Lesinski182f73f2013-12-05 16:48:06 -08001412 }
1413 }
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001414 if (mPendingNonWakeupAlarms.size() > 0) {
1415 if (nextNonWakeup == 0 || mNextNonWakeupDeliveryTime < nextNonWakeup) {
1416 nextNonWakeup = mNextNonWakeupDeliveryTime;
1417 }
1418 }
Christopher Tatec83d3e42015-02-04 13:48:29 -08001419 // always update the kernel alarm, as a backstop against missed wakeups
1420 if (nextNonWakeup != 0) {
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001421 mNextNonWakeup = nextNonWakeup;
1422 setLocked(ELAPSED_REALTIME, nextNonWakeup);
1423 }
Adam Lesinski182f73f2013-12-05 16:48:06 -08001424 }
1425
1426 private void removeLocked(PendingIntent operation) {
1427 boolean didRemove = false;
1428 for (int i = mAlarmBatches.size() - 1; i >= 0; i--) {
1429 Batch b = mAlarmBatches.get(i);
1430 didRemove |= b.remove(operation);
1431 if (b.size() == 0) {
1432 mAlarmBatches.remove(i);
1433 }
1434 }
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07001435 for (int i = mPendingWhileIdleAlarms.size() - 1; i >= 0; i--) {
1436 if (mPendingWhileIdleAlarms.get(i).operation.equals(operation)) {
1437 // Don't set didRemove, since this doesn't impact the scheduled alarms.
1438 mPendingWhileIdleAlarms.remove(i);
1439 }
1440 }
Adam Lesinski182f73f2013-12-05 16:48:06 -08001441
1442 if (didRemove) {
1443 if (DEBUG_BATCH) {
1444 Slog.v(TAG, "remove(operation) changed bounds; rebatching");
1445 }
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07001446 boolean restorePending = false;
1447 if (mPendingIdleUntil != null && mPendingIdleUntil.operation.equals(operation)) {
1448 mPendingIdleUntil = null;
1449 restorePending = true;
1450 }
Dianne Hackbornf70faed2015-04-21 14:11:38 -07001451 if (mNextWakeFromIdle != null && mNextWakeFromIdle.operation.equals(operation)) {
1452 mNextWakeFromIdle = null;
1453 }
Adam Lesinski182f73f2013-12-05 16:48:06 -08001454 rebatchAllAlarmsLocked(true);
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07001455 if (restorePending) {
1456 restorePendingWhileIdleAlarmsLocked();
1457 }
Adrian Roosc42a1e12014-07-07 23:35:53 +02001458 updateNextAlarmClockLocked();
Adam Lesinski182f73f2013-12-05 16:48:06 -08001459 }
1460 }
1461
1462 void removeLocked(String packageName) {
1463 boolean didRemove = false;
1464 for (int i = mAlarmBatches.size() - 1; i >= 0; i--) {
1465 Batch b = mAlarmBatches.get(i);
1466 didRemove |= b.remove(packageName);
1467 if (b.size() == 0) {
1468 mAlarmBatches.remove(i);
1469 }
1470 }
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07001471 for (int i = mPendingWhileIdleAlarms.size() - 1; i >= 0; i--) {
1472 if (mPendingWhileIdleAlarms.get(i).operation.getTargetPackage().equals(packageName)) {
1473 // Don't set didRemove, since this doesn't impact the scheduled alarms.
1474 mPendingWhileIdleAlarms.remove(i);
1475 }
1476 }
Adam Lesinski182f73f2013-12-05 16:48:06 -08001477
1478 if (didRemove) {
1479 if (DEBUG_BATCH) {
1480 Slog.v(TAG, "remove(package) changed bounds; rebatching");
1481 }
1482 rebatchAllAlarmsLocked(true);
1483 rescheduleKernelAlarmsLocked();
Adrian Roosc42a1e12014-07-07 23:35:53 +02001484 updateNextAlarmClockLocked();
Adam Lesinski182f73f2013-12-05 16:48:06 -08001485 }
1486 }
1487
1488 void removeUserLocked(int userHandle) {
1489 boolean didRemove = false;
1490 for (int i = mAlarmBatches.size() - 1; i >= 0; i--) {
1491 Batch b = mAlarmBatches.get(i);
1492 didRemove |= b.remove(userHandle);
1493 if (b.size() == 0) {
1494 mAlarmBatches.remove(i);
1495 }
1496 }
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07001497 for (int i = mPendingWhileIdleAlarms.size() - 1; i >= 0; i--) {
1498 if (UserHandle.getUserId(mPendingWhileIdleAlarms.get(i).operation.getCreatorUid())
1499 == userHandle) {
1500 // Don't set didRemove, since this doesn't impact the scheduled alarms.
1501 mPendingWhileIdleAlarms.remove(i);
1502 }
1503 }
Adam Lesinski182f73f2013-12-05 16:48:06 -08001504
1505 if (didRemove) {
1506 if (DEBUG_BATCH) {
1507 Slog.v(TAG, "remove(user) changed bounds; rebatching");
1508 }
1509 rebatchAllAlarmsLocked(true);
1510 rescheduleKernelAlarmsLocked();
Adrian Roosc42a1e12014-07-07 23:35:53 +02001511 updateNextAlarmClockLocked();
Adam Lesinski182f73f2013-12-05 16:48:06 -08001512 }
1513 }
1514
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001515 void interactiveStateChangedLocked(boolean interactive) {
1516 if (mInteractive != interactive) {
1517 mInteractive = interactive;
1518 final long nowELAPSED = SystemClock.elapsedRealtime();
1519 if (interactive) {
1520 if (mPendingNonWakeupAlarms.size() > 0) {
1521 final long thisDelayTime = nowELAPSED - mStartCurrentDelayTime;
1522 mTotalDelayTime += thisDelayTime;
1523 if (mMaxDelayTime < thisDelayTime) {
1524 mMaxDelayTime = thisDelayTime;
1525 }
1526 deliverAlarmsLocked(mPendingNonWakeupAlarms, nowELAPSED);
1527 mPendingNonWakeupAlarms.clear();
1528 }
1529 if (mNonInteractiveStartTime > 0) {
1530 long dur = nowELAPSED - mNonInteractiveStartTime;
1531 if (dur > mNonInteractiveTime) {
1532 mNonInteractiveTime = dur;
1533 }
1534 }
1535 } else {
1536 mNonInteractiveStartTime = nowELAPSED;
1537 }
1538 }
1539 }
1540
Adam Lesinski182f73f2013-12-05 16:48:06 -08001541 boolean lookForPackageLocked(String packageName) {
1542 for (int i = 0; i < mAlarmBatches.size(); i++) {
1543 Batch b = mAlarmBatches.get(i);
1544 if (b.hasPackage(packageName)) {
1545 return true;
1546 }
1547 }
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07001548 for (int i = 0; i < mPendingWhileIdleAlarms.size(); i++) {
1549 if (mPendingWhileIdleAlarms.get(i).operation.getTargetPackage().equals(packageName)) {
1550 return true;
1551 }
1552 }
Adam Lesinski182f73f2013-12-05 16:48:06 -08001553 return false;
1554 }
1555
1556 private void setLocked(int type, long when) {
Greg Hackmannf1bdbdd2013-12-17 11:56:22 -08001557 if (mNativeData != 0) {
Adam Lesinski182f73f2013-12-05 16:48:06 -08001558 // The kernel never triggers alarms with negative wakeup times
1559 // so we ensure they are positive.
1560 long alarmSeconds, alarmNanoseconds;
1561 if (when < 0) {
1562 alarmSeconds = 0;
1563 alarmNanoseconds = 0;
1564 } else {
1565 alarmSeconds = when / 1000;
1566 alarmNanoseconds = (when % 1000) * 1000 * 1000;
1567 }
1568
Greg Hackmannf1bdbdd2013-12-17 11:56:22 -08001569 set(mNativeData, type, alarmSeconds, alarmNanoseconds);
Adam Lesinski182f73f2013-12-05 16:48:06 -08001570 } else {
1571 Message msg = Message.obtain();
1572 msg.what = ALARM_EVENT;
1573
1574 mHandler.removeMessages(ALARM_EVENT);
1575 mHandler.sendMessageAtTime(msg, when);
1576 }
1577 }
1578
Dianne Hackborn043fcd92010-10-06 14:27:34 -07001579 private static final void dumpAlarmList(PrintWriter pw, ArrayList<Alarm> list,
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001580 String prefix, String label, long nowRTC, long nowELAPSED, SimpleDateFormat sdf) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001581 for (int i=list.size()-1; i>=0; i--) {
1582 Alarm a = list.get(i);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001583 pw.print(prefix); pw.print(label); pw.print(" #"); pw.print(i);
1584 pw.print(": "); pw.println(a);
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001585 a.dump(pw, prefix + " ", nowRTC, nowELAPSED, sdf);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001586 }
1587 }
Christopher Tatee0a22b32013-07-11 14:43:13 -07001588
1589 private static final String labelForType(int type) {
1590 switch (type) {
1591 case RTC: return "RTC";
1592 case RTC_WAKEUP : return "RTC_WAKEUP";
1593 case ELAPSED_REALTIME : return "ELAPSED";
1594 case ELAPSED_REALTIME_WAKEUP: return "ELAPSED_WAKEUP";
1595 default:
1596 break;
1597 }
1598 return "--unknown--";
1599 }
1600
1601 private static final void dumpAlarmList(PrintWriter pw, ArrayList<Alarm> list,
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001602 String prefix, long nowELAPSED, long nowRTC, SimpleDateFormat sdf) {
Christopher Tatee0a22b32013-07-11 14:43:13 -07001603 for (int i=list.size()-1; i>=0; i--) {
1604 Alarm a = list.get(i);
1605 final String label = labelForType(a.type);
Christopher Tatee0a22b32013-07-11 14:43:13 -07001606 pw.print(prefix); pw.print(label); pw.print(" #"); pw.print(i);
1607 pw.print(": "); pw.println(a);
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001608 a.dump(pw, prefix + " ", nowRTC, nowELAPSED, sdf);
Christopher Tatee0a22b32013-07-11 14:43:13 -07001609 }
1610 }
1611
Greg Hackmanna1d6f922013-12-09 16:56:53 -08001612 private native long init();
1613 private native void close(long nativeData);
1614 private native void set(long nativeData, int type, long seconds, long nanoseconds);
1615 private native int waitForAlarm(long nativeData);
Greg Hackmann38bf5142014-02-19 16:39:36 -08001616 private native int setKernelTime(long nativeData, long millis);
Greg Hackmanna1d6f922013-12-09 16:56:53 -08001617 private native int setKernelTimezone(long nativeData, int minuteswest);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001618
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001619 boolean triggerAlarmsLocked(ArrayList<Alarm> triggerList, final long nowELAPSED,
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001620 final long nowRTC) {
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001621 boolean hasWakeup = false;
Christopher Tatee0a22b32013-07-11 14:43:13 -07001622 // batches are temporally sorted, so we need only pull from the
1623 // start of the list until we either empty it or hit a batch
1624 // that is not yet deliverable
Christopher Tate6578ad12013-09-24 17:12:46 -07001625 while (mAlarmBatches.size() > 0) {
1626 Batch batch = mAlarmBatches.get(0);
Christopher Tatee0a22b32013-07-11 14:43:13 -07001627 if (batch.start > nowELAPSED) {
1628 // Everything else is scheduled for the future
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001629 break;
1630 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001631
Christopher Tatee0a22b32013-07-11 14:43:13 -07001632 // We will (re)schedule some alarms now; don't let that interfere
1633 // with delivery of this current batch
1634 mAlarmBatches.remove(0);
Dianne Hackborn390517b2013-05-30 15:03:32 -07001635
Christopher Tatee0a22b32013-07-11 14:43:13 -07001636 final int N = batch.size();
1637 for (int i = 0; i < N; i++) {
1638 Alarm alarm = batch.get(i);
1639 alarm.count = 1;
1640 triggerList.add(alarm);
Dianne Hackbornf70faed2015-04-21 14:11:38 -07001641 if ((alarm.flags&AlarmManager.FLAG_WAKE_FROM_IDLE) != 0) {
1642 EventLogTags.writeDeviceIdleWakeFromIdle(mPendingIdleUntil != null ? 1 : 0,
1643 alarm.tag);
1644 }
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07001645 if (mPendingIdleUntil == alarm) {
1646 mPendingIdleUntil = null;
1647 rebatchAllAlarmsLocked(false);
1648 restorePendingWhileIdleAlarmsLocked();
1649 }
Dianne Hackbornf70faed2015-04-21 14:11:38 -07001650 if (mNextWakeFromIdle == alarm) {
1651 mNextWakeFromIdle = null;
1652 rebatchAllAlarmsLocked(false);
1653 }
Christopher Tatee0a22b32013-07-11 14:43:13 -07001654
1655 // Recurring alarms may have passed several alarm intervals while the
1656 // phone was asleep or off, so pass a trigger count when sending them.
1657 if (alarm.repeatInterval > 0) {
1658 // this adjustment will be zero if we're late by
1659 // less than one full repeat interval
1660 alarm.count += (nowELAPSED - alarm.whenElapsed) / alarm.repeatInterval;
1661
1662 // Also schedule its next recurrence
1663 final long delta = alarm.count * alarm.repeatInterval;
1664 final long nextElapsed = alarm.whenElapsed + delta;
Christopher Tate3e04b472013-10-21 17:51:31 -07001665 setImplLocked(alarm.type, alarm.when + delta, nextElapsed, alarm.windowLength,
Christopher Tatee0a22b32013-07-11 14:43:13 -07001666 maxTriggerTime(nowELAPSED, nextElapsed, alarm.repeatInterval),
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07001667 alarm.repeatInterval, alarm.operation, alarm.flags, true,
Adrian Roosc42a1e12014-07-07 23:35:53 +02001668 alarm.workSource, alarm.alarmClock, alarm.userId);
Christopher Tate864d42e2014-12-02 11:48:53 -08001669 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001670
Christopher Tate864d42e2014-12-02 11:48:53 -08001671 if (alarm.wakeup) {
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001672 hasWakeup = true;
1673 }
Adrian Roosc42a1e12014-07-07 23:35:53 +02001674
1675 // We removed an alarm clock. Let the caller recompute the next alarm clock.
1676 if (alarm.alarmClock != null) {
1677 mNextAlarmClockMayChange = true;
1678 }
Dianne Hackborn390517b2013-05-30 15:03:32 -07001679 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001680 }
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001681
Christopher Tate1590f1e2014-10-02 17:27:57 -07001682 // This is a new alarm delivery set; bump the sequence number to indicate that
1683 // all apps' alarm delivery classes should be recalculated.
1684 mCurrentSeq++;
1685 calculateDeliveryPriorities(triggerList);
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001686 Collections.sort(triggerList, mAlarmDispatchComparator);
1687
1688 if (localLOGV) {
1689 for (int i=0; i<triggerList.size(); i++) {
1690 Slog.v(TAG, "Triggering alarm #" + i + ": " + triggerList.get(i));
1691 }
1692 }
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001693
1694 return hasWakeup;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001695 }
Christopher Tatee0a22b32013-07-11 14:43:13 -07001696
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001697 /**
1698 * This Comparator sorts Alarms into increasing time order.
1699 */
1700 public static class IncreasingTimeOrder implements Comparator<Alarm> {
1701 public int compare(Alarm a1, Alarm a2) {
1702 long when1 = a1.when;
1703 long when2 = a2.when;
1704 if (when1 - when2 > 0) {
1705 return 1;
1706 }
1707 if (when1 - when2 < 0) {
1708 return -1;
1709 }
1710 return 0;
1711 }
1712 }
1713
1714 private static class Alarm {
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001715 public final int type;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07001716 public final long origWhen;
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001717 public final boolean wakeup;
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001718 public final PendingIntent operation;
Dianne Hackbornf70faed2015-04-21 14:11:38 -07001719 public final String tag;
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001720 public final WorkSource workSource;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07001721 public final int flags;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001722 public int count;
1723 public long when;
Christopher Tate3e04b472013-10-21 17:51:31 -07001724 public long windowLength;
Christopher Tatee0a22b32013-07-11 14:43:13 -07001725 public long whenElapsed; // 'when' in the elapsed time base
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07001726 public long maxWhenElapsed; // also in the elapsed time base
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001727 public long repeatInterval;
Jose Lima235510e2014-08-13 12:50:01 -07001728 public final AlarmManager.AlarmClockInfo alarmClock;
Adrian Roosc42a1e12014-07-07 23:35:53 +02001729 public final int userId;
Christopher Tate1590f1e2014-10-02 17:27:57 -07001730 public PriorityClass priorityClass;
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001731
Christopher Tate3e04b472013-10-21 17:51:31 -07001732 public Alarm(int _type, long _when, long _whenElapsed, long _windowLength, long _maxWhen,
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07001733 long _interval, PendingIntent _op, WorkSource _ws, int _flags,
Jose Lima235510e2014-08-13 12:50:01 -07001734 AlarmManager.AlarmClockInfo _info, int _userId) {
Christopher Tatee0a22b32013-07-11 14:43:13 -07001735 type = _type;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07001736 origWhen = _when;
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001737 wakeup = _type == AlarmManager.ELAPSED_REALTIME_WAKEUP
1738 || _type == AlarmManager.RTC_WAKEUP;
Christopher Tatee0a22b32013-07-11 14:43:13 -07001739 when = _when;
1740 whenElapsed = _whenElapsed;
Christopher Tate3e04b472013-10-21 17:51:31 -07001741 windowLength = _windowLength;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07001742 maxWhenElapsed = _maxWhen;
Christopher Tatee0a22b32013-07-11 14:43:13 -07001743 repeatInterval = _interval;
1744 operation = _op;
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001745 tag = makeTag(_op, _type);
David Christieebe51fc2013-07-26 13:23:29 -07001746 workSource = _ws;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07001747 flags = _flags;
Adrian Roosc42a1e12014-07-07 23:35:53 +02001748 alarmClock = _info;
1749 userId = _userId;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001750 }
Christopher Tatee0a22b32013-07-11 14:43:13 -07001751
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001752 public static String makeTag(PendingIntent pi, int type) {
1753 return pi.getTag(type == ELAPSED_REALTIME_WAKEUP || type == RTC_WAKEUP
1754 ? "*walarm*:" : "*alarm*:");
1755 }
1756
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001757 @Override
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001758 public String toString() {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001759 StringBuilder sb = new StringBuilder(128);
1760 sb.append("Alarm{");
1761 sb.append(Integer.toHexString(System.identityHashCode(this)));
1762 sb.append(" type ");
1763 sb.append(type);
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08001764 sb.append(" when ");
1765 sb.append(when);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001766 sb.append(" ");
1767 sb.append(operation.getTargetPackage());
1768 sb.append('}');
1769 return sb.toString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001770 }
1771
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001772 public void dump(PrintWriter pw, String prefix, long nowRTC, long nowELAPSED,
1773 SimpleDateFormat sdf) {
1774 final boolean isRtc = (type == RTC || type == RTC_WAKEUP);
1775 pw.print(prefix); pw.print("tag="); pw.println(tag);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001776 pw.print(prefix); pw.print("type="); pw.print(type);
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001777 pw.print(" whenElapsed="); TimeUtils.formatDuration(whenElapsed,
1778 nowELAPSED, pw);
1779 if (isRtc) {
1780 pw.print(" when="); pw.print(sdf.format(new Date(when)));
1781 } else {
1782 pw.print(" when="); TimeUtils.formatDuration(when, nowELAPSED, pw);
1783 }
1784 pw.println();
1785 pw.print(prefix); pw.print("window="); pw.print(windowLength);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001786 pw.print(" repeatInterval="); pw.print(repeatInterval);
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07001787 pw.print(" count="); pw.print(count);
1788 pw.print(" flags=0x"); pw.println(Integer.toHexString(flags));
Dianne Hackbornf70faed2015-04-21 14:11:38 -07001789 if (alarmClock != null) {
1790 pw.print(prefix); pw.println("Alarm clock:");
1791 pw.print(prefix); pw.print(" triggerTime=");
1792 pw.println(sdf.format(new Date(alarmClock.getTriggerTime())));
1793 pw.print(prefix); pw.print(" showIntent="); pw.println(alarmClock.getShowIntent());
1794 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001795 pw.print(prefix); pw.print("operation="); pw.println(operation);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001796 }
1797 }
Christopher Tate18a75f12013-07-01 18:18:59 -07001798
Christopher Tatee0a22b32013-07-11 14:43:13 -07001799 void recordWakeupAlarms(ArrayList<Batch> batches, long nowELAPSED, long nowRTC) {
1800 final int numBatches = batches.size();
Christopher Tatee982faf2013-07-19 14:51:44 -07001801 for (int nextBatch = 0; nextBatch < numBatches; nextBatch++) {
1802 Batch b = batches.get(nextBatch);
Christopher Tatee0a22b32013-07-11 14:43:13 -07001803 if (b.start > nowELAPSED) {
Christopher Tate18a75f12013-07-01 18:18:59 -07001804 break;
1805 }
1806
Christopher Tatee0a22b32013-07-11 14:43:13 -07001807 final int numAlarms = b.alarms.size();
Christopher Tatee982faf2013-07-19 14:51:44 -07001808 for (int nextAlarm = 0; nextAlarm < numAlarms; nextAlarm++) {
1809 Alarm a = b.alarms.get(nextAlarm);
Christopher Tatee0a22b32013-07-11 14:43:13 -07001810 WakeupEvent e = new WakeupEvent(nowRTC,
1811 a.operation.getCreatorUid(),
1812 a.operation.getIntent().getAction());
1813 mRecentWakeups.add(e);
1814 }
Christopher Tate18a75f12013-07-01 18:18:59 -07001815 }
1816 }
1817
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001818 long currentNonWakeupFuzzLocked(long nowELAPSED) {
1819 long timeSinceOn = nowELAPSED - mNonInteractiveStartTime;
1820 if (timeSinceOn < 5*60*1000) {
1821 // If the screen has been off for 5 minutes, only delay by at most two minutes.
1822 return 2*60*1000;
1823 } else if (timeSinceOn < 30*60*1000) {
1824 // If the screen has been off for 30 minutes, only delay by at most 15 minutes.
1825 return 15*60*1000;
1826 } else {
1827 // Otherwise, we will delay by at most an hour.
1828 return 60*60*1000;
1829 }
1830 }
1831
Dianne Hackbornf70faed2015-04-21 14:11:38 -07001832 static int fuzzForDuration(long duration) {
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07001833 if (duration < 15*60*1000) {
1834 // If the duration until the time is less than 15 minutes, the maximum fuzz
1835 // is the duration.
Dianne Hackbornf70faed2015-04-21 14:11:38 -07001836 return (int)duration;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07001837 } else if (duration < 90*60*1000) {
1838 // If duration is less than 1 1/2 hours, the maximum fuzz is 15 minutes,
1839 return 15*60*1000;
1840 } else {
1841 // Otherwise, we will fuzz by at most half an hour.
1842 return 30*60*1000;
1843 }
1844 }
1845
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001846 boolean checkAllowNonWakeupDelayLocked(long nowELAPSED) {
1847 if (mInteractive) {
1848 return false;
1849 }
1850 if (mLastAlarmDeliveryTime <= 0) {
1851 return false;
1852 }
minho.choo649acab2014-12-12 16:13:55 +09001853 if (mPendingNonWakeupAlarms.size() > 0 && mNextNonWakeupDeliveryTime < nowELAPSED) {
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001854 // This is just a little paranoia, if somehow we have pending non-wakeup alarms
1855 // and the next delivery time is in the past, then just deliver them all. This
1856 // avoids bugs where we get stuck in a loop trying to poll for alarms.
1857 return false;
1858 }
1859 long timeSinceLast = nowELAPSED - mLastAlarmDeliveryTime;
1860 return timeSinceLast <= currentNonWakeupFuzzLocked(nowELAPSED);
1861 }
1862
1863 void deliverAlarmsLocked(ArrayList<Alarm> triggerList, long nowELAPSED) {
1864 mLastAlarmDeliveryTime = nowELAPSED;
1865 for (int i=0; i<triggerList.size(); i++) {
1866 Alarm alarm = triggerList.get(i);
1867 try {
Christopher Tate2ff5a732014-09-18 13:47:57 -07001868 if (localLOGV) {
1869 Slog.v(TAG, "sending alarm " + alarm);
1870 }
Dianne Hackborn1e383822015-04-10 14:02:33 -07001871 if (RECORD_ALARMS_IN_HISTORY) {
1872 if (alarm.workSource != null && alarm.workSource.size() > 0) {
1873 for (int wi=0; wi<alarm.workSource.size(); wi++) {
1874 ActivityManagerNative.noteAlarmStart(
1875 alarm.operation, alarm.workSource.get(wi), alarm.tag);
1876 }
1877 } else {
1878 ActivityManagerNative.noteAlarmStart(
1879 alarm.operation, -1, alarm.tag);
1880 }
1881 }
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001882 alarm.operation.send(getContext(), 0,
1883 mBackgroundIntent.putExtra(
1884 Intent.EXTRA_ALARM_COUNT, alarm.count),
1885 mResultReceiver, mHandler);
1886
1887 // we have an active broadcast so stay awake.
1888 if (mBroadcastRefCount == 0) {
1889 setWakelockWorkSource(alarm.operation, alarm.workSource,
1890 alarm.type, alarm.tag, true);
1891 mWakeLock.acquire();
1892 }
1893 final InFlight inflight = new InFlight(AlarmManagerService.this,
Dianne Hackbornf70faed2015-04-21 14:11:38 -07001894 alarm.operation, alarm.workSource, alarm.type, alarm.tag, nowELAPSED);
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001895 mInFlight.add(inflight);
1896 mBroadcastRefCount++;
1897
1898 final BroadcastStats bs = inflight.mBroadcastStats;
1899 bs.count++;
1900 if (bs.nesting == 0) {
1901 bs.nesting = 1;
1902 bs.startTime = nowELAPSED;
1903 } else {
1904 bs.nesting++;
1905 }
1906 final FilterStats fs = inflight.mFilterStats;
1907 fs.count++;
1908 if (fs.nesting == 0) {
1909 fs.nesting = 1;
1910 fs.startTime = nowELAPSED;
1911 } else {
1912 fs.nesting++;
1913 }
1914 if (alarm.type == ELAPSED_REALTIME_WAKEUP
1915 || alarm.type == RTC_WAKEUP) {
1916 bs.numWakeup++;
1917 fs.numWakeup++;
1918 if (alarm.workSource != null && alarm.workSource.size() > 0) {
1919 for (int wi=0; wi<alarm.workSource.size(); wi++) {
1920 ActivityManagerNative.noteWakeupAlarm(
1921 alarm.operation, alarm.workSource.get(wi),
Dianne Hackborn1e383822015-04-10 14:02:33 -07001922 alarm.workSource.getName(wi), alarm.tag);
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001923 }
1924 } else {
1925 ActivityManagerNative.noteWakeupAlarm(
Dianne Hackborn1e383822015-04-10 14:02:33 -07001926 alarm.operation, -1, null, alarm.tag);
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001927 }
1928 }
1929 } catch (PendingIntent.CanceledException e) {
1930 if (alarm.repeatInterval > 0) {
1931 // This IntentSender is no longer valid, but this
1932 // is a repeating alarm, so toss the hoser.
1933 removeImpl(alarm.operation);
1934 }
1935 } catch (RuntimeException e) {
1936 Slog.w(TAG, "Failure sending alarm.", e);
1937 }
1938 }
1939 }
1940
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001941 private class AlarmThread extends Thread
1942 {
1943 public AlarmThread()
1944 {
1945 super("AlarmManager");
1946 }
1947
1948 public void run()
1949 {
Dianne Hackborn390517b2013-05-30 15:03:32 -07001950 ArrayList<Alarm> triggerList = new ArrayList<Alarm>();
1951
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001952 while (true)
1953 {
Greg Hackmanna1d6f922013-12-09 16:56:53 -08001954 int result = waitForAlarm(mNativeData);
Dianne Hackborn390517b2013-05-30 15:03:32 -07001955
1956 triggerList.clear();
1957
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001958 if ((result & TIME_CHANGED_MASK) != 0) {
Christopher Tate385e4982013-07-23 18:22:29 -07001959 if (DEBUG_BATCH) {
Christopher Tate4cb338d2013-07-26 13:11:31 -07001960 Slog.v(TAG, "Time changed notification from kernel; rebatching");
Christopher Tate385e4982013-07-23 18:22:29 -07001961 }
Adam Lesinski182f73f2013-12-05 16:48:06 -08001962 removeImpl(mTimeTickSender);
Christopher Tatee0a22b32013-07-11 14:43:13 -07001963 rebatchAllAlarms();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001964 mClockReceiver.scheduleTimeTickEvent();
Dianne Hackborn998e6082014-09-11 19:13:23 -07001965 synchronized (mLock) {
1966 mNumTimeChanged++;
1967 }
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08001968 Intent intent = new Intent(Intent.ACTION_TIME_CHANGED);
Dianne Hackborn89ba6752011-01-23 16:51:16 -08001969 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING
1970 | Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Adam Lesinski182f73f2013-12-05 16:48:06 -08001971 getContext().sendBroadcastAsUser(intent, UserHandle.ALL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001972 }
1973
1974 synchronized (mLock) {
1975 final long nowRTC = System.currentTimeMillis();
1976 final long nowELAPSED = SystemClock.elapsedRealtime();
Joe Onorato8a9b2202010-02-26 18:56:32 -08001977 if (localLOGV) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001978 TAG, "Checking for alarms... rtc=" + nowRTC
1979 + ", elapsed=" + nowELAPSED);
1980
Christopher Tate18a75f12013-07-01 18:18:59 -07001981 if (WAKEUP_STATS) {
1982 if ((result & IS_WAKEUP_MASK) != 0) {
1983 long newEarliest = nowRTC - RECENT_WAKEUP_PERIOD;
1984 int n = 0;
1985 for (WakeupEvent event : mRecentWakeups) {
1986 if (event.when > newEarliest) break;
1987 n++; // number of now-stale entries at the list head
1988 }
1989 for (int i = 0; i < n; i++) {
1990 mRecentWakeups.remove();
1991 }
1992
Christopher Tatee0a22b32013-07-11 14:43:13 -07001993 recordWakeupAlarms(mAlarmBatches, nowELAPSED, nowRTC);
Christopher Tate18a75f12013-07-01 18:18:59 -07001994 }
1995 }
1996
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07001997 boolean hasWakeup = triggerAlarmsLocked(triggerList, nowELAPSED, nowRTC);
1998 if (!hasWakeup && checkAllowNonWakeupDelayLocked(nowELAPSED)) {
1999 // if there are no wakeup alarms and the screen is off, we can
2000 // delay what we have so far until the future.
2001 if (mPendingNonWakeupAlarms.size() == 0) {
2002 mStartCurrentDelayTime = nowELAPSED;
2003 mNextNonWakeupDeliveryTime = nowELAPSED
2004 + ((currentNonWakeupFuzzLocked(nowELAPSED)*3)/2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002005 }
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07002006 mPendingNonWakeupAlarms.addAll(triggerList);
2007 mNumDelayedAlarms += triggerList.size();
2008 rescheduleKernelAlarmsLocked();
Adrian Roosc42a1e12014-07-07 23:35:53 +02002009 updateNextAlarmClockLocked();
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07002010 } else {
2011 // now deliver the alarm intents; if there are pending non-wakeup
2012 // alarms, we need to merge them in to the list. note we don't
2013 // just deliver them first because we generally want non-wakeup
2014 // alarms delivered after wakeup alarms.
2015 rescheduleKernelAlarmsLocked();
Adrian Roosc42a1e12014-07-07 23:35:53 +02002016 updateNextAlarmClockLocked();
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07002017 if (mPendingNonWakeupAlarms.size() > 0) {
Christopher Tate1590f1e2014-10-02 17:27:57 -07002018 calculateDeliveryPriorities(mPendingNonWakeupAlarms);
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07002019 triggerList.addAll(mPendingNonWakeupAlarms);
2020 Collections.sort(triggerList, mAlarmDispatchComparator);
2021 final long thisDelayTime = nowELAPSED - mStartCurrentDelayTime;
2022 mTotalDelayTime += thisDelayTime;
2023 if (mMaxDelayTime < thisDelayTime) {
2024 mMaxDelayTime = thisDelayTime;
2025 }
2026 mPendingNonWakeupAlarms.clear();
2027 }
2028 deliverAlarmsLocked(triggerList, nowELAPSED);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002029 }
2030 }
2031 }
2032 }
2033 }
Christopher Tatec4a07d12012-04-06 14:19:13 -07002034
David Christieebe51fc2013-07-26 13:23:29 -07002035 /**
2036 * Attribute blame for a WakeLock.
2037 * @param pi PendingIntent to attribute blame to if ws is null.
2038 * @param ws WorkSource to attribute blame.
2039 */
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07002040 void setWakelockWorkSource(PendingIntent pi, WorkSource ws, int type, String tag,
2041 boolean first) {
Christopher Tatec4a07d12012-04-06 14:19:13 -07002042 try {
Dianne Hackborna1bd7922014-03-21 11:07:11 -07002043 final boolean unimportant = pi == mTimeTickSender;
2044 mWakeLock.setUnimportantForLogging(unimportant);
Dianne Hackborn4590e522014-03-24 13:36:46 -07002045 if (first || mLastWakeLockUnimportantForLogging) {
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07002046 mWakeLock.setHistoryTag(tag);
Dianne Hackborn4590e522014-03-24 13:36:46 -07002047 } else {
2048 mWakeLock.setHistoryTag(null);
2049 }
2050 mLastWakeLockUnimportantForLogging = unimportant;
David Christieebe51fc2013-07-26 13:23:29 -07002051 if (ws != null) {
2052 mWakeLock.setWorkSource(ws);
2053 return;
2054 }
2055
Christopher Tatec4a07d12012-04-06 14:19:13 -07002056 final int uid = ActivityManagerNative.getDefault()
2057 .getUidForIntentSender(pi.getTarget());
2058 if (uid >= 0) {
2059 mWakeLock.setWorkSource(new WorkSource(uid));
2060 return;
2061 }
2062 } catch (Exception e) {
2063 }
2064
2065 // Something went wrong; fall back to attributing the lock to the OS
2066 mWakeLock.setWorkSource(null);
2067 }
2068
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002069 private class AlarmHandler extends Handler {
2070 public static final int ALARM_EVENT = 1;
2071 public static final int MINUTE_CHANGE_EVENT = 2;
2072 public static final int DATE_CHANGE_EVENT = 3;
Adrian Roosc42a1e12014-07-07 23:35:53 +02002073 public static final int SEND_NEXT_ALARM_CLOCK_CHANGED = 4;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002074
2075 public AlarmHandler() {
2076 }
2077
2078 public void handleMessage(Message msg) {
2079 if (msg.what == ALARM_EVENT) {
2080 ArrayList<Alarm> triggerList = new ArrayList<Alarm>();
2081 synchronized (mLock) {
2082 final long nowRTC = System.currentTimeMillis();
Christopher Tatee0a22b32013-07-11 14:43:13 -07002083 final long nowELAPSED = SystemClock.elapsedRealtime();
2084 triggerAlarmsLocked(triggerList, nowELAPSED, nowRTC);
Adrian Roosc42a1e12014-07-07 23:35:53 +02002085 updateNextAlarmClockLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002086 }
Adrian Roosc42a1e12014-07-07 23:35:53 +02002087
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002088 // now trigger the alarms without the lock held
Dianne Hackborn390517b2013-05-30 15:03:32 -07002089 for (int i=0; i<triggerList.size(); i++) {
2090 Alarm alarm = triggerList.get(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002091 try {
2092 alarm.operation.send();
2093 } catch (PendingIntent.CanceledException e) {
2094 if (alarm.repeatInterval > 0) {
2095 // This IntentSender is no longer valid, but this
2096 // is a repeating alarm, so toss the hoser.
Adam Lesinski182f73f2013-12-05 16:48:06 -08002097 removeImpl(alarm.operation);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002098 }
2099 }
2100 }
Adrian Roosc42a1e12014-07-07 23:35:53 +02002101 } else if (msg.what == SEND_NEXT_ALARM_CLOCK_CHANGED) {
2102 sendNextAlarmClockChanged();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002103 }
2104 }
2105 }
2106
2107 class ClockReceiver extends BroadcastReceiver {
2108 public ClockReceiver() {
2109 IntentFilter filter = new IntentFilter();
2110 filter.addAction(Intent.ACTION_TIME_TICK);
2111 filter.addAction(Intent.ACTION_DATE_CHANGED);
Adam Lesinski182f73f2013-12-05 16:48:06 -08002112 getContext().registerReceiver(this, filter);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002113 }
2114
2115 @Override
2116 public void onReceive(Context context, Intent intent) {
2117 if (intent.getAction().equals(Intent.ACTION_TIME_TICK)) {
Christopher Tate385e4982013-07-23 18:22:29 -07002118 if (DEBUG_BATCH) {
2119 Slog.v(TAG, "Received TIME_TICK alarm; rescheduling");
2120 }
2121 scheduleTimeTickEvent();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002122 } else if (intent.getAction().equals(Intent.ACTION_DATE_CHANGED)) {
2123 // Since the kernel does not keep track of DST, we need to
2124 // reset the TZ information at the beginning of each day
2125 // based off of the current Zone gmt offset + userspace tracked
2126 // daylight savings information.
2127 TimeZone zone = TimeZone.getTimeZone(SystemProperties.get(TIMEZONE_PROPERTY));
Lavettacn Xiaoc84cc4f2010-08-30 12:47:23 +02002128 int gmtOffset = zone.getOffset(System.currentTimeMillis());
Greg Hackmanna1d6f922013-12-09 16:56:53 -08002129 setKernelTimezone(mNativeData, -(gmtOffset / 60000));
Christopher Tate385e4982013-07-23 18:22:29 -07002130 scheduleDateChangedEvent();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002131 }
2132 }
2133
2134 public void scheduleTimeTickEvent() {
Paul Westbrook51608a52011-08-25 13:18:54 -07002135 final long currentTime = System.currentTimeMillis();
Sungmin Choi563914a2013-01-10 17:28:40 +09002136 final long nextTime = 60000 * ((currentTime / 60000) + 1);
Paul Westbrook51608a52011-08-25 13:18:54 -07002137
2138 // Schedule this event for the amount of time that it would take to get to
2139 // the top of the next minute.
Sungmin Choi563914a2013-01-10 17:28:40 +09002140 final long tickEventDelay = nextTime - currentTime;
Paul Westbrook51608a52011-08-25 13:18:54 -07002141
David Christieebe51fc2013-07-26 13:23:29 -07002142 final WorkSource workSource = null; // Let system take blame for time tick events.
Adam Lesinski182f73f2013-12-05 16:48:06 -08002143 setImpl(ELAPSED_REALTIME, SystemClock.elapsedRealtime() + tickEventDelay, 0,
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07002144 0, mTimeTickSender, AlarmManager.FLAG_STANDALONE, workSource, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002145 }
Christopher Tate385e4982013-07-23 18:22:29 -07002146
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002147 public void scheduleDateChangedEvent() {
2148 Calendar calendar = Calendar.getInstance();
2149 calendar.setTimeInMillis(System.currentTimeMillis());
2150 calendar.set(Calendar.HOUR, 0);
2151 calendar.set(Calendar.MINUTE, 0);
2152 calendar.set(Calendar.SECOND, 0);
2153 calendar.set(Calendar.MILLISECOND, 0);
2154 calendar.add(Calendar.DAY_OF_MONTH, 1);
David Christieebe51fc2013-07-26 13:23:29 -07002155
2156 final WorkSource workSource = null; // Let system take blame for date change events.
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07002157 setImpl(RTC, calendar.getTimeInMillis(), 0, 0, mDateChangeSender,
2158 AlarmManager.FLAG_STANDALONE, workSource, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002159 }
2160 }
2161
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07002162 class InteractiveStateReceiver extends BroadcastReceiver {
2163 public InteractiveStateReceiver() {
2164 IntentFilter filter = new IntentFilter();
2165 filter.addAction(Intent.ACTION_SCREEN_OFF);
2166 filter.addAction(Intent.ACTION_SCREEN_ON);
2167 filter.setPriority(IntentFilter.SYSTEM_HIGH_PRIORITY);
2168 getContext().registerReceiver(this, filter);
2169 }
2170
2171 @Override
2172 public void onReceive(Context context, Intent intent) {
2173 synchronized (mLock) {
2174 interactiveStateChangedLocked(Intent.ACTION_SCREEN_ON.equals(intent.getAction()));
2175 }
2176 }
2177 }
2178
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002179 class UninstallReceiver extends BroadcastReceiver {
2180 public UninstallReceiver() {
2181 IntentFilter filter = new IntentFilter();
2182 filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
2183 filter.addAction(Intent.ACTION_PACKAGE_RESTARTED);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002184 filter.addAction(Intent.ACTION_QUERY_PACKAGE_RESTART);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002185 filter.addDataScheme("package");
Adam Lesinski182f73f2013-12-05 16:48:06 -08002186 getContext().registerReceiver(this, filter);
Suchi Amalapurapu08675a32010-01-28 09:57:30 -08002187 // Register for events related to sdcard installation.
2188 IntentFilter sdFilter = new IntentFilter();
Suchi Amalapurapub56ae202010-02-04 22:51:07 -08002189 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002190 sdFilter.addAction(Intent.ACTION_USER_STOPPED);
Adam Lesinski182f73f2013-12-05 16:48:06 -08002191 getContext().registerReceiver(this, sdFilter);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002192 }
2193
2194 @Override
2195 public void onReceive(Context context, Intent intent) {
2196 synchronized (mLock) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -08002197 String action = intent.getAction();
2198 String pkgList[] = null;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002199 if (Intent.ACTION_QUERY_PACKAGE_RESTART.equals(action)) {
2200 pkgList = intent.getStringArrayExtra(Intent.EXTRA_PACKAGES);
2201 for (String packageName : pkgList) {
2202 if (lookForPackageLocked(packageName)) {
2203 setResultCode(Activity.RESULT_OK);
2204 return;
2205 }
2206 }
2207 return;
2208 } else if (Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE.equals(action)) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -08002209 pkgList = intent.getStringArrayExtra(Intent.EXTRA_CHANGED_PACKAGE_LIST);
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002210 } else if (Intent.ACTION_USER_STOPPED.equals(action)) {
2211 int userHandle = intent.getIntExtra(Intent.EXTRA_USER_HANDLE, -1);
2212 if (userHandle >= 0) {
2213 removeUserLocked(userHandle);
2214 }
Suchi Amalapurapu08675a32010-01-28 09:57:30 -08002215 } else {
Dianne Hackborn409578f2010-03-10 17:23:43 -08002216 if (Intent.ACTION_PACKAGE_REMOVED.equals(action)
2217 && intent.getBooleanExtra(Intent.EXTRA_REPLACING, false)) {
2218 // This package is being updated; don't kill its alarms.
2219 return;
2220 }
Suchi Amalapurapu08675a32010-01-28 09:57:30 -08002221 Uri data = intent.getData();
2222 if (data != null) {
2223 String pkg = data.getSchemeSpecificPart();
2224 if (pkg != null) {
2225 pkgList = new String[]{pkg};
2226 }
2227 }
2228 }
2229 if (pkgList != null && (pkgList.length > 0)) {
2230 for (String pkg : pkgList) {
2231 removeLocked(pkg);
Christopher Tate1590f1e2014-10-02 17:27:57 -07002232 mPriorities.remove(pkg);
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08002233 for (int i=mBroadcastStats.size()-1; i>=0; i--) {
2234 ArrayMap<String, BroadcastStats> uidStats = mBroadcastStats.valueAt(i);
2235 if (uidStats.remove(pkg) != null) {
2236 if (uidStats.size() <= 0) {
2237 mBroadcastStats.removeAt(i);
2238 }
2239 }
2240 }
Suchi Amalapurapu08675a32010-01-28 09:57:30 -08002241 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002242 }
2243 }
2244 }
2245 }
2246
2247 private final BroadcastStats getStatsLocked(PendingIntent pi) {
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08002248 String pkg = pi.getCreatorPackage();
2249 int uid = pi.getCreatorUid();
2250 ArrayMap<String, BroadcastStats> uidStats = mBroadcastStats.get(uid);
2251 if (uidStats == null) {
2252 uidStats = new ArrayMap<String, BroadcastStats>();
2253 mBroadcastStats.put(uid, uidStats);
2254 }
2255 BroadcastStats bs = uidStats.get(pkg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002256 if (bs == null) {
Dianne Hackborn3d658bf2014-02-05 13:38:56 -08002257 bs = new BroadcastStats(uid, pkg);
2258 uidStats.put(pkg, bs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002259 }
2260 return bs;
2261 }
Dianne Hackborn81038902012-11-26 17:04:09 -08002262
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002263 class ResultReceiver implements PendingIntent.OnFinished {
2264 public void onSendFinished(PendingIntent pi, Intent intent, int resultCode,
2265 String resultData, Bundle resultExtras) {
2266 synchronized (mLock) {
Dianne Hackborn81038902012-11-26 17:04:09 -08002267 InFlight inflight = null;
2268 for (int i=0; i<mInFlight.size(); i++) {
2269 if (mInFlight.get(i).mPendingIntent == pi) {
2270 inflight = mInFlight.remove(i);
2271 break;
2272 }
2273 }
2274 if (inflight != null) {
2275 final long nowELAPSED = SystemClock.elapsedRealtime();
2276 BroadcastStats bs = inflight.mBroadcastStats;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002277 bs.nesting--;
2278 if (bs.nesting <= 0) {
2279 bs.nesting = 0;
Dianne Hackborn81038902012-11-26 17:04:09 -08002280 bs.aggregateTime += nowELAPSED - bs.startTime;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002281 }
Dianne Hackborn81038902012-11-26 17:04:09 -08002282 FilterStats fs = inflight.mFilterStats;
2283 fs.nesting--;
2284 if (fs.nesting <= 0) {
2285 fs.nesting = 0;
2286 fs.aggregateTime += nowELAPSED - fs.startTime;
2287 }
Dianne Hackborn1e383822015-04-10 14:02:33 -07002288 if (RECORD_ALARMS_IN_HISTORY) {
2289 if (inflight.mWorkSource != null && inflight.mWorkSource.size() > 0) {
2290 for (int wi=0; wi<inflight.mWorkSource.size(); wi++) {
2291 ActivityManagerNative.noteAlarmFinish(
2292 pi, inflight.mWorkSource.get(wi), inflight.mTag);
2293 }
2294 } else {
2295 ActivityManagerNative.noteAlarmFinish(
2296 pi, -1, inflight.mTag);
2297 }
2298 }
Dianne Hackborn81038902012-11-26 17:04:09 -08002299 } else {
2300 mLog.w("No in-flight alarm for " + pi + " " + intent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002301 }
2302 mBroadcastRefCount--;
2303 if (mBroadcastRefCount == 0) {
2304 mWakeLock.release();
Dianne Hackborn81038902012-11-26 17:04:09 -08002305 if (mInFlight.size() > 0) {
2306 mLog.w("Finished all broadcasts with " + mInFlight.size()
2307 + " remaining inflights");
2308 for (int i=0; i<mInFlight.size(); i++) {
2309 mLog.w(" Remaining #" + i + ": " + mInFlight.get(i));
2310 }
2311 mInFlight.clear();
2312 }
Christopher Tatec4a07d12012-04-06 14:19:13 -07002313 } else {
2314 // the next of our alarms is now in flight. reattribute the wakelock.
Dianne Hackborn81038902012-11-26 17:04:09 -08002315 if (mInFlight.size() > 0) {
David Christieebe51fc2013-07-26 13:23:29 -07002316 InFlight inFlight = mInFlight.get(0);
Dianne Hackborne5167ca2014-03-08 14:39:10 -08002317 setWakelockWorkSource(inFlight.mPendingIntent, inFlight.mWorkSource,
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07002318 inFlight.mAlarmType, inFlight.mTag, false);
Christopher Tatec4a07d12012-04-06 14:19:13 -07002319 } else {
2320 // should never happen
Dianne Hackborn81038902012-11-26 17:04:09 -08002321 mLog.w("Alarm wakelock still held but sent queue empty");
Christopher Tatec4a07d12012-04-06 14:19:13 -07002322 mWakeLock.setWorkSource(null);
2323 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002324 }
2325 }
2326 }
2327 }
2328}