blob: 2187d41b96c861123e046a93baaa484eac05b954 [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 Ogunwaled1c37912016-08-16 03:19:39 -0700161 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean _voiceInteraction) {
162 super(service, token != null ? token.asBinder() : null, TYPE_APPLICATION, true);
163 appToken = token;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700164 voiceInteraction = _voiceInteraction;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800165 mInputApplicationHandle = new InputApplicationHandle(this);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700166 mAppAnimator = new AppWindowAnimator(this, service);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800167 }
168
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800169 void onFirstWindowDrawn(WindowState win, WindowStateAnimator winAnimator) {
170 firstWindowDrawn = true;
171
172 // We now have a good window to show, remove dead placeholders
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700173 removeDeadWindows();
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800174
175 if (startingData != null) {
176 if (DEBUG_STARTING_WINDOW || DEBUG_ANIM) Slog.v(TAG, "Finish starting "
177 + win.mToken + ": first real window is shown, no animation");
178 // If this initial window is animating, stop it -- we will do an animation to reveal
179 // it from behind the starting window, so there is no need for it to also be doing its
180 // own stuff.
181 winAnimator.clearAnimation();
182 winAnimator.mService.mFinishedStarting.add(this);
183 winAnimator.mService.mH.sendEmptyMessage(H.FINISHED_STARTING);
184 }
185 updateReportedVisibilityLocked();
186 }
187
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800188 void updateReportedVisibilityLocked() {
189 if (appToken == null) {
190 return;
191 }
192
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700193 if (DEBUG_VISIBILITY) Slog.v(TAG, "Update reported visibility: " + this);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700194 final int count = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800195
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700196 mReportedVisibilityResults.reset();
197
198 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700199 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700200 win.updateReportedVisibility(mReportedVisibilityResults);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800201 }
202
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700203 int numInteresting = mReportedVisibilityResults.numInteresting;
204 int numVisible = mReportedVisibilityResults.numVisible;
205 int numDrawn = mReportedVisibilityResults.numDrawn;
206 boolean nowGone = mReportedVisibilityResults.nowGone;
207
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700208 boolean nowDrawn = numInteresting > 0 && numDrawn >= numInteresting;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800209 boolean nowVisible = numInteresting > 0 && numVisible >= numInteresting;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700210 if (!nowGone) {
211 // If the app is not yet gone, then it can only become visible/drawn.
212 if (!nowDrawn) {
213 nowDrawn = reportedDrawn;
214 }
215 if (!nowVisible) {
216 nowVisible = reportedVisible;
217 }
218 }
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800219 if (DEBUG_VISIBILITY) Slog.v(TAG, "VIS " + this + ": interesting="
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800220 + numInteresting + " visible=" + numVisible);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700221 if (nowDrawn != reportedDrawn) {
222 if (nowDrawn) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700223 mService.mH.obtainMessage(H.REPORT_APPLICATION_TOKEN_DRAWN, this).sendToTarget();
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700224 }
225 reportedDrawn = nowDrawn;
226 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800227 if (nowVisible != reportedVisible) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700228 if (DEBUG_VISIBILITY) Slog.v(TAG,
229 "Visibility changed in " + this + ": vis=" + nowVisible);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800230 reportedVisible = nowVisible;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700231 mService.mH.obtainMessage(H.REPORT_APPLICATION_TOKEN_WINDOWS,
232 nowVisible ? 1 : 0, nowGone ? 1 : 0, this).sendToTarget();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800233 }
234 }
235
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700236 boolean setVisibility(WindowManager.LayoutParams lp,
237 boolean visible, int transit, boolean performLayout, boolean isVoiceInteraction) {
238
239 boolean delayed = false;
240 inPendingTransaction = false;
241
242 if (clientHidden == visible) {
243 clientHidden = !visible;
244 sendAppVisibilityToClients();
245 }
246
247 // Allow for state changes and animation to be applied if:
248 // * token is transitioning visibility state
249 // * or the token was marked as hidden and is exiting before we had a chance to play the
250 // transition animation
251 // * or this is an opening app and windows are being replaced.
252 boolean visibilityChanged = false;
253 if (hidden == visible || (hidden && mIsExiting) || (visible && waitingForReplacement())) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700254 final AccessibilityController accessibilityController = mService.mAccessibilityController;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700255 boolean changed = false;
256 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
257 "Changing app " + this + " hidden=" + hidden + " performLayout=" + performLayout);
258
259 boolean runningAppAnimation = false;
260
261 if (transit != AppTransition.TRANSIT_UNSET) {
262 if (mAppAnimator.animation == AppWindowAnimator.sDummyAnimation) {
263 mAppAnimator.setNullAnimation();
264 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700265 if (mService.applyAnimationLocked(this, lp, transit, visible, isVoiceInteraction)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700266 delayed = runningAppAnimation = true;
267 }
268 final WindowState window = findMainWindow();
269 //TODO (multidisplay): Magnification is supported only for the default display.
270 if (window != null && accessibilityController != null
271 && window.getDisplayId() == DEFAULT_DISPLAY) {
272 accessibilityController.onAppWindowTransitionLocked(window, transit);
273 }
274 changed = true;
275 }
276
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700277 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700278 for (int i = 0; i < windowsCount; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700279 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700280 changed |= win.onAppVisibilityChanged(visible, runningAppAnimation);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700281 }
282
283 hidden = hiddenRequested = !visible;
284 visibilityChanged = true;
285 if (!visible) {
286 stopFreezingScreen(true, true);
287 } else {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700288 // If we are being set visible, and the starting window is not yet displayed,
289 // then make sure it doesn't get displayed.
290 if (startingWindow != null && !startingWindow.isDrawnLw()) {
291 startingWindow.mPolicyVisibility = false;
292 startingWindow.mPolicyVisibilityAfterAnim = false;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700293 }
294 }
295
296 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "setVisibility: " + this
297 + ": hidden=" + hidden + " hiddenRequested=" + hiddenRequested);
298
299 if (changed) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700300 mService.mInputMonitor.setUpdateInputWindowsNeededLw();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700301 if (performLayout) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700302 mService.updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700303 false /*updateInputWindows*/);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700304 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700305 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700306 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700307 }
308 }
309
310 if (mAppAnimator.animation != null) {
311 delayed = true;
312 }
313
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700314 for (int i = mChildren.size() - 1; i >= 0 && !delayed; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700315 if ((mChildren.get(i)).isWindowAnimationSet()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700316 delayed = true;
317 }
318 }
319
320 if (visibilityChanged) {
321 if (visible && !delayed) {
322 // The token was made immediately visible, there will be no entrance animation.
323 // We need to inform the client the enter animation was finished.
324 mEnteringAnimation = true;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700325 mService.mActivityManagerAppTransitionNotifier.onAppTransitionFinishedLocked(token);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700326 }
327
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700328 if (!mService.mClosingApps.contains(this) && !mService.mOpeningApps.contains(this)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700329 // The token is not closing nor opening, so even if there is an animation set, that
330 // doesn't mean that it goes through the normal app transition cycle so we have
331 // to inform the docked controller about visibility change.
Andrii Kulian1e32e022016-09-16 15:29:34 -0700332 // TODO(multi-display): notify docked divider on all displays where visibility was
333 // affected.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700334 mService.getDefaultDisplayContentLocked().getDockedDividerController()
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700335 .notifyAppVisibilityChanged();
336 }
337 }
338
339 return delayed;
340 }
341
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800342 WindowState findMainWindow() {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700343 WindowState candidate = null;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700344 int j = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800345 while (j > 0) {
346 j--;
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700347 final WindowState win = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700348 final int type = win.mAttrs.type;
349 // No need to loop through child window as base application and starting types can't be
350 // child windows.
351 if (type == TYPE_BASE_APPLICATION || type == TYPE_APPLICATION_STARTING) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700352 // In cases where there are multiple windows, we prefer the non-exiting window. This
Sungsoo Lim0d3d1f82015-12-02 14:47:59 +0900353 // happens for example when replacing windows during an activity relaunch. When
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700354 // constructing the animation, we want the new window, not the exiting one.
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800355 if (win.mAnimatingExit) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700356 candidate = win;
357 } else {
358 return win;
359 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800360 }
361 }
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700362 return candidate;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800363 }
364
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800365 boolean windowsAreFocusable() {
366 return StackId.canReceiveKeys(mTask.mStack.mStackId) || mAlwaysFocusable;
Wale Ogunwaled045c822015-12-02 09:14:28 -0800367 }
368
Wale Ogunwale571771c2016-08-26 13:18:50 -0700369 @Override
Wale Ogunwale44f21802016-09-02 12:49:48 -0700370 boolean isVisible() {
371 if (hidden) {
372 // TODO: Should this be checking hiddenRequested instead of hidden?
373 return false;
374 }
375 return super.isVisible();
376 }
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();
797 final int width = win.mContainingFrame.width();
798 final int height = win.mContainingFrame.height();
799 mAppAnimator.setAnimation(a, width, height, false, STACK_CLIP_NONE);
800 }
801 }
802
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700803 void resetJustMovedInStack() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700804 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700805 (mChildren.get(i)).resetJustMovedInStack();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700806 }
807 }
808
809 void notifyMovedInStack() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700810 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700811 final WindowState win = mChildren.get(winNdx);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700812 win.notifyMovedInStack();
813 }
814 }
815
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700816 void setAppLayoutChanges(int changes, String reason, int displayId) {
817 final WindowAnimator windowAnimator = mAppAnimator.mAnimator;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700818 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700819 // Child windows will be on the same display as their parents.
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700820 if (displayId == (mChildren.get(i)).getDisplayId()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700821 windowAnimator.setPendingLayoutChanges(displayId, changes);
822 if (DEBUG_LAYOUT_REPEATS) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700823 mService.mWindowPlacerLocked.debugLayoutRepeats(
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700824 reason, windowAnimator.getPendingLayoutChanges(displayId));
825 }
826 break;
827 }
828 }
829 }
830
831 void removeReplacedWindowIfNeeded(WindowState replacement) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700832 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700833 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700834 if (win.removeReplacedWindowIfNeeded(replacement)) {
835 return;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700836 }
837 }
838 }
839
840 void startFreezingScreen() {
841 if (DEBUG_ORIENTATION) logWithStack(TAG, "Set freezing of " + appToken + ": hidden="
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700842 + hidden + " freezing=" + mAppAnimator.freezingScreen + " hiddenRequested="
843 + hiddenRequested);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700844 if (!hiddenRequested) {
845 if (!mAppAnimator.freezingScreen) {
846 mAppAnimator.freezingScreen = true;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700847 mService.registerAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700848 mAppAnimator.lastFreezeDuration = 0;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700849 mService.mAppsFreezingScreen++;
850 if (mService.mAppsFreezingScreen == 1) {
851 mService.startFreezingDisplayLocked(false, 0, 0);
852 mService.mH.removeMessages(H.APP_FREEZE_TIMEOUT);
853 mService.mH.sendEmptyMessageDelayed(H.APP_FREEZE_TIMEOUT, 2000);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700854 }
855 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700856 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700857 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700858 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700859 w.onStartFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700860 }
861 }
862 }
863
864 void stopFreezingScreen(boolean unfreezeSurfaceNow, boolean force) {
865 if (!mAppAnimator.freezingScreen) {
866 return;
867 }
868 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Clear freezing of " + this + " force=" + force);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700869 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700870 boolean unfrozeWindows = false;
871 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700872 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700873 unfrozeWindows |= w.onStopFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700874 }
875 if (force || unfrozeWindows) {
876 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "No longer freezing: " + this);
877 mAppAnimator.freezingScreen = false;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700878 mService.unregisterAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700879 mAppAnimator.lastFreezeDuration =
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700880 (int)(SystemClock.elapsedRealtime() - mService.mDisplayFreezeTime);
881 mService.mAppsFreezingScreen--;
882 mService.mLastFinishedFreezeSource = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700883 }
884 if (unfreezeSurfaceNow) {
885 if (unfrozeWindows) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700886 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700887 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700888 mService.stopFreezingDisplayLocked();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700889 }
890 }
891
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700892 @Override
893 public void onAppFreezeTimeout() {
894 Slog.w(TAG_WM, "Force clearing freeze: " + this);
895 stopFreezingScreen(true, true);
896 }
897
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700898 boolean transferStartingWindow(IBinder transferFrom) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700899 final AppWindowToken fromToken = mService.findAppWindowToken(transferFrom);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700900 if (fromToken == null) {
901 return false;
902 }
903
904 final WindowState tStartingWindow = fromToken.startingWindow;
905 if (tStartingWindow != null && fromToken.startingView != null) {
906 // In this case, the starting icon has already been displayed, so start
907 // letting windows get shown immediately without any more transitions.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700908 mService.mSkipAppTransitionAnimation = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700909
910 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Moving existing starting " + tStartingWindow
911 + " from " + fromToken + " to " + this);
912
913 final long origId = Binder.clearCallingIdentity();
914
915 // Transfer the starting window over to the new token.
916 startingData = fromToken.startingData;
917 startingView = fromToken.startingView;
918 startingDisplayed = fromToken.startingDisplayed;
919 fromToken.startingDisplayed = false;
920 startingWindow = tStartingWindow;
921 reportedVisible = fromToken.reportedVisible;
922 fromToken.startingData = null;
923 fromToken.startingView = null;
924 fromToken.startingWindow = null;
925 fromToken.startingMoved = true;
926 tStartingWindow.mToken = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700927 tStartingWindow.mAppToken = this;
928
929 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE || DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
930 "Removing starting window: " + tStartingWindow);
931 tStartingWindow.getWindowList().remove(tStartingWindow);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700932 mService.mWindowsChanged = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700933 if (DEBUG_ADD_REMOVE) Slog.v(TAG_WM,
934 "Removing starting " + tStartingWindow + " from " + fromToken);
Wale Ogunwalefa854eb2016-09-20 13:43:52 -0700935 fromToken.removeChild(tStartingWindow);
936 fromToken.postWindowRemoveStartingWindowCleanup(tStartingWindow);
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700937 addWindow(tStartingWindow);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700938
939 // Propagate other interesting state between the tokens. If the old token is displayed,
940 // we should immediately force the new one to be displayed. If it is animating, we need
941 // to move that animation to the new one.
942 if (fromToken.allDrawn) {
943 allDrawn = true;
944 deferClearAllDrawn = fromToken.deferClearAllDrawn;
945 }
946 if (fromToken.firstWindowDrawn) {
947 firstWindowDrawn = true;
948 }
949 if (!fromToken.hidden) {
950 hidden = false;
951 hiddenRequested = false;
952 }
953 if (clientHidden != fromToken.clientHidden) {
954 clientHidden = fromToken.clientHidden;
955 sendAppVisibilityToClients();
956 }
957 fromToken.mAppAnimator.transferCurrentAnimation(
958 mAppAnimator, tStartingWindow.mWinAnimator);
959
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700960 mService.updateFocusedWindowLocked(
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700961 UPDATE_FOCUS_WILL_PLACE_SURFACES, true /*updateInputWindows*/);
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -0700962 mService.getDefaultDisplayContentLocked().setLayoutNeeded();
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700963 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700964 Binder.restoreCallingIdentity(origId);
965 return true;
966 } else if (fromToken.startingData != null) {
967 // The previous app was getting ready to show a
968 // starting window, but hasn't yet done so. Steal it!
969 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
970 "Moving pending starting from " + fromToken + " to " + this);
971 startingData = fromToken.startingData;
972 fromToken.startingData = null;
973 fromToken.startingMoved = true;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700974 final Message m = mService.mH.obtainMessage(H.ADD_STARTING, this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700975 // Note: we really want to do sendMessageAtFrontOfQueue() because we want to process the
976 // message ASAP, before any other queued messages.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700977 mService.mH.sendMessageAtFrontOfQueue(m);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700978 return true;
979 }
980
981 final AppWindowAnimator tAppAnimator = fromToken.mAppAnimator;
982 final AppWindowAnimator wAppAnimator = mAppAnimator;
983 if (tAppAnimator.thumbnail != null) {
984 // The old token is animating with a thumbnail, transfer that to the new token.
985 if (wAppAnimator.thumbnail != null) {
986 wAppAnimator.thumbnail.destroy();
987 }
988 wAppAnimator.thumbnail = tAppAnimator.thumbnail;
989 wAppAnimator.thumbnailLayer = tAppAnimator.thumbnailLayer;
990 wAppAnimator.thumbnailAnimation = tAppAnimator.thumbnailAnimation;
991 tAppAnimator.thumbnail = null;
992 }
993 return false;
994 }
995
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700996 boolean isLastWindow(WindowState win) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700997 return mChildren.size() == 1 && mChildren.get(0) == win;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700998 }
999
1000 void setAllAppWinAnimators() {
1001 final ArrayList<WindowStateAnimator> allAppWinAnimators = mAppAnimator.mAllAppWinAnimators;
1002 allAppWinAnimators.clear();
1003
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001004 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001005 for (int j = 0; j < windowsCount; j++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001006 (mChildren.get(j)).addWinAnimatorToList(allAppWinAnimators);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001007 }
1008 }
1009
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001010 @Override
1011 void onAppTransitionDone() {
1012 sendingToBottom = false;
1013 }
1014
Wale Ogunwale51362492016-09-08 17:49:17 -07001015 /**
1016 * We override because this class doesn't want its children affecting its reported orientation
1017 * in anyway.
1018 */
1019 @Override
1020 int getOrientation() {
1021 if (hidden || hiddenRequested) {
1022 return SCREEN_ORIENTATION_UNSET;
1023 }
1024 return mOrientation;
1025 }
1026
Craig Mautnerdbb79912012-03-01 18:59:14 -08001027 @Override
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001028 void checkAppWindowsReadyToShow(int displayId) {
1029 if (allDrawn == mAppAnimator.allDrawn) {
1030 return;
1031 }
1032
1033 mAppAnimator.allDrawn = allDrawn;
1034 if (!allDrawn) {
1035 return;
1036 }
1037
1038 // The token has now changed state to having all windows shown... what to do, what to do?
1039 if (mAppAnimator.freezingScreen) {
1040 mAppAnimator.showAllWindowsLocked();
1041 stopFreezingScreen(false, true);
1042 if (DEBUG_ORIENTATION) Slog.i(TAG,
1043 "Setting mOrientationChangeComplete=true because wtoken " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001044 + " numInteresting=" + mNumInterestingWindows + " numDrawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001045 // This will set mOrientationChangeComplete and cause a pass through layout.
1046 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
1047 "checkAppWindowsReadyToShow: freezingScreen", displayId);
1048 } else {
1049 setAppLayoutChanges(FINISH_LAYOUT_REDO_ANIM, "checkAppWindowsReadyToShow", displayId);
1050
1051 // We can now show all of the drawn windows!
1052 if (!mService.mOpeningApps.contains(this)) {
1053 mService.mAnimator.orAnimating(mAppAnimator.showAllWindowsLocked());
1054 }
1055 }
1056 }
1057
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001058 void updateAllDrawn(DisplayContent dc) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001059 if (!allDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001060 final int numInteresting = mNumInterestingWindows;
1061 if (numInteresting > 0 && mNumDrawnWindows >= numInteresting) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001062 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawn: " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001063 + " interesting=" + numInteresting + " drawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001064 allDrawn = true;
1065 // Force an additional layout pass where
1066 // WindowStateAnimator#commitFinishDrawingLocked() will call performShowLocked().
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001067 dc.setLayoutNeeded();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001068 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
1069 }
1070 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001071
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001072 if (!allDrawnExcludingSaved) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001073 int numInteresting = mNumInterestingWindowsExcludingSaved;
1074 if (numInteresting > 0 && mNumDrawnWindowsExcludingSaved >= numInteresting) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001075 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawnExcludingSaved: " + this
1076 + " interesting=" + numInteresting
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001077 + " drawn=" + mNumDrawnWindowsExcludingSaved);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001078 allDrawnExcludingSaved = true;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001079 dc.setLayoutNeeded();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001080 if (isAnimatingInvisibleWithSavedSurface()
1081 && !mService.mFinishedEarlyAnim.contains(this)) {
1082 mService.mFinishedEarlyAnim.add(this);
1083 }
1084 }
1085 }
1086 }
1087
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001088 /**
1089 * Updated this app token tracking states for interesting and drawn windows based on the window.
1090 *
1091 * @return Returns true if the input window is considered interesting and drawn while all the
1092 * windows in this app token where not considered drawn as of the last pass.
1093 */
1094 boolean updateDrawnWindowStates(WindowState w) {
1095 if (DEBUG_STARTING_WINDOW && w == startingWindow) {
1096 Slog.d(TAG, "updateWindows: starting " + w + " isOnScreen=" + w.isOnScreen()
1097 + " allDrawn=" + allDrawn + " freezingScreen=" + mAppAnimator.freezingScreen);
1098 }
1099
1100 if (allDrawn && allDrawnExcludingSaved && !mAppAnimator.freezingScreen) {
1101 return false;
1102 }
1103
1104 if (mLastTransactionSequence != mService.mTransactionSequence) {
1105 mLastTransactionSequence = mService.mTransactionSequence;
1106 mNumInterestingWindows = mNumDrawnWindows = 0;
1107 mNumInterestingWindowsExcludingSaved = 0;
1108 mNumDrawnWindowsExcludingSaved = 0;
1109 startingDisplayed = false;
1110 }
1111
1112 final WindowStateAnimator winAnimator = w.mWinAnimator;
1113
1114 boolean isInterestingAndDrawn = false;
1115
1116 if (!allDrawn && w.mightAffectAllDrawn(false /* visibleOnly */)) {
1117 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) {
1118 Slog.v(TAG, "Eval win " + w + ": isDrawn=" + w.isDrawnLw()
1119 + ", isAnimationSet=" + winAnimator.isAnimationSet());
1120 if (!w.isDrawnLw()) {
1121 Slog.v(TAG, "Not displayed: s=" + winAnimator.mSurfaceController
1122 + " pv=" + w.mPolicyVisibility
1123 + " mDrawState=" + winAnimator.drawStateToString()
1124 + " ph=" + w.isParentWindowHidden() + " th=" + hiddenRequested
1125 + " a=" + winAnimator.mAnimating);
1126 }
1127 }
1128
1129 if (w != startingWindow) {
1130 if (w.isInteresting()) {
1131 mNumInterestingWindows++;
1132 if (w.isDrawnLw()) {
1133 mNumDrawnWindows++;
1134
1135 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG, "tokenMayBeDrawn: "
1136 + this + " w=" + w + " numInteresting=" + mNumInterestingWindows
1137 + " freezingScreen=" + mAppAnimator.freezingScreen
1138 + " mAppFreezing=" + w.mAppFreezing);
1139
1140 isInterestingAndDrawn = true;
1141 }
1142 }
1143 } else if (w.isDrawnLw()) {
1144 mService.mH.sendEmptyMessage(NOTIFY_STARTING_WINDOW_DRAWN);
1145 startingDisplayed = true;
1146 }
1147 }
1148
1149 if (!allDrawnExcludingSaved && w.mightAffectAllDrawn(true /* visibleOnly */)) {
1150 if (w != startingWindow && w.isInteresting()) {
1151 mNumInterestingWindowsExcludingSaved++;
1152 if (w.isDrawnLw() && !w.isAnimatingWithSavedSurface()) {
1153 mNumDrawnWindowsExcludingSaved++;
1154
1155 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG,
1156 "tokenMayBeDrawnExcludingSaved: " + this + " w=" + w
1157 + " numInteresting=" + mNumInterestingWindowsExcludingSaved
1158 + " freezingScreen=" + mAppAnimator.freezingScreen
1159 + " mAppFreezing=" + w.mAppFreezing);
1160
1161 isInterestingAndDrawn = true;
1162 }
1163 }
1164 }
1165
1166 return isInterestingAndDrawn;
1167 }
1168
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001169 @Override
1170 void stepAppWindowsAnimation(long currentTime, int displayId) {
1171 mAppAnimator.wasAnimating = mAppAnimator.animating;
1172 if (mAppAnimator.stepAnimationLocked(currentTime, displayId)) {
1173 mAppAnimator.animating = true;
1174 mService.mAnimator.setAnimating(true);
1175 mService.mAnimator.mAppWindowAnimating = true;
1176 } else if (mAppAnimator.wasAnimating) {
1177 // stopped animating, do one more pass through the layout
1178 setAppLayoutChanges(
1179 FINISH_LAYOUT_REDO_WALLPAPER, "appToken " + this + " done", displayId);
1180 if (DEBUG_ANIM) Slog.v(TAG, "updateWindowsApps...: done animating " + this);
1181 }
1182 }
1183
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001184 int rebuildWindowListUnchecked(DisplayContent dc, int addIndex) {
1185 return super.rebuildWindowList(dc, addIndex);
1186 }
1187
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001188 @Override
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001189 int rebuildWindowList(DisplayContent dc, int addIndex) {
1190 if (mIsExiting && !waitingForReplacement()) {
1191 return addIndex;
1192 }
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001193 return rebuildWindowListUnchecked(dc, addIndex);
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001194 }
1195
1196 @Override
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001197 AppWindowToken asAppWindowToken() {
1198 // I am an app window token!
1199 return this;
1200 }
1201
1202 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -07001203 boolean fillsParent() {
1204 return mFillsParent;
1205 }
1206
1207 void setFillsParent(boolean fillsParent) {
1208 mFillsParent = fillsParent;
1209 }
1210
1211 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001212 void dump(PrintWriter pw, String prefix) {
1213 super.dump(pw, prefix);
1214 if (appToken != null) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001215 pw.print(prefix); pw.print("app=true voiceInteraction="); pw.println(voiceInteraction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001216 }
Craig Mautner83162a92015-01-26 14:43:30 -08001217 pw.print(prefix); pw.print("task="); pw.println(mTask);
Wale Ogunwale51362492016-09-08 17:49:17 -07001218 pw.print(prefix); pw.print(" mFillsParent="); pw.print(mFillsParent);
1219 pw.print(" mOrientation="); pw.println(mOrientation);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001220 pw.print(prefix); pw.print("hiddenRequested="); pw.print(hiddenRequested);
1221 pw.print(" clientHidden="); pw.print(clientHidden);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001222 pw.print(" reportedDrawn="); pw.print(reportedDrawn);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001223 pw.print(" reportedVisible="); pw.println(reportedVisible);
Craig Mautner59431632012-04-04 11:56:44 -07001224 if (paused) {
1225 pw.print(prefix); pw.print("paused="); pw.println(paused);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001226 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001227 if (mAppStopped) {
1228 pw.print(prefix); pw.print("mAppStopped="); pw.println(mAppStopped);
1229 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001230 if (mNumInterestingWindows != 0 || mNumDrawnWindows != 0
Craig Mautner6fbda632012-07-03 09:26:39 -07001231 || allDrawn || mAppAnimator.allDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001232 pw.print(prefix); pw.print("mNumInterestingWindows=");
1233 pw.print(mNumInterestingWindows);
1234 pw.print(" mNumDrawnWindows="); pw.print(mNumDrawnWindows);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001235 pw.print(" inPendingTransaction="); pw.print(inPendingTransaction);
Craig Mautner6fbda632012-07-03 09:26:39 -07001236 pw.print(" allDrawn="); pw.print(allDrawn);
1237 pw.print(" (animator="); pw.print(mAppAnimator.allDrawn);
1238 pw.println(")");
1239 }
1240 if (inPendingTransaction) {
1241 pw.print(prefix); pw.print("inPendingTransaction=");
1242 pw.println(inPendingTransaction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001243 }
Craig Mautner799bc1d2015-01-14 10:33:48 -08001244 if (startingData != null || removed || firstWindowDrawn || mIsExiting) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001245 pw.print(prefix); pw.print("startingData="); pw.print(startingData);
1246 pw.print(" removed="); pw.print(removed);
Craig Mautner3d7ca312015-01-08 10:56:00 -08001247 pw.print(" firstWindowDrawn="); pw.print(firstWindowDrawn);
Craig Mautner799bc1d2015-01-14 10:33:48 -08001248 pw.print(" mIsExiting="); pw.println(mIsExiting);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001249 }
1250 if (startingWindow != null || startingView != null
1251 || startingDisplayed || startingMoved) {
1252 pw.print(prefix); pw.print("startingWindow="); pw.print(startingWindow);
1253 pw.print(" startingView="); pw.print(startingView);
1254 pw.print(" startingDisplayed="); pw.print(startingDisplayed);
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001255 pw.print(" startingMoved="); pw.println(startingMoved);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001256 }
Jorim Jaggi0429f352015-12-22 16:29:16 +01001257 if (!mFrozenBounds.isEmpty()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -08001258 pw.print(prefix); pw.print("mFrozenBounds="); pw.println(mFrozenBounds);
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001259 pw.print(prefix); pw.print("mFrozenMergedConfig="); pw.println(mFrozenMergedConfig);
Chong Zhangd78ddb42016-03-02 17:01:14 -08001260 }
1261 if (mPendingRelaunchCount != 0) {
1262 pw.print(prefix); pw.print("mPendingRelaunchCount="); pw.println(mPendingRelaunchCount);
Jorim Jaggi0429f352015-12-22 16:29:16 +01001263 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001264 }
1265
1266 @Override
1267 public String toString() {
1268 if (stringName == null) {
1269 StringBuilder sb = new StringBuilder();
1270 sb.append("AppWindowToken{");
1271 sb.append(Integer.toHexString(System.identityHashCode(this)));
1272 sb.append(" token="); sb.append(token); sb.append('}');
1273 stringName = sb.toString();
1274 }
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001275 return stringName + ((mIsExiting) ? " mIsExiting=" : "");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001276 }
Jeff Browne9bdb312012-04-05 15:30:10 -07001277}