blob: 29aaeaf33f4f3a38745cc6c97c1f07396b71d32f [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
Jeff Sharkey098d5802012-04-26 17:30:34 -070019import static org.xmlpull.v1.XmlPullParser.END_DOCUMENT;
20import static org.xmlpull.v1.XmlPullParser.END_TAG;
21import static org.xmlpull.v1.XmlPullParser.START_TAG;
svetoslavganov75986cf2009-05-14 22:28:01 -070022
Dianne Hackborn41203752012-08-31 14:05:51 -070023import android.app.ActivityManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024import android.app.ActivityManagerNative;
Amith Yamasanif203aee2012-08-29 18:41:53 -070025import android.app.AppGlobals;
Daniel Sandler4a900ac2013-01-30 14:04:10 -050026import android.app.AppOpsManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027import android.app.IActivityManager;
28import android.app.INotificationManager;
29import android.app.ITransientNotification;
30import android.app.Notification;
31import android.app.PendingIntent;
32import android.app.StatusBarManager;
33import android.content.BroadcastReceiver;
Daniel Sandler5feceeb2013-03-22 18:29:23 -070034import android.content.ComponentName;
Dianne Hackborn1dac2772009-06-26 18:16:48 -070035import android.content.ContentResolver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036import android.content.Context;
37import android.content.Intent;
38import android.content.IntentFilter;
Daniel Sandler5feceeb2013-03-22 18:29:23 -070039import android.content.ServiceConnection;
Dianne Hackbornd8a43f62009-08-17 23:33:56 -070040import android.content.pm.ApplicationInfo;
Daniel Sandler4a900ac2013-01-30 14:04:10 -050041import android.content.pm.PackageInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042import android.content.pm.PackageManager;
Chris Wrenae9bb572013-05-15 14:50:28 -040043import android.content.pm.ResolveInfo;
44import android.content.pm.ServiceInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080045import android.content.pm.PackageManager.NameNotFoundException;
46import android.content.res.Resources;
Dianne Hackborn1dac2772009-06-26 18:16:48 -070047import android.database.ContentObserver;
Daniel Sandlerf45564e2013-04-15 15:05:08 -040048import android.graphics.Bitmap;
svetoslavganov75986cf2009-05-14 22:28:01 -070049import android.media.AudioManager;
Jeff Sharkey098d5802012-04-26 17:30:34 -070050import android.media.IAudioService;
51import android.media.IRingtonePlayer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052import android.net.Uri;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053import android.os.Binder;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054import android.os.Handler;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080055import android.os.IBinder;
56import android.os.Message;
Dianne Hackbornd8a43f62009-08-17 23:33:56 -070057import android.os.Process;
svetoslavganov75986cf2009-05-14 22:28:01 -070058import android.os.RemoteException;
Jeff Sharkey098d5802012-04-26 17:30:34 -070059import android.os.ServiceManager;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070060import android.os.UserHandle;
Daniel Sandler4b749ef2013-03-18 21:53:04 -040061import android.os.UserManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080062import android.os.Vibrator;
63import android.provider.Settings;
Daniel Sandler5feceeb2013-03-22 18:29:23 -070064import android.service.notification.INotificationListener;
65import android.service.notification.NotificationListenerService;
66import android.service.notification.StatusBarNotification;
Daniel Sandlere96ffb12010-03-11 13:38:06 -050067import android.telephony.TelephonyManager;
svetoslavganov75986cf2009-05-14 22:28:01 -070068import android.text.TextUtils;
Dianne Hackborn39606a02012-07-31 17:54:35 -070069import android.util.AtomicFile;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080070import android.util.EventLog;
71import android.util.Log;
Andy Stadler110988c2010-12-03 14:29:16 -080072import android.util.Slog;
Daniel Sandler0da673f2012-04-11 12:33:16 -040073import android.util.Xml;
svetoslavganov75986cf2009-05-14 22:28:01 -070074import android.view.accessibility.AccessibilityEvent;
75import android.view.accessibility.AccessibilityManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080076import android.widget.Toast;
77
Jeff Sharkey098d5802012-04-26 17:30:34 -070078import org.xmlpull.v1.XmlPullParser;
79import org.xmlpull.v1.XmlPullParserException;
Jeff Sharkey098d5802012-04-26 17:30:34 -070080
Daniel Sandler0da673f2012-04-11 12:33:16 -040081import java.io.File;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080082import java.io.FileDescriptor;
Daniel Sandler0da673f2012-04-11 12:33:16 -040083import java.io.FileInputStream;
84import java.io.FileNotFoundException;
Daniel Sandler0da673f2012-04-11 12:33:16 -040085import java.io.IOException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086import java.io.PrintWriter;
Daniel Sandlerf45564e2013-04-15 15:05:08 -040087import java.lang.reflect.Array;
Daniel Sandlerfde19b12013-01-17 00:21:05 -050088import java.util.ArrayDeque;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080089import java.util.ArrayList;
90import java.util.Arrays;
Daniel Sandler0da673f2012-04-11 12:33:16 -040091import java.util.HashSet;
Daniel Sandlerfde19b12013-01-17 00:21:05 -050092import java.util.Iterator;
Chris Wrenae9bb572013-05-15 14:50:28 -040093import java.util.List;
Daniel Sandlerfde19b12013-01-17 00:21:05 -050094import java.util.NoSuchElementException;
Chris Wrenae9bb572013-05-15 14:50:28 -040095import java.util.Set;
Daniel Sandler0da673f2012-04-11 12:33:16 -040096
97import libcore.io.IoUtils;
98
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080099
Daniel Sandlerd0a2f862010-08-03 15:29:31 -0400100/** {@hide} */
101public class NotificationManagerService extends INotificationManager.Stub
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800102{
103 private static final String TAG = "NotificationService";
104 private static final boolean DBG = false;
105
Joe Onoratobd73d012010-06-04 11:44:54 -0700106 private static final int MAX_PACKAGE_NOTIFICATIONS = 50;
107
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800108 // message codes
109 private static final int MESSAGE_TIMEOUT = 2;
110
111 private static final int LONG_DELAY = 3500; // 3.5 seconds
112 private static final int SHORT_DELAY = 2000; // 2 seconds
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800113
114 private static final long[] DEFAULT_VIBRATE_PATTERN = {0, 250, 250, 250};
Daniel Sandleredbb3802012-11-13 20:49:47 -0800115 private static final int VIBRATE_PATTERN_MAXLEN = 8 * 2 + 1; // up to eight bumps
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800116
117 private static final int DEFAULT_STREAM_TYPE = AudioManager.STREAM_NOTIFICATION;
Daniel Sandler49a2ad12012-03-28 15:46:39 -0400118 private static final boolean SCORE_ONGOING_HIGHER = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800119
Daniel Sandler0da673f2012-04-11 12:33:16 -0400120 private static final int JUNK_SCORE = -1000;
121 private static final int NOTIFICATION_PRIORITY_MULTIPLIER = 10;
122 private static final int SCORE_DISPLAY_THRESHOLD = Notification.PRIORITY_MIN * NOTIFICATION_PRIORITY_MULTIPLIER;
123
Daniel Sandler526fa0e2012-12-04 14:51:50 -0500124 // Notifications with scores below this will not interrupt the user, either via LED or
125 // sound or vibration
126 private static final int SCORE_INTERRUPTION_THRESHOLD =
127 Notification.PRIORITY_LOW * NOTIFICATION_PRIORITY_MULTIPLIER;
128
Daniel Sandler0da673f2012-04-11 12:33:16 -0400129 private static final boolean ENABLE_BLOCKED_NOTIFICATIONS = true;
130 private static final boolean ENABLE_BLOCKED_TOASTS = true;
131
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700132 private static final String ENABLED_NOTIFICATION_LISTENERS_SEPARATOR = ":";
133
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800134 final Context mContext;
135 final IActivityManager mAm;
Daniel Sandler4b749ef2013-03-18 21:53:04 -0400136 final UserManager mUserManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800137 final IBinder mForegroundToken = new Binder();
138
139 private WorkerHandler mHandler;
Joe Onorato089de882010-04-12 08:18:45 -0700140 private StatusBarManagerService mStatusBar;
Mike Lockwood3cb67a32009-11-27 14:25:58 -0500141 private LightsService.Light mNotificationLight;
142 private LightsService.Light mAttentionLight;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800143
Mike Lockwood670f9322010-01-20 12:13:36 -0500144 private int mDefaultNotificationColor;
145 private int mDefaultNotificationLedOn;
146 private int mDefaultNotificationLedOff;
147
Daniel Sandleredbb3802012-11-13 20:49:47 -0800148 private long[] mDefaultVibrationPattern;
149 private long[] mFallbackVibrationPattern;
150
Joe Onorato30275482009-07-08 17:09:14 -0700151 private boolean mSystemReady;
Joe Onorato39f5b6a2009-07-23 12:29:19 -0400152 private int mDisabledNotifications;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800153
Jeff Sharkey098d5802012-04-26 17:30:34 -0700154 private NotificationRecord mSoundNotification;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800155 private NotificationRecord mVibrateNotification;
Jeff Sharkey098d5802012-04-26 17:30:34 -0700156
157 private IAudioService mAudioService;
Jeff Brownc2346132012-04-13 01:55:38 -0700158 private Vibrator mVibrator;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800159
Mike Lockwoodc22404a2009-12-02 11:15:02 -0500160 // for enabling and disabling notification pulse behavior
Mike Lockwood63b5ad92011-08-30 09:55:30 -0400161 private boolean mScreenOn = true;
Daniel Sandlere96ffb12010-03-11 13:38:06 -0500162 private boolean mInCall = false;
Mike Lockwoodc22404a2009-12-02 11:15:02 -0500163 private boolean mNotificationPulseEnabled;
164
Daniel Sandler09a247e2013-02-14 10:24:17 -0500165 // used as a mutex for access to all active notifications & listeners
Fred Quintana6ecaff12009-09-25 14:23:13 -0700166 private final ArrayList<NotificationRecord> mNotificationList =
167 new ArrayList<NotificationRecord>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800168
169 private ArrayList<ToastRecord> mToastQueue;
170
171 private ArrayList<NotificationRecord> mLights = new ArrayList<NotificationRecord>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800172 private NotificationRecord mLedNotification;
svetoslavganov75986cf2009-05-14 22:28:01 -0700173
Daniel Sandler4a900ac2013-01-30 14:04:10 -0500174 private final AppOpsManager mAppOps;
175
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700176 // contains connections to all connected listeners, including app services
177 // and system listeners
178 private ArrayList<NotificationListenerInfo> mListeners
179 = new ArrayList<NotificationListenerInfo>();
180 // things that will be put into mListeners as soon as they're ready
181 private ArrayList<String> mServicesBinding = new ArrayList<String>();
182 // lists the component names of all enabled (and therefore connected) listener
183 // app services for the current user only
184 private HashSet<ComponentName> mEnabledListenersForCurrentUser
185 = new HashSet<ComponentName>();
186 // Just the packages from mEnabledListenersForCurrentUser
187 private HashSet<String> mEnabledListenerPackageNames = new HashSet<String>();
Daniel Sandler09a247e2013-02-14 10:24:17 -0500188
Daniel Sandler0da673f2012-04-11 12:33:16 -0400189 // Notification control database. For now just contains disabled packages.
190 private AtomicFile mPolicyFile;
191 private HashSet<String> mBlockedPackages = new HashSet<String>();
192
193 private static final int DB_VERSION = 1;
194
195 private static final String TAG_BODY = "notification-policy";
196 private static final String ATTR_VERSION = "version";
197
198 private static final String TAG_BLOCKED_PKGS = "blocked-packages";
199 private static final String TAG_PACKAGE = "package";
200 private static final String ATTR_NAME = "name";
201
Daniel Sandler09a247e2013-02-14 10:24:17 -0500202 private class NotificationListenerInfo implements DeathRecipient {
203 INotificationListener listener;
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700204 ComponentName component;
Daniel Sandler09a247e2013-02-14 10:24:17 -0500205 int userid;
Daniel Sandler4b749ef2013-03-18 21:53:04 -0400206 boolean isSystem;
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700207 ServiceConnection connection;
Daniel Sandler4b749ef2013-03-18 21:53:04 -0400208
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700209 public NotificationListenerInfo(INotificationListener listener, ComponentName component,
210 int userid, boolean isSystem) {
Daniel Sandler09a247e2013-02-14 10:24:17 -0500211 this.listener = listener;
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700212 this.component = component;
Daniel Sandler09a247e2013-02-14 10:24:17 -0500213 this.userid = userid;
Daniel Sandler4b749ef2013-03-18 21:53:04 -0400214 this.isSystem = isSystem;
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700215 this.connection = null;
216 }
217
218 public NotificationListenerInfo(INotificationListener listener, ComponentName component,
219 int userid, ServiceConnection connection) {
220 this.listener = listener;
221 this.component = component;
222 this.userid = userid;
223 this.isSystem = false;
224 this.connection = connection;
Daniel Sandler09a247e2013-02-14 10:24:17 -0500225 }
226
Daniel Sandler4b749ef2013-03-18 21:53:04 -0400227 boolean enabledAndUserMatches(StatusBarNotification sbn) {
228 final int nid = sbn.getUserId();
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700229 if (!isEnabledForCurrentUser()) {
230 return false;
231 }
Daniel Sandler21ca44d2013-03-07 13:58:00 -0500232 if (this.userid == UserHandle.USER_ALL) return true;
Daniel Sandler21ca44d2013-03-07 13:58:00 -0500233 return (nid == UserHandle.USER_ALL || nid == this.userid);
234 }
235
Daniel Sandler09a247e2013-02-14 10:24:17 -0500236 public void notifyPostedIfUserMatch(StatusBarNotification sbn) {
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700237 if (!enabledAndUserMatches(sbn)) {
238 return;
239 }
Daniel Sandler09a247e2013-02-14 10:24:17 -0500240 try {
241 listener.onNotificationPosted(sbn);
242 } catch (RemoteException ex) {
Daniel Sandler1a497d32013-04-18 14:52:45 -0400243 Log.e(TAG, "unable to notify listener (posted): " + listener, ex);
Daniel Sandler09a247e2013-02-14 10:24:17 -0500244 }
245 }
246
247 public void notifyRemovedIfUserMatch(StatusBarNotification sbn) {
Daniel Sandler4b749ef2013-03-18 21:53:04 -0400248 if (!enabledAndUserMatches(sbn)) return;
Daniel Sandler09a247e2013-02-14 10:24:17 -0500249 try {
250 listener.onNotificationRemoved(sbn);
251 } catch (RemoteException ex) {
Daniel Sandler1a497d32013-04-18 14:52:45 -0400252 Log.e(TAG, "unable to notify listener (removed): " + listener, ex);
Daniel Sandler09a247e2013-02-14 10:24:17 -0500253 }
254 }
255
256 @Override
257 public void binderDied() {
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700258 if (connection == null) {
259 // This is not a service; it won't be recreated. We can give up this connection.
260 unregisterListener(this.listener, this.userid);
261 }
Daniel Sandler09a247e2013-02-14 10:24:17 -0500262 }
Daniel Sandler4b749ef2013-03-18 21:53:04 -0400263
264 /** convenience method for looking in mEnabledListenersForCurrentUser */
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700265 public boolean isEnabledForCurrentUser() {
266 if (this.isSystem) return true;
267 if (this.connection == null) return false;
268 return mEnabledListenersForCurrentUser.contains(this.component);
Daniel Sandler4b749ef2013-03-18 21:53:04 -0400269 }
Daniel Sandler09a247e2013-02-14 10:24:17 -0500270 }
271
Daniel Sandlerfde19b12013-01-17 00:21:05 -0500272 private static class Archive {
Daniel Sandler5e62e3a2013-04-15 20:57:02 -0400273 static final int BUFFER_SIZE = 250;
Daniel Sandlerfde19b12013-01-17 00:21:05 -0500274 ArrayDeque<StatusBarNotification> mBuffer = new ArrayDeque<StatusBarNotification>(BUFFER_SIZE);
275
276 public Archive() {
Daniel Sandlerfde19b12013-01-17 00:21:05 -0500277 }
Jeff Sharkey0c1baf92013-04-03 13:08:52 -0700278
Daniel Sandler5e62e3a2013-04-15 20:57:02 -0400279 public String toString() {
280 final StringBuilder sb = new StringBuilder();
281 final int N = mBuffer.size();
282 sb.append("Archive (");
283 sb.append(N);
284 sb.append(" notification");
285 sb.append((N==1)?")":"s)");
286 return sb.toString();
287 }
288
Daniel Sandlerfde19b12013-01-17 00:21:05 -0500289 public void record(StatusBarNotification nr) {
290 if (mBuffer.size() == BUFFER_SIZE) {
291 mBuffer.removeFirst();
292 }
Daniel Sandler26b81d52013-05-20 20:56:43 -0400293
294 // We don't want to store the heavy bits of the notification in the archive,
295 // but other clients in the system process might be using the object, so we
296 // store a (lightened) copy.
297 mBuffer.addLast(nr.cloneLight());
Daniel Sandlerfde19b12013-01-17 00:21:05 -0500298 }
299
Daniel Sandler5e62e3a2013-04-15 20:57:02 -0400300
Daniel Sandlerfde19b12013-01-17 00:21:05 -0500301 public void clear() {
302 mBuffer.clear();
303 }
304
305 public Iterator<StatusBarNotification> descendingIterator() {
306 return mBuffer.descendingIterator();
307 }
308 public Iterator<StatusBarNotification> ascendingIterator() {
309 return mBuffer.iterator();
310 }
311 public Iterator<StatusBarNotification> filter(
312 final Iterator<StatusBarNotification> iter, final String pkg, final int userId) {
313 return new Iterator<StatusBarNotification>() {
314 StatusBarNotification mNext = findNext();
315
316 private StatusBarNotification findNext() {
317 while (iter.hasNext()) {
318 StatusBarNotification nr = iter.next();
Daniel Sandler4f91efd2013-04-25 16:38:41 -0400319 if ((pkg == null || nr.getPackageName() == pkg)
Daniel Sandlerfde19b12013-01-17 00:21:05 -0500320 && (userId == UserHandle.USER_ALL || nr.getUserId() == userId)) {
321 return nr;
322 }
323 }
324 return null;
325 }
326
327 @Override
328 public boolean hasNext() {
329 return mNext == null;
330 }
331
332 @Override
333 public StatusBarNotification next() {
334 StatusBarNotification next = mNext;
335 if (next == null) {
336 throw new NoSuchElementException();
337 }
338 mNext = findNext();
339 return next;
340 }
341
342 @Override
343 public void remove() {
344 iter.remove();
345 }
346 };
347 }
Daniel Sandler78d0d252013-02-12 08:14:52 -0500348
349 public StatusBarNotification[] getArray(int count) {
350 if (count == 0) count = Archive.BUFFER_SIZE;
351 final StatusBarNotification[] a
352 = new StatusBarNotification[Math.min(count, mBuffer.size())];
353 Iterator<StatusBarNotification> iter = descendingIterator();
354 int i=0;
355 while (iter.hasNext() && i < count) {
356 a[i++] = iter.next();
357 }
358 return a;
359 }
360
361 public StatusBarNotification[] getArray(int count, String pkg, int userId) {
362 if (count == 0) count = Archive.BUFFER_SIZE;
363 final StatusBarNotification[] a
364 = new StatusBarNotification[Math.min(count, mBuffer.size())];
365 Iterator<StatusBarNotification> iter = filter(descendingIterator(), pkg, userId);
366 int i=0;
367 while (iter.hasNext() && i < count) {
368 a[i++] = iter.next();
369 }
370 return a;
371 }
372
Daniel Sandlerfde19b12013-01-17 00:21:05 -0500373 }
374
375 Archive mArchive = new Archive();
376
Daniel Sandler0da673f2012-04-11 12:33:16 -0400377 private void loadBlockDb() {
378 synchronized(mBlockedPackages) {
379 if (mPolicyFile == null) {
380 File dir = new File("/data/system");
381 mPolicyFile = new AtomicFile(new File(dir, "notification_policy.xml"));
382
383 mBlockedPackages.clear();
384
385 FileInputStream infile = null;
386 try {
387 infile = mPolicyFile.openRead();
388 final XmlPullParser parser = Xml.newPullParser();
389 parser.setInput(infile, null);
390
391 int type;
392 String tag;
393 int version = DB_VERSION;
394 while ((type = parser.next()) != END_DOCUMENT) {
395 tag = parser.getName();
396 if (type == START_TAG) {
397 if (TAG_BODY.equals(tag)) {
398 version = Integer.parseInt(parser.getAttributeValue(null, ATTR_VERSION));
399 } else if (TAG_BLOCKED_PKGS.equals(tag)) {
400 while ((type = parser.next()) != END_DOCUMENT) {
401 tag = parser.getName();
402 if (TAG_PACKAGE.equals(tag)) {
403 mBlockedPackages.add(parser.getAttributeValue(null, ATTR_NAME));
404 } else if (TAG_BLOCKED_PKGS.equals(tag) && type == END_TAG) {
405 break;
406 }
407 }
408 }
409 }
410 }
411 } catch (FileNotFoundException e) {
412 // No data yet
413 } catch (IOException e) {
414 Log.wtf(TAG, "Unable to read blocked notifications database", e);
415 } catch (NumberFormatException e) {
416 Log.wtf(TAG, "Unable to parse blocked notifications database", e);
417 } catch (XmlPullParserException e) {
418 Log.wtf(TAG, "Unable to parse blocked notifications database", e);
419 } finally {
420 IoUtils.closeQuietly(infile);
421 }
422 }
423 }
424 }
425
Daniel Sandler4a900ac2013-01-30 14:04:10 -0500426 /**
427 * Use this when you just want to know if notifications are OK for this package.
428 */
429 public boolean areNotificationsEnabledForPackage(String pkg, int uid) {
Daniel Sandler0da673f2012-04-11 12:33:16 -0400430 checkCallerIsSystem();
Daniel Sandler4a900ac2013-01-30 14:04:10 -0500431 return (mAppOps.checkOpNoThrow(AppOpsManager.OP_POST_NOTIFICATION, uid, pkg)
432 == AppOpsManager.MODE_ALLOWED);
Daniel Sandler0da673f2012-04-11 12:33:16 -0400433 }
434
Daniel Sandler4a900ac2013-01-30 14:04:10 -0500435 /** Use this when you actually want to post a notification or toast.
436 *
437 * Unchecked. Not exposed via Binder, but can be called in the course of enqueue*().
438 */
439 private boolean noteNotificationOp(String pkg, int uid) {
440 if (mAppOps.noteOpNoThrow(AppOpsManager.OP_POST_NOTIFICATION, uid, pkg)
441 != AppOpsManager.MODE_ALLOWED) {
442 Slog.v(TAG, "notifications are disabled by AppOps for " + pkg);
443 return false;
Daniel Sandler0da673f2012-04-11 12:33:16 -0400444 }
Daniel Sandler4a900ac2013-01-30 14:04:10 -0500445 return true;
Daniel Sandler0da673f2012-04-11 12:33:16 -0400446 }
447
Daniel Sandler4a900ac2013-01-30 14:04:10 -0500448 public void setNotificationsEnabledForPackage(String pkg, int uid, boolean enabled) {
Daniel Sandler0da673f2012-04-11 12:33:16 -0400449 checkCallerIsSystem();
Daniel Sandler32e698b2013-04-18 10:51:35 -0400450
451 Slog.v(TAG, (enabled?"en":"dis") + "abling notifications for " + pkg);
452
Daniel Sandler4a900ac2013-01-30 14:04:10 -0500453 mAppOps.setMode(AppOpsManager.OP_POST_NOTIFICATION, uid, pkg,
454 enabled ? AppOpsManager.MODE_ALLOWED : AppOpsManager.MODE_IGNORED);
Daniel Sandler32e698b2013-04-18 10:51:35 -0400455
456 // Now, cancel any outstanding notifications that are part of a just-disabled app
457 if (ENABLE_BLOCKED_NOTIFICATIONS && !enabled) {
458 cancelAllNotificationsInt(pkg, 0, 0, true, UserHandle.getUserId(uid));
459 }
Daniel Sandler0da673f2012-04-11 12:33:16 -0400460 }
461
462
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800463 private static String idDebugString(Context baseContext, String packageName, int id) {
464 Context c = null;
465
466 if (packageName != null) {
467 try {
468 c = baseContext.createPackageContext(packageName, 0);
469 } catch (NameNotFoundException e) {
470 c = baseContext;
471 }
472 } else {
473 c = baseContext;
474 }
475
476 String pkg;
477 String type;
478 String name;
479
480 Resources r = c.getResources();
481 try {
482 return r.getResourceName(id);
483 } catch (Resources.NotFoundException e) {
484 return "<name unknown>";
485 }
486 }
487
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700488 /**
489 * System-only API for getting a list of current (i.e. not cleared) notifications.
490 *
491 * Requires ACCESS_NOTIFICATIONS which is signature|system.
492 */
493 @Override
Daniel Sandlerfde19b12013-01-17 00:21:05 -0500494 public StatusBarNotification[] getActiveNotifications(String callingPkg) {
Daniel Sandler4b749ef2013-03-18 21:53:04 -0400495 // enforce() will ensure the calling uid has the correct permission
Daniel Sandlerfde19b12013-01-17 00:21:05 -0500496 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.ACCESS_NOTIFICATIONS,
Daniel Sandler78d0d252013-02-12 08:14:52 -0500497 "NotificationManagerService.getActiveNotifications");
Daniel Sandlerfde19b12013-01-17 00:21:05 -0500498
499 StatusBarNotification[] tmp = null;
Daniel Sandlerfde19b12013-01-17 00:21:05 -0500500 int uid = Binder.getCallingUid();
501
Daniel Sandler4b749ef2013-03-18 21:53:04 -0400502 // noteOp will check to make sure the callingPkg matches the uid
Daniel Sandlerfde19b12013-01-17 00:21:05 -0500503 if (mAppOps.noteOpNoThrow(AppOpsManager.OP_ACCESS_NOTIFICATIONS, uid, callingPkg)
504 == AppOpsManager.MODE_ALLOWED) {
505 synchronized (mNotificationList) {
506 tmp = new StatusBarNotification[mNotificationList.size()];
507 final int N = mNotificationList.size();
508 for (int i=0; i<N; i++) {
509 tmp[i] = mNotificationList.get(i).sbn;
510 }
511 }
512 }
513 return tmp;
514 }
515
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700516 /**
517 * System-only API for getting a list of recent (cleared, no longer shown) notifications.
518 *
519 * Requires ACCESS_NOTIFICATIONS which is signature|system.
520 */
521 @Override
Daniel Sandler78d0d252013-02-12 08:14:52 -0500522 public StatusBarNotification[] getHistoricalNotifications(String callingPkg, int count) {
Daniel Sandler4b749ef2013-03-18 21:53:04 -0400523 // enforce() will ensure the calling uid has the correct permission
Daniel Sandler78d0d252013-02-12 08:14:52 -0500524 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.ACCESS_NOTIFICATIONS,
525 "NotificationManagerService.getHistoricalNotifications");
526
527 StatusBarNotification[] tmp = null;
528 int uid = Binder.getCallingUid();
529
Daniel Sandler4b749ef2013-03-18 21:53:04 -0400530 // noteOp will check to make sure the callingPkg matches the uid
Daniel Sandler78d0d252013-02-12 08:14:52 -0500531 if (mAppOps.noteOpNoThrow(AppOpsManager.OP_ACCESS_NOTIFICATIONS, uid, callingPkg)
532 == AppOpsManager.MODE_ALLOWED) {
533 synchronized (mArchive) {
534 tmp = mArchive.getArray(count);
535 }
536 }
537 return tmp;
538 }
539
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700540 /**
Chris Wrenae9bb572013-05-15 14:50:28 -0400541 * Remove notification access for any services that no longer exist.
542 */
543 void disableNonexistentListeners() {
544 int currentUser = ActivityManager.getCurrentUser();
545 String flatIn = Settings.Secure.getStringForUser(
546 mContext.getContentResolver(),
547 Settings.Secure.ENABLED_NOTIFICATION_LISTENERS,
548 currentUser);
549 if (!TextUtils.isEmpty(flatIn)) {
550 if (DBG) Slog.v(TAG, "flat before: " + flatIn);
551 PackageManager pm = mContext.getPackageManager();
552 List<ResolveInfo> installedServices = pm.queryIntentServicesAsUser(
553 new Intent(NotificationListenerService.SERVICE_INTERFACE),
554 PackageManager.GET_SERVICES | PackageManager.GET_META_DATA,
555 currentUser);
556
557 Set<ComponentName> installed = new HashSet<ComponentName>();
558 for (int i = 0, count = installedServices.size(); i < count; i++) {
559 ResolveInfo resolveInfo = installedServices.get(i);
560 ServiceInfo info = resolveInfo.serviceInfo;
561
562 if (!android.Manifest.permission.BIND_NOTIFICATION_LISTENER_SERVICE.equals(
563 info.permission)) {
564 Slog.w(TAG, "Skipping notification listener service "
565 + info.packageName + "/" + info.name
566 + ": it does not require the permission "
567 + android.Manifest.permission.BIND_NOTIFICATION_LISTENER_SERVICE);
568 continue;
569 }
570 installed.add(new ComponentName(info.packageName, info.name));
571 }
572
573 String flatOut = "";
574 if (!installed.isEmpty()) {
575 String[] enabled = flatIn.split(ENABLED_NOTIFICATION_LISTENERS_SEPARATOR);
576 ArrayList<String> remaining = new ArrayList<String>(enabled.length);
577 for (int i = 0; i < enabled.length; i++) {
578 ComponentName enabledComponent = ComponentName.unflattenFromString(enabled[i]);
579 if (installed.contains(enabledComponent)) {
580 remaining.add(enabled[i]);
581 }
582 }
583 flatOut = TextUtils.join(ENABLED_NOTIFICATION_LISTENERS_SEPARATOR, remaining);
584 }
585 if (DBG) Slog.v(TAG, "flat after: " + flatOut);
586 if (!flatIn.equals(flatOut)) {
587 Settings.Secure.putStringForUser(mContext.getContentResolver(),
588 Settings.Secure.ENABLED_NOTIFICATION_LISTENERS,
589 flatOut, currentUser);
590 }
591 }
592 }
593
594 /**
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700595 * Called whenever packages change, the user switches, or ENABLED_NOTIFICATION_LISTENERS
596 * is altered. (For example in response to USER_SWITCHED in our broadcast receiver)
597 */
598 void rebindListenerServices() {
John Spurlock3ec4e702013-05-16 13:42:38 -0400599 final int currentUser = ActivityManager.getCurrentUser();
600 String flat = Settings.Secure.getStringForUser(
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700601 mContext.getContentResolver(),
John Spurlock3ec4e702013-05-16 13:42:38 -0400602 Settings.Secure.ENABLED_NOTIFICATION_LISTENERS,
603 currentUser);
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700604
605 NotificationListenerInfo[] toRemove = new NotificationListenerInfo[mListeners.size()];
606 final ArrayList<ComponentName> toAdd;
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700607
608 synchronized (mNotificationList) {
609 // unbind and remove all existing listeners
610 toRemove = mListeners.toArray(toRemove);
611
612 toAdd = new ArrayList<ComponentName>();
613 final HashSet<ComponentName> newEnabled = new HashSet<ComponentName>();
614 final HashSet<String> newPackages = new HashSet<String>();
615
616 // decode the list of components
617 if (flat != null) {
618 String[] components = flat.split(ENABLED_NOTIFICATION_LISTENERS_SEPARATOR);
619 for (int i=0; i<components.length; i++) {
620 final ComponentName component
621 = ComponentName.unflattenFromString(components[i]);
622 if (component != null) {
623 newEnabled.add(component);
624 toAdd.add(component);
625 newPackages.add(component.getPackageName());
626 }
627 }
628
629 mEnabledListenersForCurrentUser = newEnabled;
630 mEnabledListenerPackageNames = newPackages;
631 }
632 }
633
634 for (NotificationListenerInfo info : toRemove) {
635 final ComponentName component = info.component;
636 final int oldUser = info.userid;
637 Slog.v(TAG, "disabling notification listener for user " + oldUser + ": " + component);
638 unregisterListenerService(component, info.userid);
639 }
640
641 final int N = toAdd.size();
642 for (int i=0; i<N; i++) {
643 final ComponentName component = toAdd.get(i);
644 Slog.v(TAG, "enabling notification listener for user " + currentUser + ": "
645 + component);
646 registerListenerService(component, currentUser);
647 }
Daniel Sandler4b749ef2013-03-18 21:53:04 -0400648 }
649
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700650 /**
651 * Register a listener binder directly with the notification manager.
652 *
653 * Only works with system callers. Apps should extend
654 * {@link android.service.notification.NotificationListenerService}.
655 */
Daniel Sandler09a247e2013-02-14 10:24:17 -0500656 @Override
Daniel Sandler4b749ef2013-03-18 21:53:04 -0400657 public void registerListener(final INotificationListener listener,
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700658 final ComponentName component, final int userid) {
659 checkCallerIsSystem();
Daniel Sandler4b749ef2013-03-18 21:53:04 -0400660
Daniel Sandler09a247e2013-02-14 10:24:17 -0500661 synchronized (mNotificationList) {
662 try {
Daniel Sandler4b749ef2013-03-18 21:53:04 -0400663 NotificationListenerInfo info
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700664 = new NotificationListenerInfo(listener, component, userid, true);
Daniel Sandler09a247e2013-02-14 10:24:17 -0500665 listener.asBinder().linkToDeath(info, 0);
666 mListeners.add(info);
667 } catch (RemoteException e) {
668 // already dead
669 }
670 }
671 }
672
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700673 /**
674 * Version of registerListener that takes the name of a
675 * {@link android.service.notification.NotificationListenerService} to bind to.
676 *
677 * This is the mechanism by which third parties may subscribe to notifications.
678 */
679 private void registerListenerService(final ComponentName name, final int userid) {
680 checkCallerIsSystem();
681
682 if (DBG) Slog.v(TAG, "registerListenerService: " + name + " u=" + userid);
683
684 synchronized (mNotificationList) {
685 final String servicesBindingTag = name.toString() + "/" + userid;
686 if (mServicesBinding.contains(servicesBindingTag)) {
687 // stop registering this thing already! we're working on it
688 return;
689 }
690 mServicesBinding.add(servicesBindingTag);
691
692 final int N = mListeners.size();
693 for (int i=N-1; i>=0; i--) {
694 final NotificationListenerInfo info = mListeners.get(i);
695 if (name.equals(info.component)
696 && info.userid == userid) {
697 // cut old connections
698 if (DBG) Slog.v(TAG, " disconnecting old listener: " + info.listener);
699 mListeners.remove(i);
700 if (info.connection != null) {
701 mContext.unbindService(info.connection);
702 }
703 }
704 }
705
706 Intent intent = new Intent(NotificationListenerService.SERVICE_INTERFACE);
707 intent.setComponent(name);
708
709 intent.putExtra(Intent.EXTRA_CLIENT_LABEL,
710 com.android.internal.R.string.notification_listener_binding_label);
711 intent.putExtra(Intent.EXTRA_CLIENT_INTENT, PendingIntent.getActivity(
712 mContext, 0, new Intent(Settings.ACTION_NOTIFICATION_LISTENER_SETTINGS), 0));
713
714 try {
715 if (DBG) Slog.v(TAG, "binding: " + intent);
716 if (!mContext.bindServiceAsUser(intent,
717 new ServiceConnection() {
718 INotificationListener mListener;
719 @Override
720 public void onServiceConnected(ComponentName name, IBinder service) {
721 synchronized (mNotificationList) {
722 mServicesBinding.remove(servicesBindingTag);
723 try {
724 mListener = INotificationListener.Stub.asInterface(service);
725 NotificationListenerInfo info = new NotificationListenerInfo(
726 mListener, name, userid, this);
727 service.linkToDeath(info, 0);
728 mListeners.add(info);
729 } catch (RemoteException e) {
730 // already dead
731 }
732 }
733 }
734
735 @Override
736 public void onServiceDisconnected(ComponentName name) {
737 Slog.v(TAG, "notification listener connection lost: " + name);
738 }
739 },
740 Context.BIND_AUTO_CREATE,
741 new UserHandle(userid)))
742 {
743 mServicesBinding.remove(servicesBindingTag);
744 Slog.w(TAG, "Unable to bind listener service: " + intent);
745 return;
746 }
747 } catch (SecurityException ex) {
748 Slog.e(TAG, "Unable to bind listener service: " + intent, ex);
749 return;
750 }
751 }
752 }
753
754 /**
755 * Remove a listener binder directly
756 */
Daniel Sandler09a247e2013-02-14 10:24:17 -0500757 @Override
758 public void unregisterListener(INotificationListener listener, int userid) {
Daniel Sandler4b749ef2013-03-18 21:53:04 -0400759 // no need to check permissions; if your listener binder is in the list,
760 // that's proof that you had permission to add it in the first place
761
Daniel Sandler09a247e2013-02-14 10:24:17 -0500762 synchronized (mNotificationList) {
763 final int N = mListeners.size();
764 for (int i=N-1; i>=0; i--) {
765 final NotificationListenerInfo info = mListeners.get(i);
Andrew Wilson152942b2013-05-22 09:35:35 -0700766 if (info.listener.asBinder() == listener.asBinder()
767 && info.userid == userid) {
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700768 mListeners.remove(i);
769 if (info.connection != null) {
770 mContext.unbindService(info.connection);
771 }
Daniel Sandler09a247e2013-02-14 10:24:17 -0500772 }
773 }
774 }
775 }
776
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700777 /**
778 * Remove a listener service for the given user by ComponentName
779 */
780 private void unregisterListenerService(ComponentName name, int userid) {
781 checkCallerIsSystem();
782
783 synchronized (mNotificationList) {
784 final int N = mListeners.size();
785 for (int i=N-1; i>=0; i--) {
786 final NotificationListenerInfo info = mListeners.get(i);
787 if (name.equals(info.component)
788 && info.userid == userid) {
789 mListeners.remove(i);
790 if (info.connection != null) {
Daniel Sandlerc1b49bd2013-05-07 13:53:47 -0400791 try {
792 mContext.unbindService(info.connection);
793 } catch (IllegalArgumentException ex) {
794 // something happened to the service: we think we have a connection
795 // but it's bogus.
796 Slog.e(TAG, "Listener " + name + " could not be unbound: " + ex);
797 }
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700798 }
799 }
800 }
801 }
802 }
803
804 /**
805 * asynchronously notify all listeners about a new notification
806 */
Daniel Sandler09a247e2013-02-14 10:24:17 -0500807 private void notifyPostedLocked(NotificationRecord n) {
Daniel Sandler1a497d32013-04-18 14:52:45 -0400808 // make a copy in case changes are made to the underlying Notification object
809 final StatusBarNotification sbn = n.sbn.clone();
Daniel Sandler09a247e2013-02-14 10:24:17 -0500810 for (final NotificationListenerInfo info : mListeners) {
811 mHandler.post(new Runnable() {
812 @Override
813 public void run() {
814 info.notifyPostedIfUserMatch(sbn);
815 }});
816 }
817 }
818
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700819 /**
820 * asynchronously notify all listeners about a removed notification
821 */
Daniel Sandler09a247e2013-02-14 10:24:17 -0500822 private void notifyRemovedLocked(NotificationRecord n) {
Daniel Sandler1a497d32013-04-18 14:52:45 -0400823 // make a copy in case changes are made to the underlying Notification object
824 // NOTE: this copy is lightweight: it doesn't include heavyweight parts of the notification
825 final StatusBarNotification sbn_light = n.sbn.cloneLight();
826
Daniel Sandler09a247e2013-02-14 10:24:17 -0500827 for (final NotificationListenerInfo info : mListeners) {
828 mHandler.post(new Runnable() {
829 @Override
830 public void run() {
Daniel Sandler1a497d32013-04-18 14:52:45 -0400831 info.notifyRemovedIfUserMatch(sbn_light);
Daniel Sandler09a247e2013-02-14 10:24:17 -0500832 }});
833 }
834 }
835
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700836 // -- APIs to support listeners clicking/clearing notifications --
837
838 private NotificationListenerInfo checkListenerToken(INotificationListener listener) {
839 final IBinder token = listener.asBinder();
840 final int N = mListeners.size();
841 for (int i=0; i<N; i++) {
842 final NotificationListenerInfo info = mListeners.get(i);
843 if (info.listener.asBinder() == token) return info;
844 }
845 throw new SecurityException("Disallowed call from unknown listener: " + listener);
846 }
847
848 /**
849 * Allow an INotificationListener to simulate a "clear all" operation.
850 *
851 * {@see com.android.server.StatusBarManagerService.NotificationCallbacks#onClearAllNotifications}
852 *
853 * @param token The binder for the listener, to check that the caller is allowed
854 */
Daniel Sandlere6f7f2e2013-04-25 15:44:16 -0400855 public void cancelAllNotificationsFromListener(INotificationListener token) {
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700856 NotificationListenerInfo info = checkListenerToken(token);
857 long identity = Binder.clearCallingIdentity();
858 try {
859 cancelAll(info.userid);
860 } finally {
861 Binder.restoreCallingIdentity(identity);
862 }
863 }
864
865 /**
866 * Allow an INotificationListener to simulate clearing (dismissing) a single notification.
867 *
868 * {@see com.android.server.StatusBarManagerService.NotificationCallbacks#onNotificationClear}
869 *
870 * @param token The binder for the listener, to check that the caller is allowed
871 */
Daniel Sandlere6f7f2e2013-04-25 15:44:16 -0400872 public void cancelNotificationFromListener(INotificationListener token, String pkg, String tag, int id) {
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700873 NotificationListenerInfo info = checkListenerToken(token);
874 long identity = Binder.clearCallingIdentity();
875 try {
876 cancelNotification(pkg, tag, id, 0,
877 Notification.FLAG_ONGOING_EVENT | Notification.FLAG_FOREGROUND_SERVICE,
878 true,
879 info.userid);
880 } finally {
881 Binder.restoreCallingIdentity(identity);
882 }
883 }
884
Daniel Sandler25cf8ce2013-04-24 15:34:57 -0400885 /**
886 * Allow an INotificationListener to request the list of outstanding notifications seen by
887 * the current user. Useful when starting up, after which point the listener callbacks should
888 * be used.
889 *
890 * @param token The binder for the listener, to check that the caller is allowed
891 */
892 public StatusBarNotification[] getActiveNotificationsFromListener(INotificationListener token) {
893 NotificationListenerInfo info = checkListenerToken(token);
894
895 StatusBarNotification[] result = new StatusBarNotification[0];
896 ArrayList<StatusBarNotification> list = new ArrayList<StatusBarNotification>();
897 synchronized (mNotificationList) {
898 final int N = mNotificationList.size();
899 for (int i=0; i<N; i++) {
900 StatusBarNotification sbn = mNotificationList.get(i).sbn;
901 if (info.enabledAndUserMatches(sbn)) {
902 list.add(sbn);
903 }
904 }
905 }
906 return list.toArray(result);
907 }
908
Daniel Sandler5feceeb2013-03-22 18:29:23 -0700909 // -- end of listener APIs --
910
Daniel Sandlerfde19b12013-01-17 00:21:05 -0500911 public static final class NotificationRecord
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800912 {
Daniel Sandlerfde19b12013-01-17 00:21:05 -0500913 final StatusBarNotification sbn;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800914 IBinder statusBarKey;
915
Daniel Sandlerfde19b12013-01-17 00:21:05 -0500916 NotificationRecord(StatusBarNotification sbn)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800917 {
Daniel Sandlerfde19b12013-01-17 00:21:05 -0500918 this.sbn = sbn;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800919 }
Fred Quintana6ecaff12009-09-25 14:23:13 -0700920
Daniel Sandlere6f7f2e2013-04-25 15:44:16 -0400921 public Notification getNotification() { return sbn.getNotification(); }
922 public int getFlags() { return sbn.getNotification().flags; }
Daniel Sandlerfde19b12013-01-17 00:21:05 -0500923 public int getUserId() { return sbn.getUserId(); }
924
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800925 void dump(PrintWriter pw, String prefix, Context baseContext) {
Daniel Sandlere6f7f2e2013-04-25 15:44:16 -0400926 final Notification notification = sbn.getNotification();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800927 pw.println(prefix + this);
Daniel Sandlere6f7f2e2013-04-25 15:44:16 -0400928 pw.println(prefix + " uid=" + sbn.getUid() + " userId=" + sbn.getUserId());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800929 pw.println(prefix + " icon=0x" + Integer.toHexString(notification.icon)
Daniel Sandler4f91efd2013-04-25 16:38:41 -0400930 + " / " + idDebugString(baseContext, sbn.getPackageName(), notification.icon));
Daniel Sandlere6f7f2e2013-04-25 15:44:16 -0400931 pw.println(prefix + " pri=" + notification.priority + " score=" + sbn.getScore());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800932 pw.println(prefix + " contentIntent=" + notification.contentIntent);
933 pw.println(prefix + " deleteIntent=" + notification.deleteIntent);
934 pw.println(prefix + " tickerText=" + notification.tickerText);
935 pw.println(prefix + " contentView=" + notification.contentView);
Daniel Sandlerf45564e2013-04-15 15:05:08 -0400936 pw.println(prefix + String.format(" defaults=0x%08x flags=0x%08x",
937 notification.defaults, notification.flags));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800938 pw.println(prefix + " sound=" + notification.sound);
939 pw.println(prefix + " vibrate=" + Arrays.toString(notification.vibrate));
Daniel Sandlerf45564e2013-04-15 15:05:08 -0400940 pw.println(prefix + String.format(" led=0x%08x onMs=%d offMs=%d",
941 notification.ledARGB, notification.ledOnMS, notification.ledOffMS));
942 if (notification.actions != null && notification.actions.length > 0) {
943 pw.println(prefix + " actions={");
944 final int N = notification.actions.length;
945 for (int i=0; i<N; i++) {
946 final Notification.Action action = notification.actions[i];
947 pw.println(String.format("%s [%d] \"%s\" -> %s",
948 prefix,
949 i,
950 action.title,
951 action.actionIntent.toString()
952 ));
953 }
954 pw.println(prefix + " }");
955 }
956 if (notification.extras != null && notification.extras.size() > 0) {
957 pw.println(prefix + " extras={");
958 for (String key : notification.extras.keySet()) {
959 pw.print(prefix + " " + key + "=");
960 Object val = notification.extras.get(key);
961 if (val == null) {
962 pw.println("null");
963 } else {
964 pw.print(val.toString());
965 if (val instanceof Bitmap) {
966 pw.print(String.format(" (%dx%d)",
967 ((Bitmap) val).getWidth(),
968 ((Bitmap) val).getHeight()));
969 } else if (val.getClass().isArray()) {
970 pw.println(" {");
971 final int N = Array.getLength(val);
972 for (int i=0; i<N; i++) {
973 if (i > 0) pw.println(",");
974 pw.print(prefix + " " + Array.get(val, i));
975 }
976 pw.print("\n" + prefix + " }");
977 }
978 pw.println();
979 }
980 }
981 pw.println(prefix + " }");
982 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800983 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800984
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800985 @Override
Daniel Sandlerfde19b12013-01-17 00:21:05 -0500986 public final String toString() {
987 return String.format(
988 "NotificationRecord(0x%08x: pkg=%s user=%s id=%d tag=%s score=%d: %s)",
989 System.identityHashCode(this),
Daniel Sandler4f91efd2013-04-25 16:38:41 -0400990 this.sbn.getPackageName(), this.sbn.getUser(), this.sbn.getId(), this.sbn.getTag(),
Daniel Sandlere6f7f2e2013-04-25 15:44:16 -0400991 this.sbn.getScore(), this.sbn.getNotification());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800992 }
993 }
994
995 private static final class ToastRecord
996 {
997 final int pid;
998 final String pkg;
999 final ITransientNotification callback;
1000 int duration;
1001
1002 ToastRecord(int pid, String pkg, ITransientNotification callback, int duration)
1003 {
1004 this.pid = pid;
1005 this.pkg = pkg;
1006 this.callback = callback;
1007 this.duration = duration;
1008 }
1009
1010 void update(int duration) {
1011 this.duration = duration;
1012 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001013
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001014 void dump(PrintWriter pw, String prefix) {
1015 pw.println(prefix + this);
1016 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001017
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001018 @Override
1019 public final String toString()
1020 {
1021 return "ToastRecord{"
1022 + Integer.toHexString(System.identityHashCode(this))
1023 + " pkg=" + pkg
1024 + " callback=" + callback
1025 + " duration=" + duration;
1026 }
1027 }
1028
Joe Onorato089de882010-04-12 08:18:45 -07001029 private StatusBarManagerService.NotificationCallbacks mNotificationCallbacks
1030 = new StatusBarManagerService.NotificationCallbacks() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001031
1032 public void onSetDisabled(int status) {
1033 synchronized (mNotificationList) {
1034 mDisabledNotifications = status;
1035 if ((mDisabledNotifications & StatusBarManager.DISABLE_NOTIFICATION_ALERTS) != 0) {
1036 // cancel whatever's going on
1037 long identity = Binder.clearCallingIdentity();
1038 try {
Jeff Sharkey098d5802012-04-26 17:30:34 -07001039 final IRingtonePlayer player = mAudioService.getRingtonePlayer();
1040 if (player != null) {
1041 player.stopAsync();
1042 }
1043 } catch (RemoteException e) {
1044 } finally {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001045 Binder.restoreCallingIdentity(identity);
1046 }
1047
1048 identity = Binder.clearCallingIdentity();
1049 try {
1050 mVibrator.cancel();
Jeff Sharkey098d5802012-04-26 17:30:34 -07001051 } finally {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001052 Binder.restoreCallingIdentity(identity);
1053 }
1054 }
1055 }
1056 }
1057
1058 public void onClearAll() {
Dianne Hackborn41203752012-08-31 14:05:51 -07001059 // XXX to be totally correct, the caller should tell us which user
1060 // this is for.
1061 cancelAll(ActivityManager.getCurrentUser());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001062 }
1063
Fred Quintana6ecaff12009-09-25 14:23:13 -07001064 public void onNotificationClick(String pkg, String tag, int id) {
Dianne Hackborn41203752012-08-31 14:05:51 -07001065 // XXX to be totally correct, the caller should tell us which user
1066 // this is for.
Fred Quintana6ecaff12009-09-25 14:23:13 -07001067 cancelNotification(pkg, tag, id, Notification.FLAG_AUTO_CANCEL,
Dianne Hackborn41203752012-08-31 14:05:51 -07001068 Notification.FLAG_FOREGROUND_SERVICE, false,
1069 ActivityManager.getCurrentUser());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001070 }
1071
Daniel Sandler0f0b11c2010-08-04 15:54:58 -04001072 public void onNotificationClear(String pkg, String tag, int id) {
Dianne Hackborn41203752012-08-31 14:05:51 -07001073 // XXX to be totally correct, the caller should tell us which user
1074 // this is for.
Joe Onorato46439ce2010-11-19 13:56:21 -08001075 cancelNotification(pkg, tag, id, 0,
1076 Notification.FLAG_ONGOING_EVENT | Notification.FLAG_FOREGROUND_SERVICE,
Dianne Hackborn41203752012-08-31 14:05:51 -07001077 true, ActivityManager.getCurrentUser());
Daniel Sandler0f0b11c2010-08-04 15:54:58 -04001078 }
1079
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001080 public void onPanelRevealed() {
1081 synchronized (mNotificationList) {
1082 // sound
1083 mSoundNotification = null;
Jeff Sharkey098d5802012-04-26 17:30:34 -07001084
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001085 long identity = Binder.clearCallingIdentity();
1086 try {
Jeff Sharkey098d5802012-04-26 17:30:34 -07001087 final IRingtonePlayer player = mAudioService.getRingtonePlayer();
1088 if (player != null) {
1089 player.stopAsync();
1090 }
1091 } catch (RemoteException e) {
1092 } finally {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001093 Binder.restoreCallingIdentity(identity);
1094 }
1095
1096 // vibrate
1097 mVibrateNotification = null;
1098 identity = Binder.clearCallingIdentity();
1099 try {
1100 mVibrator.cancel();
Jeff Sharkey098d5802012-04-26 17:30:34 -07001101 } finally {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001102 Binder.restoreCallingIdentity(identity);
1103 }
1104
1105 // light
1106 mLights.clear();
1107 mLedNotification = null;
1108 updateLightsLocked();
1109 }
1110 }
Joe Onorato005847b2010-06-04 16:08:02 -04001111
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -07001112 public void onNotificationError(String pkg, String tag, int id,
1113 int uid, int initialPid, String message) {
Daniel Sandlerd0a2f862010-08-03 15:29:31 -04001114 Slog.d(TAG, "onNotification error pkg=" + pkg + " tag=" + tag + " id=" + id
1115 + "; will crashApplication(uid=" + uid + ", pid=" + initialPid + ")");
Dianne Hackborn41203752012-08-31 14:05:51 -07001116 // XXX to be totally correct, the caller should tell us which user
1117 // this is for.
1118 cancelNotification(pkg, tag, id, 0, 0, false, UserHandle.getUserId(uid));
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -07001119 long ident = Binder.clearCallingIdentity();
1120 try {
1121 ActivityManagerNative.getDefault().crashApplication(uid, initialPid, pkg,
1122 "Bad notification posted from package " + pkg
1123 + ": " + message);
1124 } catch (RemoteException e) {
1125 }
1126 Binder.restoreCallingIdentity(ident);
Joe Onorato005847b2010-06-04 16:08:02 -04001127 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001128 };
1129
1130 private BroadcastReceiver mIntentReceiver = new BroadcastReceiver() {
1131 @Override
1132 public void onReceive(Context context, Intent intent) {
1133 String action = intent.getAction();
1134
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001135 boolean queryRestart = false;
Chris Wrenae9bb572013-05-15 14:50:28 -04001136 boolean queryRemove = false;
Daniel Sandler26ece572012-06-01 15:38:46 -04001137 boolean packageChanged = false;
John Spurlock79f78922013-05-16 09:10:05 -04001138 boolean cancelNotifications = true;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001139
Chris Wren3da73022013-05-10 14:41:21 -04001140 if (action.equals(Intent.ACTION_PACKAGE_ADDED)
Chris Wrenae9bb572013-05-15 14:50:28 -04001141 || (queryRemove=action.equals(Intent.ACTION_PACKAGE_REMOVED))
Suchi Amalapurapu08675a32010-01-28 09:57:30 -08001142 || action.equals(Intent.ACTION_PACKAGE_RESTARTED)
Daniel Sandler26ece572012-06-01 15:38:46 -04001143 || (packageChanged=action.equals(Intent.ACTION_PACKAGE_CHANGED))
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001144 || (queryRestart=action.equals(Intent.ACTION_QUERY_PACKAGE_RESTART))
Suchi Amalapurapub56ae202010-02-04 22:51:07 -08001145 || action.equals(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE)) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -08001146 String pkgList[] = null;
Chris Wrenae9bb572013-05-15 14:50:28 -04001147 boolean queryReplace = queryRemove &&
1148 intent.getBooleanExtra(Intent.EXTRA_REPLACING, false);
1149 if (DBG) Slog.i(TAG, "queryReplace=" + queryReplace);
Suchi Amalapurapub56ae202010-02-04 22:51:07 -08001150 if (action.equals(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE)) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -08001151 pkgList = intent.getStringArrayExtra(Intent.EXTRA_CHANGED_PACKAGE_LIST);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001152 } else if (queryRestart) {
1153 pkgList = intent.getStringArrayExtra(Intent.EXTRA_PACKAGES);
Suchi Amalapurapu08675a32010-01-28 09:57:30 -08001154 } else {
1155 Uri uri = intent.getData();
1156 if (uri == null) {
1157 return;
1158 }
1159 String pkgName = uri.getSchemeSpecificPart();
1160 if (pkgName == null) {
1161 return;
1162 }
Daniel Sandler26ece572012-06-01 15:38:46 -04001163 if (packageChanged) {
1164 // We cancel notifications for packages which have just been disabled
1165 final int enabled = mContext.getPackageManager()
1166 .getApplicationEnabledSetting(pkgName);
1167 if (enabled == PackageManager.COMPONENT_ENABLED_STATE_ENABLED
1168 || enabled == PackageManager.COMPONENT_ENABLED_STATE_DEFAULT) {
John Spurlock79f78922013-05-16 09:10:05 -04001169 cancelNotifications = false;
Daniel Sandler26ece572012-06-01 15:38:46 -04001170 }
1171 }
Suchi Amalapurapu08675a32010-01-28 09:57:30 -08001172 pkgList = new String[]{pkgName};
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001173 }
Daniel Sandler5feceeb2013-03-22 18:29:23 -07001174
1175 boolean anyListenersInvolved = false;
Suchi Amalapurapu08675a32010-01-28 09:57:30 -08001176 if (pkgList != null && (pkgList.length > 0)) {
1177 for (String pkgName : pkgList) {
John Spurlock79f78922013-05-16 09:10:05 -04001178 if (cancelNotifications) {
1179 cancelAllNotificationsInt(pkgName, 0, 0, !queryRestart,
1180 UserHandle.USER_ALL);
1181 }
Daniel Sandler5feceeb2013-03-22 18:29:23 -07001182 if (mEnabledListenerPackageNames.contains(pkgName)) {
1183 anyListenersInvolved = true;
1184 }
Suchi Amalapurapu08675a32010-01-28 09:57:30 -08001185 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001186 }
Daniel Sandler5feceeb2013-03-22 18:29:23 -07001187
1188 if (anyListenersInvolved) {
Chris Wrenae9bb572013-05-15 14:50:28 -04001189 // if we're not replacing a package, clean up orphaned bits
1190 if (!queryReplace) {
1191 disableNonexistentListeners();
1192 }
Daniel Sandler5feceeb2013-03-22 18:29:23 -07001193 // make sure we're still bound to any of our
1194 // listeners who may have just upgraded
1195 rebindListenerServices();
1196 }
Mike Lockwood63b5ad92011-08-30 09:55:30 -04001197 } else if (action.equals(Intent.ACTION_SCREEN_ON)) {
1198 // Keep track of screen on/off state, but do not turn off the notification light
1199 // until user passes through the lock screen or views the notification.
1200 mScreenOn = true;
1201 } else if (action.equals(Intent.ACTION_SCREEN_OFF)) {
1202 mScreenOn = false;
Daniel Sandlere96ffb12010-03-11 13:38:06 -05001203 } else if (action.equals(TelephonyManager.ACTION_PHONE_STATE_CHANGED)) {
Mike Lockwood63b5ad92011-08-30 09:55:30 -04001204 mInCall = (intent.getStringExtra(TelephonyManager.EXTRA_STATE).equals(
1205 TelephonyManager.EXTRA_STATE_OFFHOOK));
Daniel Sandlere96ffb12010-03-11 13:38:06 -05001206 updateNotificationPulse();
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001207 } else if (action.equals(Intent.ACTION_USER_STOPPED)) {
1208 int userHandle = intent.getIntExtra(Intent.EXTRA_USER_HANDLE, -1);
1209 if (userHandle >= 0) {
Dianne Hackborn41203752012-08-31 14:05:51 -07001210 cancelAllNotificationsInt(null, 0, 0, true, userHandle);
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001211 }
Mike Lockwood63b5ad92011-08-30 09:55:30 -04001212 } else if (action.equals(Intent.ACTION_USER_PRESENT)) {
1213 // turn off LED when user passes through lock screen
1214 mNotificationLight.turnOff();
Daniel Sandler4b749ef2013-03-18 21:53:04 -04001215 } else if (action.equals(Intent.ACTION_USER_SWITCHED)) {
1216 // reload per-user settings
1217 mSettingsObserver.update(null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001218 }
1219 }
1220 };
1221
Dianne Hackborn1dac2772009-06-26 18:16:48 -07001222 class SettingsObserver extends ContentObserver {
Daniel Sandler4b749ef2013-03-18 21:53:04 -04001223 private final Uri NOTIFICATION_LIGHT_PULSE_URI
1224 = Settings.System.getUriFor(Settings.System.NOTIFICATION_LIGHT_PULSE);
1225
1226 private final Uri ENABLED_NOTIFICATION_LISTENERS_URI
Daniel Sandler5feceeb2013-03-22 18:29:23 -07001227 = Settings.Secure.getUriFor(Settings.Secure.ENABLED_NOTIFICATION_LISTENERS);
Daniel Sandler4b749ef2013-03-18 21:53:04 -04001228
Dianne Hackborn1dac2772009-06-26 18:16:48 -07001229 SettingsObserver(Handler handler) {
1230 super(handler);
1231 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001232
Dianne Hackborn1dac2772009-06-26 18:16:48 -07001233 void observe() {
1234 ContentResolver resolver = mContext.getContentResolver();
Daniel Sandler4b749ef2013-03-18 21:53:04 -04001235 resolver.registerContentObserver(NOTIFICATION_LIGHT_PULSE_URI,
Daniel Sandler5feceeb2013-03-22 18:29:23 -07001236 false, this, UserHandle.USER_ALL);
Daniel Sandler4b749ef2013-03-18 21:53:04 -04001237 resolver.registerContentObserver(ENABLED_NOTIFICATION_LISTENERS_URI,
Daniel Sandler5feceeb2013-03-22 18:29:23 -07001238 false, this, UserHandle.USER_ALL);
Daniel Sandler4b749ef2013-03-18 21:53:04 -04001239 update(null);
Dianne Hackborn1dac2772009-06-26 18:16:48 -07001240 }
1241
Daniel Sandler4b749ef2013-03-18 21:53:04 -04001242 @Override public void onChange(boolean selfChange, Uri uri) {
1243 update(uri);
Dianne Hackborn1dac2772009-06-26 18:16:48 -07001244 }
1245
Daniel Sandler4b749ef2013-03-18 21:53:04 -04001246 public void update(Uri uri) {
Dianne Hackborn1dac2772009-06-26 18:16:48 -07001247 ContentResolver resolver = mContext.getContentResolver();
Daniel Sandler4b749ef2013-03-18 21:53:04 -04001248 if (uri == null || NOTIFICATION_LIGHT_PULSE_URI.equals(uri)) {
1249 boolean pulseEnabled = Settings.System.getInt(resolver,
1250 Settings.System.NOTIFICATION_LIGHT_PULSE, 0) != 0;
1251 if (mNotificationPulseEnabled != pulseEnabled) {
1252 mNotificationPulseEnabled = pulseEnabled;
1253 updateNotificationPulse();
1254 }
1255 }
1256 if (uri == null || ENABLED_NOTIFICATION_LISTENERS_URI.equals(uri)) {
Daniel Sandler5feceeb2013-03-22 18:29:23 -07001257 rebindListenerServices();
Mike Lockwoodc22404a2009-12-02 11:15:02 -05001258 }
Dianne Hackborn1dac2772009-06-26 18:16:48 -07001259 }
1260 }
Mike Lockwoodc22404a2009-12-02 11:15:02 -05001261
Daniel Sandler4b749ef2013-03-18 21:53:04 -04001262 private SettingsObserver mSettingsObserver;
1263
Daniel Sandleredbb3802012-11-13 20:49:47 -08001264 static long[] getLongArray(Resources r, int resid, int maxlen, long[] def) {
1265 int[] ar = r.getIntArray(resid);
1266 if (ar == null) {
1267 return def;
1268 }
1269 final int len = ar.length > maxlen ? maxlen : ar.length;
1270 long[] out = new long[len];
1271 for (int i=0; i<len; i++) {
1272 out[i] = ar[i];
1273 }
1274 return out;
1275 }
1276
Joe Onorato089de882010-04-12 08:18:45 -07001277 NotificationManagerService(Context context, StatusBarManagerService statusBar,
Mike Lockwood3a322132009-11-24 00:30:52 -05001278 LightsService lights)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001279 {
1280 super();
1281 mContext = context;
Jeff Brownc2346132012-04-13 01:55:38 -07001282 mVibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001283 mAm = ActivityManagerNative.getDefault();
Daniel Sandler4b749ef2013-03-18 21:53:04 -04001284 mUserManager = (UserManager)context.getSystemService(Context.USER_SERVICE);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001285 mToastQueue = new ArrayList<ToastRecord>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001286 mHandler = new WorkerHandler();
San Mehat3ee13172010-02-04 20:54:43 -08001287
Daniel Sandler4a900ac2013-01-30 14:04:10 -05001288 mAppOps = (AppOpsManager)context.getSystemService(Context.APP_OPS_SERVICE);
1289
1290 importOldBlockDb();
Daniel Sandler0da673f2012-04-11 12:33:16 -04001291
Joe Onorato089de882010-04-12 08:18:45 -07001292 mStatusBar = statusBar;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001293 statusBar.setNotificationCallbacks(mNotificationCallbacks);
1294
Mike Lockwood3cb67a32009-11-27 14:25:58 -05001295 mNotificationLight = lights.getLight(LightsService.LIGHT_ID_NOTIFICATIONS);
1296 mAttentionLight = lights.getLight(LightsService.LIGHT_ID_ATTENTION);
1297
Mike Lockwood670f9322010-01-20 12:13:36 -05001298 Resources resources = mContext.getResources();
1299 mDefaultNotificationColor = resources.getColor(
1300 com.android.internal.R.color.config_defaultNotificationColor);
1301 mDefaultNotificationLedOn = resources.getInteger(
1302 com.android.internal.R.integer.config_defaultNotificationLedOn);
1303 mDefaultNotificationLedOff = resources.getInteger(
1304 com.android.internal.R.integer.config_defaultNotificationLedOff);
1305
Daniel Sandleredbb3802012-11-13 20:49:47 -08001306 mDefaultVibrationPattern = getLongArray(resources,
1307 com.android.internal.R.array.config_defaultNotificationVibePattern,
1308 VIBRATE_PATTERN_MAXLEN,
1309 DEFAULT_VIBRATE_PATTERN);
1310
1311 mFallbackVibrationPattern = getLongArray(resources,
1312 com.android.internal.R.array.config_notificationFallbackVibePattern,
1313 VIBRATE_PATTERN_MAXLEN,
1314 DEFAULT_VIBRATE_PATTERN);
1315
Joe Onorato39f5b6a2009-07-23 12:29:19 -04001316 // Don't start allowing notifications until the setup wizard has run once.
1317 // After that, including subsequent boots, init with notifications turned on.
1318 // This works on the first boot because the setup wizard will toggle this
1319 // flag at least once and we'll go back to 0 after that.
Jeff Brownbf6f6f92012-09-25 15:03:20 -07001320 if (0 == Settings.Global.getInt(mContext.getContentResolver(),
1321 Settings.Global.DEVICE_PROVISIONED, 0)) {
Joe Onorato39f5b6a2009-07-23 12:29:19 -04001322 mDisabledNotifications = StatusBarManager.DISABLE_NOTIFICATION_ALERTS;
1323 }
1324
Mike Lockwood35e16bf2010-11-30 19:53:36 -05001325 // register for various Intents
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001326 IntentFilter filter = new IntentFilter();
Mike Lockwoodc22404a2009-12-02 11:15:02 -05001327 filter.addAction(Intent.ACTION_SCREEN_ON);
1328 filter.addAction(Intent.ACTION_SCREEN_OFF);
Daniel Sandlere96ffb12010-03-11 13:38:06 -05001329 filter.addAction(TelephonyManager.ACTION_PHONE_STATE_CHANGED);
Mike Lockwood63b5ad92011-08-30 09:55:30 -04001330 filter.addAction(Intent.ACTION_USER_PRESENT);
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001331 filter.addAction(Intent.ACTION_USER_STOPPED);
Daniel Sandler4b749ef2013-03-18 21:53:04 -04001332 filter.addAction(Intent.ACTION_USER_SWITCHED);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001333 mContext.registerReceiver(mIntentReceiver, filter);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001334 IntentFilter pkgFilter = new IntentFilter();
Chris Wren3da73022013-05-10 14:41:21 -04001335 pkgFilter.addAction(Intent.ACTION_PACKAGE_ADDED);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001336 pkgFilter.addAction(Intent.ACTION_PACKAGE_REMOVED);
Daniel Sandleraac0eb02011-08-06 22:51:56 -04001337 pkgFilter.addAction(Intent.ACTION_PACKAGE_CHANGED);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001338 pkgFilter.addAction(Intent.ACTION_PACKAGE_RESTARTED);
1339 pkgFilter.addAction(Intent.ACTION_QUERY_PACKAGE_RESTART);
1340 pkgFilter.addDataScheme("package");
1341 mContext.registerReceiver(mIntentReceiver, pkgFilter);
Suchi Amalapurapub56ae202010-02-04 22:51:07 -08001342 IntentFilter sdFilter = new IntentFilter(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
Suchi Amalapurapu08675a32010-01-28 09:57:30 -08001343 mContext.registerReceiver(mIntentReceiver, sdFilter);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001344
Daniel Sandler4b749ef2013-03-18 21:53:04 -04001345 mSettingsObserver = new SettingsObserver(mHandler);
1346 mSettingsObserver.observe();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001347 }
1348
Daniel Sandler4a900ac2013-01-30 14:04:10 -05001349 /**
1350 * Read the old XML-based app block database and import those blockages into the AppOps system.
1351 */
1352 private void importOldBlockDb() {
1353 loadBlockDb();
1354
1355 PackageManager pm = mContext.getPackageManager();
1356 for (String pkg : mBlockedPackages) {
1357 PackageInfo info = null;
1358 try {
1359 info = pm.getPackageInfo(pkg, 0);
1360 setNotificationsEnabledForPackage(pkg, info.applicationInfo.uid, false);
1361 } catch (NameNotFoundException e) {
1362 // forget you
1363 }
1364 }
1365 mBlockedPackages.clear();
1366 if (mPolicyFile != null) {
1367 mPolicyFile.delete();
1368 }
1369 }
1370
Joe Onorato30275482009-07-08 17:09:14 -07001371 void systemReady() {
Jeff Sharkey098d5802012-04-26 17:30:34 -07001372 mAudioService = IAudioService.Stub.asInterface(
1373 ServiceManager.getService(Context.AUDIO_SERVICE));
1374
Joe Onorato30275482009-07-08 17:09:14 -07001375 // no beeping until we're basically done booting
1376 mSystemReady = true;
Daniel Sandler5feceeb2013-03-22 18:29:23 -07001377
1378 // make sure our listener services are properly bound
1379 rebindListenerServices();
Joe Onorato30275482009-07-08 17:09:14 -07001380 }
1381
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001382 // Toasts
1383 // ============================================================================
1384 public void enqueueToast(String pkg, ITransientNotification callback, int duration)
1385 {
Daniel Sandlera7035902010-03-30 15:45:31 -04001386 if (DBG) Slog.i(TAG, "enqueueToast pkg=" + pkg + " callback=" + callback + " duration=" + duration);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001387
1388 if (pkg == null || callback == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001389 Slog.e(TAG, "Not doing toast. pkg=" + pkg + " callback=" + callback);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001390 return ;
1391 }
1392
Daniel Sandler7c011302013-06-10 12:06:51 -04001393 final boolean isSystemToast = isCallerSystem() || ("android".equals(pkg));
Daniel Sandler0da673f2012-04-11 12:33:16 -04001394
Daniel Sandler4a900ac2013-01-30 14:04:10 -05001395 if (ENABLE_BLOCKED_TOASTS && !noteNotificationOp(pkg, Binder.getCallingUid())) {
1396 if (!isSystemToast) {
1397 Slog.e(TAG, "Suppressing toast from package " + pkg + " by user request.");
1398 return;
1399 }
Daniel Sandler0da673f2012-04-11 12:33:16 -04001400 }
1401
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001402 synchronized (mToastQueue) {
1403 int callingPid = Binder.getCallingPid();
1404 long callingId = Binder.clearCallingIdentity();
1405 try {
1406 ToastRecord record;
1407 int index = indexOfToastLocked(pkg, callback);
1408 // If it's already in the queue, we update it in place, we don't
1409 // move it to the end of the queue.
1410 if (index >= 0) {
1411 record = mToastQueue.get(index);
1412 record.update(duration);
1413 } else {
Vairavan Srinivasanf9eb06c2011-01-21 18:08:36 -08001414 // Limit the number of toasts that any given package except the android
1415 // package can enqueue. Prevents DOS attacks and deals with leaks.
Daniel Sandler0da673f2012-04-11 12:33:16 -04001416 if (!isSystemToast) {
Vairavan Srinivasanf9eb06c2011-01-21 18:08:36 -08001417 int count = 0;
1418 final int N = mToastQueue.size();
1419 for (int i=0; i<N; i++) {
1420 final ToastRecord r = mToastQueue.get(i);
1421 if (r.pkg.equals(pkg)) {
1422 count++;
1423 if (count >= MAX_PACKAGE_NOTIFICATIONS) {
1424 Slog.e(TAG, "Package has already posted " + count
1425 + " toasts. Not showing more. Package=" + pkg);
1426 return;
1427 }
1428 }
1429 }
1430 }
1431
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001432 record = new ToastRecord(callingPid, pkg, callback, duration);
1433 mToastQueue.add(record);
1434 index = mToastQueue.size() - 1;
1435 keepProcessAliveLocked(callingPid);
1436 }
1437 // If it's at index 0, it's the current toast. It doesn't matter if it's
1438 // new or just been updated. Call back and tell it to show itself.
1439 // If the callback fails, this will remove it from the list, so don't
1440 // assume that it's valid after this.
1441 if (index == 0) {
1442 showNextToastLocked();
1443 }
1444 } finally {
1445 Binder.restoreCallingIdentity(callingId);
1446 }
1447 }
1448 }
1449
1450 public void cancelToast(String pkg, ITransientNotification callback) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001451 Slog.i(TAG, "cancelToast pkg=" + pkg + " callback=" + callback);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001452
1453 if (pkg == null || callback == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001454 Slog.e(TAG, "Not cancelling notification. pkg=" + pkg + " callback=" + callback);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001455 return ;
1456 }
1457
1458 synchronized (mToastQueue) {
1459 long callingId = Binder.clearCallingIdentity();
1460 try {
1461 int index = indexOfToastLocked(pkg, callback);
1462 if (index >= 0) {
1463 cancelToastLocked(index);
1464 } else {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001465 Slog.w(TAG, "Toast already cancelled. pkg=" + pkg + " callback=" + callback);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001466 }
1467 } finally {
1468 Binder.restoreCallingIdentity(callingId);
1469 }
1470 }
1471 }
1472
1473 private void showNextToastLocked() {
1474 ToastRecord record = mToastQueue.get(0);
1475 while (record != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001476 if (DBG) Slog.d(TAG, "Show pkg=" + record.pkg + " callback=" + record.callback);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001477 try {
1478 record.callback.show();
1479 scheduleTimeoutLocked(record, false);
1480 return;
1481 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001482 Slog.w(TAG, "Object died trying to show notification " + record.callback
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001483 + " in package " + record.pkg);
1484 // remove it from the list and let the process die
1485 int index = mToastQueue.indexOf(record);
1486 if (index >= 0) {
1487 mToastQueue.remove(index);
1488 }
1489 keepProcessAliveLocked(record.pid);
1490 if (mToastQueue.size() > 0) {
1491 record = mToastQueue.get(0);
1492 } else {
1493 record = null;
1494 }
1495 }
1496 }
1497 }
1498
1499 private void cancelToastLocked(int index) {
1500 ToastRecord record = mToastQueue.get(index);
1501 try {
1502 record.callback.hide();
1503 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001504 Slog.w(TAG, "Object died trying to hide notification " + record.callback
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001505 + " in package " + record.pkg);
1506 // don't worry about this, we're about to remove it from
1507 // the list anyway
1508 }
1509 mToastQueue.remove(index);
1510 keepProcessAliveLocked(record.pid);
1511 if (mToastQueue.size() > 0) {
1512 // Show the next one. If the callback fails, this will remove
1513 // it from the list, so don't assume that the list hasn't changed
1514 // after this point.
1515 showNextToastLocked();
1516 }
1517 }
1518
1519 private void scheduleTimeoutLocked(ToastRecord r, boolean immediate)
1520 {
1521 Message m = Message.obtain(mHandler, MESSAGE_TIMEOUT, r);
1522 long delay = immediate ? 0 : (r.duration == Toast.LENGTH_LONG ? LONG_DELAY : SHORT_DELAY);
1523 mHandler.removeCallbacksAndMessages(r);
1524 mHandler.sendMessageDelayed(m, delay);
1525 }
1526
1527 private void handleTimeout(ToastRecord record)
1528 {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001529 if (DBG) Slog.d(TAG, "Timeout pkg=" + record.pkg + " callback=" + record.callback);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001530 synchronized (mToastQueue) {
1531 int index = indexOfToastLocked(record.pkg, record.callback);
1532 if (index >= 0) {
1533 cancelToastLocked(index);
1534 }
1535 }
1536 }
1537
1538 // lock on mToastQueue
1539 private int indexOfToastLocked(String pkg, ITransientNotification callback)
1540 {
1541 IBinder cbak = callback.asBinder();
1542 ArrayList<ToastRecord> list = mToastQueue;
1543 int len = list.size();
1544 for (int i=0; i<len; i++) {
1545 ToastRecord r = list.get(i);
1546 if (r.pkg.equals(pkg) && r.callback.asBinder() == cbak) {
1547 return i;
1548 }
1549 }
1550 return -1;
1551 }
1552
1553 // lock on mToastQueue
1554 private void keepProcessAliveLocked(int pid)
1555 {
1556 int toastCount = 0; // toasts from this pid
1557 ArrayList<ToastRecord> list = mToastQueue;
1558 int N = list.size();
1559 for (int i=0; i<N; i++) {
1560 ToastRecord r = list.get(i);
1561 if (r.pid == pid) {
1562 toastCount++;
1563 }
1564 }
1565 try {
1566 mAm.setProcessForeground(mForegroundToken, pid, toastCount > 0);
1567 } catch (RemoteException e) {
1568 // Shouldn't happen.
1569 }
1570 }
1571
1572 private final class WorkerHandler extends Handler
1573 {
1574 @Override
1575 public void handleMessage(Message msg)
1576 {
1577 switch (msg.what)
1578 {
1579 case MESSAGE_TIMEOUT:
1580 handleTimeout((ToastRecord)msg.obj);
1581 break;
1582 }
1583 }
1584 }
1585
1586
1587 // Notifications
1588 // ============================================================================
Dianne Hackbornf265ea92013-01-31 15:00:51 -08001589 public void enqueueNotificationWithTag(String pkg, String basePkg, String tag, int id,
1590 Notification notification, int[] idOut, int userId)
Fred Quintana6ecaff12009-09-25 14:23:13 -07001591 {
Dianne Hackbornf265ea92013-01-31 15:00:51 -08001592 enqueueNotificationInternal(pkg, basePkg, Binder.getCallingUid(), Binder.getCallingPid(),
Dianne Hackborn41203752012-08-31 14:05:51 -07001593 tag, id, notification, idOut, userId);
Daniel Sandlerd0a2f862010-08-03 15:29:31 -04001594 }
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001595
1596 private final static int clamp(int x, int low, int high) {
1597 return (x < low) ? low : ((x > high) ? high : x);
Daniel Sandlere40451a2011-02-03 14:51:35 -05001598 }
1599
Daniel Sandlerd0a2f862010-08-03 15:29:31 -04001600 // Not exposed via Binder; for system use only (otherwise malicious apps could spoof the
1601 // uid/pid of another application)
Dianne Hackbornf265ea92013-01-31 15:00:51 -08001602 public void enqueueNotificationInternal(String pkg, String basePkg, int callingUid,
1603 int callingPid, String tag, int id, Notification notification, int[] idOut, int userId)
Daniel Sandlerd0a2f862010-08-03 15:29:31 -04001604 {
Daniel Sandler0da673f2012-04-11 12:33:16 -04001605 if (DBG) {
1606 Slog.v(TAG, "enqueueNotificationInternal: pkg=" + pkg + " id=" + id + " notification=" + notification);
1607 }
1608 checkCallerIsSystemOrSameApp(pkg);
Daniel Sandler7c011302013-06-10 12:06:51 -04001609 final boolean isSystemNotification = isCallerSystem() || ("android".equals(pkg));
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001610
Dianne Hackborn41203752012-08-31 14:05:51 -07001611 userId = ActivityManager.handleIncomingUser(callingPid,
Amith Yamasani2c7ebea2012-10-30 15:28:27 -07001612 callingUid, userId, true, false, "enqueueNotification", pkg);
Jeff Sharkey65c4a2b2012-09-25 17:22:27 -07001613 final UserHandle user = new UserHandle(userId);
Dianne Hackborn41203752012-08-31 14:05:51 -07001614
Joe Onoratobd73d012010-06-04 11:44:54 -07001615 // Limit the number of notifications that any given package except the android
1616 // package can enqueue. Prevents DOS attacks and deals with leaks.
Daniel Sandler0da673f2012-04-11 12:33:16 -04001617 if (!isSystemNotification) {
Joe Onoratobd73d012010-06-04 11:44:54 -07001618 synchronized (mNotificationList) {
1619 int count = 0;
1620 final int N = mNotificationList.size();
1621 for (int i=0; i<N; i++) {
1622 final NotificationRecord r = mNotificationList.get(i);
Daniel Sandler4f91efd2013-04-25 16:38:41 -04001623 if (r.sbn.getPackageName().equals(pkg) && r.sbn.getUserId() == userId) {
Joe Onoratobd73d012010-06-04 11:44:54 -07001624 count++;
1625 if (count >= MAX_PACKAGE_NOTIFICATIONS) {
1626 Slog.e(TAG, "Package has already posted " + count
1627 + " notifications. Not showing more. package=" + pkg);
1628 return;
1629 }
1630 }
1631 }
1632 }
1633 }
1634
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001635 // This conditional is a dirty hack to limit the logging done on
1636 // behalf of the download manager without affecting other apps.
1637 if (!pkg.equals("com.android.providers.downloads")
1638 || Log.isLoggable("DownloadManager", Log.VERBOSE)) {
Daniel Sandler321e9c52012-10-12 10:59:26 -07001639 EventLog.writeEvent(EventLogTags.NOTIFICATION_ENQUEUE, pkg, id, tag, userId,
Daniel Sandlerb64cb882011-11-29 23:48:29 -05001640 notification.toString());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001641 }
1642
1643 if (pkg == null || notification == null) {
1644 throw new IllegalArgumentException("null not allowed: pkg=" + pkg
1645 + " id=" + id + " notification=" + notification);
1646 }
1647 if (notification.icon != 0) {
1648 if (notification.contentView == null) {
1649 throw new IllegalArgumentException("contentView required: pkg=" + pkg
1650 + " id=" + id + " notification=" + notification);
1651 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001652 }
1653
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001654 // === Scoring ===
Daniel Sandler0da673f2012-04-11 12:33:16 -04001655
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001656 // 0. Sanitize inputs
1657 notification.priority = clamp(notification.priority, Notification.PRIORITY_MIN, Notification.PRIORITY_MAX);
1658 // Migrate notification flags to scores
1659 if (0 != (notification.flags & Notification.FLAG_HIGH_PRIORITY)) {
1660 if (notification.priority < Notification.PRIORITY_MAX) notification.priority = Notification.PRIORITY_MAX;
Daniel Sandler49a2ad12012-03-28 15:46:39 -04001661 } else if (SCORE_ONGOING_HIGHER && 0 != (notification.flags & Notification.FLAG_ONGOING_EVENT)) {
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001662 if (notification.priority < Notification.PRIORITY_HIGH) notification.priority = Notification.PRIORITY_HIGH;
1663 }
Daniel Sandler0da673f2012-04-11 12:33:16 -04001664
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001665 // 1. initial score: buckets of 10, around the app
Daniel Sandler0da673f2012-04-11 12:33:16 -04001666 int score = notification.priority * NOTIFICATION_PRIORITY_MULTIPLIER; //[-20..20]
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001667
Daniel Sandler0da673f2012-04-11 12:33:16 -04001668 // 2. Consult external heuristics (TBD)
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001669
Daniel Sandler0da673f2012-04-11 12:33:16 -04001670 // 3. Apply local rules
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001671
1672 // blocked apps
Daniel Sandler4a900ac2013-01-30 14:04:10 -05001673 if (ENABLE_BLOCKED_NOTIFICATIONS && !noteNotificationOp(pkg, callingUid)) {
1674 if (!isSystemNotification) {
1675 score = JUNK_SCORE;
1676 Slog.e(TAG, "Suppressing notification from package " + pkg + " by user request.");
1677 }
Daniel Sandler0da673f2012-04-11 12:33:16 -04001678 }
1679
1680 if (DBG) {
1681 Slog.v(TAG, "Assigned score=" + score + " to " + notification);
1682 }
1683
1684 if (score < SCORE_DISPLAY_THRESHOLD) {
1685 // Notification will be blocked because the score is too low.
1686 return;
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001687 }
1688
Daniel Sandler526fa0e2012-12-04 14:51:50 -05001689 // Should this notification make noise, vibe, or use the LED?
1690 final boolean canInterrupt = (score >= SCORE_INTERRUPTION_THRESHOLD);
1691
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001692 synchronized (mNotificationList) {
Daniel Sandlerfde19b12013-01-17 00:21:05 -05001693 final StatusBarNotification n = new StatusBarNotification(
1694 pkg, id, tag, callingUid, callingPid, score, notification, user);
1695 NotificationRecord r = new NotificationRecord(n);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001696 NotificationRecord old = null;
1697
Dianne Hackborn41203752012-08-31 14:05:51 -07001698 int index = indexOfNotificationLocked(pkg, tag, id, userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001699 if (index < 0) {
1700 mNotificationList.add(r);
1701 } else {
1702 old = mNotificationList.remove(index);
1703 mNotificationList.add(index, r);
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07001704 // Make sure we don't lose the foreground service state.
1705 if (old != null) {
1706 notification.flags |=
Daniel Sandlerfde19b12013-01-17 00:21:05 -05001707 old.getNotification().flags&Notification.FLAG_FOREGROUND_SERVICE;
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07001708 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001709 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001710
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07001711 // Ensure if this is a foreground service that the proper additional
1712 // flags are set.
1713 if ((notification.flags&Notification.FLAG_FOREGROUND_SERVICE) != 0) {
1714 notification.flags |= Notification.FLAG_ONGOING_EVENT
1715 | Notification.FLAG_NO_CLEAR;
1716 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001717
Svetoslav Ganovc31ed392012-10-10 14:58:28 -07001718 final int currentUser;
1719 final long token = Binder.clearCallingIdentity();
1720 try {
1721 currentUser = ActivityManager.getCurrentUser();
1722 } finally {
1723 Binder.restoreCallingIdentity(token);
1724 }
1725
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001726 if (notification.icon != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001727 if (old != null && old.statusBarKey != null) {
1728 r.statusBarKey = old.statusBarKey;
1729 long identity = Binder.clearCallingIdentity();
1730 try {
Joe Onorato18e69df2010-05-17 22:26:12 -07001731 mStatusBar.updateNotification(r.statusBarKey, n);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001732 }
1733 finally {
1734 Binder.restoreCallingIdentity(identity);
1735 }
1736 } else {
1737 long identity = Binder.clearCallingIdentity();
1738 try {
Joe Onorato18e69df2010-05-17 22:26:12 -07001739 r.statusBarKey = mStatusBar.addNotification(n);
Daniel Sandlere6f7f2e2013-04-25 15:44:16 -04001740 if ((n.getNotification().flags & Notification.FLAG_SHOW_LIGHTS) != 0
Daniel Sandler526fa0e2012-12-04 14:51:50 -05001741 && canInterrupt) {
Mike Lockwoodece18ef2012-02-13 20:42:19 -08001742 mAttentionLight.pulse();
1743 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001744 }
1745 finally {
1746 Binder.restoreCallingIdentity(identity);
1747 }
1748 }
Svetoslav Ganovc31ed392012-10-10 14:58:28 -07001749 // Send accessibility events only for the current user.
1750 if (currentUser == userId) {
1751 sendAccessibilityEvent(notification, pkg);
1752 }
Daniel Sandlerfde19b12013-01-17 00:21:05 -05001753
Daniel Sandler09a247e2013-02-14 10:24:17 -05001754 notifyPostedLocked(r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001755 } else {
Daniel Sandlerffcc9762013-05-22 14:24:20 -04001756 Slog.e(TAG, "Not posting notification with icon==0: " + notification);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001757 if (old != null && old.statusBarKey != null) {
1758 long identity = Binder.clearCallingIdentity();
1759 try {
Joe Onorato0cbda992010-05-02 16:28:15 -07001760 mStatusBar.removeNotification(old.statusBarKey);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001761 }
1762 finally {
1763 Binder.restoreCallingIdentity(identity);
1764 }
Daniel Sandler09a247e2013-02-14 10:24:17 -05001765
1766 notifyRemovedLocked(r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001767 }
Daniel Sandlerffcc9762013-05-22 14:24:20 -04001768 // ATTENTION: in a future release we will bail out here
1769 // so that we do not play sounds, show lights, etc. for invalid notifications
1770 Slog.e(TAG, "WARNING: In a future release this will crash the app: " + n.getPackageName());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001771 }
1772
1773 // If we're not supposed to beep, vibrate, etc. then don't.
1774 if (((mDisabledNotifications & StatusBarManager.DISABLE_NOTIFICATION_ALERTS) == 0)
1775 && (!(old != null
Joe Onorato30275482009-07-08 17:09:14 -07001776 && (notification.flags & Notification.FLAG_ONLY_ALERT_ONCE) != 0 ))
Daniel Sandlerfde19b12013-01-17 00:21:05 -05001777 && (r.getUserId() == UserHandle.USER_ALL ||
1778 (r.getUserId() == userId && r.getUserId() == currentUser))
Daniel Sandler526fa0e2012-12-04 14:51:50 -05001779 && canInterrupt
Joe Onorato30275482009-07-08 17:09:14 -07001780 && mSystemReady) {
Eric Laurent524dc042009-11-27 05:07:55 -08001781
1782 final AudioManager audioManager = (AudioManager) mContext
1783 .getSystemService(Context.AUDIO_SERVICE);
Daniel Sandlerd4d2de22012-11-14 11:25:46 -08001784
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001785 // sound
Daniel Sandler31475232013-04-17 00:17:22 -04001786
1787 // should we use the default notification sound? (indicated either by DEFAULT_SOUND
1788 // or because notification.sound is pointing at Settings.System.NOTIFICATION_SOUND)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001789 final boolean useDefaultSound =
Daniel Sandler31475232013-04-17 00:17:22 -04001790 (notification.defaults & Notification.DEFAULT_SOUND) != 0
1791 || Settings.System.DEFAULT_NOTIFICATION_URI.equals(notification.sound);
Daniel Sandlerd4d2de22012-11-14 11:25:46 -08001792
1793 Uri soundUri = null;
1794 boolean hasValidSound = false;
1795
1796 if (useDefaultSound) {
1797 soundUri = Settings.System.DEFAULT_NOTIFICATION_URI;
1798
1799 // check to see if the default notification sound is silent
1800 ContentResolver resolver = mContext.getContentResolver();
1801 hasValidSound = Settings.System.getString(resolver,
1802 Settings.System.NOTIFICATION_SOUND) != null;
1803 } else if (notification.sound != null) {
1804 soundUri = notification.sound;
1805 hasValidSound = (soundUri != null);
1806 }
1807
1808 if (hasValidSound) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001809 boolean looping = (notification.flags & Notification.FLAG_INSISTENT) != 0;
1810 int audioStreamType;
1811 if (notification.audioStreamType >= 0) {
1812 audioStreamType = notification.audioStreamType;
1813 } else {
1814 audioStreamType = DEFAULT_STREAM_TYPE;
1815 }
1816 mSoundNotification = r;
Eric Laurent524dc042009-11-27 05:07:55 -08001817 // do not play notifications if stream volume is 0
Jean-Michel Trivid6770542012-10-10 12:03:41 -07001818 // (typically because ringer mode is silent) or if speech recognition is active.
1819 if ((audioManager.getStreamVolume(audioStreamType) != 0)
1820 && !audioManager.isSpeechRecognitionActive()) {
Jeff Sharkey098d5802012-04-26 17:30:34 -07001821 final long identity = Binder.clearCallingIdentity();
Eric Laurent524dc042009-11-27 05:07:55 -08001822 try {
Jeff Sharkey098d5802012-04-26 17:30:34 -07001823 final IRingtonePlayer player = mAudioService.getRingtonePlayer();
1824 if (player != null) {
Daniel Sandlerd4d2de22012-11-14 11:25:46 -08001825 player.playAsync(soundUri, user, looping, audioStreamType);
Jeff Sharkey098d5802012-04-26 17:30:34 -07001826 }
1827 } catch (RemoteException e) {
1828 } finally {
Eric Laurent524dc042009-11-27 05:07:55 -08001829 Binder.restoreCallingIdentity(identity);
1830 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001831 }
1832 }
1833
1834 // vibrate
Daniel Sandleredbb3802012-11-13 20:49:47 -08001835 // Does the notification want to specify its own vibration?
1836 final boolean hasCustomVibrate = notification.vibrate != null;
1837
David Agnew71789e12012-11-09 23:03:26 -05001838 // new in 4.2: if there was supposed to be a sound and we're in vibrate mode,
Daniel Sandler4a7a9b92012-11-20 12:59:41 -05001839 // and no other vibration is specified, we fall back to vibration
David Agnew71789e12012-11-09 23:03:26 -05001840 final boolean convertSoundToVibration =
Daniel Sandleredbb3802012-11-13 20:49:47 -08001841 !hasCustomVibrate
Daniel Sandlerd4d2de22012-11-14 11:25:46 -08001842 && hasValidSound
David Agnew71789e12012-11-09 23:03:26 -05001843 && (audioManager.getRingerMode() == AudioManager.RINGER_MODE_VIBRATE);
1844
Daniel Sandler4a7a9b92012-11-20 12:59:41 -05001845 // The DEFAULT_VIBRATE flag trumps any custom vibration AND the fallback.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001846 final boolean useDefaultVibrate =
Daniel Sandleredbb3802012-11-13 20:49:47 -08001847 (notification.defaults & Notification.DEFAULT_VIBRATE) != 0;
David Agnew71789e12012-11-09 23:03:26 -05001848
Daniel Sandleredbb3802012-11-13 20:49:47 -08001849 if ((useDefaultVibrate || convertSoundToVibration || hasCustomVibrate)
Eric Laurentbffc3d12012-05-07 17:43:49 -07001850 && !(audioManager.getRingerMode() == AudioManager.RINGER_MODE_SILENT)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001851 mVibrateNotification = r;
1852
Daniel Sandleredbb3802012-11-13 20:49:47 -08001853 if (useDefaultVibrate || convertSoundToVibration) {
1854 // Escalate privileges so we can use the vibrator even if the notifying app
1855 // does not have the VIBRATE permission.
1856 long identity = Binder.clearCallingIdentity();
1857 try {
Daniel Sandlere6f7f2e2013-04-25 15:44:16 -04001858 mVibrator.vibrate(r.sbn.getUid(), r.sbn.getBasePkg(),
Dianne Hackbornf265ea92013-01-31 15:00:51 -08001859 useDefaultVibrate ? mDefaultVibrationPattern
1860 : mFallbackVibrationPattern,
Daniel Sandleredbb3802012-11-13 20:49:47 -08001861 ((notification.flags & Notification.FLAG_INSISTENT) != 0) ? 0: -1);
1862 } finally {
1863 Binder.restoreCallingIdentity(identity);
1864 }
1865 } else if (notification.vibrate.length > 1) {
1866 // If you want your own vibration pattern, you need the VIBRATE permission
Daniel Sandlere6f7f2e2013-04-25 15:44:16 -04001867 mVibrator.vibrate(r.sbn.getUid(), r.sbn.getBasePkg(), notification.vibrate,
Daniel Sandleredbb3802012-11-13 20:49:47 -08001868 ((notification.flags & Notification.FLAG_INSISTENT) != 0) ? 0: -1);
1869 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001870 }
1871 }
1872
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001873 // light
1874 // the most recent thing gets the light
1875 mLights.remove(old);
1876 if (mLedNotification == old) {
1877 mLedNotification = null;
1878 }
Joe Onorato8a9b2202010-02-26 18:56:32 -08001879 //Slog.i(TAG, "notification.lights="
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001880 // + ((old.notification.lights.flags & Notification.FLAG_SHOW_LIGHTS) != 0));
Daniel Sandler526fa0e2012-12-04 14:51:50 -05001881 if ((notification.flags & Notification.FLAG_SHOW_LIGHTS) != 0
1882 && canInterrupt) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001883 mLights.add(r);
1884 updateLightsLocked();
1885 } else {
1886 if (old != null
Daniel Sandlerfde19b12013-01-17 00:21:05 -05001887 && ((old.getFlags() & Notification.FLAG_SHOW_LIGHTS) != 0)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001888 updateLightsLocked();
1889 }
1890 }
1891 }
1892
1893 idOut[0] = id;
1894 }
1895
Joe Onorato30275482009-07-08 17:09:14 -07001896 private void sendAccessibilityEvent(Notification notification, CharSequence packageName) {
svetoslavganov75986cf2009-05-14 22:28:01 -07001897 AccessibilityManager manager = AccessibilityManager.getInstance(mContext);
1898 if (!manager.isEnabled()) {
1899 return;
1900 }
1901
1902 AccessibilityEvent event =
1903 AccessibilityEvent.obtain(AccessibilityEvent.TYPE_NOTIFICATION_STATE_CHANGED);
1904 event.setPackageName(packageName);
1905 event.setClassName(Notification.class.getName());
1906 event.setParcelableData(notification);
1907 CharSequence tickerText = notification.tickerText;
1908 if (!TextUtils.isEmpty(tickerText)) {
1909 event.getText().add(tickerText);
1910 }
1911
1912 manager.sendAccessibilityEvent(event);
1913 }
1914
Joe Onorato46439ce2010-11-19 13:56:21 -08001915 private void cancelNotificationLocked(NotificationRecord r, boolean sendDelete) {
1916 // tell the app
1917 if (sendDelete) {
Daniel Sandlerfde19b12013-01-17 00:21:05 -05001918 if (r.getNotification().deleteIntent != null) {
Joe Onorato46439ce2010-11-19 13:56:21 -08001919 try {
Daniel Sandlerfde19b12013-01-17 00:21:05 -05001920 r.getNotification().deleteIntent.send();
Joe Onorato46439ce2010-11-19 13:56:21 -08001921 } catch (PendingIntent.CanceledException ex) {
1922 // do nothing - there's no relevant way to recover, and
1923 // no reason to let this propagate
Daniel Sandler4f91efd2013-04-25 16:38:41 -04001924 Slog.w(TAG, "canceled PendingIntent for " + r.sbn.getPackageName(), ex);
Joe Onorato46439ce2010-11-19 13:56:21 -08001925 }
1926 }
1927 }
1928
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001929 // status bar
Daniel Sandlerfde19b12013-01-17 00:21:05 -05001930 if (r.getNotification().icon != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001931 long identity = Binder.clearCallingIdentity();
1932 try {
Joe Onorato0cbda992010-05-02 16:28:15 -07001933 mStatusBar.removeNotification(r.statusBarKey);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001934 }
1935 finally {
1936 Binder.restoreCallingIdentity(identity);
1937 }
1938 r.statusBarKey = null;
Daniel Sandler09a247e2013-02-14 10:24:17 -05001939 notifyRemovedLocked(r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001940 }
1941
1942 // sound
1943 if (mSoundNotification == r) {
1944 mSoundNotification = null;
Jeff Sharkey098d5802012-04-26 17:30:34 -07001945 final long identity = Binder.clearCallingIdentity();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001946 try {
Jeff Sharkey098d5802012-04-26 17:30:34 -07001947 final IRingtonePlayer player = mAudioService.getRingtonePlayer();
1948 if (player != null) {
1949 player.stopAsync();
1950 }
1951 } catch (RemoteException e) {
1952 } finally {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001953 Binder.restoreCallingIdentity(identity);
1954 }
1955 }
1956
1957 // vibrate
1958 if (mVibrateNotification == r) {
1959 mVibrateNotification = null;
1960 long identity = Binder.clearCallingIdentity();
1961 try {
1962 mVibrator.cancel();
1963 }
1964 finally {
1965 Binder.restoreCallingIdentity(identity);
1966 }
1967 }
1968
1969 // light
1970 mLights.remove(r);
1971 if (mLedNotification == r) {
1972 mLedNotification = null;
1973 }
Daniel Sandler23d7c702013-03-07 16:32:06 -05001974
1975 // Save it for users of getHistoricalNotifications()
1976 mArchive.record(r.sbn);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001977 }
1978
1979 /**
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07001980 * Cancels a notification ONLY if it has all of the {@code mustHaveFlags}
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001981 * and none of the {@code mustNotHaveFlags}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001982 */
Fred Quintana6ecaff12009-09-25 14:23:13 -07001983 private void cancelNotification(String pkg, String tag, int id, int mustHaveFlags,
Dianne Hackborn41203752012-08-31 14:05:51 -07001984 int mustNotHaveFlags, boolean sendDelete, int userId) {
Daniel Sandler321e9c52012-10-12 10:59:26 -07001985 EventLog.writeEvent(EventLogTags.NOTIFICATION_CANCEL, pkg, id, tag, userId,
Daniel Sandlerb64cb882011-11-29 23:48:29 -05001986 mustHaveFlags, mustNotHaveFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001987
1988 synchronized (mNotificationList) {
Dianne Hackborn41203752012-08-31 14:05:51 -07001989 int index = indexOfNotificationLocked(pkg, tag, id, userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001990 if (index >= 0) {
Fred Quintana6ecaff12009-09-25 14:23:13 -07001991 NotificationRecord r = mNotificationList.get(index);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001992
Daniel Sandlerfde19b12013-01-17 00:21:05 -05001993 if ((r.getNotification().flags & mustHaveFlags) != mustHaveFlags) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001994 return;
1995 }
Daniel Sandlerfde19b12013-01-17 00:21:05 -05001996 if ((r.getNotification().flags & mustNotHaveFlags) != 0) {
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07001997 return;
1998 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001999
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002000 mNotificationList.remove(index);
2001
Joe Onorato46439ce2010-11-19 13:56:21 -08002002 cancelNotificationLocked(r, sendDelete);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002003 updateLightsLocked();
2004 }
2005 }
2006 }
2007
2008 /**
Daniel Sandler321e9c52012-10-12 10:59:26 -07002009 * Determine whether the userId applies to the notification in question, either because
2010 * they match exactly, or one of them is USER_ALL (which is treated as a wildcard).
2011 */
2012 private boolean notificationMatchesUserId(NotificationRecord r, int userId) {
2013 return
2014 // looking for USER_ALL notifications? match everything
2015 userId == UserHandle.USER_ALL
2016 // a notification sent to USER_ALL matches any query
Daniel Sandlerfde19b12013-01-17 00:21:05 -05002017 || r.getUserId() == UserHandle.USER_ALL
Daniel Sandler321e9c52012-10-12 10:59:26 -07002018 // an exact user match
Daniel Sandlerfde19b12013-01-17 00:21:05 -05002019 || r.getUserId() == userId;
Daniel Sandler321e9c52012-10-12 10:59:26 -07002020 }
2021
2022 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002023 * Cancels all notifications from a given package that have all of the
2024 * {@code mustHaveFlags}.
2025 */
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002026 boolean cancelAllNotificationsInt(String pkg, int mustHaveFlags,
Dianne Hackborn41203752012-08-31 14:05:51 -07002027 int mustNotHaveFlags, boolean doit, int userId) {
Daniel Sandler321e9c52012-10-12 10:59:26 -07002028 EventLog.writeEvent(EventLogTags.NOTIFICATION_CANCEL_ALL, pkg, userId,
2029 mustHaveFlags, mustNotHaveFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002030
2031 synchronized (mNotificationList) {
2032 final int N = mNotificationList.size();
2033 boolean canceledSomething = false;
2034 for (int i = N-1; i >= 0; --i) {
2035 NotificationRecord r = mNotificationList.get(i);
Daniel Sandler321e9c52012-10-12 10:59:26 -07002036 if (!notificationMatchesUserId(r, userId)) {
Dianne Hackborn41203752012-08-31 14:05:51 -07002037 continue;
2038 }
Amith Yamasani5ec00e92012-11-07 16:58:30 -08002039 // Don't remove notifications to all, if there's no package name specified
Daniel Sandlerfde19b12013-01-17 00:21:05 -05002040 if (r.getUserId() == UserHandle.USER_ALL && pkg == null) {
Amith Yamasani5ec00e92012-11-07 16:58:30 -08002041 continue;
2042 }
Daniel Sandlerfde19b12013-01-17 00:21:05 -05002043 if ((r.getFlags() & mustHaveFlags) != mustHaveFlags) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002044 continue;
2045 }
Daniel Sandlerfde19b12013-01-17 00:21:05 -05002046 if ((r.getFlags() & mustNotHaveFlags) != 0) {
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07002047 continue;
2048 }
Daniel Sandler4f91efd2013-04-25 16:38:41 -04002049 if (pkg != null && !r.sbn.getPackageName().equals(pkg)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002050 continue;
2051 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002052 canceledSomething = true;
2053 if (!doit) {
2054 return true;
2055 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002056 mNotificationList.remove(i);
Joe Onorato46439ce2010-11-19 13:56:21 -08002057 cancelNotificationLocked(r, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002058 }
2059 if (canceledSomething) {
2060 updateLightsLocked();
2061 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002062 return canceledSomething;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002063 }
2064 }
2065
Dianne Hackborn41203752012-08-31 14:05:51 -07002066 public void cancelNotificationWithTag(String pkg, String tag, int id, int userId) {
Daniel Sandler0da673f2012-04-11 12:33:16 -04002067 checkCallerIsSystemOrSameApp(pkg);
Dianne Hackborn41203752012-08-31 14:05:51 -07002068 userId = ActivityManager.handleIncomingUser(Binder.getCallingPid(),
Amith Yamasani2c7ebea2012-10-30 15:28:27 -07002069 Binder.getCallingUid(), userId, true, false, "cancelNotificationWithTag", pkg);
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07002070 // Don't allow client applications to cancel foreground service notis.
Fred Quintana6ecaff12009-09-25 14:23:13 -07002071 cancelNotification(pkg, tag, id, 0,
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07002072 Binder.getCallingUid() == Process.SYSTEM_UID
Dianne Hackborn41203752012-08-31 14:05:51 -07002073 ? 0 : Notification.FLAG_FOREGROUND_SERVICE, false, userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002074 }
2075
Dianne Hackborn41203752012-08-31 14:05:51 -07002076 public void cancelAllNotifications(String pkg, int userId) {
Daniel Sandler0da673f2012-04-11 12:33:16 -04002077 checkCallerIsSystemOrSameApp(pkg);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002078
Dianne Hackborn41203752012-08-31 14:05:51 -07002079 userId = ActivityManager.handleIncomingUser(Binder.getCallingPid(),
Amith Yamasani2c7ebea2012-10-30 15:28:27 -07002080 Binder.getCallingUid(), userId, true, false, "cancelAllNotifications", pkg);
Dianne Hackborn41203752012-08-31 14:05:51 -07002081
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07002082 // Calling from user space, don't allow the canceling of actively
2083 // running foreground services.
Dianne Hackborn41203752012-08-31 14:05:51 -07002084 cancelAllNotificationsInt(pkg, 0, Notification.FLAG_FOREGROUND_SERVICE, true, userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002085 }
2086
Daniel Sandler7c011302013-06-10 12:06:51 -04002087 // Return true if the caller is a system or phone UID and therefore should not have
2088 // any notifications or toasts blocked.
2089 boolean isCallerSystem() {
2090 final int uid = Binder.getCallingUid();
2091 final int appid = UserHandle.getAppId(uid);
2092 return (appid == Process.SYSTEM_UID || appid == Process.PHONE_UID || uid == 0);
2093 }
2094
Daniel Sandler0da673f2012-04-11 12:33:16 -04002095 void checkCallerIsSystem() {
Daniel Sandler7c011302013-06-10 12:06:51 -04002096 if (isCallerSystem()) {
Daniel Sandler0da673f2012-04-11 12:33:16 -04002097 return;
2098 }
Daniel Sandler7c011302013-06-10 12:06:51 -04002099 throw new SecurityException("Disallowed call for uid " + Binder.getCallingUid());
Daniel Sandler0da673f2012-04-11 12:33:16 -04002100 }
2101
2102 void checkCallerIsSystemOrSameApp(String pkg) {
Daniel Sandler7c011302013-06-10 12:06:51 -04002103 if (isCallerSystem()) {
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07002104 return;
2105 }
Daniel Sandler7c011302013-06-10 12:06:51 -04002106 final int uid = Binder.getCallingUid();
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07002107 try {
Amith Yamasanif203aee2012-08-29 18:41:53 -07002108 ApplicationInfo ai = AppGlobals.getPackageManager().getApplicationInfo(
2109 pkg, 0, UserHandle.getCallingUserId());
Dianne Hackbornf02b60a2012-08-16 10:48:27 -07002110 if (!UserHandle.isSameApp(ai.uid, uid)) {
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07002111 throw new SecurityException("Calling uid " + uid + " gave package"
2112 + pkg + " which is owned by uid " + ai.uid);
2113 }
Amith Yamasanif203aee2012-08-29 18:41:53 -07002114 } catch (RemoteException re) {
2115 throw new SecurityException("Unknown package " + pkg + "\n" + re);
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07002116 }
2117 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002118
Dianne Hackborn41203752012-08-31 14:05:51 -07002119 void cancelAll(int userId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002120 synchronized (mNotificationList) {
2121 final int N = mNotificationList.size();
2122 for (int i=N-1; i>=0; i--) {
2123 NotificationRecord r = mNotificationList.get(i);
2124
Daniel Sandler321e9c52012-10-12 10:59:26 -07002125 if (!notificationMatchesUserId(r, userId)) {
Dianne Hackborn41203752012-08-31 14:05:51 -07002126 continue;
2127 }
2128
Daniel Sandlerfde19b12013-01-17 00:21:05 -05002129 if ((r.getFlags() & (Notification.FLAG_ONGOING_EVENT
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002130 | Notification.FLAG_NO_CLEAR)) == 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002131 mNotificationList.remove(i);
Joe Onorato46439ce2010-11-19 13:56:21 -08002132 cancelNotificationLocked(r, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002133 }
2134 }
2135
2136 updateLightsLocked();
2137 }
2138 }
2139
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002140 // lock on mNotificationList
2141 private void updateLightsLocked()
2142 {
The Android Open Source Project10592532009-03-18 17:39:46 -07002143 // handle notification lights
2144 if (mLedNotification == null) {
2145 // get next notification, if any
2146 int n = mLights.size();
2147 if (n > 0) {
2148 mLedNotification = mLights.get(n-1);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002149 }
2150 }
Mike Lockwoodc22404a2009-12-02 11:15:02 -05002151
Mike Lockwood63b5ad92011-08-30 09:55:30 -04002152 // Don't flash while we are in a call or screen is on
2153 if (mLedNotification == null || mInCall || mScreenOn) {
Mike Lockwood3cb67a32009-11-27 14:25:58 -05002154 mNotificationLight.turnOff();
The Android Open Source Project10592532009-03-18 17:39:46 -07002155 } else {
Daniel Sandlere6f7f2e2013-04-25 15:44:16 -04002156 final Notification ledno = mLedNotification.sbn.getNotification();
Daniel Sandlerfde19b12013-01-17 00:21:05 -05002157 int ledARGB = ledno.ledARGB;
2158 int ledOnMS = ledno.ledOnMS;
2159 int ledOffMS = ledno.ledOffMS;
2160 if ((ledno.defaults & Notification.DEFAULT_LIGHTS) != 0) {
Mike Lockwood670f9322010-01-20 12:13:36 -05002161 ledARGB = mDefaultNotificationColor;
2162 ledOnMS = mDefaultNotificationLedOn;
2163 ledOffMS = mDefaultNotificationLedOff;
2164 }
2165 if (mNotificationPulseEnabled) {
2166 // pulse repeatedly
2167 mNotificationLight.setFlashing(ledARGB, LightsService.LIGHT_FLASH_TIMED,
2168 ledOnMS, ledOffMS);
Mike Lockwood670f9322010-01-20 12:13:36 -05002169 }
The Android Open Source Project10592532009-03-18 17:39:46 -07002170 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002171 }
2172
2173 // lock on mNotificationList
Dianne Hackborn41203752012-08-31 14:05:51 -07002174 private int indexOfNotificationLocked(String pkg, String tag, int id, int userId)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002175 {
2176 ArrayList<NotificationRecord> list = mNotificationList;
2177 final int len = list.size();
2178 for (int i=0; i<len; i++) {
2179 NotificationRecord r = list.get(i);
Daniel Sandlere6f7f2e2013-04-25 15:44:16 -04002180 if (!notificationMatchesUserId(r, userId) || r.sbn.getId() != id) {
Dianne Hackborn41203752012-08-31 14:05:51 -07002181 continue;
2182 }
Fred Quintana6ecaff12009-09-25 14:23:13 -07002183 if (tag == null) {
Daniel Sandlere6f7f2e2013-04-25 15:44:16 -04002184 if (r.sbn.getTag() != null) {
Fred Quintana6ecaff12009-09-25 14:23:13 -07002185 continue;
2186 }
2187 } else {
Daniel Sandlere6f7f2e2013-04-25 15:44:16 -04002188 if (!tag.equals(r.sbn.getTag())) {
Fred Quintana6ecaff12009-09-25 14:23:13 -07002189 continue;
2190 }
2191 }
Daniel Sandler4f91efd2013-04-25 16:38:41 -04002192 if (r.sbn.getPackageName().equals(pkg)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002193 return i;
2194 }
2195 }
2196 return -1;
2197 }
2198
Mike Lockwoodc22404a2009-12-02 11:15:02 -05002199 private void updateNotificationPulse() {
2200 synchronized (mNotificationList) {
2201 updateLightsLocked();
2202 }
2203 }
2204
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002205 // ======================================================================
2206 @Override
2207 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
2208 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
2209 != PackageManager.PERMISSION_GRANTED) {
2210 pw.println("Permission Denial: can't dump NotificationManager from from pid="
2211 + Binder.getCallingPid()
2212 + ", uid=" + Binder.getCallingUid());
2213 return;
2214 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002215
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002216 pw.println("Current Notification Manager state:");
2217
Daniel Sandler5feceeb2013-03-22 18:29:23 -07002218 pw.println(" Listeners (" + mEnabledListenersForCurrentUser.size()
2219 + ") enabled for current user:");
2220 for (ComponentName cmpt : mEnabledListenersForCurrentUser) {
2221 pw.println(" " + cmpt);
Daniel Sandler4b749ef2013-03-18 21:53:04 -04002222 }
Daniel Sandler4b749ef2013-03-18 21:53:04 -04002223
Daniel Sandler5feceeb2013-03-22 18:29:23 -07002224 pw.println(" Live listeners (" + mListeners.size() + "):");
Daniel Sandler4b749ef2013-03-18 21:53:04 -04002225 for (NotificationListenerInfo info : mListeners) {
Daniel Sandler5feceeb2013-03-22 18:29:23 -07002226 pw.println(" " + info.component
2227 + " (user " + info.userid + "): " + info.listener
2228 + (info.isSystem?" SYSTEM":""));
Daniel Sandler4b749ef2013-03-18 21:53:04 -04002229 }
2230
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002231 int N;
2232
2233 synchronized (mToastQueue) {
2234 N = mToastQueue.size();
2235 if (N > 0) {
2236 pw.println(" Toast Queue:");
2237 for (int i=0; i<N; i++) {
2238 mToastQueue.get(i).dump(pw, " ");
2239 }
2240 pw.println(" ");
2241 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002242
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002243 }
2244
2245 synchronized (mNotificationList) {
2246 N = mNotificationList.size();
2247 if (N > 0) {
2248 pw.println(" Notification List:");
2249 for (int i=0; i<N; i++) {
2250 mNotificationList.get(i).dump(pw, " ", mContext);
2251 }
2252 pw.println(" ");
2253 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002254
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002255 N = mLights.size();
2256 if (N > 0) {
2257 pw.println(" Lights List:");
2258 for (int i=0; i<N; i++) {
Daniel Sandlerf45564e2013-04-15 15:05:08 -04002259 pw.println(" " + mLights.get(i));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002260 }
2261 pw.println(" ");
2262 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002263
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002264 pw.println(" mSoundNotification=" + mSoundNotification);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002265 pw.println(" mVibrateNotification=" + mVibrateNotification);
Joe Onorato39f5b6a2009-07-23 12:29:19 -04002266 pw.println(" mDisabledNotifications=0x" + Integer.toHexString(mDisabledNotifications));
2267 pw.println(" mSystemReady=" + mSystemReady);
Daniel Sandler5e62e3a2013-04-15 20:57:02 -04002268 pw.println(" mArchive=" + mArchive.toString());
2269 Iterator<StatusBarNotification> iter = mArchive.descendingIterator();
2270 int i=0;
2271 while (iter.hasNext()) {
2272 pw.println(" " + iter.next());
2273 if (++i >= 5) {
2274 if (iter.hasNext()) pw.println(" ...");
2275 break;
2276 }
2277 }
2278
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002279 }
2280 }
2281}