NotificationManagerService.java revision 50cdf7c3069eb2cf82acbad73c322b7a5f3af4b1
1/*
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
19import static org.xmlpull.v1.XmlPullParser.END_DOCUMENT;
20import static org.xmlpull.v1.XmlPullParser.END_TAG;
21import static org.xmlpull.v1.XmlPullParser.START_TAG;
22
23import android.app.ActivityManager;
24import android.app.ActivityManagerNative;
25import android.app.AppGlobals;
26import android.app.IActivityManager;
27import android.app.INotificationManager;
28import android.app.ITransientNotification;
29import android.app.Notification;
30import android.app.PendingIntent;
31import android.app.StatusBarManager;
32import android.content.BroadcastReceiver;
33import android.content.ContentResolver;
34import android.content.Context;
35import android.content.Intent;
36import android.content.IntentFilter;
37import android.content.pm.ApplicationInfo;
38import android.content.pm.PackageManager;
39import android.content.pm.PackageManager.NameNotFoundException;
40import android.content.res.Resources;
41import android.database.ContentObserver;
42import android.media.AudioManager;
43import android.media.IAudioService;
44import android.media.IRingtonePlayer;
45import android.net.Uri;
46import android.os.Binder;
47import android.os.Handler;
48import android.os.IBinder;
49import android.os.Message;
50import android.os.Process;
51import android.os.RemoteException;
52import android.os.ServiceManager;
53import android.os.UserHandle;
54import android.os.Vibrator;
55import android.provider.Settings;
56import android.telephony.TelephonyManager;
57import android.text.TextUtils;
58import android.util.AtomicFile;
59import android.util.EventLog;
60import android.util.Log;
61import android.util.Slog;
62import android.util.Xml;
63import android.view.accessibility.AccessibilityEvent;
64import android.view.accessibility.AccessibilityManager;
65import android.widget.RemoteViews;
66import android.widget.Toast;
67
68import com.android.internal.statusbar.StatusBarNotification;
69import com.android.internal.util.FastXmlSerializer;
70
71import org.xmlpull.v1.XmlPullParser;
72import org.xmlpull.v1.XmlPullParserException;
73import org.xmlpull.v1.XmlSerializer;
74
75import java.io.File;
76import java.io.FileDescriptor;
77import java.io.FileInputStream;
78import java.io.FileNotFoundException;
79import java.io.FileOutputStream;
80import java.io.IOException;
81import java.io.PrintWriter;
82import java.util.ArrayList;
83import java.util.Arrays;
84import java.util.HashSet;
85
86import libcore.io.IoUtils;
87
88
89/** {@hide} */
90public class NotificationManagerService extends INotificationManager.Stub
91{
92    private static final String TAG = "NotificationService";
93    private static final boolean DBG = false;
94
95    private static final int MAX_PACKAGE_NOTIFICATIONS = 50;
96
97    // message codes
98    private static final int MESSAGE_TIMEOUT = 2;
99
100    private static final int LONG_DELAY = 3500; // 3.5 seconds
101    private static final int SHORT_DELAY = 2000; // 2 seconds
102
103    private static final long[] DEFAULT_VIBRATE_PATTERN = {0, 250, 250, 250};
104
105    private static final int DEFAULT_STREAM_TYPE = AudioManager.STREAM_NOTIFICATION;
106    private static final boolean SCORE_ONGOING_HIGHER = false;
107
108    private static final int JUNK_SCORE = -1000;
109    private static final int NOTIFICATION_PRIORITY_MULTIPLIER = 10;
110    private static final int SCORE_DISPLAY_THRESHOLD = Notification.PRIORITY_MIN * NOTIFICATION_PRIORITY_MULTIPLIER;
111
112    private static final boolean ENABLE_BLOCKED_NOTIFICATIONS = true;
113    private static final boolean ENABLE_BLOCKED_TOASTS = true;
114
115    final Context mContext;
116    final IActivityManager mAm;
117    final IBinder mForegroundToken = new Binder();
118
119    private WorkerHandler mHandler;
120    private StatusBarManagerService mStatusBar;
121    private LightsService.Light mNotificationLight;
122    private LightsService.Light mAttentionLight;
123
124    private int mDefaultNotificationColor;
125    private int mDefaultNotificationLedOn;
126    private int mDefaultNotificationLedOff;
127
128    private boolean mSystemReady;
129    private int mDisabledNotifications;
130
131    private NotificationRecord mSoundNotification;
132    private NotificationRecord mVibrateNotification;
133
134    private IAudioService mAudioService;
135    private Vibrator mVibrator;
136
137    // for enabling and disabling notification pulse behavior
138    private boolean mScreenOn = true;
139    private boolean mInCall = false;
140    private boolean mNotificationPulseEnabled;
141
142    private final ArrayList<NotificationRecord> mNotificationList =
143            new ArrayList<NotificationRecord>();
144
145    private ArrayList<ToastRecord> mToastQueue;
146
147    private ArrayList<NotificationRecord> mLights = new ArrayList<NotificationRecord>();
148    private NotificationRecord mLedNotification;
149
150    // Notification control database. For now just contains disabled packages.
151    private AtomicFile mPolicyFile;
152    private HashSet<String> mBlockedPackages = new HashSet<String>();
153
154    private static final int DB_VERSION = 1;
155
156    private static final String TAG_BODY = "notification-policy";
157    private static final String ATTR_VERSION = "version";
158
159    private static final String TAG_BLOCKED_PKGS = "blocked-packages";
160    private static final String TAG_PACKAGE = "package";
161    private static final String ATTR_NAME = "name";
162
163    private void loadBlockDb() {
164        synchronized(mBlockedPackages) {
165            if (mPolicyFile == null) {
166                File dir = new File("/data/system");
167                mPolicyFile = new AtomicFile(new File(dir, "notification_policy.xml"));
168
169                mBlockedPackages.clear();
170
171                FileInputStream infile = null;
172                try {
173                    infile = mPolicyFile.openRead();
174                    final XmlPullParser parser = Xml.newPullParser();
175                    parser.setInput(infile, null);
176
177                    int type;
178                    String tag;
179                    int version = DB_VERSION;
180                    while ((type = parser.next()) != END_DOCUMENT) {
181                        tag = parser.getName();
182                        if (type == START_TAG) {
183                            if (TAG_BODY.equals(tag)) {
184                                version = Integer.parseInt(parser.getAttributeValue(null, ATTR_VERSION));
185                            } else if (TAG_BLOCKED_PKGS.equals(tag)) {
186                                while ((type = parser.next()) != END_DOCUMENT) {
187                                    tag = parser.getName();
188                                    if (TAG_PACKAGE.equals(tag)) {
189                                        mBlockedPackages.add(parser.getAttributeValue(null, ATTR_NAME));
190                                    } else if (TAG_BLOCKED_PKGS.equals(tag) && type == END_TAG) {
191                                        break;
192                                    }
193                                }
194                            }
195                        }
196                    }
197                } catch (FileNotFoundException e) {
198                    // No data yet
199                } catch (IOException e) {
200                    Log.wtf(TAG, "Unable to read blocked notifications database", e);
201                } catch (NumberFormatException e) {
202                    Log.wtf(TAG, "Unable to parse blocked notifications database", e);
203                } catch (XmlPullParserException e) {
204                    Log.wtf(TAG, "Unable to parse blocked notifications database", e);
205                } finally {
206                    IoUtils.closeQuietly(infile);
207                }
208            }
209        }
210    }
211
212    private void writeBlockDb() {
213        synchronized(mBlockedPackages) {
214            FileOutputStream outfile = null;
215            try {
216                outfile = mPolicyFile.startWrite();
217
218                XmlSerializer out = new FastXmlSerializer();
219                out.setOutput(outfile, "utf-8");
220
221                out.startDocument(null, true);
222
223                out.startTag(null, TAG_BODY); {
224                    out.attribute(null, ATTR_VERSION, String.valueOf(DB_VERSION));
225                    out.startTag(null, TAG_BLOCKED_PKGS); {
226                        // write all known network policies
227                        for (String pkg : mBlockedPackages) {
228                            out.startTag(null, TAG_PACKAGE); {
229                                out.attribute(null, ATTR_NAME, pkg);
230                            } out.endTag(null, TAG_PACKAGE);
231                        }
232                    } out.endTag(null, TAG_BLOCKED_PKGS);
233                } out.endTag(null, TAG_BODY);
234
235                out.endDocument();
236
237                mPolicyFile.finishWrite(outfile);
238            } catch (IOException e) {
239                if (outfile != null) {
240                    mPolicyFile.failWrite(outfile);
241                }
242            }
243        }
244    }
245
246    public boolean areNotificationsEnabledForPackage(String pkg) {
247        checkCallerIsSystem();
248        return areNotificationsEnabledForPackageInt(pkg);
249    }
250
251    // Unchecked. Not exposed via Binder, but can be called in the course of enqueue*().
252    private boolean areNotificationsEnabledForPackageInt(String pkg) {
253        final boolean enabled = !mBlockedPackages.contains(pkg);
254        if (DBG) {
255            Slog.v(TAG, "notifications are " + (enabled?"en":"dis") + "abled for " + pkg);
256        }
257        return enabled;
258    }
259
260    public void setNotificationsEnabledForPackage(String pkg, boolean enabled) {
261        checkCallerIsSystem();
262        if (DBG) {
263            Slog.v(TAG, (enabled?"en":"dis") + "abling notifications for " + pkg);
264        }
265        if (enabled) {
266            mBlockedPackages.remove(pkg);
267        } else {
268            mBlockedPackages.add(pkg);
269
270            // Now, cancel any outstanding notifications that are part of a just-disabled app
271            if (ENABLE_BLOCKED_NOTIFICATIONS) {
272                synchronized (mNotificationList) {
273                    final int N = mNotificationList.size();
274                    for (int i=0; i<N; i++) {
275                        final NotificationRecord r = mNotificationList.get(i);
276                        if (r.pkg.equals(pkg)) {
277                            cancelNotificationLocked(r, false);
278                        }
279                    }
280                }
281            }
282            // Don't bother canceling toasts, they'll go away soon enough.
283        }
284        writeBlockDb();
285    }
286
287
288    private static String idDebugString(Context baseContext, String packageName, int id) {
289        Context c = null;
290
291        if (packageName != null) {
292            try {
293                c = baseContext.createPackageContext(packageName, 0);
294            } catch (NameNotFoundException e) {
295                c = baseContext;
296            }
297        } else {
298            c = baseContext;
299        }
300
301        String pkg;
302        String type;
303        String name;
304
305        Resources r = c.getResources();
306        try {
307            return r.getResourceName(id);
308        } catch (Resources.NotFoundException e) {
309            return "<name unknown>";
310        }
311    }
312
313    private static final class NotificationRecord
314    {
315        final String pkg;
316        final String tag;
317        final int id;
318        final int uid;
319        final int initialPid;
320        final int userId;
321        final Notification notification;
322        final int score;
323        IBinder statusBarKey;
324
325        NotificationRecord(String pkg, String tag, int id, int uid, int initialPid,
326                int userId, int score, Notification notification)
327        {
328            this.pkg = pkg;
329            this.tag = tag;
330            this.id = id;
331            this.uid = uid;
332            this.initialPid = initialPid;
333            this.userId = userId;
334            this.score = score;
335            this.notification = notification;
336        }
337
338        void dump(PrintWriter pw, String prefix, Context baseContext) {
339            pw.println(prefix + this);
340            pw.println(prefix + "  icon=0x" + Integer.toHexString(notification.icon)
341                    + " / " + idDebugString(baseContext, this.pkg, notification.icon));
342            pw.println(prefix + "  pri=" + notification.priority);
343            pw.println(prefix + "  score=" + this.score);
344            pw.println(prefix + "  contentIntent=" + notification.contentIntent);
345            pw.println(prefix + "  deleteIntent=" + notification.deleteIntent);
346            pw.println(prefix + "  tickerText=" + notification.tickerText);
347            pw.println(prefix + "  contentView=" + notification.contentView);
348            pw.println(prefix + "  uid=" + uid + " userId=" + userId);
349            pw.println(prefix + "  defaults=0x" + Integer.toHexString(notification.defaults));
350            pw.println(prefix + "  flags=0x" + Integer.toHexString(notification.flags));
351            pw.println(prefix + "  sound=" + notification.sound);
352            pw.println(prefix + "  vibrate=" + Arrays.toString(notification.vibrate));
353            pw.println(prefix + "  ledARGB=0x" + Integer.toHexString(notification.ledARGB)
354                    + " ledOnMS=" + notification.ledOnMS
355                    + " ledOffMS=" + notification.ledOffMS);
356        }
357
358        @Override
359        public final String toString()
360        {
361            return "NotificationRecord{"
362                + Integer.toHexString(System.identityHashCode(this))
363                + " pkg=" + pkg
364                + " id=" + Integer.toHexString(id)
365                + " tag=" + tag
366                + " score=" + score
367                + "}";
368        }
369    }
370
371    private static final class ToastRecord
372    {
373        final int pid;
374        final String pkg;
375        final ITransientNotification callback;
376        int duration;
377
378        ToastRecord(int pid, String pkg, ITransientNotification callback, int duration)
379        {
380            this.pid = pid;
381            this.pkg = pkg;
382            this.callback = callback;
383            this.duration = duration;
384        }
385
386        void update(int duration) {
387            this.duration = duration;
388        }
389
390        void dump(PrintWriter pw, String prefix) {
391            pw.println(prefix + this);
392        }
393
394        @Override
395        public final String toString()
396        {
397            return "ToastRecord{"
398                + Integer.toHexString(System.identityHashCode(this))
399                + " pkg=" + pkg
400                + " callback=" + callback
401                + " duration=" + duration;
402        }
403    }
404
405    private StatusBarManagerService.NotificationCallbacks mNotificationCallbacks
406            = new StatusBarManagerService.NotificationCallbacks() {
407
408        public void onSetDisabled(int status) {
409            synchronized (mNotificationList) {
410                mDisabledNotifications = status;
411                if ((mDisabledNotifications & StatusBarManager.DISABLE_NOTIFICATION_ALERTS) != 0) {
412                    // cancel whatever's going on
413                    long identity = Binder.clearCallingIdentity();
414                    try {
415                        final IRingtonePlayer player = mAudioService.getRingtonePlayer();
416                        if (player != null) {
417                            player.stopAsync();
418                        }
419                    } catch (RemoteException e) {
420                    } finally {
421                        Binder.restoreCallingIdentity(identity);
422                    }
423
424                    identity = Binder.clearCallingIdentity();
425                    try {
426                        mVibrator.cancel();
427                    } finally {
428                        Binder.restoreCallingIdentity(identity);
429                    }
430                }
431            }
432        }
433
434        public void onClearAll() {
435            // XXX to be totally correct, the caller should tell us which user
436            // this is for.
437            cancelAll(ActivityManager.getCurrentUser());
438        }
439
440        public void onNotificationClick(String pkg, String tag, int id) {
441            // XXX to be totally correct, the caller should tell us which user
442            // this is for.
443            cancelNotification(pkg, tag, id, Notification.FLAG_AUTO_CANCEL,
444                    Notification.FLAG_FOREGROUND_SERVICE, false,
445                    ActivityManager.getCurrentUser());
446        }
447
448        public void onNotificationClear(String pkg, String tag, int id) {
449            // XXX to be totally correct, the caller should tell us which user
450            // this is for.
451            cancelNotification(pkg, tag, id, 0,
452                Notification.FLAG_ONGOING_EVENT | Notification.FLAG_FOREGROUND_SERVICE,
453                true, ActivityManager.getCurrentUser());
454        }
455
456        public void onPanelRevealed() {
457            synchronized (mNotificationList) {
458                // sound
459                mSoundNotification = null;
460
461                long identity = Binder.clearCallingIdentity();
462                try {
463                    final IRingtonePlayer player = mAudioService.getRingtonePlayer();
464                    if (player != null) {
465                        player.stopAsync();
466                    }
467                } catch (RemoteException e) {
468                } finally {
469                    Binder.restoreCallingIdentity(identity);
470                }
471
472                // vibrate
473                mVibrateNotification = null;
474                identity = Binder.clearCallingIdentity();
475                try {
476                    mVibrator.cancel();
477                } finally {
478                    Binder.restoreCallingIdentity(identity);
479                }
480
481                // light
482                mLights.clear();
483                mLedNotification = null;
484                updateLightsLocked();
485            }
486        }
487
488        public void onNotificationError(String pkg, String tag, int id,
489                int uid, int initialPid, String message) {
490            Slog.d(TAG, "onNotification error pkg=" + pkg + " tag=" + tag + " id=" + id
491                    + "; will crashApplication(uid=" + uid + ", pid=" + initialPid + ")");
492            // XXX to be totally correct, the caller should tell us which user
493            // this is for.
494            cancelNotification(pkg, tag, id, 0, 0, false, UserHandle.getUserId(uid));
495            long ident = Binder.clearCallingIdentity();
496            try {
497                ActivityManagerNative.getDefault().crashApplication(uid, initialPid, pkg,
498                        "Bad notification posted from package " + pkg
499                        + ": " + message);
500            } catch (RemoteException e) {
501            }
502            Binder.restoreCallingIdentity(ident);
503        }
504    };
505
506    private BroadcastReceiver mIntentReceiver = new BroadcastReceiver() {
507        @Override
508        public void onReceive(Context context, Intent intent) {
509            String action = intent.getAction();
510
511            boolean queryRestart = false;
512            boolean packageChanged = false;
513
514            if (action.equals(Intent.ACTION_PACKAGE_REMOVED)
515                    || action.equals(Intent.ACTION_PACKAGE_RESTARTED)
516                    || (packageChanged=action.equals(Intent.ACTION_PACKAGE_CHANGED))
517                    || (queryRestart=action.equals(Intent.ACTION_QUERY_PACKAGE_RESTART))
518                    || action.equals(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE)) {
519                String pkgList[] = null;
520                if (action.equals(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE)) {
521                    pkgList = intent.getStringArrayExtra(Intent.EXTRA_CHANGED_PACKAGE_LIST);
522                } else if (queryRestart) {
523                    pkgList = intent.getStringArrayExtra(Intent.EXTRA_PACKAGES);
524                } else {
525                    Uri uri = intent.getData();
526                    if (uri == null) {
527                        return;
528                    }
529                    String pkgName = uri.getSchemeSpecificPart();
530                    if (pkgName == null) {
531                        return;
532                    }
533                    if (packageChanged) {
534                        // We cancel notifications for packages which have just been disabled
535                        final int enabled = mContext.getPackageManager()
536                                .getApplicationEnabledSetting(pkgName);
537                        if (enabled == PackageManager.COMPONENT_ENABLED_STATE_ENABLED
538                                || enabled == PackageManager.COMPONENT_ENABLED_STATE_DEFAULT) {
539                            return;
540                        }
541                    }
542                    pkgList = new String[]{pkgName};
543                }
544                if (pkgList != null && (pkgList.length > 0)) {
545                    for (String pkgName : pkgList) {
546                        cancelAllNotificationsInt(pkgName, 0, 0, !queryRestart,
547                                UserHandle.USER_ALL);
548                    }
549                }
550            } else if (action.equals(Intent.ACTION_SCREEN_ON)) {
551                // Keep track of screen on/off state, but do not turn off the notification light
552                // until user passes through the lock screen or views the notification.
553                mScreenOn = true;
554            } else if (action.equals(Intent.ACTION_SCREEN_OFF)) {
555                mScreenOn = false;
556            } else if (action.equals(TelephonyManager.ACTION_PHONE_STATE_CHANGED)) {
557                mInCall = (intent.getStringExtra(TelephonyManager.EXTRA_STATE).equals(
558                        TelephonyManager.EXTRA_STATE_OFFHOOK));
559                updateNotificationPulse();
560            } else if (action.equals(Intent.ACTION_USER_STOPPED)) {
561                int userHandle = intent.getIntExtra(Intent.EXTRA_USER_HANDLE, -1);
562                if (userHandle >= 0) {
563                    cancelAllNotificationsInt(null, 0, 0, true, userHandle);
564                }
565            } else if (action.equals(Intent.ACTION_USER_PRESENT)) {
566                // turn off LED when user passes through lock screen
567                mNotificationLight.turnOff();
568            }
569        }
570    };
571
572    class SettingsObserver extends ContentObserver {
573        SettingsObserver(Handler handler) {
574            super(handler);
575        }
576
577        void observe() {
578            ContentResolver resolver = mContext.getContentResolver();
579            resolver.registerContentObserver(Settings.System.getUriFor(
580                    Settings.System.NOTIFICATION_LIGHT_PULSE), false, this);
581            update();
582        }
583
584        @Override public void onChange(boolean selfChange) {
585            update();
586        }
587
588        public void update() {
589            ContentResolver resolver = mContext.getContentResolver();
590            boolean pulseEnabled = Settings.System.getInt(resolver,
591                        Settings.System.NOTIFICATION_LIGHT_PULSE, 0) != 0;
592            if (mNotificationPulseEnabled != pulseEnabled) {
593                mNotificationPulseEnabled = pulseEnabled;
594                updateNotificationPulse();
595            }
596        }
597    }
598
599    NotificationManagerService(Context context, StatusBarManagerService statusBar,
600            LightsService lights)
601    {
602        super();
603        mContext = context;
604        mVibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
605        mAm = ActivityManagerNative.getDefault();
606        mToastQueue = new ArrayList<ToastRecord>();
607        mHandler = new WorkerHandler();
608
609        loadBlockDb();
610
611        mStatusBar = statusBar;
612        statusBar.setNotificationCallbacks(mNotificationCallbacks);
613
614        mNotificationLight = lights.getLight(LightsService.LIGHT_ID_NOTIFICATIONS);
615        mAttentionLight = lights.getLight(LightsService.LIGHT_ID_ATTENTION);
616
617        Resources resources = mContext.getResources();
618        mDefaultNotificationColor = resources.getColor(
619                com.android.internal.R.color.config_defaultNotificationColor);
620        mDefaultNotificationLedOn = resources.getInteger(
621                com.android.internal.R.integer.config_defaultNotificationLedOn);
622        mDefaultNotificationLedOff = resources.getInteger(
623                com.android.internal.R.integer.config_defaultNotificationLedOff);
624
625        // Don't start allowing notifications until the setup wizard has run once.
626        // After that, including subsequent boots, init with notifications turned on.
627        // This works on the first boot because the setup wizard will toggle this
628        // flag at least once and we'll go back to 0 after that.
629        if (0 == Settings.Secure.getInt(mContext.getContentResolver(),
630                    Settings.Secure.DEVICE_PROVISIONED, 0)) {
631            mDisabledNotifications = StatusBarManager.DISABLE_NOTIFICATION_ALERTS;
632        }
633
634        // register for various Intents
635        IntentFilter filter = new IntentFilter();
636        filter.addAction(Intent.ACTION_SCREEN_ON);
637        filter.addAction(Intent.ACTION_SCREEN_OFF);
638        filter.addAction(TelephonyManager.ACTION_PHONE_STATE_CHANGED);
639        filter.addAction(Intent.ACTION_USER_PRESENT);
640        filter.addAction(Intent.ACTION_USER_STOPPED);
641        mContext.registerReceiver(mIntentReceiver, filter);
642        IntentFilter pkgFilter = new IntentFilter();
643        pkgFilter.addAction(Intent.ACTION_PACKAGE_REMOVED);
644        pkgFilter.addAction(Intent.ACTION_PACKAGE_CHANGED);
645        pkgFilter.addAction(Intent.ACTION_PACKAGE_RESTARTED);
646        pkgFilter.addAction(Intent.ACTION_QUERY_PACKAGE_RESTART);
647        pkgFilter.addDataScheme("package");
648        mContext.registerReceiver(mIntentReceiver, pkgFilter);
649        IntentFilter sdFilter = new IntentFilter(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
650        mContext.registerReceiver(mIntentReceiver, sdFilter);
651
652        SettingsObserver observer = new SettingsObserver(mHandler);
653        observer.observe();
654    }
655
656    void systemReady() {
657        mAudioService = IAudioService.Stub.asInterface(
658                ServiceManager.getService(Context.AUDIO_SERVICE));
659
660        // no beeping until we're basically done booting
661        mSystemReady = true;
662    }
663
664    // Toasts
665    // ============================================================================
666    public void enqueueToast(String pkg, ITransientNotification callback, int duration)
667    {
668        if (DBG) Slog.i(TAG, "enqueueToast pkg=" + pkg + " callback=" + callback + " duration=" + duration);
669
670        if (pkg == null || callback == null) {
671            Slog.e(TAG, "Not doing toast. pkg=" + pkg + " callback=" + callback);
672            return ;
673        }
674
675        final boolean isSystemToast = ("android".equals(pkg));
676
677        if (ENABLE_BLOCKED_TOASTS && !isSystemToast && !areNotificationsEnabledForPackageInt(pkg)) {
678            Slog.e(TAG, "Suppressing toast from package " + pkg + " by user request.");
679            return;
680        }
681
682        synchronized (mToastQueue) {
683            int callingPid = Binder.getCallingPid();
684            long callingId = Binder.clearCallingIdentity();
685            try {
686                ToastRecord record;
687                int index = indexOfToastLocked(pkg, callback);
688                // If it's already in the queue, we update it in place, we don't
689                // move it to the end of the queue.
690                if (index >= 0) {
691                    record = mToastQueue.get(index);
692                    record.update(duration);
693                } else {
694                    // Limit the number of toasts that any given package except the android
695                    // package can enqueue.  Prevents DOS attacks and deals with leaks.
696                    if (!isSystemToast) {
697                        int count = 0;
698                        final int N = mToastQueue.size();
699                        for (int i=0; i<N; i++) {
700                             final ToastRecord r = mToastQueue.get(i);
701                             if (r.pkg.equals(pkg)) {
702                                 count++;
703                                 if (count >= MAX_PACKAGE_NOTIFICATIONS) {
704                                     Slog.e(TAG, "Package has already posted " + count
705                                            + " toasts. Not showing more. Package=" + pkg);
706                                     return;
707                                 }
708                             }
709                        }
710                    }
711
712                    record = new ToastRecord(callingPid, pkg, callback, duration);
713                    mToastQueue.add(record);
714                    index = mToastQueue.size() - 1;
715                    keepProcessAliveLocked(callingPid);
716                }
717                // If it's at index 0, it's the current toast.  It doesn't matter if it's
718                // new or just been updated.  Call back and tell it to show itself.
719                // If the callback fails, this will remove it from the list, so don't
720                // assume that it's valid after this.
721                if (index == 0) {
722                    showNextToastLocked();
723                }
724            } finally {
725                Binder.restoreCallingIdentity(callingId);
726            }
727        }
728    }
729
730    public void cancelToast(String pkg, ITransientNotification callback) {
731        Slog.i(TAG, "cancelToast pkg=" + pkg + " callback=" + callback);
732
733        if (pkg == null || callback == null) {
734            Slog.e(TAG, "Not cancelling notification. pkg=" + pkg + " callback=" + callback);
735            return ;
736        }
737
738        synchronized (mToastQueue) {
739            long callingId = Binder.clearCallingIdentity();
740            try {
741                int index = indexOfToastLocked(pkg, callback);
742                if (index >= 0) {
743                    cancelToastLocked(index);
744                } else {
745                    Slog.w(TAG, "Toast already cancelled. pkg=" + pkg + " callback=" + callback);
746                }
747            } finally {
748                Binder.restoreCallingIdentity(callingId);
749            }
750        }
751    }
752
753    private void showNextToastLocked() {
754        ToastRecord record = mToastQueue.get(0);
755        while (record != null) {
756            if (DBG) Slog.d(TAG, "Show pkg=" + record.pkg + " callback=" + record.callback);
757            try {
758                record.callback.show();
759                scheduleTimeoutLocked(record, false);
760                return;
761            } catch (RemoteException e) {
762                Slog.w(TAG, "Object died trying to show notification " + record.callback
763                        + " in package " + record.pkg);
764                // remove it from the list and let the process die
765                int index = mToastQueue.indexOf(record);
766                if (index >= 0) {
767                    mToastQueue.remove(index);
768                }
769                keepProcessAliveLocked(record.pid);
770                if (mToastQueue.size() > 0) {
771                    record = mToastQueue.get(0);
772                } else {
773                    record = null;
774                }
775            }
776        }
777    }
778
779    private void cancelToastLocked(int index) {
780        ToastRecord record = mToastQueue.get(index);
781        try {
782            record.callback.hide();
783        } catch (RemoteException e) {
784            Slog.w(TAG, "Object died trying to hide notification " + record.callback
785                    + " in package " + record.pkg);
786            // don't worry about this, we're about to remove it from
787            // the list anyway
788        }
789        mToastQueue.remove(index);
790        keepProcessAliveLocked(record.pid);
791        if (mToastQueue.size() > 0) {
792            // Show the next one. If the callback fails, this will remove
793            // it from the list, so don't assume that the list hasn't changed
794            // after this point.
795            showNextToastLocked();
796        }
797    }
798
799    private void scheduleTimeoutLocked(ToastRecord r, boolean immediate)
800    {
801        Message m = Message.obtain(mHandler, MESSAGE_TIMEOUT, r);
802        long delay = immediate ? 0 : (r.duration == Toast.LENGTH_LONG ? LONG_DELAY : SHORT_DELAY);
803        mHandler.removeCallbacksAndMessages(r);
804        mHandler.sendMessageDelayed(m, delay);
805    }
806
807    private void handleTimeout(ToastRecord record)
808    {
809        if (DBG) Slog.d(TAG, "Timeout pkg=" + record.pkg + " callback=" + record.callback);
810        synchronized (mToastQueue) {
811            int index = indexOfToastLocked(record.pkg, record.callback);
812            if (index >= 0) {
813                cancelToastLocked(index);
814            }
815        }
816    }
817
818    // lock on mToastQueue
819    private int indexOfToastLocked(String pkg, ITransientNotification callback)
820    {
821        IBinder cbak = callback.asBinder();
822        ArrayList<ToastRecord> list = mToastQueue;
823        int len = list.size();
824        for (int i=0; i<len; i++) {
825            ToastRecord r = list.get(i);
826            if (r.pkg.equals(pkg) && r.callback.asBinder() == cbak) {
827                return i;
828            }
829        }
830        return -1;
831    }
832
833    // lock on mToastQueue
834    private void keepProcessAliveLocked(int pid)
835    {
836        int toastCount = 0; // toasts from this pid
837        ArrayList<ToastRecord> list = mToastQueue;
838        int N = list.size();
839        for (int i=0; i<N; i++) {
840            ToastRecord r = list.get(i);
841            if (r.pid == pid) {
842                toastCount++;
843            }
844        }
845        try {
846            mAm.setProcessForeground(mForegroundToken, pid, toastCount > 0);
847        } catch (RemoteException e) {
848            // Shouldn't happen.
849        }
850    }
851
852    private final class WorkerHandler extends Handler
853    {
854        @Override
855        public void handleMessage(Message msg)
856        {
857            switch (msg.what)
858            {
859                case MESSAGE_TIMEOUT:
860                    handleTimeout((ToastRecord)msg.obj);
861                    break;
862            }
863        }
864    }
865
866
867    // Notifications
868    // ============================================================================
869    public void enqueueNotificationWithTag(String pkg, String tag, int id, Notification notification,
870            int[] idOut, int userId)
871    {
872        enqueueNotificationInternal(pkg, Binder.getCallingUid(), Binder.getCallingPid(),
873                tag, id, notification, idOut, userId);
874    }
875
876    private final static int clamp(int x, int low, int high) {
877        return (x < low) ? low : ((x > high) ? high : x);
878    }
879
880    // Not exposed via Binder; for system use only (otherwise malicious apps could spoof the
881    // uid/pid of another application)
882    public void enqueueNotificationInternal(String pkg, int callingUid, int callingPid,
883            String tag, int id, Notification notification, int[] idOut, int userId)
884    {
885        if (DBG) {
886            Slog.v(TAG, "enqueueNotificationInternal: pkg=" + pkg + " id=" + id + " notification=" + notification);
887        }
888        checkCallerIsSystemOrSameApp(pkg);
889        final boolean isSystemNotification = ("android".equals(pkg));
890
891        userId = ActivityManager.handleIncomingUser(callingPid,
892                callingUid, userId, true, true, "enqueueNotification", pkg);
893
894        // Limit the number of notifications that any given package except the android
895        // package can enqueue.  Prevents DOS attacks and deals with leaks.
896        if (!isSystemNotification) {
897            synchronized (mNotificationList) {
898                int count = 0;
899                final int N = mNotificationList.size();
900                for (int i=0; i<N; i++) {
901                    final NotificationRecord r = mNotificationList.get(i);
902                    if (r.pkg.equals(pkg) && r.userId == userId) {
903                        count++;
904                        if (count >= MAX_PACKAGE_NOTIFICATIONS) {
905                            Slog.e(TAG, "Package has already posted " + count
906                                    + " notifications.  Not showing more.  package=" + pkg);
907                            return;
908                        }
909                    }
910                }
911            }
912        }
913
914        // This conditional is a dirty hack to limit the logging done on
915        //     behalf of the download manager without affecting other apps.
916        if (!pkg.equals("com.android.providers.downloads")
917                || Log.isLoggable("DownloadManager", Log.VERBOSE)) {
918            EventLog.writeEvent(EventLogTags.NOTIFICATION_ENQUEUE, pkg, id, tag,
919                    notification.toString());
920        }
921
922        if (pkg == null || notification == null) {
923            throw new IllegalArgumentException("null not allowed: pkg=" + pkg
924                    + " id=" + id + " notification=" + notification);
925        }
926        if (notification.icon != 0) {
927            if (notification.contentView == null) {
928                throw new IllegalArgumentException("contentView required: pkg=" + pkg
929                        + " id=" + id + " notification=" + notification);
930            }
931        }
932
933        // === Scoring ===
934
935        // 0. Sanitize inputs
936        notification.priority = clamp(notification.priority, Notification.PRIORITY_MIN, Notification.PRIORITY_MAX);
937        // Migrate notification flags to scores
938        if (0 != (notification.flags & Notification.FLAG_HIGH_PRIORITY)) {
939            if (notification.priority < Notification.PRIORITY_MAX) notification.priority = Notification.PRIORITY_MAX;
940        } else if (SCORE_ONGOING_HIGHER && 0 != (notification.flags & Notification.FLAG_ONGOING_EVENT)) {
941            if (notification.priority < Notification.PRIORITY_HIGH) notification.priority = Notification.PRIORITY_HIGH;
942        }
943
944        // 1. initial score: buckets of 10, around the app
945        int score = notification.priority * NOTIFICATION_PRIORITY_MULTIPLIER; //[-20..20]
946
947        // 2. Consult external heuristics (TBD)
948
949        // 3. Apply local rules
950
951        // blocked apps
952        if (ENABLE_BLOCKED_NOTIFICATIONS && !isSystemNotification && !areNotificationsEnabledForPackageInt(pkg)) {
953            score = JUNK_SCORE;
954            Slog.e(TAG, "Suppressing notification from package " + pkg + " by user request.");
955        }
956
957        if (DBG) {
958            Slog.v(TAG, "Assigned score=" + score + " to " + notification);
959        }
960
961        if (score < SCORE_DISPLAY_THRESHOLD) {
962            // Notification will be blocked because the score is too low.
963            return;
964        }
965
966        synchronized (mNotificationList) {
967            NotificationRecord r = new NotificationRecord(pkg, tag, id,
968                    callingUid, callingPid, userId,
969                    score,
970                    notification);
971            NotificationRecord old = null;
972
973            int index = indexOfNotificationLocked(pkg, tag, id, userId);
974            if (index < 0) {
975                mNotificationList.add(r);
976            } else {
977                old = mNotificationList.remove(index);
978                mNotificationList.add(index, r);
979                // Make sure we don't lose the foreground service state.
980                if (old != null) {
981                    notification.flags |=
982                        old.notification.flags&Notification.FLAG_FOREGROUND_SERVICE;
983                }
984            }
985
986            // Ensure if this is a foreground service that the proper additional
987            // flags are set.
988            if ((notification.flags&Notification.FLAG_FOREGROUND_SERVICE) != 0) {
989                notification.flags |= Notification.FLAG_ONGOING_EVENT
990                        | Notification.FLAG_NO_CLEAR;
991            }
992
993            if (notification.icon != 0) {
994                final UserHandle user = new UserHandle(userId);
995                final StatusBarNotification n = new StatusBarNotification(
996                        pkg, id, tag, r.uid, r.initialPid, score, notification, user);
997                if (old != null && old.statusBarKey != null) {
998                    r.statusBarKey = old.statusBarKey;
999                    long identity = Binder.clearCallingIdentity();
1000                    try {
1001                        mStatusBar.updateNotification(r.statusBarKey, n);
1002                    }
1003                    finally {
1004                        Binder.restoreCallingIdentity(identity);
1005                    }
1006                } else {
1007                    long identity = Binder.clearCallingIdentity();
1008                    try {
1009                        r.statusBarKey = mStatusBar.addNotification(n);
1010                        if ((n.notification.flags & Notification.FLAG_SHOW_LIGHTS) != 0) {
1011                            mAttentionLight.pulse();
1012                        }
1013                    }
1014                    finally {
1015                        Binder.restoreCallingIdentity(identity);
1016                    }
1017                }
1018                sendAccessibilityEvent(notification, pkg);
1019            } else {
1020                Slog.e(TAG, "Ignoring notification with icon==0: " + notification);
1021                if (old != null && old.statusBarKey != null) {
1022                    long identity = Binder.clearCallingIdentity();
1023                    try {
1024                        mStatusBar.removeNotification(old.statusBarKey);
1025                    }
1026                    finally {
1027                        Binder.restoreCallingIdentity(identity);
1028                    }
1029                }
1030            }
1031
1032            // If we're not supposed to beep, vibrate, etc. then don't.
1033            if (((mDisabledNotifications & StatusBarManager.DISABLE_NOTIFICATION_ALERTS) == 0)
1034                    && (!(old != null
1035                        && (notification.flags & Notification.FLAG_ONLY_ALERT_ONCE) != 0 ))
1036                    && (r.userId == UserHandle.USER_ALL || r.userId == userId)
1037                    && mSystemReady) {
1038
1039                final AudioManager audioManager = (AudioManager) mContext
1040                .getSystemService(Context.AUDIO_SERVICE);
1041                // sound
1042                final boolean useDefaultSound =
1043                    (notification.defaults & Notification.DEFAULT_SOUND) != 0;
1044                if (useDefaultSound || notification.sound != null) {
1045                    Uri uri;
1046                    if (useDefaultSound) {
1047                        uri = Settings.System.DEFAULT_NOTIFICATION_URI;
1048                    } else {
1049                        uri = notification.sound;
1050                    }
1051                    boolean looping = (notification.flags & Notification.FLAG_INSISTENT) != 0;
1052                    int audioStreamType;
1053                    if (notification.audioStreamType >= 0) {
1054                        audioStreamType = notification.audioStreamType;
1055                    } else {
1056                        audioStreamType = DEFAULT_STREAM_TYPE;
1057                    }
1058                    mSoundNotification = r;
1059                    // do not play notifications if stream volume is 0
1060                    // (typically because ringer mode is silent).
1061                    if (audioManager.getStreamVolume(audioStreamType) != 0) {
1062                        final long identity = Binder.clearCallingIdentity();
1063                        try {
1064                            final IRingtonePlayer player = mAudioService.getRingtonePlayer();
1065                            if (player != null) {
1066                                player.playAsync(uri, looping, audioStreamType);
1067                            }
1068                        } catch (RemoteException e) {
1069                        } finally {
1070                            Binder.restoreCallingIdentity(identity);
1071                        }
1072                    }
1073                }
1074
1075                // vibrate
1076                final boolean useDefaultVibrate =
1077                    (notification.defaults & Notification.DEFAULT_VIBRATE) != 0;
1078                if ((useDefaultVibrate || notification.vibrate != null)
1079                        && !(audioManager.getRingerMode() == AudioManager.RINGER_MODE_SILENT)) {
1080                    mVibrateNotification = r;
1081
1082                    mVibrator.vibrate(useDefaultVibrate ? DEFAULT_VIBRATE_PATTERN
1083                                                        : notification.vibrate,
1084                              ((notification.flags & Notification.FLAG_INSISTENT) != 0) ? 0: -1);
1085                }
1086            }
1087
1088            // this option doesn't shut off the lights
1089
1090            // light
1091            // the most recent thing gets the light
1092            mLights.remove(old);
1093            if (mLedNotification == old) {
1094                mLedNotification = null;
1095            }
1096            //Slog.i(TAG, "notification.lights="
1097            //        + ((old.notification.lights.flags & Notification.FLAG_SHOW_LIGHTS) != 0));
1098            if ((notification.flags & Notification.FLAG_SHOW_LIGHTS) != 0) {
1099                mLights.add(r);
1100                updateLightsLocked();
1101            } else {
1102                if (old != null
1103                        && ((old.notification.flags & Notification.FLAG_SHOW_LIGHTS) != 0)) {
1104                    updateLightsLocked();
1105                }
1106            }
1107        }
1108
1109        idOut[0] = id;
1110    }
1111
1112    private void sendAccessibilityEvent(Notification notification, CharSequence packageName) {
1113        AccessibilityManager manager = AccessibilityManager.getInstance(mContext);
1114        if (!manager.isEnabled()) {
1115            return;
1116        }
1117
1118        AccessibilityEvent event =
1119            AccessibilityEvent.obtain(AccessibilityEvent.TYPE_NOTIFICATION_STATE_CHANGED);
1120        event.setPackageName(packageName);
1121        event.setClassName(Notification.class.getName());
1122        event.setParcelableData(notification);
1123        CharSequence tickerText = notification.tickerText;
1124        if (!TextUtils.isEmpty(tickerText)) {
1125            event.getText().add(tickerText);
1126        }
1127
1128        manager.sendAccessibilityEvent(event);
1129    }
1130
1131    private void cancelNotificationLocked(NotificationRecord r, boolean sendDelete) {
1132        // tell the app
1133        if (sendDelete) {
1134            if (r.notification.deleteIntent != null) {
1135                try {
1136                    r.notification.deleteIntent.send();
1137                } catch (PendingIntent.CanceledException ex) {
1138                    // do nothing - there's no relevant way to recover, and
1139                    //     no reason to let this propagate
1140                    Slog.w(TAG, "canceled PendingIntent for " + r.pkg, ex);
1141                }
1142            }
1143        }
1144
1145        // status bar
1146        if (r.notification.icon != 0) {
1147            long identity = Binder.clearCallingIdentity();
1148            try {
1149                mStatusBar.removeNotification(r.statusBarKey);
1150            }
1151            finally {
1152                Binder.restoreCallingIdentity(identity);
1153            }
1154            r.statusBarKey = null;
1155        }
1156
1157        // sound
1158        if (mSoundNotification == r) {
1159            mSoundNotification = null;
1160            final long identity = Binder.clearCallingIdentity();
1161            try {
1162                final IRingtonePlayer player = mAudioService.getRingtonePlayer();
1163                if (player != null) {
1164                    player.stopAsync();
1165                }
1166            } catch (RemoteException e) {
1167            } finally {
1168                Binder.restoreCallingIdentity(identity);
1169            }
1170        }
1171
1172        // vibrate
1173        if (mVibrateNotification == r) {
1174            mVibrateNotification = null;
1175            long identity = Binder.clearCallingIdentity();
1176            try {
1177                mVibrator.cancel();
1178            }
1179            finally {
1180                Binder.restoreCallingIdentity(identity);
1181            }
1182        }
1183
1184        // light
1185        mLights.remove(r);
1186        if (mLedNotification == r) {
1187            mLedNotification = null;
1188        }
1189    }
1190
1191    /**
1192     * Cancels a notification ONLY if it has all of the {@code mustHaveFlags}
1193     * and none of the {@code mustNotHaveFlags}.
1194     */
1195    private void cancelNotification(String pkg, String tag, int id, int mustHaveFlags,
1196            int mustNotHaveFlags, boolean sendDelete, int userId) {
1197        EventLog.writeEvent(EventLogTags.NOTIFICATION_CANCEL, pkg, id, tag,
1198                mustHaveFlags, mustNotHaveFlags);
1199
1200        synchronized (mNotificationList) {
1201            int index = indexOfNotificationLocked(pkg, tag, id, userId);
1202            if (index >= 0) {
1203                NotificationRecord r = mNotificationList.get(index);
1204
1205                if ((r.notification.flags & mustHaveFlags) != mustHaveFlags) {
1206                    return;
1207                }
1208                if ((r.notification.flags & mustNotHaveFlags) != 0) {
1209                    return;
1210                }
1211
1212                mNotificationList.remove(index);
1213
1214                cancelNotificationLocked(r, sendDelete);
1215                updateLightsLocked();
1216            }
1217        }
1218    }
1219
1220    /**
1221     * Cancels all notifications from a given package that have all of the
1222     * {@code mustHaveFlags}.
1223     */
1224    boolean cancelAllNotificationsInt(String pkg, int mustHaveFlags,
1225            int mustNotHaveFlags, boolean doit, int userId) {
1226        EventLog.writeEvent(EventLogTags.NOTIFICATION_CANCEL_ALL, pkg, mustHaveFlags,
1227                mustNotHaveFlags);
1228
1229        synchronized (mNotificationList) {
1230            final int N = mNotificationList.size();
1231            boolean canceledSomething = false;
1232            for (int i = N-1; i >= 0; --i) {
1233                NotificationRecord r = mNotificationList.get(i);
1234                if (userId != UserHandle.USER_ALL && r.userId != userId) {
1235                    continue;
1236                }
1237                if ((r.notification.flags & mustHaveFlags) != mustHaveFlags) {
1238                    continue;
1239                }
1240                if ((r.notification.flags & mustNotHaveFlags) != 0) {
1241                    continue;
1242                }
1243                if (!r.pkg.equals(pkg)) {
1244                    continue;
1245                }
1246                canceledSomething = true;
1247                if (!doit) {
1248                    return true;
1249                }
1250                mNotificationList.remove(i);
1251                cancelNotificationLocked(r, false);
1252            }
1253            if (canceledSomething) {
1254                updateLightsLocked();
1255            }
1256            return canceledSomething;
1257        }
1258    }
1259
1260    public void cancelNotificationWithTag(String pkg, String tag, int id, int userId) {
1261        checkCallerIsSystemOrSameApp(pkg);
1262        userId = ActivityManager.handleIncomingUser(Binder.getCallingPid(),
1263                Binder.getCallingUid(), userId, true, true, "cancelNotificationWithTag", pkg);
1264        // Don't allow client applications to cancel foreground service notis.
1265        cancelNotification(pkg, tag, id, 0,
1266                Binder.getCallingUid() == Process.SYSTEM_UID
1267                ? 0 : Notification.FLAG_FOREGROUND_SERVICE, false, userId);
1268    }
1269
1270    public void cancelAllNotifications(String pkg, int userId) {
1271        checkCallerIsSystemOrSameApp(pkg);
1272
1273        userId = ActivityManager.handleIncomingUser(Binder.getCallingPid(),
1274                Binder.getCallingUid(), userId, true, true, "cancelAllNotifications", pkg);
1275
1276        // Calling from user space, don't allow the canceling of actively
1277        // running foreground services.
1278        cancelAllNotificationsInt(pkg, 0, Notification.FLAG_FOREGROUND_SERVICE, true, userId);
1279    }
1280
1281    void checkCallerIsSystem() {
1282        int uid = Binder.getCallingUid();
1283        if (UserHandle.getAppId(uid) == Process.SYSTEM_UID || uid == 0) {
1284            return;
1285        }
1286        throw new SecurityException("Disallowed call for uid " + uid);
1287    }
1288
1289    void checkCallerIsSystemOrSameApp(String pkg) {
1290        int uid = Binder.getCallingUid();
1291        if (UserHandle.getAppId(uid) == Process.SYSTEM_UID || uid == 0) {
1292            return;
1293        }
1294        try {
1295            ApplicationInfo ai = AppGlobals.getPackageManager().getApplicationInfo(
1296                    pkg, 0, UserHandle.getCallingUserId());
1297            if (!UserHandle.isSameApp(ai.uid, uid)) {
1298                throw new SecurityException("Calling uid " + uid + " gave package"
1299                        + pkg + " which is owned by uid " + ai.uid);
1300            }
1301        } catch (RemoteException re) {
1302            throw new SecurityException("Unknown package " + pkg + "\n" + re);
1303        }
1304    }
1305
1306    void cancelAll(int userId) {
1307        synchronized (mNotificationList) {
1308            final int N = mNotificationList.size();
1309            for (int i=N-1; i>=0; i--) {
1310                NotificationRecord r = mNotificationList.get(i);
1311
1312                if (r.userId != userId) {
1313                    continue;
1314                }
1315
1316                if ((r.notification.flags & (Notification.FLAG_ONGOING_EVENT
1317                                | Notification.FLAG_NO_CLEAR)) == 0) {
1318                    mNotificationList.remove(i);
1319                    cancelNotificationLocked(r, true);
1320                }
1321            }
1322
1323            updateLightsLocked();
1324        }
1325    }
1326
1327    // lock on mNotificationList
1328    private void updateLightsLocked()
1329    {
1330        // handle notification lights
1331        if (mLedNotification == null) {
1332            // get next notification, if any
1333            int n = mLights.size();
1334            if (n > 0) {
1335                mLedNotification = mLights.get(n-1);
1336            }
1337        }
1338
1339        // Don't flash while we are in a call or screen is on
1340        if (mLedNotification == null || mInCall || mScreenOn) {
1341            mNotificationLight.turnOff();
1342        } else {
1343            int ledARGB = mLedNotification.notification.ledARGB;
1344            int ledOnMS = mLedNotification.notification.ledOnMS;
1345            int ledOffMS = mLedNotification.notification.ledOffMS;
1346            if ((mLedNotification.notification.defaults & Notification.DEFAULT_LIGHTS) != 0) {
1347                ledARGB = mDefaultNotificationColor;
1348                ledOnMS = mDefaultNotificationLedOn;
1349                ledOffMS = mDefaultNotificationLedOff;
1350            }
1351            if (mNotificationPulseEnabled) {
1352                // pulse repeatedly
1353                mNotificationLight.setFlashing(ledARGB, LightsService.LIGHT_FLASH_TIMED,
1354                        ledOnMS, ledOffMS);
1355            }
1356        }
1357    }
1358
1359    // lock on mNotificationList
1360    private int indexOfNotificationLocked(String pkg, String tag, int id, int userId)
1361    {
1362        ArrayList<NotificationRecord> list = mNotificationList;
1363        final int len = list.size();
1364        for (int i=0; i<len; i++) {
1365            NotificationRecord r = list.get(i);
1366            if (r.userId != userId || r.id != id) {
1367                continue;
1368            }
1369            if (tag == null) {
1370                if (r.tag != null) {
1371                    continue;
1372                }
1373            } else {
1374                if (!tag.equals(r.tag)) {
1375                    continue;
1376                }
1377            }
1378            if (r.pkg.equals(pkg)) {
1379                return i;
1380            }
1381        }
1382        return -1;
1383    }
1384
1385    private void updateNotificationPulse() {
1386        synchronized (mNotificationList) {
1387            updateLightsLocked();
1388        }
1389    }
1390
1391    // ======================================================================
1392    @Override
1393    protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
1394        if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
1395                != PackageManager.PERMISSION_GRANTED) {
1396            pw.println("Permission Denial: can't dump NotificationManager from from pid="
1397                    + Binder.getCallingPid()
1398                    + ", uid=" + Binder.getCallingUid());
1399            return;
1400        }
1401
1402        pw.println("Current Notification Manager state:");
1403
1404        int N;
1405
1406        synchronized (mToastQueue) {
1407            N = mToastQueue.size();
1408            if (N > 0) {
1409                pw.println("  Toast Queue:");
1410                for (int i=0; i<N; i++) {
1411                    mToastQueue.get(i).dump(pw, "    ");
1412                }
1413                pw.println("  ");
1414            }
1415
1416        }
1417
1418        synchronized (mNotificationList) {
1419            N = mNotificationList.size();
1420            if (N > 0) {
1421                pw.println("  Notification List:");
1422                for (int i=0; i<N; i++) {
1423                    mNotificationList.get(i).dump(pw, "    ", mContext);
1424                }
1425                pw.println("  ");
1426            }
1427
1428            N = mLights.size();
1429            if (N > 0) {
1430                pw.println("  Lights List:");
1431                for (int i=0; i<N; i++) {
1432                    mLights.get(i).dump(pw, "    ", mContext);
1433                }
1434                pw.println("  ");
1435            }
1436
1437            pw.println("  mSoundNotification=" + mSoundNotification);
1438            pw.println("  mVibrateNotification=" + mVibrateNotification);
1439            pw.println("  mDisabledNotifications=0x" + Integer.toHexString(mDisabledNotifications));
1440            pw.println("  mSystemReady=" + mSystemReady);
1441        }
1442    }
1443}
1444