blob: 39b886d336e79478e580ea5ed3c5148b6c68d408 [file] [log] [blame]
Winson Chunge2d72172018-01-25 17:46:20 +00001/*
2 * Copyright (C) 2017 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.server.wm;
18
19import static android.app.WindowConfiguration.ACTIVITY_TYPE_HOME;
20import static android.app.WindowConfiguration.WINDOWING_MODE_SPLIT_SCREEN_PRIMARY;
21import static android.view.RemoteAnimationTarget.MODE_CLOSING;
Winson Chunga89ffed2018-01-25 17:46:11 +000022import static android.view.WindowManager.INPUT_CONSUMER_RECENTS_ANIMATION;
Winson Chunge2d72172018-01-25 17:46:20 +000023import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_WALLPAPER;
24import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
25import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
26
Winson Chunge2d72172018-01-25 17:46:20 +000027import android.app.ActivityManager.TaskSnapshot;
28import android.app.WindowConfiguration;
Winson Chunge2d72172018-01-25 17:46:20 +000029import android.graphics.Point;
30import android.graphics.Rect;
31import android.os.Binder;
32import android.os.RemoteException;
33import android.os.SystemClock;
Winson Chung23aa7b12018-02-01 11:41:43 -080034import android.util.ArraySet;
Winson Chunge2d72172018-01-25 17:46:20 +000035import android.util.Log;
36import android.util.Slog;
Vadim Tryshev593e9562018-03-08 17:15:45 -080037import android.util.SparseBooleanArray;
Winson Chunge2d72172018-01-25 17:46:20 +000038import android.view.IRecentsAnimationController;
39import android.view.IRecentsAnimationRunner;
40import android.view.RemoteAnimationTarget;
41import android.view.SurfaceControl;
42import android.view.SurfaceControl.Transaction;
43import com.android.server.wm.SurfaceAnimator.OnAnimationFinishedCallback;
Winson Chung23aa7b12018-02-01 11:41:43 -080044import com.google.android.collect.Sets;
Winson Chunge2d72172018-01-25 17:46:20 +000045import java.io.PrintWriter;
46import java.util.ArrayList;
47
48/**
49 * Controls a single instance of the remote driven recents animation. In particular, this allows
50 * the calling SystemUI to animate the visible task windows as a part of the transition. The remote
51 * runner is provided an animation controller which allows it to take screenshots and to notify
52 * window manager when the animation is completed. In addition, window manager may also notify the
53 * app if it requires the animation to be canceled at any time (ie. due to timeout, etc.)
54 */
55public class RecentsAnimationController {
56 private static final String TAG = TAG_WITH_CLASS_NAME ? "RecentsAnimationController" : TAG_WM;
57 private static final boolean DEBUG = false;
58
59 private final WindowManagerService mService;
60 private final IRecentsAnimationRunner mRunner;
61 private final RecentsAnimationCallbacks mCallbacks;
62 private final ArrayList<TaskAnimationAdapter> mPendingAnimations = new ArrayList<>();
Winson Chungddf62972018-02-12 11:10:04 -080063 private final int mDisplayId;
Winson Chunge2d72172018-01-25 17:46:20 +000064
65 // The recents component app token that is shown behind the visibile tasks
66 private AppWindowToken mHomeAppToken;
Winson Chung584d6522018-02-07 23:57:38 +000067 private Rect mMinimizedHomeBounds = new Rect();
Winson Chunge2d72172018-01-25 17:46:20 +000068
69 // We start the RecentsAnimationController in a pending-start state since we need to wait for
70 // the wallpaper/activity to draw before we can give control to the handler to start animating
71 // the visible task surfaces
72 private boolean mPendingStart = true;
73
74 // Set when the animation has been canceled
75 private boolean mCanceled = false;
76
77 // Whether or not the input consumer is enabled. The input consumer must be both registered and
78 // enabled for it to start intercepting touch events.
79 private boolean mInputConsumerEnabled;
80
Winson Chunga89ffed2018-01-25 17:46:11 +000081 private Rect mTmpRect = new Rect();
82
Winson Chunge2d72172018-01-25 17:46:20 +000083 public interface RecentsAnimationCallbacks {
84 void onAnimationFinished(boolean moveHomeToTop);
85 }
86
87 private final IRecentsAnimationController mController =
88 new IRecentsAnimationController.Stub() {
89
90 @Override
91 public TaskSnapshot screenshotTask(int taskId) {
92 if (DEBUG) Log.d(TAG, "screenshotTask(" + taskId + "): mCanceled=" + mCanceled);
93 long token = Binder.clearCallingIdentity();
94 try {
95 synchronized (mService.getWindowManagerLock()) {
96 if (mCanceled) {
97 return null;
98 }
99 for (int i = mPendingAnimations.size() - 1; i >= 0; i--) {
100 final TaskAnimationAdapter adapter = mPendingAnimations.get(i);
101 final Task task = adapter.mTask;
102 if (task.mTaskId == taskId) {
Winson Chung23aa7b12018-02-01 11:41:43 -0800103 final TaskSnapshotController snapshotController =
104 mService.mTaskSnapshotController;
105 final ArraySet<Task> tasks = Sets.newArraySet(task);
106 snapshotController.snapshotTasks(tasks);
107 snapshotController.addSkipClosingAppSnapshotTasks(tasks);
108 return snapshotController.getSnapshot(taskId, 0 /* userId */,
109 false /* restoreFromDisk */, false /* reducedResolution */);
Winson Chunge2d72172018-01-25 17:46:20 +0000110 }
111 }
112 return null;
113 }
114 } finally {
115 Binder.restoreCallingIdentity(token);
116 }
117 }
118
119 @Override
120 public void finish(boolean moveHomeToTop) {
121 if (DEBUG) Log.d(TAG, "finish(" + moveHomeToTop + "): mCanceled=" + mCanceled);
122 long token = Binder.clearCallingIdentity();
123 try {
124 synchronized (mService.getWindowManagerLock()) {
125 if (mCanceled) {
126 return;
127 }
128 }
129
130 // Note, the callback will handle its own synchronization, do not lock on WM lock
131 // prior to calling the callback
132 mCallbacks.onAnimationFinished(moveHomeToTop);
133 } finally {
134 Binder.restoreCallingIdentity(token);
135 }
136 }
137
138 @Override
139 public void setInputConsumerEnabled(boolean enabled) {
140 if (DEBUG) Log.d(TAG, "setInputConsumerEnabled(" + enabled + "): mCanceled="
141 + mCanceled);
142 long token = Binder.clearCallingIdentity();
143 try {
144 synchronized (mService.getWindowManagerLock()) {
145 if (mCanceled) {
146 return;
147 }
148
149 mInputConsumerEnabled = enabled;
150 mService.mInputMonitor.updateInputWindowsLw(true /*force*/);
151 mService.scheduleAnimationLocked();
152 }
153 } finally {
154 Binder.restoreCallingIdentity(token);
155 }
156 }
157 };
158
159 /**
Winson Chunge2d72172018-01-25 17:46:20 +0000160 * @param remoteAnimationRunner The remote runner which should be notified when the animation is
161 * ready to start or has been canceled
162 * @param callbacks Callbacks to be made when the animation finishes
Winson Chunge2d72172018-01-25 17:46:20 +0000163 */
164 RecentsAnimationController(WindowManagerService service,
165 IRecentsAnimationRunner remoteAnimationRunner, RecentsAnimationCallbacks callbacks,
166 int displayId) {
167 mService = service;
168 mRunner = remoteAnimationRunner;
169 mCallbacks = callbacks;
Winson Chungddf62972018-02-12 11:10:04 -0800170 mDisplayId = displayId;
171 }
Winson Chunge2d72172018-01-25 17:46:20 +0000172
Winson Chungddf62972018-02-12 11:10:04 -0800173 /**
174 * Initializes the recents animation controller. This is a separate call from the constructor
175 * because it may call cancelAnimation() which needs to properly clean up the controller
176 * in the window manager.
177 */
Vadim Tryshev593e9562018-03-08 17:15:45 -0800178 public void initialize(SparseBooleanArray recentTaskIds) {
Winson Chunge2d72172018-01-25 17:46:20 +0000179 // Make leashes for each of the visible tasks and add it to the recents animation to be
180 // started
Winson Chungddf62972018-02-12 11:10:04 -0800181 final DisplayContent dc = mService.mRoot.getDisplayContent(mDisplayId);
182 final ArrayList<Task> visibleTasks = dc.getVisibleTasks();
Winson Chunge2d72172018-01-25 17:46:20 +0000183 final int taskCount = visibleTasks.size();
184 for (int i = 0; i < taskCount; i++) {
185 final Task task = visibleTasks.get(i);
186 final WindowConfiguration config = task.getWindowConfiguration();
187 if (config.tasksAreFloating()
188 || config.getWindowingMode() == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY
189 || config.getActivityType() == ACTIVITY_TYPE_HOME) {
190 continue;
191 }
Vadim Tryshev593e9562018-03-08 17:15:45 -0800192 addAnimation(task, !recentTaskIds.get(task.mTaskId));
Winson Chunge2d72172018-01-25 17:46:20 +0000193 }
194
Winson Chungddf62972018-02-12 11:10:04 -0800195 // Skip the animation if there is nothing to animate
196 if (mPendingAnimations.isEmpty()) {
197 cancelAnimation();
198 return;
199 }
200
Winson Chunge2d72172018-01-25 17:46:20 +0000201 // Adjust the wallpaper visibility for the showing home activity
202 final AppWindowToken recentsComponentAppToken =
203 dc.getHomeStack().getTopChild().getTopFullscreenAppToken();
204 if (recentsComponentAppToken != null) {
205 if (DEBUG) Log.d(TAG, "setHomeApp(" + recentsComponentAppToken.getName() + ")");
206 mHomeAppToken = recentsComponentAppToken;
Winson Chunge2d72172018-01-25 17:46:20 +0000207 if (recentsComponentAppToken.windowsCanBeWallpaperTarget()) {
208 dc.pendingLayoutChanges |= FINISH_LAYOUT_REDO_WALLPAPER;
209 dc.setLayoutNeeded();
210 }
211 }
212
Winson Chung584d6522018-02-07 23:57:38 +0000213 // Save the minimized home height
214 dc.getDockedDividerController().getHomeStackBoundsInDockedMode(mMinimizedHomeBounds);
215
Winson Chunge2d72172018-01-25 17:46:20 +0000216 mService.mWindowPlacerLocked.performSurfacePlacement();
217 }
218
Vadim Tryshev593e9562018-03-08 17:15:45 -0800219 private void addAnimation(Task task, boolean isRecentTaskInvisible) {
Winson Chunge2d72172018-01-25 17:46:20 +0000220 if (DEBUG) Log.d(TAG, "addAnimation(" + task.getName() + ")");
221 final SurfaceAnimator anim = new SurfaceAnimator(task, null /* animationFinishedCallback */,
Chavi Weingartenb736e322018-02-23 00:27:54 +0000222 mService);
Vadim Tryshev593e9562018-03-08 17:15:45 -0800223 final TaskAnimationAdapter taskAdapter = new TaskAnimationAdapter(task,
224 isRecentTaskInvisible);
Winson Chunge2d72172018-01-25 17:46:20 +0000225 anim.startAnimation(task.getPendingTransaction(), taskAdapter, false /* hidden */);
226 task.commitPendingTransaction();
227 mPendingAnimations.add(taskAdapter);
228 }
229
230 void startAnimation() {
Winson Chungddf62972018-02-12 11:10:04 -0800231 if (DEBUG) Log.d(TAG, "startAnimation(): mPendingStart=" + mPendingStart
232 + " mCanceled=" + mCanceled);
233 if (!mPendingStart || mCanceled) {
234 // Skip starting if we've already started or canceled the animation
Winson Chunge2d72172018-01-25 17:46:20 +0000235 return;
236 }
237 try {
238 final RemoteAnimationTarget[] appAnimations =
239 new RemoteAnimationTarget[mPendingAnimations.size()];
240 for (int i = mPendingAnimations.size() - 1; i >= 0; i--) {
241 appAnimations[i] = mPendingAnimations.get(i).createRemoteAnimationApp();
242 }
243 mPendingStart = false;
Winson Chung584d6522018-02-07 23:57:38 +0000244
245 final Rect minimizedHomeBounds =
246 mHomeAppToken != null && mHomeAppToken.inSplitScreenSecondaryWindowingMode()
247 ? mMinimizedHomeBounds : null;
248 final Rect contentInsets =
249 mHomeAppToken != null && mHomeAppToken.findMainWindow() != null
250 ? mHomeAppToken.findMainWindow().mContentInsets : null;
251 mRunner.onAnimationStart_New(mController, appAnimations, contentInsets,
252 minimizedHomeBounds);
Winson Chunge2d72172018-01-25 17:46:20 +0000253 } catch (RemoteException e) {
254 Slog.e(TAG, "Failed to start recents animation", e);
255 }
256 }
257
258 void cancelAnimation() {
259 if (DEBUG) Log.d(TAG, "cancelAnimation()");
Winson Chung65fc89a2018-02-28 08:32:12 -0800260 synchronized (mService.getWindowManagerLock()) {
261 if (mCanceled) {
262 // We've already canceled the animation
263 return;
264 }
265 mCanceled = true;
266 try {
267 mRunner.onAnimationCanceled();
268 } catch (RemoteException e) {
269 Slog.e(TAG, "Failed to cancel recents animation", e);
270 }
Winson Chunge2d72172018-01-25 17:46:20 +0000271 }
Winson Chunge2d72172018-01-25 17:46:20 +0000272 // Clean up and return to the previous app
Winson Chung65fc89a2018-02-28 08:32:12 -0800273 // Don't hold the WM lock here as it calls back to AM/RecentsAnimation
Winson Chunge2d72172018-01-25 17:46:20 +0000274 mCallbacks.onAnimationFinished(false /* moveHomeToTop */);
275 }
276
277 void cleanupAnimation() {
278 if (DEBUG) Log.d(TAG, "cleanupAnimation(): mPendingAnimations="
279 + mPendingAnimations.size());
280 for (int i = mPendingAnimations.size() - 1; i >= 0; i--) {
281 final TaskAnimationAdapter adapter = mPendingAnimations.get(i);
282 adapter.mCapturedFinishCallback.onAnimationFinished(adapter);
283 }
284 mPendingAnimations.clear();
285
286 mService.mInputMonitor.updateInputWindowsLw(true /*force*/);
Winson Chunga89ffed2018-01-25 17:46:11 +0000287 mService.destroyInputConsumer(INPUT_CONSUMER_RECENTS_ANIMATION);
Winson Chunge2d72172018-01-25 17:46:20 +0000288 }
289
290 void checkAnimationReady(WallpaperController wallpaperController) {
291 if (mPendingStart) {
292 final boolean wallpaperReady = !isHomeAppOverWallpaper()
293 || (wallpaperController.getWallpaperTarget() != null
294 && wallpaperController.wallpaperTransitionReady());
295 if (wallpaperReady) {
296 mService.getRecentsAnimationController().startAnimation();
297 }
298 }
299 }
300
301 boolean isWallpaperVisible(WindowState w) {
302 return w != null && w.mAppToken != null && mHomeAppToken == w.mAppToken
303 && isHomeAppOverWallpaper();
304 }
305
Winson Chunga89ffed2018-01-25 17:46:11 +0000306 boolean hasInputConsumerForApp(AppWindowToken appToken) {
307 return mInputConsumerEnabled && isAnimatingApp(appToken);
308 }
309
310 boolean updateInputConsumerForApp(InputConsumerImpl recentsAnimationInputConsumer,
311 boolean hasFocus) {
312 // Update the input consumer touchable region to match the home app main window
313 final WindowState homeAppMainWindow = mHomeAppToken != null
314 ? mHomeAppToken.findMainWindow()
315 : null;
316 if (homeAppMainWindow != null) {
317 homeAppMainWindow.getBounds(mTmpRect);
318 recentsAnimationInputConsumer.mWindowHandle.hasFocus = hasFocus;
319 recentsAnimationInputConsumer.mWindowHandle.touchableRegion.set(mTmpRect);
320 return true;
321 }
322 return false;
323 }
324
325 private boolean isHomeAppOverWallpaper() {
Winson Chunge2d72172018-01-25 17:46:20 +0000326 if (mHomeAppToken == null) {
327 return false;
328 }
329 return mHomeAppToken.windowsCanBeWallpaperTarget();
330 }
331
Winson Chunga89ffed2018-01-25 17:46:11 +0000332 private boolean isAnimatingApp(AppWindowToken appToken) {
Winson Chunge2d72172018-01-25 17:46:20 +0000333 for (int i = mPendingAnimations.size() - 1; i >= 0; i--) {
334 final Task task = mPendingAnimations.get(i).mTask;
335 for (int j = task.getChildCount() - 1; j >= 0; j--) {
336 final AppWindowToken app = task.getChildAt(j);
337 if (app == appToken) {
338 return true;
339 }
340 }
341 }
342 return false;
343 }
344
Winson Chunge2d72172018-01-25 17:46:20 +0000345 private class TaskAnimationAdapter implements AnimationAdapter {
346
Vadim Tryshev593e9562018-03-08 17:15:45 -0800347 private final Task mTask;
Winson Chunge2d72172018-01-25 17:46:20 +0000348 private SurfaceControl mCapturedLeash;
349 private OnAnimationFinishedCallback mCapturedFinishCallback;
Vadim Tryshev593e9562018-03-08 17:15:45 -0800350 private final boolean mIsRecentTaskInvisible;
Winson Chunge2d72172018-01-25 17:46:20 +0000351
Vadim Tryshev593e9562018-03-08 17:15:45 -0800352 TaskAnimationAdapter(Task task, boolean isRecentTaskInvisible) {
Winson Chunge2d72172018-01-25 17:46:20 +0000353 mTask = task;
Vadim Tryshev593e9562018-03-08 17:15:45 -0800354 mIsRecentTaskInvisible = isRecentTaskInvisible;
Winson Chunge2d72172018-01-25 17:46:20 +0000355 }
356
357 RemoteAnimationTarget createRemoteAnimationApp() {
Winson Chung584d6522018-02-07 23:57:38 +0000358 final Point position = new Point();
359 final Rect bounds = new Rect();
360 final WindowContainer container = mTask.getParent();
361 container.getRelativePosition(position);
362 container.getBounds(bounds);
363 final WindowState mainWindow = mTask.getTopVisibleAppMainWindow();
Winson Chunge2d72172018-01-25 17:46:20 +0000364 return new RemoteAnimationTarget(mTask.mTaskId, MODE_CLOSING, mCapturedLeash,
Winson Chung584d6522018-02-07 23:57:38 +0000365 !mTask.fillsParent(), mainWindow.mWinAnimator.mLastClipRect,
366 mainWindow.mContentInsets, mTask.getPrefixOrderIndex(), position, bounds,
Vadim Tryshev593e9562018-03-08 17:15:45 -0800367 mTask.getWindowConfiguration(), mIsRecentTaskInvisible);
Winson Chunge2d72172018-01-25 17:46:20 +0000368 }
369
370 @Override
371 public boolean getDetachWallpaper() {
372 return false;
373 }
374
375 @Override
Jorim Jaggi82c17862018-02-21 17:50:18 +0100376 public boolean getShowWallpaper() {
377 return false;
378 }
379
380 @Override
Winson Chunge2d72172018-01-25 17:46:20 +0000381 public int getBackgroundColor() {
382 return 0;
383 }
384
385 @Override
386 public void startAnimation(SurfaceControl animationLeash, Transaction t,
387 OnAnimationFinishedCallback finishCallback) {
388 mCapturedLeash = animationLeash;
389 mCapturedFinishCallback = finishCallback;
390 }
391
392 @Override
393 public void onAnimationCancelled(SurfaceControl animationLeash) {
394 cancelAnimation();
395 }
396
397 @Override
398 public long getDurationHint() {
399 return 0;
400 }
401
402 @Override
403 public long getStatusBarTransitionsStartTime() {
404 return SystemClock.uptimeMillis();
405 }
406 }
407
408 public void dump(PrintWriter pw, String prefix) {
409 final String innerPrefix = prefix + " ";
410 pw.print(prefix); pw.println(RecentsAnimationController.class.getSimpleName() + ":");
411 pw.print(innerPrefix); pw.println("mPendingStart=" + mPendingStart);
412 pw.print(innerPrefix); pw.println("mHomeAppToken=" + mHomeAppToken);
413 }
414}