blob: 7d4eafb07fe963d57d830ab6c84c555c828e3b7a [file] [log] [blame]
Jorim Jaggi33a701a2017-12-01 14:58:18 +01001/*
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.server.wm;
18
19import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
20import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
21
22import android.graphics.Point;
23import android.graphics.Rect;
24import android.os.Handler;
25import android.os.RemoteException;
26import android.os.SystemClock;
27import android.util.Slog;
28import android.view.IRemoteAnimationFinishedCallback;
29import android.view.IRemoteAnimationFinishedCallback.Stub;
30import android.view.RemoteAnimationAdapter;
31import android.view.RemoteAnimationTarget;
32import android.view.SurfaceControl;
33import android.view.SurfaceControl.Transaction;
34
35import com.android.server.wm.SurfaceAnimator.OnAnimationFinishedCallback;
36
37import java.util.ArrayList;
38
39/**
40 * Helper class to run app animations in a remote process.
41 */
42class RemoteAnimationController {
43 private static final String TAG = TAG_WITH_CLASS_NAME ? "RemoteAnimationController" : TAG_WM;
44 private static final long TIMEOUT_MS = 2000;
45
46 private final WindowManagerService mService;
47 private final RemoteAnimationAdapter mRemoteAnimationAdapter;
48 private final ArrayList<RemoteAnimationAdapterWrapper> mPendingAnimations = new ArrayList<>();
49 private final Rect mTmpRect = new Rect();
50 private final Handler mHandler;
51
52 private final IRemoteAnimationFinishedCallback mFinishedCallback = new Stub() {
53 @Override
54 public void onAnimationFinished() throws RemoteException {
55 RemoteAnimationController.this.onAnimationFinished();
56 }
57 };
58
59 private final Runnable mTimeoutRunnable = () -> {
60 onAnimationFinished();
61 invokeAnimationCancelled();
62 };
63
64 RemoteAnimationController(WindowManagerService service,
65 RemoteAnimationAdapter remoteAnimationAdapter, Handler handler) {
66 mService = service;
67 mRemoteAnimationAdapter = remoteAnimationAdapter;
68 mHandler = handler;
69 }
70
71 /**
72 * Creates an animation for each individual {@link AppWindowToken}.
73 *
74 * @param appWindowToken The app to animate.
75 * @param position The position app bounds, in screen coordinates.
76 * @param stackBounds The stack bounds of the app.
77 * @return The adapter to be run on the app.
78 */
79 AnimationAdapter createAnimationAdapter(AppWindowToken appWindowToken, Point position,
80 Rect stackBounds) {
81 final RemoteAnimationAdapterWrapper adapter = new RemoteAnimationAdapterWrapper(
82 appWindowToken, position, stackBounds);
83 mPendingAnimations.add(adapter);
84 return adapter;
85 }
86
87 /**
88 * Called when the transition is ready to be started, and all leashes have been set up.
89 */
90 void goodToGo() {
91 mHandler.postDelayed(mTimeoutRunnable, TIMEOUT_MS);
92 try {
93 mRemoteAnimationAdapter.getRunner().onAnimationStart(createAnimations(),
94 mFinishedCallback);
95 } catch (RemoteException e) {
96 Slog.e(TAG, "Failed to start remote animation", e);
97 onAnimationFinished();
98 }
99 }
100
101 private RemoteAnimationTarget[] createAnimations() {
Jorim Jaggi17770212018-01-22 20:01:21 +0100102 final ArrayList<RemoteAnimationTarget> targets = new ArrayList<>();
Jorim Jaggi33a701a2017-12-01 14:58:18 +0100103 for (int i = mPendingAnimations.size() - 1; i >= 0; i--) {
Jorim Jaggi17770212018-01-22 20:01:21 +0100104 final RemoteAnimationTarget target =
105 mPendingAnimations.get(i).createRemoteAppAnimation();
106 if (target != null) {
107 targets.add(target);
108 }
Jorim Jaggi33a701a2017-12-01 14:58:18 +0100109 }
Jorim Jaggi17770212018-01-22 20:01:21 +0100110 return targets.toArray(new RemoteAnimationTarget[targets.size()]);
Jorim Jaggi33a701a2017-12-01 14:58:18 +0100111 }
112
113 private void onAnimationFinished() {
114 mHandler.removeCallbacks(mTimeoutRunnable);
115 synchronized (mService.mWindowMap) {
116 mService.openSurfaceTransaction();
117 try {
118 for (int i = mPendingAnimations.size() - 1; i >= 0; i--) {
119 final RemoteAnimationAdapterWrapper adapter = mPendingAnimations.get(i);
120 adapter.mCapturedFinishCallback.onAnimationFinished(adapter);
121 }
122 } finally {
123 mService.closeSurfaceTransaction("RemoteAnimationController#finished");
124 }
125 }
126 }
127
128 private void invokeAnimationCancelled() {
129 try {
130 mRemoteAnimationAdapter.getRunner().onAnimationCancelled();
131 } catch (RemoteException e) {
132 Slog.e(TAG, "Failed to notify cancel", e);
133 }
134 }
135
136 private class RemoteAnimationAdapterWrapper implements AnimationAdapter {
137
138 private final AppWindowToken mAppWindowToken;
139 private SurfaceControl mCapturedLeash;
140 private OnAnimationFinishedCallback mCapturedFinishCallback;
141 private final Point mPosition = new Point();
142 private final Rect mStackBounds = new Rect();
143
144 RemoteAnimationAdapterWrapper(AppWindowToken appWindowToken, Point position,
145 Rect stackBounds) {
146 mAppWindowToken = appWindowToken;
147 mPosition.set(position.x, position.y);
148 mStackBounds.set(stackBounds);
149 }
150
151 RemoteAnimationTarget createRemoteAppAnimation() {
Jorim Jaggi17770212018-01-22 20:01:21 +0100152 final Task task = mAppWindowToken.getTask();
153 final WindowState mainWindow = mAppWindowToken.findMainWindow();
154 if (task == null) {
155 return null;
156 }
157 if (mainWindow == null) {
158 return null;
159 }
160 return new RemoteAnimationTarget(task.mTaskId, getMode(),
Jorim Jaggi33a701a2017-12-01 14:58:18 +0100161 mCapturedLeash, !mAppWindowToken.fillsParent(),
Jorim Jaggi17770212018-01-22 20:01:21 +0100162 mainWindow.mWinAnimator.mLastClipRect,
Winson Chunge2d72172018-01-25 17:46:20 +0000163 mAppWindowToken.getPrefixOrderIndex(), mPosition, mStackBounds,
164 task.getWindowConfiguration());
Jorim Jaggi33a701a2017-12-01 14:58:18 +0100165 }
166
167 private int getMode() {
168 if (mService.mOpeningApps.contains(mAppWindowToken)) {
169 return RemoteAnimationTarget.MODE_OPENING;
170 } else {
171 return RemoteAnimationTarget.MODE_CLOSING;
172 }
173 }
174
175 @Override
176 public boolean getDetachWallpaper() {
177 return false;
178 }
179
180 @Override
181 public int getBackgroundColor() {
182 return 0;
183 }
184
185 @Override
186 public void startAnimation(SurfaceControl animationLeash, Transaction t,
187 OnAnimationFinishedCallback finishCallback) {
188
189 // Restore z-layering, position and stack crop until client has a chance to modify it.
190 t.setLayer(animationLeash, mAppWindowToken.getPrefixOrderIndex());
191 t.setPosition(animationLeash, mPosition.x, mPosition.y);
192 mTmpRect.set(mStackBounds);
193 mTmpRect.offsetTo(0, 0);
194 t.setWindowCrop(animationLeash, mTmpRect);
195 mCapturedLeash = animationLeash;
196 mCapturedFinishCallback = finishCallback;
197 }
198
199 @Override
200 public void onAnimationCancelled(SurfaceControl animationLeash) {
201 mPendingAnimations.remove(this);
202 if (mPendingAnimations.isEmpty()) {
203 mHandler.removeCallbacks(mTimeoutRunnable);
204 invokeAnimationCancelled();
205 }
206 }
207
208 @Override
209 public long getDurationHint() {
210 return mRemoteAnimationAdapter.getDuration();
211 }
212
213 @Override
214 public long getStatusBarTransitionsStartTime() {
215 return SystemClock.uptimeMillis()
216 + mRemoteAnimationAdapter.getStatusBarTransitionDelay();
217 }
218 }
219}