blob: cafa0604d88e6381f619da2203a5a209433fee6c [file] [log] [blame]
Mady Mellorc3d6f7d2018-11-07 09:36:56 -08001/*
2 * Copyright (C) 2018 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.systemui.bubbles;
18
Mady Mellor3a0a1b42019-05-23 06:40:21 -070019import static android.app.Notification.FLAG_BUBBLE;
Mady Mellor9adfe6a2020-03-30 17:23:26 -070020import static android.app.NotificationManager.BUBBLE_PREFERENCE_NONE;
21import static android.app.NotificationManager.BUBBLE_PREFERENCE_SELECTED;
Mady Mellorc2ff0112019-03-28 14:18:06 -070022import static android.service.notification.NotificationListenerService.REASON_APP_CANCEL;
23import static android.service.notification.NotificationListenerService.REASON_APP_CANCEL_ALL;
24import static android.service.notification.NotificationListenerService.REASON_CANCEL;
25import static android.service.notification.NotificationListenerService.REASON_CANCEL_ALL;
Mady Mellor22f2f072019-04-18 13:26:18 -070026import static android.service.notification.NotificationListenerService.REASON_CLICK;
27import static android.service.notification.NotificationListenerService.REASON_GROUP_SUMMARY_CANCELED;
Mady Mellor390bff42019-04-05 15:09:01 -070028import static android.view.Display.DEFAULT_DISPLAY;
29import static android.view.Display.INVALID_DISPLAY;
Mady Mellord1c78b262018-11-06 18:04:40 -080030import static android.view.View.INVISIBLE;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080031import static android.view.View.VISIBLE;
Joshua Tsujid9923e52020-04-29 15:33:01 -040032import static android.view.WindowManager.LayoutParams.LAYOUT_IN_DISPLAY_CUTOUT_MODE_ALWAYS;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080033
Issei Suzukia8d07312019-06-07 12:56:19 +020034import static com.android.systemui.bubbles.BubbleDebugConfig.DEBUG_BUBBLE_CONTROLLER;
35import static com.android.systemui.bubbles.BubbleDebugConfig.TAG_BUBBLES;
36import static com.android.systemui.bubbles.BubbleDebugConfig.TAG_WITH_CLASS_NAME;
Mady Mellor3f2efdb2018-11-21 11:30:45 -080037import static com.android.systemui.statusbar.StatusBarState.SHADE;
Mady Mellor1a4e86f2019-05-03 16:07:23 -070038import static com.android.systemui.statusbar.notification.NotificationEntryManager.UNDEFINED_DISMISS_REASON;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080039
Mark Renoufba5ab512019-05-02 15:21:01 -040040import static java.lang.annotation.ElementType.FIELD;
41import static java.lang.annotation.ElementType.LOCAL_VARIABLE;
42import static java.lang.annotation.ElementType.PARAMETER;
Mark Renouf08bc42a2019-03-07 13:01:59 -050043import static java.lang.annotation.RetentionPolicy.SOURCE;
44
Mark Renoufc19b4732019-06-26 12:08:33 -040045import android.annotation.UserIdInt;
Mark Renoufc808f062019-02-07 15:20:37 -050046import android.app.ActivityManager.RunningTaskInfo;
Mady Mellor9adfe6a2020-03-30 17:23:26 -070047import android.app.INotificationManager;
48import android.app.Notification;
49import android.app.NotificationChannel;
Mady Mellor66efd5e2019-05-15 13:38:11 -070050import android.app.NotificationManager;
Mady Mellorca0c24c2019-05-16 16:14:32 -070051import android.app.PendingIntent;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080052import android.content.Context;
Mady Mellorca0c24c2019-05-16 16:14:32 -070053import android.content.pm.ActivityInfo;
Mady Mellorf3b9fab2019-11-13 17:27:32 -080054import android.content.pm.PackageManager;
Joshua Tsujif418f9e2019-04-04 17:09:53 -040055import android.content.res.Configuration;
Joshua Tsujid9923e52020-04-29 15:33:01 -040056import android.graphics.PixelFormat;
Mady Mellord1c78b262018-11-06 18:04:40 -080057import android.graphics.Rect;
Joshua Tsujid9923e52020-04-29 15:33:01 -040058import android.os.Binder;
Lyn Han6cb4e5f2020-04-27 15:11:18 -070059import android.os.Handler;
Mark Renoufcecc77b2019-01-30 16:32:24 -050060import android.os.RemoteException;
Mady Mellorb4991e62019-01-10 15:14:51 -080061import android.os.ServiceManager;
Mady Mellor56515c42020-02-18 17:58:36 -080062import android.service.notification.NotificationListenerService;
Mark Renoufbbcf07f2019-05-09 10:42:43 -040063import android.service.notification.NotificationListenerService.RankingMap;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -040064import android.service.notification.ZenModeConfig;
Mark Renoufc19b4732019-06-26 12:08:33 -040065import android.util.ArraySet;
Mark Renouf9ba6cea2019-04-17 11:53:50 -040066import android.util.Log;
Mark Renouf82a40e62019-05-23 16:16:24 -040067import android.util.Pair;
Mark Renoufc19b4732019-06-26 12:08:33 -040068import android.util.SparseSetArray;
Mark Renoufcecc77b2019-01-30 16:32:24 -050069import android.view.Display;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080070import android.view.ViewGroup;
Joshua Tsujid9923e52020-04-29 15:33:01 -040071import android.view.WindowManager;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080072
Mark Renouf08bc42a2019-03-07 13:01:59 -050073import androidx.annotation.IntDef;
Mark Renouf658c6bc2019-01-30 10:26:54 -050074import androidx.annotation.MainThread;
Joshua Tsujic650a142019-05-22 11:31:19 -040075import androidx.annotation.Nullable;
Mark Renouf658c6bc2019-01-30 10:26:54 -050076
Mady Mellorebdbbb92018-11-15 14:36:48 -080077import com.android.internal.annotations.VisibleForTesting;
Mady Mellora54e9fa2019-04-18 13:26:18 -070078import com.android.internal.statusbar.IStatusBarService;
Beverlya53fb0d2020-01-29 15:26:13 -050079import com.android.internal.statusbar.NotificationVisibility;
Beverlya53fb0d2020-01-29 15:26:13 -050080import com.android.systemui.Dumpable;
Sergey Nikolaienkov5cb6e522020-02-10 17:33:00 +010081import com.android.systemui.bubbles.dagger.BubbleModule;
Ned Burnsaaeb44b2020-02-12 23:48:26 -050082import com.android.systemui.dump.DumpManager;
Joshua Tsujibe60a582020-03-23 17:17:26 -040083import com.android.systemui.model.SysUiState;
Beverly8fdb5332019-02-04 14:29:49 -050084import com.android.systemui.plugins.statusbar.StatusBarStateController;
Mark Renoufcecc77b2019-01-30 16:32:24 -050085import com.android.systemui.shared.system.ActivityManagerWrapper;
Hongwei Wang43a752b2019-09-17 20:20:30 +000086import com.android.systemui.shared.system.PinnedStackListenerForwarder;
Mark Renoufcecc77b2019-01-30 16:32:24 -050087import com.android.systemui.shared.system.TaskStackChangeListener;
Joshua Tsujia19515f2019-02-13 18:02:29 -050088import com.android.systemui.shared.system.WindowManagerWrapper;
Beverlya53fb0d2020-01-29 15:26:13 -050089import com.android.systemui.statusbar.FeatureFlags;
Mark Renoufc19b4732019-06-26 12:08:33 -040090import com.android.systemui.statusbar.NotificationLockscreenUserManager;
Mady Mellorc2ff0112019-03-28 14:18:06 -070091import com.android.systemui.statusbar.NotificationRemoveInterceptor;
Joshua Tsujid9923e52020-04-29 15:33:01 -040092import com.android.systemui.statusbar.ScrimView;
Mady Mellor9adfe6a2020-03-30 17:23:26 -070093import com.android.systemui.statusbar.notification.NotificationChannelHelper;
Ned Burns01e38212019-01-03 16:32:52 -050094import com.android.systemui.statusbar.notification.NotificationEntryListener;
95import com.android.systemui.statusbar.notification.NotificationEntryManager;
Beverlya53fb0d2020-01-29 15:26:13 -050096import com.android.systemui.statusbar.notification.collection.NotifCollection;
97import com.android.systemui.statusbar.notification.collection.NotifPipeline;
Ned Burnsf81c4c42019-01-07 14:10:43 -050098import com.android.systemui.statusbar.notification.collection.NotificationEntry;
Beverlya53fb0d2020-01-29 15:26:13 -050099import com.android.systemui.statusbar.notification.collection.notifcollection.NotifCollectionListener;
Beverly Taid1e175c2020-03-10 16:37:04 +0000100import com.android.systemui.statusbar.notification.interruption.NotificationInterruptStateProvider;
Mady Mellor22f2f072019-04-18 13:26:18 -0700101import com.android.systemui.statusbar.phone.NotificationGroupManager;
wilsonshihe8321942019-10-18 18:39:46 +0800102import com.android.systemui.statusbar.phone.NotificationShadeWindowController;
Joshua Tsujid9923e52020-04-29 15:33:01 -0400103import com.android.systemui.statusbar.phone.ScrimController;
Mady Mellor7f234902019-10-20 12:06:29 -0700104import com.android.systemui.statusbar.phone.ShadeController;
Mady Mellorf3b9fab2019-11-13 17:27:32 -0800105import com.android.systemui.statusbar.phone.StatusBar;
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700106import com.android.systemui.statusbar.policy.ConfigurationController;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400107import com.android.systemui.statusbar.policy.ZenModeController;
Joshua Tsuji7155bf12020-02-13 16:14:29 -0500108import com.android.systemui.util.FloatingContentCoordinator;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800109
Mady Mellor70cba7bb2019-07-02 15:06:07 -0700110import java.io.FileDescriptor;
111import java.io.PrintWriter;
Mark Renouf08bc42a2019-03-07 13:01:59 -0500112import java.lang.annotation.Retention;
Mark Renoufba5ab512019-05-02 15:21:01 -0400113import java.lang.annotation.Target;
Mady Mellor22f2f072019-04-18 13:26:18 -0700114import java.util.ArrayList;
Lyn Hanb58c7562020-01-07 14:29:20 -0800115import java.util.List;
Mark Renouf08bc42a2019-03-07 13:01:59 -0500116
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800117/**
118 * Bubbles are a special type of content that can "float" on top of other apps or System UI.
119 * Bubbles can be expanded to show more content.
120 *
121 * The controller manages addition, removal, and visible state of bubbles on screen.
122 */
Beverlya53fb0d2020-01-29 15:26:13 -0500123public class BubbleController implements ConfigurationController.ConfigurationListener, Dumpable {
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800124
Issei Suzukia8d07312019-06-07 12:56:19 +0200125 private static final String TAG = TAG_WITH_CLASS_NAME ? "BubbleController" : TAG_BUBBLES;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800126
Mark Renouf08bc42a2019-03-07 13:01:59 -0500127 @Retention(SOURCE)
128 @IntDef({DISMISS_USER_GESTURE, DISMISS_AGED, DISMISS_TASK_FINISHED, DISMISS_BLOCKED,
Mark Renoufc19b4732019-06-26 12:08:33 -0400129 DISMISS_NOTIF_CANCEL, DISMISS_ACCESSIBILITY_ACTION, DISMISS_NO_LONGER_BUBBLE,
Lyn Han2f6e89d2020-04-15 10:01:01 -0700130 DISMISS_USER_CHANGED, DISMISS_GROUP_CANCELLED, DISMISS_INVALID_INTENT,
131 DISMISS_OVERFLOW_MAX_REACHED})
Mark Renoufba5ab512019-05-02 15:21:01 -0400132 @Target({FIELD, LOCAL_VARIABLE, PARAMETER})
Mark Renouf08bc42a2019-03-07 13:01:59 -0500133 @interface DismissReason {}
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700134
Mark Renouf08bc42a2019-03-07 13:01:59 -0500135 static final int DISMISS_USER_GESTURE = 1;
136 static final int DISMISS_AGED = 2;
137 static final int DISMISS_TASK_FINISHED = 3;
138 static final int DISMISS_BLOCKED = 4;
139 static final int DISMISS_NOTIF_CANCEL = 5;
140 static final int DISMISS_ACCESSIBILITY_ACTION = 6;
Mady Melloraa8fef22019-04-11 13:36:40 -0700141 static final int DISMISS_NO_LONGER_BUBBLE = 7;
Mark Renoufc19b4732019-06-26 12:08:33 -0400142 static final int DISMISS_USER_CHANGED = 8;
Mady Mellor22f2f072019-04-18 13:26:18 -0700143 static final int DISMISS_GROUP_CANCELLED = 9;
Mady Mellor8454ddf2019-08-15 11:16:23 -0700144 static final int DISMISS_INVALID_INTENT = 10;
Lyn Han2f6e89d2020-04-15 10:01:01 -0700145 static final int DISMISS_OVERFLOW_MAX_REACHED = 11;
Mark Renouf08bc42a2019-03-07 13:01:59 -0500146
Ned Burns01e38212019-01-03 16:32:52 -0500147 private final Context mContext;
148 private final NotificationEntryManager mNotificationEntryManager;
Beverlya53fb0d2020-01-29 15:26:13 -0500149 private final NotifPipeline mNotifPipeline;
Mark Renoufcecc77b2019-01-30 16:32:24 -0500150 private final BubbleTaskStackListener mTaskStackListener;
Mady Mellorcd9b1302018-11-06 18:08:04 -0800151 private BubbleExpandListener mExpandListener;
Issei Suzukic0387542019-03-08 17:31:14 +0100152 @Nullable private BubbleStackView.SurfaceSynchronizer mSurfaceSynchronizer;
Mady Mellor22f2f072019-04-18 13:26:18 -0700153 private final NotificationGroupManager mNotificationGroupManager;
Heemin Seogba6337f2019-12-10 15:34:37 -0800154 private final ShadeController mShadeController;
Joshua Tsuji7155bf12020-02-13 16:14:29 -0500155 private final FloatingContentCoordinator mFloatingContentCoordinator;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800156
Mady Mellor3dff9e62019-02-05 18:12:53 -0800157 private BubbleData mBubbleData;
Joshua Tsujid9923e52020-04-29 15:33:01 -0400158 private ScrimView mBubbleScrim;
Joshua Tsujic650a142019-05-22 11:31:19 -0400159 @Nullable private BubbleStackView mStackView;
Mady Mellor247ca2c2019-12-02 16:18:59 -0800160 private BubbleIconFactory mBubbleIconFactory;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800161
Mark Renoufc19b4732019-06-26 12:08:33 -0400162 // Tracks the id of the current (foreground) user.
163 private int mCurrentUserId;
164 // Saves notification keys of active bubbles when users are switched.
165 private final SparseSetArray<String> mSavedBubbleKeysPerUser;
166
Mady Mellor56515c42020-02-18 17:58:36 -0800167 // Used when ranking updates occur and we check if things should bubble / unbubble
168 private NotificationListenerService.Ranking mTmpRanking;
169
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800170 // Bubbles get added to the status bar view
wilsonshihe8321942019-10-18 18:39:46 +0800171 private final NotificationShadeWindowController mNotificationShadeWindowController;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400172 private final ZenModeController mZenModeController;
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800173 private StatusBarStateListener mStatusBarStateListener;
Mady Mellor9adfe6a2020-03-30 17:23:26 -0700174 private INotificationManager mINotificationManager;
Aran Inkaa4dfa72019-11-18 16:49:07 -0500175
Lyn Hanb58c7562020-01-07 14:29:20 -0800176 // Callback that updates BubbleOverflowActivity on data change.
Lyn Hane4274be2020-04-24 17:55:36 -0700177 @Nullable private BubbleData.Listener mOverflowListener = null;
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800178
Beverly Taid1e175c2020-03-10 16:37:04 +0000179 private final NotificationInterruptStateProvider mNotificationInterruptStateProvider;
Mady Mellora54e9fa2019-04-18 13:26:18 -0700180 private IStatusBarService mBarService;
Joshua Tsujid9923e52020-04-29 15:33:01 -0400181 private WindowManager mWindowManager;
Joshua Tsujibe60a582020-03-23 17:17:26 -0400182 private SysUiState mSysUiState;
Mady Mellorb4991e62019-01-10 15:14:51 -0800183
Lyn Han6cb4e5f2020-04-27 15:11:18 -0700184 // Used to post to main UI thread
185 private Handler mHandler = new Handler();
186
Joshua Tsujid9923e52020-04-29 15:33:01 -0400187 /** LayoutParams used to add the BubbleStackView to the window maanger. */
188 private WindowManager.LayoutParams mWmLayoutParams;
189
190
Mady Mellord1c78b262018-11-06 18:04:40 -0800191 // Used for determining view rect for touch interaction
192 private Rect mTempRect = new Rect();
193
Mark Renoufc19b4732019-06-26 12:08:33 -0400194 // Listens to user switch so bubbles can be saved and restored.
195 private final NotificationLockscreenUserManager mNotifUserManager;
196
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400197 /** Last known orientation, used to detect orientation changes in {@link #onConfigChanged}. */
198 private int mOrientation = Configuration.ORIENTATION_UNDEFINED;
199
Mady Mellor3df7ab02019-12-09 15:07:10 -0800200 private boolean mInflateSynchronously;
201
Beverlyed8aea22020-01-22 16:52:47 -0500202 // TODO (b/145659174): allow for multiple callbacks to support the "shadow" new notif pipeline
203 private final List<NotifCallback> mCallbacks = new ArrayList<>();
204
Mady Mellor5549dd22018-11-06 18:07:34 -0800205 /**
Mady Mellorcd9b1302018-11-06 18:08:04 -0800206 * Listener to find out about stack expansion / collapse events.
207 */
208 public interface BubbleExpandListener {
209 /**
210 * Called when the expansion state of the bubble stack changes.
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700211 *
Mady Mellorcd9b1302018-11-06 18:08:04 -0800212 * @param isExpanding whether it's expanding or collapsing
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800213 * @param key the notification key associated with bubble being expanded
Mady Mellorcd9b1302018-11-06 18:08:04 -0800214 */
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800215 void onBubbleExpandChanged(boolean isExpanding, String key);
216 }
217
218 /**
Mady Mellorf44b6832020-01-14 13:26:14 -0800219 * Listener to be notified when a bubbles' notification suppression state changes.
220 */
221 public interface NotificationSuppressionChangedListener {
222 /**
223 * Called when the notification suppression state of a bubble changes.
224 */
225 void onBubbleNotificationSuppressionChange(Bubble bubble);
Beverlyed8aea22020-01-22 16:52:47 -0500226 }
Mady Mellorf44b6832020-01-14 13:26:14 -0800227
Beverlyed8aea22020-01-22 16:52:47 -0500228 /**
229 * Callback for when the BubbleController wants to interact with the notification pipeline to:
230 * - Remove a previously bubbled notification
231 * - Update the notification shade since bubbled notification should/shouldn't be showing
232 */
233 public interface NotifCallback {
234 /**
Beverlya53fb0d2020-01-29 15:26:13 -0500235 * Called when a bubbled notification that was hidden from the shade is now being removed
236 * This can happen when an app cancels a bubbled notification or when the user dismisses a
237 * bubble.
Beverlyed8aea22020-01-22 16:52:47 -0500238 */
Beverlya53fb0d2020-01-29 15:26:13 -0500239 void removeNotification(NotificationEntry entry, int reason);
Beverlyed8aea22020-01-22 16:52:47 -0500240
241 /**
242 * Called when a bubbled notification has changed whether it should be
243 * filtered from the shade.
244 */
Beverlya53fb0d2020-01-29 15:26:13 -0500245 void invalidateNotifications(String reason);
Beverlyed8aea22020-01-22 16:52:47 -0500246
247 /**
248 * Called on a bubbled entry that has been removed when there are no longer
249 * bubbled entries in its group.
250 *
251 * Checks whether its group has any other (non-bubbled) children. If it doesn't,
252 * removes all remnants of the group's summary from the notification pipeline.
253 * TODO: (b/145659174) Only old pipeline needs this - delete post-migration.
254 */
255 void maybeCancelSummary(NotificationEntry entry);
Mady Mellorf44b6832020-01-14 13:26:14 -0800256 }
257
258 /**
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800259 * Listens for the current state of the status bar and updates the visibility state
260 * of bubbles as needed.
261 */
262 private class StatusBarStateListener implements StatusBarStateController.StateListener {
263 private int mState;
264 /**
265 * Returns the current status bar state.
266 */
267 public int getCurrentState() {
268 return mState;
269 }
270
271 @Override
272 public void onStateChanged(int newState) {
273 mState = newState;
Mark Renouf71a3af62019-04-08 15:02:54 -0400274 boolean shouldCollapse = (mState != SHADE);
275 if (shouldCollapse) {
276 collapseStack();
277 }
Lyn Han6c40fe72019-05-08 14:06:33 -0700278 updateStack();
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800279 }
Mady Mellorcd9b1302018-11-06 18:08:04 -0800280 }
281
Mady Mellor7f234902019-10-20 12:06:29 -0700282 public BubbleController(Context context,
wilsonshihe8321942019-10-18 18:39:46 +0800283 NotificationShadeWindowController notificationShadeWindowController,
Mady Mellor7f234902019-10-20 12:06:29 -0700284 StatusBarStateController statusBarStateController,
Heemin Seogba6337f2019-12-10 15:34:37 -0800285 ShadeController shadeController,
Mady Mellor7f234902019-10-20 12:06:29 -0700286 BubbleData data,
Mady Melloraa8fef22019-04-11 13:36:40 -0700287 ConfigurationController configurationController,
Beverly Taid1e175c2020-03-10 16:37:04 +0000288 NotificationInterruptStateProvider interruptionStateProvider,
Mark Renoufc19b4732019-06-26 12:08:33 -0400289 ZenModeController zenModeController,
Mady Mellor22f2f072019-04-18 13:26:18 -0700290 NotificationLockscreenUserManager notifUserManager,
Mady Mellor7f234902019-10-20 12:06:29 -0700291 NotificationGroupManager groupManager,
Beverlya53fb0d2020-01-29 15:26:13 -0500292 NotificationEntryManager entryManager,
293 NotifPipeline notifPipeline,
294 FeatureFlags featureFlags,
Ned Burnsaaeb44b2020-02-12 23:48:26 -0500295 DumpManager dumpManager,
Joshua Tsujibe60a582020-03-23 17:17:26 -0400296 FloatingContentCoordinator floatingContentCoordinator,
Mady Mellor9adfe6a2020-03-30 17:23:26 -0700297 SysUiState sysUiState,
298 INotificationManager notificationManager) {
wilsonshihe8321942019-10-18 18:39:46 +0800299 this(context, notificationShadeWindowController, statusBarStateController, shadeController,
Mady Mellor7f234902019-10-20 12:06:29 -0700300 data, null /* synchronizer */, configurationController, interruptionStateProvider,
Beverlya53fb0d2020-01-29 15:26:13 -0500301 zenModeController, notifUserManager, groupManager, entryManager,
Mady Mellor9adfe6a2020-03-30 17:23:26 -0700302 notifPipeline, featureFlags, dumpManager, floatingContentCoordinator, sysUiState,
303 notificationManager);
Mady Mellor7f234902019-10-20 12:06:29 -0700304 }
305
Sergey Nikolaienkov5cb6e522020-02-10 17:33:00 +0100306 /**
307 * Injected constructor. See {@link BubbleModule}.
308 */
Mady Mellor7f234902019-10-20 12:06:29 -0700309 public BubbleController(Context context,
wilsonshihe8321942019-10-18 18:39:46 +0800310 NotificationShadeWindowController notificationShadeWindowController,
Mady Mellor7f234902019-10-20 12:06:29 -0700311 StatusBarStateController statusBarStateController,
Heemin Seogba6337f2019-12-10 15:34:37 -0800312 ShadeController shadeController,
Mady Mellor7f234902019-10-20 12:06:29 -0700313 BubbleData data,
314 @Nullable BubbleStackView.SurfaceSynchronizer synchronizer,
315 ConfigurationController configurationController,
Beverly Taid1e175c2020-03-10 16:37:04 +0000316 NotificationInterruptStateProvider interruptionStateProvider,
Mady Mellor7f234902019-10-20 12:06:29 -0700317 ZenModeController zenModeController,
318 NotificationLockscreenUserManager notifUserManager,
319 NotificationGroupManager groupManager,
Beverlya53fb0d2020-01-29 15:26:13 -0500320 NotificationEntryManager entryManager,
321 NotifPipeline notifPipeline,
322 FeatureFlags featureFlags,
Ned Burnsaaeb44b2020-02-12 23:48:26 -0500323 DumpManager dumpManager,
Joshua Tsujibe60a582020-03-23 17:17:26 -0400324 FloatingContentCoordinator floatingContentCoordinator,
Mady Mellor9adfe6a2020-03-30 17:23:26 -0700325 SysUiState sysUiState,
326 INotificationManager notificationManager) {
Ned Burnsaaeb44b2020-02-12 23:48:26 -0500327 dumpManager.registerDumpable(TAG, this);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800328 mContext = context;
Heemin Seogba6337f2019-12-10 15:34:37 -0800329 mShadeController = shadeController;
Beverly Taid1e175c2020-03-10 16:37:04 +0000330 mNotificationInterruptStateProvider = interruptionStateProvider;
Mark Renoufc19b4732019-06-26 12:08:33 -0400331 mNotifUserManager = notifUserManager;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400332 mZenModeController = zenModeController;
Joshua Tsuji7155bf12020-02-13 16:14:29 -0500333 mFloatingContentCoordinator = floatingContentCoordinator;
Mady Mellor9adfe6a2020-03-30 17:23:26 -0700334 mINotificationManager = notificationManager;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400335 mZenModeController.addCallback(new ZenModeController.Callback() {
336 @Override
337 public void onZenChanged(int zen) {
Mady Mellorb8aaf972019-11-26 10:28:00 -0800338 for (Bubble b : mBubbleData.getBubbles()) {
Joshua Tsuji2ed260e2020-03-26 14:26:01 -0400339 b.setShowDot(b.showInShade());
Mady Mellordf48d0a2019-06-25 18:26:46 -0700340 }
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400341 }
342
343 @Override
344 public void onConfigChanged(ZenModeConfig config) {
Mady Mellorb8aaf972019-11-26 10:28:00 -0800345 for (Bubble b : mBubbleData.getBubbles()) {
Joshua Tsuji2ed260e2020-03-26 14:26:01 -0400346 b.setShowDot(b.showInShade());
Mady Mellordf48d0a2019-06-25 18:26:46 -0700347 }
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400348 }
349 });
Mady Melloraa8fef22019-04-11 13:36:40 -0700350
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700351 configurationController.addCallback(this /* configurationListener */);
Joshua Tsujibe60a582020-03-23 17:17:26 -0400352 mSysUiState = sysUiState;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800353
Mark Renouf9ba6cea2019-04-17 11:53:50 -0400354 mBubbleData = data;
355 mBubbleData.setListener(mBubbleDataListener);
Mady Mellorf44b6832020-01-14 13:26:14 -0800356 mBubbleData.setSuppressionChangedListener(new NotificationSuppressionChangedListener() {
357 @Override
358 public void onBubbleNotificationSuppressionChange(Bubble bubble) {
359 // Make sure NoMan knows it's not showing in the shade anymore so anyone querying it
360 // can tell.
361 try {
362 mBarService.onBubbleNotificationSuppressionChanged(bubble.getKey(),
363 !bubble.showInShade());
364 } catch (RemoteException e) {
365 // Bad things have happened
366 }
367 }
368 });
Mark Renouf9ba6cea2019-04-17 11:53:50 -0400369
Mady Mellor7f234902019-10-20 12:06:29 -0700370 mNotificationEntryManager = entryManager;
Mady Mellor22f2f072019-04-18 13:26:18 -0700371 mNotificationGroupManager = groupManager;
Beverlya53fb0d2020-01-29 15:26:13 -0500372 mNotifPipeline = notifPipeline;
373
374 if (!featureFlags.isNewNotifPipelineRenderingEnabled()) {
375 setupNEM();
376 } else {
377 setupNotifPipeline();
378 }
Mady Mellorb4991e62019-01-10 15:14:51 -0800379
wilsonshihe8321942019-10-18 18:39:46 +0800380 mNotificationShadeWindowController = notificationShadeWindowController;
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800381 mStatusBarStateListener = new StatusBarStateListener();
Mady Mellor7f234902019-10-20 12:06:29 -0700382 statusBarStateController.addCallback(mStatusBarStateListener);
Mark Renoufcecc77b2019-01-30 16:32:24 -0500383
Mark Renoufcecc77b2019-01-30 16:32:24 -0500384 mTaskStackListener = new BubbleTaskStackListener();
385 ActivityManagerWrapper.getInstance().registerTaskStackListener(mTaskStackListener);
Mady Mellor3dff9e62019-02-05 18:12:53 -0800386
Joshua Tsujia19515f2019-02-13 18:02:29 -0500387 try {
388 WindowManagerWrapper.getInstance().addPinnedStackListener(new BubblesImeListener());
389 } catch (RemoteException e) {
390 e.printStackTrace();
391 }
Issei Suzukic0387542019-03-08 17:31:14 +0100392 mSurfaceSynchronizer = synchronizer;
Mady Mellora54e9fa2019-04-18 13:26:18 -0700393
Joshua Tsujid9923e52020-04-29 15:33:01 -0400394 mWindowManager = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
Mady Mellora54e9fa2019-04-18 13:26:18 -0700395 mBarService = IStatusBarService.Stub.asInterface(
396 ServiceManager.getService(Context.STATUS_BAR_SERVICE));
Mark Renoufc19b4732019-06-26 12:08:33 -0400397
Joshua Tsujid9923e52020-04-29 15:33:01 -0400398 mBubbleScrim = new ScrimView(mContext);
399
Mark Renoufc19b4732019-06-26 12:08:33 -0400400 mSavedBubbleKeysPerUser = new SparseSetArray<>();
401 mCurrentUserId = mNotifUserManager.getCurrentUserId();
402 mNotifUserManager.addUserChangedListener(
Steve Elliottb47f1c72019-12-19 12:39:26 -0500403 new NotificationLockscreenUserManager.UserChangedListener() {
404 @Override
405 public void onUserChanged(int newUserId) {
406 BubbleController.this.saveBubbles(mCurrentUserId);
407 mBubbleData.dismissAll(DISMISS_USER_CHANGED);
408 BubbleController.this.restoreBubbles(newUserId);
409 mCurrentUserId = newUserId;
410 }
Mark Renoufc19b4732019-06-26 12:08:33 -0400411 });
Mady Mellorff076eb2019-11-13 10:12:06 -0800412
Mady Mellor247ca2c2019-12-02 16:18:59 -0800413 mBubbleIconFactory = new BubbleIconFactory(context);
Mady Mellor5549dd22018-11-06 18:07:34 -0800414 }
415
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400416 /**
Beverlyed8aea22020-01-22 16:52:47 -0500417 * See {@link NotifCallback}.
418 */
419 public void addNotifCallback(NotifCallback callback) {
420 mCallbacks.add(callback);
421 }
422
423 private void setupNEM() {
424 mNotificationEntryManager.addNotificationEntryListener(
425 new NotificationEntryListener() {
426 @Override
Mady Mellorf9439ab2020-01-30 16:06:53 -0800427 public void onPendingEntryAdded(NotificationEntry entry) {
Beverlyed8aea22020-01-22 16:52:47 -0500428 onEntryAdded(entry);
429 }
430
431 @Override
432 public void onPreEntryUpdated(NotificationEntry entry) {
433 onEntryUpdated(entry);
434 }
435
436 @Override
Beverlya53fb0d2020-01-29 15:26:13 -0500437 public void onEntryRemoved(
438 NotificationEntry entry,
439 @android.annotation.Nullable NotificationVisibility visibility,
Julia Reynolds138111f2020-02-26 11:17:39 -0500440 boolean removedByUser,
441 int reason) {
Beverlya53fb0d2020-01-29 15:26:13 -0500442 BubbleController.this.onEntryRemoved(entry);
443 }
444
445 @Override
Beverlyed8aea22020-01-22 16:52:47 -0500446 public void onNotificationRankingUpdated(RankingMap rankingMap) {
447 onRankingUpdated(rankingMap);
448 }
449 });
450
Evan Laird04373662020-01-24 17:37:39 -0500451 mNotificationEntryManager.addNotificationRemoveInterceptor(
Beverlyed8aea22020-01-22 16:52:47 -0500452 new NotificationRemoveInterceptor() {
453 @Override
Evan Laird04373662020-01-24 17:37:39 -0500454 public boolean onNotificationRemoveRequested(
Beverlya53fb0d2020-01-29 15:26:13 -0500455 String key,
456 NotificationEntry entry,
457 int dismissReason) {
458 final boolean isClearAll = dismissReason == REASON_CANCEL_ALL;
459 final boolean isUserDimiss = dismissReason == REASON_CANCEL
460 || dismissReason == REASON_CLICK;
461 final boolean isAppCancel = dismissReason == REASON_APP_CANCEL
462 || dismissReason == REASON_APP_CANCEL_ALL;
463 final boolean isSummaryCancel =
464 dismissReason == REASON_GROUP_SUMMARY_CANCELED;
465
466 // Need to check for !appCancel here because the notification may have
467 // previously been dismissed & entry.isRowDismissed would still be true
468 boolean userRemovedNotif =
469 (entry != null && entry.isRowDismissed() && !isAppCancel)
470 || isClearAll || isUserDimiss || isSummaryCancel;
471
Mady Mellordd6fe612020-04-15 11:47:55 -0700472 if (userRemovedNotif) {
Beverlya53fb0d2020-01-29 15:26:13 -0500473 return handleDismissalInterception(entry);
474 }
Beverlya53fb0d2020-01-29 15:26:13 -0500475 return false;
Beverlyed8aea22020-01-22 16:52:47 -0500476 }
477 });
478
479 mNotificationGroupManager.addOnGroupChangeListener(
480 new NotificationGroupManager.OnGroupChangeListener() {
481 @Override
482 public void onGroupSuppressionChanged(
483 NotificationGroupManager.NotificationGroup group,
484 boolean suppressed) {
485 // More notifications could be added causing summary to no longer
486 // be suppressed -- in this case need to remove the key.
487 final String groupKey = group.summary != null
488 ? group.summary.getSbn().getGroupKey()
489 : null;
490 if (!suppressed && groupKey != null
491 && mBubbleData.isSummarySuppressed(groupKey)) {
492 mBubbleData.removeSuppressedSummary(groupKey);
493 }
494 }
495 });
496
497 addNotifCallback(new NotifCallback() {
498 @Override
Beverlya53fb0d2020-01-29 15:26:13 -0500499 public void removeNotification(NotificationEntry entry, int reason) {
Beverlyed8aea22020-01-22 16:52:47 -0500500 mNotificationEntryManager.performRemoveNotification(entry.getSbn(),
Beverlya53fb0d2020-01-29 15:26:13 -0500501 reason);
Beverlyed8aea22020-01-22 16:52:47 -0500502 }
503
504 @Override
Beverlya53fb0d2020-01-29 15:26:13 -0500505 public void invalidateNotifications(String reason) {
Beverlyed8aea22020-01-22 16:52:47 -0500506 mNotificationEntryManager.updateNotifications(reason);
507 }
508
509 @Override
510 public void maybeCancelSummary(NotificationEntry entry) {
511 // Check if removed bubble has an associated suppressed group summary that needs
512 // to be removed now.
Beverlya53fb0d2020-01-29 15:26:13 -0500513 final String groupKey = entry.getSbn().getGroupKey();
Beverlyed8aea22020-01-22 16:52:47 -0500514 if (mBubbleData.isSummarySuppressed(groupKey)) {
Beverlya53fb0d2020-01-29 15:26:13 -0500515 mBubbleData.removeSuppressedSummary(groupKey);
Beverlyed8aea22020-01-22 16:52:47 -0500516
517 final NotificationEntry summary =
518 mNotificationEntryManager.getActiveNotificationUnfiltered(
519 mBubbleData.getSummaryKey(groupKey));
Beverlya53fb0d2020-01-29 15:26:13 -0500520 if (summary != null) {
521 mNotificationEntryManager.performRemoveNotification(summary.getSbn(),
522 UNDEFINED_DISMISS_REASON);
523 }
Beverlyed8aea22020-01-22 16:52:47 -0500524 }
525
Beverlya53fb0d2020-01-29 15:26:13 -0500526 // Check if we still need to remove the summary from NoManGroup because the summary
527 // may not be in the mBubbleData.mSuppressedGroupKeys list and removed above.
528 // For example:
529 // 1. Bubbled notifications (group) is posted to shade and are visible bubbles
530 // 2. User expands bubbles so now their respective notifications in the shade are
531 // hidden, including the group summary
532 // 3. User removes all bubbles
533 // 4. We expect all the removed bubbles AND the summary (note: the summary was
534 // never added to the suppressedSummary list in BubbleData, so we add this check)
Beverlyed8aea22020-01-22 16:52:47 -0500535 NotificationEntry summary =
536 mNotificationGroupManager.getLogicalGroupSummary(entry.getSbn());
537 if (summary != null) {
538 ArrayList<NotificationEntry> summaryChildren =
539 mNotificationGroupManager.getLogicalChildren(summary.getSbn());
540 boolean isSummaryThisNotif = summary.getKey().equals(entry.getKey());
541 if (!isSummaryThisNotif && (summaryChildren == null
542 || summaryChildren.isEmpty())) {
543 mNotificationEntryManager.performRemoveNotification(summary.getSbn(),
544 UNDEFINED_DISMISS_REASON);
545 }
546 }
547 }
548 });
549 }
550
Beverlya53fb0d2020-01-29 15:26:13 -0500551 private void setupNotifPipeline() {
552 mNotifPipeline.addCollectionListener(new NotifCollectionListener() {
553 @Override
554 public void onEntryAdded(NotificationEntry entry) {
555 BubbleController.this.onEntryAdded(entry);
556 }
557
558 @Override
559 public void onEntryUpdated(NotificationEntry entry) {
560 BubbleController.this.onEntryUpdated(entry);
561 }
562
563 @Override
564 public void onRankingUpdate(RankingMap rankingMap) {
565 onRankingUpdated(rankingMap);
566 }
567
568 @Override
569 public void onEntryRemoved(NotificationEntry entry,
570 @NotifCollection.CancellationReason int reason) {
571 BubbleController.this.onEntryRemoved(entry);
572 }
573 });
574 }
575
Beverlyed8aea22020-01-22 16:52:47 -0500576 /**
Joshua Tsujid9923e52020-04-29 15:33:01 -0400577 * Returns the scrim drawn behind the bubble stack. This is managed by {@link ScrimController}
578 * since we want the scrim's appearance and behavior to be identical to that of the notification
579 * shade scrim.
580 */
581 public ScrimView getScrimForBubble() {
582 return mBubbleScrim;
583 }
584
585 /**
Mady Mellor3df7ab02019-12-09 15:07:10 -0800586 * Sets whether to perform inflation on the same thread as the caller. This method should only
587 * be used in tests, not in production.
588 */
589 @VisibleForTesting
590 void setInflateSynchronously(boolean inflateSynchronously) {
591 mInflateSynchronously = inflateSynchronously;
Mady Mellor5549dd22018-11-06 18:07:34 -0800592 }
593
Lyn Hane4274be2020-04-24 17:55:36 -0700594 void setOverflowListener(BubbleData.Listener listener) {
595 mOverflowListener = listener;
Lyn Hanb58c7562020-01-07 14:29:20 -0800596 }
597
598 /**
599 * @return Bubbles for updating overflow.
600 */
601 List<Bubble> getOverflowBubbles() {
602 return mBubbleData.getOverflowBubbles();
603 }
604
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400605 /**
606 * BubbleStackView is lazily created by this method the first time a Bubble is added. This
607 * method initializes the stack view and adds it to the StatusBar just above the scrim.
608 */
609 private void ensureStackViewCreated() {
610 if (mStackView == null) {
Joshua Tsuji7155bf12020-02-13 16:14:29 -0500611 mStackView = new BubbleStackView(
Joshua Tsujibe60a582020-03-23 17:17:26 -0400612 mContext, mBubbleData, mSurfaceSynchronizer, mFloatingContentCoordinator,
Joshua Tsujiba9fef02020-04-09 17:40:35 -0400613 mSysUiState, mNotificationShadeWindowController);
Joshua Tsujid9923e52020-04-29 15:33:01 -0400614 mStackView.addView(mBubbleScrim);
615 addToWindowManager();
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400616 if (mExpandListener != null) {
617 mStackView.setExpandListener(mExpandListener);
618 }
Joshua Tsuji6855cab2020-04-16 01:05:39 -0400619
620 mStackView.setUnbubbleConversationCallback(notificationEntry ->
621 onUserChangedBubble(notificationEntry, false /* shouldBubble */));
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400622 }
623 }
624
Joshua Tsujid9923e52020-04-29 15:33:01 -0400625 /** Adds the BubbleStackView to the WindowManager. */
626 private void addToWindowManager() {
627 mWmLayoutParams = new WindowManager.LayoutParams(
628 // Fill the screen so we can use translation animations to position the bubble
629 // stack. We'll use touchable regions to ignore touches that are not on the bubbles
630 // themselves.
631 ViewGroup.LayoutParams.MATCH_PARENT,
632 ViewGroup.LayoutParams.MATCH_PARENT,
633 WindowManager.LayoutParams.TYPE_APPLICATION_OVERLAY,
634 // Start not focusable - we'll become focusable when expanded so the ActivityView
635 // can use the IME.
636 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
637 | WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED,
638 PixelFormat.TRANSLUCENT);
639
640 mWmLayoutParams.setFitInsetsTypes(0);
641 mWmLayoutParams.softInputMode = WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE;
642 mWmLayoutParams.token = new Binder();
643 mWmLayoutParams.setTitle("Bubbles!");
644 mWmLayoutParams.packageName = mContext.getPackageName();
645 mWmLayoutParams.layoutInDisplayCutoutMode = LAYOUT_IN_DISPLAY_CUTOUT_MODE_ALWAYS;
646
647 mWindowManager.addView(mStackView, mWmLayoutParams);
648 }
649
650 private void updateWmFlags() {
651 if (isStackExpanded()) {
652 // If we're expanded, we want to be focusable so that the ActivityView can receive focus
653 // and show the IME.
654 mWmLayoutParams.flags &= ~WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE;
655 } else {
656 // If we're collapsed, we don't want to be able to receive focus. Doing so would
657 // preclude applications from using the IME since we are always above them.
658 mWmLayoutParams.flags |= WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE;
659 }
660
661 mWindowManager.updateViewLayout(mStackView, mWmLayoutParams);
662 }
663
Mark Renoufc19b4732019-06-26 12:08:33 -0400664 /**
665 * Records the notification key for any active bubbles. These are used to restore active
666 * bubbles when the user returns to the foreground.
667 *
668 * @param userId the id of the user
669 */
670 private void saveBubbles(@UserIdInt int userId) {
671 // First clear any existing keys that might be stored.
672 mSavedBubbleKeysPerUser.remove(userId);
673 // Add in all active bubbles for the current user.
674 for (Bubble bubble: mBubbleData.getBubbles()) {
675 mSavedBubbleKeysPerUser.add(userId, bubble.getKey());
676 }
677 }
678
679 /**
680 * Promotes existing notifications to Bubbles if they were previously bubbles.
681 *
682 * @param userId the id of the user
683 */
684 private void restoreBubbles(@UserIdInt int userId) {
Mark Renoufc19b4732019-06-26 12:08:33 -0400685 ArraySet<String> savedBubbleKeys = mSavedBubbleKeysPerUser.get(userId);
686 if (savedBubbleKeys == null) {
687 // There were no bubbles saved for this used.
688 return;
689 }
Evan Laird181de622019-10-24 09:53:02 -0400690 for (NotificationEntry e :
691 mNotificationEntryManager.getActiveNotificationsForCurrentUser()) {
Ned Burns00b4b2d2019-10-17 22:09:27 -0400692 if (savedBubbleKeys.contains(e.getKey())
Beverly Taid1e175c2020-03-10 16:37:04 +0000693 && mNotificationInterruptStateProvider.shouldBubbleUp(e)
Mark Renoufc19b4732019-06-26 12:08:33 -0400694 && canLaunchInActivityView(mContext, e)) {
695 updateBubble(e, /* suppressFlyout= */ true);
696 }
697 }
698 // Finally, remove the entries for this user now that bubbles are restored.
699 mSavedBubbleKeysPerUser.remove(mCurrentUserId);
700 }
701
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700702 @Override
703 public void onUiModeChanged() {
Mady Mellor247ca2c2019-12-02 16:18:59 -0800704 updateForThemeChanges();
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700705 }
706
707 @Override
708 public void onOverlayChanged() {
Mady Mellor247ca2c2019-12-02 16:18:59 -0800709 updateForThemeChanges();
710 }
711
712 private void updateForThemeChanges() {
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700713 if (mStackView != null) {
Lyn Han02cca812019-04-02 16:27:32 -0700714 mStackView.onThemeChanged();
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700715 }
Mady Mellor3df7ab02019-12-09 15:07:10 -0800716 mBubbleIconFactory = new BubbleIconFactory(mContext);
Lyn Handa9a6a22020-04-24 13:21:43 -0700717 // Reload each bubble
Mady Mellor3df7ab02019-12-09 15:07:10 -0800718 for (Bubble b: mBubbleData.getBubbles()) {
Lyn Handa9a6a22020-04-24 13:21:43 -0700719 b.inflate(null /* callback */, mContext, mStackView, mBubbleIconFactory);
720 }
721 for (Bubble b: mBubbleData.getOverflowBubbles()) {
Mady Mellor3df7ab02019-12-09 15:07:10 -0800722 b.inflate(null /* callback */, mContext, mStackView, mBubbleIconFactory);
723 }
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700724 }
725
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400726 @Override
727 public void onConfigChanged(Configuration newConfig) {
728 if (mStackView != null && newConfig != null && newConfig.orientation != mOrientation) {
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400729 mOrientation = newConfig.orientation;
Lyn Hanf4730312019-06-18 11:18:58 -0700730 mStackView.onOrientationChanged(newConfig.orientation);
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400731 }
732 }
733
Mady Mellor5549dd22018-11-06 18:07:34 -0800734 /**
Mady Mellorcd9b1302018-11-06 18:08:04 -0800735 * Set a listener to be notified of bubble expand events.
736 */
737 public void setExpandListener(BubbleExpandListener listener) {
Issei Suzukiac9fcb72019-02-04 17:45:57 +0100738 mExpandListener = ((isExpanding, key) -> {
739 if (listener != null) {
740 listener.onBubbleExpandChanged(isExpanding, key);
741 }
Joshua Tsujid9923e52020-04-29 15:33:01 -0400742
743 updateWmFlags();
Issei Suzukiac9fcb72019-02-04 17:45:57 +0100744 });
Mady Mellorcd9b1302018-11-06 18:08:04 -0800745 if (mStackView != null) {
746 mStackView.setExpandListener(mExpandListener);
747 }
748 }
749
750 /**
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800751 * Whether or not there are bubbles present, regardless of them being visible on the
752 * screen (e.g. if on AOD).
753 */
Joshua Tsujid9923e52020-04-29 15:33:01 -0400754 @VisibleForTesting
755 boolean hasBubbles() {
Mady Mellor3dff9e62019-02-05 18:12:53 -0800756 if (mStackView == null) {
757 return false;
758 }
Mark Renouf71a3af62019-04-08 15:02:54 -0400759 return mBubbleData.hasBubbles();
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800760 }
761
762 /**
763 * Whether the stack of bubbles is expanded or not.
764 */
765 public boolean isStackExpanded() {
Mark Renouf71a3af62019-04-08 15:02:54 -0400766 return mBubbleData.isExpanded();
767 }
768
769 /**
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800770 * Tell the stack of bubbles to collapse.
771 */
772 public void collapseStack() {
Mark Renouf71a3af62019-04-08 15:02:54 -0400773 mBubbleData.setExpanded(false /* expanded */);
774 }
775
Mady Mellorce23c462019-06-17 17:30:07 -0700776 /**
Mady Mellore28fe102019-07-09 15:33:32 -0700777 * True if either:
778 * (1) There is a bubble associated with the provided key and if its notification is hidden
779 * from the shade.
780 * (2) There is a group summary associated with the provided key that is hidden from the shade
781 * because it has been dismissed but still has child bubbles active.
Mady Mellorce23c462019-06-17 17:30:07 -0700782 *
Mady Mellore28fe102019-07-09 15:33:32 -0700783 * False otherwise.
Mady Mellorce23c462019-06-17 17:30:07 -0700784 */
Beverlyed8aea22020-01-22 16:52:47 -0500785 public boolean isBubbleNotificationSuppressedFromShade(NotificationEntry entry) {
786 String key = entry.getKey();
Lyn Han2f6e89d2020-04-15 10:01:01 -0700787 boolean isSuppressedBubble = (mBubbleData.hasAnyBubbleWithKey(key)
788 && !mBubbleData.getAnyBubbleWithkey(key).showInShade());
Beverlyed8aea22020-01-22 16:52:47 -0500789
790 String groupKey = entry.getSbn().getGroupKey();
Mady Mellore28fe102019-07-09 15:33:32 -0700791 boolean isSuppressedSummary = mBubbleData.isSummarySuppressed(groupKey);
Mady Mellore4348272019-07-29 17:43:36 -0700792 boolean isSummary = key.equals(mBubbleData.getSummaryKey(groupKey));
Lyn Han2f6e89d2020-04-15 10:01:01 -0700793 return (isSummary && isSuppressedSummary) || isSuppressedBubble;
Mady Mellorce23c462019-06-17 17:30:07 -0700794 }
795
Lyn Hanb58c7562020-01-07 14:29:20 -0800796 void promoteBubbleFromOverflow(Bubble bubble) {
Lyn Han1e19d7f2020-02-05 19:10:58 -0800797 bubble.setInflateSynchronously(mInflateSynchronously);
Lyn Han2f6e89d2020-04-15 10:01:01 -0700798 setIsBubble(bubble, /* isBubble */ true);
Lyn Han1e19d7f2020-02-05 19:10:58 -0800799 mBubbleData.promoteBubbleFromOverflow(bubble, mStackView, mBubbleIconFactory);
Lyn Hanb58c7562020-01-07 14:29:20 -0800800 }
801
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800802 /**
Mark Renouffec45da2019-03-13 13:24:27 -0400803 * Request the stack expand if needed, then select the specified Bubble as current.
804 *
805 * @param notificationKey the notification key for the bubble to be selected
806 */
807 public void expandStackAndSelectBubble(String notificationKey) {
Lyn Han2f6e89d2020-04-15 10:01:01 -0700808 Bubble bubble = mBubbleData.getBubbleInStackWithKey(notificationKey);
809 if (bubble == null) {
810 bubble = mBubbleData.getOverflowBubbleWithKey(notificationKey);
811 if (bubble != null) {
812 mBubbleData.promoteBubbleFromOverflow(bubble, mStackView, mBubbleIconFactory);
813 }
814 } else if (bubble.getEntry().isBubble()){
Mark Renouf71a3af62019-04-08 15:02:54 -0400815 mBubbleData.setSelectedBubble(bubble);
Mark Renouffec45da2019-03-13 13:24:27 -0400816 }
Lyn Han2f6e89d2020-04-15 10:01:01 -0700817 mBubbleData.setExpanded(true);
Mark Renouffec45da2019-03-13 13:24:27 -0400818 }
819
820 /**
Mark Renouf041d7262019-02-06 12:09:41 -0500821 * Directs a back gesture at the bubble stack. When opened, the current expanded bubble
822 * is forwarded a back key down/up pair.
823 */
824 public void performBackPressIfNeeded() {
825 if (mStackView != null) {
826 mStackView.performBackPressIfNeeded();
827 }
828 }
829
830 /**
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800831 * Adds or updates a bubble associated with the provided notification entry.
832 *
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400833 * @param notif the notification associated with this bubble.
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800834 */
Mark Renouff97ed462019-04-05 13:46:24 -0400835 void updateBubble(NotificationEntry notif) {
Mady Mellor7f234902019-10-20 12:06:29 -0700836 updateBubble(notif, false /* suppressFlyout */);
Mark Renoufc19b4732019-06-26 12:08:33 -0400837 }
838
839 void updateBubble(NotificationEntry notif, boolean suppressFlyout) {
Mady Mellor7f234902019-10-20 12:06:29 -0700840 updateBubble(notif, suppressFlyout, true /* showInShade */);
841 }
842
843 void updateBubble(NotificationEntry notif, boolean suppressFlyout, boolean showInShade) {
Mady Mellor3df7ab02019-12-09 15:07:10 -0800844 if (mStackView == null) {
845 // Lazy init stack view when a bubble is created
846 ensureStackViewCreated();
847 }
Mady Mellor66efd5e2019-05-15 13:38:11 -0700848 // If this is an interruptive notif, mark that it's interrupted
Ned Burns60e94592019-09-06 14:47:25 -0400849 if (notif.getImportance() >= NotificationManager.IMPORTANCE_HIGH) {
Mady Mellor66efd5e2019-05-15 13:38:11 -0700850 notif.setInterruption();
851 }
Mady Mellor3df7ab02019-12-09 15:07:10 -0800852 Bubble bubble = mBubbleData.getOrCreateBubble(notif);
853 bubble.setInflateSynchronously(mInflateSynchronously);
854 bubble.inflate(
Lyn Han6cb4e5f2020-04-27 15:11:18 -0700855 b -> {
856 mBubbleData.notificationEntryUpdated(b, suppressFlyout, showInShade);
857 if (bubble.getBubbleIntent() == null) {
858 return;
859 }
860 bubble.getBubbleIntent().registerCancelListener(pendingIntent -> {
861 if (bubble.getWasAccessed()) {
862 bubble.setPendingIntentCanceled();
863 return;
864 }
865 mHandler.post(
866 () -> removeBubble(bubble.getEntry(),
867 BubbleController.DISMISS_INVALID_INTENT));
868 });
869 },
Mady Mellor3df7ab02019-12-09 15:07:10 -0800870 mContext, mStackView, mBubbleIconFactory);
Mady Mellor7f234902019-10-20 12:06:29 -0700871 }
872
873 /**
874 * Called when a user has indicated that an active notification should be shown as a bubble.
875 * <p>
876 * This method will collapse the shade, create the bubble without a flyout or dot, and suppress
877 * the notification from appearing in the shade.
878 *
Mady Mellor9adfe6a2020-03-30 17:23:26 -0700879 * @param entry the notification to change bubble state for.
880 * @param shouldBubble whether the notification should show as a bubble or not.
Mady Mellor7f234902019-10-20 12:06:29 -0700881 */
Mady Mellor9adfe6a2020-03-30 17:23:26 -0700882 public void onUserChangedBubble(NotificationEntry entry, boolean shouldBubble) {
883 NotificationChannel channel = entry.getChannel();
884 final String appPkg = entry.getSbn().getPackageName();
885 final int appUid = entry.getSbn().getUid();
886 if (channel == null || appPkg == null) {
887 return;
Mady Mellorff076eb2019-11-13 10:12:06 -0800888 }
Mady Mellor7f234902019-10-20 12:06:29 -0700889
Mady Mellor9adfe6a2020-03-30 17:23:26 -0700890 // Update the state in NotificationManagerService
891 try {
892 int flags = Notification.BubbleMetadata.FLAG_SUPPRESS_NOTIFICATION;
893 mBarService.onNotificationBubbleChanged(entry.getKey(), shouldBubble, flags);
894 } catch (RemoteException e) {
Mady Mellorff076eb2019-11-13 10:12:06 -0800895 }
Mady Mellor9adfe6a2020-03-30 17:23:26 -0700896
897 // Change the settings
898 channel = NotificationChannelHelper.createConversationChannelIfNeeded(mContext,
899 mINotificationManager, entry, channel);
900 channel.setAllowBubbles(shouldBubble);
901 try {
902 int currentPref = mINotificationManager.getBubblePreferenceForPackage(appPkg, appUid);
903 if (shouldBubble && currentPref == BUBBLE_PREFERENCE_NONE) {
904 mINotificationManager.setBubblesAllowed(appPkg, appUid, BUBBLE_PREFERENCE_SELECTED);
905 }
906 mINotificationManager.updateNotificationChannelForPackage(appPkg, appUid, channel);
907 } catch (RemoteException e) {
908 Log.e(TAG, e.getMessage());
909 }
910
911 if (shouldBubble) {
912 mShadeController.collapsePanel(true);
913 if (entry.getRow() != null) {
914 entry.getRow().updateBubbleButton();
915 }
Mady Mellor3b86a4f2019-12-11 13:15:41 -0800916 }
Mady Mellorff076eb2019-11-13 10:12:06 -0800917 }
918
919 /**
Beverlya53fb0d2020-01-29 15:26:13 -0500920 * Removes the bubble with the given NotificationEntry.
Mark Renouf658c6bc2019-01-30 10:26:54 -0500921 * <p>
922 * Must be called from the main thread.
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800923 */
Mark Renouf658c6bc2019-01-30 10:26:54 -0500924 @MainThread
Beverlya53fb0d2020-01-29 15:26:13 -0500925 void removeBubble(NotificationEntry entry, int reason) {
Lyn Han2f6e89d2020-04-15 10:01:01 -0700926 if (mBubbleData.hasAnyBubbleWithKey(entry.getKey())) {
Beverlya53fb0d2020-01-29 15:26:13 -0500927 mBubbleData.notificationEntryRemoved(entry, reason);
Mady Mellore8e07712019-01-23 12:45:33 -0800928 }
929 }
930
Beverlyed8aea22020-01-22 16:52:47 -0500931 private void onEntryAdded(NotificationEntry entry) {
Beverly Taid1e175c2020-03-10 16:37:04 +0000932 if (mNotificationInterruptStateProvider.shouldBubbleUp(entry)
Mady Mellordd6fe612020-04-15 11:47:55 -0700933 && canLaunchInActivityView(mContext, entry)) {
Beverlyed8aea22020-01-22 16:52:47 -0500934 updateBubble(entry);
Mady Mellor22f2f072019-04-18 13:26:18 -0700935 }
936 }
937
Beverlyed8aea22020-01-22 16:52:47 -0500938 private void onEntryUpdated(NotificationEntry entry) {
Beverly Taid1e175c2020-03-10 16:37:04 +0000939 boolean shouldBubble = mNotificationInterruptStateProvider.shouldBubbleUp(entry)
Mady Mellordd6fe612020-04-15 11:47:55 -0700940 && canLaunchInActivityView(mContext, entry);
Lyn Han2f6e89d2020-04-15 10:01:01 -0700941 if (!shouldBubble && mBubbleData.hasAnyBubbleWithKey(entry.getKey())) {
Beverlyed8aea22020-01-22 16:52:47 -0500942 // It was previously a bubble but no longer a bubble -- lets remove it
Beverlya53fb0d2020-01-29 15:26:13 -0500943 removeBubble(entry, DISMISS_NO_LONGER_BUBBLE);
Beverlyed8aea22020-01-22 16:52:47 -0500944 } else if (shouldBubble) {
Beverlyed8aea22020-01-22 16:52:47 -0500945 updateBubble(entry);
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800946 }
Beverlyed8aea22020-01-22 16:52:47 -0500947 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800948
Beverlya53fb0d2020-01-29 15:26:13 -0500949 private void onEntryRemoved(NotificationEntry entry) {
950 if (isSummaryOfBubbles(entry)) {
951 final String groupKey = entry.getSbn().getGroupKey();
952 mBubbleData.removeSuppressedSummary(groupKey);
953
954 // Remove any associated bubble children with the summary
955 final List<Bubble> bubbleChildren = mBubbleData.getBubblesInGroup(groupKey);
956 for (int i = 0; i < bubbleChildren.size(); i++) {
957 removeBubble(bubbleChildren.get(i).getEntry(), DISMISS_GROUP_CANCELLED);
958 }
959 } else {
960 removeBubble(entry, DISMISS_NOTIF_CANCEL);
961 }
962 }
963
Mady Mellor56515c42020-02-18 17:58:36 -0800964 /**
965 * Called when NotificationListener has received adjusted notification rank and reapplied
966 * filtering and sorting. This is used to dismiss or create bubbles based on changes in
967 * permissions on the notification channel or the global setting.
968 *
969 * @param rankingMap the updated ranking map from NotificationListenerService
970 */
Beverlyed8aea22020-01-22 16:52:47 -0500971 private void onRankingUpdated(RankingMap rankingMap) {
Mady Mellor56515c42020-02-18 17:58:36 -0800972 if (mTmpRanking == null) {
973 mTmpRanking = new NotificationListenerService.Ranking();
974 }
975 String[] orderedKeys = rankingMap.getOrderedKeys();
976 for (int i = 0; i < orderedKeys.length; i++) {
977 String key = orderedKeys[i];
978 NotificationEntry entry = mNotificationEntryManager.getPendingOrActiveNotif(key);
979 rankingMap.getRanking(key, mTmpRanking);
Lyn Han2f6e89d2020-04-15 10:01:01 -0700980 boolean isActiveBubble = mBubbleData.hasAnyBubbleWithKey(key);
Mady Mellore45ff862020-03-24 15:54:50 -0700981 if (isActiveBubble && !mTmpRanking.canBubble()) {
Mady Mellor56515c42020-02-18 17:58:36 -0800982 mBubbleData.notificationEntryRemoved(entry, BubbleController.DISMISS_BLOCKED);
Mady Mellore45ff862020-03-24 15:54:50 -0700983 } else if (entry != null && mTmpRanking.isBubble() && !isActiveBubble) {
Mady Mellor56515c42020-02-18 17:58:36 -0800984 entry.setFlagBubble(true);
985 onEntryUpdated(entry);
986 }
987 }
Beverlyed8aea22020-01-22 16:52:47 -0500988 }
Ned Burns01e38212019-01-03 16:32:52 -0500989
Lyn Han2f6e89d2020-04-15 10:01:01 -0700990 private void setIsBubble(Bubble b, boolean isBubble) {
991 if (isBubble) {
992 b.getEntry().getSbn().getNotification().flags |= FLAG_BUBBLE;
993 } else {
994 b.getEntry().getSbn().getNotification().flags &= ~FLAG_BUBBLE;
995 }
996 try {
997 mBarService.onNotificationBubbleChanged(b.getKey(), isBubble, 0);
998 } catch (RemoteException e) {
999 // Bad things have happened
1000 }
1001 }
1002
Mark Renouf71a3af62019-04-08 15:02:54 -04001003 @SuppressWarnings("FieldCanBeLocal")
Mark Renouf3bc5b362019-04-05 14:37:59 -04001004 private final BubbleData.Listener mBubbleDataListener = new BubbleData.Listener() {
Mark Renouf71a3af62019-04-08 15:02:54 -04001005
Mark Renouf3bc5b362019-04-05 14:37:59 -04001006 @Override
Mark Renouf82a40e62019-05-23 16:16:24 -04001007 public void applyUpdate(BubbleData.Update update) {
Lyn Hanb58c7562020-01-07 14:29:20 -08001008 // Update bubbles in overflow.
Lyn Hane4274be2020-04-24 17:55:36 -07001009 if (mOverflowListener != null) {
1010 mOverflowListener.applyUpdate(update);
Lyn Hanb58c7562020-01-07 14:29:20 -08001011 }
1012
Mark Renouf82a40e62019-05-23 16:16:24 -04001013 // Collapsing? Do this first before remaining steps.
1014 if (update.expandedChanged && !update.expanded) {
1015 mStackView.setExpanded(false);
1016 }
1017
1018 // Do removals, if any.
Mady Mellor22f2f072019-04-18 13:26:18 -07001019 ArrayList<Pair<Bubble, Integer>> removedBubbles =
1020 new ArrayList<>(update.removedBubbles);
1021 for (Pair<Bubble, Integer> removed : removedBubbles) {
Mark Renouf82a40e62019-05-23 16:16:24 -04001022 final Bubble bubble = removed.first;
1023 @DismissReason final int reason = removed.second;
1024 mStackView.removeBubble(bubble);
Lyn Han2f6e89d2020-04-15 10:01:01 -07001025
Mark Renoufc19b4732019-06-26 12:08:33 -04001026 // If the bubble is removed for user switching, leave the notification in place.
Lyn Han2f6e89d2020-04-15 10:01:01 -07001027 if (reason == DISMISS_USER_CHANGED) {
1028 continue;
1029 }
1030 if (!mBubbleData.hasBubbleInStackWithKey(bubble.getKey())) {
1031 if (!mBubbleData.hasOverflowBubbleWithKey(bubble.getKey())
1032 && (!bubble.showInShade()
1033 || reason == DISMISS_NOTIF_CANCEL
Lyn Hane4274be2020-04-24 17:55:36 -07001034 || reason == DISMISS_GROUP_CANCELLED
1035 || reason == DISMISS_OVERFLOW_MAX_REACHED)) {
Beverlyed8aea22020-01-22 16:52:47 -05001036 // The bubble is now gone & the notification is hidden from the shade, so
1037 // time to actually remove it
1038 for (NotifCallback cb : mCallbacks) {
Beverlya53fb0d2020-01-29 15:26:13 -05001039 cb.removeNotification(bubble.getEntry(), REASON_CANCEL);
Beverlyed8aea22020-01-22 16:52:47 -05001040 }
Mark Renoufc19b4732019-06-26 12:08:33 -04001041 } else {
Lyn Han2f6e89d2020-04-15 10:01:01 -07001042 if (bubble.getEntry().isBubble() && bubble.showInShade()) {
1043 setIsBubble(bubble, /* isBubble */ false);
1044 }
Mady Mellor9adfe6a2020-03-30 17:23:26 -07001045 if (bubble.getEntry().getRow() != null) {
1046 bubble.getEntry().getRow().updateBubbleButton();
1047 }
Mark Renouf82a40e62019-05-23 16:16:24 -04001048 }
Mady Mellor22f2f072019-04-18 13:26:18 -07001049
Lyn Han2f6e89d2020-04-15 10:01:01 -07001050 }
1051 final String groupKey = bubble.getEntry().getSbn().getGroupKey();
1052 if (mBubbleData.getBubblesInGroup(groupKey).isEmpty()) {
1053 // Time to potentially remove the summary
1054 for (NotifCallback cb : mCallbacks) {
1055 cb.maybeCancelSummary(bubble.getEntry());
Mady Mellor22f2f072019-04-18 13:26:18 -07001056 }
Mady Mellora54e9fa2019-04-18 13:26:18 -07001057 }
1058 }
Mark Renouf3bc5b362019-04-05 14:37:59 -04001059
Lyn Hanc47e1712020-01-28 21:43:34 -08001060 if (update.addedBubble != null) {
1061 mStackView.addBubble(update.addedBubble);
1062 }
1063
Mark Renouf82a40e62019-05-23 16:16:24 -04001064 if (update.updatedBubble != null) {
1065 mStackView.updateBubble(update.updatedBubble);
Mark Renouf71a3af62019-04-08 15:02:54 -04001066 }
Mark Renouf3bc5b362019-04-05 14:37:59 -04001067
Lyn Hanb58c7562020-01-07 14:29:20 -08001068 // At this point, the correct bubbles are inflated in the stack.
1069 // Make sure the order in bubble data is reflected in bubble row.
Mark Renouf82a40e62019-05-23 16:16:24 -04001070 if (update.orderChanged) {
1071 mStackView.updateBubbleOrder(update.bubbles);
Mark Renoufba5ab512019-05-02 15:21:01 -04001072 }
Mark Renouf3bc5b362019-04-05 14:37:59 -04001073
Mark Renouf82a40e62019-05-23 16:16:24 -04001074 if (update.selectionChanged) {
1075 mStackView.setSelectedBubble(update.selectedBubble);
Mady Mellor740d85d2019-07-09 15:26:47 -07001076 if (update.selectedBubble != null) {
1077 mNotificationGroupManager.updateSuppression(
1078 update.selectedBubble.getEntry());
1079 }
Mark Renouf71a3af62019-04-08 15:02:54 -04001080 }
Mark Renouf3bc5b362019-04-05 14:37:59 -04001081
Mark Renouf82a40e62019-05-23 16:16:24 -04001082 // Expanding? Apply this last.
1083 if (update.expandedChanged && update.expanded) {
1084 mStackView.setExpanded(true);
Mark Renouf71a3af62019-04-08 15:02:54 -04001085 }
Mark Renouf3bc5b362019-04-05 14:37:59 -04001086
Beverlyed8aea22020-01-22 16:52:47 -05001087 for (NotifCallback cb : mCallbacks) {
Beverlya53fb0d2020-01-29 15:26:13 -05001088 cb.invalidateNotifications("BubbleData.Listener.applyUpdate");
Beverlyed8aea22020-01-22 16:52:47 -05001089 }
Lyn Han6c40fe72019-05-08 14:06:33 -07001090 updateStack();
Mark Renouf9ba6cea2019-04-17 11:53:50 -04001091
Issei Suzukia8d07312019-06-07 12:56:19 +02001092 if (DEBUG_BUBBLE_CONTROLLER) {
Lyn Hanb58c7562020-01-07 14:29:20 -08001093 Log.d(TAG, "\n[BubbleData] bubbles:");
Lyn Han767d70e2019-12-10 18:02:23 -08001094 Log.d(TAG, BubbleDebugConfig.formatBubblesString(mBubbleData.getBubbles(),
Mark Renouf9ba6cea2019-04-17 11:53:50 -04001095 mBubbleData.getSelectedBubble()));
1096
1097 if (mStackView != null) {
Lyn Hanb58c7562020-01-07 14:29:20 -08001098 Log.d(TAG, "\n[BubbleStackView]");
Lyn Han767d70e2019-12-10 18:02:23 -08001099 Log.d(TAG, BubbleDebugConfig.formatBubblesString(mStackView.getBubblesOnScreen(),
Mark Renouf9ba6cea2019-04-17 11:53:50 -04001100 mStackView.getExpandedBubble()));
1101 }
1102 }
Mark Renouf3bc5b362019-04-05 14:37:59 -04001103 }
1104 };
1105
Mady Mellor3f2efdb2018-11-21 11:30:45 -08001106 /**
Beverlya53fb0d2020-01-29 15:26:13 -05001107 * We intercept notification entries (including group summaries) dismissed by the user when
1108 * there is an active bubble associated with it. We do this so that developers can still
1109 * cancel it (and hence the bubbles associated with it). However, these intercepted
1110 * notifications should then be hidden from the shade since the user has cancelled them, so we
1111 * {@link Bubble#setSuppressNotification}. For the case of suppressed summaries, we also add
1112 * {@link BubbleData#addSummaryToSuppress}.
Beverlyed8aea22020-01-22 16:52:47 -05001113 *
Mady Mellor91b31e62020-01-30 17:40:48 -08001114 * @return true if we want to intercept the dismissal of the entry, else false.
Beverlyed8aea22020-01-22 16:52:47 -05001115 */
Beverlya53fb0d2020-01-29 15:26:13 -05001116 public boolean handleDismissalInterception(NotificationEntry entry) {
Beverlyed8aea22020-01-22 16:52:47 -05001117 if (entry == null) {
1118 return false;
1119 }
Lyn Han2f6e89d2020-04-15 10:01:01 -07001120 if (isSummaryOfBubbles(entry)) {
Beverlya53fb0d2020-01-29 15:26:13 -05001121 handleSummaryDismissalInterception(entry);
Lyn Han2f6e89d2020-04-15 10:01:01 -07001122 } else {
1123 Bubble bubble = mBubbleData.getBubbleInStackWithKey(entry.getKey());
1124 if (bubble == null || !entry.isBubble()) {
1125 bubble = mBubbleData.getOverflowBubbleWithKey(entry.getKey());
1126 }
1127 if (bubble == null) {
1128 return false;
1129 }
Beverlyed8aea22020-01-22 16:52:47 -05001130 bubble.setSuppressNotification(true);
Joshua Tsuji2ed260e2020-03-26 14:26:01 -04001131 bubble.setShowDot(false /* show */);
Beverlyed8aea22020-01-22 16:52:47 -05001132 }
Beverlya53fb0d2020-01-29 15:26:13 -05001133 // Update the shade
1134 for (NotifCallback cb : mCallbacks) {
1135 cb.invalidateNotifications("BubbleController.handleDismissalInterception");
1136 }
1137 return true;
Beverlyed8aea22020-01-22 16:52:47 -05001138 }
1139
Beverlya53fb0d2020-01-29 15:26:13 -05001140 private boolean isSummaryOfBubbles(NotificationEntry entry) {
1141 if (entry == null) {
Beverlyed8aea22020-01-22 16:52:47 -05001142 return false;
1143 }
Beverlya53fb0d2020-01-29 15:26:13 -05001144
1145 String groupKey = entry.getSbn().getGroupKey();
1146 ArrayList<Bubble> bubbleChildren = mBubbleData.getBubblesInGroup(groupKey);
1147 boolean isSuppressedSummary = (mBubbleData.isSummarySuppressed(groupKey)
1148 && mBubbleData.getSummaryKey(groupKey).equals(entry.getKey()));
1149 boolean isSummary = entry.getSbn().getNotification().isGroupSummary();
1150 return (isSuppressedSummary || isSummary)
1151 && bubbleChildren != null
1152 && !bubbleChildren.isEmpty();
1153 }
1154
1155 private void handleSummaryDismissalInterception(NotificationEntry summary) {
1156 // current children in the row:
Kevin Han43077f92020-02-28 12:51:53 -08001157 final List<NotificationEntry> children = summary.getAttachedNotifChildren();
Beverlya53fb0d2020-01-29 15:26:13 -05001158 if (children != null) {
1159 for (int i = 0; i < children.size(); i++) {
1160 NotificationEntry child = children.get(i);
Lyn Han2f6e89d2020-04-15 10:01:01 -07001161 if (mBubbleData.hasAnyBubbleWithKey(child.getKey())) {
Beverlya53fb0d2020-01-29 15:26:13 -05001162 // Suppress the bubbled child
1163 // As far as group manager is concerned, once a child is no longer shown
1164 // in the shade, it is essentially removed.
Lyn Han2f6e89d2020-04-15 10:01:01 -07001165 Bubble bubbleChild = mBubbleData.getAnyBubbleWithkey(child.getKey());
Beverlya53fb0d2020-01-29 15:26:13 -05001166 mNotificationGroupManager.onEntryRemoved(bubbleChild.getEntry());
1167 bubbleChild.setSuppressNotification(true);
Joshua Tsuji2ed260e2020-03-26 14:26:01 -04001168 bubbleChild.setShowDot(false /* show */);
Beverlya53fb0d2020-01-29 15:26:13 -05001169 } else {
1170 // non-bubbled children can be removed
1171 for (NotifCallback cb : mCallbacks) {
1172 cb.removeNotification(child, REASON_GROUP_SUMMARY_CANCELED);
1173 }
1174 }
1175 }
1176 }
1177
1178 // And since all children are removed, remove the summary.
1179 mNotificationGroupManager.onEntryRemoved(summary);
1180
1181 // TODO: (b/145659174) remove references to mSuppressedGroupKeys once fully migrated
1182 mBubbleData.addSummaryToSuppress(summary.getSbn().getGroupKey(),
1183 summary.getKey());
Beverlyed8aea22020-01-22 16:52:47 -05001184 }
1185
1186 /**
Joshua Tsujidd4d9f92019-05-13 13:57:38 -04001187 * Lets any listeners know if bubble state has changed.
Lyn Han6c40fe72019-05-08 14:06:33 -07001188 * Updates the visibility of the bubbles based on current state.
Joshua Tsujid9923e52020-04-29 15:33:01 -04001189 * Does not un-bubble, just hides or un-hides.
Lyn Han6c40fe72019-05-08 14:06:33 -07001190 * Updates stack description for TalkBack focus.
Mady Mellor3f2efdb2018-11-21 11:30:45 -08001191 */
Lyn Han6c40fe72019-05-08 14:06:33 -07001192 public void updateStack() {
Mady Mellor3f2efdb2018-11-21 11:30:45 -08001193 if (mStackView == null) {
1194 return;
Mady Mellord1c78b262018-11-06 18:04:40 -08001195 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -08001196 if (mStatusBarStateListener.getCurrentState() == SHADE && hasBubbles()) {
1197 // Bubbles only appear in unlocked shade
1198 mStackView.setVisibility(hasBubbles() ? VISIBLE : INVISIBLE);
Mady Mellor698d9e82019-08-01 23:11:53 +00001199 } else if (mStackView != null) {
Mady Mellor3f2efdb2018-11-21 11:30:45 -08001200 mStackView.setVisibility(INVISIBLE);
Mady Mellor5549dd22018-11-06 18:07:34 -08001201 }
Lyn Han6c40fe72019-05-08 14:06:33 -07001202
Lyn Han6c40fe72019-05-08 14:06:33 -07001203 mStackView.updateContentDescription();
Mady Mellord1c78b262018-11-06 18:04:40 -08001204 }
1205
1206 /**
Mady Mellor390bff42019-04-05 15:09:01 -07001207 * The display id of the expanded view, if the stack is expanded and not occluded by the
1208 * status bar, otherwise returns {@link Display#INVALID_DISPLAY}.
1209 */
1210 public int getExpandedDisplayId(Context context) {
Joel Galenson4071ddb2019-04-18 13:30:45 -07001211 if (mStackView == null) {
Lyn Han9f66c3b2020-03-05 23:59:29 -08001212 return INVALID_DISPLAY;
Joel Galenson4071ddb2019-04-18 13:30:45 -07001213 }
Issei Suzukicac2a502019-04-16 16:52:50 +02001214 final boolean defaultDisplay = context.getDisplay() != null
Mady Mellor390bff42019-04-05 15:09:01 -07001215 && context.getDisplay().getDisplayId() == DEFAULT_DISPLAY;
Lyn Han9f66c3b2020-03-05 23:59:29 -08001216 final BubbleViewProvider expandedViewProvider = mStackView.getExpandedBubble();
1217 if (defaultDisplay && expandedViewProvider != null && isStackExpanded()
wilsonshihe8321942019-10-18 18:39:46 +08001218 && !mNotificationShadeWindowController.getPanelExpanded()) {
Lyn Han9f66c3b2020-03-05 23:59:29 -08001219 return expandedViewProvider.getDisplayId();
Mady Mellor390bff42019-04-05 15:09:01 -07001220 }
Lyn Han9f66c3b2020-03-05 23:59:29 -08001221 return INVALID_DISPLAY;
Mady Mellor390bff42019-04-05 15:09:01 -07001222 }
1223
Mady Mellorf6e3ac02019-01-29 10:37:52 -08001224 @VisibleForTesting
1225 BubbleStackView getStackView() {
1226 return mStackView;
1227 }
1228
Mady Mellor70cba7bb2019-07-02 15:06:07 -07001229 /**
1230 * Description of current bubble state.
1231 */
1232 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
1233 pw.println("BubbleController state:");
1234 mBubbleData.dump(fd, pw, args);
1235 pw.println();
Joshua Tsuji395bcfe2019-07-02 19:23:23 -04001236 if (mStackView != null) {
1237 mStackView.dump(fd, pw, args);
1238 }
1239 pw.println();
Mady Mellor70cba7bb2019-07-02 15:06:07 -07001240 }
1241
Mady Mellore80930e2019-03-21 16:00:45 -07001242 /**
Mark Renoufcecc77b2019-01-30 16:32:24 -05001243 * This task stack listener is responsible for responding to tasks moved to the front
1244 * which are on the default (main) display. When this happens, expanded bubbles must be
1245 * collapsed so the user may interact with the app which was just moved to the front.
1246 * <p>
1247 * This listener is registered with SystemUI's ActivityManagerWrapper which dispatches
1248 * these calls via a main thread Handler.
1249 */
1250 @MainThread
1251 private class BubbleTaskStackListener extends TaskStackChangeListener {
1252
Mark Renoufcecc77b2019-01-30 16:32:24 -05001253 @Override
Mark Renoufc808f062019-02-07 15:20:37 -05001254 public void onTaskMovedToFront(RunningTaskInfo taskInfo) {
1255 if (mStackView != null && taskInfo.displayId == Display.DEFAULT_DISPLAY) {
Mady Mellor047e24e2019-08-05 11:35:40 -07001256 if (!mStackView.isExpansionAnimating()) {
1257 mBubbleData.setExpanded(false);
1258 }
Mark Renoufcecc77b2019-01-30 16:32:24 -05001259 }
1260 }
1261
Mark Renoufcecc77b2019-01-30 16:32:24 -05001262 @Override
Winson Chunge789ff62020-02-24 14:40:23 -08001263 public void onActivityRestartAttempt(RunningTaskInfo task, boolean homeTaskVisible,
Evan Rosky8d1c24e2020-04-23 09:21:16 -07001264 boolean clearedTask, boolean wasVisible) {
Winson Chunge789ff62020-02-24 14:40:23 -08001265 for (Bubble b : mBubbleData.getBubbles()) {
1266 if (b.getDisplayId() == task.displayId) {
1267 expandStackAndSelectBubble(b.getKey());
1268 return;
1269 }
1270 }
1271 }
1272
1273 @Override
Mark Renoufa12e8762019-03-07 15:43:01 -05001274 public void onActivityLaunchOnSecondaryDisplayRerouted() {
Mark Renoufcecc77b2019-01-30 16:32:24 -05001275 if (mStackView != null) {
Mark Renouf71a3af62019-04-08 15:02:54 -04001276 mBubbleData.setExpanded(false);
Mark Renoufcecc77b2019-01-30 16:32:24 -05001277 }
1278 }
Mark Renouf446251d2019-04-26 10:22:41 -04001279
1280 @Override
1281 public void onBackPressedOnTaskRoot(RunningTaskInfo taskInfo) {
1282 if (mStackView != null && taskInfo.displayId == getExpandedDisplayId(mContext)) {
1283 mBubbleData.setExpanded(false);
1284 }
1285 }
Issei Suzukicac2a502019-04-16 16:52:50 +02001286
1287 @Override
1288 public void onSingleTaskDisplayDrawn(int displayId) {
Lyn Hana0bb02e2020-01-28 17:57:27 -08001289 if (mStackView == null) {
1290 return;
Issei Suzukicac2a502019-04-16 16:52:50 +02001291 }
Lyn Hana0bb02e2020-01-28 17:57:27 -08001292 mStackView.showExpandedViewContents(displayId);
Issei Suzukicac2a502019-04-16 16:52:50 +02001293 }
Issei Suzuki734bc942019-06-05 13:59:52 +02001294
1295 @Override
1296 public void onSingleTaskDisplayEmpty(int displayId) {
Lyn Han9f66c3b2020-03-05 23:59:29 -08001297 final BubbleViewProvider expandedBubble = mStackView != null
Mady Mellor5186b132019-09-16 17:55:48 -07001298 ? mStackView.getExpandedBubble()
1299 : null;
Mady Mellorca184aae2019-09-17 16:07:12 -07001300 int expandedId = expandedBubble != null ? expandedBubble.getDisplayId() : -1;
1301 if (mStackView != null && mStackView.isExpanded() && expandedId == displayId) {
Issei Suzuki734bc942019-06-05 13:59:52 +02001302 mBubbleData.setExpanded(false);
Issei Suzuki734bc942019-06-05 13:59:52 +02001303 }
Mady Mellorca184aae2019-09-17 16:07:12 -07001304 mBubbleData.notifyDisplayEmpty(displayId);
Issei Suzuki734bc942019-06-05 13:59:52 +02001305 }
Mark Renoufcecc77b2019-01-30 16:32:24 -05001306 }
1307
Mady Mellorca0c24c2019-05-16 16:14:32 -07001308 /**
1309 * Whether an intent is properly configured to display in an {@link android.app.ActivityView}.
1310 *
1311 * Keep checks in sync with NotificationManagerService#canLaunchInActivityView. Typically
1312 * that should filter out any invalid bubbles, but should protect SysUI side just in case.
1313 *
1314 * @param context the context to use.
1315 * @param entry the entry to bubble.
1316 */
1317 static boolean canLaunchInActivityView(Context context, NotificationEntry entry) {
1318 PendingIntent intent = entry.getBubbleMetadata() != null
Mady Melloraa9ce172020-03-17 10:34:20 -07001319 ? entry.getBubbleMetadata().getIntent()
Mady Mellorca0c24c2019-05-16 16:14:32 -07001320 : null;
Mady Mellor2ac2d3a2020-01-08 17:18:54 -08001321 if (entry.getBubbleMetadata() != null
1322 && entry.getBubbleMetadata().getShortcutId() != null) {
1323 return true;
1324 }
Mady Mellorca0c24c2019-05-16 16:14:32 -07001325 if (intent == null) {
Mady Mellor7f234902019-10-20 12:06:29 -07001326 Log.w(TAG, "Unable to create bubble -- no intent: " + entry.getKey());
Mady Mellorca0c24c2019-05-16 16:14:32 -07001327 return false;
1328 }
Mady Mellorf3b9fab2019-11-13 17:27:32 -08001329 PackageManager packageManager = StatusBar.getPackageManagerForUser(
1330 context, entry.getSbn().getUser().getIdentifier());
Mady Mellorca0c24c2019-05-16 16:14:32 -07001331 ActivityInfo info =
Mady Mellorf3b9fab2019-11-13 17:27:32 -08001332 intent.getIntent().resolveActivityInfo(packageManager, 0);
Mady Mellorca0c24c2019-05-16 16:14:32 -07001333 if (info == null) {
Mady Mellor7f234902019-10-20 12:06:29 -07001334 Log.w(TAG, "Unable to send as bubble, "
1335 + entry.getKey() + " couldn't find activity info for intent: "
Mady Mellorca0c24c2019-05-16 16:14:32 -07001336 + intent);
1337 return false;
1338 }
1339 if (!ActivityInfo.isResizeableMode(info.resizeMode)) {
Mady Mellor7f234902019-10-20 12:06:29 -07001340 Log.w(TAG, "Unable to send as bubble, "
1341 + entry.getKey() + " activity is not resizable for intent: "
Mady Mellorca0c24c2019-05-16 16:14:32 -07001342 + intent);
1343 return false;
1344 }
Mady Mellorca0c24c2019-05-16 16:14:32 -07001345 return true;
1346 }
1347
Joshua Tsujia19515f2019-02-13 18:02:29 -05001348 /** PinnedStackListener that dispatches IME visibility updates to the stack. */
Hongwei Wang43a752b2019-09-17 20:20:30 +00001349 private class BubblesImeListener extends PinnedStackListenerForwarder.PinnedStackListener {
Joshua Tsujia19515f2019-02-13 18:02:29 -05001350 @Override
Joshua Tsujid9422832019-03-05 13:32:37 -05001351 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) {
Joshua Tsujiff6b0f22020-03-09 14:55:19 -04001352 if (mStackView != null) {
Joshua Tsujid9422832019-03-05 13:32:37 -05001353 mStackView.post(() -> mStackView.onImeVisibilityChanged(imeVisible, imeHeight));
Joshua Tsujia19515f2019-02-13 18:02:29 -05001354 }
1355 }
Joshua Tsujia19515f2019-02-13 18:02:29 -05001356 }
Mady Mellorc3d6f7d2018-11-07 09:36:56 -08001357}