blob: ee7c6d2cfd1e94bb220f08e475273e850c8aaa26 [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
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700273 && getDisplayContent().getDisplayId() == DEFAULT_DISPLAY) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700274 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) {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700421 boolean destroyedSomething = false;
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 Ogunwaleb0f3b832016-10-17 10:13:07 -0700424 destroyedSomething |= win.destroySurface(cleanupOnResume, mAppStopped);
Robert Carre12aece2016-02-02 22:43:27 -0800425 }
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700426 if (destroyedSomething) {
427 final DisplayContent dc = getDisplayContent();
428 mService.mLayersController.assignLayersLocked(dc.getWindowList());
429 dc.setLayoutNeeded();
Robert Carre12aece2016-02-02 22:43:27 -0800430 }
431 }
432
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800433 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700434 * Notify that the app is now resumed, and it was not stopped before, perform a clean
435 * up of the surfaces
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800436 */
Chong Zhangad24f962016-08-25 12:12:33 -0700437 void notifyAppResumed(boolean wasStopped, boolean allowSavedSurface) {
438 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppResumed: wasStopped=" + wasStopped
439 + " allowSavedSurface=" + allowSavedSurface + " " + this);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700440 mAppStopped = false;
441 if (!wasStopped) {
442 destroySurfaces(true /*cleanupOnResume*/);
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800443 }
Chong Zhangad24f962016-08-25 12:12:33 -0700444 if (!allowSavedSurface) {
445 destroySavedSurfaces();
446 }
Robert Carre12aece2016-02-02 22:43:27 -0800447 }
448
Chong Zhangbef461f2015-10-27 11:38:24 -0700449 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700450 * Notify that the app has stopped, and it is okay to destroy any surfaces which were
451 * keeping alive in case they were still being used.
452 */
453 void notifyAppStopped() {
454 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppStopped: " + this);
455 mAppStopped = true;
456 destroySurfaces();
457 // Remove any starting window that was added for this app if they are still around.
458 mTask.mService.scheduleRemoveStartingWindowLocked(this);
459 }
460
461 /**
Chong Zhangbef461f2015-10-27 11:38:24 -0700462 * Checks whether we should save surfaces for this app.
463 *
464 * @return true if the surfaces should be saved, false otherwise.
465 */
466 boolean shouldSaveSurface() {
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800467 // We want to save surface if the app's windows are "allDrawn".
468 // (If we started entering animation early with saved surfaces, allDrawn
469 // should have been restored to true. So we'll save again in that case
470 // even if app didn't actually finish drawing.)
471 return allDrawn;
Robert Carr13f7be9e2015-12-02 18:39:45 -0800472 }
473
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700474 private boolean canRestoreSurfaces() {
475 for (int i = mChildren.size() -1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700476 final WindowState w = mChildren.get(i);
Chong Zhang92147042016-05-09 12:47:11 -0700477 if (w.canRestoreSurface()) {
Robert Carr13f7be9e2015-12-02 18:39:45 -0800478 return true;
479 }
Chong Zhangbef461f2015-10-27 11:38:24 -0700480 }
481 return false;
482 }
483
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700484 private void clearWasVisibleBeforeClientHidden() {
485 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700486 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700487 w.clearWasVisibleBeforeClientHidden();
Chong Zhang92147042016-05-09 12:47:11 -0700488 }
489 }
490
Chong Zhang8e4bda92016-05-04 15:08:18 -0700491 /**
492 * Whether the app has some window that is invisible in layout, but
493 * animating with saved surface.
494 */
495 boolean isAnimatingInvisibleWithSavedSurface() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700496 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700497 final WindowState w = mChildren.get(i);
Chong Zhang8e4bda92016-05-04 15:08:18 -0700498 if (w.isAnimatingInvisibleWithSavedSurface()) {
499 return true;
500 }
501 }
502 return false;
503 }
504
505 /**
506 * Hide all window surfaces that's still invisible in layout but animating
507 * with a saved surface, and mark them destroying.
508 */
509 void stopUsingSavedSurfaceLocked() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700510 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700511 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700512 w.stopUsingSavedSurface();
Chong Zhang8e4bda92016-05-04 15:08:18 -0700513 }
514 destroySurfaces();
515 }
516
Chong Zhangf58631a2016-05-24 16:02:10 -0700517 void markSavedSurfaceExiting() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700518 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700519 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700520 w.markSavedSurfaceExiting();
Chong Zhangf58631a2016-05-24 16:02:10 -0700521 }
522 }
523
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700524 void restoreSavedSurfaceForInterestingWindows() {
Chong Zhang92147042016-05-09 12:47:11 -0700525 if (!canRestoreSurfaces()) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700526 clearWasVisibleBeforeClientHidden();
Chong Zhangbef461f2015-10-27 11:38:24 -0700527 return;
528 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700529
530 // Check if all interesting windows are drawn and we can mark allDrawn=true.
531 int interestingNotDrawn = -1;
532
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700533 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700534 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700535 interestingNotDrawn = w.restoreSavedSurfaceForInterestingWindow();
Chong Zhangbef461f2015-10-27 11:38:24 -0700536 }
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800537
Chong Zhang92147042016-05-09 12:47:11 -0700538 if (!allDrawn) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700539 allDrawn = (interestingNotDrawn == 0);
Chong Zhang92147042016-05-09 12:47:11 -0700540 if (allDrawn) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700541 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Chong Zhang92147042016-05-09 12:47:11 -0700542 }
543 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700544 clearWasVisibleBeforeClientHidden();
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800545
546 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.d(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700547 "restoreSavedSurfaceForInterestingWindows: " + this + " allDrawn=" + allDrawn
548 + " interestingNotDrawn=" + interestingNotDrawn);
Chong Zhangbef461f2015-10-27 11:38:24 -0700549 }
550
551 void destroySavedSurfaces() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700552 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700553 final WindowState win = mChildren.get(i);
Robert Carr13f7be9e2015-12-02 18:39:45 -0800554 win.destroySavedSurface();
Chong Zhangbef461f2015-10-27 11:38:24 -0700555 }
Chong Zhang92147042016-05-09 12:47:11 -0700556 }
557
558 void clearAllDrawn() {
559 allDrawn = false;
560 deferClearAllDrawn = false;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700561 allDrawnExcludingSaved = false;
Chong Zhangbef461f2015-10-27 11:38:24 -0700562 }
563
Wale Ogunwalefa854eb2016-09-20 13:43:52 -0700564 void postWindowRemoveStartingWindowCleanup(WindowState win) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700565 // TODO: Something smells about the code below...Is there a better way?
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700566 if (startingWindow == win) {
567 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Notify removed startingWindow " + win);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700568 mService.scheduleRemoveStartingWindowLocked(this);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700569 } else if (mChildren.size() == 0 && startingData != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700570 // If this is the last window and we had requested a starting transition window,
571 // well there is no point now.
572 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Nulling last startingWindow");
573 startingData = null;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700574 } else if (mChildren.size() == 1 && startingView != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700575 // If this is the last window except for a starting transition window,
576 // we need to get rid of the starting transition.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700577 mService.scheduleRemoveStartingWindowLocked(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700578 }
579 }
580
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700581 void removeDeadWindows() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700582 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700583 WindowState win = mChildren.get(winNdx);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800584 if (win.mAppDied) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700585 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE) Slog.w(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700586 "removeDeadWindows: " + win);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800587 // Set mDestroying, we don't want any animation or delayed removal here.
588 win.mDestroying = true;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700589 // Also removes child windows.
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700590 win.removeIfPossible();
Chong Zhang112eb8c2015-11-02 11:17:00 -0800591 }
592 }
593 }
594
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700595 boolean hasWindowsAlive() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700596 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700597 // No need to loop through child windows as the answer should be the same as that of the
598 // parent window.
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700599 if (!(mChildren.get(i)).mAppDied) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700600 return true;
601 }
602 }
603 return false;
604 }
605
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700606 void setWillReplaceWindows(boolean animate) {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700607 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
608 "Marking app token " + this + " with replacing windows.");
Robert Carra1eb4392015-12-10 12:43:51 -0800609
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700610 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700611 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700612 w.setWillReplaceWindow(animate);
Robert Carra1eb4392015-12-10 12:43:51 -0800613 }
614 if (animate) {
615 // Set-up dummy animation so we can start treating windows associated with this
616 // token like they are in transition before the new app window is ready for us to
617 // run the real transition animation.
618 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700619 "setWillReplaceWindow() Setting dummy animation on: " + this);
Robert Carra1eb4392015-12-10 12:43:51 -0800620 mAppAnimator.setDummyAnimation();
621 }
622 }
623
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700624 void setWillReplaceChildWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700625 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM, "Marking app token " + this
Robert Carr23fa16b2016-01-13 13:19:58 -0800626 + " with replacing child windows.");
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700627 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700628 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700629 w.setWillReplaceChildWindows();
Robert Carr23fa16b2016-01-13 13:19:58 -0800630 }
631 }
632
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700633 void clearWillReplaceWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700634 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
635 "Resetting app token " + this + " of replacing window marks.");
Chong Zhangf596cd52016-01-05 13:42:44 -0800636
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700637 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700638 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700639 w.clearWillReplaceWindow();
Chong Zhangf596cd52016-01-05 13:42:44 -0800640 }
641 }
642
Chong Zhang4d7369a2016-04-25 16:09:14 -0700643 void requestUpdateWallpaperIfNeeded() {
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);
Chong Zhang4d7369a2016-04-25 16:09:14 -0700646 w.requestUpdateWallpaperIfNeeded();
647 }
648 }
649
Chong Zhangd78ddb42016-03-02 17:01:14 -0800650 boolean isRelaunching() {
651 return mPendingRelaunchCount > 0;
652 }
653
654 void startRelaunching() {
655 if (canFreezeBounds()) {
656 freezeBounds();
657 }
658 mPendingRelaunchCount++;
659 }
660
661 void finishRelaunching() {
662 if (canFreezeBounds()) {
663 unfreezeBounds();
664 }
665 if (mPendingRelaunchCount > 0) {
666 mPendingRelaunchCount--;
667 }
668 }
669
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700670 void clearRelaunching() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700671 if (mPendingRelaunchCount == 0) {
672 return;
673 }
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700674 if (canFreezeBounds()) {
675 unfreezeBounds();
676 }
677 mPendingRelaunchCount = 0;
678 }
679
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700680 @Override
Robert Carra1eb4392015-12-10 12:43:51 -0800681 void addWindow(WindowState w) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700682 super.addWindow(w);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700683
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700684 boolean gotReplacementWindow = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700685 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700686 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700687 gotReplacementWindow |= candidate.setReplacementWindowIfNeeded(w);
688 }
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700689
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700690 // if we got a replacement window, reset the timeout to give drawing more time
691 if (gotReplacementWindow) {
692 mService.scheduleWindowReplacementTimeouts(this);
Robert Carra1eb4392015-12-10 12:43:51 -0800693 }
Robert Carra1eb4392015-12-10 12:43:51 -0800694 }
695
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700696 private boolean waitingForReplacement() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700697 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700698 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700699 if (candidate.waitingForReplacement()) {
Robert Carra1eb4392015-12-10 12:43:51 -0800700 return true;
701 }
702 }
703 return false;
704 }
705
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700706 void onWindowReplacementTimeout() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700707 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700708 (mChildren.get(i)).onWindowReplacementTimeout();
Robert Carra1eb4392015-12-10 12:43:51 -0800709 }
710 }
711
Chong Zhangd78ddb42016-03-02 17:01:14 -0800712 private boolean canFreezeBounds() {
713 // For freeform windows, we can't freeze the bounds at the moment because this would make
714 // the resizing unresponsive.
715 return mTask != null && !mTask.inFreeformWorkspace();
716 }
717
Jorim Jaggi0429f352015-12-22 16:29:16 +0100718 /**
719 * Freezes the task bounds. The size of this task reported the app will be fixed to the bounds
720 * freezed by {@link Task#prepareFreezingBounds} until {@link #unfreezeBounds} gets called, even
721 * if they change in the meantime. If the bounds are already frozen, the bounds will be frozen
722 * with a queue.
723 */
Chong Zhangd78ddb42016-03-02 17:01:14 -0800724 private void freezeBounds() {
Jorim Jaggi0429f352015-12-22 16:29:16 +0100725 mFrozenBounds.offer(new Rect(mTask.mPreparedFrozenBounds));
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700726
727 if (mTask.mPreparedFrozenMergedConfig.equals(Configuration.EMPTY)) {
728 // We didn't call prepareFreezingBounds on the task, so use the current value.
Andrii Kulian441e4492016-09-29 15:25:00 -0700729 mFrozenMergedConfig.offer(new Configuration(mTask.getConfiguration()));
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700730 } else {
731 mFrozenMergedConfig.offer(new Configuration(mTask.mPreparedFrozenMergedConfig));
732 }
Andrii Kulianb10330d2016-09-16 13:51:46 -0700733 // Calling unset() to make it equal to Configuration.EMPTY.
734 mTask.mPreparedFrozenMergedConfig.unset();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100735 }
736
737 /**
738 * Unfreezes the previously frozen bounds. See {@link #freezeBounds}.
739 */
Chong Zhangd78ddb42016-03-02 17:01:14 -0800740 private void unfreezeBounds() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700741 if (!mFrozenBounds.isEmpty()) {
742 mFrozenBounds.remove();
743 }
744 if (!mFrozenMergedConfig.isEmpty()) {
745 mFrozenMergedConfig.remove();
746 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700747 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700748 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700749 win.onUnfreezeBounds();
Jorim Jaggi4846ee32016-01-07 17:39:12 +0100750 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700751 mService.mWindowPlacerLocked.performSurfacePlacement();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100752 }
753
Robert Carr91b228092016-06-28 17:32:37 -0700754 void addSurfaceViewBackground(WindowSurfaceController.SurfaceControlWithBackground background) {
755 mSurfaceViewBackgrounds.add(background);
756 }
757
758 void removeSurfaceViewBackground(WindowSurfaceController.SurfaceControlWithBackground background) {
759 mSurfaceViewBackgrounds.remove(background);
760 updateSurfaceViewBackgroundVisibilities();
761 }
762
763 // We use DimLayers behind SurfaceViews to prevent holes while resizing and creating.
764 // However, we need to ensure one SurfaceView doesn't cover another when they are both placed
765 // below the main app window (as traditionally a SurfaceView which is never drawn
766 // to is totally translucent). So we look at all our SurfaceView backgrounds and only enable
767 // the background for the SurfaceView with lowest Z order
768 void updateSurfaceViewBackgroundVisibilities() {
769 WindowSurfaceController.SurfaceControlWithBackground bottom = null;
770 int bottomLayer = Integer.MAX_VALUE;
771 for (int i = 0; i < mSurfaceViewBackgrounds.size(); i++) {
772 WindowSurfaceController.SurfaceControlWithBackground sc = mSurfaceViewBackgrounds.get(i);
773 if (sc.mVisible && sc.mLayer < bottomLayer) {
774 bottomLayer = sc.mLayer;
775 bottom = sc;
776 }
777 }
778 for (int i = 0; i < mSurfaceViewBackgrounds.size(); i++) {
779 WindowSurfaceController.SurfaceControlWithBackground sc = mSurfaceViewBackgrounds.get(i);
780 sc.updateBackgroundVisibility(sc != bottom);
781 }
782 }
783
Jorim Jaggi6626f542016-08-22 13:08:44 -0700784 /**
785 * See {@link WindowManagerService#overridePlayingAppAnimationsLw}
786 */
787 void overridePlayingAppAnimations(Animation a) {
788 if (mAppAnimator.isAnimating()) {
789 final WindowState win = findMainWindow();
Jorim Jaggi6e5f3d22016-09-28 13:30:27 +0200790 if (win == null) {
791 return;
792 }
Jorim Jaggi6626f542016-08-22 13:08:44 -0700793 final int width = win.mContainingFrame.width();
794 final int height = win.mContainingFrame.height();
795 mAppAnimator.setAnimation(a, width, height, false, STACK_CLIP_NONE);
796 }
797 }
798
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700799 void resetJustMovedInStack() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700800 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700801 (mChildren.get(i)).resetJustMovedInStack();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700802 }
803 }
804
805 void notifyMovedInStack() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700806 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700807 final WindowState win = mChildren.get(winNdx);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700808 win.notifyMovedInStack();
809 }
810 }
811
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700812 void setAppLayoutChanges(int changes, String reason) {
813 if (!mChildren.isEmpty()) {
814 final DisplayContent dc = getDisplayContent();
815 dc.pendingLayoutChanges |= changes;
816 if (DEBUG_LAYOUT_REPEATS) {
817 mService.mWindowPlacerLocked.debugLayoutRepeats(reason, dc.pendingLayoutChanges);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700818 }
819 }
820 }
821
822 void removeReplacedWindowIfNeeded(WindowState replacement) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700823 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700824 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700825 if (win.removeReplacedWindowIfNeeded(replacement)) {
826 return;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700827 }
828 }
829 }
830
831 void startFreezingScreen() {
832 if (DEBUG_ORIENTATION) logWithStack(TAG, "Set freezing of " + appToken + ": hidden="
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700833 + hidden + " freezing=" + mAppAnimator.freezingScreen + " hiddenRequested="
834 + hiddenRequested);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700835 if (!hiddenRequested) {
836 if (!mAppAnimator.freezingScreen) {
837 mAppAnimator.freezingScreen = true;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700838 mService.registerAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700839 mAppAnimator.lastFreezeDuration = 0;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700840 mService.mAppsFreezingScreen++;
841 if (mService.mAppsFreezingScreen == 1) {
842 mService.startFreezingDisplayLocked(false, 0, 0);
843 mService.mH.removeMessages(H.APP_FREEZE_TIMEOUT);
844 mService.mH.sendEmptyMessageDelayed(H.APP_FREEZE_TIMEOUT, 2000);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700845 }
846 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700847 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700848 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700849 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700850 w.onStartFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700851 }
852 }
853 }
854
855 void stopFreezingScreen(boolean unfreezeSurfaceNow, boolean force) {
856 if (!mAppAnimator.freezingScreen) {
857 return;
858 }
859 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Clear freezing of " + this + " force=" + force);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700860 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700861 boolean unfrozeWindows = false;
862 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700863 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700864 unfrozeWindows |= w.onStopFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700865 }
866 if (force || unfrozeWindows) {
867 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "No longer freezing: " + this);
868 mAppAnimator.freezingScreen = false;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700869 mService.unregisterAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700870 mAppAnimator.lastFreezeDuration =
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700871 (int)(SystemClock.elapsedRealtime() - mService.mDisplayFreezeTime);
872 mService.mAppsFreezingScreen--;
873 mService.mLastFinishedFreezeSource = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700874 }
875 if (unfreezeSurfaceNow) {
876 if (unfrozeWindows) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700877 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700878 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700879 mService.stopFreezingDisplayLocked();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700880 }
881 }
882
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700883 @Override
884 public void onAppFreezeTimeout() {
885 Slog.w(TAG_WM, "Force clearing freeze: " + this);
886 stopFreezingScreen(true, true);
887 }
888
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700889 boolean transferStartingWindow(IBinder transferFrom) {
Wale Ogunwale02319a62016-09-26 15:21:22 -0700890 final AppWindowToken fromToken = getDisplayContent().getAppWindowToken(transferFrom);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700891 if (fromToken == null) {
892 return false;
893 }
894
895 final WindowState tStartingWindow = fromToken.startingWindow;
896 if (tStartingWindow != null && fromToken.startingView != null) {
897 // In this case, the starting icon has already been displayed, so start
898 // letting windows get shown immediately without any more transitions.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700899 mService.mSkipAppTransitionAnimation = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700900
901 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Moving existing starting " + tStartingWindow
902 + " from " + fromToken + " to " + this);
903
904 final long origId = Binder.clearCallingIdentity();
905
906 // Transfer the starting window over to the new token.
907 startingData = fromToken.startingData;
908 startingView = fromToken.startingView;
909 startingDisplayed = fromToken.startingDisplayed;
910 fromToken.startingDisplayed = false;
911 startingWindow = tStartingWindow;
912 reportedVisible = fromToken.reportedVisible;
913 fromToken.startingData = null;
914 fromToken.startingView = null;
915 fromToken.startingWindow = null;
916 fromToken.startingMoved = true;
917 tStartingWindow.mToken = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700918 tStartingWindow.mAppToken = this;
919
920 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE || DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
921 "Removing starting window: " + tStartingWindow);
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700922 getDisplayContent().getWindowList().remove(tStartingWindow);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700923 mService.mWindowsChanged = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700924 if (DEBUG_ADD_REMOVE) Slog.v(TAG_WM,
925 "Removing starting " + tStartingWindow + " from " + fromToken);
Wale Ogunwalefa854eb2016-09-20 13:43:52 -0700926 fromToken.removeChild(tStartingWindow);
927 fromToken.postWindowRemoveStartingWindowCleanup(tStartingWindow);
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700928 addWindow(tStartingWindow);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700929
930 // Propagate other interesting state between the tokens. If the old token is displayed,
931 // we should immediately force the new one to be displayed. If it is animating, we need
932 // to move that animation to the new one.
933 if (fromToken.allDrawn) {
934 allDrawn = true;
935 deferClearAllDrawn = fromToken.deferClearAllDrawn;
936 }
937 if (fromToken.firstWindowDrawn) {
938 firstWindowDrawn = true;
939 }
940 if (!fromToken.hidden) {
941 hidden = false;
942 hiddenRequested = false;
943 }
944 if (clientHidden != fromToken.clientHidden) {
945 clientHidden = fromToken.clientHidden;
946 sendAppVisibilityToClients();
947 }
948 fromToken.mAppAnimator.transferCurrentAnimation(
949 mAppAnimator, tStartingWindow.mWinAnimator);
950
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700951 mService.updateFocusedWindowLocked(
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700952 UPDATE_FOCUS_WILL_PLACE_SURFACES, true /*updateInputWindows*/);
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -0700953 mService.getDefaultDisplayContentLocked().setLayoutNeeded();
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700954 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700955 Binder.restoreCallingIdentity(origId);
956 return true;
957 } else if (fromToken.startingData != null) {
958 // The previous app was getting ready to show a
959 // starting window, but hasn't yet done so. Steal it!
960 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
961 "Moving pending starting from " + fromToken + " to " + this);
962 startingData = fromToken.startingData;
963 fromToken.startingData = null;
964 fromToken.startingMoved = true;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700965 final Message m = mService.mH.obtainMessage(H.ADD_STARTING, this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700966 // Note: we really want to do sendMessageAtFrontOfQueue() because we want to process the
967 // message ASAP, before any other queued messages.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700968 mService.mH.sendMessageAtFrontOfQueue(m);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700969 return true;
970 }
971
972 final AppWindowAnimator tAppAnimator = fromToken.mAppAnimator;
973 final AppWindowAnimator wAppAnimator = mAppAnimator;
974 if (tAppAnimator.thumbnail != null) {
975 // The old token is animating with a thumbnail, transfer that to the new token.
976 if (wAppAnimator.thumbnail != null) {
977 wAppAnimator.thumbnail.destroy();
978 }
979 wAppAnimator.thumbnail = tAppAnimator.thumbnail;
980 wAppAnimator.thumbnailLayer = tAppAnimator.thumbnailLayer;
981 wAppAnimator.thumbnailAnimation = tAppAnimator.thumbnailAnimation;
982 tAppAnimator.thumbnail = null;
983 }
984 return false;
985 }
986
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700987 boolean isLastWindow(WindowState win) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700988 return mChildren.size() == 1 && mChildren.get(0) == win;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700989 }
990
991 void setAllAppWinAnimators() {
992 final ArrayList<WindowStateAnimator> allAppWinAnimators = mAppAnimator.mAllAppWinAnimators;
993 allAppWinAnimators.clear();
994
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700995 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700996 for (int j = 0; j < windowsCount; j++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700997 (mChildren.get(j)).addWinAnimatorToList(allAppWinAnimators);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700998 }
999 }
1000
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001001 @Override
1002 void onAppTransitionDone() {
1003 sendingToBottom = false;
1004 }
1005
Wale Ogunwale51362492016-09-08 17:49:17 -07001006 /**
1007 * We override because this class doesn't want its children affecting its reported orientation
1008 * in anyway.
1009 */
1010 @Override
1011 int getOrientation() {
1012 if (hidden || hiddenRequested) {
1013 return SCREEN_ORIENTATION_UNSET;
1014 }
1015 return mOrientation;
1016 }
1017
Craig Mautnerdbb79912012-03-01 18:59:14 -08001018 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001019 void checkAppWindowsReadyToShow() {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001020 if (allDrawn == mAppAnimator.allDrawn) {
1021 return;
1022 }
1023
1024 mAppAnimator.allDrawn = allDrawn;
1025 if (!allDrawn) {
1026 return;
1027 }
1028
1029 // The token has now changed state to having all windows shown... what to do, what to do?
1030 if (mAppAnimator.freezingScreen) {
1031 mAppAnimator.showAllWindowsLocked();
1032 stopFreezingScreen(false, true);
1033 if (DEBUG_ORIENTATION) Slog.i(TAG,
1034 "Setting mOrientationChangeComplete=true because wtoken " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001035 + " numInteresting=" + mNumInterestingWindows + " numDrawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001036 // This will set mOrientationChangeComplete and cause a pass through layout.
1037 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001038 "checkAppWindowsReadyToShow: freezingScreen");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001039 } else {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001040 setAppLayoutChanges(FINISH_LAYOUT_REDO_ANIM, "checkAppWindowsReadyToShow");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001041
1042 // We can now show all of the drawn windows!
1043 if (!mService.mOpeningApps.contains(this)) {
1044 mService.mAnimator.orAnimating(mAppAnimator.showAllWindowsLocked());
1045 }
1046 }
1047 }
1048
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001049 void updateAllDrawn(DisplayContent dc) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001050 if (!allDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001051 final int numInteresting = mNumInterestingWindows;
1052 if (numInteresting > 0 && mNumDrawnWindows >= numInteresting) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001053 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawn: " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001054 + " interesting=" + numInteresting + " drawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001055 allDrawn = true;
1056 // Force an additional layout pass where
1057 // WindowStateAnimator#commitFinishDrawingLocked() will call performShowLocked().
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001058 dc.setLayoutNeeded();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001059 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
1060 }
1061 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001062
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001063 if (!allDrawnExcludingSaved) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001064 int numInteresting = mNumInterestingWindowsExcludingSaved;
1065 if (numInteresting > 0 && mNumDrawnWindowsExcludingSaved >= numInteresting) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001066 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawnExcludingSaved: " + this
1067 + " interesting=" + numInteresting
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001068 + " drawn=" + mNumDrawnWindowsExcludingSaved);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001069 allDrawnExcludingSaved = true;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001070 dc.setLayoutNeeded();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001071 if (isAnimatingInvisibleWithSavedSurface()
1072 && !mService.mFinishedEarlyAnim.contains(this)) {
1073 mService.mFinishedEarlyAnim.add(this);
1074 }
1075 }
1076 }
1077 }
1078
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001079 /**
1080 * Updated this app token tracking states for interesting and drawn windows based on the window.
1081 *
1082 * @return Returns true if the input window is considered interesting and drawn while all the
1083 * windows in this app token where not considered drawn as of the last pass.
1084 */
1085 boolean updateDrawnWindowStates(WindowState w) {
1086 if (DEBUG_STARTING_WINDOW && w == startingWindow) {
1087 Slog.d(TAG, "updateWindows: starting " + w + " isOnScreen=" + w.isOnScreen()
1088 + " allDrawn=" + allDrawn + " freezingScreen=" + mAppAnimator.freezingScreen);
1089 }
1090
1091 if (allDrawn && allDrawnExcludingSaved && !mAppAnimator.freezingScreen) {
1092 return false;
1093 }
1094
1095 if (mLastTransactionSequence != mService.mTransactionSequence) {
1096 mLastTransactionSequence = mService.mTransactionSequence;
1097 mNumInterestingWindows = mNumDrawnWindows = 0;
1098 mNumInterestingWindowsExcludingSaved = 0;
1099 mNumDrawnWindowsExcludingSaved = 0;
1100 startingDisplayed = false;
1101 }
1102
1103 final WindowStateAnimator winAnimator = w.mWinAnimator;
1104
1105 boolean isInterestingAndDrawn = false;
1106
1107 if (!allDrawn && w.mightAffectAllDrawn(false /* visibleOnly */)) {
1108 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) {
1109 Slog.v(TAG, "Eval win " + w + ": isDrawn=" + w.isDrawnLw()
1110 + ", isAnimationSet=" + winAnimator.isAnimationSet());
1111 if (!w.isDrawnLw()) {
1112 Slog.v(TAG, "Not displayed: s=" + winAnimator.mSurfaceController
1113 + " pv=" + w.mPolicyVisibility
1114 + " mDrawState=" + winAnimator.drawStateToString()
1115 + " ph=" + w.isParentWindowHidden() + " th=" + hiddenRequested
1116 + " a=" + winAnimator.mAnimating);
1117 }
1118 }
1119
1120 if (w != startingWindow) {
1121 if (w.isInteresting()) {
1122 mNumInterestingWindows++;
1123 if (w.isDrawnLw()) {
1124 mNumDrawnWindows++;
1125
1126 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG, "tokenMayBeDrawn: "
1127 + this + " w=" + w + " numInteresting=" + mNumInterestingWindows
1128 + " freezingScreen=" + mAppAnimator.freezingScreen
1129 + " mAppFreezing=" + w.mAppFreezing);
1130
1131 isInterestingAndDrawn = true;
1132 }
1133 }
1134 } else if (w.isDrawnLw()) {
1135 mService.mH.sendEmptyMessage(NOTIFY_STARTING_WINDOW_DRAWN);
1136 startingDisplayed = true;
1137 }
1138 }
1139
1140 if (!allDrawnExcludingSaved && w.mightAffectAllDrawn(true /* visibleOnly */)) {
1141 if (w != startingWindow && w.isInteresting()) {
1142 mNumInterestingWindowsExcludingSaved++;
1143 if (w.isDrawnLw() && !w.isAnimatingWithSavedSurface()) {
1144 mNumDrawnWindowsExcludingSaved++;
1145
1146 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG,
1147 "tokenMayBeDrawnExcludingSaved: " + this + " w=" + w
1148 + " numInteresting=" + mNumInterestingWindowsExcludingSaved
1149 + " freezingScreen=" + mAppAnimator.freezingScreen
1150 + " mAppFreezing=" + w.mAppFreezing);
1151
1152 isInterestingAndDrawn = true;
1153 }
1154 }
1155 }
1156
1157 return isInterestingAndDrawn;
1158 }
1159
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001160 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001161 void stepAppWindowsAnimation(long currentTime) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001162 mAppAnimator.wasAnimating = mAppAnimator.animating;
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001163 if (mAppAnimator.stepAnimationLocked(currentTime)) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001164 mAppAnimator.animating = true;
1165 mService.mAnimator.setAnimating(true);
1166 mService.mAnimator.mAppWindowAnimating = true;
1167 } else if (mAppAnimator.wasAnimating) {
1168 // stopped animating, do one more pass through the layout
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001169 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER, "appToken " + this + " done");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001170 if (DEBUG_ANIM) Slog.v(TAG, "updateWindowsApps...: done animating " + this);
1171 }
1172 }
1173
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07001174 int rebuildWindowListUnchecked(int addIndex) {
1175 return super.rebuildWindowList(addIndex);
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001176 }
1177
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001178 @Override
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07001179 int rebuildWindowList(int addIndex) {
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001180 if (mIsExiting && !waitingForReplacement()) {
1181 return addIndex;
1182 }
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07001183 return rebuildWindowListUnchecked(addIndex);
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001184 }
1185
1186 @Override
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001187 AppWindowToken asAppWindowToken() {
1188 // I am an app window token!
1189 return this;
1190 }
1191
1192 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -07001193 boolean fillsParent() {
1194 return mFillsParent;
1195 }
1196
1197 void setFillsParent(boolean fillsParent) {
1198 mFillsParent = fillsParent;
1199 }
1200
1201 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001202 void dump(PrintWriter pw, String prefix) {
1203 super.dump(pw, prefix);
1204 if (appToken != null) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001205 pw.print(prefix); pw.print("app=true voiceInteraction="); pw.println(voiceInteraction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001206 }
Craig Mautner83162a92015-01-26 14:43:30 -08001207 pw.print(prefix); pw.print("task="); pw.println(mTask);
Wale Ogunwale51362492016-09-08 17:49:17 -07001208 pw.print(prefix); pw.print(" mFillsParent="); pw.print(mFillsParent);
1209 pw.print(" mOrientation="); pw.println(mOrientation);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001210 pw.print(prefix); pw.print("hiddenRequested="); pw.print(hiddenRequested);
1211 pw.print(" clientHidden="); pw.print(clientHidden);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001212 pw.print(" reportedDrawn="); pw.print(reportedDrawn);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001213 pw.print(" reportedVisible="); pw.println(reportedVisible);
Craig Mautner59431632012-04-04 11:56:44 -07001214 if (paused) {
1215 pw.print(prefix); pw.print("paused="); pw.println(paused);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001216 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001217 if (mAppStopped) {
1218 pw.print(prefix); pw.print("mAppStopped="); pw.println(mAppStopped);
1219 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001220 if (mNumInterestingWindows != 0 || mNumDrawnWindows != 0
Craig Mautner6fbda632012-07-03 09:26:39 -07001221 || allDrawn || mAppAnimator.allDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001222 pw.print(prefix); pw.print("mNumInterestingWindows=");
1223 pw.print(mNumInterestingWindows);
1224 pw.print(" mNumDrawnWindows="); pw.print(mNumDrawnWindows);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001225 pw.print(" inPendingTransaction="); pw.print(inPendingTransaction);
Craig Mautner6fbda632012-07-03 09:26:39 -07001226 pw.print(" allDrawn="); pw.print(allDrawn);
1227 pw.print(" (animator="); pw.print(mAppAnimator.allDrawn);
1228 pw.println(")");
1229 }
1230 if (inPendingTransaction) {
1231 pw.print(prefix); pw.print("inPendingTransaction=");
1232 pw.println(inPendingTransaction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001233 }
Craig Mautner799bc1d2015-01-14 10:33:48 -08001234 if (startingData != null || removed || firstWindowDrawn || mIsExiting) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001235 pw.print(prefix); pw.print("startingData="); pw.print(startingData);
1236 pw.print(" removed="); pw.print(removed);
Craig Mautner3d7ca312015-01-08 10:56:00 -08001237 pw.print(" firstWindowDrawn="); pw.print(firstWindowDrawn);
Craig Mautner799bc1d2015-01-14 10:33:48 -08001238 pw.print(" mIsExiting="); pw.println(mIsExiting);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001239 }
1240 if (startingWindow != null || startingView != null
1241 || startingDisplayed || startingMoved) {
1242 pw.print(prefix); pw.print("startingWindow="); pw.print(startingWindow);
1243 pw.print(" startingView="); pw.print(startingView);
1244 pw.print(" startingDisplayed="); pw.print(startingDisplayed);
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001245 pw.print(" startingMoved="); pw.println(startingMoved);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001246 }
Jorim Jaggi0429f352015-12-22 16:29:16 +01001247 if (!mFrozenBounds.isEmpty()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -08001248 pw.print(prefix); pw.print("mFrozenBounds="); pw.println(mFrozenBounds);
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001249 pw.print(prefix); pw.print("mFrozenMergedConfig="); pw.println(mFrozenMergedConfig);
Chong Zhangd78ddb42016-03-02 17:01:14 -08001250 }
1251 if (mPendingRelaunchCount != 0) {
1252 pw.print(prefix); pw.print("mPendingRelaunchCount="); pw.println(mPendingRelaunchCount);
Jorim Jaggi0429f352015-12-22 16:29:16 +01001253 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001254 }
1255
1256 @Override
1257 public String toString() {
1258 if (stringName == null) {
1259 StringBuilder sb = new StringBuilder();
1260 sb.append("AppWindowToken{");
1261 sb.append(Integer.toHexString(System.identityHashCode(this)));
1262 sb.append(" token="); sb.append(token); sb.append('}');
1263 stringName = sb.toString();
1264 }
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001265 return stringName + ((mIsExiting) ? " mIsExiting=" : "");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001266 }
Jeff Browne9bdb312012-04-05 15:30:10 -07001267}