blob: 4ecdfed687c3ded5ee248a89d1cb1ceebc58ca41 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server;
18
Joe Onorato18e69df2010-05-17 22:26:12 -070019import com.android.internal.statusbar.StatusBarNotification;
svetoslavganov75986cf2009-05-14 22:28:01 -070020
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080021import android.app.ActivityManagerNative;
22import android.app.IActivityManager;
23import android.app.INotificationManager;
24import android.app.ITransientNotification;
25import android.app.Notification;
Dianne Hackborn1dac2772009-06-26 18:16:48 -070026import android.app.NotificationManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027import android.app.PendingIntent;
28import android.app.StatusBarManager;
29import android.content.BroadcastReceiver;
Dianne Hackborn1dac2772009-06-26 18:16:48 -070030import android.content.ContentResolver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031import android.content.Context;
32import android.content.Intent;
33import android.content.IntentFilter;
Dianne Hackbornd8a43f62009-08-17 23:33:56 -070034import android.content.pm.ApplicationInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035import android.content.pm.PackageManager;
36import android.content.pm.PackageManager.NameNotFoundException;
37import android.content.res.Resources;
Dianne Hackborn1dac2772009-06-26 18:16:48 -070038import android.database.ContentObserver;
svetoslavganov75986cf2009-05-14 22:28:01 -070039import android.media.AudioManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040import android.net.Uri;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041import android.os.Binder;
Andy Stadler110988c2010-12-03 14:29:16 -080042import android.os.Bundle;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043import android.os.Handler;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044import android.os.IBinder;
45import android.os.Message;
Dianne Hackbornd8a43f62009-08-17 23:33:56 -070046import android.os.Process;
svetoslavganov75986cf2009-05-14 22:28:01 -070047import android.os.RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080048import android.os.Vibrator;
49import android.provider.Settings;
Daniel Sandlere96ffb12010-03-11 13:38:06 -050050import android.telephony.TelephonyManager;
svetoslavganov75986cf2009-05-14 22:28:01 -070051import android.text.TextUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052import android.util.EventLog;
53import android.util.Log;
Andy Stadler110988c2010-12-03 14:29:16 -080054import android.util.Slog;
svetoslavganov75986cf2009-05-14 22:28:01 -070055import android.view.accessibility.AccessibilityEvent;
56import android.view.accessibility.AccessibilityManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080057import android.widget.Toast;
58
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059import java.io.FileDescriptor;
60import java.io.PrintWriter;
61import java.util.ArrayList;
62import java.util.Arrays;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080063
Daniel Sandlerd0a2f862010-08-03 15:29:31 -040064/** {@hide} */
65public class NotificationManagerService extends INotificationManager.Stub
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080066{
67 private static final String TAG = "NotificationService";
68 private static final boolean DBG = false;
69
Joe Onoratobd73d012010-06-04 11:44:54 -070070 private static final int MAX_PACKAGE_NOTIFICATIONS = 50;
71
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080072 // message codes
73 private static final int MESSAGE_TIMEOUT = 2;
74
75 private static final int LONG_DELAY = 3500; // 3.5 seconds
76 private static final int SHORT_DELAY = 2000; // 2 seconds
Doug Zongkerab5c49c2009-12-04 10:31:43 -080077
78 private static final long[] DEFAULT_VIBRATE_PATTERN = {0, 250, 250, 250};
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080079
80 private static final int DEFAULT_STREAM_TYPE = AudioManager.STREAM_NOTIFICATION;
81
82 final Context mContext;
83 final IActivityManager mAm;
84 final IBinder mForegroundToken = new Binder();
85
86 private WorkerHandler mHandler;
Joe Onorato089de882010-04-12 08:18:45 -070087 private StatusBarManagerService mStatusBar;
Mike Lockwood3cb67a32009-11-27 14:25:58 -050088 private LightsService.Light mNotificationLight;
89 private LightsService.Light mAttentionLight;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080090
Mike Lockwood670f9322010-01-20 12:13:36 -050091 private int mDefaultNotificationColor;
92 private int mDefaultNotificationLedOn;
93 private int mDefaultNotificationLedOff;
94
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080095 private NotificationRecord mSoundNotification;
Jean-Michel Trivi211957f2010-03-26 18:19:33 -070096 private NotificationPlayer mSound;
Joe Onorato30275482009-07-08 17:09:14 -070097 private boolean mSystemReady;
Joe Onorato39f5b6a2009-07-23 12:29:19 -040098 private int mDisabledNotifications;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080099
100 private NotificationRecord mVibrateNotification;
101 private Vibrator mVibrator = new Vibrator();
102
Mike Lockwoodc22404a2009-12-02 11:15:02 -0500103 // for enabling and disabling notification pulse behavior
104 private boolean mScreenOn = true;
Daniel Sandlere96ffb12010-03-11 13:38:06 -0500105 private boolean mInCall = false;
Mike Lockwoodc22404a2009-12-02 11:15:02 -0500106 private boolean mNotificationPulseEnabled;
Mike Lockwood2117f6f2010-09-09 09:48:08 -0400107 // This is true if we have received a new notification while the screen is off
108 // (that is, if mLedNotification was set while the screen was off)
109 // This is reset to false when the screen is turned on.
110 private boolean mPendingPulseNotification;
Mike Lockwoodc22404a2009-12-02 11:15:02 -0500111
Fred Quintana6ecaff12009-09-25 14:23:13 -0700112 private final ArrayList<NotificationRecord> mNotificationList =
113 new ArrayList<NotificationRecord>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800114
115 private ArrayList<ToastRecord> mToastQueue;
116
117 private ArrayList<NotificationRecord> mLights = new ArrayList<NotificationRecord>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800118 private NotificationRecord mLedNotification;
svetoslavganov75986cf2009-05-14 22:28:01 -0700119
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800120 private static String idDebugString(Context baseContext, String packageName, int id) {
121 Context c = null;
122
123 if (packageName != null) {
124 try {
125 c = baseContext.createPackageContext(packageName, 0);
126 } catch (NameNotFoundException e) {
127 c = baseContext;
128 }
129 } else {
130 c = baseContext;
131 }
132
133 String pkg;
134 String type;
135 String name;
136
137 Resources r = c.getResources();
138 try {
139 return r.getResourceName(id);
140 } catch (Resources.NotFoundException e) {
141 return "<name unknown>";
142 }
143 }
144
145 private static final class NotificationRecord
146 {
Fred Quintana6ecaff12009-09-25 14:23:13 -0700147 final String pkg;
148 final String tag;
149 final int id;
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -0700150 final int uid;
151 final int initialPid;
Daniel Sandlere40451a2011-02-03 14:51:35 -0500152 final int priority;
Fred Quintana6ecaff12009-09-25 14:23:13 -0700153 final Notification notification;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154 IBinder statusBarKey;
155
Daniel Sandlere40451a2011-02-03 14:51:35 -0500156 NotificationRecord(String pkg, String tag, int id, int uid, int initialPid, int priority,
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -0700157 Notification notification)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800158 {
159 this.pkg = pkg;
Fred Quintana6ecaff12009-09-25 14:23:13 -0700160 this.tag = tag;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800161 this.id = id;
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -0700162 this.uid = uid;
163 this.initialPid = initialPid;
Daniel Sandlere40451a2011-02-03 14:51:35 -0500164 this.priority = priority;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800165 this.notification = notification;
166 }
Fred Quintana6ecaff12009-09-25 14:23:13 -0700167
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800168 void dump(PrintWriter pw, String prefix, Context baseContext) {
169 pw.println(prefix + this);
170 pw.println(prefix + " icon=0x" + Integer.toHexString(notification.icon)
171 + " / " + idDebugString(baseContext, this.pkg, notification.icon));
172 pw.println(prefix + " contentIntent=" + notification.contentIntent);
173 pw.println(prefix + " deleteIntent=" + notification.deleteIntent);
174 pw.println(prefix + " tickerText=" + notification.tickerText);
175 pw.println(prefix + " contentView=" + notification.contentView);
176 pw.println(prefix + " defaults=0x" + Integer.toHexString(notification.defaults));
177 pw.println(prefix + " flags=0x" + Integer.toHexString(notification.flags));
178 pw.println(prefix + " sound=" + notification.sound);
179 pw.println(prefix + " vibrate=" + Arrays.toString(notification.vibrate));
180 pw.println(prefix + " ledARGB=0x" + Integer.toHexString(notification.ledARGB)
181 + " ledOnMS=" + notification.ledOnMS
182 + " ledOffMS=" + notification.ledOffMS);
183 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800184
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800185 @Override
186 public final String toString()
187 {
188 return "NotificationRecord{"
189 + Integer.toHexString(System.identityHashCode(this))
190 + " pkg=" + pkg
Fred Quintana6ecaff12009-09-25 14:23:13 -0700191 + " id=" + Integer.toHexString(id)
Daniel Sandlere40451a2011-02-03 14:51:35 -0500192 + " tag=" + tag
193 + " pri=" + priority
194 + "}";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800195 }
196 }
197
198 private static final class ToastRecord
199 {
200 final int pid;
201 final String pkg;
202 final ITransientNotification callback;
203 int duration;
204
205 ToastRecord(int pid, String pkg, ITransientNotification callback, int duration)
206 {
207 this.pid = pid;
208 this.pkg = pkg;
209 this.callback = callback;
210 this.duration = duration;
211 }
212
213 void update(int duration) {
214 this.duration = duration;
215 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800216
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800217 void dump(PrintWriter pw, String prefix) {
218 pw.println(prefix + this);
219 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800220
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800221 @Override
222 public final String toString()
223 {
224 return "ToastRecord{"
225 + Integer.toHexString(System.identityHashCode(this))
226 + " pkg=" + pkg
227 + " callback=" + callback
228 + " duration=" + duration;
229 }
230 }
231
Joe Onorato089de882010-04-12 08:18:45 -0700232 private StatusBarManagerService.NotificationCallbacks mNotificationCallbacks
233 = new StatusBarManagerService.NotificationCallbacks() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800234
235 public void onSetDisabled(int status) {
236 synchronized (mNotificationList) {
237 mDisabledNotifications = status;
238 if ((mDisabledNotifications & StatusBarManager.DISABLE_NOTIFICATION_ALERTS) != 0) {
239 // cancel whatever's going on
240 long identity = Binder.clearCallingIdentity();
241 try {
242 mSound.stop();
243 }
244 finally {
245 Binder.restoreCallingIdentity(identity);
246 }
247
248 identity = Binder.clearCallingIdentity();
249 try {
250 mVibrator.cancel();
251 }
252 finally {
253 Binder.restoreCallingIdentity(identity);
254 }
255 }
256 }
257 }
258
259 public void onClearAll() {
260 cancelAll();
261 }
262
Fred Quintana6ecaff12009-09-25 14:23:13 -0700263 public void onNotificationClick(String pkg, String tag, int id) {
264 cancelNotification(pkg, tag, id, Notification.FLAG_AUTO_CANCEL,
Joe Onorato46439ce2010-11-19 13:56:21 -0800265 Notification.FLAG_FOREGROUND_SERVICE, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800266 }
267
Daniel Sandler0f0b11c2010-08-04 15:54:58 -0400268 public void onNotificationClear(String pkg, String tag, int id) {
Joe Onorato46439ce2010-11-19 13:56:21 -0800269 cancelNotification(pkg, tag, id, 0,
270 Notification.FLAG_ONGOING_EVENT | Notification.FLAG_FOREGROUND_SERVICE,
271 true);
Daniel Sandler0f0b11c2010-08-04 15:54:58 -0400272 }
273
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800274 public void onPanelRevealed() {
275 synchronized (mNotificationList) {
276 // sound
277 mSoundNotification = null;
278 long identity = Binder.clearCallingIdentity();
279 try {
280 mSound.stop();
281 }
282 finally {
283 Binder.restoreCallingIdentity(identity);
284 }
285
286 // vibrate
287 mVibrateNotification = null;
288 identity = Binder.clearCallingIdentity();
289 try {
290 mVibrator.cancel();
291 }
292 finally {
293 Binder.restoreCallingIdentity(identity);
294 }
295
296 // light
297 mLights.clear();
298 mLedNotification = null;
299 updateLightsLocked();
300 }
301 }
Joe Onorato005847b2010-06-04 16:08:02 -0400302
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -0700303 public void onNotificationError(String pkg, String tag, int id,
304 int uid, int initialPid, String message) {
Daniel Sandlerd0a2f862010-08-03 15:29:31 -0400305 Slog.d(TAG, "onNotification error pkg=" + pkg + " tag=" + tag + " id=" + id
306 + "; will crashApplication(uid=" + uid + ", pid=" + initialPid + ")");
Joe Onorato46439ce2010-11-19 13:56:21 -0800307 cancelNotification(pkg, tag, id, 0, 0, false);
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -0700308 long ident = Binder.clearCallingIdentity();
309 try {
310 ActivityManagerNative.getDefault().crashApplication(uid, initialPid, pkg,
311 "Bad notification posted from package " + pkg
312 + ": " + message);
313 } catch (RemoteException e) {
314 }
315 Binder.restoreCallingIdentity(ident);
Joe Onorato005847b2010-06-04 16:08:02 -0400316 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800317 };
318
319 private BroadcastReceiver mIntentReceiver = new BroadcastReceiver() {
320 @Override
321 public void onReceive(Context context, Intent intent) {
322 String action = intent.getAction();
323
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800324 boolean queryRestart = false;
325
Mike Lockwood541c9942011-06-12 19:35:45 -0400326 if (action.equals(Intent.ACTION_PACKAGE_REMOVED)
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800327 || action.equals(Intent.ACTION_PACKAGE_RESTARTED)
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800328 || (queryRestart=action.equals(Intent.ACTION_QUERY_PACKAGE_RESTART))
Suchi Amalapurapub56ae202010-02-04 22:51:07 -0800329 || action.equals(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE)) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800330 String pkgList[] = null;
Suchi Amalapurapub56ae202010-02-04 22:51:07 -0800331 if (action.equals(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE)) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800332 pkgList = intent.getStringArrayExtra(Intent.EXTRA_CHANGED_PACKAGE_LIST);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800333 } else if (queryRestart) {
334 pkgList = intent.getStringArrayExtra(Intent.EXTRA_PACKAGES);
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800335 } else {
336 Uri uri = intent.getData();
337 if (uri == null) {
338 return;
339 }
340 String pkgName = uri.getSchemeSpecificPart();
341 if (pkgName == null) {
342 return;
343 }
344 pkgList = new String[]{pkgName};
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800345 }
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800346 if (pkgList != null && (pkgList.length > 0)) {
347 for (String pkgName : pkgList) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800348 cancelAllNotificationsInt(pkgName, 0, 0, !queryRestart);
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800349 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800350 }
Mike Lockwoodc22404a2009-12-02 11:15:02 -0500351 } else if (action.equals(Intent.ACTION_SCREEN_ON)) {
352 mScreenOn = true;
353 updateNotificationPulse();
354 } else if (action.equals(Intent.ACTION_SCREEN_OFF)) {
355 mScreenOn = false;
356 updateNotificationPulse();
Daniel Sandlere96ffb12010-03-11 13:38:06 -0500357 } else if (action.equals(TelephonyManager.ACTION_PHONE_STATE_CHANGED)) {
358 mInCall = (intent.getStringExtra(TelephonyManager.EXTRA_STATE).equals(TelephonyManager.EXTRA_STATE_OFFHOOK));
359 updateNotificationPulse();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800360 }
361 }
362 };
363
Dianne Hackborn1dac2772009-06-26 18:16:48 -0700364 class SettingsObserver extends ContentObserver {
365 SettingsObserver(Handler handler) {
366 super(handler);
367 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800368
Dianne Hackborn1dac2772009-06-26 18:16:48 -0700369 void observe() {
370 ContentResolver resolver = mContext.getContentResolver();
Mike Lockwoodc22404a2009-12-02 11:15:02 -0500371 resolver.registerContentObserver(Settings.System.getUriFor(
372 Settings.System.NOTIFICATION_LIGHT_PULSE), false, this);
Dianne Hackborn1dac2772009-06-26 18:16:48 -0700373 update();
374 }
375
376 @Override public void onChange(boolean selfChange) {
377 update();
378 }
379
380 public void update() {
381 ContentResolver resolver = mContext.getContentResolver();
Mike Lockwoodc22404a2009-12-02 11:15:02 -0500382 boolean pulseEnabled = Settings.System.getInt(resolver,
383 Settings.System.NOTIFICATION_LIGHT_PULSE, 0) != 0;
384 if (mNotificationPulseEnabled != pulseEnabled) {
385 mNotificationPulseEnabled = pulseEnabled;
386 updateNotificationPulse();
387 }
Dianne Hackborn1dac2772009-06-26 18:16:48 -0700388 }
389 }
Mike Lockwoodc22404a2009-12-02 11:15:02 -0500390
Joe Onorato089de882010-04-12 08:18:45 -0700391 NotificationManagerService(Context context, StatusBarManagerService statusBar,
Mike Lockwood3a322132009-11-24 00:30:52 -0500392 LightsService lights)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800393 {
394 super();
395 mContext = context;
396 mAm = ActivityManagerNative.getDefault();
Jean-Michel Trivi211957f2010-03-26 18:19:33 -0700397 mSound = new NotificationPlayer(TAG);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800398 mSound.setUsesWakeLock(context);
399 mToastQueue = new ArrayList<ToastRecord>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800400 mHandler = new WorkerHandler();
San Mehat3ee13172010-02-04 20:54:43 -0800401
Joe Onorato089de882010-04-12 08:18:45 -0700402 mStatusBar = statusBar;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800403 statusBar.setNotificationCallbacks(mNotificationCallbacks);
404
Mike Lockwood3cb67a32009-11-27 14:25:58 -0500405 mNotificationLight = lights.getLight(LightsService.LIGHT_ID_NOTIFICATIONS);
406 mAttentionLight = lights.getLight(LightsService.LIGHT_ID_ATTENTION);
407
Mike Lockwood670f9322010-01-20 12:13:36 -0500408 Resources resources = mContext.getResources();
409 mDefaultNotificationColor = resources.getColor(
410 com.android.internal.R.color.config_defaultNotificationColor);
411 mDefaultNotificationLedOn = resources.getInteger(
412 com.android.internal.R.integer.config_defaultNotificationLedOn);
413 mDefaultNotificationLedOff = resources.getInteger(
414 com.android.internal.R.integer.config_defaultNotificationLedOff);
415
Joe Onorato39f5b6a2009-07-23 12:29:19 -0400416 // Don't start allowing notifications until the setup wizard has run once.
417 // After that, including subsequent boots, init with notifications turned on.
418 // This works on the first boot because the setup wizard will toggle this
419 // flag at least once and we'll go back to 0 after that.
420 if (0 == Settings.Secure.getInt(mContext.getContentResolver(),
421 Settings.Secure.DEVICE_PROVISIONED, 0)) {
422 mDisabledNotifications = StatusBarManager.DISABLE_NOTIFICATION_ALERTS;
423 }
424
Mike Lockwood35e16bf2010-11-30 19:53:36 -0500425 // register for various Intents
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800426 IntentFilter filter = new IntentFilter();
Mike Lockwoodc22404a2009-12-02 11:15:02 -0500427 filter.addAction(Intent.ACTION_SCREEN_ON);
428 filter.addAction(Intent.ACTION_SCREEN_OFF);
Daniel Sandlere96ffb12010-03-11 13:38:06 -0500429 filter.addAction(TelephonyManager.ACTION_PHONE_STATE_CHANGED);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800430 mContext.registerReceiver(mIntentReceiver, filter);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800431 IntentFilter pkgFilter = new IntentFilter();
432 pkgFilter.addAction(Intent.ACTION_PACKAGE_REMOVED);
433 pkgFilter.addAction(Intent.ACTION_PACKAGE_RESTARTED);
434 pkgFilter.addAction(Intent.ACTION_QUERY_PACKAGE_RESTART);
435 pkgFilter.addDataScheme("package");
436 mContext.registerReceiver(mIntentReceiver, pkgFilter);
Suchi Amalapurapub56ae202010-02-04 22:51:07 -0800437 IntentFilter sdFilter = new IntentFilter(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800438 mContext.registerReceiver(mIntentReceiver, sdFilter);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800439
Mike Lockwoodc22404a2009-12-02 11:15:02 -0500440 SettingsObserver observer = new SettingsObserver(mHandler);
441 observer.observe();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800442 }
443
Joe Onorato30275482009-07-08 17:09:14 -0700444 void systemReady() {
445 // no beeping until we're basically done booting
446 mSystemReady = true;
447 }
448
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800449 // Toasts
450 // ============================================================================
451 public void enqueueToast(String pkg, ITransientNotification callback, int duration)
452 {
Daniel Sandlera7035902010-03-30 15:45:31 -0400453 if (DBG) Slog.i(TAG, "enqueueToast pkg=" + pkg + " callback=" + callback + " duration=" + duration);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800454
455 if (pkg == null || callback == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800456 Slog.e(TAG, "Not doing toast. pkg=" + pkg + " callback=" + callback);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800457 return ;
458 }
459
460 synchronized (mToastQueue) {
461 int callingPid = Binder.getCallingPid();
462 long callingId = Binder.clearCallingIdentity();
463 try {
464 ToastRecord record;
465 int index = indexOfToastLocked(pkg, callback);
466 // If it's already in the queue, we update it in place, we don't
467 // move it to the end of the queue.
468 if (index >= 0) {
469 record = mToastQueue.get(index);
470 record.update(duration);
471 } else {
472 record = new ToastRecord(callingPid, pkg, callback, duration);
473 mToastQueue.add(record);
474 index = mToastQueue.size() - 1;
475 keepProcessAliveLocked(callingPid);
476 }
477 // If it's at index 0, it's the current toast. It doesn't matter if it's
478 // new or just been updated. Call back and tell it to show itself.
479 // If the callback fails, this will remove it from the list, so don't
480 // assume that it's valid after this.
481 if (index == 0) {
482 showNextToastLocked();
483 }
484 } finally {
485 Binder.restoreCallingIdentity(callingId);
486 }
487 }
488 }
489
490 public void cancelToast(String pkg, ITransientNotification callback) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800491 Slog.i(TAG, "cancelToast pkg=" + pkg + " callback=" + callback);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800492
493 if (pkg == null || callback == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800494 Slog.e(TAG, "Not cancelling notification. pkg=" + pkg + " callback=" + callback);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800495 return ;
496 }
497
498 synchronized (mToastQueue) {
499 long callingId = Binder.clearCallingIdentity();
500 try {
501 int index = indexOfToastLocked(pkg, callback);
502 if (index >= 0) {
503 cancelToastLocked(index);
504 } else {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800505 Slog.w(TAG, "Toast already cancelled. pkg=" + pkg + " callback=" + callback);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800506 }
507 } finally {
508 Binder.restoreCallingIdentity(callingId);
509 }
510 }
511 }
512
513 private void showNextToastLocked() {
514 ToastRecord record = mToastQueue.get(0);
515 while (record != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800516 if (DBG) Slog.d(TAG, "Show pkg=" + record.pkg + " callback=" + record.callback);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800517 try {
518 record.callback.show();
519 scheduleTimeoutLocked(record, false);
520 return;
521 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800522 Slog.w(TAG, "Object died trying to show notification " + record.callback
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800523 + " in package " + record.pkg);
524 // remove it from the list and let the process die
525 int index = mToastQueue.indexOf(record);
526 if (index >= 0) {
527 mToastQueue.remove(index);
528 }
529 keepProcessAliveLocked(record.pid);
530 if (mToastQueue.size() > 0) {
531 record = mToastQueue.get(0);
532 } else {
533 record = null;
534 }
535 }
536 }
537 }
538
539 private void cancelToastLocked(int index) {
540 ToastRecord record = mToastQueue.get(index);
541 try {
542 record.callback.hide();
543 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800544 Slog.w(TAG, "Object died trying to hide notification " + record.callback
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800545 + " in package " + record.pkg);
546 // don't worry about this, we're about to remove it from
547 // the list anyway
548 }
549 mToastQueue.remove(index);
550 keepProcessAliveLocked(record.pid);
551 if (mToastQueue.size() > 0) {
552 // Show the next one. If the callback fails, this will remove
553 // it from the list, so don't assume that the list hasn't changed
554 // after this point.
555 showNextToastLocked();
556 }
557 }
558
559 private void scheduleTimeoutLocked(ToastRecord r, boolean immediate)
560 {
561 Message m = Message.obtain(mHandler, MESSAGE_TIMEOUT, r);
562 long delay = immediate ? 0 : (r.duration == Toast.LENGTH_LONG ? LONG_DELAY : SHORT_DELAY);
563 mHandler.removeCallbacksAndMessages(r);
564 mHandler.sendMessageDelayed(m, delay);
565 }
566
567 private void handleTimeout(ToastRecord record)
568 {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800569 if (DBG) Slog.d(TAG, "Timeout pkg=" + record.pkg + " callback=" + record.callback);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800570 synchronized (mToastQueue) {
571 int index = indexOfToastLocked(record.pkg, record.callback);
572 if (index >= 0) {
573 cancelToastLocked(index);
574 }
575 }
576 }
577
578 // lock on mToastQueue
579 private int indexOfToastLocked(String pkg, ITransientNotification callback)
580 {
581 IBinder cbak = callback.asBinder();
582 ArrayList<ToastRecord> list = mToastQueue;
583 int len = list.size();
584 for (int i=0; i<len; i++) {
585 ToastRecord r = list.get(i);
586 if (r.pkg.equals(pkg) && r.callback.asBinder() == cbak) {
587 return i;
588 }
589 }
590 return -1;
591 }
592
593 // lock on mToastQueue
594 private void keepProcessAliveLocked(int pid)
595 {
596 int toastCount = 0; // toasts from this pid
597 ArrayList<ToastRecord> list = mToastQueue;
598 int N = list.size();
599 for (int i=0; i<N; i++) {
600 ToastRecord r = list.get(i);
601 if (r.pid == pid) {
602 toastCount++;
603 }
604 }
605 try {
606 mAm.setProcessForeground(mForegroundToken, pid, toastCount > 0);
607 } catch (RemoteException e) {
608 // Shouldn't happen.
609 }
610 }
611
612 private final class WorkerHandler extends Handler
613 {
614 @Override
615 public void handleMessage(Message msg)
616 {
617 switch (msg.what)
618 {
619 case MESSAGE_TIMEOUT:
620 handleTimeout((ToastRecord)msg.obj);
621 break;
622 }
623 }
624 }
625
626
627 // Notifications
628 // ============================================================================
Andy Stadler110988c2010-12-03 14:29:16 -0800629 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800630 public void enqueueNotification(String pkg, int id, Notification notification, int[] idOut)
631 {
Fred Quintana6ecaff12009-09-25 14:23:13 -0700632 enqueueNotificationWithTag(pkg, null /* tag */, id, notification, idOut);
633 }
634
Daniel Sandlerd0a2f862010-08-03 15:29:31 -0400635 public void enqueueNotificationWithTag(String pkg, String tag, int id, Notification notification,
636 int[] idOut)
Fred Quintana6ecaff12009-09-25 14:23:13 -0700637 {
Daniel Sandlerd0a2f862010-08-03 15:29:31 -0400638 enqueueNotificationInternal(pkg, Binder.getCallingUid(), Binder.getCallingPid(),
639 tag, id, notification, idOut);
640 }
641
Daniel Sandlere40451a2011-02-03 14:51:35 -0500642 public void enqueueNotificationWithTagPriority(String pkg, String tag, int id, int priority,
643 Notification notification, int[] idOut)
644 {
645 enqueueNotificationInternal(pkg, Binder.getCallingUid(), Binder.getCallingPid(),
646 tag, id, priority, notification, idOut);
647 }
648
Daniel Sandlerd0a2f862010-08-03 15:29:31 -0400649 // Not exposed via Binder; for system use only (otherwise malicious apps could spoof the
650 // uid/pid of another application)
651 public void enqueueNotificationInternal(String pkg, int callingUid, int callingPid,
652 String tag, int id, Notification notification, int[] idOut)
653 {
Daniel Sandlere40451a2011-02-03 14:51:35 -0500654 enqueueNotificationInternal(pkg, callingUid, callingPid, tag, id,
655 ((notification.flags & Notification.FLAG_ONGOING_EVENT) != 0)
656 ? StatusBarNotification.PRIORITY_ONGOING
657 : StatusBarNotification.PRIORITY_NORMAL,
658 notification, idOut);
659 }
660 public void enqueueNotificationInternal(String pkg, int callingUid, int callingPid,
661 String tag, int id, int priority, Notification notification, int[] idOut)
662 {
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700663 checkIncomingCall(pkg);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800664
Joe Onoratobd73d012010-06-04 11:44:54 -0700665 // Limit the number of notifications that any given package except the android
666 // package can enqueue. Prevents DOS attacks and deals with leaks.
667 if (!"android".equals(pkg)) {
668 synchronized (mNotificationList) {
669 int count = 0;
670 final int N = mNotificationList.size();
671 for (int i=0; i<N; i++) {
672 final NotificationRecord r = mNotificationList.get(i);
673 if (r.pkg.equals(pkg)) {
674 count++;
675 if (count >= MAX_PACKAGE_NOTIFICATIONS) {
676 Slog.e(TAG, "Package has already posted " + count
677 + " notifications. Not showing more. package=" + pkg);
678 return;
679 }
680 }
681 }
682 }
683 }
684
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800685 // This conditional is a dirty hack to limit the logging done on
686 // behalf of the download manager without affecting other apps.
687 if (!pkg.equals("com.android.providers.downloads")
688 || Log.isLoggable("DownloadManager", Log.VERBOSE)) {
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800689 EventLog.writeEvent(EventLogTags.NOTIFICATION_ENQUEUE, pkg, id, notification.toString());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800690 }
691
692 if (pkg == null || notification == null) {
693 throw new IllegalArgumentException("null not allowed: pkg=" + pkg
694 + " id=" + id + " notification=" + notification);
695 }
696 if (notification.icon != 0) {
697 if (notification.contentView == null) {
698 throw new IllegalArgumentException("contentView required: pkg=" + pkg
699 + " id=" + id + " notification=" + notification);
700 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800701 }
702
703 synchronized (mNotificationList) {
Daniel Sandlere40451a2011-02-03 14:51:35 -0500704 NotificationRecord r = new NotificationRecord(pkg, tag, id,
705 callingUid, callingPid,
706 priority,
707 notification);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800708 NotificationRecord old = null;
709
Fred Quintana6ecaff12009-09-25 14:23:13 -0700710 int index = indexOfNotificationLocked(pkg, tag, id);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800711 if (index < 0) {
712 mNotificationList.add(r);
713 } else {
714 old = mNotificationList.remove(index);
715 mNotificationList.add(index, r);
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700716 // Make sure we don't lose the foreground service state.
717 if (old != null) {
718 notification.flags |=
719 old.notification.flags&Notification.FLAG_FOREGROUND_SERVICE;
720 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800721 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800722
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700723 // Ensure if this is a foreground service that the proper additional
724 // flags are set.
725 if ((notification.flags&Notification.FLAG_FOREGROUND_SERVICE) != 0) {
726 notification.flags |= Notification.FLAG_ONGOING_EVENT
727 | Notification.FLAG_NO_CLEAR;
728 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800729
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800730 if (notification.icon != 0) {
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -0700731 StatusBarNotification n = new StatusBarNotification(pkg, id, tag,
732 r.uid, r.initialPid, notification);
Daniel Sandlere40451a2011-02-03 14:51:35 -0500733 n.priority = r.priority;
734
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800735 if (old != null && old.statusBarKey != null) {
736 r.statusBarKey = old.statusBarKey;
737 long identity = Binder.clearCallingIdentity();
738 try {
Joe Onorato18e69df2010-05-17 22:26:12 -0700739 mStatusBar.updateNotification(r.statusBarKey, n);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800740 }
741 finally {
742 Binder.restoreCallingIdentity(identity);
743 }
744 } else {
745 long identity = Binder.clearCallingIdentity();
746 try {
Joe Onorato18e69df2010-05-17 22:26:12 -0700747 r.statusBarKey = mStatusBar.addNotification(n);
Mike Lockwood3cb67a32009-11-27 14:25:58 -0500748 mAttentionLight.pulse();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800749 }
750 finally {
751 Binder.restoreCallingIdentity(identity);
752 }
753 }
Joe Onorato30275482009-07-08 17:09:14 -0700754 sendAccessibilityEvent(notification, pkg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800755 } else {
Daniel Sandlere40451a2011-02-03 14:51:35 -0500756 Slog.e(TAG, "Ignoring notification with icon==0: " + notification);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800757 if (old != null && old.statusBarKey != null) {
758 long identity = Binder.clearCallingIdentity();
759 try {
Joe Onorato0cbda992010-05-02 16:28:15 -0700760 mStatusBar.removeNotification(old.statusBarKey);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800761 }
762 finally {
763 Binder.restoreCallingIdentity(identity);
764 }
765 }
766 }
767
768 // If we're not supposed to beep, vibrate, etc. then don't.
769 if (((mDisabledNotifications & StatusBarManager.DISABLE_NOTIFICATION_ALERTS) == 0)
770 && (!(old != null
Joe Onorato30275482009-07-08 17:09:14 -0700771 && (notification.flags & Notification.FLAG_ONLY_ALERT_ONCE) != 0 ))
772 && mSystemReady) {
Eric Laurent524dc042009-11-27 05:07:55 -0800773
774 final AudioManager audioManager = (AudioManager) mContext
775 .getSystemService(Context.AUDIO_SERVICE);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800776 // sound
777 final boolean useDefaultSound =
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800778 (notification.defaults & Notification.DEFAULT_SOUND) != 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800779 if (useDefaultSound || notification.sound != null) {
780 Uri uri;
781 if (useDefaultSound) {
782 uri = Settings.System.DEFAULT_NOTIFICATION_URI;
783 } else {
784 uri = notification.sound;
785 }
786 boolean looping = (notification.flags & Notification.FLAG_INSISTENT) != 0;
787 int audioStreamType;
788 if (notification.audioStreamType >= 0) {
789 audioStreamType = notification.audioStreamType;
790 } else {
791 audioStreamType = DEFAULT_STREAM_TYPE;
792 }
793 mSoundNotification = r;
Eric Laurent524dc042009-11-27 05:07:55 -0800794 // do not play notifications if stream volume is 0
795 // (typically because ringer mode is silent).
796 if (audioManager.getStreamVolume(audioStreamType) != 0) {
797 long identity = Binder.clearCallingIdentity();
798 try {
799 mSound.play(mContext, uri, looping, audioStreamType);
800 }
801 finally {
802 Binder.restoreCallingIdentity(identity);
803 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800804 }
805 }
806
807 // vibrate
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800808 final boolean useDefaultVibrate =
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800809 (notification.defaults & Notification.DEFAULT_VIBRATE) != 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800810 if ((useDefaultVibrate || notification.vibrate != null)
811 && audioManager.shouldVibrate(AudioManager.VIBRATE_TYPE_NOTIFICATION)) {
812 mVibrateNotification = r;
813
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800814 mVibrator.vibrate(useDefaultVibrate ? DEFAULT_VIBRATE_PATTERN
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800815 : notification.vibrate,
816 ((notification.flags & Notification.FLAG_INSISTENT) != 0) ? 0: -1);
817 }
818 }
819
820 // this option doesn't shut off the lights
821
822 // light
823 // the most recent thing gets the light
824 mLights.remove(old);
825 if (mLedNotification == old) {
826 mLedNotification = null;
827 }
Joe Onorato8a9b2202010-02-26 18:56:32 -0800828 //Slog.i(TAG, "notification.lights="
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800829 // + ((old.notification.lights.flags & Notification.FLAG_SHOW_LIGHTS) != 0));
830 if ((notification.flags & Notification.FLAG_SHOW_LIGHTS) != 0) {
831 mLights.add(r);
832 updateLightsLocked();
833 } else {
834 if (old != null
835 && ((old.notification.flags & Notification.FLAG_SHOW_LIGHTS) != 0)) {
836 updateLightsLocked();
837 }
838 }
839 }
840
841 idOut[0] = id;
842 }
843
Joe Onorato30275482009-07-08 17:09:14 -0700844 private void sendAccessibilityEvent(Notification notification, CharSequence packageName) {
svetoslavganov75986cf2009-05-14 22:28:01 -0700845 AccessibilityManager manager = AccessibilityManager.getInstance(mContext);
846 if (!manager.isEnabled()) {
847 return;
848 }
849
850 AccessibilityEvent event =
851 AccessibilityEvent.obtain(AccessibilityEvent.TYPE_NOTIFICATION_STATE_CHANGED);
852 event.setPackageName(packageName);
853 event.setClassName(Notification.class.getName());
854 event.setParcelableData(notification);
855 CharSequence tickerText = notification.tickerText;
856 if (!TextUtils.isEmpty(tickerText)) {
857 event.getText().add(tickerText);
858 }
859
860 manager.sendAccessibilityEvent(event);
861 }
862
Joe Onorato46439ce2010-11-19 13:56:21 -0800863 private void cancelNotificationLocked(NotificationRecord r, boolean sendDelete) {
864 // tell the app
865 if (sendDelete) {
866 if (r.notification.deleteIntent != null) {
867 try {
868 r.notification.deleteIntent.send();
869 } catch (PendingIntent.CanceledException ex) {
870 // do nothing - there's no relevant way to recover, and
871 // no reason to let this propagate
872 Slog.w(TAG, "canceled PendingIntent for " + r.pkg, ex);
873 }
874 }
875 }
876
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800877 // status bar
878 if (r.notification.icon != 0) {
879 long identity = Binder.clearCallingIdentity();
880 try {
Joe Onorato0cbda992010-05-02 16:28:15 -0700881 mStatusBar.removeNotification(r.statusBarKey);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800882 }
883 finally {
884 Binder.restoreCallingIdentity(identity);
885 }
886 r.statusBarKey = null;
887 }
888
889 // sound
890 if (mSoundNotification == r) {
891 mSoundNotification = null;
892 long identity = Binder.clearCallingIdentity();
893 try {
894 mSound.stop();
895 }
896 finally {
897 Binder.restoreCallingIdentity(identity);
898 }
899 }
900
901 // vibrate
902 if (mVibrateNotification == r) {
903 mVibrateNotification = null;
904 long identity = Binder.clearCallingIdentity();
905 try {
906 mVibrator.cancel();
907 }
908 finally {
909 Binder.restoreCallingIdentity(identity);
910 }
911 }
912
913 // light
914 mLights.remove(r);
915 if (mLedNotification == r) {
916 mLedNotification = null;
917 }
918 }
919
920 /**
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700921 * Cancels a notification ONLY if it has all of the {@code mustHaveFlags}
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800922 * and none of the {@code mustNotHaveFlags}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800923 */
Fred Quintana6ecaff12009-09-25 14:23:13 -0700924 private void cancelNotification(String pkg, String tag, int id, int mustHaveFlags,
Joe Onorato46439ce2010-11-19 13:56:21 -0800925 int mustNotHaveFlags, boolean sendDelete) {
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800926 EventLog.writeEvent(EventLogTags.NOTIFICATION_CANCEL, pkg, id, mustHaveFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800927
928 synchronized (mNotificationList) {
Fred Quintana6ecaff12009-09-25 14:23:13 -0700929 int index = indexOfNotificationLocked(pkg, tag, id);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800930 if (index >= 0) {
Fred Quintana6ecaff12009-09-25 14:23:13 -0700931 NotificationRecord r = mNotificationList.get(index);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800932
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800933 if ((r.notification.flags & mustHaveFlags) != mustHaveFlags) {
934 return;
935 }
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700936 if ((r.notification.flags & mustNotHaveFlags) != 0) {
937 return;
938 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800939
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800940 mNotificationList.remove(index);
941
Joe Onorato46439ce2010-11-19 13:56:21 -0800942 cancelNotificationLocked(r, sendDelete);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800943 updateLightsLocked();
944 }
945 }
946 }
947
948 /**
949 * Cancels all notifications from a given package that have all of the
950 * {@code mustHaveFlags}.
951 */
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800952 boolean cancelAllNotificationsInt(String pkg, int mustHaveFlags,
953 int mustNotHaveFlags, boolean doit) {
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800954 EventLog.writeEvent(EventLogTags.NOTIFICATION_CANCEL_ALL, pkg, mustHaveFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800955
956 synchronized (mNotificationList) {
957 final int N = mNotificationList.size();
958 boolean canceledSomething = false;
959 for (int i = N-1; i >= 0; --i) {
960 NotificationRecord r = mNotificationList.get(i);
961 if ((r.notification.flags & mustHaveFlags) != mustHaveFlags) {
962 continue;
963 }
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700964 if ((r.notification.flags & mustNotHaveFlags) != 0) {
965 continue;
966 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800967 if (!r.pkg.equals(pkg)) {
968 continue;
969 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800970 canceledSomething = true;
971 if (!doit) {
972 return true;
973 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800974 mNotificationList.remove(i);
Joe Onorato46439ce2010-11-19 13:56:21 -0800975 cancelNotificationLocked(r, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800976 }
977 if (canceledSomething) {
978 updateLightsLocked();
979 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800980 return canceledSomething;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800981 }
982 }
983
Andy Stadler110988c2010-12-03 14:29:16 -0800984 @Deprecated
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700985 public void cancelNotification(String pkg, int id) {
Fred Quintana6ecaff12009-09-25 14:23:13 -0700986 cancelNotificationWithTag(pkg, null /* tag */, id);
987 }
988
989 public void cancelNotificationWithTag(String pkg, String tag, int id) {
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700990 checkIncomingCall(pkg);
991 // Don't allow client applications to cancel foreground service notis.
Fred Quintana6ecaff12009-09-25 14:23:13 -0700992 cancelNotification(pkg, tag, id, 0,
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700993 Binder.getCallingUid() == Process.SYSTEM_UID
Joe Onorato46439ce2010-11-19 13:56:21 -0800994 ? 0 : Notification.FLAG_FOREGROUND_SERVICE, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800995 }
996
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700997 public void cancelAllNotifications(String pkg) {
998 checkIncomingCall(pkg);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800999
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07001000 // Calling from user space, don't allow the canceling of actively
1001 // running foreground services.
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001002 cancelAllNotificationsInt(pkg, 0, Notification.FLAG_FOREGROUND_SERVICE, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001003 }
1004
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07001005 void checkIncomingCall(String pkg) {
1006 int uid = Binder.getCallingUid();
1007 if (uid == Process.SYSTEM_UID || uid == 0) {
1008 return;
1009 }
1010 try {
1011 ApplicationInfo ai = mContext.getPackageManager().getApplicationInfo(
1012 pkg, 0);
1013 if (ai.uid != uid) {
1014 throw new SecurityException("Calling uid " + uid + " gave package"
1015 + pkg + " which is owned by uid " + ai.uid);
1016 }
1017 } catch (PackageManager.NameNotFoundException e) {
1018 throw new SecurityException("Unknown package " + pkg);
1019 }
1020 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001021
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07001022 void cancelAll() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001023 synchronized (mNotificationList) {
1024 final int N = mNotificationList.size();
1025 for (int i=N-1; i>=0; i--) {
1026 NotificationRecord r = mNotificationList.get(i);
1027
1028 if ((r.notification.flags & (Notification.FLAG_ONGOING_EVENT
1029 | Notification.FLAG_NO_CLEAR)) == 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001030 mNotificationList.remove(i);
Joe Onorato46439ce2010-11-19 13:56:21 -08001031 cancelNotificationLocked(r, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001032 }
1033 }
1034
1035 updateLightsLocked();
1036 }
1037 }
1038
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001039 // lock on mNotificationList
1040 private void updateLightsLocked()
1041 {
Mike Lockwood2117f6f2010-09-09 09:48:08 -04001042 // clear pending pulse notification if screen is on
1043 if (mScreenOn || mLedNotification == null) {
1044 mPendingPulseNotification = false;
1045 }
1046
The Android Open Source Project10592532009-03-18 17:39:46 -07001047 // handle notification lights
1048 if (mLedNotification == null) {
1049 // get next notification, if any
1050 int n = mLights.size();
1051 if (n > 0) {
1052 mLedNotification = mLights.get(n-1);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001053 }
Mike Lockwood2117f6f2010-09-09 09:48:08 -04001054 if (mLedNotification != null && !mScreenOn) {
1055 mPendingPulseNotification = true;
1056 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001057 }
Mike Lockwoodc22404a2009-12-02 11:15:02 -05001058
1059 // we only flash if screen is off and persistent pulsing is enabled
Daniel Sandlere96ffb12010-03-11 13:38:06 -05001060 // and we are not currently in a call
Mike Lockwood2117f6f2010-09-09 09:48:08 -04001061 if (!mPendingPulseNotification || mScreenOn || mInCall) {
Mike Lockwood3cb67a32009-11-27 14:25:58 -05001062 mNotificationLight.turnOff();
The Android Open Source Project10592532009-03-18 17:39:46 -07001063 } else {
Mike Lockwood670f9322010-01-20 12:13:36 -05001064 int ledARGB = mLedNotification.notification.ledARGB;
1065 int ledOnMS = mLedNotification.notification.ledOnMS;
1066 int ledOffMS = mLedNotification.notification.ledOffMS;
1067 if ((mLedNotification.notification.defaults & Notification.DEFAULT_LIGHTS) != 0) {
1068 ledARGB = mDefaultNotificationColor;
1069 ledOnMS = mDefaultNotificationLedOn;
1070 ledOffMS = mDefaultNotificationLedOff;
1071 }
1072 if (mNotificationPulseEnabled) {
1073 // pulse repeatedly
1074 mNotificationLight.setFlashing(ledARGB, LightsService.LIGHT_FLASH_TIMED,
1075 ledOnMS, ledOffMS);
1076 } else {
1077 // pulse only once
1078 mNotificationLight.pulse(ledARGB, ledOnMS);
1079 }
The Android Open Source Project10592532009-03-18 17:39:46 -07001080 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001081 }
1082
1083 // lock on mNotificationList
Fred Quintana6ecaff12009-09-25 14:23:13 -07001084 private int indexOfNotificationLocked(String pkg, String tag, int id)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001085 {
1086 ArrayList<NotificationRecord> list = mNotificationList;
1087 final int len = list.size();
1088 for (int i=0; i<len; i++) {
1089 NotificationRecord r = list.get(i);
Fred Quintana6ecaff12009-09-25 14:23:13 -07001090 if (tag == null) {
1091 if (r.tag != null) {
1092 continue;
1093 }
1094 } else {
1095 if (!tag.equals(r.tag)) {
1096 continue;
1097 }
1098 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001099 if (r.id == id && r.pkg.equals(pkg)) {
1100 return i;
1101 }
1102 }
1103 return -1;
1104 }
1105
Mike Lockwoodc22404a2009-12-02 11:15:02 -05001106 private void updateNotificationPulse() {
1107 synchronized (mNotificationList) {
1108 updateLightsLocked();
1109 }
1110 }
1111
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001112 // ======================================================================
1113 @Override
1114 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
1115 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
1116 != PackageManager.PERMISSION_GRANTED) {
1117 pw.println("Permission Denial: can't dump NotificationManager from from pid="
1118 + Binder.getCallingPid()
1119 + ", uid=" + Binder.getCallingUid());
1120 return;
1121 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001122
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001123 pw.println("Current Notification Manager state:");
1124
1125 int N;
1126
1127 synchronized (mToastQueue) {
1128 N = mToastQueue.size();
1129 if (N > 0) {
1130 pw.println(" Toast Queue:");
1131 for (int i=0; i<N; i++) {
1132 mToastQueue.get(i).dump(pw, " ");
1133 }
1134 pw.println(" ");
1135 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001136
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001137 }
1138
1139 synchronized (mNotificationList) {
1140 N = mNotificationList.size();
1141 if (N > 0) {
1142 pw.println(" Notification List:");
1143 for (int i=0; i<N; i++) {
1144 mNotificationList.get(i).dump(pw, " ", mContext);
1145 }
1146 pw.println(" ");
1147 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001148
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001149 N = mLights.size();
1150 if (N > 0) {
1151 pw.println(" Lights List:");
1152 for (int i=0; i<N; i++) {
1153 mLights.get(i).dump(pw, " ", mContext);
1154 }
1155 pw.println(" ");
1156 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001157
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001158 pw.println(" mSoundNotification=" + mSoundNotification);
1159 pw.println(" mSound=" + mSound);
1160 pw.println(" mVibrateNotification=" + mVibrateNotification);
Joe Onorato39f5b6a2009-07-23 12:29:19 -04001161 pw.println(" mDisabledNotifications=0x" + Integer.toHexString(mDisabledNotifications));
1162 pw.println(" mSystemReady=" + mSystemReady);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001163 }
1164 }
1165}