blob: c70f0751ef967d10220e4a56c169e80f35bb8c22 [file] [log] [blame]
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08001/*
2 * Copyright (C) 2013 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 Ogunwale65ebd952018-04-25 15:41:44 -070019import static android.app.ActivityTaskManager.RESIZE_MODE_SYSTEM_SCREEN_ROTATION;
skuhne@google.com322347b2016-12-02 12:54:03 -080020import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY;
Jason Monkba53d8a2017-04-06 18:28:19 +000021import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY;
Jorim Jaggi30d64f32017-04-07 16:33:17 +020022import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
Bryce Lee61fbcbc2017-03-10 14:14:03 -080023import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSET;
Wale Ogunwale68278562017-09-23 17:13:55 -070024import static android.content.res.Configuration.EMPTY;
chaviw8c9d1f52018-07-25 14:56:07 -070025
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080026import static com.android.server.EventLogTags.WM_TASK_REMOVED;
Yi Jin6c6e9ca2018-03-20 16:53:35 -070027import static com.android.server.wm.TaskProto.APP_WINDOW_TOKENS;
28import static com.android.server.wm.TaskProto.BOUNDS;
29import static com.android.server.wm.TaskProto.DEFER_REMOVAL;
Evan Roskyed6767f2018-10-26 17:21:06 -070030import static com.android.server.wm.TaskProto.DISPLAYED_BOUNDS;
Yi Jin6c6e9ca2018-03-20 16:53:35 -070031import static com.android.server.wm.TaskProto.FILLS_PARENT;
32import static com.android.server.wm.TaskProto.ID;
Louis Chang7501e332018-08-20 13:08:39 +080033import static com.android.server.wm.TaskProto.SURFACE_HEIGHT;
34import static com.android.server.wm.TaskProto.SURFACE_WIDTH;
Yi Jin6c6e9ca2018-03-20 16:53:35 -070035import static com.android.server.wm.TaskProto.WINDOW_CONTAINER;
chaviw8c9d1f52018-07-25 14:56:07 -070036import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STACK;
37import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
38import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Wale Ogunwale99db1862015-10-23 20:08:22 -070039
Wale Ogunwale0d5609b2017-09-13 05:55:07 -070040import android.annotation.CallSuper;
Jorim Jaggi829b9cd2017-01-23 16:20:53 +010041import android.app.ActivityManager.TaskDescription;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080042import android.content.pm.ActivityInfo;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070043import android.content.res.Configuration;
44import android.graphics.Rect;
Craig Mautner2c2549c2013-11-12 08:31:15 -080045import android.util.EventLog;
Craig Mautner42bf39e2014-02-21 16:46:22 -080046import android.util.Slog;
Steven Timotiusaf03df62017-07-18 16:56:43 -070047import android.util.proto.ProtoOutputStream;
Garfield Tandec96db2018-10-30 11:28:49 -070048import android.view.Display;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070049import android.view.Surface;
Winson Chungd41f71d2018-03-16 15:26:07 -070050import android.view.SurfaceControl;
chaviw8c9d1f52018-07-25 14:56:07 -070051
Wale Ogunwalec5cc3012017-01-13 13:26:16 -080052import com.android.internal.annotations.VisibleForTesting;
Craig Mautner2c2549c2013-11-12 08:31:15 -080053
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070054import java.io.PrintWriter;
Jorim Jaggi51304d72017-05-17 17:25:32 +020055import java.util.function.Consumer;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070056
Robert Carrf59b8dd2017-10-02 18:58:36 -070057class Task extends WindowContainer<AppWindowToken> {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -080058 static final String TAG = TAG_WITH_CLASS_NAME ? "Task" : TAG_WM;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070059
Wale Ogunwalef6192862016-09-10 13:42:30 -070060 // TODO: Track parent marks like this in WindowContainer.
Craig Mautnerc00204b2013-03-05 15:02:14 -080061 TaskStack mStack;
Craig Mautner83162a92015-01-26 14:43:30 -080062 final int mTaskId;
Craig Mautnerac6f8432013-07-17 13:24:59 -070063 final int mUserId;
Wale Ogunwale3eadad72016-10-13 09:16:59 -070064 private boolean mDeferRemoval = false;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080065
Jorim Jaggi0429f352015-12-22 16:29:16 +010066 final Rect mPreparedFrozenBounds = new Rect();
Jorim Jaggi26c8c422016-05-09 19:57:25 -070067 final Configuration mPreparedFrozenMergedConfig = new Configuration();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070068
Evan Roskyed6767f2018-10-26 17:21:06 -070069 // If non-empty, bounds used to display the task during animations/interactions.
70 private final Rect mOverrideDisplayedBounds = new Rect();
Jorim Jaggidc249c42015-12-15 14:57:31 -080071
Garfield Tandec96db2018-10-30 11:28:49 -070072 /** ID of the display which rotation {@link #mRotation} has. */
73 private int mLastRotationDisplayId = Display.INVALID_DISPLAY;
74 /**
75 * Display rotation as of the last time {@link #setBounds(Rect)} was called or this task was
76 * moved to a new display.
77 */
Wale Ogunwale3eadad72016-10-13 09:16:59 -070078 private int mRotation;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070079
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070080 // For comparison with DisplayContent bounds.
81 private Rect mTmpRect = new Rect();
82 // For handling display rotations.
83 private Rect mTmpRect2 = new Rect();
Bryce Leef3c6a472017-11-14 14:53:06 -080084 // For retrieving dim bounds
85 private Rect mTmpRect3 = new Rect();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070086
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080087 // Resize mode of the task. See {@link ActivityInfo#resizeMode}
88 private int mResizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -080089
Winson Chungd3395382016-12-13 11:49:09 -080090 // Whether the task supports picture-in-picture.
91 // See {@link ActivityInfo#FLAG_SUPPORTS_PICTURE_IN_PICTURE}
92 private boolean mSupportsPictureInPicture;
93
Chong Zhang3005e752015-09-18 18:46:28 -070094 // Whether the task is currently being drag-resized
95 private boolean mDragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +010096 private int mDragResizeMode;
Chong Zhang3005e752015-09-18 18:46:28 -070097
Jorim Jaggi829b9cd2017-01-23 16:20:53 +010098 private TaskDescription mTaskDescription;
99
Robert Carr18f622f2017-05-08 11:20:43 -0700100 // If set to true, the task will report that it is not in the floating
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -0700101 // state regardless of it's stack affiliation. As the floating state drives
Robert Carr18f622f2017-05-08 11:20:43 -0700102 // production of content insets this can be used to preserve them across
103 // stack moves and we in fact do so when moving from full screen to pinned.
104 private boolean mPreserveNonFloatingState = false;
105
Robert Carrf59b8dd2017-10-02 18:58:36 -0700106 private Dimmer mDimmer = new Dimmer(this);
107 private final Rect mTmpDimBoundsRect = new Rect();
108
Jorim Jaggi50bf59c2018-03-09 17:29:48 +0100109 /** @see #setCanAffectSystemUiFlags */
110 private boolean mCanAffectSystemUiFlags = true;
111
Bryce Leef3c6a472017-11-14 14:53:06 -0800112 Task(int taskId, TaskStack stack, int userId, WindowManagerService service, int resizeMode,
113 boolean supportsPictureInPicture, TaskDescription taskDescription,
Wale Ogunwale034a8ec2017-09-02 17:14:40 -0700114 TaskWindowContainerController controller) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +0100115 super(service);
Craig Mautner83162a92015-01-26 14:43:30 -0800116 mTaskId = taskId;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800117 mStack = stack;
Craig Mautnerac6f8432013-07-17 13:24:59 -0700118 mUserId = userId;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800119 mResizeMode = resizeMode;
Winson Chungd3395382016-12-13 11:49:09 -0800120 mSupportsPictureInPicture = supportsPictureInPicture;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800121 setController(controller);
Bryce Leef3c6a472017-11-14 14:53:06 -0800122 setBounds(getOverrideBounds());
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100123 mTaskDescription = taskDescription;
Bryce Lee61fbcbc2017-03-10 14:14:03 -0800124
125 // Tasks have no set orientation value (including SCREEN_ORIENTATION_UNSPECIFIED).
126 setOrientation(SCREEN_ORIENTATION_UNSET);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800127 }
128
129 DisplayContent getDisplayContent() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800130 return mStack != null ? mStack.getDisplayContent() : null;
131 }
132
Wale Ogunwale069bbd32017-02-03 07:58:14 -0800133 private int getAdjustedAddPosition(int suggestedPosition) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800134 final int size = mChildren.size();
135 if (suggestedPosition >= size) {
136 return Math.min(size, suggestedPosition);
137 }
138
139 for (int pos = 0; pos < size && pos < suggestedPosition; ++pos) {
140 // TODO: Confirm that this is the behavior we want long term.
141 if (mChildren.get(pos).removed) {
142 // suggestedPosition assumes removed tokens are actually gone.
143 ++suggestedPosition;
144 }
145 }
146 return Math.min(size, suggestedPosition);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800147 }
148
Wale Ogunwale72919d22016-12-08 18:58:50 -0800149 @Override
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800150 void addChild(AppWindowToken wtoken, int position) {
151 position = getAdjustedAddPosition(position);
152 super.addChild(wtoken, position);
Craig Mautner42bf39e2014-02-21 16:46:22 -0800153 mDeferRemoval = false;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800154 }
155
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800156 @Override
157 void positionChildAt(int position, AppWindowToken child, boolean includingParents) {
158 position = getAdjustedAddPosition(position);
159 super.positionChildAt(position, child, includingParents);
160 mDeferRemoval = false;
161 }
162
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700163 private boolean hasWindowsAlive() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700164 for (int i = mChildren.size() - 1; i >= 0; i--) {
165 if (mChildren.get(i).hasWindowsAlive()) {
Chong Zhang7e8eeb72016-01-06 19:14:47 -0800166 return true;
167 }
168 }
169 return false;
170 }
171
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800172 @VisibleForTesting
173 boolean shouldDeferRemoval() {
Wale Ogunwale2c9f2032017-06-02 06:50:50 -0700174 // TODO: This should probably return false if mChildren.isEmpty() regardless if the stack
175 // is animating...
Jorim Jaggia5e10572017-11-15 14:36:26 +0100176 return hasWindowsAlive() && mStack.isSelfOrChildAnimating();
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800177 }
178
Wale Ogunwalef6192862016-09-10 13:42:30 -0700179 @Override
180 void removeIfPossible() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800181 if (shouldDeferRemoval()) {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800182 if (DEBUG_STACK) Slog.i(TAG, "removeTask: deferring removing taskId=" + mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800183 mDeferRemoval = true;
184 return;
185 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800186 removeImmediately();
187 }
188
189 @Override
190 void removeImmediately() {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800191 if (DEBUG_STACK) Slog.i(TAG, "removeTask: removing taskId=" + mTaskId);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800192 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeTask");
Craig Mautnere3119b72015-01-20 15:02:36 -0800193 mDeferRemoval = false;
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800194
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800195 super.removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800196 }
197
Wale Ogunwale2719cc12017-04-14 09:45:27 -0700198 void reparent(TaskStack stack, int position, boolean moveParents) {
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800199 if (stack == mStack) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800200 throw new IllegalArgumentException(
201 "task=" + this + " already child of stack=" + mStack);
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800202 }
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800203 if (DEBUG_STACK) Slog.i(TAG, "reParentTask: removing taskId=" + mTaskId
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800204 + " from stack=" + mStack);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800205 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "reParentTask");
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -0800206 final DisplayContent prevDisplayContent = getDisplayContent();
207
Robert Carr18f622f2017-05-08 11:20:43 -0700208 // If we are moving from the fullscreen stack to the pinned stack
209 // then we want to preserve our insets so that there will not
210 // be a jump in the area covered by system decorations. We rely
211 // on the pinned animation to later unset this value.
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700212 if (stack.inPinnedWindowingMode()) {
Robert Carr18f622f2017-05-08 11:20:43 -0700213 mPreserveNonFloatingState = true;
214 } else {
215 mPreserveNonFloatingState = false;
216 }
217
Andrii Kulian441e4492016-09-29 15:25:00 -0700218 getParent().removeChild(this);
Wale Ogunwale2719cc12017-04-14 09:45:27 -0700219 stack.addTask(this, position, showForAllUsers(), moveParents);
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -0800220
221 // Relayout display(s).
222 final DisplayContent displayContent = stack.getDisplayContent();
223 displayContent.setLayoutNeeded();
224 if (prevDisplayContent != displayContent) {
225 onDisplayChanged(displayContent);
226 prevDisplayContent.setLayoutNeeded();
227 }
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800228 }
229
Wale Ogunwale59507092018-10-29 09:00:30 -0700230 /** @see ActivityTaskManagerService#positionTaskInStack(int, int, int). */
Bryce Leef3c6a472017-11-14 14:53:06 -0800231 void positionAt(int position) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800232 mStack.positionChildAt(position, this, false /* includingParents */);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700233 }
234
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700235 @Override
Andrii Kuliand2765632016-12-12 22:26:34 -0800236 void onParentSet() {
Robert Carrb1579c82017-09-05 14:54:47 -0700237 super.onParentSet();
238
Andrii Kuliand2765632016-12-12 22:26:34 -0800239 // Update task bounds if needed.
Garfield Tan2f145f22018-11-01 15:27:03 -0700240 adjustBoundsForDisplayChangeIfNeeded(getDisplayContent());
Andrii Kuliand2765632016-12-12 22:26:34 -0800241
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700242 if (getWindowConfiguration().windowsAreScaleable()) {
Andrii Kuliand2765632016-12-12 22:26:34 -0800243 // We force windows out of SCALING_MODE_FREEZE so that we can continue to animate them
244 // while a resize is pending.
245 forceWindowsScaleable(true /* force */);
246 } else {
247 forceWindowsScaleable(false /* force */);
248 }
249 }
250
251 @Override
Wale Ogunwalef6192862016-09-10 13:42:30 -0700252 void removeChild(AppWindowToken token) {
253 if (!mChildren.contains(token)) {
254 Slog.e(TAG, "removeChild: token=" + this + " not found.");
255 return;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700256 }
257
Wale Ogunwalef6192862016-09-10 13:42:30 -0700258 super.removeChild(token);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700259
Wale Ogunwalef6192862016-09-10 13:42:30 -0700260 if (mChildren.isEmpty()) {
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800261 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeAppToken: last token");
Craig Mautnere3119b72015-01-20 15:02:36 -0800262 if (mDeferRemoval) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700263 removeIfPossible();
Craig Mautnere3119b72015-01-20 15:02:36 -0800264 }
Craig Mautnerc00204b2013-03-05 15:02:14 -0800265 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800266 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800267
Craig Mautnercbd84af2014-10-22 13:21:22 -0700268 void setSendingToBottom(boolean toBottom) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700269 for (int appTokenNdx = 0; appTokenNdx < mChildren.size(); appTokenNdx++) {
270 mChildren.get(appTokenNdx).sendingToBottom = toBottom;
Craig Mautnercbd84af2014-10-22 13:21:22 -0700271 }
272 }
273
Bryce Leef3c6a472017-11-14 14:53:06 -0800274 public int setBounds(Rect bounds, boolean forceResize) {
275 final int boundsChanged = setBounds(bounds);
276
277 if (forceResize && (boundsChanged & BOUNDS_CHANGE_SIZE) != BOUNDS_CHANGE_SIZE) {
278 onResize();
279 return BOUNDS_CHANGE_SIZE | boundsChanged;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700280 }
Wale Ogunwale68278562017-09-23 17:13:55 -0700281
Bryce Leef3c6a472017-11-14 14:53:06 -0800282 return boundsChanged;
283 }
284
285 /** Set the task bounds. Passing in null sets the bounds to fullscreen. */
286 @Override
287 public int setBounds(Rect bounds) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700288 int rotation = Surface.ROTATION_0;
289 final DisplayContent displayContent = mStack.getDisplayContent();
290 if (displayContent != null) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700291 rotation = displayContent.getDisplayInfo().rotation;
Bryce Leef3c6a472017-11-14 14:53:06 -0800292 } else if (bounds == null) {
Evan Roskye747c3e2018-10-30 20:06:41 -0700293 return super.setBounds(bounds);
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700294 }
295
Bryce Leef3c6a472017-11-14 14:53:06 -0800296 final int boundsChange = super.setBounds(bounds);
Chong Zhangf66db432016-01-13 10:39:51 -0800297
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700298 mRotation = rotation;
Robert Carrf59b8dd2017-10-02 18:58:36 -0700299
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700300 return boundsChange;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700301 }
302
Louis Chang7501e332018-08-20 13:08:39 +0800303 @Override
304 void onDisplayChanged(DisplayContent dc) {
Garfield Tan2f145f22018-11-01 15:27:03 -0700305 adjustBoundsForDisplayChangeIfNeeded(dc);
Louis Chang7501e332018-08-20 13:08:39 +0800306 super.onDisplayChanged(dc);
307 }
308
Jorim Jaggidc249c42015-12-15 14:57:31 -0800309 /**
Evan Roskyed6767f2018-10-26 17:21:06 -0700310 * Sets bounds that override where the task is displayed. Used during transient operations
311 * like animation / interaction.
Jorim Jaggidc249c42015-12-15 14:57:31 -0800312 */
Evan Roskyed6767f2018-10-26 17:21:06 -0700313 void setOverrideDisplayedBounds(Rect overrideDisplayedBounds) {
314 if (overrideDisplayedBounds != null) {
315 mOverrideDisplayedBounds.set(overrideDisplayedBounds);
Jorim Jaggidc249c42015-12-15 14:57:31 -0800316 } else {
Evan Roskyed6767f2018-10-26 17:21:06 -0700317 mOverrideDisplayedBounds.setEmpty();
Jorim Jaggidc249c42015-12-15 14:57:31 -0800318 }
319 }
320
321 /**
Evan Roskyed6767f2018-10-26 17:21:06 -0700322 * Gets the bounds that override where the task is displayed. See
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700323 * {@link android.app.IActivityTaskManager#resizeDockedStack} why this is needed.
Jorim Jaggidc249c42015-12-15 14:57:31 -0800324 */
Evan Roskyed6767f2018-10-26 17:21:06 -0700325 Rect getOverrideDisplayedBounds() {
326 return mOverrideDisplayedBounds;
Jorim Jaggidc249c42015-12-15 14:57:31 -0800327 }
328
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800329 void setResizeable(int resizeMode) {
330 mResizeMode = resizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -0800331 }
332
333 boolean isResizeable() {
Winson Chungd3395382016-12-13 11:49:09 -0800334 return ActivityInfo.isResizeableMode(mResizeMode) || mSupportsPictureInPicture
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800335 || mWmService.mForceResizableTasks;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800336 }
337
skuhne@google.com322347b2016-12-02 12:54:03 -0800338 /**
339 * Tests if the orientation should be preserved upon user interactive resizig operations.
340
341 * @return true if orientation should not get changed upon resizing operation.
342 */
343 boolean preserveOrientationOnResize() {
344 return mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY
345 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY
346 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
347 }
348
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800349 boolean cropWindowsToStackBounds() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700350 return isResizeable();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800351 }
352
Jorim Jaggi0429f352015-12-22 16:29:16 +0100353 /**
354 * Prepares the task bounds to be frozen with the current size. See
355 * {@link AppWindowToken#freezeBounds}.
356 */
357 void prepareFreezingBounds() {
Bryce Leef3c6a472017-11-14 14:53:06 -0800358 mPreparedFrozenBounds.set(getBounds());
Andrii Kulian441e4492016-09-29 15:25:00 -0700359 mPreparedFrozenMergedConfig.setTo(getConfiguration());
Jorim Jaggi0429f352015-12-22 16:29:16 +0100360 }
361
Chong Zhang5117e272016-05-03 12:47:34 -0700362 /**
363 * Align the task to the adjusted bounds.
364 *
365 * @param adjustedBounds Adjusted bounds to which the task should be aligned.
366 * @param tempInsetBounds Insets bounds for the task.
367 * @param alignBottom True if the task's bottom should be aligned to the adjusted
368 * bounds's bottom; false if the task's top should be aligned
369 * the adjusted bounds's top.
370 */
Andrii Kulian441e4492016-09-29 15:25:00 -0700371 void alignToAdjustedBounds(Rect adjustedBounds, Rect tempInsetBounds, boolean alignBottom) {
Wale Ogunwale68278562017-09-23 17:13:55 -0700372 if (!isResizeable() || EMPTY.equals(getOverrideConfiguration())) {
Chong Zhang5117e272016-05-03 12:47:34 -0700373 return;
374 }
375
376 getBounds(mTmpRect2);
377 if (alignBottom) {
378 int offsetY = adjustedBounds.bottom - mTmpRect2.bottom;
379 mTmpRect2.offset(0, offsetY);
380 } else {
381 mTmpRect2.offsetTo(adjustedBounds.left, adjustedBounds.top);
382 }
Evan Roskyed6767f2018-10-26 17:21:06 -0700383 if (tempInsetBounds == null || tempInsetBounds.isEmpty()) {
384 setOverrideDisplayedBounds(null);
385 setBounds(mTmpRect2);
386 } else {
387 setOverrideDisplayedBounds(mTmpRect2);
388 setBounds(tempInsetBounds);
389 }
Chong Zhang5117e272016-05-03 12:47:34 -0700390 }
391
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700392 /** Return true if the current bound can get outputted to the rest of the system as-is. */
393 private boolean useCurrentBounds() {
Wale Ogunwale926aade2017-08-29 11:24:37 -0700394 final DisplayContent displayContent = getDisplayContent();
Bryce Leef3c6a472017-11-14 14:53:06 -0800395 return matchParentBounds()
Wale Ogunwale926aade2017-08-29 11:24:37 -0700396 || !inSplitScreenSecondaryWindowingMode()
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700397 || displayContent == null
Matthew Ng64e77cf2017-10-31 14:01:31 -0700398 || displayContent.getSplitScreenPrimaryStackIgnoringVisibility() != null;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700399 }
400
Bryce Leef3c6a472017-11-14 14:53:06 -0800401 @Override
402 public void getBounds(Rect out) {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700403 if (useCurrentBounds()) {
404 // No need to adjust the output bounds if fullscreen or the docked stack is visible
405 // since it is already what we want to represent to the rest of the system.
Bryce Leef3c6a472017-11-14 14:53:06 -0800406 super.getBounds(out);
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700407 return;
408 }
409
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800410 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
411 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
Bryce Leef3c6a472017-11-14 14:53:06 -0800412 mStack.getDisplayContent().getBounds(out);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700413 }
414
Evan Roskyed6767f2018-10-26 17:21:06 -0700415 @Override
416 public Rect getDisplayedBounds() {
417 if (mOverrideDisplayedBounds.isEmpty()) {
418 return super.getDisplayedBounds();
419 } else {
420 return mOverrideDisplayedBounds;
421 }
422 }
423
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800424 /**
425 * Calculate the maximum visible area of this task. If the task has only one app,
426 * the result will be visible frame of that app. If the task has more than one apps,
427 * we search from top down if the next app got different visible area.
428 *
429 * This effort is to handle the case where some task (eg. GMail composer) might pop up
430 * a dialog that's different in size from the activity below, in which case we should
431 * be dimming the entire task area behind the dialog.
432 *
433 * @param out Rect containing the max visible bounds.
434 * @return true if the task has some visible app windows; false otherwise.
435 */
chaviw553b0212018-07-12 13:37:01 -0700436 private boolean getMaxVisibleBounds(Rect out) {
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800437 boolean foundTop = false;
Wale Ogunwalef6192862016-09-10 13:42:30 -0700438 for (int i = mChildren.size() - 1; i >= 0; i--) {
439 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800440 // skip hidden (or about to hide) apps
Wale Ogunwale89973222017-04-23 18:39:45 -0700441 if (token.mIsExiting || token.isClientHidden() || token.hiddenRequested) {
Chong Zhangd8ceb852015-11-11 14:53:41 -0800442 continue;
443 }
444 final WindowState win = token.findMainWindow();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800445 if (win == null) {
446 continue;
447 }
448 if (!foundTop) {
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800449 foundTop = true;
chaviw553b0212018-07-12 13:37:01 -0700450 out.setEmpty();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800451 }
chaviw553b0212018-07-12 13:37:01 -0700452
453 win.getMaxVisibleBounds(out);
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800454 }
455 return foundTop;
456 }
457
458 /** Bounds of the task to be used for dimming, as well as touch related tests. */
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800459 public void getDimBounds(Rect out) {
Robert Carra86a6bf2016-04-08 17:34:16 -0700460 final DisplayContent displayContent = mStack.getDisplayContent();
461 // It doesn't matter if we in particular are part of the resize, since we couldn't have
462 // a DimLayer anyway if we weren't visible.
Wale Ogunwalef6192862016-09-10 13:42:30 -0700463 final boolean dockedResizing = displayContent != null
464 && displayContent.mDividerControllerLocked.isResizing();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800465 if (useCurrentBounds()) {
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700466 if (inFreeformWindowingMode() && getMaxVisibleBounds(out)) {
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800467 return;
468 }
469
Bryce Leef3c6a472017-11-14 14:53:06 -0800470 if (!matchParentBounds()) {
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700471 // When minimizing the docked stack when going home, we don't adjust the task bounds
472 // so we need to intersect the task bounds with the stack bounds here.
Robert Carra86a6bf2016-04-08 17:34:16 -0700473 //
474 // If we are Docked Resizing with snap points, the task bounds could be smaller than the stack
475 // bounds and so we don't even want to use them. Even if the app should not be resized the Dim
476 // should keep up with the divider.
477 if (dockedResizing) {
478 mStack.getBounds(out);
479 } else {
480 mStack.getBounds(mTmpRect);
Bryce Leef3c6a472017-11-14 14:53:06 -0800481 mTmpRect.intersect(getBounds());
chaviw2fb06bc2018-01-19 17:09:15 -0800482 out.set(mTmpRect);
Robert Carra86a6bf2016-04-08 17:34:16 -0700483 }
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700484 } else {
Bryce Leef3c6a472017-11-14 14:53:06 -0800485 out.set(getBounds());
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700486 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800487 return;
488 }
489
Wale Ogunwalef6192862016-09-10 13:42:30 -0700490 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
491 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
492 if (displayContent != null) {
Bryce Leef3c6a472017-11-14 14:53:06 -0800493 displayContent.getBounds(out);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700494 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800495 }
496
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100497 void setDragResizing(boolean dragResizing, int dragResizeMode) {
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800498 if (mDragResizing != dragResizing) {
chaviw8c9d1f52018-07-25 14:56:07 -0700499 // No need to check if the mode is allowed if it's leaving dragResize
500 if (dragResizing && !DragResizeMode.isModeAllowedForStack(mStack, dragResizeMode)) {
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100501 throw new IllegalArgumentException("Drag resize mode not allow for stack stackId="
502 + mStack.mStackId + " dragResizeMode=" + dragResizeMode);
503 }
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800504 mDragResizing = dragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100505 mDragResizeMode = dragResizeMode;
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800506 resetDragResizingChangeReported();
507 }
508 }
509
Chong Zhang3005e752015-09-18 18:46:28 -0700510 boolean isDragResizing() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700511 return mDragResizing;
Chong Zhang3005e752015-09-18 18:46:28 -0700512 }
513
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100514 int getDragResizeMode() {
515 return mDragResizeMode;
516 }
517
Garfield Tan2f145f22018-11-01 15:27:03 -0700518 private void adjustBoundsForDisplayChangeIfNeeded(final DisplayContent displayContent) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700519 if (displayContent == null) {
520 return;
521 }
Bryce Leef3c6a472017-11-14 14:53:06 -0800522 if (matchParentBounds()) {
Wale Ogunwale68278562017-09-23 17:13:55 -0700523 // TODO: Yeah...not sure if this works with WindowConfiguration, but shouldn't be a
524 // problem once we move mBounds into WindowConfiguration.
Bryce Leef3c6a472017-11-14 14:53:06 -0800525 setBounds(null);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700526 return;
527 }
Garfield Tandec96db2018-10-30 11:28:49 -0700528 final int displayId = displayContent.getDisplayId();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700529 final int newRotation = displayContent.getDisplayInfo().rotation;
Garfield Tandec96db2018-10-30 11:28:49 -0700530 if (displayId != mLastRotationDisplayId) {
531 // This task is on a display that it wasn't on. There is no point to keep the relative
532 // position if display rotations for old and new displays are different. Just keep these
533 // values.
534 mLastRotationDisplayId = displayId;
535 mRotation = newRotation;
536 return;
537 }
538
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700539 if (mRotation == newRotation) {
Garfield Tandec96db2018-10-30 11:28:49 -0700540 // Rotation didn't change. We don't need to adjust the bounds to keep the relative
541 // position.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700542 return;
543 }
544
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800545 // Device rotation changed.
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700546 // - We don't want the task to move around on the screen when this happens, so update the
547 // task bounds so it stays in the same place.
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800548 // - Rotate the bounds and notify activity manager if the task can be resized independently
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700549 // from its stack. The stack will take care of task rotation for the other case.
Bryce Leef3c6a472017-11-14 14:53:06 -0800550 mTmpRect2.set(getBounds());
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800551
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700552 if (!getWindowConfiguration().canResizeTask()) {
Bryce Leef3c6a472017-11-14 14:53:06 -0800553 setBounds(mTmpRect2);
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800554 return;
555 }
556
Wale Ogunwale94744212015-09-21 19:01:47 -0700557 displayContent.rotateBounds(mRotation, newRotation, mTmpRect2);
Bryce Leef3c6a472017-11-14 14:53:06 -0800558 if (setBounds(mTmpRect2) != BOUNDS_CHANGE_NONE) {
Wale Ogunwale1666e312016-12-16 11:27:18 -0800559 final TaskWindowContainerController controller = getController();
560 if (controller != null) {
Bryce Leef3c6a472017-11-14 14:53:06 -0800561 controller.requestResize(getBounds(), RESIZE_MODE_SYSTEM_SCREEN_ROTATION);
Wale Ogunwale1666e312016-12-16 11:27:18 -0800562 }
Wale Ogunwale1ed0d892015-09-28 13:27:44 -0700563 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700564 }
565
Wale Ogunwalef6192862016-09-10 13:42:30 -0700566 /** Cancels any running app transitions associated with the task. */
Winsonc28098f2015-10-30 14:50:19 -0700567 void cancelTaskWindowTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700568 for (int i = mChildren.size() - 1; i >= 0; --i) {
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200569 mChildren.get(i).cancelAnimation();
Winsonc28098f2015-10-30 14:50:19 -0700570 }
571 }
572
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700573 boolean showForAllUsers() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700574 final int tokensCount = mChildren.size();
Wale Ogunwale72919d22016-12-08 18:58:50 -0800575 return (tokensCount != 0) && mChildren.get(tokensCount - 1).mShowForAllUsers;
Jorim Jaggiff71d202016-04-14 13:12:36 -0700576 }
577
Robert Carr7e4c90e2017-02-15 19:52:38 -0800578 /**
579 * When we are in a floating stack (Freeform, Pinned, ...) we calculate
580 * insets differently. However if we are animating to the fullscreen stack
581 * we need to begin calculating insets as if we were fullscreen, otherwise
582 * we will have a jump at the end.
583 */
Robert Carre6275582016-02-29 15:45:45 -0800584 boolean isFloating() {
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700585 return getWindowConfiguration().tasksAreFloating()
Robert Carr18f622f2017-05-08 11:20:43 -0700586 && !mStack.isAnimatingBoundsToFullscreen() && !mPreserveNonFloatingState;
Robert Carre6275582016-02-29 15:45:45 -0800587 }
588
Winson Chungd41f71d2018-03-16 15:26:07 -0700589 @Override
590 public SurfaceControl getAnimationLeashParent() {
Winson Chung732446a2018-09-19 13:15:17 -0700591 // Currently, only the recents animation will create animation leashes for tasks. In this
592 // case, reparent the task to the home animation layer while it is being animated to allow
593 // the home activity to reorder the app windows relative to its own.
594 return getAppAnimationLayer(ANIMATION_LAYER_HOME);
Winson Chungd41f71d2018-03-16 15:26:07 -0700595 }
596
597 boolean isTaskAnimating() {
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800598 final RecentsAnimationController recentsAnim = mWmService.getRecentsAnimationController();
Winson Chungd41f71d2018-03-16 15:26:07 -0700599 if (recentsAnim != null) {
600 if (recentsAnim.isAnimatingTask(this)) {
601 return true;
602 }
603 }
604 return false;
605 }
606
Chong Zhangd8ceb852015-11-11 14:53:41 -0800607 WindowState getTopVisibleAppMainWindow() {
608 final AppWindowToken token = getTopVisibleAppToken();
609 return token != null ? token.findMainWindow() : null;
Chong Zhang9184ec62015-09-24 12:32:21 -0700610 }
611
Jorim Jaggie6c6ecb2017-07-20 18:09:20 +0200612 AppWindowToken getTopFullscreenAppToken() {
613 for (int i = mChildren.size() - 1; i >= 0; i--) {
614 final AppWindowToken token = mChildren.get(i);
615 final WindowState win = token.findMainWindow();
616 if (win != null && win.mAttrs.isFullscreen()) {
617 return token;
618 }
619 }
620 return null;
621 }
622
Chong Zhangd8ceb852015-11-11 14:53:41 -0800623 AppWindowToken getTopVisibleAppToken() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700624 for (int i = mChildren.size() - 1; i >= 0; i--) {
625 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800626 // skip hidden (or about to hide) apps
Wale Ogunwale89973222017-04-23 18:39:45 -0700627 if (!token.mIsExiting && !token.isClientHidden() && !token.hiddenRequested) {
Chong Zhangd8ceb852015-11-11 14:53:41 -0800628 return token;
629 }
630 }
631 return null;
Chong Zhangbef461f2015-10-27 11:38:24 -0700632 }
633
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700634 boolean isFullscreen() {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700635 if (useCurrentBounds()) {
Bryce Leef3c6a472017-11-14 14:53:06 -0800636 return matchParentBounds();
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700637 }
638 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
639 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
640 // system.
641 return true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700642 }
643
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700644 void forceWindowsScaleable(boolean force) {
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800645 mWmService.openSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700646 try {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700647 for (int i = mChildren.size() - 1; i >= 0; i--) {
648 mChildren.get(i).forceWindowsScaleableInTransaction(force);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700649 }
650 } finally {
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800651 mWmService.closeSurfaceTransaction("forceWindowsScaleable");
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700652 }
653 }
654
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100655 void setTaskDescription(TaskDescription taskDescription) {
656 mTaskDescription = taskDescription;
657 }
658
659 TaskDescription getTaskDescription() {
660 return mTaskDescription;
661 }
662
Wale Ogunwalef6192862016-09-10 13:42:30 -0700663 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -0700664 boolean fillsParent() {
Bryce Leef3c6a472017-11-14 14:53:06 -0800665 return matchParentBounds() || !getWindowConfiguration().canResizeTask();
Wale Ogunwale51362492016-09-08 17:49:17 -0700666 }
667
Jorim Jaggi329a5832017-01-05 18:57:12 +0100668 @Override
Jorim Jaggifb9d78a2017-01-05 18:57:12 +0100669 TaskWindowContainerController getController() {
670 return (TaskWindowContainerController) super.getController();
671 }
672
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700673 @Override
Jorim Jaggi51304d72017-05-17 17:25:32 +0200674 void forAllTasks(Consumer<Task> callback) {
675 callback.accept(this);
676 }
677
Jorim Jaggi50bf59c2018-03-09 17:29:48 +0100678 /**
679 * @param canAffectSystemUiFlags If false, all windows in this task can not affect SystemUI
680 * flags. See {@link WindowState#canAffectSystemUiFlags()}.
681 */
682 void setCanAffectSystemUiFlags(boolean canAffectSystemUiFlags) {
683 mCanAffectSystemUiFlags = canAffectSystemUiFlags;
684 }
685
686 /**
687 * @see #setCanAffectSystemUiFlags
688 */
689 boolean canAffectSystemUiFlags() {
690 return mCanAffectSystemUiFlags;
691 }
692
chaviw87ca63a2018-03-26 14:06:17 -0700693 void dontAnimateDimExit() {
694 mDimmer.dontAnimateExit();
695 }
696
Jorim Jaggi51304d72017-05-17 17:25:32 +0200697 @Override
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800698 public String toString() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700699 return "{taskId=" + mTaskId + " appTokens=" + mChildren + " mdr=" + mDeferRemoval + "}";
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800700 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700701
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700702 String getName() {
703 return toShortString();
704 }
705
Robert Carr18f622f2017-05-08 11:20:43 -0700706 void clearPreserveNonFloatingState() {
707 mPreserveNonFloatingState = false;
708 }
709
chaviw2fb06bc2018-01-19 17:09:15 -0800710 @Override
Robert Carrf59b8dd2017-10-02 18:58:36 -0700711 Dimmer getDimmer() {
712 return mDimmer;
713 }
714
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700715 @Override
Robert Carrf59b8dd2017-10-02 18:58:36 -0700716 void prepareSurfaces() {
717 mDimmer.resetDimStates();
718 super.prepareSurfaces();
719 getDimBounds(mTmpDimBoundsRect);
chaviwe07246a2017-12-12 16:18:29 -0800720
721 // Bounds need to be relative, as the dim layer is a child.
722 mTmpDimBoundsRect.offsetTo(0, 0);
Robert Carrf59b8dd2017-10-02 18:58:36 -0700723 if (mDimmer.updateDims(getPendingTransaction(), mTmpDimBoundsRect)) {
724 scheduleAnimation();
725 }
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700726 }
727
Wale Ogunwale0d5609b2017-09-13 05:55:07 -0700728 @CallSuper
729 @Override
Adrian Roos4921ccf2017-09-28 16:54:06 +0200730 public void writeToProto(ProtoOutputStream proto, long fieldId, boolean trim) {
Steven Timotiusaf03df62017-07-18 16:56:43 -0700731 final long token = proto.start(fieldId);
Adrian Roos4921ccf2017-09-28 16:54:06 +0200732 super.writeToProto(proto, WINDOW_CONTAINER, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -0700733 proto.write(ID, mTaskId);
734 for (int i = mChildren.size() - 1; i >= 0; i--) {
735 final AppWindowToken appWindowToken = mChildren.get(i);
Adrian Roos4921ccf2017-09-28 16:54:06 +0200736 appWindowToken.writeToProto(proto, APP_WINDOW_TOKENS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -0700737 }
Bryce Leef3c6a472017-11-14 14:53:06 -0800738 proto.write(FILLS_PARENT, matchParentBounds());
739 getBounds().writeToProto(proto, BOUNDS);
Evan Roskyed6767f2018-10-26 17:21:06 -0700740 mOverrideDisplayedBounds.writeToProto(proto, DISPLAYED_BOUNDS);
Vishnu Nair04ab4392018-01-10 11:00:06 -0800741 proto.write(DEFER_REMOVAL, mDeferRemoval);
Louis Chang7501e332018-08-20 13:08:39 +0800742 proto.write(SURFACE_WIDTH, mSurfaceControl.getWidth());
743 proto.write(SURFACE_HEIGHT, mSurfaceControl.getHeight());
Steven Timotiusaf03df62017-07-18 16:56:43 -0700744 proto.end(token);
745 }
746
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200747 @Override
748 public void dump(PrintWriter pw, String prefix, boolean dumpAll) {
749 super.dump(pw, prefix, dumpAll);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800750 final String doublePrefix = prefix + " ";
751
752 pw.println(prefix + "taskId=" + mTaskId);
Bryce Leef3c6a472017-11-14 14:53:06 -0800753 pw.println(doublePrefix + "mBounds=" + getBounds().toShortString());
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800754 pw.println(doublePrefix + "mdr=" + mDeferRemoval);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700755 pw.println(doublePrefix + "appTokens=" + mChildren);
Evan Roskyed6767f2018-10-26 17:21:06 -0700756 pw.println(doublePrefix + "mDisplayedBounds=" + mOverrideDisplayedBounds.toShortString());
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800757
758 final String triplePrefix = doublePrefix + " ";
Jorim Jaggi153dc9d2018-02-23 13:28:15 +0100759 final String quadruplePrefix = triplePrefix + " ";
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800760
Wale Ogunwalef6192862016-09-10 13:42:30 -0700761 for (int i = mChildren.size() - 1; i >= 0; i--) {
762 final AppWindowToken wtoken = mChildren.get(i);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800763 pw.println(triplePrefix + "Activity #" + i + " " + wtoken);
Jorim Jaggi153dc9d2018-02-23 13:28:15 +0100764 wtoken.dump(pw, quadruplePrefix, dumpAll);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800765 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700766 }
Robert Carrf59b8dd2017-10-02 18:58:36 -0700767
768 String toShortString() {
769 return "Task=" + mTaskId;
770 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800771}