blob: ca0cd77dfbb4b33522a718c861c6f51ac5059b92 [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;
Pinyao Tingee191b12020-04-29 18:35:39 -0700156 private final BubbleDataRepository mDataRepository;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800157
Mady Mellor3dff9e62019-02-05 18:12:53 -0800158 private BubbleData mBubbleData;
Joshua Tsujid9923e52020-04-29 15:33:01 -0400159 private ScrimView mBubbleScrim;
Joshua Tsujic650a142019-05-22 11:31:19 -0400160 @Nullable private BubbleStackView mStackView;
Mady Mellor247ca2c2019-12-02 16:18:59 -0800161 private BubbleIconFactory mBubbleIconFactory;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800162
Mark Renoufc19b4732019-06-26 12:08:33 -0400163 // Tracks the id of the current (foreground) user.
164 private int mCurrentUserId;
165 // Saves notification keys of active bubbles when users are switched.
166 private final SparseSetArray<String> mSavedBubbleKeysPerUser;
167
Mady Mellor56515c42020-02-18 17:58:36 -0800168 // Used when ranking updates occur and we check if things should bubble / unbubble
169 private NotificationListenerService.Ranking mTmpRanking;
170
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800171 // Bubbles get added to the status bar view
wilsonshihe8321942019-10-18 18:39:46 +0800172 private final NotificationShadeWindowController mNotificationShadeWindowController;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400173 private final ZenModeController mZenModeController;
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800174 private StatusBarStateListener mStatusBarStateListener;
Mady Mellor9adfe6a2020-03-30 17:23:26 -0700175 private INotificationManager mINotificationManager;
Aran Inkaa4dfa72019-11-18 16:49:07 -0500176
Lyn Hanb58c7562020-01-07 14:29:20 -0800177 // Callback that updates BubbleOverflowActivity on data change.
Lyn Hane4274be2020-04-24 17:55:36 -0700178 @Nullable private BubbleData.Listener mOverflowListener = null;
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800179
Beverly Taid1e175c2020-03-10 16:37:04 +0000180 private final NotificationInterruptStateProvider mNotificationInterruptStateProvider;
Mady Mellora54e9fa2019-04-18 13:26:18 -0700181 private IStatusBarService mBarService;
Joshua Tsujid9923e52020-04-29 15:33:01 -0400182 private WindowManager mWindowManager;
Joshua Tsujibe60a582020-03-23 17:17:26 -0400183 private SysUiState mSysUiState;
Mady Mellorb4991e62019-01-10 15:14:51 -0800184
Lyn Han6cb4e5f2020-04-27 15:11:18 -0700185 // Used to post to main UI thread
186 private Handler mHandler = new Handler();
187
Joshua Tsujid9923e52020-04-29 15:33:01 -0400188 /** LayoutParams used to add the BubbleStackView to the window maanger. */
189 private WindowManager.LayoutParams mWmLayoutParams;
190
191
Mady Mellord1c78b262018-11-06 18:04:40 -0800192 // Used for determining view rect for touch interaction
193 private Rect mTempRect = new Rect();
194
Mark Renoufc19b4732019-06-26 12:08:33 -0400195 // Listens to user switch so bubbles can be saved and restored.
196 private final NotificationLockscreenUserManager mNotifUserManager;
197
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400198 /** Last known orientation, used to detect orientation changes in {@link #onConfigChanged}. */
199 private int mOrientation = Configuration.ORIENTATION_UNDEFINED;
200
Mady Mellor3df7ab02019-12-09 15:07:10 -0800201 private boolean mInflateSynchronously;
202
Beverlyed8aea22020-01-22 16:52:47 -0500203 // TODO (b/145659174): allow for multiple callbacks to support the "shadow" new notif pipeline
204 private final List<NotifCallback> mCallbacks = new ArrayList<>();
205
Mady Mellor5549dd22018-11-06 18:07:34 -0800206 /**
Mady Mellorcd9b1302018-11-06 18:08:04 -0800207 * Listener to find out about stack expansion / collapse events.
208 */
209 public interface BubbleExpandListener {
210 /**
211 * Called when the expansion state of the bubble stack changes.
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700212 *
Mady Mellorcd9b1302018-11-06 18:08:04 -0800213 * @param isExpanding whether it's expanding or collapsing
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800214 * @param key the notification key associated with bubble being expanded
Mady Mellorcd9b1302018-11-06 18:08:04 -0800215 */
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800216 void onBubbleExpandChanged(boolean isExpanding, String key);
217 }
218
219 /**
Mady Mellorf44b6832020-01-14 13:26:14 -0800220 * Listener to be notified when a bubbles' notification suppression state changes.
221 */
222 public interface NotificationSuppressionChangedListener {
223 /**
224 * Called when the notification suppression state of a bubble changes.
225 */
226 void onBubbleNotificationSuppressionChange(Bubble bubble);
Beverlyed8aea22020-01-22 16:52:47 -0500227 }
Mady Mellorf44b6832020-01-14 13:26:14 -0800228
Beverlyed8aea22020-01-22 16:52:47 -0500229 /**
230 * Callback for when the BubbleController wants to interact with the notification pipeline to:
231 * - Remove a previously bubbled notification
232 * - Update the notification shade since bubbled notification should/shouldn't be showing
233 */
234 public interface NotifCallback {
235 /**
Beverlya53fb0d2020-01-29 15:26:13 -0500236 * Called when a bubbled notification that was hidden from the shade is now being removed
237 * This can happen when an app cancels a bubbled notification or when the user dismisses a
238 * bubble.
Beverlyed8aea22020-01-22 16:52:47 -0500239 */
Beverlya53fb0d2020-01-29 15:26:13 -0500240 void removeNotification(NotificationEntry entry, int reason);
Beverlyed8aea22020-01-22 16:52:47 -0500241
242 /**
243 * Called when a bubbled notification has changed whether it should be
244 * filtered from the shade.
245 */
Beverlya53fb0d2020-01-29 15:26:13 -0500246 void invalidateNotifications(String reason);
Beverlyed8aea22020-01-22 16:52:47 -0500247
248 /**
249 * Called on a bubbled entry that has been removed when there are no longer
250 * bubbled entries in its group.
251 *
252 * Checks whether its group has any other (non-bubbled) children. If it doesn't,
253 * removes all remnants of the group's summary from the notification pipeline.
254 * TODO: (b/145659174) Only old pipeline needs this - delete post-migration.
255 */
256 void maybeCancelSummary(NotificationEntry entry);
Mady Mellorf44b6832020-01-14 13:26:14 -0800257 }
258
259 /**
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800260 * Listens for the current state of the status bar and updates the visibility state
261 * of bubbles as needed.
262 */
263 private class StatusBarStateListener implements StatusBarStateController.StateListener {
264 private int mState;
265 /**
266 * Returns the current status bar state.
267 */
268 public int getCurrentState() {
269 return mState;
270 }
271
272 @Override
273 public void onStateChanged(int newState) {
274 mState = newState;
Mark Renouf71a3af62019-04-08 15:02:54 -0400275 boolean shouldCollapse = (mState != SHADE);
276 if (shouldCollapse) {
277 collapseStack();
278 }
Lyn Han6c40fe72019-05-08 14:06:33 -0700279 updateStack();
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800280 }
Mady Mellorcd9b1302018-11-06 18:08:04 -0800281 }
282
Mady Mellor7f234902019-10-20 12:06:29 -0700283 public BubbleController(Context context,
wilsonshihe8321942019-10-18 18:39:46 +0800284 NotificationShadeWindowController notificationShadeWindowController,
Mady Mellor7f234902019-10-20 12:06:29 -0700285 StatusBarStateController statusBarStateController,
Heemin Seogba6337f2019-12-10 15:34:37 -0800286 ShadeController shadeController,
Mady Mellor7f234902019-10-20 12:06:29 -0700287 BubbleData data,
Mady Melloraa8fef22019-04-11 13:36:40 -0700288 ConfigurationController configurationController,
Beverly Taid1e175c2020-03-10 16:37:04 +0000289 NotificationInterruptStateProvider interruptionStateProvider,
Mark Renoufc19b4732019-06-26 12:08:33 -0400290 ZenModeController zenModeController,
Mady Mellor22f2f072019-04-18 13:26:18 -0700291 NotificationLockscreenUserManager notifUserManager,
Mady Mellor7f234902019-10-20 12:06:29 -0700292 NotificationGroupManager groupManager,
Beverlya53fb0d2020-01-29 15:26:13 -0500293 NotificationEntryManager entryManager,
294 NotifPipeline notifPipeline,
295 FeatureFlags featureFlags,
Ned Burnsaaeb44b2020-02-12 23:48:26 -0500296 DumpManager dumpManager,
Joshua Tsujibe60a582020-03-23 17:17:26 -0400297 FloatingContentCoordinator floatingContentCoordinator,
Pinyao Tingee191b12020-04-29 18:35:39 -0700298 BubbleDataRepository dataRepository,
Mady Mellor9adfe6a2020-03-30 17:23:26 -0700299 SysUiState sysUiState,
300 INotificationManager notificationManager) {
wilsonshihe8321942019-10-18 18:39:46 +0800301 this(context, notificationShadeWindowController, statusBarStateController, shadeController,
Mady Mellor7f234902019-10-20 12:06:29 -0700302 data, null /* synchronizer */, configurationController, interruptionStateProvider,
Beverlya53fb0d2020-01-29 15:26:13 -0500303 zenModeController, notifUserManager, groupManager, entryManager,
Pinyao Tingee191b12020-04-29 18:35:39 -0700304 notifPipeline, featureFlags, dumpManager, floatingContentCoordinator,
305 dataRepository, sysUiState, notificationManager);
Mady Mellor7f234902019-10-20 12:06:29 -0700306 }
307
Sergey Nikolaienkov5cb6e522020-02-10 17:33:00 +0100308 /**
309 * Injected constructor. See {@link BubbleModule}.
310 */
Mady Mellor7f234902019-10-20 12:06:29 -0700311 public BubbleController(Context context,
wilsonshihe8321942019-10-18 18:39:46 +0800312 NotificationShadeWindowController notificationShadeWindowController,
Mady Mellor7f234902019-10-20 12:06:29 -0700313 StatusBarStateController statusBarStateController,
Heemin Seogba6337f2019-12-10 15:34:37 -0800314 ShadeController shadeController,
Mady Mellor7f234902019-10-20 12:06:29 -0700315 BubbleData data,
316 @Nullable BubbleStackView.SurfaceSynchronizer synchronizer,
317 ConfigurationController configurationController,
Beverly Taid1e175c2020-03-10 16:37:04 +0000318 NotificationInterruptStateProvider interruptionStateProvider,
Mady Mellor7f234902019-10-20 12:06:29 -0700319 ZenModeController zenModeController,
320 NotificationLockscreenUserManager notifUserManager,
321 NotificationGroupManager groupManager,
Beverlya53fb0d2020-01-29 15:26:13 -0500322 NotificationEntryManager entryManager,
323 NotifPipeline notifPipeline,
324 FeatureFlags featureFlags,
Ned Burnsaaeb44b2020-02-12 23:48:26 -0500325 DumpManager dumpManager,
Joshua Tsujibe60a582020-03-23 17:17:26 -0400326 FloatingContentCoordinator floatingContentCoordinator,
Pinyao Tingee191b12020-04-29 18:35:39 -0700327 BubbleDataRepository dataRepository,
Mady Mellor9adfe6a2020-03-30 17:23:26 -0700328 SysUiState sysUiState,
329 INotificationManager notificationManager) {
Ned Burnsaaeb44b2020-02-12 23:48:26 -0500330 dumpManager.registerDumpable(TAG, this);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800331 mContext = context;
Heemin Seogba6337f2019-12-10 15:34:37 -0800332 mShadeController = shadeController;
Beverly Taid1e175c2020-03-10 16:37:04 +0000333 mNotificationInterruptStateProvider = interruptionStateProvider;
Mark Renoufc19b4732019-06-26 12:08:33 -0400334 mNotifUserManager = notifUserManager;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400335 mZenModeController = zenModeController;
Joshua Tsuji7155bf12020-02-13 16:14:29 -0500336 mFloatingContentCoordinator = floatingContentCoordinator;
Pinyao Tingee191b12020-04-29 18:35:39 -0700337 mDataRepository = dataRepository;
Mady Mellor9adfe6a2020-03-30 17:23:26 -0700338 mINotificationManager = notificationManager;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400339 mZenModeController.addCallback(new ZenModeController.Callback() {
340 @Override
341 public void onZenChanged(int zen) {
Mady Mellorb8aaf972019-11-26 10:28:00 -0800342 for (Bubble b : mBubbleData.getBubbles()) {
Joshua Tsuji2ed260e2020-03-26 14:26:01 -0400343 b.setShowDot(b.showInShade());
Mady Mellordf48d0a2019-06-25 18:26:46 -0700344 }
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400345 }
346
347 @Override
348 public void onConfigChanged(ZenModeConfig config) {
Mady Mellorb8aaf972019-11-26 10:28:00 -0800349 for (Bubble b : mBubbleData.getBubbles()) {
Joshua Tsuji2ed260e2020-03-26 14:26:01 -0400350 b.setShowDot(b.showInShade());
Mady Mellordf48d0a2019-06-25 18:26:46 -0700351 }
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400352 }
353 });
Mady Melloraa8fef22019-04-11 13:36:40 -0700354
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700355 configurationController.addCallback(this /* configurationListener */);
Joshua Tsujibe60a582020-03-23 17:17:26 -0400356 mSysUiState = sysUiState;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800357
Mark Renouf9ba6cea2019-04-17 11:53:50 -0400358 mBubbleData = data;
359 mBubbleData.setListener(mBubbleDataListener);
Mady Mellorf44b6832020-01-14 13:26:14 -0800360 mBubbleData.setSuppressionChangedListener(new NotificationSuppressionChangedListener() {
361 @Override
362 public void onBubbleNotificationSuppressionChange(Bubble bubble) {
363 // Make sure NoMan knows it's not showing in the shade anymore so anyone querying it
364 // can tell.
365 try {
366 mBarService.onBubbleNotificationSuppressionChanged(bubble.getKey(),
367 !bubble.showInShade());
368 } catch (RemoteException e) {
369 // Bad things have happened
370 }
371 }
372 });
Mark Renouf9ba6cea2019-04-17 11:53:50 -0400373
Mady Mellor7f234902019-10-20 12:06:29 -0700374 mNotificationEntryManager = entryManager;
Mady Mellor22f2f072019-04-18 13:26:18 -0700375 mNotificationGroupManager = groupManager;
Beverlya53fb0d2020-01-29 15:26:13 -0500376 mNotifPipeline = notifPipeline;
377
378 if (!featureFlags.isNewNotifPipelineRenderingEnabled()) {
379 setupNEM();
380 } else {
381 setupNotifPipeline();
382 }
Mady Mellorb4991e62019-01-10 15:14:51 -0800383
wilsonshihe8321942019-10-18 18:39:46 +0800384 mNotificationShadeWindowController = notificationShadeWindowController;
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800385 mStatusBarStateListener = new StatusBarStateListener();
Mady Mellor7f234902019-10-20 12:06:29 -0700386 statusBarStateController.addCallback(mStatusBarStateListener);
Mark Renoufcecc77b2019-01-30 16:32:24 -0500387
Mark Renoufcecc77b2019-01-30 16:32:24 -0500388 mTaskStackListener = new BubbleTaskStackListener();
389 ActivityManagerWrapper.getInstance().registerTaskStackListener(mTaskStackListener);
Mady Mellor3dff9e62019-02-05 18:12:53 -0800390
Joshua Tsujia19515f2019-02-13 18:02:29 -0500391 try {
392 WindowManagerWrapper.getInstance().addPinnedStackListener(new BubblesImeListener());
393 } catch (RemoteException e) {
394 e.printStackTrace();
395 }
Issei Suzukic0387542019-03-08 17:31:14 +0100396 mSurfaceSynchronizer = synchronizer;
Mady Mellora54e9fa2019-04-18 13:26:18 -0700397
Joshua Tsujid9923e52020-04-29 15:33:01 -0400398 mWindowManager = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
Mady Mellora54e9fa2019-04-18 13:26:18 -0700399 mBarService = IStatusBarService.Stub.asInterface(
400 ServiceManager.getService(Context.STATUS_BAR_SERVICE));
Mark Renoufc19b4732019-06-26 12:08:33 -0400401
Joshua Tsujid9923e52020-04-29 15:33:01 -0400402 mBubbleScrim = new ScrimView(mContext);
403
Mark Renoufc19b4732019-06-26 12:08:33 -0400404 mSavedBubbleKeysPerUser = new SparseSetArray<>();
405 mCurrentUserId = mNotifUserManager.getCurrentUserId();
406 mNotifUserManager.addUserChangedListener(
Steve Elliottb47f1c72019-12-19 12:39:26 -0500407 new NotificationLockscreenUserManager.UserChangedListener() {
408 @Override
409 public void onUserChanged(int newUserId) {
410 BubbleController.this.saveBubbles(mCurrentUserId);
411 mBubbleData.dismissAll(DISMISS_USER_CHANGED);
412 BubbleController.this.restoreBubbles(newUserId);
413 mCurrentUserId = newUserId;
414 }
Mark Renoufc19b4732019-06-26 12:08:33 -0400415 });
Mady Mellorff076eb2019-11-13 10:12:06 -0800416
Mady Mellor247ca2c2019-12-02 16:18:59 -0800417 mBubbleIconFactory = new BubbleIconFactory(context);
Mady Mellor5549dd22018-11-06 18:07:34 -0800418 }
419
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400420 /**
Beverlyed8aea22020-01-22 16:52:47 -0500421 * See {@link NotifCallback}.
422 */
423 public void addNotifCallback(NotifCallback callback) {
424 mCallbacks.add(callback);
425 }
426
427 private void setupNEM() {
428 mNotificationEntryManager.addNotificationEntryListener(
429 new NotificationEntryListener() {
430 @Override
Mady Mellorf9439ab2020-01-30 16:06:53 -0800431 public void onPendingEntryAdded(NotificationEntry entry) {
Beverlyed8aea22020-01-22 16:52:47 -0500432 onEntryAdded(entry);
433 }
434
435 @Override
436 public void onPreEntryUpdated(NotificationEntry entry) {
437 onEntryUpdated(entry);
438 }
439
440 @Override
Beverlya53fb0d2020-01-29 15:26:13 -0500441 public void onEntryRemoved(
442 NotificationEntry entry,
443 @android.annotation.Nullable NotificationVisibility visibility,
Julia Reynolds138111f2020-02-26 11:17:39 -0500444 boolean removedByUser,
445 int reason) {
Beverlya53fb0d2020-01-29 15:26:13 -0500446 BubbleController.this.onEntryRemoved(entry);
447 }
448
449 @Override
Beverlyed8aea22020-01-22 16:52:47 -0500450 public void onNotificationRankingUpdated(RankingMap rankingMap) {
451 onRankingUpdated(rankingMap);
452 }
453 });
454
Evan Laird04373662020-01-24 17:37:39 -0500455 mNotificationEntryManager.addNotificationRemoveInterceptor(
Beverlyed8aea22020-01-22 16:52:47 -0500456 new NotificationRemoveInterceptor() {
457 @Override
Evan Laird04373662020-01-24 17:37:39 -0500458 public boolean onNotificationRemoveRequested(
Beverlya53fb0d2020-01-29 15:26:13 -0500459 String key,
460 NotificationEntry entry,
461 int dismissReason) {
462 final boolean isClearAll = dismissReason == REASON_CANCEL_ALL;
463 final boolean isUserDimiss = dismissReason == REASON_CANCEL
464 || dismissReason == REASON_CLICK;
465 final boolean isAppCancel = dismissReason == REASON_APP_CANCEL
466 || dismissReason == REASON_APP_CANCEL_ALL;
467 final boolean isSummaryCancel =
468 dismissReason == REASON_GROUP_SUMMARY_CANCELED;
469
470 // Need to check for !appCancel here because the notification may have
471 // previously been dismissed & entry.isRowDismissed would still be true
472 boolean userRemovedNotif =
473 (entry != null && entry.isRowDismissed() && !isAppCancel)
474 || isClearAll || isUserDimiss || isSummaryCancel;
475
Mady Mellordd6fe612020-04-15 11:47:55 -0700476 if (userRemovedNotif) {
Beverlya53fb0d2020-01-29 15:26:13 -0500477 return handleDismissalInterception(entry);
478 }
Beverlya53fb0d2020-01-29 15:26:13 -0500479 return false;
Beverlyed8aea22020-01-22 16:52:47 -0500480 }
481 });
482
483 mNotificationGroupManager.addOnGroupChangeListener(
484 new NotificationGroupManager.OnGroupChangeListener() {
485 @Override
486 public void onGroupSuppressionChanged(
487 NotificationGroupManager.NotificationGroup group,
488 boolean suppressed) {
489 // More notifications could be added causing summary to no longer
490 // be suppressed -- in this case need to remove the key.
491 final String groupKey = group.summary != null
492 ? group.summary.getSbn().getGroupKey()
493 : null;
494 if (!suppressed && groupKey != null
495 && mBubbleData.isSummarySuppressed(groupKey)) {
496 mBubbleData.removeSuppressedSummary(groupKey);
497 }
498 }
499 });
500
501 addNotifCallback(new NotifCallback() {
502 @Override
Beverlya53fb0d2020-01-29 15:26:13 -0500503 public void removeNotification(NotificationEntry entry, int reason) {
Beverlyed8aea22020-01-22 16:52:47 -0500504 mNotificationEntryManager.performRemoveNotification(entry.getSbn(),
Beverlya53fb0d2020-01-29 15:26:13 -0500505 reason);
Beverlyed8aea22020-01-22 16:52:47 -0500506 }
507
508 @Override
Beverlya53fb0d2020-01-29 15:26:13 -0500509 public void invalidateNotifications(String reason) {
Beverlyed8aea22020-01-22 16:52:47 -0500510 mNotificationEntryManager.updateNotifications(reason);
511 }
512
513 @Override
514 public void maybeCancelSummary(NotificationEntry entry) {
515 // Check if removed bubble has an associated suppressed group summary that needs
516 // to be removed now.
Beverlya53fb0d2020-01-29 15:26:13 -0500517 final String groupKey = entry.getSbn().getGroupKey();
Beverlyed8aea22020-01-22 16:52:47 -0500518 if (mBubbleData.isSummarySuppressed(groupKey)) {
Beverlya53fb0d2020-01-29 15:26:13 -0500519 mBubbleData.removeSuppressedSummary(groupKey);
Beverlyed8aea22020-01-22 16:52:47 -0500520
521 final NotificationEntry summary =
522 mNotificationEntryManager.getActiveNotificationUnfiltered(
523 mBubbleData.getSummaryKey(groupKey));
Beverlya53fb0d2020-01-29 15:26:13 -0500524 if (summary != null) {
525 mNotificationEntryManager.performRemoveNotification(summary.getSbn(),
526 UNDEFINED_DISMISS_REASON);
527 }
Beverlyed8aea22020-01-22 16:52:47 -0500528 }
529
Beverlya53fb0d2020-01-29 15:26:13 -0500530 // Check if we still need to remove the summary from NoManGroup because the summary
531 // may not be in the mBubbleData.mSuppressedGroupKeys list and removed above.
532 // For example:
533 // 1. Bubbled notifications (group) is posted to shade and are visible bubbles
534 // 2. User expands bubbles so now their respective notifications in the shade are
535 // hidden, including the group summary
536 // 3. User removes all bubbles
537 // 4. We expect all the removed bubbles AND the summary (note: the summary was
538 // never added to the suppressedSummary list in BubbleData, so we add this check)
Beverlyed8aea22020-01-22 16:52:47 -0500539 NotificationEntry summary =
540 mNotificationGroupManager.getLogicalGroupSummary(entry.getSbn());
541 if (summary != null) {
542 ArrayList<NotificationEntry> summaryChildren =
543 mNotificationGroupManager.getLogicalChildren(summary.getSbn());
544 boolean isSummaryThisNotif = summary.getKey().equals(entry.getKey());
545 if (!isSummaryThisNotif && (summaryChildren == null
546 || summaryChildren.isEmpty())) {
547 mNotificationEntryManager.performRemoveNotification(summary.getSbn(),
548 UNDEFINED_DISMISS_REASON);
549 }
550 }
551 }
552 });
553 }
554
Beverlya53fb0d2020-01-29 15:26:13 -0500555 private void setupNotifPipeline() {
556 mNotifPipeline.addCollectionListener(new NotifCollectionListener() {
557 @Override
558 public void onEntryAdded(NotificationEntry entry) {
559 BubbleController.this.onEntryAdded(entry);
560 }
561
562 @Override
563 public void onEntryUpdated(NotificationEntry entry) {
564 BubbleController.this.onEntryUpdated(entry);
565 }
566
567 @Override
568 public void onRankingUpdate(RankingMap rankingMap) {
569 onRankingUpdated(rankingMap);
570 }
571
572 @Override
573 public void onEntryRemoved(NotificationEntry entry,
574 @NotifCollection.CancellationReason int reason) {
575 BubbleController.this.onEntryRemoved(entry);
576 }
577 });
578 }
579
Beverlyed8aea22020-01-22 16:52:47 -0500580 /**
Joshua Tsujid9923e52020-04-29 15:33:01 -0400581 * Returns the scrim drawn behind the bubble stack. This is managed by {@link ScrimController}
582 * since we want the scrim's appearance and behavior to be identical to that of the notification
583 * shade scrim.
584 */
585 public ScrimView getScrimForBubble() {
586 return mBubbleScrim;
587 }
588
589 /**
Mady Mellor3df7ab02019-12-09 15:07:10 -0800590 * Sets whether to perform inflation on the same thread as the caller. This method should only
591 * be used in tests, not in production.
592 */
593 @VisibleForTesting
594 void setInflateSynchronously(boolean inflateSynchronously) {
595 mInflateSynchronously = inflateSynchronously;
Mady Mellor5549dd22018-11-06 18:07:34 -0800596 }
597
Lyn Hane4274be2020-04-24 17:55:36 -0700598 void setOverflowListener(BubbleData.Listener listener) {
599 mOverflowListener = listener;
Lyn Hanb58c7562020-01-07 14:29:20 -0800600 }
601
602 /**
603 * @return Bubbles for updating overflow.
604 */
605 List<Bubble> getOverflowBubbles() {
606 return mBubbleData.getOverflowBubbles();
607 }
608
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400609 /**
610 * BubbleStackView is lazily created by this method the first time a Bubble is added. This
611 * method initializes the stack view and adds it to the StatusBar just above the scrim.
612 */
613 private void ensureStackViewCreated() {
614 if (mStackView == null) {
Joshua Tsuji7155bf12020-02-13 16:14:29 -0500615 mStackView = new BubbleStackView(
Joshua Tsujibe60a582020-03-23 17:17:26 -0400616 mContext, mBubbleData, mSurfaceSynchronizer, mFloatingContentCoordinator,
Joshua Tsujiba9fef02020-04-09 17:40:35 -0400617 mSysUiState, mNotificationShadeWindowController);
Joshua Tsujid9923e52020-04-29 15:33:01 -0400618 mStackView.addView(mBubbleScrim);
619 addToWindowManager();
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400620 if (mExpandListener != null) {
621 mStackView.setExpandListener(mExpandListener);
622 }
Joshua Tsuji6855cab2020-04-16 01:05:39 -0400623
624 mStackView.setUnbubbleConversationCallback(notificationEntry ->
625 onUserChangedBubble(notificationEntry, false /* shouldBubble */));
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400626 }
627 }
628
Joshua Tsujid9923e52020-04-29 15:33:01 -0400629 /** Adds the BubbleStackView to the WindowManager. */
630 private void addToWindowManager() {
631 mWmLayoutParams = new WindowManager.LayoutParams(
632 // Fill the screen so we can use translation animations to position the bubble
633 // stack. We'll use touchable regions to ignore touches that are not on the bubbles
634 // themselves.
635 ViewGroup.LayoutParams.MATCH_PARENT,
636 ViewGroup.LayoutParams.MATCH_PARENT,
Joshua Tsuji94d4c342020-05-04 14:00:24 -0400637 WindowManager.LayoutParams.TYPE_TRUSTED_APPLICATION_OVERLAY,
Joshua Tsujid9923e52020-04-29 15:33:01 -0400638 // Start not focusable - we'll become focusable when expanded so the ActivityView
639 // can use the IME.
640 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
641 | WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED,
642 PixelFormat.TRANSLUCENT);
643
644 mWmLayoutParams.setFitInsetsTypes(0);
645 mWmLayoutParams.softInputMode = WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE;
646 mWmLayoutParams.token = new Binder();
647 mWmLayoutParams.setTitle("Bubbles!");
648 mWmLayoutParams.packageName = mContext.getPackageName();
649 mWmLayoutParams.layoutInDisplayCutoutMode = LAYOUT_IN_DISPLAY_CUTOUT_MODE_ALWAYS;
650
651 mWindowManager.addView(mStackView, mWmLayoutParams);
652 }
653
654 private void updateWmFlags() {
655 if (isStackExpanded()) {
656 // If we're expanded, we want to be focusable so that the ActivityView can receive focus
657 // and show the IME.
658 mWmLayoutParams.flags &= ~WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE;
659 } else {
660 // If we're collapsed, we don't want to be able to receive focus. Doing so would
661 // preclude applications from using the IME since we are always above them.
662 mWmLayoutParams.flags |= WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE;
663 }
664
665 mWindowManager.updateViewLayout(mStackView, mWmLayoutParams);
666 }
667
Mark Renoufc19b4732019-06-26 12:08:33 -0400668 /**
669 * Records the notification key for any active bubbles. These are used to restore active
670 * bubbles when the user returns to the foreground.
671 *
672 * @param userId the id of the user
673 */
674 private void saveBubbles(@UserIdInt int userId) {
675 // First clear any existing keys that might be stored.
676 mSavedBubbleKeysPerUser.remove(userId);
677 // Add in all active bubbles for the current user.
678 for (Bubble bubble: mBubbleData.getBubbles()) {
679 mSavedBubbleKeysPerUser.add(userId, bubble.getKey());
680 }
681 }
682
683 /**
684 * Promotes existing notifications to Bubbles if they were previously bubbles.
685 *
686 * @param userId the id of the user
687 */
688 private void restoreBubbles(@UserIdInt int userId) {
Mark Renoufc19b4732019-06-26 12:08:33 -0400689 ArraySet<String> savedBubbleKeys = mSavedBubbleKeysPerUser.get(userId);
690 if (savedBubbleKeys == null) {
691 // There were no bubbles saved for this used.
692 return;
693 }
Evan Laird181de622019-10-24 09:53:02 -0400694 for (NotificationEntry e :
695 mNotificationEntryManager.getActiveNotificationsForCurrentUser()) {
Ned Burns00b4b2d2019-10-17 22:09:27 -0400696 if (savedBubbleKeys.contains(e.getKey())
Beverly Taid1e175c2020-03-10 16:37:04 +0000697 && mNotificationInterruptStateProvider.shouldBubbleUp(e)
Mark Renoufc19b4732019-06-26 12:08:33 -0400698 && canLaunchInActivityView(mContext, e)) {
699 updateBubble(e, /* suppressFlyout= */ true);
700 }
701 }
702 // Finally, remove the entries for this user now that bubbles are restored.
703 mSavedBubbleKeysPerUser.remove(mCurrentUserId);
704 }
705
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700706 @Override
707 public void onUiModeChanged() {
Mady Mellor247ca2c2019-12-02 16:18:59 -0800708 updateForThemeChanges();
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700709 }
710
711 @Override
712 public void onOverlayChanged() {
Mady Mellor247ca2c2019-12-02 16:18:59 -0800713 updateForThemeChanges();
714 }
715
716 private void updateForThemeChanges() {
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700717 if (mStackView != null) {
Lyn Han02cca812019-04-02 16:27:32 -0700718 mStackView.onThemeChanged();
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700719 }
Mady Mellor3df7ab02019-12-09 15:07:10 -0800720 mBubbleIconFactory = new BubbleIconFactory(mContext);
Lyn Handa9a6a22020-04-24 13:21:43 -0700721 // Reload each bubble
Mady Mellor3df7ab02019-12-09 15:07:10 -0800722 for (Bubble b: mBubbleData.getBubbles()) {
Lyn Handa9a6a22020-04-24 13:21:43 -0700723 b.inflate(null /* callback */, mContext, mStackView, mBubbleIconFactory);
724 }
725 for (Bubble b: mBubbleData.getOverflowBubbles()) {
Mady Mellor3df7ab02019-12-09 15:07:10 -0800726 b.inflate(null /* callback */, mContext, mStackView, mBubbleIconFactory);
727 }
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700728 }
729
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400730 @Override
731 public void onConfigChanged(Configuration newConfig) {
732 if (mStackView != null && newConfig != null && newConfig.orientation != mOrientation) {
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400733 mOrientation = newConfig.orientation;
Lyn Hanf4730312019-06-18 11:18:58 -0700734 mStackView.onOrientationChanged(newConfig.orientation);
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400735 }
736 }
737
Mady Mellor5549dd22018-11-06 18:07:34 -0800738 /**
Mady Mellorcd9b1302018-11-06 18:08:04 -0800739 * Set a listener to be notified of bubble expand events.
740 */
741 public void setExpandListener(BubbleExpandListener listener) {
Issei Suzukiac9fcb72019-02-04 17:45:57 +0100742 mExpandListener = ((isExpanding, key) -> {
743 if (listener != null) {
744 listener.onBubbleExpandChanged(isExpanding, key);
745 }
Joshua Tsujid9923e52020-04-29 15:33:01 -0400746
747 updateWmFlags();
Issei Suzukiac9fcb72019-02-04 17:45:57 +0100748 });
Mady Mellorcd9b1302018-11-06 18:08:04 -0800749 if (mStackView != null) {
750 mStackView.setExpandListener(mExpandListener);
751 }
752 }
753
754 /**
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800755 * Whether or not there are bubbles present, regardless of them being visible on the
756 * screen (e.g. if on AOD).
757 */
Joshua Tsujid9923e52020-04-29 15:33:01 -0400758 @VisibleForTesting
759 boolean hasBubbles() {
Mady Mellor3dff9e62019-02-05 18:12:53 -0800760 if (mStackView == null) {
761 return false;
762 }
Mark Renouf71a3af62019-04-08 15:02:54 -0400763 return mBubbleData.hasBubbles();
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800764 }
765
766 /**
767 * Whether the stack of bubbles is expanded or not.
768 */
769 public boolean isStackExpanded() {
Mark Renouf71a3af62019-04-08 15:02:54 -0400770 return mBubbleData.isExpanded();
771 }
772
773 /**
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800774 * Tell the stack of bubbles to collapse.
775 */
776 public void collapseStack() {
Mark Renouf71a3af62019-04-08 15:02:54 -0400777 mBubbleData.setExpanded(false /* expanded */);
778 }
779
Mady Mellorce23c462019-06-17 17:30:07 -0700780 /**
Mady Mellore28fe102019-07-09 15:33:32 -0700781 * True if either:
782 * (1) There is a bubble associated with the provided key and if its notification is hidden
783 * from the shade.
784 * (2) There is a group summary associated with the provided key that is hidden from the shade
785 * because it has been dismissed but still has child bubbles active.
Mady Mellorce23c462019-06-17 17:30:07 -0700786 *
Mady Mellore28fe102019-07-09 15:33:32 -0700787 * False otherwise.
Mady Mellorce23c462019-06-17 17:30:07 -0700788 */
Beverlyed8aea22020-01-22 16:52:47 -0500789 public boolean isBubbleNotificationSuppressedFromShade(NotificationEntry entry) {
790 String key = entry.getKey();
Lyn Han2f6e89d2020-04-15 10:01:01 -0700791 boolean isSuppressedBubble = (mBubbleData.hasAnyBubbleWithKey(key)
792 && !mBubbleData.getAnyBubbleWithkey(key).showInShade());
Beverlyed8aea22020-01-22 16:52:47 -0500793
794 String groupKey = entry.getSbn().getGroupKey();
Mady Mellore28fe102019-07-09 15:33:32 -0700795 boolean isSuppressedSummary = mBubbleData.isSummarySuppressed(groupKey);
Mady Mellore4348272019-07-29 17:43:36 -0700796 boolean isSummary = key.equals(mBubbleData.getSummaryKey(groupKey));
Lyn Han2f6e89d2020-04-15 10:01:01 -0700797 return (isSummary && isSuppressedSummary) || isSuppressedBubble;
Mady Mellorce23c462019-06-17 17:30:07 -0700798 }
799
Lyn Hanb58c7562020-01-07 14:29:20 -0800800 void promoteBubbleFromOverflow(Bubble bubble) {
Lyn Han1e19d7f2020-02-05 19:10:58 -0800801 bubble.setInflateSynchronously(mInflateSynchronously);
Lyn Han2f6e89d2020-04-15 10:01:01 -0700802 setIsBubble(bubble, /* isBubble */ true);
Lyn Han1e19d7f2020-02-05 19:10:58 -0800803 mBubbleData.promoteBubbleFromOverflow(bubble, mStackView, mBubbleIconFactory);
Lyn Hanb58c7562020-01-07 14:29:20 -0800804 }
805
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800806 /**
Mark Renouffec45da2019-03-13 13:24:27 -0400807 * Request the stack expand if needed, then select the specified Bubble as current.
808 *
809 * @param notificationKey the notification key for the bubble to be selected
810 */
811 public void expandStackAndSelectBubble(String notificationKey) {
Lyn Han2f6e89d2020-04-15 10:01:01 -0700812 Bubble bubble = mBubbleData.getBubbleInStackWithKey(notificationKey);
813 if (bubble == null) {
814 bubble = mBubbleData.getOverflowBubbleWithKey(notificationKey);
815 if (bubble != null) {
816 mBubbleData.promoteBubbleFromOverflow(bubble, mStackView, mBubbleIconFactory);
817 }
818 } else if (bubble.getEntry().isBubble()){
Mark Renouf71a3af62019-04-08 15:02:54 -0400819 mBubbleData.setSelectedBubble(bubble);
Mark Renouffec45da2019-03-13 13:24:27 -0400820 }
Lyn Han2f6e89d2020-04-15 10:01:01 -0700821 mBubbleData.setExpanded(true);
Mark Renouffec45da2019-03-13 13:24:27 -0400822 }
823
824 /**
Mark Renouf041d7262019-02-06 12:09:41 -0500825 * Directs a back gesture at the bubble stack. When opened, the current expanded bubble
826 * is forwarded a back key down/up pair.
827 */
828 public void performBackPressIfNeeded() {
829 if (mStackView != null) {
830 mStackView.performBackPressIfNeeded();
831 }
832 }
833
834 /**
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800835 * Adds or updates a bubble associated with the provided notification entry.
836 *
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400837 * @param notif the notification associated with this bubble.
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800838 */
Mark Renouff97ed462019-04-05 13:46:24 -0400839 void updateBubble(NotificationEntry notif) {
Mady Mellor7f234902019-10-20 12:06:29 -0700840 updateBubble(notif, false /* suppressFlyout */);
Mark Renoufc19b4732019-06-26 12:08:33 -0400841 }
842
843 void updateBubble(NotificationEntry notif, boolean suppressFlyout) {
Mady Mellor7f234902019-10-20 12:06:29 -0700844 updateBubble(notif, suppressFlyout, true /* showInShade */);
845 }
846
847 void updateBubble(NotificationEntry notif, boolean suppressFlyout, boolean showInShade) {
Mady Mellor3df7ab02019-12-09 15:07:10 -0800848 if (mStackView == null) {
849 // Lazy init stack view when a bubble is created
850 ensureStackViewCreated();
851 }
Mady Mellor66efd5e2019-05-15 13:38:11 -0700852 // If this is an interruptive notif, mark that it's interrupted
Ned Burns60e94592019-09-06 14:47:25 -0400853 if (notif.getImportance() >= NotificationManager.IMPORTANCE_HIGH) {
Mady Mellor66efd5e2019-05-15 13:38:11 -0700854 notif.setInterruption();
855 }
Mady Mellor3df7ab02019-12-09 15:07:10 -0800856 Bubble bubble = mBubbleData.getOrCreateBubble(notif);
857 bubble.setInflateSynchronously(mInflateSynchronously);
858 bubble.inflate(
Lyn Han6cb4e5f2020-04-27 15:11:18 -0700859 b -> {
860 mBubbleData.notificationEntryUpdated(b, suppressFlyout, showInShade);
861 if (bubble.getBubbleIntent() == null) {
862 return;
863 }
864 bubble.getBubbleIntent().registerCancelListener(pendingIntent -> {
865 if (bubble.getWasAccessed()) {
866 bubble.setPendingIntentCanceled();
867 return;
868 }
869 mHandler.post(
870 () -> removeBubble(bubble.getEntry(),
871 BubbleController.DISMISS_INVALID_INTENT));
872 });
873 },
Mady Mellor3df7ab02019-12-09 15:07:10 -0800874 mContext, mStackView, mBubbleIconFactory);
Mady Mellor7f234902019-10-20 12:06:29 -0700875 }
876
877 /**
878 * Called when a user has indicated that an active notification should be shown as a bubble.
879 * <p>
880 * This method will collapse the shade, create the bubble without a flyout or dot, and suppress
881 * the notification from appearing in the shade.
882 *
Mady Mellor9adfe6a2020-03-30 17:23:26 -0700883 * @param entry the notification to change bubble state for.
884 * @param shouldBubble whether the notification should show as a bubble or not.
Mady Mellor7f234902019-10-20 12:06:29 -0700885 */
Mady Mellor9adfe6a2020-03-30 17:23:26 -0700886 public void onUserChangedBubble(NotificationEntry entry, boolean shouldBubble) {
887 NotificationChannel channel = entry.getChannel();
888 final String appPkg = entry.getSbn().getPackageName();
889 final int appUid = entry.getSbn().getUid();
890 if (channel == null || appPkg == null) {
891 return;
Mady Mellorff076eb2019-11-13 10:12:06 -0800892 }
Mady Mellor7f234902019-10-20 12:06:29 -0700893
Mady Mellor9adfe6a2020-03-30 17:23:26 -0700894 // Update the state in NotificationManagerService
895 try {
896 int flags = Notification.BubbleMetadata.FLAG_SUPPRESS_NOTIFICATION;
897 mBarService.onNotificationBubbleChanged(entry.getKey(), shouldBubble, flags);
898 } catch (RemoteException e) {
Mady Mellorff076eb2019-11-13 10:12:06 -0800899 }
Mady Mellor9adfe6a2020-03-30 17:23:26 -0700900
901 // Change the settings
902 channel = NotificationChannelHelper.createConversationChannelIfNeeded(mContext,
903 mINotificationManager, entry, channel);
904 channel.setAllowBubbles(shouldBubble);
905 try {
906 int currentPref = mINotificationManager.getBubblePreferenceForPackage(appPkg, appUid);
907 if (shouldBubble && currentPref == BUBBLE_PREFERENCE_NONE) {
908 mINotificationManager.setBubblesAllowed(appPkg, appUid, BUBBLE_PREFERENCE_SELECTED);
909 }
910 mINotificationManager.updateNotificationChannelForPackage(appPkg, appUid, channel);
911 } catch (RemoteException e) {
912 Log.e(TAG, e.getMessage());
913 }
914
915 if (shouldBubble) {
916 mShadeController.collapsePanel(true);
917 if (entry.getRow() != null) {
918 entry.getRow().updateBubbleButton();
919 }
Mady Mellor3b86a4f2019-12-11 13:15:41 -0800920 }
Mady Mellorff076eb2019-11-13 10:12:06 -0800921 }
922
923 /**
Beverlya53fb0d2020-01-29 15:26:13 -0500924 * Removes the bubble with the given NotificationEntry.
Mark Renouf658c6bc2019-01-30 10:26:54 -0500925 * <p>
926 * Must be called from the main thread.
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800927 */
Mark Renouf658c6bc2019-01-30 10:26:54 -0500928 @MainThread
Beverlya53fb0d2020-01-29 15:26:13 -0500929 void removeBubble(NotificationEntry entry, int reason) {
Lyn Han2f6e89d2020-04-15 10:01:01 -0700930 if (mBubbleData.hasAnyBubbleWithKey(entry.getKey())) {
Beverlya53fb0d2020-01-29 15:26:13 -0500931 mBubbleData.notificationEntryRemoved(entry, reason);
Mady Mellore8e07712019-01-23 12:45:33 -0800932 }
933 }
934
Beverlyed8aea22020-01-22 16:52:47 -0500935 private void onEntryAdded(NotificationEntry entry) {
Beverly Taid1e175c2020-03-10 16:37:04 +0000936 if (mNotificationInterruptStateProvider.shouldBubbleUp(entry)
Mady Mellordd6fe612020-04-15 11:47:55 -0700937 && canLaunchInActivityView(mContext, entry)) {
Beverlyed8aea22020-01-22 16:52:47 -0500938 updateBubble(entry);
Mady Mellor22f2f072019-04-18 13:26:18 -0700939 }
940 }
941
Beverlyed8aea22020-01-22 16:52:47 -0500942 private void onEntryUpdated(NotificationEntry entry) {
Beverly Taid1e175c2020-03-10 16:37:04 +0000943 boolean shouldBubble = mNotificationInterruptStateProvider.shouldBubbleUp(entry)
Mady Mellordd6fe612020-04-15 11:47:55 -0700944 && canLaunchInActivityView(mContext, entry);
Lyn Han2f6e89d2020-04-15 10:01:01 -0700945 if (!shouldBubble && mBubbleData.hasAnyBubbleWithKey(entry.getKey())) {
Beverlyed8aea22020-01-22 16:52:47 -0500946 // It was previously a bubble but no longer a bubble -- lets remove it
Beverlya53fb0d2020-01-29 15:26:13 -0500947 removeBubble(entry, DISMISS_NO_LONGER_BUBBLE);
Beverlyed8aea22020-01-22 16:52:47 -0500948 } else if (shouldBubble) {
Beverlyed8aea22020-01-22 16:52:47 -0500949 updateBubble(entry);
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800950 }
Beverlyed8aea22020-01-22 16:52:47 -0500951 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800952
Beverlya53fb0d2020-01-29 15:26:13 -0500953 private void onEntryRemoved(NotificationEntry entry) {
954 if (isSummaryOfBubbles(entry)) {
955 final String groupKey = entry.getSbn().getGroupKey();
956 mBubbleData.removeSuppressedSummary(groupKey);
957
958 // Remove any associated bubble children with the summary
959 final List<Bubble> bubbleChildren = mBubbleData.getBubblesInGroup(groupKey);
960 for (int i = 0; i < bubbleChildren.size(); i++) {
961 removeBubble(bubbleChildren.get(i).getEntry(), DISMISS_GROUP_CANCELLED);
962 }
963 } else {
964 removeBubble(entry, DISMISS_NOTIF_CANCEL);
965 }
966 }
967
Mady Mellor56515c42020-02-18 17:58:36 -0800968 /**
969 * Called when NotificationListener has received adjusted notification rank and reapplied
970 * filtering and sorting. This is used to dismiss or create bubbles based on changes in
971 * permissions on the notification channel or the global setting.
972 *
973 * @param rankingMap the updated ranking map from NotificationListenerService
974 */
Beverlyed8aea22020-01-22 16:52:47 -0500975 private void onRankingUpdated(RankingMap rankingMap) {
Mady Mellor56515c42020-02-18 17:58:36 -0800976 if (mTmpRanking == null) {
977 mTmpRanking = new NotificationListenerService.Ranking();
978 }
979 String[] orderedKeys = rankingMap.getOrderedKeys();
980 for (int i = 0; i < orderedKeys.length; i++) {
981 String key = orderedKeys[i];
982 NotificationEntry entry = mNotificationEntryManager.getPendingOrActiveNotif(key);
983 rankingMap.getRanking(key, mTmpRanking);
Lyn Han2f6e89d2020-04-15 10:01:01 -0700984 boolean isActiveBubble = mBubbleData.hasAnyBubbleWithKey(key);
Mady Mellore45ff862020-03-24 15:54:50 -0700985 if (isActiveBubble && !mTmpRanking.canBubble()) {
Mady Mellor56515c42020-02-18 17:58:36 -0800986 mBubbleData.notificationEntryRemoved(entry, BubbleController.DISMISS_BLOCKED);
Mady Mellore45ff862020-03-24 15:54:50 -0700987 } else if (entry != null && mTmpRanking.isBubble() && !isActiveBubble) {
Mady Mellor56515c42020-02-18 17:58:36 -0800988 entry.setFlagBubble(true);
989 onEntryUpdated(entry);
990 }
991 }
Beverlyed8aea22020-01-22 16:52:47 -0500992 }
Ned Burns01e38212019-01-03 16:32:52 -0500993
Lyn Han2f6e89d2020-04-15 10:01:01 -0700994 private void setIsBubble(Bubble b, boolean isBubble) {
995 if (isBubble) {
996 b.getEntry().getSbn().getNotification().flags |= FLAG_BUBBLE;
997 } else {
998 b.getEntry().getSbn().getNotification().flags &= ~FLAG_BUBBLE;
999 }
1000 try {
1001 mBarService.onNotificationBubbleChanged(b.getKey(), isBubble, 0);
1002 } catch (RemoteException e) {
1003 // Bad things have happened
1004 }
1005 }
1006
Mark Renouf71a3af62019-04-08 15:02:54 -04001007 @SuppressWarnings("FieldCanBeLocal")
Mark Renouf3bc5b362019-04-05 14:37:59 -04001008 private final BubbleData.Listener mBubbleDataListener = new BubbleData.Listener() {
Mark Renouf71a3af62019-04-08 15:02:54 -04001009
Mark Renouf3bc5b362019-04-05 14:37:59 -04001010 @Override
Mark Renouf82a40e62019-05-23 16:16:24 -04001011 public void applyUpdate(BubbleData.Update update) {
Lyn Hanb58c7562020-01-07 14:29:20 -08001012 // Update bubbles in overflow.
Lyn Hane4274be2020-04-24 17:55:36 -07001013 if (mOverflowListener != null) {
1014 mOverflowListener.applyUpdate(update);
Lyn Hanb58c7562020-01-07 14:29:20 -08001015 }
1016
Mark Renouf82a40e62019-05-23 16:16:24 -04001017 // Collapsing? Do this first before remaining steps.
1018 if (update.expandedChanged && !update.expanded) {
1019 mStackView.setExpanded(false);
1020 }
1021
1022 // Do removals, if any.
Mady Mellor22f2f072019-04-18 13:26:18 -07001023 ArrayList<Pair<Bubble, Integer>> removedBubbles =
1024 new ArrayList<>(update.removedBubbles);
Pinyao Tingee191b12020-04-29 18:35:39 -07001025 ArrayList<Bubble> bubblesToBeRemovedFromRepository = new ArrayList<>();
Mady Mellor22f2f072019-04-18 13:26:18 -07001026 for (Pair<Bubble, Integer> removed : removedBubbles) {
Mark Renouf82a40e62019-05-23 16:16:24 -04001027 final Bubble bubble = removed.first;
1028 @DismissReason final int reason = removed.second;
1029 mStackView.removeBubble(bubble);
Lyn Han2f6e89d2020-04-15 10:01:01 -07001030
Mark Renoufc19b4732019-06-26 12:08:33 -04001031 // If the bubble is removed for user switching, leave the notification in place.
Lyn Han2f6e89d2020-04-15 10:01:01 -07001032 if (reason == DISMISS_USER_CHANGED) {
1033 continue;
1034 }
Pinyao Tingee191b12020-04-29 18:35:39 -07001035 if (reason == DISMISS_NOTIF_CANCEL) {
1036 bubblesToBeRemovedFromRepository.add(bubble);
1037 }
Lyn Han2f6e89d2020-04-15 10:01:01 -07001038 if (!mBubbleData.hasBubbleInStackWithKey(bubble.getKey())) {
1039 if (!mBubbleData.hasOverflowBubbleWithKey(bubble.getKey())
1040 && (!bubble.showInShade()
1041 || reason == DISMISS_NOTIF_CANCEL
Lyn Hane4274be2020-04-24 17:55:36 -07001042 || reason == DISMISS_GROUP_CANCELLED
1043 || reason == DISMISS_OVERFLOW_MAX_REACHED)) {
Beverlyed8aea22020-01-22 16:52:47 -05001044 // The bubble is now gone & the notification is hidden from the shade, so
1045 // time to actually remove it
1046 for (NotifCallback cb : mCallbacks) {
Beverlya53fb0d2020-01-29 15:26:13 -05001047 cb.removeNotification(bubble.getEntry(), REASON_CANCEL);
Beverlyed8aea22020-01-22 16:52:47 -05001048 }
Mark Renoufc19b4732019-06-26 12:08:33 -04001049 } else {
Lyn Han2f6e89d2020-04-15 10:01:01 -07001050 if (bubble.getEntry().isBubble() && bubble.showInShade()) {
1051 setIsBubble(bubble, /* isBubble */ false);
1052 }
Mady Mellor9adfe6a2020-03-30 17:23:26 -07001053 if (bubble.getEntry().getRow() != null) {
1054 bubble.getEntry().getRow().updateBubbleButton();
1055 }
Mark Renouf82a40e62019-05-23 16:16:24 -04001056 }
Mady Mellor22f2f072019-04-18 13:26:18 -07001057
Lyn Han2f6e89d2020-04-15 10:01:01 -07001058 }
1059 final String groupKey = bubble.getEntry().getSbn().getGroupKey();
1060 if (mBubbleData.getBubblesInGroup(groupKey).isEmpty()) {
1061 // Time to potentially remove the summary
1062 for (NotifCallback cb : mCallbacks) {
1063 cb.maybeCancelSummary(bubble.getEntry());
Mady Mellor22f2f072019-04-18 13:26:18 -07001064 }
Mady Mellora54e9fa2019-04-18 13:26:18 -07001065 }
1066 }
Pinyao Tingee191b12020-04-29 18:35:39 -07001067 mDataRepository.removeBubbles(mCurrentUserId, bubblesToBeRemovedFromRepository);
Mark Renouf3bc5b362019-04-05 14:37:59 -04001068
Lyn Hanc47e1712020-01-28 21:43:34 -08001069 if (update.addedBubble != null) {
Pinyao Tingee191b12020-04-29 18:35:39 -07001070 mDataRepository.addBubble(mCurrentUserId, update.addedBubble);
Lyn Hanc47e1712020-01-28 21:43:34 -08001071 mStackView.addBubble(update.addedBubble);
Pinyao Tingee191b12020-04-29 18:35:39 -07001072
Lyn Hanc47e1712020-01-28 21:43:34 -08001073 }
1074
Mark Renouf82a40e62019-05-23 16:16:24 -04001075 if (update.updatedBubble != null) {
1076 mStackView.updateBubble(update.updatedBubble);
Mark Renouf71a3af62019-04-08 15:02:54 -04001077 }
Mark Renouf3bc5b362019-04-05 14:37:59 -04001078
Lyn Hanb58c7562020-01-07 14:29:20 -08001079 // At this point, the correct bubbles are inflated in the stack.
1080 // Make sure the order in bubble data is reflected in bubble row.
Mark Renouf82a40e62019-05-23 16:16:24 -04001081 if (update.orderChanged) {
Pinyao Tingee191b12020-04-29 18:35:39 -07001082 mDataRepository.addBubbles(mCurrentUserId, update.bubbles);
Mark Renouf82a40e62019-05-23 16:16:24 -04001083 mStackView.updateBubbleOrder(update.bubbles);
Mark Renoufba5ab512019-05-02 15:21:01 -04001084 }
Mark Renouf3bc5b362019-04-05 14:37:59 -04001085
Mark Renouf82a40e62019-05-23 16:16:24 -04001086 if (update.selectionChanged) {
1087 mStackView.setSelectedBubble(update.selectedBubble);
Mady Mellor740d85d2019-07-09 15:26:47 -07001088 if (update.selectedBubble != null) {
1089 mNotificationGroupManager.updateSuppression(
1090 update.selectedBubble.getEntry());
1091 }
Mark Renouf71a3af62019-04-08 15:02:54 -04001092 }
Mark Renouf3bc5b362019-04-05 14:37:59 -04001093
Mark Renouf82a40e62019-05-23 16:16:24 -04001094 // Expanding? Apply this last.
1095 if (update.expandedChanged && update.expanded) {
1096 mStackView.setExpanded(true);
Mark Renouf71a3af62019-04-08 15:02:54 -04001097 }
Mark Renouf3bc5b362019-04-05 14:37:59 -04001098
Beverlyed8aea22020-01-22 16:52:47 -05001099 for (NotifCallback cb : mCallbacks) {
Beverlya53fb0d2020-01-29 15:26:13 -05001100 cb.invalidateNotifications("BubbleData.Listener.applyUpdate");
Beverlyed8aea22020-01-22 16:52:47 -05001101 }
Lyn Han6c40fe72019-05-08 14:06:33 -07001102 updateStack();
Mark Renouf9ba6cea2019-04-17 11:53:50 -04001103
Issei Suzukia8d07312019-06-07 12:56:19 +02001104 if (DEBUG_BUBBLE_CONTROLLER) {
Lyn Hanb58c7562020-01-07 14:29:20 -08001105 Log.d(TAG, "\n[BubbleData] bubbles:");
Lyn Han767d70e2019-12-10 18:02:23 -08001106 Log.d(TAG, BubbleDebugConfig.formatBubblesString(mBubbleData.getBubbles(),
Mark Renouf9ba6cea2019-04-17 11:53:50 -04001107 mBubbleData.getSelectedBubble()));
1108
1109 if (mStackView != null) {
Lyn Hanb58c7562020-01-07 14:29:20 -08001110 Log.d(TAG, "\n[BubbleStackView]");
Lyn Han767d70e2019-12-10 18:02:23 -08001111 Log.d(TAG, BubbleDebugConfig.formatBubblesString(mStackView.getBubblesOnScreen(),
Mark Renouf9ba6cea2019-04-17 11:53:50 -04001112 mStackView.getExpandedBubble()));
1113 }
1114 }
Mark Renouf3bc5b362019-04-05 14:37:59 -04001115 }
1116 };
1117
Mady Mellor3f2efdb2018-11-21 11:30:45 -08001118 /**
Beverlya53fb0d2020-01-29 15:26:13 -05001119 * We intercept notification entries (including group summaries) dismissed by the user when
1120 * there is an active bubble associated with it. We do this so that developers can still
1121 * cancel it (and hence the bubbles associated with it). However, these intercepted
1122 * notifications should then be hidden from the shade since the user has cancelled them, so we
1123 * {@link Bubble#setSuppressNotification}. For the case of suppressed summaries, we also add
1124 * {@link BubbleData#addSummaryToSuppress}.
Beverlyed8aea22020-01-22 16:52:47 -05001125 *
Mady Mellor91b31e62020-01-30 17:40:48 -08001126 * @return true if we want to intercept the dismissal of the entry, else false.
Beverlyed8aea22020-01-22 16:52:47 -05001127 */
Beverlya53fb0d2020-01-29 15:26:13 -05001128 public boolean handleDismissalInterception(NotificationEntry entry) {
Beverlyed8aea22020-01-22 16:52:47 -05001129 if (entry == null) {
1130 return false;
1131 }
Lyn Han2f6e89d2020-04-15 10:01:01 -07001132 if (isSummaryOfBubbles(entry)) {
Beverlya53fb0d2020-01-29 15:26:13 -05001133 handleSummaryDismissalInterception(entry);
Lyn Han2f6e89d2020-04-15 10:01:01 -07001134 } else {
1135 Bubble bubble = mBubbleData.getBubbleInStackWithKey(entry.getKey());
1136 if (bubble == null || !entry.isBubble()) {
1137 bubble = mBubbleData.getOverflowBubbleWithKey(entry.getKey());
1138 }
1139 if (bubble == null) {
1140 return false;
1141 }
Beverlyed8aea22020-01-22 16:52:47 -05001142 bubble.setSuppressNotification(true);
Joshua Tsuji2ed260e2020-03-26 14:26:01 -04001143 bubble.setShowDot(false /* show */);
Beverlyed8aea22020-01-22 16:52:47 -05001144 }
Beverlya53fb0d2020-01-29 15:26:13 -05001145 // Update the shade
1146 for (NotifCallback cb : mCallbacks) {
1147 cb.invalidateNotifications("BubbleController.handleDismissalInterception");
1148 }
1149 return true;
Beverlyed8aea22020-01-22 16:52:47 -05001150 }
1151
Beverlya53fb0d2020-01-29 15:26:13 -05001152 private boolean isSummaryOfBubbles(NotificationEntry entry) {
1153 if (entry == null) {
Beverlyed8aea22020-01-22 16:52:47 -05001154 return false;
1155 }
Beverlya53fb0d2020-01-29 15:26:13 -05001156
1157 String groupKey = entry.getSbn().getGroupKey();
1158 ArrayList<Bubble> bubbleChildren = mBubbleData.getBubblesInGroup(groupKey);
1159 boolean isSuppressedSummary = (mBubbleData.isSummarySuppressed(groupKey)
1160 && mBubbleData.getSummaryKey(groupKey).equals(entry.getKey()));
1161 boolean isSummary = entry.getSbn().getNotification().isGroupSummary();
1162 return (isSuppressedSummary || isSummary)
1163 && bubbleChildren != null
1164 && !bubbleChildren.isEmpty();
1165 }
1166
1167 private void handleSummaryDismissalInterception(NotificationEntry summary) {
1168 // current children in the row:
Kevin Han43077f92020-02-28 12:51:53 -08001169 final List<NotificationEntry> children = summary.getAttachedNotifChildren();
Beverlya53fb0d2020-01-29 15:26:13 -05001170 if (children != null) {
1171 for (int i = 0; i < children.size(); i++) {
1172 NotificationEntry child = children.get(i);
Lyn Han2f6e89d2020-04-15 10:01:01 -07001173 if (mBubbleData.hasAnyBubbleWithKey(child.getKey())) {
Beverlya53fb0d2020-01-29 15:26:13 -05001174 // Suppress the bubbled child
1175 // As far as group manager is concerned, once a child is no longer shown
1176 // in the shade, it is essentially removed.
Lyn Han2f6e89d2020-04-15 10:01:01 -07001177 Bubble bubbleChild = mBubbleData.getAnyBubbleWithkey(child.getKey());
Beverlya53fb0d2020-01-29 15:26:13 -05001178 mNotificationGroupManager.onEntryRemoved(bubbleChild.getEntry());
1179 bubbleChild.setSuppressNotification(true);
Joshua Tsuji2ed260e2020-03-26 14:26:01 -04001180 bubbleChild.setShowDot(false /* show */);
Beverlya53fb0d2020-01-29 15:26:13 -05001181 } else {
1182 // non-bubbled children can be removed
1183 for (NotifCallback cb : mCallbacks) {
1184 cb.removeNotification(child, REASON_GROUP_SUMMARY_CANCELED);
1185 }
1186 }
1187 }
1188 }
1189
1190 // And since all children are removed, remove the summary.
1191 mNotificationGroupManager.onEntryRemoved(summary);
1192
1193 // TODO: (b/145659174) remove references to mSuppressedGroupKeys once fully migrated
1194 mBubbleData.addSummaryToSuppress(summary.getSbn().getGroupKey(),
1195 summary.getKey());
Beverlyed8aea22020-01-22 16:52:47 -05001196 }
1197
1198 /**
Joshua Tsujidd4d9f92019-05-13 13:57:38 -04001199 * Lets any listeners know if bubble state has changed.
Lyn Han6c40fe72019-05-08 14:06:33 -07001200 * Updates the visibility of the bubbles based on current state.
Joshua Tsujid9923e52020-04-29 15:33:01 -04001201 * Does not un-bubble, just hides or un-hides.
Lyn Han6c40fe72019-05-08 14:06:33 -07001202 * Updates stack description for TalkBack focus.
Mady Mellor3f2efdb2018-11-21 11:30:45 -08001203 */
Lyn Han6c40fe72019-05-08 14:06:33 -07001204 public void updateStack() {
Mady Mellor3f2efdb2018-11-21 11:30:45 -08001205 if (mStackView == null) {
1206 return;
Mady Mellord1c78b262018-11-06 18:04:40 -08001207 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -08001208 if (mStatusBarStateListener.getCurrentState() == SHADE && hasBubbles()) {
1209 // Bubbles only appear in unlocked shade
1210 mStackView.setVisibility(hasBubbles() ? VISIBLE : INVISIBLE);
Mady Mellor698d9e82019-08-01 23:11:53 +00001211 } else if (mStackView != null) {
Mady Mellor3f2efdb2018-11-21 11:30:45 -08001212 mStackView.setVisibility(INVISIBLE);
Mady Mellor5549dd22018-11-06 18:07:34 -08001213 }
Lyn Han6c40fe72019-05-08 14:06:33 -07001214
Lyn Han6c40fe72019-05-08 14:06:33 -07001215 mStackView.updateContentDescription();
Mady Mellord1c78b262018-11-06 18:04:40 -08001216 }
1217
1218 /**
Mady Mellor390bff42019-04-05 15:09:01 -07001219 * The display id of the expanded view, if the stack is expanded and not occluded by the
1220 * status bar, otherwise returns {@link Display#INVALID_DISPLAY}.
1221 */
1222 public int getExpandedDisplayId(Context context) {
Joel Galenson4071ddb2019-04-18 13:30:45 -07001223 if (mStackView == null) {
Lyn Han9f66c3b2020-03-05 23:59:29 -08001224 return INVALID_DISPLAY;
Joel Galenson4071ddb2019-04-18 13:30:45 -07001225 }
Issei Suzukicac2a502019-04-16 16:52:50 +02001226 final boolean defaultDisplay = context.getDisplay() != null
Mady Mellor390bff42019-04-05 15:09:01 -07001227 && context.getDisplay().getDisplayId() == DEFAULT_DISPLAY;
Lyn Han9f66c3b2020-03-05 23:59:29 -08001228 final BubbleViewProvider expandedViewProvider = mStackView.getExpandedBubble();
1229 if (defaultDisplay && expandedViewProvider != null && isStackExpanded()
wilsonshihe8321942019-10-18 18:39:46 +08001230 && !mNotificationShadeWindowController.getPanelExpanded()) {
Lyn Han9f66c3b2020-03-05 23:59:29 -08001231 return expandedViewProvider.getDisplayId();
Mady Mellor390bff42019-04-05 15:09:01 -07001232 }
Lyn Han9f66c3b2020-03-05 23:59:29 -08001233 return INVALID_DISPLAY;
Mady Mellor390bff42019-04-05 15:09:01 -07001234 }
1235
Mady Mellorf6e3ac02019-01-29 10:37:52 -08001236 @VisibleForTesting
1237 BubbleStackView getStackView() {
1238 return mStackView;
1239 }
1240
Mady Mellor70cba7bb2019-07-02 15:06:07 -07001241 /**
1242 * Description of current bubble state.
1243 */
1244 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
1245 pw.println("BubbleController state:");
1246 mBubbleData.dump(fd, pw, args);
1247 pw.println();
Joshua Tsuji395bcfe2019-07-02 19:23:23 -04001248 if (mStackView != null) {
1249 mStackView.dump(fd, pw, args);
1250 }
1251 pw.println();
Mady Mellor70cba7bb2019-07-02 15:06:07 -07001252 }
1253
Mady Mellore80930e2019-03-21 16:00:45 -07001254 /**
Mark Renoufcecc77b2019-01-30 16:32:24 -05001255 * This task stack listener is responsible for responding to tasks moved to the front
1256 * which are on the default (main) display. When this happens, expanded bubbles must be
1257 * collapsed so the user may interact with the app which was just moved to the front.
1258 * <p>
1259 * This listener is registered with SystemUI's ActivityManagerWrapper which dispatches
1260 * these calls via a main thread Handler.
1261 */
1262 @MainThread
1263 private class BubbleTaskStackListener extends TaskStackChangeListener {
1264
Mark Renoufcecc77b2019-01-30 16:32:24 -05001265 @Override
Mark Renoufc808f062019-02-07 15:20:37 -05001266 public void onTaskMovedToFront(RunningTaskInfo taskInfo) {
1267 if (mStackView != null && taskInfo.displayId == Display.DEFAULT_DISPLAY) {
Mady Mellor047e24e2019-08-05 11:35:40 -07001268 if (!mStackView.isExpansionAnimating()) {
1269 mBubbleData.setExpanded(false);
1270 }
Mark Renoufcecc77b2019-01-30 16:32:24 -05001271 }
1272 }
1273
Mark Renoufcecc77b2019-01-30 16:32:24 -05001274 @Override
Winson Chunge789ff62020-02-24 14:40:23 -08001275 public void onActivityRestartAttempt(RunningTaskInfo task, boolean homeTaskVisible,
Evan Rosky8d1c24e2020-04-23 09:21:16 -07001276 boolean clearedTask, boolean wasVisible) {
Winson Chunge789ff62020-02-24 14:40:23 -08001277 for (Bubble b : mBubbleData.getBubbles()) {
1278 if (b.getDisplayId() == task.displayId) {
1279 expandStackAndSelectBubble(b.getKey());
1280 return;
1281 }
1282 }
1283 }
1284
1285 @Override
Mark Renoufa12e8762019-03-07 15:43:01 -05001286 public void onActivityLaunchOnSecondaryDisplayRerouted() {
Mark Renoufcecc77b2019-01-30 16:32:24 -05001287 if (mStackView != null) {
Mark Renouf71a3af62019-04-08 15:02:54 -04001288 mBubbleData.setExpanded(false);
Mark Renoufcecc77b2019-01-30 16:32:24 -05001289 }
1290 }
Mark Renouf446251d2019-04-26 10:22:41 -04001291
1292 @Override
1293 public void onBackPressedOnTaskRoot(RunningTaskInfo taskInfo) {
1294 if (mStackView != null && taskInfo.displayId == getExpandedDisplayId(mContext)) {
1295 mBubbleData.setExpanded(false);
1296 }
1297 }
Issei Suzukicac2a502019-04-16 16:52:50 +02001298
1299 @Override
1300 public void onSingleTaskDisplayDrawn(int displayId) {
Lyn Hana0bb02e2020-01-28 17:57:27 -08001301 if (mStackView == null) {
1302 return;
Issei Suzukicac2a502019-04-16 16:52:50 +02001303 }
Lyn Hana0bb02e2020-01-28 17:57:27 -08001304 mStackView.showExpandedViewContents(displayId);
Issei Suzukicac2a502019-04-16 16:52:50 +02001305 }
Issei Suzuki734bc942019-06-05 13:59:52 +02001306
1307 @Override
1308 public void onSingleTaskDisplayEmpty(int displayId) {
Lyn Han9f66c3b2020-03-05 23:59:29 -08001309 final BubbleViewProvider expandedBubble = mStackView != null
Mady Mellor5186b132019-09-16 17:55:48 -07001310 ? mStackView.getExpandedBubble()
1311 : null;
Mady Mellorca184aae2019-09-17 16:07:12 -07001312 int expandedId = expandedBubble != null ? expandedBubble.getDisplayId() : -1;
1313 if (mStackView != null && mStackView.isExpanded() && expandedId == displayId) {
Issei Suzuki734bc942019-06-05 13:59:52 +02001314 mBubbleData.setExpanded(false);
Issei Suzuki734bc942019-06-05 13:59:52 +02001315 }
Mady Mellorca184aae2019-09-17 16:07:12 -07001316 mBubbleData.notifyDisplayEmpty(displayId);
Issei Suzuki734bc942019-06-05 13:59:52 +02001317 }
Mark Renoufcecc77b2019-01-30 16:32:24 -05001318 }
1319
Mady Mellorca0c24c2019-05-16 16:14:32 -07001320 /**
1321 * Whether an intent is properly configured to display in an {@link android.app.ActivityView}.
1322 *
1323 * Keep checks in sync with NotificationManagerService#canLaunchInActivityView. Typically
1324 * that should filter out any invalid bubbles, but should protect SysUI side just in case.
1325 *
1326 * @param context the context to use.
1327 * @param entry the entry to bubble.
1328 */
1329 static boolean canLaunchInActivityView(Context context, NotificationEntry entry) {
1330 PendingIntent intent = entry.getBubbleMetadata() != null
Mady Melloraa9ce172020-03-17 10:34:20 -07001331 ? entry.getBubbleMetadata().getIntent()
Mady Mellorca0c24c2019-05-16 16:14:32 -07001332 : null;
Mady Mellor2ac2d3a2020-01-08 17:18:54 -08001333 if (entry.getBubbleMetadata() != null
1334 && entry.getBubbleMetadata().getShortcutId() != null) {
1335 return true;
1336 }
Mady Mellorca0c24c2019-05-16 16:14:32 -07001337 if (intent == null) {
Mady Mellor7f234902019-10-20 12:06:29 -07001338 Log.w(TAG, "Unable to create bubble -- no intent: " + entry.getKey());
Mady Mellorca0c24c2019-05-16 16:14:32 -07001339 return false;
1340 }
Mady Mellorf3b9fab2019-11-13 17:27:32 -08001341 PackageManager packageManager = StatusBar.getPackageManagerForUser(
1342 context, entry.getSbn().getUser().getIdentifier());
Mady Mellorca0c24c2019-05-16 16:14:32 -07001343 ActivityInfo info =
Mady Mellorf3b9fab2019-11-13 17:27:32 -08001344 intent.getIntent().resolveActivityInfo(packageManager, 0);
Mady Mellorca0c24c2019-05-16 16:14:32 -07001345 if (info == null) {
Mady Mellor7f234902019-10-20 12:06:29 -07001346 Log.w(TAG, "Unable to send as bubble, "
1347 + entry.getKey() + " couldn't find activity info for intent: "
Mady Mellorca0c24c2019-05-16 16:14:32 -07001348 + intent);
1349 return false;
1350 }
1351 if (!ActivityInfo.isResizeableMode(info.resizeMode)) {
Mady Mellor7f234902019-10-20 12:06:29 -07001352 Log.w(TAG, "Unable to send as bubble, "
1353 + entry.getKey() + " activity is not resizable for intent: "
Mady Mellorca0c24c2019-05-16 16:14:32 -07001354 + intent);
1355 return false;
1356 }
Mady Mellorca0c24c2019-05-16 16:14:32 -07001357 return true;
1358 }
1359
Joshua Tsujia19515f2019-02-13 18:02:29 -05001360 /** PinnedStackListener that dispatches IME visibility updates to the stack. */
Hongwei Wang43a752b2019-09-17 20:20:30 +00001361 private class BubblesImeListener extends PinnedStackListenerForwarder.PinnedStackListener {
Joshua Tsujia19515f2019-02-13 18:02:29 -05001362 @Override
Joshua Tsujid9422832019-03-05 13:32:37 -05001363 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) {
Joshua Tsujiff6b0f22020-03-09 14:55:19 -04001364 if (mStackView != null) {
Joshua Tsujid9422832019-03-05 13:32:37 -05001365 mStackView.post(() -> mStackView.onImeVisibilityChanged(imeVisible, imeHeight));
Joshua Tsujia19515f2019-02-13 18:02:29 -05001366 }
1367 }
Joshua Tsujia19515f2019-02-13 18:02:29 -05001368 }
Mady Mellorc3d6f7d2018-11-07 09:36:56 -08001369}