blob: 7e09c163fc5f1593865ddf9c5341264aa13674b9 [file] [log] [blame]
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001/*
2 * Copyright (C) 2011 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
Wale Ogunwale6cae7652015-12-26 07:36:26 -080019import static android.app.ActivityManager.StackId;
Wale Ogunwale51362492016-09-08 17:49:17 -070020import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSET;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070021import static android.view.Display.DEFAULT_DISPLAY;
Wale Ogunwaled1c37912016-08-16 03:19:39 -070022import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080023import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070024import static android.view.WindowManager.LayoutParams.TYPE_BASE_APPLICATION;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -070025import static android.view.WindowManagerPolicy.FINISH_LAYOUT_REDO_ANIM;
26import static android.view.WindowManagerPolicy.FINISH_LAYOUT_REDO_WALLPAPER;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080027import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ANIM;
28import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_APP_TRANSITIONS;
Robert Carra1eb4392015-12-10 12:43:51 -080029import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ADD_REMOVE;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070030import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_LAYOUT_REPEATS;
31import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ORIENTATION;
Wale Ogunwale9017ec02016-02-25 08:55:25 -080032import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STARTING_WINDOW;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080033import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_VISIBILITY;
34import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_WINDOW_MOVEMENT;
35import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
36import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Chong Zhang92147042016-05-09 12:47:11 -070037import static com.android.server.wm.WindowManagerService.H.NOTIFY_ACTIVITY_DRAWN;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -070038import static com.android.server.wm.WindowManagerService.H.NOTIFY_STARTING_WINDOW_DRAWN;
Jorim Jaggi6626f542016-08-22 13:08:44 -070039import static com.android.server.wm.WindowStateAnimator.STACK_CLIP_NONE;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070040import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_WILL_PLACE_SURFACES;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070041import static com.android.server.wm.WindowManagerService.logWithStack;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080042
Jeff Brown4532e612012-04-05 14:27:12 -070043import com.android.server.input.InputApplicationHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080044import com.android.server.wm.WindowManagerService.H;
45
Filip Gruszczynskia590c992015-11-25 16:45:26 -080046import android.annotation.NonNull;
Jorim Jaggi26c8c422016-05-09 19:57:25 -070047import android.content.res.Configuration;
Jorim Jaggi0429f352015-12-22 16:29:16 +010048import android.graphics.Rect;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070049import android.os.Binder;
50import android.os.IBinder;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080051import android.os.Message;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070052import android.os.SystemClock;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080053import android.util.Slog;
54import android.view.IApplicationToken;
55import android.view.View;
56import android.view.WindowManager;
Jorim Jaggi6626f542016-08-22 13:08:44 -070057import android.view.animation.Animation;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080058
59import java.io.PrintWriter;
Jorim Jaggi0429f352015-12-22 16:29:16 +010060import java.util.ArrayDeque;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080061import java.util.ArrayList;
62
63class AppTokenList extends ArrayList<AppWindowToken> {
64}
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080065
66/**
67 * Version of WindowToken that is specifically for a particular application (or
68 * really activity) that is displaying windows.
69 */
Wale Ogunwale3f4433d2016-08-18 20:42:42 -070070class AppWindowToken extends WindowToken implements WindowManagerService.AppFreezeListener {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080071 private static final String TAG = TAG_WITH_CLASS_NAME ? "AppWindowToken" : TAG_WM;
72
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080073 // Non-null only for application tokens.
74 final IApplicationToken appToken;
75
Filip Gruszczynskia590c992015-11-25 16:45:26 -080076 @NonNull final AppWindowAnimator mAppAnimator;
Craig Mautnerd09cc4b2012-04-04 10:23:31 -070077
Dianne Hackborne30e02f2014-05-27 18:24:45 -070078 final boolean voiceInteraction;
79
Wale Ogunwalef6192862016-09-10 13:42:30 -070080 // TODO: Use getParent instead?
Craig Mautner83162a92015-01-26 14:43:30 -080081 Task mTask;
Wale Ogunwale51362492016-09-08 17:49:17 -070082 /** @see WindowContainer#fillsParent() */
83 private boolean mFillsParent;
Craig Mautner4c5eb222013-11-18 12:59:05 -080084 boolean layoutConfigChanges;
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -070085 boolean showForAllUsers;
Yorke Lee0e852472016-06-15 10:03:18 -070086 int targetSdk;
Craig Mautnera2c77052012-03-26 12:14:43 -070087
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080088 // The input dispatching timeout for this application token in nanoseconds.
89 long inputDispatchingTimeoutNanos;
90
91 // These are used for determining when all windows associated with
92 // an activity have been drawn, so they can be made visible together
93 // at the same time.
Craig Mautner764983d2012-03-22 11:37:36 -070094 // initialize so that it doesn't match mTransactionSequence which is an int.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -070095 private long mLastTransactionSequence = Long.MIN_VALUE;
96 private int mNumInterestingWindows;
97 private int mNumDrawnWindows;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080098 boolean inPendingTransaction;
99 boolean allDrawn;
Craig Mautner7636dfb2012-11-16 15:24:11 -0800100 // Set to true when this app creates a surface while in the middle of an animation. In that
101 // case do not clear allDrawn until the animation completes.
102 boolean deferClearAllDrawn;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800103
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700104 /**
105 * These are to track the app's real drawing status if there were no saved surfaces.
106 * @see #updateDrawnWindowStates
107 */
Chong Zhang8e4bda92016-05-04 15:08:18 -0700108 boolean allDrawnExcludingSaved;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700109 private int mNumInterestingWindowsExcludingSaved;
110 private int mNumDrawnWindowsExcludingSaved;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700111
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800112 // Is this window's surface needed? This is almost like hidden, except
113 // it will sometimes be true a little earlier: when the token has
114 // been shown, but is still waiting for its app transition to execute
115 // before making its windows shown.
116 boolean hiddenRequested;
117
118 // Have we told the window clients to hide themselves?
119 boolean clientHidden;
120
121 // Last visibility state we reported to the app token.
122 boolean reportedVisible;
123
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700124 // Last drawn state we reported to the app token.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700125 private boolean reportedDrawn;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700126
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800127 // Set to true when the token has been removed from the window mgr.
128 boolean removed;
129
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800130 // Information about an application starting window if displayed.
131 StartingData startingData;
132 WindowState startingWindow;
133 View startingView;
134 boolean startingDisplayed;
135 boolean startingMoved;
136 boolean firstWindowDrawn;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700137 private final WindowState.UpdateReportedVisibilityResults mReportedVisibilityResults =
138 new WindowState.UpdateReportedVisibilityResults();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800139
140 // Input application handle used by the input dispatcher.
Jeff Brown9302c872011-07-13 22:51:29 -0700141 final InputApplicationHandle mInputApplicationHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800142
Wale Ogunwale571771c2016-08-26 13:18:50 -0700143 // TODO: Have a WindowContainer state for tracking exiting/deferred removal.
Craig Mautner799bc1d2015-01-14 10:33:48 -0800144 boolean mIsExiting;
Craig Mautner9ef471f2014-02-07 13:11:47 -0800145
Craig Mautnerbb742462014-07-07 15:28:55 -0700146 boolean mLaunchTaskBehind;
Craig Mautner8746a472014-07-24 15:12:54 -0700147 boolean mEnteringAnimation;
Craig Mautnerbb742462014-07-07 15:28:55 -0700148
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800149 boolean mAlwaysFocusable;
150
Robert Carre12aece2016-02-02 22:43:27 -0800151 boolean mAppStopped;
Robert Carrfd10cd12016-06-29 16:41:50 -0700152 int mRotationAnimationHint;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700153 private int mPendingRelaunchCount;
Robert Carre12aece2016-02-02 22:43:27 -0800154
Robert Carr91b228092016-06-28 17:32:37 -0700155 private ArrayList<WindowSurfaceController.SurfaceControlWithBackground> mSurfaceViewBackgrounds =
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700156 new ArrayList<>();
Robert Carr91b228092016-06-28 17:32:37 -0700157
Jorim Jaggi0429f352015-12-22 16:29:16 +0100158 ArrayDeque<Rect> mFrozenBounds = new ArrayDeque<>();
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700159 ArrayDeque<Configuration> mFrozenMergedConfig = new ArrayDeque<>();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100160
Wale Ogunwale02319a62016-09-26 15:21:22 -0700161 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean _voiceInteraction,
162 DisplayContent displayContent) {
163 super(service, token != null ? token.asBinder() : null, TYPE_APPLICATION, true,
164 displayContent);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700165 appToken = token;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700166 voiceInteraction = _voiceInteraction;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800167 mInputApplicationHandle = new InputApplicationHandle(this);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700168 mAppAnimator = new AppWindowAnimator(this, service);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800169 }
170
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800171 void onFirstWindowDrawn(WindowState win, WindowStateAnimator winAnimator) {
172 firstWindowDrawn = true;
173
174 // We now have a good window to show, remove dead placeholders
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700175 removeDeadWindows();
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800176
177 if (startingData != null) {
178 if (DEBUG_STARTING_WINDOW || DEBUG_ANIM) Slog.v(TAG, "Finish starting "
179 + win.mToken + ": first real window is shown, no animation");
180 // If this initial window is animating, stop it -- we will do an animation to reveal
181 // it from behind the starting window, so there is no need for it to also be doing its
182 // own stuff.
183 winAnimator.clearAnimation();
184 winAnimator.mService.mFinishedStarting.add(this);
185 winAnimator.mService.mH.sendEmptyMessage(H.FINISHED_STARTING);
186 }
187 updateReportedVisibilityLocked();
188 }
189
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800190 void updateReportedVisibilityLocked() {
191 if (appToken == null) {
192 return;
193 }
194
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700195 if (DEBUG_VISIBILITY) Slog.v(TAG, "Update reported visibility: " + this);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700196 final int count = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800197
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700198 mReportedVisibilityResults.reset();
199
200 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700201 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700202 win.updateReportedVisibility(mReportedVisibilityResults);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800203 }
204
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700205 int numInteresting = mReportedVisibilityResults.numInteresting;
206 int numVisible = mReportedVisibilityResults.numVisible;
207 int numDrawn = mReportedVisibilityResults.numDrawn;
208 boolean nowGone = mReportedVisibilityResults.nowGone;
209
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700210 boolean nowDrawn = numInteresting > 0 && numDrawn >= numInteresting;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800211 boolean nowVisible = numInteresting > 0 && numVisible >= numInteresting;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700212 if (!nowGone) {
213 // If the app is not yet gone, then it can only become visible/drawn.
214 if (!nowDrawn) {
215 nowDrawn = reportedDrawn;
216 }
217 if (!nowVisible) {
218 nowVisible = reportedVisible;
219 }
220 }
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800221 if (DEBUG_VISIBILITY) Slog.v(TAG, "VIS " + this + ": interesting="
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800222 + numInteresting + " visible=" + numVisible);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700223 if (nowDrawn != reportedDrawn) {
224 if (nowDrawn) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700225 mService.mH.obtainMessage(H.REPORT_APPLICATION_TOKEN_DRAWN, this).sendToTarget();
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700226 }
227 reportedDrawn = nowDrawn;
228 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800229 if (nowVisible != reportedVisible) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700230 if (DEBUG_VISIBILITY) Slog.v(TAG,
231 "Visibility changed in " + this + ": vis=" + nowVisible);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800232 reportedVisible = nowVisible;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700233 mService.mH.obtainMessage(H.REPORT_APPLICATION_TOKEN_WINDOWS,
234 nowVisible ? 1 : 0, nowGone ? 1 : 0, this).sendToTarget();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800235 }
236 }
237
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700238 boolean setVisibility(WindowManager.LayoutParams lp,
239 boolean visible, int transit, boolean performLayout, boolean isVoiceInteraction) {
240
241 boolean delayed = false;
242 inPendingTransaction = false;
243
244 if (clientHidden == visible) {
245 clientHidden = !visible;
246 sendAppVisibilityToClients();
247 }
248
249 // Allow for state changes and animation to be applied if:
250 // * token is transitioning visibility state
251 // * or the token was marked as hidden and is exiting before we had a chance to play the
252 // transition animation
253 // * or this is an opening app and windows are being replaced.
254 boolean visibilityChanged = false;
255 if (hidden == visible || (hidden && mIsExiting) || (visible && waitingForReplacement())) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700256 final AccessibilityController accessibilityController = mService.mAccessibilityController;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700257 boolean changed = false;
258 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
259 "Changing app " + this + " hidden=" + hidden + " performLayout=" + performLayout);
260
261 boolean runningAppAnimation = false;
262
263 if (transit != AppTransition.TRANSIT_UNSET) {
264 if (mAppAnimator.animation == AppWindowAnimator.sDummyAnimation) {
265 mAppAnimator.setNullAnimation();
266 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700267 if (mService.applyAnimationLocked(this, lp, transit, visible, isVoiceInteraction)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700268 delayed = runningAppAnimation = true;
269 }
270 final WindowState window = findMainWindow();
271 //TODO (multidisplay): Magnification is supported only for the default display.
272 if (window != null && accessibilityController != null
273 && window.getDisplayId() == DEFAULT_DISPLAY) {
274 accessibilityController.onAppWindowTransitionLocked(window, transit);
275 }
276 changed = true;
277 }
278
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700279 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700280 for (int i = 0; i < windowsCount; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700281 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700282 changed |= win.onAppVisibilityChanged(visible, runningAppAnimation);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700283 }
284
285 hidden = hiddenRequested = !visible;
286 visibilityChanged = true;
287 if (!visible) {
288 stopFreezingScreen(true, true);
289 } else {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700290 // If we are being set visible, and the starting window is not yet displayed,
291 // then make sure it doesn't get displayed.
292 if (startingWindow != null && !startingWindow.isDrawnLw()) {
293 startingWindow.mPolicyVisibility = false;
294 startingWindow.mPolicyVisibilityAfterAnim = false;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700295 }
296 }
297
298 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "setVisibility: " + this
299 + ": hidden=" + hidden + " hiddenRequested=" + hiddenRequested);
300
301 if (changed) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700302 mService.mInputMonitor.setUpdateInputWindowsNeededLw();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700303 if (performLayout) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700304 mService.updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700305 false /*updateInputWindows*/);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700306 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700307 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700308 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700309 }
310 }
311
312 if (mAppAnimator.animation != null) {
313 delayed = true;
314 }
315
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700316 for (int i = mChildren.size() - 1; i >= 0 && !delayed; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700317 if ((mChildren.get(i)).isWindowAnimationSet()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700318 delayed = true;
319 }
320 }
321
322 if (visibilityChanged) {
323 if (visible && !delayed) {
324 // The token was made immediately visible, there will be no entrance animation.
325 // We need to inform the client the enter animation was finished.
326 mEnteringAnimation = true;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700327 mService.mActivityManagerAppTransitionNotifier.onAppTransitionFinishedLocked(token);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700328 }
329
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700330 if (!mService.mClosingApps.contains(this) && !mService.mOpeningApps.contains(this)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700331 // The token is not closing nor opening, so even if there is an animation set, that
332 // doesn't mean that it goes through the normal app transition cycle so we have
333 // to inform the docked controller about visibility change.
Andrii Kulian1e32e022016-09-16 15:29:34 -0700334 // TODO(multi-display): notify docked divider on all displays where visibility was
335 // affected.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700336 mService.getDefaultDisplayContentLocked().getDockedDividerController()
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700337 .notifyAppVisibilityChanged();
338 }
339 }
340
341 return delayed;
342 }
343
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800344 WindowState findMainWindow() {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700345 WindowState candidate = null;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700346 int j = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800347 while (j > 0) {
348 j--;
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700349 final WindowState win = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700350 final int type = win.mAttrs.type;
351 // No need to loop through child window as base application and starting types can't be
352 // child windows.
353 if (type == TYPE_BASE_APPLICATION || type == TYPE_APPLICATION_STARTING) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700354 // In cases where there are multiple windows, we prefer the non-exiting window. This
Sungsoo Lim0d3d1f82015-12-02 14:47:59 +0900355 // happens for example when replacing windows during an activity relaunch. When
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700356 // constructing the animation, we want the new window, not the exiting one.
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800357 if (win.mAnimatingExit) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700358 candidate = win;
359 } else {
360 return win;
361 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800362 }
363 }
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700364 return candidate;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800365 }
366
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800367 boolean windowsAreFocusable() {
368 return StackId.canReceiveKeys(mTask.mStack.mStackId) || mAlwaysFocusable;
Wale Ogunwaled045c822015-12-02 09:14:28 -0800369 }
370
Wale Ogunwale571771c2016-08-26 13:18:50 -0700371 @Override
Wale Ogunwale44f21802016-09-02 12:49:48 -0700372 boolean isVisible() {
Wale Ogunwalee471be62016-10-03 07:53:55 -0700373 // If the app token isn't hidden then it is considered visible and there is no need to check
374 // its children windows to see if they are visible.
375 return !hidden;
Wale Ogunwale44f21802016-09-02 12:49:48 -0700376 }
377
378 @Override
Wale Ogunwale571771c2016-08-26 13:18:50 -0700379 void removeIfPossible() {
Craig Mautnere3119b72015-01-20 15:02:36 -0800380 mIsExiting = false;
381 removeAllWindows();
Wale Ogunwale571771c2016-08-26 13:18:50 -0700382 if (mTask != null) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700383 mTask.mStack.mExitingAppTokens.remove(this);
384 mTask.removeChild(this);
Craig Mautnere3119b72015-01-20 15:02:36 -0800385 }
386 }
387
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700388 @Override
389 boolean checkCompleteDeferredRemoval() {
390 if (mIsExiting) {
391 removeIfPossible();
392 }
393 return super.checkCompleteDeferredRemoval();
394 }
395
Chong Zhange05bcb12016-07-26 17:47:29 -0700396 void clearAnimatingFlags() {
Chong Zhangb0d26702016-08-12 16:03:29 -0700397 boolean wallpaperMightChange = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700398 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700399 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700400 wallpaperMightChange |= win.clearAnimatingFlags();
Chong Zhange05bcb12016-07-26 17:47:29 -0700401 }
Chong Zhangb0d26702016-08-12 16:03:29 -0700402 if (wallpaperMightChange) {
403 requestUpdateWallpaperIfNeeded();
404 }
Chong Zhange05bcb12016-07-26 17:47:29 -0700405 }
406
Robert Carre12aece2016-02-02 22:43:27 -0800407 void destroySurfaces() {
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700408 destroySurfaces(false /*cleanupOnResume*/);
409 }
410
411 /**
412 * Destroy surfaces which have been marked as eligible by the animator, taking care to ensure
413 * the client has finished with them.
414 *
415 * @param cleanupOnResume whether this is done when app is resumed without fully stopped. If
416 * set to true, destroy only surfaces of removed windows, and clear relevant flags of the
417 * others so that they are ready to be reused. If set to false (common case), destroy all
418 * surfaces that's eligible, if the app is already stopped.
419 */
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700420 private void destroySurfaces(boolean cleanupOnResume) {
Robert Carre12aece2016-02-02 22:43:27 -0800421 final DisplayContentList displayList = new DisplayContentList();
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700422 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700423 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700424 final boolean destroyed = win.destroySurface(cleanupOnResume, mAppStopped);
Chong Zhangeb665572016-05-09 18:28:27 -0700425
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700426 if (destroyed) {
427 final DisplayContent displayContent = win.getDisplayContent();
428 if (displayContent != null && !displayList.contains(displayContent)) {
429 displayList.add(displayContent);
430 }
Robert Carre12aece2016-02-02 22:43:27 -0800431 }
Robert Carre12aece2016-02-02 22:43:27 -0800432 }
433 for (int i = 0; i < displayList.size(); i++) {
434 final DisplayContent displayContent = displayList.get(i);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700435 mService.mLayersController.assignLayersLocked(displayContent.getWindowList());
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -0700436 displayContent.setLayoutNeeded();
Robert Carre12aece2016-02-02 22:43:27 -0800437 }
438 }
439
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800440 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700441 * Notify that the app is now resumed, and it was not stopped before, perform a clean
442 * up of the surfaces
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800443 */
Chong Zhangad24f962016-08-25 12:12:33 -0700444 void notifyAppResumed(boolean wasStopped, boolean allowSavedSurface) {
445 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppResumed: wasStopped=" + wasStopped
446 + " allowSavedSurface=" + allowSavedSurface + " " + this);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700447 mAppStopped = false;
448 if (!wasStopped) {
449 destroySurfaces(true /*cleanupOnResume*/);
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800450 }
Chong Zhangad24f962016-08-25 12:12:33 -0700451 if (!allowSavedSurface) {
452 destroySavedSurfaces();
453 }
Robert Carre12aece2016-02-02 22:43:27 -0800454 }
455
Chong Zhangbef461f2015-10-27 11:38:24 -0700456 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700457 * Notify that the app has stopped, and it is okay to destroy any surfaces which were
458 * keeping alive in case they were still being used.
459 */
460 void notifyAppStopped() {
461 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppStopped: " + this);
462 mAppStopped = true;
463 destroySurfaces();
464 // Remove any starting window that was added for this app if they are still around.
465 mTask.mService.scheduleRemoveStartingWindowLocked(this);
466 }
467
468 /**
Chong Zhangbef461f2015-10-27 11:38:24 -0700469 * Checks whether we should save surfaces for this app.
470 *
471 * @return true if the surfaces should be saved, false otherwise.
472 */
473 boolean shouldSaveSurface() {
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800474 // We want to save surface if the app's windows are "allDrawn".
475 // (If we started entering animation early with saved surfaces, allDrawn
476 // should have been restored to true. So we'll save again in that case
477 // even if app didn't actually finish drawing.)
478 return allDrawn;
Robert Carr13f7be9e2015-12-02 18:39:45 -0800479 }
480
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700481 private boolean canRestoreSurfaces() {
482 for (int i = mChildren.size() -1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700483 final WindowState w = mChildren.get(i);
Chong Zhang92147042016-05-09 12:47:11 -0700484 if (w.canRestoreSurface()) {
Robert Carr13f7be9e2015-12-02 18:39:45 -0800485 return true;
486 }
Chong Zhangbef461f2015-10-27 11:38:24 -0700487 }
488 return false;
489 }
490
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700491 private void clearWasVisibleBeforeClientHidden() {
492 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700493 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700494 w.clearWasVisibleBeforeClientHidden();
Chong Zhang92147042016-05-09 12:47:11 -0700495 }
496 }
497
Chong Zhang8e4bda92016-05-04 15:08:18 -0700498 /**
499 * Whether the app has some window that is invisible in layout, but
500 * animating with saved surface.
501 */
502 boolean isAnimatingInvisibleWithSavedSurface() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700503 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700504 final WindowState w = mChildren.get(i);
Chong Zhang8e4bda92016-05-04 15:08:18 -0700505 if (w.isAnimatingInvisibleWithSavedSurface()) {
506 return true;
507 }
508 }
509 return false;
510 }
511
512 /**
513 * Hide all window surfaces that's still invisible in layout but animating
514 * with a saved surface, and mark them destroying.
515 */
516 void stopUsingSavedSurfaceLocked() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700517 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700518 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700519 w.stopUsingSavedSurface();
Chong Zhang8e4bda92016-05-04 15:08:18 -0700520 }
521 destroySurfaces();
522 }
523
Chong Zhangf58631a2016-05-24 16:02:10 -0700524 void markSavedSurfaceExiting() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700525 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700526 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700527 w.markSavedSurfaceExiting();
Chong Zhangf58631a2016-05-24 16:02:10 -0700528 }
529 }
530
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700531 void restoreSavedSurfaceForInterestingWindows() {
Chong Zhang92147042016-05-09 12:47:11 -0700532 if (!canRestoreSurfaces()) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700533 clearWasVisibleBeforeClientHidden();
Chong Zhangbef461f2015-10-27 11:38:24 -0700534 return;
535 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700536
537 // Check if all interesting windows are drawn and we can mark allDrawn=true.
538 int interestingNotDrawn = -1;
539
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700540 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700541 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700542 interestingNotDrawn = w.restoreSavedSurfaceForInterestingWindow();
Chong Zhangbef461f2015-10-27 11:38:24 -0700543 }
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800544
Chong Zhang92147042016-05-09 12:47:11 -0700545 if (!allDrawn) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700546 allDrawn = (interestingNotDrawn == 0);
Chong Zhang92147042016-05-09 12:47:11 -0700547 if (allDrawn) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700548 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Chong Zhang92147042016-05-09 12:47:11 -0700549 }
550 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700551 clearWasVisibleBeforeClientHidden();
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800552
553 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.d(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700554 "restoreSavedSurfaceForInterestingWindows: " + this + " allDrawn=" + allDrawn
555 + " interestingNotDrawn=" + interestingNotDrawn);
Chong Zhangbef461f2015-10-27 11:38:24 -0700556 }
557
558 void destroySavedSurfaces() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700559 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700560 final WindowState win = mChildren.get(i);
Robert Carr13f7be9e2015-12-02 18:39:45 -0800561 win.destroySavedSurface();
Chong Zhangbef461f2015-10-27 11:38:24 -0700562 }
Chong Zhang92147042016-05-09 12:47:11 -0700563 }
564
565 void clearAllDrawn() {
566 allDrawn = false;
567 deferClearAllDrawn = false;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700568 allDrawnExcludingSaved = false;
Chong Zhangbef461f2015-10-27 11:38:24 -0700569 }
570
Wale Ogunwalefa854eb2016-09-20 13:43:52 -0700571 void postWindowRemoveStartingWindowCleanup(WindowState win) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700572 // TODO: Something smells about the code below...Is there a better way?
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700573 if (startingWindow == win) {
574 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Notify removed startingWindow " + win);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700575 mService.scheduleRemoveStartingWindowLocked(this);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700576 } else if (mChildren.size() == 0 && startingData != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700577 // If this is the last window and we had requested a starting transition window,
578 // well there is no point now.
579 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Nulling last startingWindow");
580 startingData = null;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700581 } else if (mChildren.size() == 1 && startingView != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700582 // If this is the last window except for a starting transition window,
583 // we need to get rid of the starting transition.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700584 mService.scheduleRemoveStartingWindowLocked(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700585 }
586 }
587
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700588 void removeDeadWindows() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700589 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700590 WindowState win = mChildren.get(winNdx);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800591 if (win.mAppDied) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700592 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE) Slog.w(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700593 "removeDeadWindows: " + win);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800594 // Set mDestroying, we don't want any animation or delayed removal here.
595 win.mDestroying = true;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700596 // Also removes child windows.
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700597 win.removeIfPossible();
Chong Zhang112eb8c2015-11-02 11:17:00 -0800598 }
599 }
600 }
601
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700602 boolean hasWindowsAlive() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700603 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700604 // No need to loop through child windows as the answer should be the same as that of the
605 // parent window.
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700606 if (!(mChildren.get(i)).mAppDied) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700607 return true;
608 }
609 }
610 return false;
611 }
612
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700613 void setWillReplaceWindows(boolean animate) {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700614 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
615 "Marking app token " + this + " with replacing windows.");
Robert Carra1eb4392015-12-10 12:43:51 -0800616
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700617 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700618 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700619 w.setWillReplaceWindow(animate);
Robert Carra1eb4392015-12-10 12:43:51 -0800620 }
621 if (animate) {
622 // Set-up dummy animation so we can start treating windows associated with this
623 // token like they are in transition before the new app window is ready for us to
624 // run the real transition animation.
625 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700626 "setWillReplaceWindow() Setting dummy animation on: " + this);
Robert Carra1eb4392015-12-10 12:43:51 -0800627 mAppAnimator.setDummyAnimation();
628 }
629 }
630
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700631 void setWillReplaceChildWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700632 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM, "Marking app token " + this
Robert Carr23fa16b2016-01-13 13:19:58 -0800633 + " with replacing child windows.");
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700634 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700635 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700636 w.setWillReplaceChildWindows();
Robert Carr23fa16b2016-01-13 13:19:58 -0800637 }
638 }
639
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700640 void clearWillReplaceWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700641 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
642 "Resetting app token " + this + " of replacing window marks.");
Chong Zhangf596cd52016-01-05 13:42:44 -0800643
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700644 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700645 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700646 w.clearWillReplaceWindow();
Chong Zhangf596cd52016-01-05 13:42:44 -0800647 }
648 }
649
Chong Zhang4d7369a2016-04-25 16:09:14 -0700650 void requestUpdateWallpaperIfNeeded() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700651 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700652 final WindowState w = mChildren.get(i);
Chong Zhang4d7369a2016-04-25 16:09:14 -0700653 w.requestUpdateWallpaperIfNeeded();
654 }
655 }
656
Chong Zhangd78ddb42016-03-02 17:01:14 -0800657 boolean isRelaunching() {
658 return mPendingRelaunchCount > 0;
659 }
660
661 void startRelaunching() {
662 if (canFreezeBounds()) {
663 freezeBounds();
664 }
665 mPendingRelaunchCount++;
666 }
667
668 void finishRelaunching() {
669 if (canFreezeBounds()) {
670 unfreezeBounds();
671 }
672 if (mPendingRelaunchCount > 0) {
673 mPendingRelaunchCount--;
674 }
675 }
676
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700677 void clearRelaunching() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700678 if (mPendingRelaunchCount == 0) {
679 return;
680 }
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700681 if (canFreezeBounds()) {
682 unfreezeBounds();
683 }
684 mPendingRelaunchCount = 0;
685 }
686
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700687 @Override
Robert Carra1eb4392015-12-10 12:43:51 -0800688 void addWindow(WindowState w) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700689 super.addWindow(w);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700690
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700691 boolean gotReplacementWindow = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700692 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700693 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700694 gotReplacementWindow |= candidate.setReplacementWindowIfNeeded(w);
695 }
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700696
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700697 // if we got a replacement window, reset the timeout to give drawing more time
698 if (gotReplacementWindow) {
699 mService.scheduleWindowReplacementTimeouts(this);
Robert Carra1eb4392015-12-10 12:43:51 -0800700 }
Robert Carra1eb4392015-12-10 12:43:51 -0800701 }
702
703 boolean waitingForReplacement() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700704 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700705 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700706 if (candidate.waitingForReplacement()) {
Robert Carra1eb4392015-12-10 12:43:51 -0800707 return true;
708 }
709 }
710 return false;
711 }
712
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700713 void onWindowReplacementTimeout() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700714 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700715 (mChildren.get(i)).onWindowReplacementTimeout();
Robert Carra1eb4392015-12-10 12:43:51 -0800716 }
717 }
718
Chong Zhangd78ddb42016-03-02 17:01:14 -0800719 private boolean canFreezeBounds() {
720 // For freeform windows, we can't freeze the bounds at the moment because this would make
721 // the resizing unresponsive.
722 return mTask != null && !mTask.inFreeformWorkspace();
723 }
724
Jorim Jaggi0429f352015-12-22 16:29:16 +0100725 /**
726 * Freezes the task bounds. The size of this task reported the app will be fixed to the bounds
727 * freezed by {@link Task#prepareFreezingBounds} until {@link #unfreezeBounds} gets called, even
728 * if they change in the meantime. If the bounds are already frozen, the bounds will be frozen
729 * with a queue.
730 */
Chong Zhangd78ddb42016-03-02 17:01:14 -0800731 private void freezeBounds() {
Jorim Jaggi0429f352015-12-22 16:29:16 +0100732 mFrozenBounds.offer(new Rect(mTask.mPreparedFrozenBounds));
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700733
734 if (mTask.mPreparedFrozenMergedConfig.equals(Configuration.EMPTY)) {
735 // We didn't call prepareFreezingBounds on the task, so use the current value.
Andrii Kulian441e4492016-09-29 15:25:00 -0700736 mFrozenMergedConfig.offer(new Configuration(mTask.getConfiguration()));
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700737 } else {
738 mFrozenMergedConfig.offer(new Configuration(mTask.mPreparedFrozenMergedConfig));
739 }
Andrii Kulianb10330d2016-09-16 13:51:46 -0700740 // Calling unset() to make it equal to Configuration.EMPTY.
741 mTask.mPreparedFrozenMergedConfig.unset();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100742 }
743
744 /**
745 * Unfreezes the previously frozen bounds. See {@link #freezeBounds}.
746 */
Chong Zhangd78ddb42016-03-02 17:01:14 -0800747 private void unfreezeBounds() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700748 if (!mFrozenBounds.isEmpty()) {
749 mFrozenBounds.remove();
750 }
751 if (!mFrozenMergedConfig.isEmpty()) {
752 mFrozenMergedConfig.remove();
753 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700754 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700755 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700756 win.onUnfreezeBounds();
Jorim Jaggi4846ee32016-01-07 17:39:12 +0100757 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700758 mService.mWindowPlacerLocked.performSurfacePlacement();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100759 }
760
Robert Carr91b228092016-06-28 17:32:37 -0700761 void addSurfaceViewBackground(WindowSurfaceController.SurfaceControlWithBackground background) {
762 mSurfaceViewBackgrounds.add(background);
763 }
764
765 void removeSurfaceViewBackground(WindowSurfaceController.SurfaceControlWithBackground background) {
766 mSurfaceViewBackgrounds.remove(background);
767 updateSurfaceViewBackgroundVisibilities();
768 }
769
770 // We use DimLayers behind SurfaceViews to prevent holes while resizing and creating.
771 // However, we need to ensure one SurfaceView doesn't cover another when they are both placed
772 // below the main app window (as traditionally a SurfaceView which is never drawn
773 // to is totally translucent). So we look at all our SurfaceView backgrounds and only enable
774 // the background for the SurfaceView with lowest Z order
775 void updateSurfaceViewBackgroundVisibilities() {
776 WindowSurfaceController.SurfaceControlWithBackground bottom = null;
777 int bottomLayer = Integer.MAX_VALUE;
778 for (int i = 0; i < mSurfaceViewBackgrounds.size(); i++) {
779 WindowSurfaceController.SurfaceControlWithBackground sc = mSurfaceViewBackgrounds.get(i);
780 if (sc.mVisible && sc.mLayer < bottomLayer) {
781 bottomLayer = sc.mLayer;
782 bottom = sc;
783 }
784 }
785 for (int i = 0; i < mSurfaceViewBackgrounds.size(); i++) {
786 WindowSurfaceController.SurfaceControlWithBackground sc = mSurfaceViewBackgrounds.get(i);
787 sc.updateBackgroundVisibility(sc != bottom);
788 }
789 }
790
Jorim Jaggi6626f542016-08-22 13:08:44 -0700791 /**
792 * See {@link WindowManagerService#overridePlayingAppAnimationsLw}
793 */
794 void overridePlayingAppAnimations(Animation a) {
795 if (mAppAnimator.isAnimating()) {
796 final WindowState win = findMainWindow();
Jorim Jaggi6e5f3d22016-09-28 13:30:27 +0200797 if (win == null) {
798 return;
799 }
Jorim Jaggi6626f542016-08-22 13:08:44 -0700800 final int width = win.mContainingFrame.width();
801 final int height = win.mContainingFrame.height();
802 mAppAnimator.setAnimation(a, width, height, false, STACK_CLIP_NONE);
803 }
804 }
805
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700806 void resetJustMovedInStack() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700807 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700808 (mChildren.get(i)).resetJustMovedInStack();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700809 }
810 }
811
812 void notifyMovedInStack() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700813 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700814 final WindowState win = mChildren.get(winNdx);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700815 win.notifyMovedInStack();
816 }
817 }
818
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700819 void setAppLayoutChanges(int changes, String reason, int displayId) {
820 final WindowAnimator windowAnimator = mAppAnimator.mAnimator;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700821 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700822 // Child windows will be on the same display as their parents.
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700823 if (displayId == (mChildren.get(i)).getDisplayId()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700824 windowAnimator.setPendingLayoutChanges(displayId, changes);
825 if (DEBUG_LAYOUT_REPEATS) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700826 mService.mWindowPlacerLocked.debugLayoutRepeats(
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700827 reason, windowAnimator.getPendingLayoutChanges(displayId));
828 }
829 break;
830 }
831 }
832 }
833
834 void removeReplacedWindowIfNeeded(WindowState replacement) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700835 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700836 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700837 if (win.removeReplacedWindowIfNeeded(replacement)) {
838 return;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700839 }
840 }
841 }
842
843 void startFreezingScreen() {
844 if (DEBUG_ORIENTATION) logWithStack(TAG, "Set freezing of " + appToken + ": hidden="
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700845 + hidden + " freezing=" + mAppAnimator.freezingScreen + " hiddenRequested="
846 + hiddenRequested);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700847 if (!hiddenRequested) {
848 if (!mAppAnimator.freezingScreen) {
849 mAppAnimator.freezingScreen = true;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700850 mService.registerAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700851 mAppAnimator.lastFreezeDuration = 0;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700852 mService.mAppsFreezingScreen++;
853 if (mService.mAppsFreezingScreen == 1) {
854 mService.startFreezingDisplayLocked(false, 0, 0);
855 mService.mH.removeMessages(H.APP_FREEZE_TIMEOUT);
856 mService.mH.sendEmptyMessageDelayed(H.APP_FREEZE_TIMEOUT, 2000);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700857 }
858 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700859 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700860 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700861 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700862 w.onStartFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700863 }
864 }
865 }
866
867 void stopFreezingScreen(boolean unfreezeSurfaceNow, boolean force) {
868 if (!mAppAnimator.freezingScreen) {
869 return;
870 }
871 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Clear freezing of " + this + " force=" + force);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700872 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700873 boolean unfrozeWindows = false;
874 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700875 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700876 unfrozeWindows |= w.onStopFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700877 }
878 if (force || unfrozeWindows) {
879 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "No longer freezing: " + this);
880 mAppAnimator.freezingScreen = false;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700881 mService.unregisterAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700882 mAppAnimator.lastFreezeDuration =
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700883 (int)(SystemClock.elapsedRealtime() - mService.mDisplayFreezeTime);
884 mService.mAppsFreezingScreen--;
885 mService.mLastFinishedFreezeSource = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700886 }
887 if (unfreezeSurfaceNow) {
888 if (unfrozeWindows) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700889 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700890 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700891 mService.stopFreezingDisplayLocked();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700892 }
893 }
894
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700895 @Override
896 public void onAppFreezeTimeout() {
897 Slog.w(TAG_WM, "Force clearing freeze: " + this);
898 stopFreezingScreen(true, true);
899 }
900
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700901 boolean transferStartingWindow(IBinder transferFrom) {
Wale Ogunwale02319a62016-09-26 15:21:22 -0700902 final AppWindowToken fromToken = getDisplayContent().getAppWindowToken(transferFrom);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700903 if (fromToken == null) {
904 return false;
905 }
906
907 final WindowState tStartingWindow = fromToken.startingWindow;
908 if (tStartingWindow != null && fromToken.startingView != null) {
909 // In this case, the starting icon has already been displayed, so start
910 // letting windows get shown immediately without any more transitions.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700911 mService.mSkipAppTransitionAnimation = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700912
913 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Moving existing starting " + tStartingWindow
914 + " from " + fromToken + " to " + this);
915
916 final long origId = Binder.clearCallingIdentity();
917
918 // Transfer the starting window over to the new token.
919 startingData = fromToken.startingData;
920 startingView = fromToken.startingView;
921 startingDisplayed = fromToken.startingDisplayed;
922 fromToken.startingDisplayed = false;
923 startingWindow = tStartingWindow;
924 reportedVisible = fromToken.reportedVisible;
925 fromToken.startingData = null;
926 fromToken.startingView = null;
927 fromToken.startingWindow = null;
928 fromToken.startingMoved = true;
929 tStartingWindow.mToken = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700930 tStartingWindow.mAppToken = this;
931
932 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE || DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
933 "Removing starting window: " + tStartingWindow);
934 tStartingWindow.getWindowList().remove(tStartingWindow);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700935 mService.mWindowsChanged = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700936 if (DEBUG_ADD_REMOVE) Slog.v(TAG_WM,
937 "Removing starting " + tStartingWindow + " from " + fromToken);
Wale Ogunwalefa854eb2016-09-20 13:43:52 -0700938 fromToken.removeChild(tStartingWindow);
939 fromToken.postWindowRemoveStartingWindowCleanup(tStartingWindow);
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700940 addWindow(tStartingWindow);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700941
942 // Propagate other interesting state between the tokens. If the old token is displayed,
943 // we should immediately force the new one to be displayed. If it is animating, we need
944 // to move that animation to the new one.
945 if (fromToken.allDrawn) {
946 allDrawn = true;
947 deferClearAllDrawn = fromToken.deferClearAllDrawn;
948 }
949 if (fromToken.firstWindowDrawn) {
950 firstWindowDrawn = true;
951 }
952 if (!fromToken.hidden) {
953 hidden = false;
954 hiddenRequested = false;
955 }
956 if (clientHidden != fromToken.clientHidden) {
957 clientHidden = fromToken.clientHidden;
958 sendAppVisibilityToClients();
959 }
960 fromToken.mAppAnimator.transferCurrentAnimation(
961 mAppAnimator, tStartingWindow.mWinAnimator);
962
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700963 mService.updateFocusedWindowLocked(
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700964 UPDATE_FOCUS_WILL_PLACE_SURFACES, true /*updateInputWindows*/);
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -0700965 mService.getDefaultDisplayContentLocked().setLayoutNeeded();
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700966 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700967 Binder.restoreCallingIdentity(origId);
968 return true;
969 } else if (fromToken.startingData != null) {
970 // The previous app was getting ready to show a
971 // starting window, but hasn't yet done so. Steal it!
972 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
973 "Moving pending starting from " + fromToken + " to " + this);
974 startingData = fromToken.startingData;
975 fromToken.startingData = null;
976 fromToken.startingMoved = true;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700977 final Message m = mService.mH.obtainMessage(H.ADD_STARTING, this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700978 // Note: we really want to do sendMessageAtFrontOfQueue() because we want to process the
979 // message ASAP, before any other queued messages.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700980 mService.mH.sendMessageAtFrontOfQueue(m);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700981 return true;
982 }
983
984 final AppWindowAnimator tAppAnimator = fromToken.mAppAnimator;
985 final AppWindowAnimator wAppAnimator = mAppAnimator;
986 if (tAppAnimator.thumbnail != null) {
987 // The old token is animating with a thumbnail, transfer that to the new token.
988 if (wAppAnimator.thumbnail != null) {
989 wAppAnimator.thumbnail.destroy();
990 }
991 wAppAnimator.thumbnail = tAppAnimator.thumbnail;
992 wAppAnimator.thumbnailLayer = tAppAnimator.thumbnailLayer;
993 wAppAnimator.thumbnailAnimation = tAppAnimator.thumbnailAnimation;
994 tAppAnimator.thumbnail = null;
995 }
996 return false;
997 }
998
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700999 boolean isLastWindow(WindowState win) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001000 return mChildren.size() == 1 && mChildren.get(0) == win;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001001 }
1002
1003 void setAllAppWinAnimators() {
1004 final ArrayList<WindowStateAnimator> allAppWinAnimators = mAppAnimator.mAllAppWinAnimators;
1005 allAppWinAnimators.clear();
1006
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001007 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001008 for (int j = 0; j < windowsCount; j++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001009 (mChildren.get(j)).addWinAnimatorToList(allAppWinAnimators);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001010 }
1011 }
1012
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001013 @Override
1014 void onAppTransitionDone() {
1015 sendingToBottom = false;
1016 }
1017
Wale Ogunwale51362492016-09-08 17:49:17 -07001018 /**
1019 * We override because this class doesn't want its children affecting its reported orientation
1020 * in anyway.
1021 */
1022 @Override
1023 int getOrientation() {
1024 if (hidden || hiddenRequested) {
1025 return SCREEN_ORIENTATION_UNSET;
1026 }
1027 return mOrientation;
1028 }
1029
Craig Mautnerdbb79912012-03-01 18:59:14 -08001030 @Override
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001031 void checkAppWindowsReadyToShow(int displayId) {
1032 if (allDrawn == mAppAnimator.allDrawn) {
1033 return;
1034 }
1035
1036 mAppAnimator.allDrawn = allDrawn;
1037 if (!allDrawn) {
1038 return;
1039 }
1040
1041 // The token has now changed state to having all windows shown... what to do, what to do?
1042 if (mAppAnimator.freezingScreen) {
1043 mAppAnimator.showAllWindowsLocked();
1044 stopFreezingScreen(false, true);
1045 if (DEBUG_ORIENTATION) Slog.i(TAG,
1046 "Setting mOrientationChangeComplete=true because wtoken " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001047 + " numInteresting=" + mNumInterestingWindows + " numDrawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001048 // This will set mOrientationChangeComplete and cause a pass through layout.
1049 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
1050 "checkAppWindowsReadyToShow: freezingScreen", displayId);
1051 } else {
1052 setAppLayoutChanges(FINISH_LAYOUT_REDO_ANIM, "checkAppWindowsReadyToShow", displayId);
1053
1054 // We can now show all of the drawn windows!
1055 if (!mService.mOpeningApps.contains(this)) {
1056 mService.mAnimator.orAnimating(mAppAnimator.showAllWindowsLocked());
1057 }
1058 }
1059 }
1060
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001061 void updateAllDrawn(DisplayContent dc) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001062 if (!allDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001063 final int numInteresting = mNumInterestingWindows;
1064 if (numInteresting > 0 && mNumDrawnWindows >= numInteresting) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001065 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawn: " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001066 + " interesting=" + numInteresting + " drawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001067 allDrawn = true;
1068 // Force an additional layout pass where
1069 // WindowStateAnimator#commitFinishDrawingLocked() will call performShowLocked().
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001070 dc.setLayoutNeeded();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001071 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
1072 }
1073 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001074
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001075 if (!allDrawnExcludingSaved) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001076 int numInteresting = mNumInterestingWindowsExcludingSaved;
1077 if (numInteresting > 0 && mNumDrawnWindowsExcludingSaved >= numInteresting) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001078 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawnExcludingSaved: " + this
1079 + " interesting=" + numInteresting
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001080 + " drawn=" + mNumDrawnWindowsExcludingSaved);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001081 allDrawnExcludingSaved = true;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001082 dc.setLayoutNeeded();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001083 if (isAnimatingInvisibleWithSavedSurface()
1084 && !mService.mFinishedEarlyAnim.contains(this)) {
1085 mService.mFinishedEarlyAnim.add(this);
1086 }
1087 }
1088 }
1089 }
1090
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001091 /**
1092 * Updated this app token tracking states for interesting and drawn windows based on the window.
1093 *
1094 * @return Returns true if the input window is considered interesting and drawn while all the
1095 * windows in this app token where not considered drawn as of the last pass.
1096 */
1097 boolean updateDrawnWindowStates(WindowState w) {
1098 if (DEBUG_STARTING_WINDOW && w == startingWindow) {
1099 Slog.d(TAG, "updateWindows: starting " + w + " isOnScreen=" + w.isOnScreen()
1100 + " allDrawn=" + allDrawn + " freezingScreen=" + mAppAnimator.freezingScreen);
1101 }
1102
1103 if (allDrawn && allDrawnExcludingSaved && !mAppAnimator.freezingScreen) {
1104 return false;
1105 }
1106
1107 if (mLastTransactionSequence != mService.mTransactionSequence) {
1108 mLastTransactionSequence = mService.mTransactionSequence;
1109 mNumInterestingWindows = mNumDrawnWindows = 0;
1110 mNumInterestingWindowsExcludingSaved = 0;
1111 mNumDrawnWindowsExcludingSaved = 0;
1112 startingDisplayed = false;
1113 }
1114
1115 final WindowStateAnimator winAnimator = w.mWinAnimator;
1116
1117 boolean isInterestingAndDrawn = false;
1118
1119 if (!allDrawn && w.mightAffectAllDrawn(false /* visibleOnly */)) {
1120 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) {
1121 Slog.v(TAG, "Eval win " + w + ": isDrawn=" + w.isDrawnLw()
1122 + ", isAnimationSet=" + winAnimator.isAnimationSet());
1123 if (!w.isDrawnLw()) {
1124 Slog.v(TAG, "Not displayed: s=" + winAnimator.mSurfaceController
1125 + " pv=" + w.mPolicyVisibility
1126 + " mDrawState=" + winAnimator.drawStateToString()
1127 + " ph=" + w.isParentWindowHidden() + " th=" + hiddenRequested
1128 + " a=" + winAnimator.mAnimating);
1129 }
1130 }
1131
1132 if (w != startingWindow) {
1133 if (w.isInteresting()) {
1134 mNumInterestingWindows++;
1135 if (w.isDrawnLw()) {
1136 mNumDrawnWindows++;
1137
1138 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG, "tokenMayBeDrawn: "
1139 + this + " w=" + w + " numInteresting=" + mNumInterestingWindows
1140 + " freezingScreen=" + mAppAnimator.freezingScreen
1141 + " mAppFreezing=" + w.mAppFreezing);
1142
1143 isInterestingAndDrawn = true;
1144 }
1145 }
1146 } else if (w.isDrawnLw()) {
1147 mService.mH.sendEmptyMessage(NOTIFY_STARTING_WINDOW_DRAWN);
1148 startingDisplayed = true;
1149 }
1150 }
1151
1152 if (!allDrawnExcludingSaved && w.mightAffectAllDrawn(true /* visibleOnly */)) {
1153 if (w != startingWindow && w.isInteresting()) {
1154 mNumInterestingWindowsExcludingSaved++;
1155 if (w.isDrawnLw() && !w.isAnimatingWithSavedSurface()) {
1156 mNumDrawnWindowsExcludingSaved++;
1157
1158 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG,
1159 "tokenMayBeDrawnExcludingSaved: " + this + " w=" + w
1160 + " numInteresting=" + mNumInterestingWindowsExcludingSaved
1161 + " freezingScreen=" + mAppAnimator.freezingScreen
1162 + " mAppFreezing=" + w.mAppFreezing);
1163
1164 isInterestingAndDrawn = true;
1165 }
1166 }
1167 }
1168
1169 return isInterestingAndDrawn;
1170 }
1171
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001172 @Override
1173 void stepAppWindowsAnimation(long currentTime, int displayId) {
1174 mAppAnimator.wasAnimating = mAppAnimator.animating;
1175 if (mAppAnimator.stepAnimationLocked(currentTime, displayId)) {
1176 mAppAnimator.animating = true;
1177 mService.mAnimator.setAnimating(true);
1178 mService.mAnimator.mAppWindowAnimating = true;
1179 } else if (mAppAnimator.wasAnimating) {
1180 // stopped animating, do one more pass through the layout
1181 setAppLayoutChanges(
1182 FINISH_LAYOUT_REDO_WALLPAPER, "appToken " + this + " done", displayId);
1183 if (DEBUG_ANIM) Slog.v(TAG, "updateWindowsApps...: done animating " + this);
1184 }
1185 }
1186
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001187 int rebuildWindowListUnchecked(DisplayContent dc, int addIndex) {
1188 return super.rebuildWindowList(dc, addIndex);
1189 }
1190
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001191 @Override
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001192 int rebuildWindowList(DisplayContent dc, int addIndex) {
1193 if (mIsExiting && !waitingForReplacement()) {
1194 return addIndex;
1195 }
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001196 return rebuildWindowListUnchecked(dc, addIndex);
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001197 }
1198
1199 @Override
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001200 AppWindowToken asAppWindowToken() {
1201 // I am an app window token!
1202 return this;
1203 }
1204
1205 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -07001206 boolean fillsParent() {
1207 return mFillsParent;
1208 }
1209
1210 void setFillsParent(boolean fillsParent) {
1211 mFillsParent = fillsParent;
1212 }
1213
1214 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001215 void dump(PrintWriter pw, String prefix) {
1216 super.dump(pw, prefix);
1217 if (appToken != null) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001218 pw.print(prefix); pw.print("app=true voiceInteraction="); pw.println(voiceInteraction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001219 }
Craig Mautner83162a92015-01-26 14:43:30 -08001220 pw.print(prefix); pw.print("task="); pw.println(mTask);
Wale Ogunwale51362492016-09-08 17:49:17 -07001221 pw.print(prefix); pw.print(" mFillsParent="); pw.print(mFillsParent);
1222 pw.print(" mOrientation="); pw.println(mOrientation);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001223 pw.print(prefix); pw.print("hiddenRequested="); pw.print(hiddenRequested);
1224 pw.print(" clientHidden="); pw.print(clientHidden);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001225 pw.print(" reportedDrawn="); pw.print(reportedDrawn);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001226 pw.print(" reportedVisible="); pw.println(reportedVisible);
Craig Mautner59431632012-04-04 11:56:44 -07001227 if (paused) {
1228 pw.print(prefix); pw.print("paused="); pw.println(paused);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001229 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001230 if (mAppStopped) {
1231 pw.print(prefix); pw.print("mAppStopped="); pw.println(mAppStopped);
1232 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001233 if (mNumInterestingWindows != 0 || mNumDrawnWindows != 0
Craig Mautner6fbda632012-07-03 09:26:39 -07001234 || allDrawn || mAppAnimator.allDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001235 pw.print(prefix); pw.print("mNumInterestingWindows=");
1236 pw.print(mNumInterestingWindows);
1237 pw.print(" mNumDrawnWindows="); pw.print(mNumDrawnWindows);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001238 pw.print(" inPendingTransaction="); pw.print(inPendingTransaction);
Craig Mautner6fbda632012-07-03 09:26:39 -07001239 pw.print(" allDrawn="); pw.print(allDrawn);
1240 pw.print(" (animator="); pw.print(mAppAnimator.allDrawn);
1241 pw.println(")");
1242 }
1243 if (inPendingTransaction) {
1244 pw.print(prefix); pw.print("inPendingTransaction=");
1245 pw.println(inPendingTransaction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001246 }
Craig Mautner799bc1d2015-01-14 10:33:48 -08001247 if (startingData != null || removed || firstWindowDrawn || mIsExiting) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001248 pw.print(prefix); pw.print("startingData="); pw.print(startingData);
1249 pw.print(" removed="); pw.print(removed);
Craig Mautner3d7ca312015-01-08 10:56:00 -08001250 pw.print(" firstWindowDrawn="); pw.print(firstWindowDrawn);
Craig Mautner799bc1d2015-01-14 10:33:48 -08001251 pw.print(" mIsExiting="); pw.println(mIsExiting);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001252 }
1253 if (startingWindow != null || startingView != null
1254 || startingDisplayed || startingMoved) {
1255 pw.print(prefix); pw.print("startingWindow="); pw.print(startingWindow);
1256 pw.print(" startingView="); pw.print(startingView);
1257 pw.print(" startingDisplayed="); pw.print(startingDisplayed);
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001258 pw.print(" startingMoved="); pw.println(startingMoved);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001259 }
Jorim Jaggi0429f352015-12-22 16:29:16 +01001260 if (!mFrozenBounds.isEmpty()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -08001261 pw.print(prefix); pw.print("mFrozenBounds="); pw.println(mFrozenBounds);
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001262 pw.print(prefix); pw.print("mFrozenMergedConfig="); pw.println(mFrozenMergedConfig);
Chong Zhangd78ddb42016-03-02 17:01:14 -08001263 }
1264 if (mPendingRelaunchCount != 0) {
1265 pw.print(prefix); pw.print("mPendingRelaunchCount="); pw.println(mPendingRelaunchCount);
Jorim Jaggi0429f352015-12-22 16:29:16 +01001266 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001267 }
1268
1269 @Override
1270 public String toString() {
1271 if (stringName == null) {
1272 StringBuilder sb = new StringBuilder();
1273 sb.append("AppWindowToken{");
1274 sb.append(Integer.toHexString(System.identityHashCode(this)));
1275 sb.append(" token="); sb.append(token); sb.append('}');
1276 stringName = sb.toString();
1277 }
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001278 return stringName + ((mIsExiting) ? " mIsExiting=" : "");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001279 }
Jeff Browne9bdb312012-04-05 15:30:10 -07001280}