blob: ef8041bbb9f989a4146bd77b27b9aa0fa66fcfe4 [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 Mellor22f2f072019-04-18 13:26:18 -070019import static android.app.Notification.FLAG_AUTOGROUP_SUMMARY;
Mady Mellor3a0a1b42019-05-23 06:40:21 -070020import static android.app.Notification.FLAG_BUBBLE;
Mady Mellorc2ff0112019-03-28 14:18:06 -070021import static android.service.notification.NotificationListenerService.REASON_APP_CANCEL;
22import static android.service.notification.NotificationListenerService.REASON_APP_CANCEL_ALL;
23import static android.service.notification.NotificationListenerService.REASON_CANCEL;
24import static android.service.notification.NotificationListenerService.REASON_CANCEL_ALL;
Mady Mellor22f2f072019-04-18 13:26:18 -070025import static android.service.notification.NotificationListenerService.REASON_CLICK;
26import static android.service.notification.NotificationListenerService.REASON_GROUP_SUMMARY_CANCELED;
Mady Mellor390bff42019-04-05 15:09:01 -070027import static android.view.Display.DEFAULT_DISPLAY;
28import static android.view.Display.INVALID_DISPLAY;
Mady Mellord1c78b262018-11-06 18:04:40 -080029import static android.view.View.INVISIBLE;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080030import static android.view.View.VISIBLE;
Joshua Tsujib1a796b2019-01-16 15:43:12 -080031import static android.view.ViewGroup.LayoutParams.MATCH_PARENT;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080032
Issei Suzukia8d07312019-06-07 12:56:19 +020033import static com.android.systemui.bubbles.BubbleDebugConfig.DEBUG_BUBBLE_CONTROLLER;
Mady Mellorff076eb2019-11-13 10:12:06 -080034import static com.android.systemui.bubbles.BubbleDebugConfig.DEBUG_EXPERIMENTS;
Issei Suzukia8d07312019-06-07 12:56:19 +020035import 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;
Aran Inkaa4dfa72019-11-18 16:49:07 -050047import android.app.Notification;
Mady Mellor66efd5e2019-05-15 13:38:11 -070048import android.app.NotificationManager;
Mady Mellorca0c24c2019-05-16 16:14:32 -070049import android.app.PendingIntent;
Aran Inkaa4dfa72019-11-18 16:49:07 -050050import android.app.RemoteInput;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080051import android.content.Context;
Aran Inkaa4dfa72019-11-18 16:49:07 -050052import android.content.Intent;
Mady Mellorca0c24c2019-05-16 16:14:32 -070053import android.content.pm.ActivityInfo;
Mady Mellorf3b9fab2019-11-13 17:27:32 -080054import android.content.pm.PackageManager;
Aran Inkaa4dfa72019-11-18 16:49:07 -050055import android.content.pm.ShortcutManager;
Joshua Tsujif418f9e2019-04-04 17:09:53 -040056import android.content.res.Configuration;
Mady Mellord1c78b262018-11-06 18:04:40 -080057import android.graphics.Rect;
Aran Inkaa4dfa72019-11-18 16:49:07 -050058import android.net.Uri;
59import 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;
Mark Renoufbbcf07f2019-05-09 10:42:43 -040062import android.service.notification.NotificationListenerService.RankingMap;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -040063import android.service.notification.ZenModeConfig;
Mark Renoufc19b4732019-06-26 12:08:33 -040064import android.util.ArraySet;
Mark Renouf9ba6cea2019-04-17 11:53:50 -040065import android.util.Log;
Mark Renouf82a40e62019-05-23 16:16:24 -040066import android.util.Pair;
Mark Renoufc19b4732019-06-26 12:08:33 -040067import android.util.SparseSetArray;
Mark Renoufcecc77b2019-01-30 16:32:24 -050068import android.view.Display;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080069import android.view.ViewGroup;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080070import android.widget.FrameLayout;
71
Mark Renouf08bc42a2019-03-07 13:01:59 -050072import androidx.annotation.IntDef;
Mark Renouf658c6bc2019-01-30 10:26:54 -050073import androidx.annotation.MainThread;
Joshua Tsujic650a142019-05-22 11:31:19 -040074import androidx.annotation.Nullable;
Mark Renouf658c6bc2019-01-30 10:26:54 -050075
Mady Mellorebdbbb92018-11-15 14:36:48 -080076import com.android.internal.annotations.VisibleForTesting;
Mady Mellora54e9fa2019-04-18 13:26:18 -070077import com.android.internal.statusbar.IStatusBarService;
Aran Inkaa4dfa72019-11-18 16:49:07 -050078import com.android.internal.util.ScreenshotHelper;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080079import com.android.systemui.R;
Beverly8fdb5332019-02-04 14:29:49 -050080import com.android.systemui.plugins.statusbar.StatusBarStateController;
Mark Renoufcecc77b2019-01-30 16:32:24 -050081import com.android.systemui.shared.system.ActivityManagerWrapper;
Hongwei Wang43a752b2019-09-17 20:20:30 +000082import com.android.systemui.shared.system.PinnedStackListenerForwarder;
Mark Renoufcecc77b2019-01-30 16:32:24 -050083import com.android.systemui.shared.system.TaskStackChangeListener;
Joshua Tsujia19515f2019-02-13 18:02:29 -050084import com.android.systemui.shared.system.WindowManagerWrapper;
Mark Renoufc19b4732019-06-26 12:08:33 -040085import com.android.systemui.statusbar.NotificationLockscreenUserManager;
Mady Mellorc2ff0112019-03-28 14:18:06 -070086import com.android.systemui.statusbar.NotificationRemoveInterceptor;
Ned Burns01e38212019-01-03 16:32:52 -050087import com.android.systemui.statusbar.notification.NotificationEntryListener;
88import com.android.systemui.statusbar.notification.NotificationEntryManager;
Mady Mellor3f2efdb2018-11-21 11:30:45 -080089import com.android.systemui.statusbar.notification.NotificationInterruptionStateProvider;
Ned Burnsf81c4c42019-01-07 14:10:43 -050090import com.android.systemui.statusbar.notification.collection.NotificationEntry;
Mady Mellor22f2f072019-04-18 13:26:18 -070091import com.android.systemui.statusbar.phone.NotificationGroupManager;
Mady Mellor7f234902019-10-20 12:06:29 -070092import com.android.systemui.statusbar.phone.ShadeController;
Mady Mellorf3b9fab2019-11-13 17:27:32 -080093import com.android.systemui.statusbar.phone.StatusBar;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080094import com.android.systemui.statusbar.phone.StatusBarWindowController;
Lyn Hanf1c9b8b2019-03-14 16:49:48 -070095import com.android.systemui.statusbar.policy.ConfigurationController;
Aran Inkaa4dfa72019-11-18 16:49:07 -050096import com.android.systemui.statusbar.policy.RemoteInputUriController;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -040097import com.android.systemui.statusbar.policy.ZenModeController;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080098
Mady Mellor70cba7bb2019-07-02 15:06:07 -070099import java.io.FileDescriptor;
100import java.io.PrintWriter;
Mark Renouf08bc42a2019-03-07 13:01:59 -0500101import java.lang.annotation.Retention;
Mark Renoufba5ab512019-05-02 15:21:01 -0400102import java.lang.annotation.Target;
Mady Mellor22f2f072019-04-18 13:26:18 -0700103import java.util.ArrayList;
Aran Inkaa4dfa72019-11-18 16:49:07 -0500104import java.util.HashMap;
Mady Mellorff076eb2019-11-13 10:12:06 -0800105import java.util.HashSet;
Aran Inkaa4dfa72019-11-18 16:49:07 -0500106import java.util.function.Consumer;
Mark Renouf08bc42a2019-03-07 13:01:59 -0500107
Jason Monk27d01a622018-12-10 15:57:09 -0500108import javax.inject.Inject;
109import javax.inject.Singleton;
110
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800111/**
112 * Bubbles are a special type of content that can "float" on top of other apps or System UI.
113 * Bubbles can be expanded to show more content.
114 *
115 * The controller manages addition, removal, and visible state of bubbles on screen.
116 */
Jason Monk27d01a622018-12-10 15:57:09 -0500117@Singleton
Mark Renouf71a3af62019-04-08 15:02:54 -0400118public class BubbleController implements ConfigurationController.ConfigurationListener {
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800119
Issei Suzukia8d07312019-06-07 12:56:19 +0200120 private static final String TAG = TAG_WITH_CLASS_NAME ? "BubbleController" : TAG_BUBBLES;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800121
Mark Renouf08bc42a2019-03-07 13:01:59 -0500122 @Retention(SOURCE)
123 @IntDef({DISMISS_USER_GESTURE, DISMISS_AGED, DISMISS_TASK_FINISHED, DISMISS_BLOCKED,
Mark Renoufc19b4732019-06-26 12:08:33 -0400124 DISMISS_NOTIF_CANCEL, DISMISS_ACCESSIBILITY_ACTION, DISMISS_NO_LONGER_BUBBLE,
Mady Mellor8454ddf2019-08-15 11:16:23 -0700125 DISMISS_USER_CHANGED, DISMISS_GROUP_CANCELLED, DISMISS_INVALID_INTENT})
Mark Renoufba5ab512019-05-02 15:21:01 -0400126 @Target({FIELD, LOCAL_VARIABLE, PARAMETER})
Mark Renouf08bc42a2019-03-07 13:01:59 -0500127 @interface DismissReason {}
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700128
Mark Renouf08bc42a2019-03-07 13:01:59 -0500129 static final int DISMISS_USER_GESTURE = 1;
130 static final int DISMISS_AGED = 2;
131 static final int DISMISS_TASK_FINISHED = 3;
132 static final int DISMISS_BLOCKED = 4;
133 static final int DISMISS_NOTIF_CANCEL = 5;
134 static final int DISMISS_ACCESSIBILITY_ACTION = 6;
Mady Melloraa8fef22019-04-11 13:36:40 -0700135 static final int DISMISS_NO_LONGER_BUBBLE = 7;
Mark Renoufc19b4732019-06-26 12:08:33 -0400136 static final int DISMISS_USER_CHANGED = 8;
Mady Mellor22f2f072019-04-18 13:26:18 -0700137 static final int DISMISS_GROUP_CANCELLED = 9;
Mady Mellor8454ddf2019-08-15 11:16:23 -0700138 static final int DISMISS_INVALID_INTENT = 10;
Mark Renouf08bc42a2019-03-07 13:01:59 -0500139
Ned Burns01e38212019-01-03 16:32:52 -0500140 private final Context mContext;
141 private final NotificationEntryManager mNotificationEntryManager;
Mark Renoufcecc77b2019-01-30 16:32:24 -0500142 private final BubbleTaskStackListener mTaskStackListener;
Mady Mellord1c78b262018-11-06 18:04:40 -0800143 private BubbleStateChangeListener mStateChangeListener;
Mady Mellorcd9b1302018-11-06 18:08:04 -0800144 private BubbleExpandListener mExpandListener;
Issei Suzukic0387542019-03-08 17:31:14 +0100145 @Nullable private BubbleStackView.SurfaceSynchronizer mSurfaceSynchronizer;
Mady Mellor22f2f072019-04-18 13:26:18 -0700146 private final NotificationGroupManager mNotificationGroupManager;
Heemin Seogba6337f2019-12-10 15:34:37 -0800147 private final ShadeController mShadeController;
Aran Inkaa4dfa72019-11-18 16:49:07 -0500148 private final RemoteInputUriController mRemoteInputUriController;
149 private Handler mHandler = new Handler() {};
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800150
Mady Mellor3dff9e62019-02-05 18:12:53 -0800151 private BubbleData mBubbleData;
Joshua Tsujic650a142019-05-22 11:31:19 -0400152 @Nullable private BubbleStackView mStackView;
Mady Mellor247ca2c2019-12-02 16:18:59 -0800153 private BubbleIconFactory mBubbleIconFactory;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800154
Mark Renoufc19b4732019-06-26 12:08:33 -0400155 // Tracks the id of the current (foreground) user.
156 private int mCurrentUserId;
157 // Saves notification keys of active bubbles when users are switched.
158 private final SparseSetArray<String> mSavedBubbleKeysPerUser;
159
Mady Mellorff076eb2019-11-13 10:12:06 -0800160 // Saves notification keys of user created "fake" bubbles so that we can allow notifications
161 // like these to bubble by default. Doesn't persist across reboots, not a long-term solution.
162 private final HashSet<String> mUserCreatedBubbles;
Mady Mellor3b86a4f2019-12-11 13:15:41 -0800163 // If we're auto-bubbling bubbles via a whitelist, we need to track which notifs from that app
164 // have been "demoted" back to a notification so that we don't auto-bubbles those again.
165 // Doesn't persist across reboots, not a long-term solution.
166 private final HashSet<String> mUserBlockedBubbles;
Mady Mellorff076eb2019-11-13 10:12:06 -0800167
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800168 // Bubbles get added to the status bar view
Ned Burns01e38212019-01-03 16:32:52 -0500169 private final StatusBarWindowController mStatusBarWindowController;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400170 private final ZenModeController mZenModeController;
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800171 private StatusBarStateListener mStatusBarStateListener;
Aran Inkaa4dfa72019-11-18 16:49:07 -0500172 private final ScreenshotHelper mScreenshotHelper;
173
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800174
Mady Melloraa8fef22019-04-11 13:36:40 -0700175 private final NotificationInterruptionStateProvider mNotificationInterruptionStateProvider;
Mady Mellora54e9fa2019-04-18 13:26:18 -0700176 private IStatusBarService mBarService;
Mady Mellorb4991e62019-01-10 15:14:51 -0800177
Mady Mellord1c78b262018-11-06 18:04:40 -0800178 // Used for determining view rect for touch interaction
179 private Rect mTempRect = new Rect();
180
Mark Renoufc19b4732019-06-26 12:08:33 -0400181 // Listens to user switch so bubbles can be saved and restored.
182 private final NotificationLockscreenUserManager mNotifUserManager;
183
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400184 /** Last known orientation, used to detect orientation changes in {@link #onConfigChanged}. */
185 private int mOrientation = Configuration.ORIENTATION_UNDEFINED;
186
Mady Mellor3df7ab02019-12-09 15:07:10 -0800187 private boolean mInflateSynchronously;
188
Mady Mellor5549dd22018-11-06 18:07:34 -0800189 /**
Mady Mellord1c78b262018-11-06 18:04:40 -0800190 * Listener to be notified when some states of the bubbles change.
191 */
192 public interface BubbleStateChangeListener {
193 /**
194 * Called when the stack has bubbles or no longer has bubbles.
195 */
196 void onHasBubblesChanged(boolean hasBubbles);
197 }
198
Mady Mellorcd9b1302018-11-06 18:08:04 -0800199 /**
200 * Listener to find out about stack expansion / collapse events.
201 */
202 public interface BubbleExpandListener {
203 /**
204 * Called when the expansion state of the bubble stack changes.
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700205 *
Mady Mellorcd9b1302018-11-06 18:08:04 -0800206 * @param isExpanding whether it's expanding or collapsing
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800207 * @param key the notification key associated with bubble being expanded
Mady Mellorcd9b1302018-11-06 18:08:04 -0800208 */
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800209 void onBubbleExpandChanged(boolean isExpanding, String key);
210 }
211
212 /**
Aran Inkaa4dfa72019-11-18 16:49:07 -0500213 * Listener for handling bubble screenshot events.
214 */
215 public interface BubbleScreenshotListener {
216 /**
217 * Called to trigger taking a screenshot and sending the result to a bubble.
218 */
219 void onBubbleScreenshot(Bubble bubble);
220 }
221
222 /**
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800223 * Listens for the current state of the status bar and updates the visibility state
224 * of bubbles as needed.
225 */
226 private class StatusBarStateListener implements StatusBarStateController.StateListener {
227 private int mState;
228 /**
229 * Returns the current status bar state.
230 */
231 public int getCurrentState() {
232 return mState;
233 }
234
235 @Override
236 public void onStateChanged(int newState) {
237 mState = newState;
Mark Renouf71a3af62019-04-08 15:02:54 -0400238 boolean shouldCollapse = (mState != SHADE);
239 if (shouldCollapse) {
240 collapseStack();
241 }
Lyn Han6c40fe72019-05-08 14:06:33 -0700242 updateStack();
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800243 }
Mady Mellorcd9b1302018-11-06 18:08:04 -0800244 }
245
Jason Monk27d01a622018-12-10 15:57:09 -0500246 @Inject
Mady Mellor7f234902019-10-20 12:06:29 -0700247 public BubbleController(Context context,
248 StatusBarWindowController statusBarWindowController,
249 StatusBarStateController statusBarStateController,
Heemin Seogba6337f2019-12-10 15:34:37 -0800250 ShadeController shadeController,
Mady Mellor7f234902019-10-20 12:06:29 -0700251 BubbleData data,
Mady Melloraa8fef22019-04-11 13:36:40 -0700252 ConfigurationController configurationController,
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400253 NotificationInterruptionStateProvider interruptionStateProvider,
Mark Renoufc19b4732019-06-26 12:08:33 -0400254 ZenModeController zenModeController,
Mady Mellor22f2f072019-04-18 13:26:18 -0700255 NotificationLockscreenUserManager notifUserManager,
Mady Mellor7f234902019-10-20 12:06:29 -0700256 NotificationGroupManager groupManager,
Aran Inkaa4dfa72019-11-18 16:49:07 -0500257 NotificationEntryManager entryManager,
258 RemoteInputUriController remoteInputUriController) {
Mady Mellor7f234902019-10-20 12:06:29 -0700259 this(context, statusBarWindowController, statusBarStateController, shadeController,
260 data, null /* synchronizer */, configurationController, interruptionStateProvider,
Aran Inkaa4dfa72019-11-18 16:49:07 -0500261 zenModeController, notifUserManager, groupManager, entryManager,
262 remoteInputUriController);
Mady Mellor7f234902019-10-20 12:06:29 -0700263 }
264
265 public BubbleController(Context context,
266 StatusBarWindowController statusBarWindowController,
267 StatusBarStateController statusBarStateController,
Heemin Seogba6337f2019-12-10 15:34:37 -0800268 ShadeController shadeController,
Mady Mellor7f234902019-10-20 12:06:29 -0700269 BubbleData data,
270 @Nullable BubbleStackView.SurfaceSynchronizer synchronizer,
271 ConfigurationController configurationController,
272 NotificationInterruptionStateProvider interruptionStateProvider,
273 ZenModeController zenModeController,
274 NotificationLockscreenUserManager notifUserManager,
275 NotificationGroupManager groupManager,
Aran Inkaa4dfa72019-11-18 16:49:07 -0500276 NotificationEntryManager entryManager,
277 RemoteInputUriController remoteInputUriController) {
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800278 mContext = context;
Heemin Seogba6337f2019-12-10 15:34:37 -0800279 mShadeController = shadeController;
Mady Melloraa8fef22019-04-11 13:36:40 -0700280 mNotificationInterruptionStateProvider = interruptionStateProvider;
Mark Renoufc19b4732019-06-26 12:08:33 -0400281 mNotifUserManager = notifUserManager;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400282 mZenModeController = zenModeController;
Aran Inkaa4dfa72019-11-18 16:49:07 -0500283 mRemoteInputUriController = remoteInputUriController;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400284 mZenModeController.addCallback(new ZenModeController.Callback() {
285 @Override
286 public void onZenChanged(int zen) {
Mady Mellorb8aaf972019-11-26 10:28:00 -0800287 for (Bubble b : mBubbleData.getBubbles()) {
288 b.setShowDot(b.showInShade(), true /* animate */);
Mady Mellordf48d0a2019-06-25 18:26:46 -0700289 }
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400290 }
291
292 @Override
293 public void onConfigChanged(ZenModeConfig config) {
Mady Mellorb8aaf972019-11-26 10:28:00 -0800294 for (Bubble b : mBubbleData.getBubbles()) {
295 b.setShowDot(b.showInShade(), true /* animate */);
Mady Mellordf48d0a2019-06-25 18:26:46 -0700296 }
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400297 }
298 });
Mady Melloraa8fef22019-04-11 13:36:40 -0700299
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700300 configurationController.addCallback(this /* configurationListener */);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800301
Mark Renouf9ba6cea2019-04-17 11:53:50 -0400302 mBubbleData = data;
303 mBubbleData.setListener(mBubbleDataListener);
304
Mady Mellor7f234902019-10-20 12:06:29 -0700305 mNotificationEntryManager = entryManager;
Ned Burns01e38212019-01-03 16:32:52 -0500306 mNotificationEntryManager.addNotificationEntryListener(mEntryListener);
Mady Mellorc2ff0112019-03-28 14:18:06 -0700307 mNotificationEntryManager.setNotificationRemoveInterceptor(mRemoveInterceptor);
Mady Mellor22f2f072019-04-18 13:26:18 -0700308 mNotificationGroupManager = groupManager;
Mady Mellor740d85d2019-07-09 15:26:47 -0700309 mNotificationGroupManager.addOnGroupChangeListener(
310 new NotificationGroupManager.OnGroupChangeListener() {
311 @Override
312 public void onGroupSuppressionChanged(
313 NotificationGroupManager.NotificationGroup group,
314 boolean suppressed) {
315 // More notifications could be added causing summary to no longer
316 // be suppressed -- in this case need to remove the key.
317 final String groupKey = group.summary != null
Ned Burns00b4b2d2019-10-17 22:09:27 -0400318 ? group.summary.getSbn().getGroupKey()
Mady Mellor740d85d2019-07-09 15:26:47 -0700319 : null;
320 if (!suppressed && groupKey != null
321 && mBubbleData.isSummarySuppressed(groupKey)) {
322 mBubbleData.removeSuppressedSummary(groupKey);
323 }
324 }
325 });
Mady Mellorb4991e62019-01-10 15:14:51 -0800326
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800327 mStatusBarWindowController = statusBarWindowController;
328 mStatusBarStateListener = new StatusBarStateListener();
Mady Mellor7f234902019-10-20 12:06:29 -0700329 statusBarStateController.addCallback(mStatusBarStateListener);
Mark Renoufcecc77b2019-01-30 16:32:24 -0500330
Mark Renoufcecc77b2019-01-30 16:32:24 -0500331 mTaskStackListener = new BubbleTaskStackListener();
332 ActivityManagerWrapper.getInstance().registerTaskStackListener(mTaskStackListener);
Mady Mellor3dff9e62019-02-05 18:12:53 -0800333
Joshua Tsujia19515f2019-02-13 18:02:29 -0500334 try {
335 WindowManagerWrapper.getInstance().addPinnedStackListener(new BubblesImeListener());
336 } catch (RemoteException e) {
337 e.printStackTrace();
338 }
Issei Suzukic0387542019-03-08 17:31:14 +0100339 mSurfaceSynchronizer = synchronizer;
Mady Mellora54e9fa2019-04-18 13:26:18 -0700340
341 mBarService = IStatusBarService.Stub.asInterface(
342 ServiceManager.getService(Context.STATUS_BAR_SERVICE));
Mark Renoufc19b4732019-06-26 12:08:33 -0400343
344 mSavedBubbleKeysPerUser = new SparseSetArray<>();
345 mCurrentUserId = mNotifUserManager.getCurrentUserId();
346 mNotifUserManager.addUserChangedListener(
347 newUserId -> {
348 saveBubbles(mCurrentUserId);
349 mBubbleData.dismissAll(DISMISS_USER_CHANGED);
350 restoreBubbles(newUserId);
351 mCurrentUserId = newUserId;
352 });
Mady Mellorff076eb2019-11-13 10:12:06 -0800353
354 mUserCreatedBubbles = new HashSet<>();
Mady Mellor3b86a4f2019-12-11 13:15:41 -0800355 mUserBlockedBubbles = new HashSet<>();
Aran Inkaa4dfa72019-11-18 16:49:07 -0500356
357 mScreenshotHelper = new ScreenshotHelper(context);
Mady Mellor247ca2c2019-12-02 16:18:59 -0800358 mBubbleIconFactory = new BubbleIconFactory(context);
Mady Mellor5549dd22018-11-06 18:07:34 -0800359 }
360
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400361 /**
Mady Mellor3df7ab02019-12-09 15:07:10 -0800362 * Sets whether to perform inflation on the same thread as the caller. This method should only
363 * be used in tests, not in production.
364 */
365 @VisibleForTesting
366 void setInflateSynchronously(boolean inflateSynchronously) {
367 mInflateSynchronously = inflateSynchronously;
368 }
369
370 /**
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400371 * BubbleStackView is lazily created by this method the first time a Bubble is added. This
372 * method initializes the stack view and adds it to the StatusBar just above the scrim.
373 */
374 private void ensureStackViewCreated() {
375 if (mStackView == null) {
376 mStackView = new BubbleStackView(mContext, mBubbleData, mSurfaceSynchronizer);
377 ViewGroup sbv = mStatusBarWindowController.getStatusBarView();
Lyn Hanbde48202019-05-29 19:18:29 -0700378 int bubbleScrimIndex = sbv.indexOfChild(sbv.findViewById(R.id.scrim_for_bubble));
379 int stackIndex = bubbleScrimIndex + 1; // Show stack above bubble scrim.
380 sbv.addView(mStackView, stackIndex,
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400381 new FrameLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT));
382 if (mExpandListener != null) {
383 mStackView.setExpandListener(mExpandListener);
384 }
Aran Inkaa4dfa72019-11-18 16:49:07 -0500385 if (mBubbleScreenshotListener != null) {
386 mStackView.setBubbleScreenshotListener(mBubbleScreenshotListener);
387 }
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400388 }
389 }
390
Mark Renoufc19b4732019-06-26 12:08:33 -0400391 /**
392 * Records the notification key for any active bubbles. These are used to restore active
393 * bubbles when the user returns to the foreground.
394 *
395 * @param userId the id of the user
396 */
397 private void saveBubbles(@UserIdInt int userId) {
398 // First clear any existing keys that might be stored.
399 mSavedBubbleKeysPerUser.remove(userId);
400 // Add in all active bubbles for the current user.
401 for (Bubble bubble: mBubbleData.getBubbles()) {
402 mSavedBubbleKeysPerUser.add(userId, bubble.getKey());
403 }
404 }
405
406 /**
407 * Promotes existing notifications to Bubbles if they were previously bubbles.
408 *
409 * @param userId the id of the user
410 */
411 private void restoreBubbles(@UserIdInt int userId) {
Mark Renoufc19b4732019-06-26 12:08:33 -0400412 ArraySet<String> savedBubbleKeys = mSavedBubbleKeysPerUser.get(userId);
413 if (savedBubbleKeys == null) {
414 // There were no bubbles saved for this used.
415 return;
416 }
Evan Laird181de622019-10-24 09:53:02 -0400417 for (NotificationEntry e :
418 mNotificationEntryManager.getActiveNotificationsForCurrentUser()) {
Ned Burns00b4b2d2019-10-17 22:09:27 -0400419 if (savedBubbleKeys.contains(e.getKey())
Mark Renoufc19b4732019-06-26 12:08:33 -0400420 && mNotificationInterruptionStateProvider.shouldBubbleUp(e)
421 && canLaunchInActivityView(mContext, e)) {
422 updateBubble(e, /* suppressFlyout= */ true);
423 }
424 }
425 // Finally, remove the entries for this user now that bubbles are restored.
426 mSavedBubbleKeysPerUser.remove(mCurrentUserId);
427 }
428
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700429 @Override
430 public void onUiModeChanged() {
Mady Mellor247ca2c2019-12-02 16:18:59 -0800431 updateForThemeChanges();
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700432 }
433
434 @Override
435 public void onOverlayChanged() {
Mady Mellor247ca2c2019-12-02 16:18:59 -0800436 updateForThemeChanges();
437 }
438
439 private void updateForThemeChanges() {
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700440 if (mStackView != null) {
Lyn Han02cca812019-04-02 16:27:32 -0700441 mStackView.onThemeChanged();
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700442 }
Mady Mellor3df7ab02019-12-09 15:07:10 -0800443 mBubbleIconFactory = new BubbleIconFactory(mContext);
444 for (Bubble b: mBubbleData.getBubbles()) {
445 // Reload each bubble
446 b.inflate(null /* callback */, mContext, mStackView, mBubbleIconFactory);
447 }
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700448 }
449
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400450 @Override
451 public void onConfigChanged(Configuration newConfig) {
452 if (mStackView != null && newConfig != null && newConfig.orientation != mOrientation) {
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400453 mOrientation = newConfig.orientation;
Lyn Hanf4730312019-06-18 11:18:58 -0700454 mStackView.onOrientationChanged(newConfig.orientation);
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400455 }
456 }
457
Mady Mellor5549dd22018-11-06 18:07:34 -0800458 /**
Mady Mellord1c78b262018-11-06 18:04:40 -0800459 * Set a listener to be notified when some states of the bubbles change.
460 */
461 public void setBubbleStateChangeListener(BubbleStateChangeListener listener) {
462 mStateChangeListener = listener;
463 }
464
465 /**
Mady Mellorcd9b1302018-11-06 18:08:04 -0800466 * Set a listener to be notified of bubble expand events.
467 */
468 public void setExpandListener(BubbleExpandListener listener) {
Issei Suzukiac9fcb72019-02-04 17:45:57 +0100469 mExpandListener = ((isExpanding, key) -> {
470 if (listener != null) {
471 listener.onBubbleExpandChanged(isExpanding, key);
472 }
473 mStatusBarWindowController.setBubbleExpanded(isExpanding);
474 });
Mady Mellorcd9b1302018-11-06 18:08:04 -0800475 if (mStackView != null) {
476 mStackView.setExpandListener(mExpandListener);
477 }
478 }
479
480 /**
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800481 * Whether or not there are bubbles present, regardless of them being visible on the
482 * screen (e.g. if on AOD).
483 */
484 public boolean hasBubbles() {
Mady Mellor3dff9e62019-02-05 18:12:53 -0800485 if (mStackView == null) {
486 return false;
487 }
Mark Renouf71a3af62019-04-08 15:02:54 -0400488 return mBubbleData.hasBubbles();
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800489 }
490
491 /**
492 * Whether the stack of bubbles is expanded or not.
493 */
494 public boolean isStackExpanded() {
Mark Renouf71a3af62019-04-08 15:02:54 -0400495 return mBubbleData.isExpanded();
496 }
497
498 /**
499 * Tell the stack of bubbles to expand.
500 */
501 public void expandStack() {
502 mBubbleData.setExpanded(true);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800503 }
504
505 /**
506 * Tell the stack of bubbles to collapse.
507 */
508 public void collapseStack() {
Mark Renouf71a3af62019-04-08 15:02:54 -0400509 mBubbleData.setExpanded(false /* expanded */);
510 }
511
Mady Mellorce23c462019-06-17 17:30:07 -0700512 /**
Mady Mellore28fe102019-07-09 15:33:32 -0700513 * True if either:
514 * (1) There is a bubble associated with the provided key and if its notification is hidden
515 * from the shade.
516 * (2) There is a group summary associated with the provided key that is hidden from the shade
517 * because it has been dismissed but still has child bubbles active.
Mady Mellorce23c462019-06-17 17:30:07 -0700518 *
Mady Mellore28fe102019-07-09 15:33:32 -0700519 * False otherwise.
Mady Mellorce23c462019-06-17 17:30:07 -0700520 */
521 public boolean isBubbleNotificationSuppressedFromShade(String key) {
Mady Mellore28fe102019-07-09 15:33:32 -0700522 boolean isBubbleAndSuppressed = mBubbleData.hasBubbleWithKey(key)
Mady Mellorb8aaf972019-11-26 10:28:00 -0800523 && !mBubbleData.getBubbleWithKey(key).showInShade();
Evan Laird181de622019-10-24 09:53:02 -0400524 NotificationEntry entry = mNotificationEntryManager.getActiveNotificationUnfiltered(key);
Ned Burns00b4b2d2019-10-17 22:09:27 -0400525 String groupKey = entry != null ? entry.getSbn().getGroupKey() : null;
Mady Mellore28fe102019-07-09 15:33:32 -0700526 boolean isSuppressedSummary = mBubbleData.isSummarySuppressed(groupKey);
Mady Mellore4348272019-07-29 17:43:36 -0700527 boolean isSummary = key.equals(mBubbleData.getSummaryKey(groupKey));
528 return (isSummary && isSuppressedSummary) || isBubbleAndSuppressed;
Mady Mellorce23c462019-06-17 17:30:07 -0700529 }
530
Mark Renouf71a3af62019-04-08 15:02:54 -0400531 @VisibleForTesting
532 void selectBubble(String key) {
533 Bubble bubble = mBubbleData.getBubbleWithKey(key);
Mady Mellor247ca2c2019-12-02 16:18:59 -0800534 mBubbleData.setSelectedBubble(bubble);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800535 }
536
537 /**
Mark Renouffec45da2019-03-13 13:24:27 -0400538 * Request the stack expand if needed, then select the specified Bubble as current.
539 *
540 * @param notificationKey the notification key for the bubble to be selected
541 */
542 public void expandStackAndSelectBubble(String notificationKey) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400543 Bubble bubble = mBubbleData.getBubbleWithKey(notificationKey);
544 if (bubble != null) {
545 mBubbleData.setSelectedBubble(bubble);
546 mBubbleData.setExpanded(true);
Mark Renouffec45da2019-03-13 13:24:27 -0400547 }
548 }
549
550 /**
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800551 * Tell the stack of bubbles to be dismissed, this will remove all of the bubbles in the stack.
552 */
Mark Renouf08bc42a2019-03-07 13:01:59 -0500553 void dismissStack(@DismissReason int reason) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400554 mBubbleData.dismissAll(reason);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800555 }
556
557 /**
Mark Renouf041d7262019-02-06 12:09:41 -0500558 * Directs a back gesture at the bubble stack. When opened, the current expanded bubble
559 * is forwarded a back key down/up pair.
560 */
561 public void performBackPressIfNeeded() {
562 if (mStackView != null) {
563 mStackView.performBackPressIfNeeded();
564 }
565 }
566
567 /**
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800568 * Adds or updates a bubble associated with the provided notification entry.
569 *
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400570 * @param notif the notification associated with this bubble.
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800571 */
Mark Renouff97ed462019-04-05 13:46:24 -0400572 void updateBubble(NotificationEntry notif) {
Mady Mellor7f234902019-10-20 12:06:29 -0700573 updateBubble(notif, false /* suppressFlyout */);
Mark Renoufc19b4732019-06-26 12:08:33 -0400574 }
575
576 void updateBubble(NotificationEntry notif, boolean suppressFlyout) {
Mady Mellor7f234902019-10-20 12:06:29 -0700577 updateBubble(notif, suppressFlyout, true /* showInShade */);
578 }
579
580 void updateBubble(NotificationEntry notif, boolean suppressFlyout, boolean showInShade) {
Mady Mellor3df7ab02019-12-09 15:07:10 -0800581 if (mStackView == null) {
582 // Lazy init stack view when a bubble is created
583 ensureStackViewCreated();
584 }
Mady Mellor66efd5e2019-05-15 13:38:11 -0700585 // If this is an interruptive notif, mark that it's interrupted
Ned Burns60e94592019-09-06 14:47:25 -0400586 if (notif.getImportance() >= NotificationManager.IMPORTANCE_HIGH) {
Mady Mellor66efd5e2019-05-15 13:38:11 -0700587 notif.setInterruption();
588 }
Mady Mellor3df7ab02019-12-09 15:07:10 -0800589 Bubble bubble = mBubbleData.getOrCreateBubble(notif);
590 bubble.setInflateSynchronously(mInflateSynchronously);
591 bubble.inflate(
592 b -> mBubbleData.notificationEntryUpdated(b, suppressFlyout, showInShade),
593 mContext, mStackView, mBubbleIconFactory);
Mady Mellor7f234902019-10-20 12:06:29 -0700594 }
595
596 /**
597 * Called when a user has indicated that an active notification should be shown as a bubble.
598 * <p>
599 * This method will collapse the shade, create the bubble without a flyout or dot, and suppress
600 * the notification from appearing in the shade.
601 *
602 * @param entry the notification to show as a bubble.
603 */
604 public void onUserCreatedBubbleFromNotification(NotificationEntry entry) {
Mady Mellorff076eb2019-11-13 10:12:06 -0800605 if (DEBUG_EXPERIMENTS || DEBUG_BUBBLE_CONTROLLER) {
606 Log.d(TAG, "onUserCreatedBubble: " + entry.getKey());
607 }
Heemin Seogba6337f2019-12-10 15:34:37 -0800608 mShadeController.collapsePanel(true);
Mady Mellor7f234902019-10-20 12:06:29 -0700609 entry.setFlagBubble(true);
610 updateBubble(entry, true /* suppressFlyout */, false /* showInShade */);
Mady Mellorff076eb2019-11-13 10:12:06 -0800611 mUserCreatedBubbles.add(entry.getKey());
Mady Mellor3b86a4f2019-12-11 13:15:41 -0800612 mUserBlockedBubbles.remove(entry.getKey());
Mady Mellor7f234902019-10-20 12:06:29 -0700613 }
614
615 /**
616 * Called when a user has indicated that an active notification appearing as a bubble should
617 * no longer be shown as a bubble.
618 *
619 * @param entry the notification to no longer show as a bubble.
620 */
621 public void onUserDemotedBubbleFromNotification(NotificationEntry entry) {
Mady Mellorff076eb2019-11-13 10:12:06 -0800622 if (DEBUG_EXPERIMENTS || DEBUG_BUBBLE_CONTROLLER) {
623 Log.d(TAG, "onUserDemotedBubble: " + entry.getKey());
624 }
Mady Mellor7f234902019-10-20 12:06:29 -0700625 entry.setFlagBubble(false);
626 removeBubble(entry.getKey(), DISMISS_BLOCKED);
Mady Mellorff076eb2019-11-13 10:12:06 -0800627 mUserCreatedBubbles.remove(entry.getKey());
Mady Mellor3b86a4f2019-12-11 13:15:41 -0800628 if (BubbleExperimentConfig.isPackageWhitelistedToAutoBubble(
629 mContext, entry.getSbn().getPackageName())) {
630 // This package is whitelist but user demoted the bubble, let's save it so we don't
631 // auto-bubble for the whitelist again.
632 mUserBlockedBubbles.add(entry.getKey());
633 }
Mady Mellorff076eb2019-11-13 10:12:06 -0800634 }
635
636 /**
637 * Whether this bubble was explicitly created by the user via a SysUI affordance.
638 */
639 boolean isUserCreatedBubble(String key) {
640 return mUserCreatedBubbles.contains(key);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800641 }
642
643 /**
644 * Removes the bubble associated with the {@param uri}.
Mark Renouf658c6bc2019-01-30 10:26:54 -0500645 * <p>
646 * Must be called from the main thread.
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800647 */
Mark Renouf658c6bc2019-01-30 10:26:54 -0500648 @MainThread
Mark Renouf08bc42a2019-03-07 13:01:59 -0500649 void removeBubble(String key, int reason) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400650 // TEMP: refactor to change this to pass entry
651 Bubble bubble = mBubbleData.getBubbleWithKey(key);
652 if (bubble != null) {
Mady Mellored99c272019-06-13 15:58:30 -0700653 mBubbleData.notificationEntryRemoved(bubble.getEntry(), reason);
Mady Mellore8e07712019-01-23 12:45:33 -0800654 }
655 }
656
Ned Burns01e38212019-01-03 16:32:52 -0500657 @SuppressWarnings("FieldCanBeLocal")
Mady Mellorc2ff0112019-03-28 14:18:06 -0700658 private final NotificationRemoveInterceptor mRemoveInterceptor =
659 new NotificationRemoveInterceptor() {
660 @Override
661 public boolean onNotificationRemoveRequested(String key, int reason) {
Evan Laird181de622019-10-24 09:53:02 -0400662 NotificationEntry entry =
663 mNotificationEntryManager.getActiveNotificationUnfiltered(key);
Ned Burns00b4b2d2019-10-17 22:09:27 -0400664 String groupKey = entry != null ? entry.getSbn().getGroupKey() : null;
Mady Mellor22f2f072019-04-18 13:26:18 -0700665 ArrayList<Bubble> bubbleChildren = mBubbleData.getBubblesInGroup(groupKey);
666
667 boolean inBubbleData = mBubbleData.hasBubbleWithKey(key);
Mady Mellore28fe102019-07-09 15:33:32 -0700668 boolean isSuppressedSummary = (mBubbleData.isSummarySuppressed(groupKey)
669 && mBubbleData.getSummaryKey(groupKey).equals(key));
Mady Mellor22f2f072019-04-18 13:26:18 -0700670 boolean isSummary = entry != null
Ned Burns00b4b2d2019-10-17 22:09:27 -0400671 && entry.getSbn().getNotification().isGroupSummary();
Mady Mellore28fe102019-07-09 15:33:32 -0700672 boolean isSummaryOfBubbles = (isSuppressedSummary || isSummary)
673 && bubbleChildren != null && !bubbleChildren.isEmpty();
Mady Mellor22f2f072019-04-18 13:26:18 -0700674
675 if (!inBubbleData && !isSummaryOfBubbles) {
Mady Mellorc2ff0112019-03-28 14:18:06 -0700676 return false;
677 }
Mady Mellorc2ff0112019-03-28 14:18:06 -0700678
679 final boolean isClearAll = reason == REASON_CANCEL_ALL;
Mady Mellor22f2f072019-04-18 13:26:18 -0700680 final boolean isUserDimiss = reason == REASON_CANCEL || reason == REASON_CLICK;
Mady Mellorc2ff0112019-03-28 14:18:06 -0700681 final boolean isAppCancel = reason == REASON_APP_CANCEL
682 || reason == REASON_APP_CANCEL_ALL;
Mady Mellor22f2f072019-04-18 13:26:18 -0700683 final boolean isSummaryCancel = reason == REASON_GROUP_SUMMARY_CANCELED;
Mady Mellorc2ff0112019-03-28 14:18:06 -0700684
685 // Need to check for !appCancel here because the notification may have
686 // previously been dismissed & entry.isRowDismissed would still be true
Mady Mellorca184aae2019-09-17 16:07:12 -0700687 boolean userRemovedNotif = (entry != null && entry.isRowDismissed() && !isAppCancel)
Mady Mellor22f2f072019-04-18 13:26:18 -0700688 || isClearAll || isUserDimiss || isSummaryCancel;
689
690 if (isSummaryOfBubbles) {
691 return handleSummaryRemovalInterception(entry, userRemovedNotif);
692 }
Mady Mellorc2ff0112019-03-28 14:18:06 -0700693
694 // The bubble notification sticks around in the data as long as the bubble is
695 // not dismissed and the app hasn't cancelled the notification.
Mady Mellor22f2f072019-04-18 13:26:18 -0700696 Bubble bubble = mBubbleData.getBubbleWithKey(key);
Mady Mellorca184aae2019-09-17 16:07:12 -0700697 boolean bubbleExtended = entry != null && entry.isBubble() && userRemovedNotif;
Mady Mellorc2ff0112019-03-28 14:18:06 -0700698 if (bubbleExtended) {
Mady Mellorb8aaf972019-11-26 10:28:00 -0800699 bubble.setShowInShade(false);
700 bubble.setShowDot(false /* show */, true /* animate */);
Beverly85d4c192019-09-30 11:40:39 -0400701 mNotificationEntryManager.updateNotifications(
702 "BubbleController.onNotificationRemoveRequested");
Mady Mellorc2ff0112019-03-28 14:18:06 -0700703 return true;
Mady Mellorff076eb2019-11-13 10:12:06 -0800704 } else if (!userRemovedNotif && entry != null
705 && !isUserCreatedBubble(bubble.getKey())) {
Mady Mellorc2ff0112019-03-28 14:18:06 -0700706 // This wasn't a user removal so we should remove the bubble as well
707 mBubbleData.notificationEntryRemoved(entry, DISMISS_NOTIF_CANCEL);
708 return false;
709 }
710 return false;
711 }
712 };
713
Mady Mellor22f2f072019-04-18 13:26:18 -0700714 private boolean handleSummaryRemovalInterception(NotificationEntry summary,
715 boolean userRemovedNotif) {
Ned Burns00b4b2d2019-10-17 22:09:27 -0400716 String groupKey = summary.getSbn().getGroupKey();
Mady Mellor22f2f072019-04-18 13:26:18 -0700717 ArrayList<Bubble> bubbleChildren = mBubbleData.getBubblesInGroup(groupKey);
718
719 if (userRemovedNotif) {
720 // If it's a user dismiss we mark the children to be hidden from the shade.
721 for (int i = 0; i < bubbleChildren.size(); i++) {
722 Bubble bubbleChild = bubbleChildren.get(i);
723 // As far as group manager is concerned, once a child is no longer shown
724 // in the shade, it is essentially removed.
725 mNotificationGroupManager.onEntryRemoved(bubbleChild.getEntry());
Mady Mellorb8aaf972019-11-26 10:28:00 -0800726 bubbleChild.setShowInShade(false);
727 bubbleChild.setShowDot(false /* show */, true /* animate */);
Mady Mellor22f2f072019-04-18 13:26:18 -0700728 }
729 // And since all children are removed, remove the summary.
730 mNotificationGroupManager.onEntryRemoved(summary);
731
732 // If the summary was auto-generated we don't need to keep that notification around
733 // because apps can't cancel it; so we only intercept & suppress real summaries.
Ned Burns00b4b2d2019-10-17 22:09:27 -0400734 boolean isAutogroupSummary = (summary.getSbn().getNotification().flags
Mady Mellor22f2f072019-04-18 13:26:18 -0700735 & FLAG_AUTOGROUP_SUMMARY) != 0;
Mady Mellore28fe102019-07-09 15:33:32 -0700736 if (!isAutogroupSummary) {
Ned Burns00b4b2d2019-10-17 22:09:27 -0400737 mBubbleData.addSummaryToSuppress(summary.getSbn().getGroupKey(),
738 summary.getKey());
Mady Mellore28fe102019-07-09 15:33:32 -0700739 // Tell shade to update for the suppression
Beverly85d4c192019-09-30 11:40:39 -0400740 mNotificationEntryManager.updateNotifications(
741 "BubbleController.handleSummaryRemovalInterception");
Mady Mellore28fe102019-07-09 15:33:32 -0700742 }
Mady Mellor22f2f072019-04-18 13:26:18 -0700743 return !isAutogroupSummary;
744 } else {
Mady Mellore28fe102019-07-09 15:33:32 -0700745 // If it's not a user dismiss it's a cancel.
746 mBubbleData.removeSuppressedSummary(groupKey);
747
Mady Mellor22f2f072019-04-18 13:26:18 -0700748 // Remove any associated bubble children.
749 for (int i = 0; i < bubbleChildren.size(); i++) {
750 Bubble bubbleChild = bubbleChildren.get(i);
751 mBubbleData.notificationEntryRemoved(bubbleChild.getEntry(),
752 DISMISS_GROUP_CANCELLED);
753 }
754 return false;
755 }
756 }
757
Mady Mellorc2ff0112019-03-28 14:18:06 -0700758 @SuppressWarnings("FieldCanBeLocal")
Ned Burns01e38212019-01-03 16:32:52 -0500759 private final NotificationEntryListener mEntryListener = new NotificationEntryListener() {
760 @Override
Ned Burnsf81c4c42019-01-07 14:10:43 -0500761 public void onPendingEntryAdded(NotificationEntry entry) {
Mady Mellorff076eb2019-11-13 10:12:06 -0800762 boolean previouslyUserCreated = mUserCreatedBubbles.contains(entry.getKey());
Mady Mellor3b86a4f2019-12-11 13:15:41 -0800763 boolean userBlocked = mUserBlockedBubbles.contains(entry.getKey());
Mady Mellor30672942019-12-04 15:43:19 -0800764 boolean wasAdjusted = BubbleExperimentConfig.adjustForExperiments(
Mady Mellor3b86a4f2019-12-11 13:15:41 -0800765 mContext, entry, previouslyUserCreated, userBlocked);
Mady Mellor7f234902019-10-20 12:06:29 -0700766
Mady Mellorca0c24c2019-05-16 16:14:32 -0700767 if (mNotificationInterruptionStateProvider.shouldBubbleUp(entry)
Mady Mellor30672942019-12-04 15:43:19 -0800768 && (canLaunchInActivityView(mContext, entry) || wasAdjusted)) {
Mady Mellorea13b232019-12-05 15:55:46 -0800769 if (wasAdjusted && !previouslyUserCreated) {
770 // Gotta treat the auto-bubbled / whitelisted packaged bubbles as usercreated
771 mUserCreatedBubbles.add(entry.getKey());
772 }
Mark Renouff97ed462019-04-05 13:46:24 -0400773 updateBubble(entry);
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800774 }
775 }
776
777 @Override
778 public void onPreEntryUpdated(NotificationEntry entry) {
Mady Mellorff076eb2019-11-13 10:12:06 -0800779 boolean previouslyUserCreated = mUserCreatedBubbles.contains(entry.getKey());
Mady Mellor3b86a4f2019-12-11 13:15:41 -0800780 boolean userBlocked = mUserBlockedBubbles.contains(entry.getKey());
Mady Mellor30672942019-12-04 15:43:19 -0800781 boolean wasAdjusted = BubbleExperimentConfig.adjustForExperiments(
Mady Mellor3b86a4f2019-12-11 13:15:41 -0800782 mContext, entry, previouslyUserCreated, userBlocked);
Mady Mellor7f234902019-10-20 12:06:29 -0700783
Mady Mellorca0c24c2019-05-16 16:14:32 -0700784 boolean shouldBubble = mNotificationInterruptionStateProvider.shouldBubbleUp(entry)
Mady Mellor30672942019-12-04 15:43:19 -0800785 && (canLaunchInActivityView(mContext, entry) || wasAdjusted);
Ned Burns00b4b2d2019-10-17 22:09:27 -0400786 if (!shouldBubble && mBubbleData.hasBubbleWithKey(entry.getKey())) {
Mady Melloraa8fef22019-04-11 13:36:40 -0700787 // It was previously a bubble but no longer a bubble -- lets remove it
Ned Burns00b4b2d2019-10-17 22:09:27 -0400788 removeBubble(entry.getKey(), DISMISS_NO_LONGER_BUBBLE);
Mady Mellorff40e012019-05-03 15:34:41 -0700789 } else if (shouldBubble) {
Mady Mellorea13b232019-12-05 15:55:46 -0800790 if (wasAdjusted && !previouslyUserCreated) {
791 // Gotta treat the auto-bubbled / whitelisted packaged bubbles as usercreated
792 mUserCreatedBubbles.add(entry.getKey());
793 }
Mark Renouff97ed462019-04-05 13:46:24 -0400794 updateBubble(entry);
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800795 }
796 }
Mark Renoufbbcf07f2019-05-09 10:42:43 -0400797
798 @Override
799 public void onNotificationRankingUpdated(RankingMap rankingMap) {
800 // Forward to BubbleData to block any bubbles which should no longer be shown
801 mBubbleData.notificationRankingUpdated(rankingMap);
802 }
Ned Burns01e38212019-01-03 16:32:52 -0500803 };
804
Mark Renouf71a3af62019-04-08 15:02:54 -0400805 @SuppressWarnings("FieldCanBeLocal")
Mark Renouf3bc5b362019-04-05 14:37:59 -0400806 private final BubbleData.Listener mBubbleDataListener = new BubbleData.Listener() {
Mark Renouf71a3af62019-04-08 15:02:54 -0400807
Mark Renouf3bc5b362019-04-05 14:37:59 -0400808 @Override
Mark Renouf82a40e62019-05-23 16:16:24 -0400809 public void applyUpdate(BubbleData.Update update) {
Mark Renouf82a40e62019-05-23 16:16:24 -0400810 if (update.addedBubble != null) {
811 mStackView.addBubble(update.addedBubble);
812 }
813
814 // Collapsing? Do this first before remaining steps.
815 if (update.expandedChanged && !update.expanded) {
816 mStackView.setExpanded(false);
817 }
818
819 // Do removals, if any.
Mady Mellor22f2f072019-04-18 13:26:18 -0700820 ArrayList<Pair<Bubble, Integer>> removedBubbles =
821 new ArrayList<>(update.removedBubbles);
822 for (Pair<Bubble, Integer> removed : removedBubbles) {
Mark Renouf82a40e62019-05-23 16:16:24 -0400823 final Bubble bubble = removed.first;
824 @DismissReason final int reason = removed.second;
825 mStackView.removeBubble(bubble);
826
Mark Renoufc19b4732019-06-26 12:08:33 -0400827 // If the bubble is removed for user switching, leave the notification in place.
828 if (reason != DISMISS_USER_CHANGED) {
829 if (!mBubbleData.hasBubbleWithKey(bubble.getKey())
Mady Mellorb8aaf972019-11-26 10:28:00 -0800830 && !bubble.showInShade()) {
Mark Renoufc19b4732019-06-26 12:08:33 -0400831 // The bubble is gone & the notification is gone, time to actually remove it
832 mNotificationEntryManager.performRemoveNotification(
Ned Burns00b4b2d2019-10-17 22:09:27 -0400833 bubble.getEntry().getSbn(), UNDEFINED_DISMISS_REASON);
Mark Renoufc19b4732019-06-26 12:08:33 -0400834 } else {
835 // Update the flag for SysUI
Ned Burns00b4b2d2019-10-17 22:09:27 -0400836 bubble.getEntry().getSbn().getNotification().flags &= ~FLAG_BUBBLE;
Mady Mellor3a0a1b42019-05-23 06:40:21 -0700837
Mark Renoufc19b4732019-06-26 12:08:33 -0400838 // Make sure NoMan knows it's not a bubble anymore so anyone querying it
839 // will get right result back
840 try {
841 mBarService.onNotificationBubbleChanged(bubble.getKey(),
842 false /* isBubble */);
843 } catch (RemoteException e) {
844 // Bad things have happened
845 }
Mark Renouf82a40e62019-05-23 16:16:24 -0400846 }
Mady Mellor22f2f072019-04-18 13:26:18 -0700847
Mady Mellore28fe102019-07-09 15:33:32 -0700848 // Check if removed bubble has an associated suppressed group summary that needs
849 // to be removed now.
Ned Burns00b4b2d2019-10-17 22:09:27 -0400850 final String groupKey = bubble.getEntry().getSbn().getGroupKey();
Mady Mellore28fe102019-07-09 15:33:32 -0700851 if (mBubbleData.isSummarySuppressed(groupKey)
852 && mBubbleData.getBubblesInGroup(groupKey).isEmpty()) {
853 // Time to actually remove the summary.
854 String notifKey = mBubbleData.getSummaryKey(groupKey);
855 mBubbleData.removeSuppressedSummary(groupKey);
856 NotificationEntry entry =
Evan Laird181de622019-10-24 09:53:02 -0400857 mNotificationEntryManager.getActiveNotificationUnfiltered(notifKey);
Mady Mellore28fe102019-07-09 15:33:32 -0700858 mNotificationEntryManager.performRemoveNotification(
Ned Burns00b4b2d2019-10-17 22:09:27 -0400859 entry.getSbn(), UNDEFINED_DISMISS_REASON);
Mady Mellore28fe102019-07-09 15:33:32 -0700860 }
861
Mady Mellor22f2f072019-04-18 13:26:18 -0700862 // Check if summary should be removed from NoManGroup
863 NotificationEntry summary = mNotificationGroupManager.getLogicalGroupSummary(
Ned Burns00b4b2d2019-10-17 22:09:27 -0400864 bubble.getEntry().getSbn());
Mady Mellor22f2f072019-04-18 13:26:18 -0700865 if (summary != null) {
866 ArrayList<NotificationEntry> summaryChildren =
Ned Burns00b4b2d2019-10-17 22:09:27 -0400867 mNotificationGroupManager.getLogicalChildren(summary.getSbn());
868 boolean isSummaryThisNotif = summary.getKey().equals(
869 bubble.getEntry().getKey());
Mady Mellore4348272019-07-29 17:43:36 -0700870 if (!isSummaryThisNotif
871 && (summaryChildren == null || summaryChildren.isEmpty())) {
Mady Mellor22f2f072019-04-18 13:26:18 -0700872 mNotificationEntryManager.performRemoveNotification(
Ned Burns00b4b2d2019-10-17 22:09:27 -0400873 summary.getSbn(), UNDEFINED_DISMISS_REASON);
Mady Mellor22f2f072019-04-18 13:26:18 -0700874 }
875 }
Mady Mellora54e9fa2019-04-18 13:26:18 -0700876 }
877 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400878
Mark Renouf82a40e62019-05-23 16:16:24 -0400879 if (update.updatedBubble != null) {
880 mStackView.updateBubble(update.updatedBubble);
Mark Renouf71a3af62019-04-08 15:02:54 -0400881 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400882
Mark Renouf82a40e62019-05-23 16:16:24 -0400883 if (update.orderChanged) {
884 mStackView.updateBubbleOrder(update.bubbles);
Mark Renoufba5ab512019-05-02 15:21:01 -0400885 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400886
Mark Renouf82a40e62019-05-23 16:16:24 -0400887 if (update.selectionChanged) {
888 mStackView.setSelectedBubble(update.selectedBubble);
Mady Mellor740d85d2019-07-09 15:26:47 -0700889 if (update.selectedBubble != null) {
890 mNotificationGroupManager.updateSuppression(
891 update.selectedBubble.getEntry());
892 }
Mark Renouf71a3af62019-04-08 15:02:54 -0400893 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400894
Mark Renouf82a40e62019-05-23 16:16:24 -0400895 // Expanding? Apply this last.
896 if (update.expandedChanged && update.expanded) {
897 mStackView.setExpanded(true);
Mark Renouf71a3af62019-04-08 15:02:54 -0400898 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400899
Beverly85d4c192019-09-30 11:40:39 -0400900 mNotificationEntryManager.updateNotifications(
901 "BubbleData.Listener.applyUpdate");
Lyn Han6c40fe72019-05-08 14:06:33 -0700902 updateStack();
Mark Renouf9ba6cea2019-04-17 11:53:50 -0400903
Issei Suzukia8d07312019-06-07 12:56:19 +0200904 if (DEBUG_BUBBLE_CONTROLLER) {
Mark Renouf9ba6cea2019-04-17 11:53:50 -0400905 Log.d(TAG, "[BubbleData]");
Lyn Han767d70e2019-12-10 18:02:23 -0800906 Log.d(TAG, BubbleDebugConfig.formatBubblesString(mBubbleData.getBubbles(),
Mark Renouf9ba6cea2019-04-17 11:53:50 -0400907 mBubbleData.getSelectedBubble()));
908
909 if (mStackView != null) {
910 Log.d(TAG, "[BubbleStackView]");
Lyn Han767d70e2019-12-10 18:02:23 -0800911 Log.d(TAG, BubbleDebugConfig.formatBubblesString(mStackView.getBubblesOnScreen(),
Mark Renouf9ba6cea2019-04-17 11:53:50 -0400912 mStackView.getExpandedBubble()));
913 }
914 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400915 }
916 };
917
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800918 /**
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400919 * Lets any listeners know if bubble state has changed.
Lyn Han6c40fe72019-05-08 14:06:33 -0700920 * Updates the visibility of the bubbles based on current state.
921 * Does not un-bubble, just hides or un-hides. Notifies any
922 * {@link BubbleStateChangeListener}s of visibility changes.
923 * Updates stack description for TalkBack focus.
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800924 */
Lyn Han6c40fe72019-05-08 14:06:33 -0700925 public void updateStack() {
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800926 if (mStackView == null) {
927 return;
Mady Mellord1c78b262018-11-06 18:04:40 -0800928 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800929 if (mStatusBarStateListener.getCurrentState() == SHADE && hasBubbles()) {
930 // Bubbles only appear in unlocked shade
931 mStackView.setVisibility(hasBubbles() ? VISIBLE : INVISIBLE);
Mady Mellor698d9e82019-08-01 23:11:53 +0000932 } else if (mStackView != null) {
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800933 mStackView.setVisibility(INVISIBLE);
Mady Mellor5549dd22018-11-06 18:07:34 -0800934 }
Lyn Han6c40fe72019-05-08 14:06:33 -0700935
Mady Mellor698d9e82019-08-01 23:11:53 +0000936 // Let listeners know if bubble state changed.
Lyn Han6c40fe72019-05-08 14:06:33 -0700937 boolean hadBubbles = mStatusBarWindowController.getBubblesShowing();
Mady Mellor698d9e82019-08-01 23:11:53 +0000938 boolean hasBubblesShowing = hasBubbles() && mStackView.getVisibility() == VISIBLE;
Mady Mellor88552b82019-08-05 22:38:59 +0000939 mStatusBarWindowController.setBubblesShowing(hasBubblesShowing);
Lyn Han6c40fe72019-05-08 14:06:33 -0700940 if (mStateChangeListener != null && hadBubbles != hasBubblesShowing) {
941 mStateChangeListener.onHasBubblesChanged(hasBubblesShowing);
942 }
943
944 mStackView.updateContentDescription();
Mady Mellord1c78b262018-11-06 18:04:40 -0800945 }
946
947 /**
948 * Rect indicating the touchable region for the bubble stack / expanded stack.
949 */
950 public Rect getTouchableRegion() {
951 if (mStackView == null || mStackView.getVisibility() != VISIBLE) {
952 return null;
953 }
954 mStackView.getBoundsOnScreen(mTempRect);
955 return mTempRect;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800956 }
957
Mady Mellor390bff42019-04-05 15:09:01 -0700958 /**
959 * The display id of the expanded view, if the stack is expanded and not occluded by the
960 * status bar, otherwise returns {@link Display#INVALID_DISPLAY}.
961 */
962 public int getExpandedDisplayId(Context context) {
Issei Suzukicac2a502019-04-16 16:52:50 +0200963 final Bubble bubble = getExpandedBubble(context);
964 return bubble != null ? bubble.getDisplayId() : INVALID_DISPLAY;
965 }
966
967 @Nullable
968 private Bubble getExpandedBubble(Context context) {
Joel Galenson4071ddb2019-04-18 13:30:45 -0700969 if (mStackView == null) {
Issei Suzukicac2a502019-04-16 16:52:50 +0200970 return null;
Joel Galenson4071ddb2019-04-18 13:30:45 -0700971 }
Issei Suzukicac2a502019-04-16 16:52:50 +0200972 final boolean defaultDisplay = context.getDisplay() != null
Mady Mellor390bff42019-04-05 15:09:01 -0700973 && context.getDisplay().getDisplayId() == DEFAULT_DISPLAY;
Issei Suzukicac2a502019-04-16 16:52:50 +0200974 final Bubble expandedBubble = mStackView.getExpandedBubble();
975 if (defaultDisplay && expandedBubble != null && isStackExpanded()
Mady Mellor390bff42019-04-05 15:09:01 -0700976 && !mStatusBarWindowController.getPanelExpanded()) {
Issei Suzukicac2a502019-04-16 16:52:50 +0200977 return expandedBubble;
Mady Mellor390bff42019-04-05 15:09:01 -0700978 }
Issei Suzukicac2a502019-04-16 16:52:50 +0200979 return null;
Mady Mellor390bff42019-04-05 15:09:01 -0700980 }
981
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800982 @VisibleForTesting
983 BubbleStackView getStackView() {
984 return mStackView;
985 }
986
Mady Mellor70cba7bb2019-07-02 15:06:07 -0700987 /**
988 * Description of current bubble state.
989 */
990 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
991 pw.println("BubbleController state:");
992 mBubbleData.dump(fd, pw, args);
993 pw.println();
Joshua Tsuji395bcfe2019-07-02 19:23:23 -0400994 if (mStackView != null) {
995 mStackView.dump(fd, pw, args);
996 }
997 pw.println();
Mady Mellor70cba7bb2019-07-02 15:06:07 -0700998 }
999
Mady Mellore80930e2019-03-21 16:00:45 -07001000 /**
Mark Renoufcecc77b2019-01-30 16:32:24 -05001001 * This task stack listener is responsible for responding to tasks moved to the front
1002 * which are on the default (main) display. When this happens, expanded bubbles must be
1003 * collapsed so the user may interact with the app which was just moved to the front.
1004 * <p>
1005 * This listener is registered with SystemUI's ActivityManagerWrapper which dispatches
1006 * these calls via a main thread Handler.
1007 */
1008 @MainThread
1009 private class BubbleTaskStackListener extends TaskStackChangeListener {
1010
Mark Renoufcecc77b2019-01-30 16:32:24 -05001011 @Override
Mark Renoufc808f062019-02-07 15:20:37 -05001012 public void onTaskMovedToFront(RunningTaskInfo taskInfo) {
1013 if (mStackView != null && taskInfo.displayId == Display.DEFAULT_DISPLAY) {
Mady Mellor047e24e2019-08-05 11:35:40 -07001014 if (!mStackView.isExpansionAnimating()) {
1015 mBubbleData.setExpanded(false);
1016 }
Mark Renoufcecc77b2019-01-30 16:32:24 -05001017 }
1018 }
1019
Mark Renoufcecc77b2019-01-30 16:32:24 -05001020 @Override
Mark Renoufa12e8762019-03-07 15:43:01 -05001021 public void onActivityLaunchOnSecondaryDisplayRerouted() {
Mark Renoufcecc77b2019-01-30 16:32:24 -05001022 if (mStackView != null) {
Mark Renouf71a3af62019-04-08 15:02:54 -04001023 mBubbleData.setExpanded(false);
Mark Renoufcecc77b2019-01-30 16:32:24 -05001024 }
1025 }
Mark Renouf446251d2019-04-26 10:22:41 -04001026
1027 @Override
1028 public void onBackPressedOnTaskRoot(RunningTaskInfo taskInfo) {
1029 if (mStackView != null && taskInfo.displayId == getExpandedDisplayId(mContext)) {
1030 mBubbleData.setExpanded(false);
1031 }
1032 }
Issei Suzukicac2a502019-04-16 16:52:50 +02001033
1034 @Override
1035 public void onSingleTaskDisplayDrawn(int displayId) {
Mady Mellor5186b132019-09-16 17:55:48 -07001036 final Bubble expandedBubble = mStackView != null
1037 ? mStackView.getExpandedBubble()
1038 : null;
Issei Suzukicac2a502019-04-16 16:52:50 +02001039 if (expandedBubble != null && expandedBubble.getDisplayId() == displayId) {
1040 expandedBubble.setContentVisibility(true);
1041 }
1042 }
Issei Suzuki734bc942019-06-05 13:59:52 +02001043
1044 @Override
1045 public void onSingleTaskDisplayEmpty(int displayId) {
Mady Mellor5186b132019-09-16 17:55:48 -07001046 final Bubble expandedBubble = mStackView != null
1047 ? mStackView.getExpandedBubble()
1048 : null;
Mady Mellorca184aae2019-09-17 16:07:12 -07001049 int expandedId = expandedBubble != null ? expandedBubble.getDisplayId() : -1;
1050 if (mStackView != null && mStackView.isExpanded() && expandedId == displayId) {
Issei Suzuki734bc942019-06-05 13:59:52 +02001051 mBubbleData.setExpanded(false);
Issei Suzuki734bc942019-06-05 13:59:52 +02001052 }
Mady Mellorca184aae2019-09-17 16:07:12 -07001053 mBubbleData.notifyDisplayEmpty(displayId);
Issei Suzuki734bc942019-06-05 13:59:52 +02001054 }
Mark Renoufcecc77b2019-01-30 16:32:24 -05001055 }
1056
Mady Mellorca0c24c2019-05-16 16:14:32 -07001057 /**
1058 * Whether an intent is properly configured to display in an {@link android.app.ActivityView}.
1059 *
1060 * Keep checks in sync with NotificationManagerService#canLaunchInActivityView. Typically
1061 * that should filter out any invalid bubbles, but should protect SysUI side just in case.
1062 *
1063 * @param context the context to use.
1064 * @param entry the entry to bubble.
1065 */
1066 static boolean canLaunchInActivityView(Context context, NotificationEntry entry) {
1067 PendingIntent intent = entry.getBubbleMetadata() != null
1068 ? entry.getBubbleMetadata().getIntent()
1069 : null;
1070 if (intent == null) {
Mady Mellor7f234902019-10-20 12:06:29 -07001071 Log.w(TAG, "Unable to create bubble -- no intent: " + entry.getKey());
Mady Mellorca0c24c2019-05-16 16:14:32 -07001072 return false;
1073 }
Mady Mellorf3b9fab2019-11-13 17:27:32 -08001074 PackageManager packageManager = StatusBar.getPackageManagerForUser(
1075 context, entry.getSbn().getUser().getIdentifier());
Mady Mellorca0c24c2019-05-16 16:14:32 -07001076 ActivityInfo info =
Mady Mellorf3b9fab2019-11-13 17:27:32 -08001077 intent.getIntent().resolveActivityInfo(packageManager, 0);
Mady Mellorca0c24c2019-05-16 16:14:32 -07001078 if (info == null) {
Mady Mellor7f234902019-10-20 12:06:29 -07001079 Log.w(TAG, "Unable to send as bubble, "
1080 + entry.getKey() + " couldn't find activity info for intent: "
Mady Mellorca0c24c2019-05-16 16:14:32 -07001081 + intent);
1082 return false;
1083 }
1084 if (!ActivityInfo.isResizeableMode(info.resizeMode)) {
Mady Mellor7f234902019-10-20 12:06:29 -07001085 Log.w(TAG, "Unable to send as bubble, "
1086 + entry.getKey() + " activity is not resizable for intent: "
Mady Mellorca0c24c2019-05-16 16:14:32 -07001087 + intent);
1088 return false;
1089 }
Mady Mellorca0c24c2019-05-16 16:14:32 -07001090 return true;
1091 }
1092
Joshua Tsujia19515f2019-02-13 18:02:29 -05001093 /** PinnedStackListener that dispatches IME visibility updates to the stack. */
Hongwei Wang43a752b2019-09-17 20:20:30 +00001094 private class BubblesImeListener extends PinnedStackListenerForwarder.PinnedStackListener {
Joshua Tsujia19515f2019-02-13 18:02:29 -05001095 @Override
Joshua Tsujid9422832019-03-05 13:32:37 -05001096 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) {
1097 if (mStackView != null && mStackView.getBubbleCount() > 0) {
1098 mStackView.post(() -> mStackView.onImeVisibilityChanged(imeVisible, imeHeight));
Joshua Tsujia19515f2019-02-13 18:02:29 -05001099 }
1100 }
Joshua Tsujia19515f2019-02-13 18:02:29 -05001101 }
Aran Inkaa4dfa72019-11-18 16:49:07 -05001102
1103 // TODO: Copied from RemoteInputView. Consolidate RemoteInput intent logic.
1104 private Intent prepareRemoteInputFromData(String contentType, Uri data,
1105 RemoteInput remoteInput, NotificationEntry entry) {
1106 HashMap<String, Uri> results = new HashMap<>();
1107 results.put(contentType, data);
1108 mRemoteInputUriController.grantInlineReplyUriPermission(entry.getSbn(), data);
1109 Intent fillInIntent = new Intent().addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
1110 RemoteInput.addDataResultToIntent(remoteInput, fillInIntent, results);
1111
1112 return fillInIntent;
1113 }
1114
1115 // TODO: Copied from RemoteInputView. Consolidate RemoteInput intent logic.
1116 private void sendRemoteInput(Intent intent, NotificationEntry entry,
1117 PendingIntent pendingIntent) {
1118 // Tell ShortcutManager that this package has been "activated". ShortcutManager
1119 // will reset the throttling for this package.
1120 // Strictly speaking, the intent receiver may be different from the notification publisher,
1121 // but that's an edge case, and also because we can't always know which package will receive
1122 // an intent, so we just reset for the publisher.
1123 mContext.getSystemService(ShortcutManager.class).onApplicationActive(
1124 entry.getSbn().getPackageName(),
1125 entry.getSbn().getUser().getIdentifier());
1126
1127 try {
1128 pendingIntent.send(mContext, 0, intent);
1129 } catch (PendingIntent.CanceledException e) {
1130 Log.i(TAG, "Unable to send remote input result", e);
1131 }
1132 }
1133
1134 private void sendScreenshotToBubble(Bubble bubble) {
Aran Ink141a8152019-12-12 13:31:23 -05001135 mScreenshotHelper.takeScreenshot(
1136 android.view.WindowManager.TAKE_SCREENSHOT_FULLSCREEN,
1137 true /* hasStatus */,
1138 true /* hasNav */,
1139 mHandler,
1140 new Consumer<Uri>() {
1141 @Override
1142 public void accept(Uri uri) {
1143 if (uri != null) {
1144 NotificationEntry entry = bubble.getEntry();
1145 Pair<RemoteInput, Notification.Action> pair = entry.getSbn()
1146 .getNotification().findRemoteInputActionPair(false);
1147 if (pair != null) {
1148 RemoteInput remoteInput = pair.first;
1149 Notification.Action action = pair.second;
1150 Intent dataIntent = prepareRemoteInputFromData("image/png", uri,
1151 remoteInput, entry);
1152 sendRemoteInput(dataIntent, entry, action.actionIntent);
1153 mBubbleData.setSelectedBubble(bubble);
1154 mBubbleData.setExpanded(true);
1155 } else {
1156 Log.w(TAG, "No RemoteInput found for notification: "
1157 + entry.getSbn().getKey());
Aran Inkaa4dfa72019-11-18 16:49:07 -05001158 }
Aran Ink141a8152019-12-12 13:31:23 -05001159 }
1160 }
1161 });
Aran Inkaa4dfa72019-11-18 16:49:07 -05001162 }
1163
1164 private final BubbleScreenshotListener mBubbleScreenshotListener =
1165 bubble -> sendScreenshotToBubble(bubble);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -08001166}