blob: 61e00cd9d6ec96561474b7eeca186c1a816fdf93 [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 Mellorc3d6f7d2018-11-07 09:36:56 -0800153
Mark Renoufc19b4732019-06-26 12:08:33 -0400154 // Tracks the id of the current (foreground) user.
155 private int mCurrentUserId;
156 // Saves notification keys of active bubbles when users are switched.
157 private final SparseSetArray<String> mSavedBubbleKeysPerUser;
158
Mady Mellorff076eb2019-11-13 10:12:06 -0800159 // Saves notification keys of user created "fake" bubbles so that we can allow notifications
160 // like these to bubble by default. Doesn't persist across reboots, not a long-term solution.
161 private final HashSet<String> mUserCreatedBubbles;
Mady Mellor3b86a4f2019-12-11 13:15:41 -0800162 // If we're auto-bubbling bubbles via a whitelist, we need to track which notifs from that app
163 // have been "demoted" back to a notification so that we don't auto-bubbles those again.
164 // Doesn't persist across reboots, not a long-term solution.
165 private final HashSet<String> mUserBlockedBubbles;
Mady Mellorff076eb2019-11-13 10:12:06 -0800166
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800167 // Bubbles get added to the status bar view
Ned Burns01e38212019-01-03 16:32:52 -0500168 private final StatusBarWindowController mStatusBarWindowController;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400169 private final ZenModeController mZenModeController;
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800170 private StatusBarStateListener mStatusBarStateListener;
Aran Inkaa4dfa72019-11-18 16:49:07 -0500171 private final ScreenshotHelper mScreenshotHelper;
172
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800173
Mady Melloraa8fef22019-04-11 13:36:40 -0700174 private final NotificationInterruptionStateProvider mNotificationInterruptionStateProvider;
Mady Mellora54e9fa2019-04-18 13:26:18 -0700175 private IStatusBarService mBarService;
Mady Mellorb4991e62019-01-10 15:14:51 -0800176
Mady Mellord1c78b262018-11-06 18:04:40 -0800177 // Used for determining view rect for touch interaction
178 private Rect mTempRect = new Rect();
179
Mark Renoufc19b4732019-06-26 12:08:33 -0400180 // Listens to user switch so bubbles can be saved and restored.
181 private final NotificationLockscreenUserManager mNotifUserManager;
182
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400183 /** Last known orientation, used to detect orientation changes in {@link #onConfigChanged}. */
184 private int mOrientation = Configuration.ORIENTATION_UNDEFINED;
185
Mady Mellor5549dd22018-11-06 18:07:34 -0800186 /**
Mady Mellord1c78b262018-11-06 18:04:40 -0800187 * Listener to be notified when some states of the bubbles change.
188 */
189 public interface BubbleStateChangeListener {
190 /**
191 * Called when the stack has bubbles or no longer has bubbles.
192 */
193 void onHasBubblesChanged(boolean hasBubbles);
194 }
195
Mady Mellorcd9b1302018-11-06 18:08:04 -0800196 /**
197 * Listener to find out about stack expansion / collapse events.
198 */
199 public interface BubbleExpandListener {
200 /**
201 * Called when the expansion state of the bubble stack changes.
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700202 *
Mady Mellorcd9b1302018-11-06 18:08:04 -0800203 * @param isExpanding whether it's expanding or collapsing
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800204 * @param key the notification key associated with bubble being expanded
Mady Mellorcd9b1302018-11-06 18:08:04 -0800205 */
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800206 void onBubbleExpandChanged(boolean isExpanding, String key);
207 }
208
209 /**
Aran Inkaa4dfa72019-11-18 16:49:07 -0500210 * Listener for handling bubble screenshot events.
211 */
212 public interface BubbleScreenshotListener {
213 /**
214 * Called to trigger taking a screenshot and sending the result to a bubble.
215 */
216 void onBubbleScreenshot(Bubble bubble);
217 }
218
219 /**
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800220 * Listens for the current state of the status bar and updates the visibility state
221 * of bubbles as needed.
222 */
223 private class StatusBarStateListener implements StatusBarStateController.StateListener {
224 private int mState;
225 /**
226 * Returns the current status bar state.
227 */
228 public int getCurrentState() {
229 return mState;
230 }
231
232 @Override
233 public void onStateChanged(int newState) {
234 mState = newState;
Mark Renouf71a3af62019-04-08 15:02:54 -0400235 boolean shouldCollapse = (mState != SHADE);
236 if (shouldCollapse) {
237 collapseStack();
238 }
Lyn Han6c40fe72019-05-08 14:06:33 -0700239 updateStack();
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800240 }
Mady Mellorcd9b1302018-11-06 18:08:04 -0800241 }
242
Jason Monk27d01a622018-12-10 15:57:09 -0500243 @Inject
Mady Mellor7f234902019-10-20 12:06:29 -0700244 public BubbleController(Context context,
245 StatusBarWindowController statusBarWindowController,
246 StatusBarStateController statusBarStateController,
Heemin Seogba6337f2019-12-10 15:34:37 -0800247 ShadeController shadeController,
Mady Mellor7f234902019-10-20 12:06:29 -0700248 BubbleData data,
Mady Melloraa8fef22019-04-11 13:36:40 -0700249 ConfigurationController configurationController,
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400250 NotificationInterruptionStateProvider interruptionStateProvider,
Mark Renoufc19b4732019-06-26 12:08:33 -0400251 ZenModeController zenModeController,
Mady Mellor22f2f072019-04-18 13:26:18 -0700252 NotificationLockscreenUserManager notifUserManager,
Mady Mellor7f234902019-10-20 12:06:29 -0700253 NotificationGroupManager groupManager,
Aran Inkaa4dfa72019-11-18 16:49:07 -0500254 NotificationEntryManager entryManager,
255 RemoteInputUriController remoteInputUriController) {
Mady Mellor7f234902019-10-20 12:06:29 -0700256 this(context, statusBarWindowController, statusBarStateController, shadeController,
257 data, null /* synchronizer */, configurationController, interruptionStateProvider,
Aran Inkaa4dfa72019-11-18 16:49:07 -0500258 zenModeController, notifUserManager, groupManager, entryManager,
259 remoteInputUriController);
Mady Mellor7f234902019-10-20 12:06:29 -0700260 }
261
262 public BubbleController(Context context,
263 StatusBarWindowController statusBarWindowController,
264 StatusBarStateController statusBarStateController,
Heemin Seogba6337f2019-12-10 15:34:37 -0800265 ShadeController shadeController,
Mady Mellor7f234902019-10-20 12:06:29 -0700266 BubbleData data,
267 @Nullable BubbleStackView.SurfaceSynchronizer synchronizer,
268 ConfigurationController configurationController,
269 NotificationInterruptionStateProvider interruptionStateProvider,
270 ZenModeController zenModeController,
271 NotificationLockscreenUserManager notifUserManager,
272 NotificationGroupManager groupManager,
Aran Inkaa4dfa72019-11-18 16:49:07 -0500273 NotificationEntryManager entryManager,
274 RemoteInputUriController remoteInputUriController) {
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800275 mContext = context;
Heemin Seogba6337f2019-12-10 15:34:37 -0800276 mShadeController = shadeController;
Mady Melloraa8fef22019-04-11 13:36:40 -0700277 mNotificationInterruptionStateProvider = interruptionStateProvider;
Mark Renoufc19b4732019-06-26 12:08:33 -0400278 mNotifUserManager = notifUserManager;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400279 mZenModeController = zenModeController;
Aran Inkaa4dfa72019-11-18 16:49:07 -0500280 mRemoteInputUriController = remoteInputUriController;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400281 mZenModeController.addCallback(new ZenModeController.Callback() {
282 @Override
283 public void onZenChanged(int zen) {
Mady Mellorb8aaf972019-11-26 10:28:00 -0800284 for (Bubble b : mBubbleData.getBubbles()) {
285 b.setShowDot(b.showInShade(), true /* animate */);
Mady Mellordf48d0a2019-06-25 18:26:46 -0700286 }
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400287 }
288
289 @Override
290 public void onConfigChanged(ZenModeConfig config) {
Mady Mellorb8aaf972019-11-26 10:28:00 -0800291 for (Bubble b : mBubbleData.getBubbles()) {
292 b.setShowDot(b.showInShade(), true /* animate */);
Mady Mellordf48d0a2019-06-25 18:26:46 -0700293 }
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400294 }
295 });
Mady Melloraa8fef22019-04-11 13:36:40 -0700296
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700297 configurationController.addCallback(this /* configurationListener */);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800298
Mark Renouf9ba6cea2019-04-17 11:53:50 -0400299 mBubbleData = data;
300 mBubbleData.setListener(mBubbleDataListener);
301
Mady Mellor7f234902019-10-20 12:06:29 -0700302 mNotificationEntryManager = entryManager;
Ned Burns01e38212019-01-03 16:32:52 -0500303 mNotificationEntryManager.addNotificationEntryListener(mEntryListener);
Mady Mellorc2ff0112019-03-28 14:18:06 -0700304 mNotificationEntryManager.setNotificationRemoveInterceptor(mRemoveInterceptor);
Mady Mellor22f2f072019-04-18 13:26:18 -0700305 mNotificationGroupManager = groupManager;
Mady Mellor740d85d2019-07-09 15:26:47 -0700306 mNotificationGroupManager.addOnGroupChangeListener(
307 new NotificationGroupManager.OnGroupChangeListener() {
308 @Override
309 public void onGroupSuppressionChanged(
310 NotificationGroupManager.NotificationGroup group,
311 boolean suppressed) {
312 // More notifications could be added causing summary to no longer
313 // be suppressed -- in this case need to remove the key.
314 final String groupKey = group.summary != null
Ned Burns00b4b2d2019-10-17 22:09:27 -0400315 ? group.summary.getSbn().getGroupKey()
Mady Mellor740d85d2019-07-09 15:26:47 -0700316 : null;
317 if (!suppressed && groupKey != null
318 && mBubbleData.isSummarySuppressed(groupKey)) {
319 mBubbleData.removeSuppressedSummary(groupKey);
320 }
321 }
322 });
Mady Mellorb4991e62019-01-10 15:14:51 -0800323
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800324 mStatusBarWindowController = statusBarWindowController;
325 mStatusBarStateListener = new StatusBarStateListener();
Mady Mellor7f234902019-10-20 12:06:29 -0700326 statusBarStateController.addCallback(mStatusBarStateListener);
Mark Renoufcecc77b2019-01-30 16:32:24 -0500327
Mark Renoufcecc77b2019-01-30 16:32:24 -0500328 mTaskStackListener = new BubbleTaskStackListener();
329 ActivityManagerWrapper.getInstance().registerTaskStackListener(mTaskStackListener);
Mady Mellor3dff9e62019-02-05 18:12:53 -0800330
Joshua Tsujia19515f2019-02-13 18:02:29 -0500331 try {
332 WindowManagerWrapper.getInstance().addPinnedStackListener(new BubblesImeListener());
333 } catch (RemoteException e) {
334 e.printStackTrace();
335 }
Issei Suzukic0387542019-03-08 17:31:14 +0100336 mSurfaceSynchronizer = synchronizer;
Mady Mellora54e9fa2019-04-18 13:26:18 -0700337
338 mBarService = IStatusBarService.Stub.asInterface(
339 ServiceManager.getService(Context.STATUS_BAR_SERVICE));
Mark Renoufc19b4732019-06-26 12:08:33 -0400340
341 mSavedBubbleKeysPerUser = new SparseSetArray<>();
342 mCurrentUserId = mNotifUserManager.getCurrentUserId();
343 mNotifUserManager.addUserChangedListener(
344 newUserId -> {
345 saveBubbles(mCurrentUserId);
346 mBubbleData.dismissAll(DISMISS_USER_CHANGED);
347 restoreBubbles(newUserId);
348 mCurrentUserId = newUserId;
349 });
Mady Mellorff076eb2019-11-13 10:12:06 -0800350
351 mUserCreatedBubbles = new HashSet<>();
Mady Mellor3b86a4f2019-12-11 13:15:41 -0800352 mUserBlockedBubbles = new HashSet<>();
Aran Inkaa4dfa72019-11-18 16:49:07 -0500353
354 mScreenshotHelper = new ScreenshotHelper(context);
Mady Mellor5549dd22018-11-06 18:07:34 -0800355 }
356
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400357 /**
358 * BubbleStackView is lazily created by this method the first time a Bubble is added. This
359 * method initializes the stack view and adds it to the StatusBar just above the scrim.
360 */
361 private void ensureStackViewCreated() {
362 if (mStackView == null) {
363 mStackView = new BubbleStackView(mContext, mBubbleData, mSurfaceSynchronizer);
364 ViewGroup sbv = mStatusBarWindowController.getStatusBarView();
Lyn Hanbde48202019-05-29 19:18:29 -0700365 int bubbleScrimIndex = sbv.indexOfChild(sbv.findViewById(R.id.scrim_for_bubble));
366 int stackIndex = bubbleScrimIndex + 1; // Show stack above bubble scrim.
367 sbv.addView(mStackView, stackIndex,
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400368 new FrameLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT));
369 if (mExpandListener != null) {
370 mStackView.setExpandListener(mExpandListener);
371 }
Aran Inkaa4dfa72019-11-18 16:49:07 -0500372 if (mBubbleScreenshotListener != null) {
373 mStackView.setBubbleScreenshotListener(mBubbleScreenshotListener);
374 }
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400375 }
376 }
377
Mark Renoufc19b4732019-06-26 12:08:33 -0400378 /**
379 * Records the notification key for any active bubbles. These are used to restore active
380 * bubbles when the user returns to the foreground.
381 *
382 * @param userId the id of the user
383 */
384 private void saveBubbles(@UserIdInt int userId) {
385 // First clear any existing keys that might be stored.
386 mSavedBubbleKeysPerUser.remove(userId);
387 // Add in all active bubbles for the current user.
388 for (Bubble bubble: mBubbleData.getBubbles()) {
389 mSavedBubbleKeysPerUser.add(userId, bubble.getKey());
390 }
391 }
392
393 /**
394 * Promotes existing notifications to Bubbles if they were previously bubbles.
395 *
396 * @param userId the id of the user
397 */
398 private void restoreBubbles(@UserIdInt int userId) {
Mark Renoufc19b4732019-06-26 12:08:33 -0400399 ArraySet<String> savedBubbleKeys = mSavedBubbleKeysPerUser.get(userId);
400 if (savedBubbleKeys == null) {
401 // There were no bubbles saved for this used.
402 return;
403 }
Evan Laird181de622019-10-24 09:53:02 -0400404 for (NotificationEntry e :
405 mNotificationEntryManager.getActiveNotificationsForCurrentUser()) {
Ned Burns00b4b2d2019-10-17 22:09:27 -0400406 if (savedBubbleKeys.contains(e.getKey())
Mark Renoufc19b4732019-06-26 12:08:33 -0400407 && mNotificationInterruptionStateProvider.shouldBubbleUp(e)
408 && canLaunchInActivityView(mContext, e)) {
409 updateBubble(e, /* suppressFlyout= */ true);
410 }
411 }
412 // Finally, remove the entries for this user now that bubbles are restored.
413 mSavedBubbleKeysPerUser.remove(mCurrentUserId);
414 }
415
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700416 @Override
417 public void onUiModeChanged() {
418 if (mStackView != null) {
Lyn Han02cca812019-04-02 16:27:32 -0700419 mStackView.onThemeChanged();
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700420 }
421 }
422
423 @Override
424 public void onOverlayChanged() {
425 if (mStackView != null) {
Lyn Han02cca812019-04-02 16:27:32 -0700426 mStackView.onThemeChanged();
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700427 }
428 }
429
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400430 @Override
431 public void onConfigChanged(Configuration newConfig) {
432 if (mStackView != null && newConfig != null && newConfig.orientation != mOrientation) {
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400433 mOrientation = newConfig.orientation;
Lyn Hanf4730312019-06-18 11:18:58 -0700434 mStackView.onOrientationChanged(newConfig.orientation);
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400435 }
436 }
437
Mady Mellor5549dd22018-11-06 18:07:34 -0800438 /**
Mady Mellord1c78b262018-11-06 18:04:40 -0800439 * Set a listener to be notified when some states of the bubbles change.
440 */
441 public void setBubbleStateChangeListener(BubbleStateChangeListener listener) {
442 mStateChangeListener = listener;
443 }
444
445 /**
Mady Mellorcd9b1302018-11-06 18:08:04 -0800446 * Set a listener to be notified of bubble expand events.
447 */
448 public void setExpandListener(BubbleExpandListener listener) {
Issei Suzukiac9fcb72019-02-04 17:45:57 +0100449 mExpandListener = ((isExpanding, key) -> {
450 if (listener != null) {
451 listener.onBubbleExpandChanged(isExpanding, key);
452 }
453 mStatusBarWindowController.setBubbleExpanded(isExpanding);
454 });
Mady Mellorcd9b1302018-11-06 18:08:04 -0800455 if (mStackView != null) {
456 mStackView.setExpandListener(mExpandListener);
457 }
458 }
459
460 /**
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800461 * Whether or not there are bubbles present, regardless of them being visible on the
462 * screen (e.g. if on AOD).
463 */
464 public boolean hasBubbles() {
Mady Mellor3dff9e62019-02-05 18:12:53 -0800465 if (mStackView == null) {
466 return false;
467 }
Mark Renouf71a3af62019-04-08 15:02:54 -0400468 return mBubbleData.hasBubbles();
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800469 }
470
471 /**
472 * Whether the stack of bubbles is expanded or not.
473 */
474 public boolean isStackExpanded() {
Mark Renouf71a3af62019-04-08 15:02:54 -0400475 return mBubbleData.isExpanded();
476 }
477
478 /**
479 * Tell the stack of bubbles to expand.
480 */
481 public void expandStack() {
482 mBubbleData.setExpanded(true);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800483 }
484
485 /**
486 * Tell the stack of bubbles to collapse.
487 */
488 public void collapseStack() {
Mark Renouf71a3af62019-04-08 15:02:54 -0400489 mBubbleData.setExpanded(false /* expanded */);
490 }
491
Mady Mellorce23c462019-06-17 17:30:07 -0700492 /**
Mady Mellore28fe102019-07-09 15:33:32 -0700493 * True if either:
494 * (1) There is a bubble associated with the provided key and if its notification is hidden
495 * from the shade.
496 * (2) There is a group summary associated with the provided key that is hidden from the shade
497 * because it has been dismissed but still has child bubbles active.
Mady Mellorce23c462019-06-17 17:30:07 -0700498 *
Mady Mellore28fe102019-07-09 15:33:32 -0700499 * False otherwise.
Mady Mellorce23c462019-06-17 17:30:07 -0700500 */
501 public boolean isBubbleNotificationSuppressedFromShade(String key) {
Mady Mellore28fe102019-07-09 15:33:32 -0700502 boolean isBubbleAndSuppressed = mBubbleData.hasBubbleWithKey(key)
Mady Mellorb8aaf972019-11-26 10:28:00 -0800503 && !mBubbleData.getBubbleWithKey(key).showInShade();
Evan Laird181de622019-10-24 09:53:02 -0400504 NotificationEntry entry = mNotificationEntryManager.getActiveNotificationUnfiltered(key);
Ned Burns00b4b2d2019-10-17 22:09:27 -0400505 String groupKey = entry != null ? entry.getSbn().getGroupKey() : null;
Mady Mellore28fe102019-07-09 15:33:32 -0700506 boolean isSuppressedSummary = mBubbleData.isSummarySuppressed(groupKey);
Mady Mellore4348272019-07-29 17:43:36 -0700507 boolean isSummary = key.equals(mBubbleData.getSummaryKey(groupKey));
508 return (isSummary && isSuppressedSummary) || isBubbleAndSuppressed;
Mady Mellorce23c462019-06-17 17:30:07 -0700509 }
510
Mark Renouf71a3af62019-04-08 15:02:54 -0400511 void selectBubble(Bubble bubble) {
512 mBubbleData.setSelectedBubble(bubble);
513 }
514
515 @VisibleForTesting
516 void selectBubble(String key) {
517 Bubble bubble = mBubbleData.getBubbleWithKey(key);
518 selectBubble(bubble);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800519 }
520
521 /**
Mark Renouffec45da2019-03-13 13:24:27 -0400522 * Request the stack expand if needed, then select the specified Bubble as current.
523 *
524 * @param notificationKey the notification key for the bubble to be selected
525 */
526 public void expandStackAndSelectBubble(String notificationKey) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400527 Bubble bubble = mBubbleData.getBubbleWithKey(notificationKey);
528 if (bubble != null) {
529 mBubbleData.setSelectedBubble(bubble);
530 mBubbleData.setExpanded(true);
Mark Renouffec45da2019-03-13 13:24:27 -0400531 }
532 }
533
534 /**
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800535 * Tell the stack of bubbles to be dismissed, this will remove all of the bubbles in the stack.
536 */
Mark Renouf08bc42a2019-03-07 13:01:59 -0500537 void dismissStack(@DismissReason int reason) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400538 mBubbleData.dismissAll(reason);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800539 }
540
541 /**
Mark Renouf041d7262019-02-06 12:09:41 -0500542 * Directs a back gesture at the bubble stack. When opened, the current expanded bubble
543 * is forwarded a back key down/up pair.
544 */
545 public void performBackPressIfNeeded() {
546 if (mStackView != null) {
547 mStackView.performBackPressIfNeeded();
548 }
549 }
550
551 /**
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800552 * Adds or updates a bubble associated with the provided notification entry.
553 *
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400554 * @param notif the notification associated with this bubble.
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800555 */
Mark Renouff97ed462019-04-05 13:46:24 -0400556 void updateBubble(NotificationEntry notif) {
Mady Mellor7f234902019-10-20 12:06:29 -0700557 updateBubble(notif, false /* suppressFlyout */);
Mark Renoufc19b4732019-06-26 12:08:33 -0400558 }
559
560 void updateBubble(NotificationEntry notif, boolean suppressFlyout) {
Mady Mellor7f234902019-10-20 12:06:29 -0700561 updateBubble(notif, suppressFlyout, true /* showInShade */);
562 }
563
564 void updateBubble(NotificationEntry notif, boolean suppressFlyout, boolean showInShade) {
Mady Mellor66efd5e2019-05-15 13:38:11 -0700565 // If this is an interruptive notif, mark that it's interrupted
Ned Burns60e94592019-09-06 14:47:25 -0400566 if (notif.getImportance() >= NotificationManager.IMPORTANCE_HIGH) {
Mady Mellor66efd5e2019-05-15 13:38:11 -0700567 notif.setInterruption();
568 }
Mady Mellor7f234902019-10-20 12:06:29 -0700569 mBubbleData.notificationEntryUpdated(notif, suppressFlyout, showInShade);
570 }
571
572 /**
573 * Called when a user has indicated that an active notification should be shown as a bubble.
574 * <p>
575 * This method will collapse the shade, create the bubble without a flyout or dot, and suppress
576 * the notification from appearing in the shade.
577 *
578 * @param entry the notification to show as a bubble.
579 */
580 public void onUserCreatedBubbleFromNotification(NotificationEntry entry) {
Mady Mellorff076eb2019-11-13 10:12:06 -0800581 if (DEBUG_EXPERIMENTS || DEBUG_BUBBLE_CONTROLLER) {
582 Log.d(TAG, "onUserCreatedBubble: " + entry.getKey());
583 }
Heemin Seogba6337f2019-12-10 15:34:37 -0800584 mShadeController.collapsePanel(true);
Mady Mellor7f234902019-10-20 12:06:29 -0700585 entry.setFlagBubble(true);
586 updateBubble(entry, true /* suppressFlyout */, false /* showInShade */);
Mady Mellorff076eb2019-11-13 10:12:06 -0800587 mUserCreatedBubbles.add(entry.getKey());
Mady Mellor3b86a4f2019-12-11 13:15:41 -0800588 mUserBlockedBubbles.remove(entry.getKey());
Mady Mellor7f234902019-10-20 12:06:29 -0700589 }
590
591 /**
592 * Called when a user has indicated that an active notification appearing as a bubble should
593 * no longer be shown as a bubble.
594 *
595 * @param entry the notification to no longer show as a bubble.
596 */
597 public void onUserDemotedBubbleFromNotification(NotificationEntry entry) {
Mady Mellorff076eb2019-11-13 10:12:06 -0800598 if (DEBUG_EXPERIMENTS || DEBUG_BUBBLE_CONTROLLER) {
599 Log.d(TAG, "onUserDemotedBubble: " + entry.getKey());
600 }
Mady Mellor7f234902019-10-20 12:06:29 -0700601 entry.setFlagBubble(false);
602 removeBubble(entry.getKey(), DISMISS_BLOCKED);
Mady Mellorff076eb2019-11-13 10:12:06 -0800603 mUserCreatedBubbles.remove(entry.getKey());
Mady Mellor3b86a4f2019-12-11 13:15:41 -0800604 if (BubbleExperimentConfig.isPackageWhitelistedToAutoBubble(
605 mContext, entry.getSbn().getPackageName())) {
606 // This package is whitelist but user demoted the bubble, let's save it so we don't
607 // auto-bubble for the whitelist again.
608 mUserBlockedBubbles.add(entry.getKey());
609 }
Mady Mellorff076eb2019-11-13 10:12:06 -0800610 }
611
612 /**
613 * Whether this bubble was explicitly created by the user via a SysUI affordance.
614 */
615 boolean isUserCreatedBubble(String key) {
616 return mUserCreatedBubbles.contains(key);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800617 }
618
619 /**
620 * Removes the bubble associated with the {@param uri}.
Mark Renouf658c6bc2019-01-30 10:26:54 -0500621 * <p>
622 * Must be called from the main thread.
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800623 */
Mark Renouf658c6bc2019-01-30 10:26:54 -0500624 @MainThread
Mark Renouf08bc42a2019-03-07 13:01:59 -0500625 void removeBubble(String key, int reason) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400626 // TEMP: refactor to change this to pass entry
627 Bubble bubble = mBubbleData.getBubbleWithKey(key);
628 if (bubble != null) {
Mady Mellored99c272019-06-13 15:58:30 -0700629 mBubbleData.notificationEntryRemoved(bubble.getEntry(), reason);
Mady Mellore8e07712019-01-23 12:45:33 -0800630 }
631 }
632
Ned Burns01e38212019-01-03 16:32:52 -0500633 @SuppressWarnings("FieldCanBeLocal")
Mady Mellorc2ff0112019-03-28 14:18:06 -0700634 private final NotificationRemoveInterceptor mRemoveInterceptor =
635 new NotificationRemoveInterceptor() {
636 @Override
637 public boolean onNotificationRemoveRequested(String key, int reason) {
Evan Laird181de622019-10-24 09:53:02 -0400638 NotificationEntry entry =
639 mNotificationEntryManager.getActiveNotificationUnfiltered(key);
Ned Burns00b4b2d2019-10-17 22:09:27 -0400640 String groupKey = entry != null ? entry.getSbn().getGroupKey() : null;
Mady Mellor22f2f072019-04-18 13:26:18 -0700641 ArrayList<Bubble> bubbleChildren = mBubbleData.getBubblesInGroup(groupKey);
642
643 boolean inBubbleData = mBubbleData.hasBubbleWithKey(key);
Mady Mellore28fe102019-07-09 15:33:32 -0700644 boolean isSuppressedSummary = (mBubbleData.isSummarySuppressed(groupKey)
645 && mBubbleData.getSummaryKey(groupKey).equals(key));
Mady Mellor22f2f072019-04-18 13:26:18 -0700646 boolean isSummary = entry != null
Ned Burns00b4b2d2019-10-17 22:09:27 -0400647 && entry.getSbn().getNotification().isGroupSummary();
Mady Mellore28fe102019-07-09 15:33:32 -0700648 boolean isSummaryOfBubbles = (isSuppressedSummary || isSummary)
649 && bubbleChildren != null && !bubbleChildren.isEmpty();
Mady Mellor22f2f072019-04-18 13:26:18 -0700650
651 if (!inBubbleData && !isSummaryOfBubbles) {
Mady Mellorc2ff0112019-03-28 14:18:06 -0700652 return false;
653 }
Mady Mellorc2ff0112019-03-28 14:18:06 -0700654
655 final boolean isClearAll = reason == REASON_CANCEL_ALL;
Mady Mellor22f2f072019-04-18 13:26:18 -0700656 final boolean isUserDimiss = reason == REASON_CANCEL || reason == REASON_CLICK;
Mady Mellorc2ff0112019-03-28 14:18:06 -0700657 final boolean isAppCancel = reason == REASON_APP_CANCEL
658 || reason == REASON_APP_CANCEL_ALL;
Mady Mellor22f2f072019-04-18 13:26:18 -0700659 final boolean isSummaryCancel = reason == REASON_GROUP_SUMMARY_CANCELED;
Mady Mellorc2ff0112019-03-28 14:18:06 -0700660
661 // Need to check for !appCancel here because the notification may have
662 // previously been dismissed & entry.isRowDismissed would still be true
Mady Mellorca184aae2019-09-17 16:07:12 -0700663 boolean userRemovedNotif = (entry != null && entry.isRowDismissed() && !isAppCancel)
Mady Mellor22f2f072019-04-18 13:26:18 -0700664 || isClearAll || isUserDimiss || isSummaryCancel;
665
666 if (isSummaryOfBubbles) {
667 return handleSummaryRemovalInterception(entry, userRemovedNotif);
668 }
Mady Mellorc2ff0112019-03-28 14:18:06 -0700669
670 // The bubble notification sticks around in the data as long as the bubble is
671 // not dismissed and the app hasn't cancelled the notification.
Mady Mellor22f2f072019-04-18 13:26:18 -0700672 Bubble bubble = mBubbleData.getBubbleWithKey(key);
Mady Mellorca184aae2019-09-17 16:07:12 -0700673 boolean bubbleExtended = entry != null && entry.isBubble() && userRemovedNotif;
Mady Mellorc2ff0112019-03-28 14:18:06 -0700674 if (bubbleExtended) {
Mady Mellorb8aaf972019-11-26 10:28:00 -0800675 bubble.setShowInShade(false);
676 bubble.setShowDot(false /* show */, true /* animate */);
Beverly85d4c192019-09-30 11:40:39 -0400677 mNotificationEntryManager.updateNotifications(
678 "BubbleController.onNotificationRemoveRequested");
Mady Mellorc2ff0112019-03-28 14:18:06 -0700679 return true;
Mady Mellorff076eb2019-11-13 10:12:06 -0800680 } else if (!userRemovedNotif && entry != null
681 && !isUserCreatedBubble(bubble.getKey())) {
Mady Mellorc2ff0112019-03-28 14:18:06 -0700682 // This wasn't a user removal so we should remove the bubble as well
683 mBubbleData.notificationEntryRemoved(entry, DISMISS_NOTIF_CANCEL);
684 return false;
685 }
686 return false;
687 }
688 };
689
Mady Mellor22f2f072019-04-18 13:26:18 -0700690 private boolean handleSummaryRemovalInterception(NotificationEntry summary,
691 boolean userRemovedNotif) {
Ned Burns00b4b2d2019-10-17 22:09:27 -0400692 String groupKey = summary.getSbn().getGroupKey();
Mady Mellor22f2f072019-04-18 13:26:18 -0700693 ArrayList<Bubble> bubbleChildren = mBubbleData.getBubblesInGroup(groupKey);
694
695 if (userRemovedNotif) {
696 // If it's a user dismiss we mark the children to be hidden from the shade.
697 for (int i = 0; i < bubbleChildren.size(); i++) {
698 Bubble bubbleChild = bubbleChildren.get(i);
699 // As far as group manager is concerned, once a child is no longer shown
700 // in the shade, it is essentially removed.
701 mNotificationGroupManager.onEntryRemoved(bubbleChild.getEntry());
Mady Mellorb8aaf972019-11-26 10:28:00 -0800702 bubbleChild.setShowInShade(false);
703 bubbleChild.setShowDot(false /* show */, true /* animate */);
Mady Mellor22f2f072019-04-18 13:26:18 -0700704 }
705 // And since all children are removed, remove the summary.
706 mNotificationGroupManager.onEntryRemoved(summary);
707
708 // If the summary was auto-generated we don't need to keep that notification around
709 // because apps can't cancel it; so we only intercept & suppress real summaries.
Ned Burns00b4b2d2019-10-17 22:09:27 -0400710 boolean isAutogroupSummary = (summary.getSbn().getNotification().flags
Mady Mellor22f2f072019-04-18 13:26:18 -0700711 & FLAG_AUTOGROUP_SUMMARY) != 0;
Mady Mellore28fe102019-07-09 15:33:32 -0700712 if (!isAutogroupSummary) {
Ned Burns00b4b2d2019-10-17 22:09:27 -0400713 mBubbleData.addSummaryToSuppress(summary.getSbn().getGroupKey(),
714 summary.getKey());
Mady Mellore28fe102019-07-09 15:33:32 -0700715 // Tell shade to update for the suppression
Beverly85d4c192019-09-30 11:40:39 -0400716 mNotificationEntryManager.updateNotifications(
717 "BubbleController.handleSummaryRemovalInterception");
Mady Mellore28fe102019-07-09 15:33:32 -0700718 }
Mady Mellor22f2f072019-04-18 13:26:18 -0700719 return !isAutogroupSummary;
720 } else {
Mady Mellore28fe102019-07-09 15:33:32 -0700721 // If it's not a user dismiss it's a cancel.
Mady Mellor84094222019-12-17 15:04:22 -0800722 for (int i = 0; i < bubbleChildren.size(); i++) {
723 // First check if any of these are user-created (i.e. experimental bubbles)
724 if (mUserCreatedBubbles.contains(bubbleChildren.get(i).getKey())) {
725 // Experimental bubble! Intercept the removal.
726 return true;
727 }
728 }
729 // Not an experimental bubble, safe to remove.
Mady Mellore28fe102019-07-09 15:33:32 -0700730 mBubbleData.removeSuppressedSummary(groupKey);
Mady Mellor84094222019-12-17 15:04:22 -0800731 // Remove any associated bubble children with the summary.
Mady Mellor22f2f072019-04-18 13:26:18 -0700732 for (int i = 0; i < bubbleChildren.size(); i++) {
733 Bubble bubbleChild = bubbleChildren.get(i);
734 mBubbleData.notificationEntryRemoved(bubbleChild.getEntry(),
735 DISMISS_GROUP_CANCELLED);
736 }
737 return false;
738 }
739 }
740
Mady Mellorc2ff0112019-03-28 14:18:06 -0700741 @SuppressWarnings("FieldCanBeLocal")
Ned Burns01e38212019-01-03 16:32:52 -0500742 private final NotificationEntryListener mEntryListener = new NotificationEntryListener() {
743 @Override
Ned Burnsf81c4c42019-01-07 14:10:43 -0500744 public void onPendingEntryAdded(NotificationEntry entry) {
Mady Mellorff076eb2019-11-13 10:12:06 -0800745 boolean previouslyUserCreated = mUserCreatedBubbles.contains(entry.getKey());
Mady Mellor3b86a4f2019-12-11 13:15:41 -0800746 boolean userBlocked = mUserBlockedBubbles.contains(entry.getKey());
Mady Mellor30672942019-12-04 15:43:19 -0800747 boolean wasAdjusted = BubbleExperimentConfig.adjustForExperiments(
Mady Mellor3b86a4f2019-12-11 13:15:41 -0800748 mContext, entry, previouslyUserCreated, userBlocked);
Mady Mellor7f234902019-10-20 12:06:29 -0700749
Mady Mellorca0c24c2019-05-16 16:14:32 -0700750 if (mNotificationInterruptionStateProvider.shouldBubbleUp(entry)
Mady Mellor30672942019-12-04 15:43:19 -0800751 && (canLaunchInActivityView(mContext, entry) || wasAdjusted)) {
Mady Mellorea13b232019-12-05 15:55:46 -0800752 if (wasAdjusted && !previouslyUserCreated) {
753 // Gotta treat the auto-bubbled / whitelisted packaged bubbles as usercreated
754 mUserCreatedBubbles.add(entry.getKey());
755 }
Mark Renouff97ed462019-04-05 13:46:24 -0400756 updateBubble(entry);
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800757 }
758 }
759
760 @Override
761 public void onPreEntryUpdated(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 boolean shouldBubble = mNotificationInterruptionStateProvider.shouldBubbleUp(entry)
Mady Mellor30672942019-12-04 15:43:19 -0800768 && (canLaunchInActivityView(mContext, entry) || wasAdjusted);
Ned Burns00b4b2d2019-10-17 22:09:27 -0400769 if (!shouldBubble && mBubbleData.hasBubbleWithKey(entry.getKey())) {
Mady Melloraa8fef22019-04-11 13:36:40 -0700770 // It was previously a bubble but no longer a bubble -- lets remove it
Ned Burns00b4b2d2019-10-17 22:09:27 -0400771 removeBubble(entry.getKey(), DISMISS_NO_LONGER_BUBBLE);
Mady Mellorff40e012019-05-03 15:34:41 -0700772 } else if (shouldBubble) {
Mady Mellorea13b232019-12-05 15:55:46 -0800773 if (wasAdjusted && !previouslyUserCreated) {
774 // Gotta treat the auto-bubbled / whitelisted packaged bubbles as usercreated
775 mUserCreatedBubbles.add(entry.getKey());
776 }
Mark Renouff97ed462019-04-05 13:46:24 -0400777 updateBubble(entry);
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800778 }
779 }
Mark Renoufbbcf07f2019-05-09 10:42:43 -0400780
781 @Override
782 public void onNotificationRankingUpdated(RankingMap rankingMap) {
783 // Forward to BubbleData to block any bubbles which should no longer be shown
784 mBubbleData.notificationRankingUpdated(rankingMap);
785 }
Ned Burns01e38212019-01-03 16:32:52 -0500786 };
787
Mark Renouf71a3af62019-04-08 15:02:54 -0400788 @SuppressWarnings("FieldCanBeLocal")
Mark Renouf3bc5b362019-04-05 14:37:59 -0400789 private final BubbleData.Listener mBubbleDataListener = new BubbleData.Listener() {
Mark Renouf71a3af62019-04-08 15:02:54 -0400790
Mark Renouf3bc5b362019-04-05 14:37:59 -0400791 @Override
Mark Renouf82a40e62019-05-23 16:16:24 -0400792 public void applyUpdate(BubbleData.Update update) {
793 if (mStackView == null && update.addedBubble != null) {
794 // Lazy init stack view when the first bubble is added.
795 ensureStackViewCreated();
Mark Renouf71a3af62019-04-08 15:02:54 -0400796 }
Mark Renouf82a40e62019-05-23 16:16:24 -0400797
798 // If not yet initialized, ignore all other changes.
799 if (mStackView == null) {
800 return;
801 }
802
803 if (update.addedBubble != null) {
804 mStackView.addBubble(update.addedBubble);
805 }
806
807 // Collapsing? Do this first before remaining steps.
808 if (update.expandedChanged && !update.expanded) {
809 mStackView.setExpanded(false);
810 }
811
812 // Do removals, if any.
Mady Mellor22f2f072019-04-18 13:26:18 -0700813 ArrayList<Pair<Bubble, Integer>> removedBubbles =
814 new ArrayList<>(update.removedBubbles);
815 for (Pair<Bubble, Integer> removed : removedBubbles) {
Mark Renouf82a40e62019-05-23 16:16:24 -0400816 final Bubble bubble = removed.first;
817 @DismissReason final int reason = removed.second;
818 mStackView.removeBubble(bubble);
819
Mark Renoufc19b4732019-06-26 12:08:33 -0400820 // If the bubble is removed for user switching, leave the notification in place.
821 if (reason != DISMISS_USER_CHANGED) {
822 if (!mBubbleData.hasBubbleWithKey(bubble.getKey())
Mady Mellorb8aaf972019-11-26 10:28:00 -0800823 && !bubble.showInShade()) {
Mark Renoufc19b4732019-06-26 12:08:33 -0400824 // The bubble is gone & the notification is gone, time to actually remove it
825 mNotificationEntryManager.performRemoveNotification(
Ned Burns00b4b2d2019-10-17 22:09:27 -0400826 bubble.getEntry().getSbn(), UNDEFINED_DISMISS_REASON);
Mark Renoufc19b4732019-06-26 12:08:33 -0400827 } else {
828 // Update the flag for SysUI
Ned Burns00b4b2d2019-10-17 22:09:27 -0400829 bubble.getEntry().getSbn().getNotification().flags &= ~FLAG_BUBBLE;
Mady Mellor3a0a1b42019-05-23 06:40:21 -0700830
Mark Renoufc19b4732019-06-26 12:08:33 -0400831 // Make sure NoMan knows it's not a bubble anymore so anyone querying it
832 // will get right result back
833 try {
834 mBarService.onNotificationBubbleChanged(bubble.getKey(),
835 false /* isBubble */);
836 } catch (RemoteException e) {
837 // Bad things have happened
838 }
Mark Renouf82a40e62019-05-23 16:16:24 -0400839 }
Mady Mellor22f2f072019-04-18 13:26:18 -0700840
Mady Mellore28fe102019-07-09 15:33:32 -0700841 // Check if removed bubble has an associated suppressed group summary that needs
842 // to be removed now.
Ned Burns00b4b2d2019-10-17 22:09:27 -0400843 final String groupKey = bubble.getEntry().getSbn().getGroupKey();
Mady Mellore28fe102019-07-09 15:33:32 -0700844 if (mBubbleData.isSummarySuppressed(groupKey)
845 && mBubbleData.getBubblesInGroup(groupKey).isEmpty()) {
846 // Time to actually remove the summary.
847 String notifKey = mBubbleData.getSummaryKey(groupKey);
848 mBubbleData.removeSuppressedSummary(groupKey);
849 NotificationEntry entry =
Evan Laird181de622019-10-24 09:53:02 -0400850 mNotificationEntryManager.getActiveNotificationUnfiltered(notifKey);
Mady Mellore28fe102019-07-09 15:33:32 -0700851 mNotificationEntryManager.performRemoveNotification(
Ned Burns00b4b2d2019-10-17 22:09:27 -0400852 entry.getSbn(), UNDEFINED_DISMISS_REASON);
Mady Mellore28fe102019-07-09 15:33:32 -0700853 }
854
Mady Mellor22f2f072019-04-18 13:26:18 -0700855 // Check if summary should be removed from NoManGroup
856 NotificationEntry summary = mNotificationGroupManager.getLogicalGroupSummary(
Ned Burns00b4b2d2019-10-17 22:09:27 -0400857 bubble.getEntry().getSbn());
Mady Mellor22f2f072019-04-18 13:26:18 -0700858 if (summary != null) {
859 ArrayList<NotificationEntry> summaryChildren =
Ned Burns00b4b2d2019-10-17 22:09:27 -0400860 mNotificationGroupManager.getLogicalChildren(summary.getSbn());
861 boolean isSummaryThisNotif = summary.getKey().equals(
862 bubble.getEntry().getKey());
Mady Mellore4348272019-07-29 17:43:36 -0700863 if (!isSummaryThisNotif
864 && (summaryChildren == null || summaryChildren.isEmpty())) {
Mady Mellor22f2f072019-04-18 13:26:18 -0700865 mNotificationEntryManager.performRemoveNotification(
Ned Burns00b4b2d2019-10-17 22:09:27 -0400866 summary.getSbn(), UNDEFINED_DISMISS_REASON);
Mady Mellor22f2f072019-04-18 13:26:18 -0700867 }
868 }
Mady Mellora54e9fa2019-04-18 13:26:18 -0700869 }
870 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400871
Mark Renouf82a40e62019-05-23 16:16:24 -0400872 if (update.updatedBubble != null) {
873 mStackView.updateBubble(update.updatedBubble);
Mark Renouf71a3af62019-04-08 15:02:54 -0400874 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400875
Mark Renouf82a40e62019-05-23 16:16:24 -0400876 if (update.orderChanged) {
877 mStackView.updateBubbleOrder(update.bubbles);
Mark Renoufba5ab512019-05-02 15:21:01 -0400878 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400879
Mark Renouf82a40e62019-05-23 16:16:24 -0400880 if (update.selectionChanged) {
881 mStackView.setSelectedBubble(update.selectedBubble);
Mady Mellor740d85d2019-07-09 15:26:47 -0700882 if (update.selectedBubble != null) {
883 mNotificationGroupManager.updateSuppression(
884 update.selectedBubble.getEntry());
885 }
Mark Renouf71a3af62019-04-08 15:02:54 -0400886 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400887
Mark Renouf82a40e62019-05-23 16:16:24 -0400888 // Expanding? Apply this last.
889 if (update.expandedChanged && update.expanded) {
890 mStackView.setExpanded(true);
Mark Renouf71a3af62019-04-08 15:02:54 -0400891 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400892
Beverly85d4c192019-09-30 11:40:39 -0400893 mNotificationEntryManager.updateNotifications(
894 "BubbleData.Listener.applyUpdate");
Lyn Han6c40fe72019-05-08 14:06:33 -0700895 updateStack();
Mark Renouf9ba6cea2019-04-17 11:53:50 -0400896
Issei Suzukia8d07312019-06-07 12:56:19 +0200897 if (DEBUG_BUBBLE_CONTROLLER) {
Mark Renouf9ba6cea2019-04-17 11:53:50 -0400898 Log.d(TAG, "[BubbleData]");
Lyn Han767d70e2019-12-10 18:02:23 -0800899 Log.d(TAG, BubbleDebugConfig.formatBubblesString(mBubbleData.getBubbles(),
Mark Renouf9ba6cea2019-04-17 11:53:50 -0400900 mBubbleData.getSelectedBubble()));
901
902 if (mStackView != null) {
903 Log.d(TAG, "[BubbleStackView]");
Lyn Han767d70e2019-12-10 18:02:23 -0800904 Log.d(TAG, BubbleDebugConfig.formatBubblesString(mStackView.getBubblesOnScreen(),
Mark Renouf9ba6cea2019-04-17 11:53:50 -0400905 mStackView.getExpandedBubble()));
906 }
907 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400908 }
909 };
910
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800911 /**
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400912 * Lets any listeners know if bubble state has changed.
Lyn Han6c40fe72019-05-08 14:06:33 -0700913 * Updates the visibility of the bubbles based on current state.
914 * Does not un-bubble, just hides or un-hides. Notifies any
915 * {@link BubbleStateChangeListener}s of visibility changes.
916 * Updates stack description for TalkBack focus.
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800917 */
Lyn Han6c40fe72019-05-08 14:06:33 -0700918 public void updateStack() {
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800919 if (mStackView == null) {
920 return;
Mady Mellord1c78b262018-11-06 18:04:40 -0800921 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800922 if (mStatusBarStateListener.getCurrentState() == SHADE && hasBubbles()) {
923 // Bubbles only appear in unlocked shade
924 mStackView.setVisibility(hasBubbles() ? VISIBLE : INVISIBLE);
Mady Mellor698d9e82019-08-01 23:11:53 +0000925 } else if (mStackView != null) {
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800926 mStackView.setVisibility(INVISIBLE);
Mady Mellor5549dd22018-11-06 18:07:34 -0800927 }
Lyn Han6c40fe72019-05-08 14:06:33 -0700928
Mady Mellor698d9e82019-08-01 23:11:53 +0000929 // Let listeners know if bubble state changed.
Lyn Han6c40fe72019-05-08 14:06:33 -0700930 boolean hadBubbles = mStatusBarWindowController.getBubblesShowing();
Mady Mellor698d9e82019-08-01 23:11:53 +0000931 boolean hasBubblesShowing = hasBubbles() && mStackView.getVisibility() == VISIBLE;
Mady Mellor88552b82019-08-05 22:38:59 +0000932 mStatusBarWindowController.setBubblesShowing(hasBubblesShowing);
Lyn Han6c40fe72019-05-08 14:06:33 -0700933 if (mStateChangeListener != null && hadBubbles != hasBubblesShowing) {
934 mStateChangeListener.onHasBubblesChanged(hasBubblesShowing);
935 }
936
937 mStackView.updateContentDescription();
Mady Mellord1c78b262018-11-06 18:04:40 -0800938 }
939
940 /**
941 * Rect indicating the touchable region for the bubble stack / expanded stack.
942 */
943 public Rect getTouchableRegion() {
944 if (mStackView == null || mStackView.getVisibility() != VISIBLE) {
945 return null;
946 }
947 mStackView.getBoundsOnScreen(mTempRect);
948 return mTempRect;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800949 }
950
Mady Mellor390bff42019-04-05 15:09:01 -0700951 /**
952 * The display id of the expanded view, if the stack is expanded and not occluded by the
953 * status bar, otherwise returns {@link Display#INVALID_DISPLAY}.
954 */
955 public int getExpandedDisplayId(Context context) {
Issei Suzukicac2a502019-04-16 16:52:50 +0200956 final Bubble bubble = getExpandedBubble(context);
957 return bubble != null ? bubble.getDisplayId() : INVALID_DISPLAY;
958 }
959
960 @Nullable
961 private Bubble getExpandedBubble(Context context) {
Joel Galenson4071ddb2019-04-18 13:30:45 -0700962 if (mStackView == null) {
Issei Suzukicac2a502019-04-16 16:52:50 +0200963 return null;
Joel Galenson4071ddb2019-04-18 13:30:45 -0700964 }
Issei Suzukicac2a502019-04-16 16:52:50 +0200965 final boolean defaultDisplay = context.getDisplay() != null
Mady Mellor390bff42019-04-05 15:09:01 -0700966 && context.getDisplay().getDisplayId() == DEFAULT_DISPLAY;
Issei Suzukicac2a502019-04-16 16:52:50 +0200967 final Bubble expandedBubble = mStackView.getExpandedBubble();
968 if (defaultDisplay && expandedBubble != null && isStackExpanded()
Mady Mellor390bff42019-04-05 15:09:01 -0700969 && !mStatusBarWindowController.getPanelExpanded()) {
Issei Suzukicac2a502019-04-16 16:52:50 +0200970 return expandedBubble;
Mady Mellor390bff42019-04-05 15:09:01 -0700971 }
Issei Suzukicac2a502019-04-16 16:52:50 +0200972 return null;
Mady Mellor390bff42019-04-05 15:09:01 -0700973 }
974
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800975 @VisibleForTesting
976 BubbleStackView getStackView() {
977 return mStackView;
978 }
979
Mady Mellor70cba7bb2019-07-02 15:06:07 -0700980 /**
981 * Description of current bubble state.
982 */
983 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
984 pw.println("BubbleController state:");
985 mBubbleData.dump(fd, pw, args);
986 pw.println();
Joshua Tsuji395bcfe2019-07-02 19:23:23 -0400987 if (mStackView != null) {
988 mStackView.dump(fd, pw, args);
989 }
990 pw.println();
Mady Mellor70cba7bb2019-07-02 15:06:07 -0700991 }
992
Mady Mellore80930e2019-03-21 16:00:45 -0700993 /**
Mark Renoufcecc77b2019-01-30 16:32:24 -0500994 * This task stack listener is responsible for responding to tasks moved to the front
995 * which are on the default (main) display. When this happens, expanded bubbles must be
996 * collapsed so the user may interact with the app which was just moved to the front.
997 * <p>
998 * This listener is registered with SystemUI's ActivityManagerWrapper which dispatches
999 * these calls via a main thread Handler.
1000 */
1001 @MainThread
1002 private class BubbleTaskStackListener extends TaskStackChangeListener {
1003
Mark Renoufcecc77b2019-01-30 16:32:24 -05001004 @Override
Mark Renoufc808f062019-02-07 15:20:37 -05001005 public void onTaskMovedToFront(RunningTaskInfo taskInfo) {
1006 if (mStackView != null && taskInfo.displayId == Display.DEFAULT_DISPLAY) {
Mady Mellor047e24e2019-08-05 11:35:40 -07001007 if (!mStackView.isExpansionAnimating()) {
1008 mBubbleData.setExpanded(false);
1009 }
Mark Renoufcecc77b2019-01-30 16:32:24 -05001010 }
1011 }
1012
Mark Renoufcecc77b2019-01-30 16:32:24 -05001013 @Override
Mark Renoufa12e8762019-03-07 15:43:01 -05001014 public void onActivityLaunchOnSecondaryDisplayRerouted() {
Mark Renoufcecc77b2019-01-30 16:32:24 -05001015 if (mStackView != null) {
Mark Renouf71a3af62019-04-08 15:02:54 -04001016 mBubbleData.setExpanded(false);
Mark Renoufcecc77b2019-01-30 16:32:24 -05001017 }
1018 }
Mark Renouf446251d2019-04-26 10:22:41 -04001019
1020 @Override
1021 public void onBackPressedOnTaskRoot(RunningTaskInfo taskInfo) {
1022 if (mStackView != null && taskInfo.displayId == getExpandedDisplayId(mContext)) {
1023 mBubbleData.setExpanded(false);
1024 }
1025 }
Issei Suzukicac2a502019-04-16 16:52:50 +02001026
1027 @Override
1028 public void onSingleTaskDisplayDrawn(int displayId) {
Mady Mellor5186b132019-09-16 17:55:48 -07001029 final Bubble expandedBubble = mStackView != null
1030 ? mStackView.getExpandedBubble()
1031 : null;
Issei Suzukicac2a502019-04-16 16:52:50 +02001032 if (expandedBubble != null && expandedBubble.getDisplayId() == displayId) {
1033 expandedBubble.setContentVisibility(true);
1034 }
1035 }
Issei Suzuki734bc942019-06-05 13:59:52 +02001036
1037 @Override
1038 public void onSingleTaskDisplayEmpty(int displayId) {
Mady Mellor5186b132019-09-16 17:55:48 -07001039 final Bubble expandedBubble = mStackView != null
1040 ? mStackView.getExpandedBubble()
1041 : null;
Mady Mellorca184aae2019-09-17 16:07:12 -07001042 int expandedId = expandedBubble != null ? expandedBubble.getDisplayId() : -1;
1043 if (mStackView != null && mStackView.isExpanded() && expandedId == displayId) {
Issei Suzuki734bc942019-06-05 13:59:52 +02001044 mBubbleData.setExpanded(false);
Issei Suzuki734bc942019-06-05 13:59:52 +02001045 }
Mady Mellorca184aae2019-09-17 16:07:12 -07001046 mBubbleData.notifyDisplayEmpty(displayId);
Issei Suzuki734bc942019-06-05 13:59:52 +02001047 }
Mark Renoufcecc77b2019-01-30 16:32:24 -05001048 }
1049
Mady Mellorca0c24c2019-05-16 16:14:32 -07001050 /**
1051 * Whether an intent is properly configured to display in an {@link android.app.ActivityView}.
1052 *
1053 * Keep checks in sync with NotificationManagerService#canLaunchInActivityView. Typically
1054 * that should filter out any invalid bubbles, but should protect SysUI side just in case.
1055 *
1056 * @param context the context to use.
1057 * @param entry the entry to bubble.
1058 */
1059 static boolean canLaunchInActivityView(Context context, NotificationEntry entry) {
1060 PendingIntent intent = entry.getBubbleMetadata() != null
1061 ? entry.getBubbleMetadata().getIntent()
1062 : null;
1063 if (intent == null) {
Mady Mellor7f234902019-10-20 12:06:29 -07001064 Log.w(TAG, "Unable to create bubble -- no intent: " + entry.getKey());
Mady Mellorca0c24c2019-05-16 16:14:32 -07001065 return false;
1066 }
Mady Mellorf3b9fab2019-11-13 17:27:32 -08001067 PackageManager packageManager = StatusBar.getPackageManagerForUser(
1068 context, entry.getSbn().getUser().getIdentifier());
Mady Mellorca0c24c2019-05-16 16:14:32 -07001069 ActivityInfo info =
Mady Mellorf3b9fab2019-11-13 17:27:32 -08001070 intent.getIntent().resolveActivityInfo(packageManager, 0);
Mady Mellorca0c24c2019-05-16 16:14:32 -07001071 if (info == null) {
Mady Mellor7f234902019-10-20 12:06:29 -07001072 Log.w(TAG, "Unable to send as bubble, "
1073 + entry.getKey() + " couldn't find activity info for intent: "
Mady Mellorca0c24c2019-05-16 16:14:32 -07001074 + intent);
1075 return false;
1076 }
1077 if (!ActivityInfo.isResizeableMode(info.resizeMode)) {
Mady Mellor7f234902019-10-20 12:06:29 -07001078 Log.w(TAG, "Unable to send as bubble, "
1079 + entry.getKey() + " activity is not resizable for intent: "
Mady Mellorca0c24c2019-05-16 16:14:32 -07001080 + intent);
1081 return false;
1082 }
Mady Mellorca0c24c2019-05-16 16:14:32 -07001083 return true;
1084 }
1085
Joshua Tsujia19515f2019-02-13 18:02:29 -05001086 /** PinnedStackListener that dispatches IME visibility updates to the stack. */
Hongwei Wang43a752b2019-09-17 20:20:30 +00001087 private class BubblesImeListener extends PinnedStackListenerForwarder.PinnedStackListener {
Joshua Tsujia19515f2019-02-13 18:02:29 -05001088 @Override
Joshua Tsujid9422832019-03-05 13:32:37 -05001089 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) {
1090 if (mStackView != null && mStackView.getBubbleCount() > 0) {
1091 mStackView.post(() -> mStackView.onImeVisibilityChanged(imeVisible, imeHeight));
Joshua Tsujia19515f2019-02-13 18:02:29 -05001092 }
1093 }
Joshua Tsujia19515f2019-02-13 18:02:29 -05001094 }
Aran Inkaa4dfa72019-11-18 16:49:07 -05001095
1096 // TODO: Copied from RemoteInputView. Consolidate RemoteInput intent logic.
1097 private Intent prepareRemoteInputFromData(String contentType, Uri data,
1098 RemoteInput remoteInput, NotificationEntry entry) {
1099 HashMap<String, Uri> results = new HashMap<>();
1100 results.put(contentType, data);
1101 mRemoteInputUriController.grantInlineReplyUriPermission(entry.getSbn(), data);
1102 Intent fillInIntent = new Intent().addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
1103 RemoteInput.addDataResultToIntent(remoteInput, fillInIntent, results);
1104
1105 return fillInIntent;
1106 }
1107
1108 // TODO: Copied from RemoteInputView. Consolidate RemoteInput intent logic.
1109 private void sendRemoteInput(Intent intent, NotificationEntry entry,
1110 PendingIntent pendingIntent) {
1111 // Tell ShortcutManager that this package has been "activated". ShortcutManager
1112 // will reset the throttling for this package.
1113 // Strictly speaking, the intent receiver may be different from the notification publisher,
1114 // but that's an edge case, and also because we can't always know which package will receive
1115 // an intent, so we just reset for the publisher.
1116 mContext.getSystemService(ShortcutManager.class).onApplicationActive(
1117 entry.getSbn().getPackageName(),
1118 entry.getSbn().getUser().getIdentifier());
1119
1120 try {
1121 pendingIntent.send(mContext, 0, intent);
1122 } catch (PendingIntent.CanceledException e) {
1123 Log.i(TAG, "Unable to send remote input result", e);
1124 }
1125 }
1126
1127 private void sendScreenshotToBubble(Bubble bubble) {
Aran Ink141a8152019-12-12 13:31:23 -05001128 mScreenshotHelper.takeScreenshot(
1129 android.view.WindowManager.TAKE_SCREENSHOT_FULLSCREEN,
1130 true /* hasStatus */,
1131 true /* hasNav */,
1132 mHandler,
1133 new Consumer<Uri>() {
1134 @Override
1135 public void accept(Uri uri) {
1136 if (uri != null) {
1137 NotificationEntry entry = bubble.getEntry();
1138 Pair<RemoteInput, Notification.Action> pair = entry.getSbn()
1139 .getNotification().findRemoteInputActionPair(false);
1140 if (pair != null) {
1141 RemoteInput remoteInput = pair.first;
1142 Notification.Action action = pair.second;
1143 Intent dataIntent = prepareRemoteInputFromData("image/png", uri,
1144 remoteInput, entry);
1145 sendRemoteInput(dataIntent, entry, action.actionIntent);
1146 mBubbleData.setSelectedBubble(bubble);
1147 mBubbleData.setExpanded(true);
1148 } else {
1149 Log.w(TAG, "No RemoteInput found for notification: "
1150 + entry.getSbn().getKey());
Aran Inkaa4dfa72019-11-18 16:49:07 -05001151 }
Aran Ink141a8152019-12-12 13:31:23 -05001152 }
1153 }
1154 });
Aran Inkaa4dfa72019-11-18 16:49:07 -05001155 }
1156
1157 private final BubbleScreenshotListener mBubbleScreenshotListener =
1158 bubble -> sendScreenshotToBubble(bubble);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -08001159}