NotificationListenerService.java revision 5717bd6ddb9f6c2fca6626ebb34f78feb1ae684a
1/*
2 * Copyright (C) 2013 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 android.service.notification;
18
19import android.os.Handler;
20import android.os.Looper;
21import android.os.Message;
22
23import android.annotation.IntDef;
24import android.annotation.SystemApi;
25import android.annotation.SdkConstant;
26import android.app.INotificationManager;
27import android.app.Notification;
28import android.app.Notification.Builder;
29import android.app.NotificationManager;
30import android.app.Service;
31import android.content.ComponentName;
32import android.content.Context;
33import android.content.Intent;
34import android.content.pm.ParceledListSlice;
35import android.graphics.drawable.BitmapDrawable;
36import android.graphics.drawable.Drawable;
37import android.graphics.drawable.Icon;
38import android.graphics.Bitmap;
39import android.os.Build;
40import android.os.Bundle;
41import android.os.IBinder;
42import android.os.Parcel;
43import android.os.Parcelable;
44import android.os.RemoteException;
45import android.os.ServiceManager;
46import android.util.ArrayMap;
47import android.util.ArraySet;
48import android.util.Log;
49import android.widget.RemoteViews;
50import com.android.internal.annotations.GuardedBy;
51import com.android.internal.os.SomeArgs;
52import java.lang.annotation.Retention;
53import java.lang.annotation.RetentionPolicy;
54import java.util.ArrayList;
55import java.util.Collections;
56import java.util.List;
57
58/**
59 * A service that receives calls from the system when new notifications are
60 * posted or removed, or their ranking changed.
61 * <p>To extend this class, you must declare the service in your manifest file with
62 * the {@link android.Manifest.permission#BIND_NOTIFICATION_LISTENER_SERVICE} permission
63 * and include an intent filter with the {@link #SERVICE_INTERFACE} action. For example:</p>
64 * <pre>
65 * &lt;service android:name=".NotificationListener"
66 *          android:label="&#64;string/service_name"
67 *          android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
68 *     &lt;intent-filter>
69 *         &lt;action android:name="android.service.notification.NotificationListenerService" />
70 *     &lt;/intent-filter>
71 * &lt;/service></pre>
72 *
73 * <p>The service should wait for the {@link #onListenerConnected()} event
74 * before performing any operations. The {@link #requestRebind(ComponentName)}
75 * method is the <i>only</i> one that is safe to call before {@link #onListenerConnected()}
76 * or after {@link #onListenerDisconnected()}.
77 * </p>
78 */
79public abstract class NotificationListenerService extends Service {
80    // TAG = "NotificationListenerService[MySubclass]"
81    private final String TAG = NotificationListenerService.class.getSimpleName()
82            + "[" + getClass().getSimpleName() + "]";
83
84    /**
85     * {@link #getCurrentInterruptionFilter() Interruption filter} constant -
86     *     Normal interruption filter.
87     */
88    public static final int INTERRUPTION_FILTER_ALL
89            = NotificationManager.INTERRUPTION_FILTER_ALL;
90
91    /**
92     * {@link #getCurrentInterruptionFilter() Interruption filter} constant -
93     *     Priority interruption filter.
94     */
95    public static final int INTERRUPTION_FILTER_PRIORITY
96            = NotificationManager.INTERRUPTION_FILTER_PRIORITY;
97
98    /**
99     * {@link #getCurrentInterruptionFilter() Interruption filter} constant -
100     *     No interruptions filter.
101     */
102    public static final int INTERRUPTION_FILTER_NONE
103            = NotificationManager.INTERRUPTION_FILTER_NONE;
104
105    /**
106     * {@link #getCurrentInterruptionFilter() Interruption filter} constant -
107     *     Alarms only interruption filter.
108     */
109    public static final int INTERRUPTION_FILTER_ALARMS
110            = NotificationManager.INTERRUPTION_FILTER_ALARMS;
111
112    /** {@link #getCurrentInterruptionFilter() Interruption filter} constant - returned when
113     * the value is unavailable for any reason.  For example, before the notification listener
114     * is connected.
115     *
116     * {@see #onListenerConnected()}
117     */
118    public static final int INTERRUPTION_FILTER_UNKNOWN
119            = NotificationManager.INTERRUPTION_FILTER_UNKNOWN;
120
121    /** {@link #getCurrentListenerHints() Listener hints} constant - the primary device UI
122     * should disable notification sound, vibrating and other visual or aural effects.
123     * This does not change the interruption filter, only the effects. **/
124    public static final int HINT_HOST_DISABLE_EFFECTS = 1;
125
126    /**
127     * Whether notification suppressed by DND should not interruption visually when the screen is
128     * off.
129     */
130    public static final int SUPPRESSED_EFFECT_SCREEN_OFF =
131            NotificationManager.Policy.SUPPRESSED_EFFECT_SCREEN_OFF;
132    /**
133     * Whether notification suppressed by DND should not interruption visually when the screen is
134     * on.
135     */
136    public static final int SUPPRESSED_EFFECT_SCREEN_ON =
137            NotificationManager.Policy.SUPPRESSED_EFFECT_SCREEN_ON;
138
139    /**
140     * The full trim of the StatusBarNotification including all its features.
141     *
142     * @hide
143     */
144    @SystemApi
145    public static final int TRIM_FULL = 0;
146
147    /**
148     * A light trim of the StatusBarNotification excluding the following features:
149     *
150     * <ol>
151     *     <li>{@link Notification#tickerView tickerView}</li>
152     *     <li>{@link Notification#contentView contentView}</li>
153     *     <li>{@link Notification#largeIcon largeIcon}</li>
154     *     <li>{@link Notification#bigContentView bigContentView}</li>
155     *     <li>{@link Notification#headsUpContentView headsUpContentView}</li>
156     *     <li>{@link Notification#EXTRA_LARGE_ICON extras[EXTRA_LARGE_ICON]}</li>
157     *     <li>{@link Notification#EXTRA_LARGE_ICON_BIG extras[EXTRA_LARGE_ICON_BIG]}</li>
158     *     <li>{@link Notification#EXTRA_PICTURE extras[EXTRA_PICTURE]}</li>
159     *     <li>{@link Notification#EXTRA_BIG_TEXT extras[EXTRA_BIG_TEXT]}</li>
160     * </ol>
161     *
162     * @hide
163     */
164    @SystemApi
165    public static final int TRIM_LIGHT = 1;
166
167    private final Object mLock = new Object();
168
169    private Handler mHandler;
170
171    /** @hide */
172    protected NotificationListenerWrapper mWrapper = null;
173    private boolean isConnected = false;
174
175    @GuardedBy("mLock")
176    private RankingMap mRankingMap;
177
178    private INotificationManager mNoMan;
179
180    /**
181     * Only valid after a successful call to (@link registerAsService}.
182     * @hide
183     */
184    protected int mCurrentUser;
185
186    /**
187     * This context is required for system services since NotificationListenerService isn't
188     * started as a real Service and hence no context is available..
189     * @hide
190     */
191    protected Context mSystemContext;
192
193    /**
194     * The {@link Intent} that must be declared as handled by the service.
195     */
196    @SdkConstant(SdkConstant.SdkConstantType.SERVICE_ACTION)
197    public static final String SERVICE_INTERFACE
198            = "android.service.notification.NotificationListenerService";
199
200    @Override
201    protected void attachBaseContext(Context base) {
202        super.attachBaseContext(base);
203        mHandler = new MyHandler(getMainLooper());
204    }
205
206    /**
207     * Implement this method to learn about new notifications as they are posted by apps.
208     *
209     * @param sbn A data structure encapsulating the original {@link android.app.Notification}
210     *            object as well as its identifying information (tag and id) and source
211     *            (package name).
212     */
213    public void onNotificationPosted(StatusBarNotification sbn) {
214        // optional
215    }
216
217    /**
218     * Implement this method to learn about new notifications as they are posted by apps.
219     *
220     * @param sbn A data structure encapsulating the original {@link android.app.Notification}
221     *            object as well as its identifying information (tag and id) and source
222     *            (package name).
223     * @param rankingMap The current ranking map that can be used to retrieve ranking information
224     *                   for active notifications, including the newly posted one.
225     */
226    public void onNotificationPosted(StatusBarNotification sbn, RankingMap rankingMap) {
227        onNotificationPosted(sbn);
228    }
229
230    /**
231     * Implement this method to learn when notifications are removed.
232     * <p>
233     * This might occur because the user has dismissed the notification using system UI (or another
234     * notification listener) or because the app has withdrawn the notification.
235     * <p>
236     * NOTE: The {@link StatusBarNotification} object you receive will be "light"; that is, the
237     * result from {@link StatusBarNotification#getNotification} may be missing some heavyweight
238     * fields such as {@link android.app.Notification#contentView} and
239     * {@link android.app.Notification#largeIcon}. However, all other fields on
240     * {@link StatusBarNotification}, sufficient to match this call with a prior call to
241     * {@link #onNotificationPosted(StatusBarNotification)}, will be intact.
242     *
243     * @param sbn A data structure encapsulating at least the original information (tag and id)
244     *            and source (package name) used to post the {@link android.app.Notification} that
245     *            was just removed.
246     */
247    public void onNotificationRemoved(StatusBarNotification sbn) {
248        // optional
249    }
250
251    /**
252     * Implement this method to learn when notifications are removed.
253     * <p>
254     * This might occur because the user has dismissed the notification using system UI (or another
255     * notification listener) or because the app has withdrawn the notification.
256     * <p>
257     * NOTE: The {@link StatusBarNotification} object you receive will be "light"; that is, the
258     * result from {@link StatusBarNotification#getNotification} may be missing some heavyweight
259     * fields such as {@link android.app.Notification#contentView} and
260     * {@link android.app.Notification#largeIcon}. However, all other fields on
261     * {@link StatusBarNotification}, sufficient to match this call with a prior call to
262     * {@link #onNotificationPosted(StatusBarNotification)}, will be intact.
263     *
264     * @param sbn A data structure encapsulating at least the original information (tag and id)
265     *            and source (package name) used to post the {@link android.app.Notification} that
266     *            was just removed.
267     * @param rankingMap The current ranking map that can be used to retrieve ranking information
268     *                   for active notifications.
269     *
270     */
271    public void onNotificationRemoved(StatusBarNotification sbn, RankingMap rankingMap) {
272        onNotificationRemoved(sbn);
273    }
274
275    /**
276     * Implement this method to learn about when the listener is enabled and connected to
277     * the notification manager.  You are safe to call {@link #getActiveNotifications()}
278     * at this time.
279     */
280    public void onListenerConnected() {
281        // optional
282    }
283
284    /**
285     * Implement this method to learn about when the listener is disconnected from the
286     * notification manager.You will not receive any events after this call, and may only
287     * call {@link #requestRebind(ComponentName)} at this time.
288     */
289    public void onListenerDisconnected() {
290        // optional
291    }
292
293    /**
294     * Implement this method to be notified when the notification ranking changes.
295     *
296     * @param rankingMap The current ranking map that can be used to retrieve ranking information
297     *                   for active notifications.
298     */
299    public void onNotificationRankingUpdate(RankingMap rankingMap) {
300        // optional
301    }
302
303    /**
304     * Implement this method to be notified when the
305     * {@link #getCurrentListenerHints() Listener hints} change.
306     *
307     * @param hints The current {@link #getCurrentListenerHints() listener hints}.
308     */
309    public void onListenerHintsChanged(int hints) {
310        // optional
311    }
312
313    /**
314     * Implement this method to be notified when the
315     * {@link #getCurrentInterruptionFilter() interruption filter} changed.
316     *
317     * @param interruptionFilter The current
318     *     {@link #getCurrentInterruptionFilter() interruption filter}.
319     */
320    public void onInterruptionFilterChanged(int interruptionFilter) {
321        // optional
322    }
323
324    /** @hide */
325    protected final INotificationManager getNotificationInterface() {
326        if (mNoMan == null) {
327            mNoMan = INotificationManager.Stub.asInterface(
328                    ServiceManager.getService(Context.NOTIFICATION_SERVICE));
329        }
330        return mNoMan;
331    }
332
333    /**
334     * Inform the notification manager about dismissal of a single notification.
335     * <p>
336     * Use this if your listener has a user interface that allows the user to dismiss individual
337     * notifications, similar to the behavior of Android's status bar and notification panel.
338     * It should be called after the user dismisses a single notification using your UI;
339     * upon being informed, the notification manager will actually remove the notification
340     * and you will get an {@link #onNotificationRemoved(StatusBarNotification)} callback.
341     * <p>
342     * <b>Note:</b> If your listener allows the user to fire a notification's
343     * {@link android.app.Notification#contentIntent} by tapping/clicking/etc., you should call
344     * this method at that time <i>if</i> the Notification in question has the
345     * {@link android.app.Notification#FLAG_AUTO_CANCEL} flag set.
346     *
347     * <p>The service should wait for the {@link #onListenerConnected()} event
348     * before performing this operation.
349     *
350     * @param pkg Package of the notifying app.
351     * @param tag Tag of the notification as specified by the notifying app in
352     *     {@link android.app.NotificationManager#notify(String, int, android.app.Notification)}.
353     * @param id  ID of the notification as specified by the notifying app in
354     *     {@link android.app.NotificationManager#notify(String, int, android.app.Notification)}.
355     * <p>
356     * @deprecated Use {@link #cancelNotification(String key)}
357     * instead. Beginning with {@link android.os.Build.VERSION_CODES#LOLLIPOP} this method will no longer
358     * cancel the notification. It will continue to cancel the notification for applications
359     * whose {@code targetSdkVersion} is earlier than {@link android.os.Build.VERSION_CODES#LOLLIPOP}.
360     */
361    public final void cancelNotification(String pkg, String tag, int id) {
362        if (!isBound()) return;
363        try {
364            getNotificationInterface().cancelNotificationFromListener(
365                    mWrapper, pkg, tag, id);
366        } catch (android.os.RemoteException ex) {
367            Log.v(TAG, "Unable to contact notification manager", ex);
368        }
369    }
370
371    /**
372     * Inform the notification manager about dismissal of a single notification.
373     * <p>
374     * Use this if your listener has a user interface that allows the user to dismiss individual
375     * notifications, similar to the behavior of Android's status bar and notification panel.
376     * It should be called after the user dismisses a single notification using your UI;
377     * upon being informed, the notification manager will actually remove the notification
378     * and you will get an {@link #onNotificationRemoved(StatusBarNotification)} callback.
379     * <p>
380     * <b>Note:</b> If your listener allows the user to fire a notification's
381     * {@link android.app.Notification#contentIntent} by tapping/clicking/etc., you should call
382     * this method at that time <i>if</i> the Notification in question has the
383     * {@link android.app.Notification#FLAG_AUTO_CANCEL} flag set.
384     * <p>
385     *
386     * <p>The service should wait for the {@link #onListenerConnected()} event
387     * before performing this operation.
388     *
389     * @param key Notification to dismiss from {@link StatusBarNotification#getKey()}.
390     */
391    public final void cancelNotification(String key) {
392        if (!isBound()) return;
393        try {
394            getNotificationInterface().cancelNotificationsFromListener(mWrapper,
395                    new String[] { key });
396        } catch (android.os.RemoteException ex) {
397            Log.v(TAG, "Unable to contact notification manager", ex);
398        }
399    }
400
401    /**
402     * Inform the notification manager about dismissal of all notifications.
403     * <p>
404     * Use this if your listener has a user interface that allows the user to dismiss all
405     * notifications, similar to the behavior of Android's status bar and notification panel.
406     * It should be called after the user invokes the "dismiss all" function of your UI;
407     * upon being informed, the notification manager will actually remove all active notifications
408     * and you will get multiple {@link #onNotificationRemoved(StatusBarNotification)} callbacks.
409     *
410     * <p>The service should wait for the {@link #onListenerConnected()} event
411     * before performing this operation.
412     *
413     * {@see #cancelNotification(String, String, int)}
414     */
415    public final void cancelAllNotifications() {
416        cancelNotifications(null /*all*/);
417    }
418
419    /**
420     * Inform the notification manager about dismissal of specific notifications.
421     * <p>
422     * Use this if your listener has a user interface that allows the user to dismiss
423     * multiple notifications at once.
424     *
425     * <p>The service should wait for the {@link #onListenerConnected()} event
426     * before performing this operation.
427     *
428     * @param keys Notifications to dismiss, or {@code null} to dismiss all.
429     *
430     * {@see #cancelNotification(String, String, int)}
431     */
432    public final void cancelNotifications(String[] keys) {
433        if (!isBound()) return;
434        try {
435            getNotificationInterface().cancelNotificationsFromListener(mWrapper, keys);
436        } catch (android.os.RemoteException ex) {
437            Log.v(TAG, "Unable to contact notification manager", ex);
438        }
439    }
440
441    /**
442     * Inform the notification manager that these notifications have been viewed by the
443     * user. This should only be called when there is sufficient confidence that the user is
444     * looking at the notifications, such as when the notifications appear on the screen due to
445     * an explicit user interaction.
446     *
447     * <p>The service should wait for the {@link #onListenerConnected()} event
448     * before performing this operation.
449     *
450     * @param keys Notifications to mark as seen.
451     */
452    public final void setNotificationsShown(String[] keys) {
453        if (!isBound()) return;
454        try {
455            getNotificationInterface().setNotificationsShownFromListener(mWrapper, keys);
456        } catch (android.os.RemoteException ex) {
457            Log.v(TAG, "Unable to contact notification manager", ex);
458        }
459    }
460
461    /**
462     * Sets the notification trim that will be received via {@link #onNotificationPosted}.
463     *
464     * <p>
465     * Setting a trim other than {@link #TRIM_FULL} enables listeners that don't need access to the
466     * full notification features right away to reduce their memory footprint. Full notifications
467     * can be requested on-demand via {@link #getActiveNotifications(int)}.
468     *
469     * <p>
470     * Set to {@link #TRIM_FULL} initially.
471     *
472     * <p>The service should wait for the {@link #onListenerConnected()} event
473     * before performing this operation.
474     *
475     * @hide
476     *
477     * @param trim trim of the notifications to be passed via {@link #onNotificationPosted}.
478     *             See <code>TRIM_*</code> constants.
479     */
480    @SystemApi
481    public final void setOnNotificationPostedTrim(int trim) {
482        if (!isBound()) return;
483        try {
484            getNotificationInterface().setOnNotificationPostedTrimFromListener(mWrapper, trim);
485        } catch (RemoteException ex) {
486            Log.v(TAG, "Unable to contact notification manager", ex);
487        }
488    }
489
490    /**
491     * Request the list of outstanding notifications (that is, those that are visible to the
492     * current user). Useful when you don't know what's already been posted.
493     *
494     * <p>The service should wait for the {@link #onListenerConnected()} event
495     * before performing this operation.
496     *
497     * @return An array of active notifications, sorted in natural order.
498     */
499    public StatusBarNotification[] getActiveNotifications() {
500        return getActiveNotifications(null, TRIM_FULL);
501    }
502
503    /**
504     * Request the list of outstanding notifications (that is, those that are visible to the
505     * current user). Useful when you don't know what's already been posted.
506     *
507     * @hide
508     *
509     * @param trim trim of the notifications to be returned. See <code>TRIM_*</code> constants.
510     * @return An array of active notifications, sorted in natural order.
511     */
512    @SystemApi
513    public StatusBarNotification[] getActiveNotifications(int trim) {
514        return getActiveNotifications(null, trim);
515    }
516
517    /**
518     * Request one or more notifications by key. Useful if you have been keeping track of
519     * notifications but didn't want to retain the bits, and now need to go back and extract
520     * more data out of those notifications.
521     *
522     * <p>The service should wait for the {@link #onListenerConnected()} event
523     * before performing this operation.
524     *
525     * @param keys the keys of the notifications to request
526     * @return An array of notifications corresponding to the requested keys, in the
527     * same order as the key list.
528     */
529    public StatusBarNotification[] getActiveNotifications(String[] keys) {
530        return getActiveNotifications(keys, TRIM_FULL);
531    }
532
533    /**
534     * Request one or more notifications by key. Useful if you have been keeping track of
535     * notifications but didn't want to retain the bits, and now need to go back and extract
536     * more data out of those notifications.
537     *
538     * @hide
539     *
540     * @param keys the keys of the notifications to request
541     * @param trim trim of the notifications to be returned. See <code>TRIM_*</code> constants.
542     * @return An array of notifications corresponding to the requested keys, in the
543     * same order as the key list.
544     */
545    @SystemApi
546    public StatusBarNotification[] getActiveNotifications(String[] keys, int trim) {
547        if (!isBound())
548            return null;
549        try {
550            ParceledListSlice<StatusBarNotification> parceledList = getNotificationInterface()
551                    .getActiveNotificationsFromListener(mWrapper, keys, trim);
552            List<StatusBarNotification> list = parceledList.getList();
553            ArrayList<StatusBarNotification> corruptNotifications = null;
554            int N = list.size();
555            for (int i = 0; i < N; i++) {
556                StatusBarNotification sbn = list.get(i);
557                Notification notification = sbn.getNotification();
558                try {
559                    // convert icon metadata to legacy format for older clients
560                    createLegacyIconExtras(notification);
561                    // populate remote views for older clients.
562                    maybePopulateRemoteViews(notification);
563                } catch (IllegalArgumentException e) {
564                    if (corruptNotifications == null) {
565                        corruptNotifications = new ArrayList<>(N);
566                    }
567                    corruptNotifications.add(sbn);
568                    Log.w(TAG, "onNotificationPosted: can't rebuild notification from " +
569                            sbn.getPackageName());
570                }
571            }
572            if (corruptNotifications != null) {
573                list.removeAll(corruptNotifications);
574            }
575            return list.toArray(new StatusBarNotification[list.size()]);
576        } catch (android.os.RemoteException ex) {
577            Log.v(TAG, "Unable to contact notification manager", ex);
578        }
579        return null;
580    }
581
582    /**
583     * Gets the set of hints representing current state.
584     *
585     * <p>
586     * The current state may differ from the requested state if the hint represents state
587     * shared across all listeners or a feature the notification host does not support or refuses
588     * to grant.
589     *
590     * <p>The service should wait for the {@link #onListenerConnected()} event
591     * before performing this operation.
592     *
593     * @return Zero or more of the HINT_ constants.
594     */
595    public final int getCurrentListenerHints() {
596        if (!isBound()) return 0;
597        try {
598            return getNotificationInterface().getHintsFromListener(mWrapper);
599        } catch (android.os.RemoteException ex) {
600            Log.v(TAG, "Unable to contact notification manager", ex);
601            return 0;
602        }
603    }
604
605    /**
606     * Gets the current notification interruption filter active on the host.
607     *
608     * <p>
609     * The interruption filter defines which notifications are allowed to interrupt the user
610     * (e.g. via sound &amp; vibration) and is applied globally. Listeners can find out whether
611     * a specific notification matched the interruption filter via
612     * {@link Ranking#matchesInterruptionFilter()}.
613     * <p>
614     * The current filter may differ from the previously requested filter if the notification host
615     * does not support or refuses to apply the requested filter, or if another component changed
616     * the filter in the meantime.
617     * <p>
618     * Listen for updates using {@link #onInterruptionFilterChanged(int)}.
619     *
620     * <p>The service should wait for the {@link #onListenerConnected()} event
621     * before performing this operation.
622     *
623     * @return One of the INTERRUPTION_FILTER_ constants, or INTERRUPTION_FILTER_UNKNOWN when
624     * unavailable.
625     */
626    public final int getCurrentInterruptionFilter() {
627        if (!isBound()) return INTERRUPTION_FILTER_UNKNOWN;
628        try {
629            return getNotificationInterface().getInterruptionFilterFromListener(mWrapper);
630        } catch (android.os.RemoteException ex) {
631            Log.v(TAG, "Unable to contact notification manager", ex);
632            return INTERRUPTION_FILTER_UNKNOWN;
633        }
634    }
635
636    /**
637     * Sets the desired {@link #getCurrentListenerHints() listener hints}.
638     *
639     * <p>
640     * This is merely a request, the host may or may not choose to take action depending
641     * on other listener requests or other global state.
642     * <p>
643     * Listen for updates using {@link #onListenerHintsChanged(int)}.
644     *
645     * <p>The service should wait for the {@link #onListenerConnected()} event
646     * before performing this operation.
647     *
648     * @param hints One or more of the HINT_ constants.
649     */
650    public final void requestListenerHints(int hints) {
651        if (!isBound()) return;
652        try {
653            getNotificationInterface().requestHintsFromListener(mWrapper, hints);
654        } catch (android.os.RemoteException ex) {
655            Log.v(TAG, "Unable to contact notification manager", ex);
656        }
657    }
658
659    /**
660     * Sets the desired {@link #getCurrentInterruptionFilter() interruption filter}.
661     *
662     * <p>
663     * This is merely a request, the host may or may not choose to apply the requested
664     * interruption filter depending on other listener requests or other global state.
665     * <p>
666     * Listen for updates using {@link #onInterruptionFilterChanged(int)}.
667     *
668     * <p>The service should wait for the {@link #onListenerConnected()} event
669     * before performing this operation.
670     *
671     * @param interruptionFilter One of the INTERRUPTION_FILTER_ constants.
672     */
673    public final void requestInterruptionFilter(int interruptionFilter) {
674        if (!isBound()) return;
675        try {
676            getNotificationInterface()
677                    .requestInterruptionFilterFromListener(mWrapper, interruptionFilter);
678        } catch (android.os.RemoteException ex) {
679            Log.v(TAG, "Unable to contact notification manager", ex);
680        }
681    }
682
683    /**
684     * Returns current ranking information.
685     *
686     * <p>
687     * The returned object represents the current ranking snapshot and only
688     * applies for currently active notifications.
689     * <p>
690     * Generally you should use the RankingMap that is passed with events such
691     * as {@link #onNotificationPosted(StatusBarNotification, RankingMap)},
692     * {@link #onNotificationRemoved(StatusBarNotification, RankingMap)}, and
693     * so on. This method should only be used when needing access outside of
694     * such events, for example to retrieve the RankingMap right after
695     * initialization.
696     *
697     * <p>The service should wait for the {@link #onListenerConnected()} event
698     * before performing this operation.
699     *
700     * @return A {@link RankingMap} object providing access to ranking information
701     */
702    public RankingMap getCurrentRanking() {
703        synchronized (mLock) {
704            return mRankingMap;
705        }
706    }
707
708    /**
709     * This is not the lifecycle event you are looking for.
710     *
711     * <p>The service should wait for the {@link #onListenerConnected()} event
712     * before performing any operations.
713     */
714    @Override
715    public IBinder onBind(Intent intent) {
716        if (mWrapper == null) {
717            mWrapper = new NotificationListenerWrapper();
718        }
719        return mWrapper;
720    }
721
722    /** @hide */
723    protected boolean isBound() {
724        if (mWrapper == null) {
725            Log.w(TAG, "Notification listener service not yet bound.");
726            return false;
727        }
728        return true;
729    }
730
731    @Override
732    public void onDestroy() {
733        onListenerDisconnected();
734        super.onDestroy();
735    }
736
737    /**
738     * Directly register this service with the Notification Manager.
739     *
740     * <p>Only system services may use this call. It will fail for non-system callers.
741     * Apps should ask the user to add their listener in Settings.
742     *
743     * @param context Context required for accessing resources. Since this service isn't
744     *    launched as a real Service when using this method, a context has to be passed in.
745     * @param componentName the component that will consume the notification information
746     * @param currentUser the user to use as the stream filter
747     * @hide
748     */
749    @SystemApi
750    public void registerAsSystemService(Context context, ComponentName componentName,
751            int currentUser) throws RemoteException {
752        if (mWrapper == null) {
753            mWrapper = new NotificationListenerWrapper();
754        }
755        mSystemContext = context;
756        INotificationManager noMan = getNotificationInterface();
757        noMan.registerListener(mWrapper, componentName, currentUser);
758        mCurrentUser = currentUser;
759        mHandler = new MyHandler(context.getMainLooper());
760    }
761
762    /**
763     * Directly unregister this service from the Notification Manager.
764     *
765     * <p>This method will fail for listeners that were not registered
766     * with (@link registerAsService).
767     * @hide
768     */
769    @SystemApi
770    public void unregisterAsSystemService() throws RemoteException {
771        if (mWrapper != null) {
772            INotificationManager noMan = getNotificationInterface();
773            noMan.unregisterListener(mWrapper, mCurrentUser);
774        }
775    }
776
777    /**
778     * Request that the listener be rebound, after a previous call to (@link requestUnbind).
779     *
780     * <p>This method will fail for listeners that have
781     * not been granted the permission by the user.
782     */
783    public static void requestRebind(ComponentName componentName)
784            throws RemoteException {
785        INotificationManager noMan = INotificationManager.Stub.asInterface(
786                ServiceManager.getService(Context.NOTIFICATION_SERVICE));
787        noMan.requestBindListener(componentName);
788    }
789
790    /**
791     * Request that the service be unbound.
792     *
793     * <p>This will no longer receive updates until
794     * {@link #requestRebind(ComponentName)} is called.
795     * The service will likely be kiled by the system after this call.
796     *
797     * <p>The service should wait for the {@link #onListenerConnected()} event
798     * before performing this operation. I know it's tempting, but you must wait.
799     */
800    public final void requestUnbind() throws RemoteException {
801        if (mWrapper != null) {
802            INotificationManager noMan = getNotificationInterface();
803            noMan.requestUnbindListener(mWrapper);
804            // Disable future messages.
805            isConnected = false;
806        }
807    }
808
809    /** Convert new-style Icons to legacy representations for pre-M clients. */
810    private void createLegacyIconExtras(Notification n) {
811        Icon smallIcon = n.getSmallIcon();
812        Icon largeIcon = n.getLargeIcon();
813        if (smallIcon != null && smallIcon.getType() == Icon.TYPE_RESOURCE) {
814            n.extras.putInt(Notification.EXTRA_SMALL_ICON, smallIcon.getResId());
815            n.icon = smallIcon.getResId();
816        }
817        if (largeIcon != null) {
818            Drawable d = largeIcon.loadDrawable(getContext());
819            if (d != null && d instanceof BitmapDrawable) {
820                final Bitmap largeIconBits = ((BitmapDrawable) d).getBitmap();
821                n.extras.putParcelable(Notification.EXTRA_LARGE_ICON, largeIconBits);
822                n.largeIcon = largeIconBits;
823            }
824        }
825    }
826
827    /**
828     * Populates remote views for pre-N targeting apps.
829     */
830    private void maybePopulateRemoteViews(Notification notification) {
831        if (getContext().getApplicationInfo().targetSdkVersion < Build.VERSION_CODES.N) {
832            Builder builder = Builder.recoverBuilder(getContext(), notification);
833
834            // Some styles wrap Notification's contentView, bigContentView and headsUpContentView.
835            // First inflate them all, only then set them to avoid recursive wrapping.
836            RemoteViews content = builder.createContentView();
837            RemoteViews big = builder.createBigContentView();
838            RemoteViews headsUp = builder.createHeadsUpContentView();
839
840            notification.contentView = content;
841            notification.bigContentView = big;
842            notification.headsUpContentView = headsUp;
843        }
844    }
845
846    /** @hide */
847    protected class NotificationListenerWrapper extends INotificationListener.Stub {
848        @Override
849        public void onNotificationPosted(IStatusBarNotificationHolder sbnHolder,
850                NotificationRankingUpdate update) {
851            StatusBarNotification sbn;
852            try {
853                sbn = sbnHolder.get();
854            } catch (RemoteException e) {
855                Log.w(TAG, "onNotificationPosted: Error receiving StatusBarNotification", e);
856                return;
857            }
858
859            try {
860                // convert icon metadata to legacy format for older clients
861                createLegacyIconExtras(sbn.getNotification());
862                maybePopulateRemoteViews(sbn.getNotification());
863            } catch (IllegalArgumentException e) {
864                // warn and drop corrupt notification
865                Log.w(TAG, "onNotificationPosted: can't rebuild notification from " +
866                        sbn.getPackageName());
867                sbn = null;
868            }
869
870            // protect subclass from concurrent modifications of (@link mNotificationKeys}.
871            synchronized (mLock) {
872                applyUpdateLocked(update);
873                if (sbn != null) {
874                    SomeArgs args = SomeArgs.obtain();
875                    args.arg1 = sbn;
876                    args.arg2 = mRankingMap;
877                    mHandler.obtainMessage(MyHandler.MSG_ON_NOTIFICATION_POSTED,
878                            args).sendToTarget();
879                } else {
880                    // still pass along the ranking map, it may contain other information
881                    mHandler.obtainMessage(MyHandler.MSG_ON_NOTIFICATION_RANKING_UPDATE,
882                            mRankingMap).sendToTarget();
883                }
884            }
885
886        }
887
888        @Override
889        public void onNotificationRemoved(IStatusBarNotificationHolder sbnHolder,
890                NotificationRankingUpdate update) {
891            StatusBarNotification sbn;
892            try {
893                sbn = sbnHolder.get();
894            } catch (RemoteException e) {
895                Log.w(TAG, "onNotificationRemoved: Error receiving StatusBarNotification", e);
896                return;
897            }
898            // protect subclass from concurrent modifications of (@link mNotificationKeys}.
899            synchronized (mLock) {
900                applyUpdateLocked(update);
901                SomeArgs args = SomeArgs.obtain();
902                args.arg1 = sbn;
903                args.arg2 = mRankingMap;
904                mHandler.obtainMessage(MyHandler.MSG_ON_NOTIFICATION_REMOVED,
905                        args).sendToTarget();
906            }
907
908        }
909
910        @Override
911        public void onListenerConnected(NotificationRankingUpdate update) {
912            // protect subclass from concurrent modifications of (@link mNotificationKeys}.
913            synchronized (mLock) {
914                applyUpdateLocked(update);
915            }
916            isConnected = true;
917            mHandler.obtainMessage(MyHandler.MSG_ON_LISTENER_CONNECTED).sendToTarget();
918        }
919
920        @Override
921        public void onNotificationRankingUpdate(NotificationRankingUpdate update)
922                throws RemoteException {
923            // protect subclass from concurrent modifications of (@link mNotificationKeys}.
924            synchronized (mLock) {
925                applyUpdateLocked(update);
926                mHandler.obtainMessage(MyHandler.MSG_ON_NOTIFICATION_RANKING_UPDATE,
927                        mRankingMap).sendToTarget();
928            }
929
930        }
931
932        @Override
933        public void onListenerHintsChanged(int hints) throws RemoteException {
934            mHandler.obtainMessage(MyHandler.MSG_ON_LISTENER_HINTS_CHANGED,
935                    hints, 0).sendToTarget();
936        }
937
938        @Override
939        public void onInterruptionFilterChanged(int interruptionFilter) throws RemoteException {
940            mHandler.obtainMessage(MyHandler.MSG_ON_INTERRUPTION_FILTER_CHANGED,
941                    interruptionFilter, 0).sendToTarget();
942        }
943
944        @Override
945        public void onNotificationEnqueued(IStatusBarNotificationHolder notificationHolder,
946                                           int importance, boolean user) throws RemoteException {
947            // no-op in the listener
948        }
949
950        @Override
951        public void onNotificationVisibilityChanged(String key, long time, boolean visible)
952                throws RemoteException {
953            // no-op in the listener
954        }
955
956        @Override
957        public void onNotificationClick(String key, long time) throws RemoteException {
958            // no-op in the listener
959        }
960
961        @Override
962        public void onNotificationActionClick(String key, long time, int actionIndex)
963                throws RemoteException {
964            // no-op in the listener
965        }
966
967        @Override
968        public void onNotificationRemovedReason(String key, long time, int reason)
969                throws RemoteException {
970            // no-op in the listener
971        }
972    }
973
974    private void applyUpdateLocked(NotificationRankingUpdate update) {
975        mRankingMap = new RankingMap(update);
976    }
977
978    /** @hide */
979    protected Context getContext() {
980        if (mSystemContext != null) {
981            return mSystemContext;
982        }
983        return this;
984    }
985
986    /**
987     * Stores ranking related information on a currently active notification.
988     *
989     * <p>
990     * Ranking objects aren't automatically updated as notification events
991     * occur. Instead, ranking information has to be retrieved again via the
992     * current {@link RankingMap}.
993     */
994    public static class Ranking {
995
996        /** @hide */
997        @IntDef({VISIBILITY_NO_OVERRIDE, IMPORTANCE_UNSPECIFIED, IMPORTANCE_NONE,
998                IMPORTANCE_MIN, IMPORTANCE_LOW, IMPORTANCE_DEFAULT, IMPORTANCE_HIGH,
999                IMPORTANCE_MAX})
1000        @Retention(RetentionPolicy.SOURCE)
1001        public @interface Importance {}
1002
1003        /** Value signifying that the user has not expressed a per-app visibility override value.
1004         * @hide */
1005        public static final int VISIBILITY_NO_OVERRIDE = -1000;
1006
1007        /**
1008         * Value signifying that the user has not expressed an importance.
1009         *
1010         * This value is for persisting preferences, and should never be associated with
1011         * an actual notification.
1012         */
1013        public static final int IMPORTANCE_UNSPECIFIED = -1000;
1014
1015        /**
1016         * A notification with no importance: shows nowhere, is blocked.
1017         */
1018        public static final int IMPORTANCE_NONE = 0;
1019
1020        /**
1021         * Min notification importance: only shows in the shade, below the fold.
1022         */
1023        public static final int IMPORTANCE_MIN = 1;
1024
1025        /**
1026         * Low notification importance: shows everywhere, but is not intrusive.
1027         */
1028        public static final int IMPORTANCE_LOW = 2;
1029
1030        /**
1031         * Default notification importance: shows everywhere, allowed to makes noise,
1032         * but does not visually intrude.
1033         */
1034        public static final int IMPORTANCE_DEFAULT = 3;
1035
1036        /**
1037         * Higher notification importance: shows everywhere, allowed to makes noise and peek.
1038         */
1039        public static final int IMPORTANCE_HIGH = 4;
1040
1041        /**
1042         * Highest notification importance: shows everywhere, allowed to makes noise, peek, and
1043         * use full screen intents.
1044         */
1045        public static final int IMPORTANCE_MAX = 5;
1046
1047        private String mKey;
1048        private int mRank = -1;
1049        private boolean mIsAmbient;
1050        private boolean mMatchesInterruptionFilter;
1051        private int mVisibilityOverride;
1052        private int mSuppressedVisualEffects;
1053        private @Importance int mImportance;
1054        private CharSequence mImportanceExplanation;
1055
1056        public Ranking() {}
1057
1058        /**
1059         * Returns the key of the notification this Ranking applies to.
1060         */
1061        public String getKey() {
1062            return mKey;
1063        }
1064
1065        /**
1066         * Returns the rank of the notification.
1067         *
1068         * @return the rank of the notification, that is the 0-based index in
1069         *     the list of active notifications.
1070         */
1071        public int getRank() {
1072            return mRank;
1073        }
1074
1075        /**
1076         * Returns whether the notification is an ambient notification, that is
1077         * a notification that doesn't require the user's immediate attention.
1078         */
1079        public boolean isAmbient() {
1080            return mIsAmbient;
1081        }
1082
1083        /**
1084         * Returns the user specificed visibility for the package that posted
1085         * this notification, or
1086         * {@link NotificationListenerService.Ranking#VISIBILITY_NO_OVERRIDE} if
1087         * no such preference has been expressed.
1088         * @hide
1089         */
1090        public int getVisibilityOverride() {
1091            return mVisibilityOverride;
1092        }
1093
1094        /**
1095         * Returns the type(s) of visual effects that should be suppressed for this notification.
1096         * See {@link #SUPPRESSED_EFFECT_SCREEN_OFF}, {@link #SUPPRESSED_EFFECT_SCREEN_ON}.
1097         */
1098        public int getSuppressedVisualEffects() {
1099            return mSuppressedVisualEffects;
1100        }
1101
1102        /**
1103         * Returns whether the notification matches the user's interruption
1104         * filter.
1105         *
1106         * @return {@code true} if the notification is allowed by the filter, or
1107         * {@code false} if it is blocked.
1108         */
1109        public boolean matchesInterruptionFilter() {
1110            return mMatchesInterruptionFilter;
1111        }
1112
1113        /**
1114         * Returns the importance of the notification, which dictates its
1115         * modes of presentation, see: {@link #IMPORTANCE_DEFAULT}, etc.
1116         *
1117         * @return the rank of the notification
1118         */
1119        public @Importance int getImportance() {
1120            return mImportance;
1121        }
1122
1123        /**
1124         * If the importance has been overriden by user preference, then this will be non-null,
1125         * and should be displayed to the user.
1126         *
1127         * @return the explanation for the importance, or null if it is the natural importance
1128         */
1129        public CharSequence getImportanceExplanation() {
1130            return mImportanceExplanation;
1131        }
1132
1133        private void populate(String key, int rank, boolean matchesInterruptionFilter,
1134                int visibilityOverride, int suppressedVisualEffects, int importance,
1135                CharSequence explanation) {
1136            mKey = key;
1137            mRank = rank;
1138            mIsAmbient = importance < IMPORTANCE_LOW;
1139            mMatchesInterruptionFilter = matchesInterruptionFilter;
1140            mVisibilityOverride = visibilityOverride;
1141            mSuppressedVisualEffects = suppressedVisualEffects;
1142            mImportance = importance;
1143            mImportanceExplanation = explanation;
1144        }
1145
1146        /**
1147         * {@hide}
1148         */
1149        public static String importanceToString(int importance) {
1150            switch (importance) {
1151                case IMPORTANCE_UNSPECIFIED:
1152                    return "UNSPECIFIED";
1153                case IMPORTANCE_NONE:
1154                    return "NONE";
1155                case IMPORTANCE_MIN:
1156                    return "MIN";
1157                case IMPORTANCE_LOW:
1158                    return "LOW";
1159                case IMPORTANCE_DEFAULT:
1160                    return "DEFAULT";
1161                case IMPORTANCE_HIGH:
1162                    return "HIGH";
1163                case IMPORTANCE_MAX:
1164                    return "MAX";
1165                default:
1166                    return "UNKNOWN(" + String.valueOf(importance) + ")";
1167            }
1168        }
1169    }
1170
1171    /**
1172     * Provides access to ranking information on currently active
1173     * notifications.
1174     *
1175     * <p>
1176     * Note that this object represents a ranking snapshot that only applies to
1177     * notifications active at the time of retrieval.
1178     */
1179    public static class RankingMap implements Parcelable {
1180        private final NotificationRankingUpdate mRankingUpdate;
1181        private ArrayMap<String,Integer> mRanks;
1182        private ArraySet<Object> mIntercepted;
1183        private ArrayMap<String, Integer> mVisibilityOverrides;
1184        private ArrayMap<String, Integer> mSuppressedVisualEffects;
1185        private ArrayMap<String, Integer> mImportance;
1186        private ArrayMap<String, String> mImportanceExplanation;
1187
1188        private RankingMap(NotificationRankingUpdate rankingUpdate) {
1189            mRankingUpdate = rankingUpdate;
1190        }
1191
1192        /**
1193         * Request the list of notification keys in their current ranking
1194         * order.
1195         *
1196         * @return An array of active notification keys, in their ranking order.
1197         */
1198        public String[] getOrderedKeys() {
1199            return mRankingUpdate.getOrderedKeys();
1200        }
1201
1202        /**
1203         * Populates outRanking with ranking information for the notification
1204         * with the given key.
1205         *
1206         * @return true if a valid key has been passed and outRanking has
1207         *     been populated; false otherwise
1208         */
1209        public boolean getRanking(String key, Ranking outRanking) {
1210            int rank = getRank(key);
1211            outRanking.populate(key, rank, !isIntercepted(key),
1212                    getVisibilityOverride(key), getSuppressedVisualEffects(key),
1213                    getImportance(key), getImportanceExplanation(key));
1214            return rank >= 0;
1215        }
1216
1217        private int getRank(String key) {
1218            synchronized (this) {
1219                if (mRanks == null) {
1220                    buildRanksLocked();
1221                }
1222            }
1223            Integer rank = mRanks.get(key);
1224            return rank != null ? rank : -1;
1225        }
1226
1227        private boolean isIntercepted(String key) {
1228            synchronized (this) {
1229                if (mIntercepted == null) {
1230                    buildInterceptedSetLocked();
1231                }
1232            }
1233            return mIntercepted.contains(key);
1234        }
1235
1236        private int getVisibilityOverride(String key) {
1237            synchronized (this) {
1238                if (mVisibilityOverrides == null) {
1239                    buildVisibilityOverridesLocked();
1240                }
1241            }
1242            Integer override = mVisibilityOverrides.get(key);
1243            if (override == null) {
1244                return Ranking.VISIBILITY_NO_OVERRIDE;
1245            }
1246            return override.intValue();
1247        }
1248
1249        private int getSuppressedVisualEffects(String key) {
1250            synchronized (this) {
1251                if (mSuppressedVisualEffects == null) {
1252                    buildSuppressedVisualEffectsLocked();
1253                }
1254            }
1255            Integer suppressed = mSuppressedVisualEffects.get(key);
1256            if (suppressed == null) {
1257                return 0;
1258            }
1259            return suppressed.intValue();
1260        }
1261
1262        private int getImportance(String key) {
1263            synchronized (this) {
1264                if (mImportance == null) {
1265                    buildImportanceLocked();
1266                }
1267            }
1268            Integer importance = mImportance.get(key);
1269            if (importance == null) {
1270                return Ranking.IMPORTANCE_DEFAULT;
1271            }
1272            return importance.intValue();
1273        }
1274
1275        private String getImportanceExplanation(String key) {
1276            synchronized (this) {
1277                if (mImportanceExplanation == null) {
1278                    buildImportanceExplanationLocked();
1279                }
1280            }
1281            return mImportanceExplanation.get(key);
1282        }
1283
1284        // Locked by 'this'
1285        private void buildRanksLocked() {
1286            String[] orderedKeys = mRankingUpdate.getOrderedKeys();
1287            mRanks = new ArrayMap<>(orderedKeys.length);
1288            for (int i = 0; i < orderedKeys.length; i++) {
1289                String key = orderedKeys[i];
1290                mRanks.put(key, i);
1291            }
1292        }
1293
1294        // Locked by 'this'
1295        private void buildInterceptedSetLocked() {
1296            String[] dndInterceptedKeys = mRankingUpdate.getInterceptedKeys();
1297            mIntercepted = new ArraySet<>(dndInterceptedKeys.length);
1298            Collections.addAll(mIntercepted, dndInterceptedKeys);
1299        }
1300
1301        // Locked by 'this'
1302        private void buildVisibilityOverridesLocked() {
1303            Bundle visibilityBundle = mRankingUpdate.getVisibilityOverrides();
1304            mVisibilityOverrides = new ArrayMap<>(visibilityBundle.size());
1305            for (String key: visibilityBundle.keySet()) {
1306               mVisibilityOverrides.put(key, visibilityBundle.getInt(key));
1307            }
1308        }
1309
1310        // Locked by 'this'
1311        private void buildSuppressedVisualEffectsLocked() {
1312            Bundle suppressedBundle = mRankingUpdate.getSuppressedVisualEffects();
1313            mSuppressedVisualEffects = new ArrayMap<>(suppressedBundle.size());
1314            for (String key: suppressedBundle.keySet()) {
1315                mSuppressedVisualEffects.put(key, suppressedBundle.getInt(key));
1316            }
1317        }
1318        // Locked by 'this'
1319        private void buildImportanceLocked() {
1320            String[] orderedKeys = mRankingUpdate.getOrderedKeys();
1321            int[] importance = mRankingUpdate.getImportance();
1322            mImportance = new ArrayMap<>(orderedKeys.length);
1323            for (int i = 0; i < orderedKeys.length; i++) {
1324                String key = orderedKeys[i];
1325                mImportance.put(key, importance[i]);
1326            }
1327        }
1328
1329        // Locked by 'this'
1330        private void buildImportanceExplanationLocked() {
1331            Bundle explanationBundle = mRankingUpdate.getImportanceExplanation();
1332            mImportanceExplanation = new ArrayMap<>(explanationBundle.size());
1333            for (String key: explanationBundle.keySet()) {
1334                mImportanceExplanation.put(key, explanationBundle.getString(key));
1335            }
1336        }
1337
1338        // ----------- Parcelable
1339
1340        @Override
1341        public int describeContents() {
1342            return 0;
1343        }
1344
1345        @Override
1346        public void writeToParcel(Parcel dest, int flags) {
1347            dest.writeParcelable(mRankingUpdate, flags);
1348        }
1349
1350        public static final Creator<RankingMap> CREATOR = new Creator<RankingMap>() {
1351            @Override
1352            public RankingMap createFromParcel(Parcel source) {
1353                NotificationRankingUpdate rankingUpdate = source.readParcelable(null);
1354                return new RankingMap(rankingUpdate);
1355            }
1356
1357            @Override
1358            public RankingMap[] newArray(int size) {
1359                return new RankingMap[size];
1360            }
1361        };
1362    }
1363
1364    private final class MyHandler extends Handler {
1365        public static final int MSG_ON_NOTIFICATION_POSTED = 1;
1366        public static final int MSG_ON_NOTIFICATION_REMOVED = 2;
1367        public static final int MSG_ON_LISTENER_CONNECTED = 3;
1368        public static final int MSG_ON_NOTIFICATION_RANKING_UPDATE = 4;
1369        public static final int MSG_ON_LISTENER_HINTS_CHANGED = 5;
1370        public static final int MSG_ON_INTERRUPTION_FILTER_CHANGED = 6;
1371
1372        public MyHandler(Looper looper) {
1373            super(looper, null, false);
1374        }
1375
1376        @Override
1377        public void handleMessage(Message msg) {
1378            if (!isConnected) {
1379                return;
1380            }
1381            switch (msg.what) {
1382                case MSG_ON_NOTIFICATION_POSTED: {
1383                    SomeArgs args = (SomeArgs) msg.obj;
1384                    StatusBarNotification sbn = (StatusBarNotification) args.arg1;
1385                    RankingMap rankingMap = (RankingMap) args.arg2;
1386                    args.recycle();
1387                    onNotificationPosted(sbn, rankingMap);
1388                } break;
1389
1390                case MSG_ON_NOTIFICATION_REMOVED: {
1391                    SomeArgs args = (SomeArgs) msg.obj;
1392                    StatusBarNotification sbn = (StatusBarNotification) args.arg1;
1393                    RankingMap rankingMap = (RankingMap) args.arg2;
1394                    args.recycle();
1395                    onNotificationRemoved(sbn, rankingMap);
1396                } break;
1397
1398                case MSG_ON_LISTENER_CONNECTED: {
1399                    onListenerConnected();
1400                } break;
1401
1402                case MSG_ON_NOTIFICATION_RANKING_UPDATE: {
1403                    RankingMap rankingMap = (RankingMap) msg.obj;
1404                    onNotificationRankingUpdate(rankingMap);
1405                } break;
1406
1407                case MSG_ON_LISTENER_HINTS_CHANGED: {
1408                    final int hints = msg.arg1;
1409                    onListenerHintsChanged(hints);
1410                } break;
1411
1412                case MSG_ON_INTERRUPTION_FILTER_CHANGED: {
1413                    final int interruptionFilter = msg.arg1;
1414                    onInterruptionFilterChanged(interruptionFilter);
1415                } break;
1416            }
1417        }
1418    }
1419}
1420