blob: 44ef247f9aba7b2aacf43bc0d9147c2527ceaf05 [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;
Winson Chung23aa7b12018-02-01 11:41:43 -080032import android.os.IBinder;
Winson Chunge2d72172018-01-25 17:46:20 +000033import android.os.RemoteException;
34import android.os.SystemClock;
Winson Chung23aa7b12018-02-01 11:41:43 -080035import android.util.ArraySet;
Winson Chunge2d72172018-01-25 17:46:20 +000036import android.util.Log;
37import android.util.Slog;
38import 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 */
178 public void initialize() {
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 }
192 addAnimation(task);
193 }
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
219 private void addAnimation(Task task) {
220 if (DEBUG) Log.d(TAG, "addAnimation(" + task.getName() + ")");
221 final SurfaceAnimator anim = new SurfaceAnimator(task, null /* animationFinishedCallback */,
Chavi Weingarten38804382018-02-15 21:00:15 +0000222 mService.mAnimator::addAfterPrepareSurfacesRunnable, mService);
Winson Chunge2d72172018-01-25 17:46:20 +0000223 final TaskAnimationAdapter taskAdapter = new TaskAnimationAdapter(task);
224 anim.startAnimation(task.getPendingTransaction(), taskAdapter, false /* hidden */);
225 task.commitPendingTransaction();
226 mPendingAnimations.add(taskAdapter);
227 }
228
229 void startAnimation() {
Winson Chungddf62972018-02-12 11:10:04 -0800230 if (DEBUG) Log.d(TAG, "startAnimation(): mPendingStart=" + mPendingStart
231 + " mCanceled=" + mCanceled);
232 if (!mPendingStart || mCanceled) {
233 // Skip starting if we've already started or canceled the animation
Winson Chunge2d72172018-01-25 17:46:20 +0000234 return;
235 }
236 try {
237 final RemoteAnimationTarget[] appAnimations =
238 new RemoteAnimationTarget[mPendingAnimations.size()];
239 for (int i = mPendingAnimations.size() - 1; i >= 0; i--) {
240 appAnimations[i] = mPendingAnimations.get(i).createRemoteAnimationApp();
241 }
242 mPendingStart = false;
Winson Chung584d6522018-02-07 23:57:38 +0000243
244 final Rect minimizedHomeBounds =
245 mHomeAppToken != null && mHomeAppToken.inSplitScreenSecondaryWindowingMode()
246 ? mMinimizedHomeBounds : null;
247 final Rect contentInsets =
248 mHomeAppToken != null && mHomeAppToken.findMainWindow() != null
249 ? mHomeAppToken.findMainWindow().mContentInsets : null;
250 mRunner.onAnimationStart_New(mController, appAnimations, contentInsets,
251 minimizedHomeBounds);
Winson Chunge2d72172018-01-25 17:46:20 +0000252 } catch (RemoteException e) {
253 Slog.e(TAG, "Failed to start recents animation", e);
254 }
255 }
256
257 void cancelAnimation() {
258 if (DEBUG) Log.d(TAG, "cancelAnimation()");
Winson Chung65fc89a2018-02-28 08:32:12 -0800259 synchronized (mService.getWindowManagerLock()) {
260 if (mCanceled) {
261 // We've already canceled the animation
262 return;
263 }
264 mCanceled = true;
265 try {
266 mRunner.onAnimationCanceled();
267 } catch (RemoteException e) {
268 Slog.e(TAG, "Failed to cancel recents animation", e);
269 }
Winson Chunge2d72172018-01-25 17:46:20 +0000270 }
Winson Chunge2d72172018-01-25 17:46:20 +0000271 // Clean up and return to the previous app
Winson Chung65fc89a2018-02-28 08:32:12 -0800272 // Don't hold the WM lock here as it calls back to AM/RecentsAnimation
Winson Chunge2d72172018-01-25 17:46:20 +0000273 mCallbacks.onAnimationFinished(false /* moveHomeToTop */);
274 }
275
276 void cleanupAnimation() {
277 if (DEBUG) Log.d(TAG, "cleanupAnimation(): mPendingAnimations="
278 + mPendingAnimations.size());
279 for (int i = mPendingAnimations.size() - 1; i >= 0; i--) {
280 final TaskAnimationAdapter adapter = mPendingAnimations.get(i);
281 adapter.mCapturedFinishCallback.onAnimationFinished(adapter);
282 }
283 mPendingAnimations.clear();
284
285 mService.mInputMonitor.updateInputWindowsLw(true /*force*/);
Winson Chunga89ffed2018-01-25 17:46:11 +0000286 mService.destroyInputConsumer(INPUT_CONSUMER_RECENTS_ANIMATION);
Winson Chunge2d72172018-01-25 17:46:20 +0000287 }
288
289 void checkAnimationReady(WallpaperController wallpaperController) {
290 if (mPendingStart) {
291 final boolean wallpaperReady = !isHomeAppOverWallpaper()
292 || (wallpaperController.getWallpaperTarget() != null
293 && wallpaperController.wallpaperTransitionReady());
294 if (wallpaperReady) {
295 mService.getRecentsAnimationController().startAnimation();
296 }
297 }
298 }
299
300 boolean isWallpaperVisible(WindowState w) {
301 return w != null && w.mAppToken != null && mHomeAppToken == w.mAppToken
302 && isHomeAppOverWallpaper();
303 }
304
Winson Chunga89ffed2018-01-25 17:46:11 +0000305 boolean hasInputConsumerForApp(AppWindowToken appToken) {
306 return mInputConsumerEnabled && isAnimatingApp(appToken);
307 }
308
309 boolean updateInputConsumerForApp(InputConsumerImpl recentsAnimationInputConsumer,
310 boolean hasFocus) {
311 // Update the input consumer touchable region to match the home app main window
312 final WindowState homeAppMainWindow = mHomeAppToken != null
313 ? mHomeAppToken.findMainWindow()
314 : null;
315 if (homeAppMainWindow != null) {
316 homeAppMainWindow.getBounds(mTmpRect);
317 recentsAnimationInputConsumer.mWindowHandle.hasFocus = hasFocus;
318 recentsAnimationInputConsumer.mWindowHandle.touchableRegion.set(mTmpRect);
319 return true;
320 }
321 return false;
322 }
323
324 private boolean isHomeAppOverWallpaper() {
Winson Chunge2d72172018-01-25 17:46:20 +0000325 if (mHomeAppToken == null) {
326 return false;
327 }
328 return mHomeAppToken.windowsCanBeWallpaperTarget();
329 }
330
Winson Chunga89ffed2018-01-25 17:46:11 +0000331 private boolean isAnimatingApp(AppWindowToken appToken) {
Winson Chunge2d72172018-01-25 17:46:20 +0000332 for (int i = mPendingAnimations.size() - 1; i >= 0; i--) {
333 final Task task = mPendingAnimations.get(i).mTask;
334 for (int j = task.getChildCount() - 1; j >= 0; j--) {
335 final AppWindowToken app = task.getChildAt(j);
336 if (app == appToken) {
337 return true;
338 }
339 }
340 }
341 return false;
342 }
343
Winson Chunge2d72172018-01-25 17:46:20 +0000344 private class TaskAnimationAdapter implements AnimationAdapter {
345
346 private Task mTask;
347 private SurfaceControl mCapturedLeash;
348 private OnAnimationFinishedCallback mCapturedFinishCallback;
349
350 TaskAnimationAdapter(Task task) {
351 mTask = task;
352 }
353
354 RemoteAnimationTarget createRemoteAnimationApp() {
Winson Chung584d6522018-02-07 23:57:38 +0000355 final Point position = new Point();
356 final Rect bounds = new Rect();
357 final WindowContainer container = mTask.getParent();
358 container.getRelativePosition(position);
359 container.getBounds(bounds);
360 final WindowState mainWindow = mTask.getTopVisibleAppMainWindow();
Winson Chunge2d72172018-01-25 17:46:20 +0000361 return new RemoteAnimationTarget(mTask.mTaskId, MODE_CLOSING, mCapturedLeash,
Winson Chung584d6522018-02-07 23:57:38 +0000362 !mTask.fillsParent(), mainWindow.mWinAnimator.mLastClipRect,
363 mainWindow.mContentInsets, mTask.getPrefixOrderIndex(), position, bounds,
Winson Chunge2d72172018-01-25 17:46:20 +0000364 mTask.getWindowConfiguration());
365 }
366
367 @Override
368 public boolean getDetachWallpaper() {
369 return false;
370 }
371
372 @Override
Jorim Jaggi82c17862018-02-21 17:50:18 +0100373 public boolean getShowWallpaper() {
374 return false;
375 }
376
377 @Override
Winson Chunge2d72172018-01-25 17:46:20 +0000378 public int getBackgroundColor() {
379 return 0;
380 }
381
382 @Override
383 public void startAnimation(SurfaceControl animationLeash, Transaction t,
384 OnAnimationFinishedCallback finishCallback) {
385 mCapturedLeash = animationLeash;
386 mCapturedFinishCallback = finishCallback;
387 }
388
389 @Override
390 public void onAnimationCancelled(SurfaceControl animationLeash) {
391 cancelAnimation();
392 }
393
394 @Override
395 public long getDurationHint() {
396 return 0;
397 }
398
399 @Override
400 public long getStatusBarTransitionsStartTime() {
401 return SystemClock.uptimeMillis();
402 }
403 }
404
405 public void dump(PrintWriter pw, String prefix) {
406 final String innerPrefix = prefix + " ";
407 pw.print(prefix); pw.println(RecentsAnimationController.class.getSimpleName() + ":");
408 pw.print(innerPrefix); pw.println("mPendingStart=" + mPendingStart);
409 pw.print(innerPrefix); pw.println("mHomeAppToken=" + mHomeAppToken);
410 }
411}