blob: 888d7416316388f48d4d205152ad81acb407ce7f [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;
Evan Rosky9020c072018-12-06 14:11:12 -080025import static android.view.SurfaceControl.METADATA_TASK_ID;
chaviw8c9d1f52018-07-25 14:56:07 -070026
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080027import static com.android.server.EventLogTags.WM_TASK_REMOVED;
Yunfan Chen0e7aff92018-12-05 16:35:32 -080028import static com.android.server.wm.DragResizeMode.DRAG_RESIZE_MODE_DOCKED_DIVIDER;
Yi Jin6c6e9ca2018-03-20 16:53:35 -070029import static com.android.server.wm.TaskProto.APP_WINDOW_TOKENS;
30import static com.android.server.wm.TaskProto.BOUNDS;
31import static com.android.server.wm.TaskProto.DEFER_REMOVAL;
Evan Roskyed6767f2018-10-26 17:21:06 -070032import static com.android.server.wm.TaskProto.DISPLAYED_BOUNDS;
Yi Jin6c6e9ca2018-03-20 16:53:35 -070033import static com.android.server.wm.TaskProto.FILLS_PARENT;
34import static com.android.server.wm.TaskProto.ID;
Louis Chang7501e332018-08-20 13:08:39 +080035import static com.android.server.wm.TaskProto.SURFACE_HEIGHT;
36import static com.android.server.wm.TaskProto.SURFACE_WIDTH;
Yi Jin6c6e9ca2018-03-20 16:53:35 -070037import static com.android.server.wm.TaskProto.WINDOW_CONTAINER;
chaviw8c9d1f52018-07-25 14:56:07 -070038import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STACK;
39import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
40import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Wale Ogunwale99db1862015-10-23 20:08:22 -070041
Wale Ogunwale0d5609b2017-09-13 05:55:07 -070042import android.annotation.CallSuper;
Yunfan Chen0e7aff92018-12-05 16:35:32 -080043import android.app.ActivityManager;
Jorim Jaggi829b9cd2017-01-23 16:20:53 +010044import android.app.ActivityManager.TaskDescription;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080045import android.content.pm.ActivityInfo;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070046import android.content.res.Configuration;
47import android.graphics.Rect;
Garfield Tan90b04282018-12-11 14:04:42 -080048import android.os.IBinder;
Craig Mautner2c2549c2013-11-12 08:31:15 -080049import android.util.EventLog;
Craig Mautner42bf39e2014-02-21 16:46:22 -080050import android.util.Slog;
Steven Timotiusaf03df62017-07-18 16:56:43 -070051import android.util.proto.ProtoOutputStream;
Garfield Tandec96db2018-10-30 11:28:49 -070052import android.view.Display;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070053import android.view.Surface;
Winson Chungd41f71d2018-03-16 15:26:07 -070054import android.view.SurfaceControl;
chaviw8c9d1f52018-07-25 14:56:07 -070055
Wale Ogunwalec5cc3012017-01-13 13:26:16 -080056import com.android.internal.annotations.VisibleForTesting;
Craig Mautner2c2549c2013-11-12 08:31:15 -080057
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070058import java.io.PrintWriter;
Jorim Jaggi51304d72017-05-17 17:25:32 +020059import java.util.function.Consumer;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070060
Yunfan Chen0e7aff92018-12-05 16:35:32 -080061class Task extends WindowContainer<AppWindowToken> implements ConfigurationContainerListener{
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -080062 static final String TAG = TAG_WITH_CLASS_NAME ? "Task" : TAG_WM;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070063
Wale Ogunwalef6192862016-09-10 13:42:30 -070064 // TODO: Track parent marks like this in WindowContainer.
Craig Mautnerc00204b2013-03-05 15:02:14 -080065 TaskStack mStack;
Craig Mautner83162a92015-01-26 14:43:30 -080066 final int mTaskId;
Craig Mautnerac6f8432013-07-17 13:24:59 -070067 final int mUserId;
Wale Ogunwale3eadad72016-10-13 09:16:59 -070068 private boolean mDeferRemoval = false;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080069
Jorim Jaggi0429f352015-12-22 16:29:16 +010070 final Rect mPreparedFrozenBounds = new Rect();
Jorim Jaggi26c8c422016-05-09 19:57:25 -070071 final Configuration mPreparedFrozenMergedConfig = new Configuration();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070072
Evan Roskyed6767f2018-10-26 17:21:06 -070073 // If non-empty, bounds used to display the task during animations/interactions.
74 private final Rect mOverrideDisplayedBounds = new Rect();
Jorim Jaggidc249c42015-12-15 14:57:31 -080075
Garfield Tandec96db2018-10-30 11:28:49 -070076 /** ID of the display which rotation {@link #mRotation} has. */
77 private int mLastRotationDisplayId = Display.INVALID_DISPLAY;
78 /**
79 * Display rotation as of the last time {@link #setBounds(Rect)} was called or this task was
80 * moved to a new display.
81 */
Wale Ogunwale3eadad72016-10-13 09:16:59 -070082 private int mRotation;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070083
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070084 // For comparison with DisplayContent bounds.
85 private Rect mTmpRect = new Rect();
86 // For handling display rotations.
87 private Rect mTmpRect2 = new Rect();
Bryce Leef3c6a472017-11-14 14:53:06 -080088 // For retrieving dim bounds
89 private Rect mTmpRect3 = new Rect();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070090
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080091 // Resize mode of the task. See {@link ActivityInfo#resizeMode}
92 private int mResizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -080093
Winson Chungd3395382016-12-13 11:49:09 -080094 // Whether the task supports picture-in-picture.
95 // See {@link ActivityInfo#FLAG_SUPPORTS_PICTURE_IN_PICTURE}
96 private boolean mSupportsPictureInPicture;
97
Chong Zhang3005e752015-09-18 18:46:28 -070098 // Whether the task is currently being drag-resized
99 private boolean mDragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100100 private int mDragResizeMode;
Chong Zhang3005e752015-09-18 18:46:28 -0700101
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100102 private TaskDescription mTaskDescription;
103
Robert Carr18f622f2017-05-08 11:20:43 -0700104 // If set to true, the task will report that it is not in the floating
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -0700105 // state regardless of it's stack affiliation. As the floating state drives
Robert Carr18f622f2017-05-08 11:20:43 -0700106 // production of content insets this can be used to preserve them across
107 // stack moves and we in fact do so when moving from full screen to pinned.
108 private boolean mPreserveNonFloatingState = false;
109
Robert Carrf59b8dd2017-10-02 18:58:36 -0700110 private Dimmer mDimmer = new Dimmer(this);
111 private final Rect mTmpDimBoundsRect = new Rect();
112
Jorim Jaggi50bf59c2018-03-09 17:29:48 +0100113 /** @see #setCanAffectSystemUiFlags */
114 private boolean mCanAffectSystemUiFlags = true;
115
Yunfan Chen0e7aff92018-12-05 16:35:32 -0800116 // TODO: remove after unification
117 TaskRecord mTaskRecord;
118
Bryce Leef3c6a472017-11-14 14:53:06 -0800119 Task(int taskId, TaskStack stack, int userId, WindowManagerService service, int resizeMode,
120 boolean supportsPictureInPicture, TaskDescription taskDescription,
Yunfan Chen0e7aff92018-12-05 16:35:32 -0800121 TaskRecord taskRecord) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +0100122 super(service);
Craig Mautner83162a92015-01-26 14:43:30 -0800123 mTaskId = taskId;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800124 mStack = stack;
Craig Mautnerac6f8432013-07-17 13:24:59 -0700125 mUserId = userId;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800126 mResizeMode = resizeMode;
Winson Chungd3395382016-12-13 11:49:09 -0800127 mSupportsPictureInPicture = supportsPictureInPicture;
Yunfan Chen0e7aff92018-12-05 16:35:32 -0800128 mTaskRecord = taskRecord;
129 if (mTaskRecord != null) {
130 // This can be null when we call createTaskInStack in WindowTestUtils. Remove this after
131 // unification.
132 mTaskRecord.registerConfigurationChangeListener(this);
133 }
Evan Roskydfe3da72018-10-26 17:21:06 -0700134 setBounds(getRequestedOverrideBounds());
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100135 mTaskDescription = taskDescription;
Bryce Lee61fbcbc2017-03-10 14:14:03 -0800136
137 // Tasks have no set orientation value (including SCREEN_ORIENTATION_UNSPECIFIED).
138 setOrientation(SCREEN_ORIENTATION_UNSET);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800139 }
140
141 DisplayContent getDisplayContent() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800142 return mStack != null ? mStack.getDisplayContent() : null;
143 }
144
Wale Ogunwale069bbd32017-02-03 07:58:14 -0800145 private int getAdjustedAddPosition(int suggestedPosition) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800146 final int size = mChildren.size();
147 if (suggestedPosition >= size) {
148 return Math.min(size, suggestedPosition);
149 }
150
151 for (int pos = 0; pos < size && pos < suggestedPosition; ++pos) {
152 // TODO: Confirm that this is the behavior we want long term.
153 if (mChildren.get(pos).removed) {
154 // suggestedPosition assumes removed tokens are actually gone.
155 ++suggestedPosition;
156 }
157 }
158 return Math.min(size, suggestedPosition);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800159 }
160
Wale Ogunwale72919d22016-12-08 18:58:50 -0800161 @Override
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800162 void addChild(AppWindowToken wtoken, int position) {
163 position = getAdjustedAddPosition(position);
164 super.addChild(wtoken, position);
Craig Mautner42bf39e2014-02-21 16:46:22 -0800165 mDeferRemoval = false;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800166 }
167
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800168 @Override
169 void positionChildAt(int position, AppWindowToken child, boolean includingParents) {
170 position = getAdjustedAddPosition(position);
171 super.positionChildAt(position, child, includingParents);
172 mDeferRemoval = false;
173 }
174
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700175 private boolean hasWindowsAlive() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700176 for (int i = mChildren.size() - 1; i >= 0; i--) {
177 if (mChildren.get(i).hasWindowsAlive()) {
Chong Zhang7e8eeb72016-01-06 19:14:47 -0800178 return true;
179 }
180 }
181 return false;
182 }
183
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800184 @VisibleForTesting
185 boolean shouldDeferRemoval() {
Wale Ogunwale2c9f2032017-06-02 06:50:50 -0700186 // TODO: This should probably return false if mChildren.isEmpty() regardless if the stack
187 // is animating...
Jorim Jaggia5e10572017-11-15 14:36:26 +0100188 return hasWindowsAlive() && mStack.isSelfOrChildAnimating();
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800189 }
190
Wale Ogunwalef6192862016-09-10 13:42:30 -0700191 @Override
192 void removeIfPossible() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800193 if (shouldDeferRemoval()) {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800194 if (DEBUG_STACK) Slog.i(TAG, "removeTask: deferring removing taskId=" + mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800195 mDeferRemoval = true;
196 return;
197 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800198 removeImmediately();
199 }
200
201 @Override
202 void removeImmediately() {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800203 if (DEBUG_STACK) Slog.i(TAG, "removeTask: removing taskId=" + mTaskId);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800204 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeTask");
Craig Mautnere3119b72015-01-20 15:02:36 -0800205 mDeferRemoval = false;
Yunfan Chen3a77f282018-12-12 15:47:52 -0800206 if (mTaskRecord != null) {
207 mTaskRecord.unregisterConfigurationChangeListener(this);
208 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800209
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800210 super.removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800211 }
212
Wale Ogunwale2719cc12017-04-14 09:45:27 -0700213 void reparent(TaskStack stack, int position, boolean moveParents) {
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800214 if (stack == mStack) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800215 throw new IllegalArgumentException(
216 "task=" + this + " already child of stack=" + mStack);
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800217 }
Yunfan Chen279f5582018-12-12 15:24:50 -0800218 if (stack == null) {
219 throw new IllegalArgumentException("reparent: could not find stack.");
220 }
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800221 if (DEBUG_STACK) Slog.i(TAG, "reParentTask: removing taskId=" + mTaskId
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800222 + " from stack=" + mStack);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800223 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "reParentTask");
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -0800224 final DisplayContent prevDisplayContent = getDisplayContent();
225
Robert Carr18f622f2017-05-08 11:20:43 -0700226 // If we are moving from the fullscreen stack to the pinned stack
227 // then we want to preserve our insets so that there will not
228 // be a jump in the area covered by system decorations. We rely
229 // on the pinned animation to later unset this value.
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700230 if (stack.inPinnedWindowingMode()) {
Robert Carr18f622f2017-05-08 11:20:43 -0700231 mPreserveNonFloatingState = true;
232 } else {
233 mPreserveNonFloatingState = false;
234 }
235
Andrii Kulian441e4492016-09-29 15:25:00 -0700236 getParent().removeChild(this);
Wale Ogunwale2719cc12017-04-14 09:45:27 -0700237 stack.addTask(this, position, showForAllUsers(), moveParents);
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -0800238
239 // Relayout display(s).
240 final DisplayContent displayContent = stack.getDisplayContent();
241 displayContent.setLayoutNeeded();
242 if (prevDisplayContent != displayContent) {
243 onDisplayChanged(displayContent);
244 prevDisplayContent.setLayoutNeeded();
245 }
Yunfan Chen279f5582018-12-12 15:24:50 -0800246 getDisplayContent().layoutAndAssignWindowLayersIfNeeded();
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800247 }
248
Wale Ogunwale59507092018-10-29 09:00:30 -0700249 /** @see ActivityTaskManagerService#positionTaskInStack(int, int, int). */
Bryce Leef3c6a472017-11-14 14:53:06 -0800250 void positionAt(int position) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800251 mStack.positionChildAt(position, this, false /* includingParents */);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700252 }
253
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700254 @Override
Riddle Hsu3a4bb612019-01-31 00:02:22 +0800255 void onParentChanged() {
256 super.onParentChanged();
Robert Carrb1579c82017-09-05 14:54:47 -0700257
Andrii Kuliand2765632016-12-12 22:26:34 -0800258 // Update task bounds if needed.
Garfield Tan2f145f22018-11-01 15:27:03 -0700259 adjustBoundsForDisplayChangeIfNeeded(getDisplayContent());
Andrii Kuliand2765632016-12-12 22:26:34 -0800260
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700261 if (getWindowConfiguration().windowsAreScaleable()) {
Andrii Kuliand2765632016-12-12 22:26:34 -0800262 // We force windows out of SCALING_MODE_FREEZE so that we can continue to animate them
263 // while a resize is pending.
264 forceWindowsScaleable(true /* force */);
265 } else {
266 forceWindowsScaleable(false /* force */);
267 }
268 }
269
270 @Override
Wale Ogunwalef6192862016-09-10 13:42:30 -0700271 void removeChild(AppWindowToken token) {
272 if (!mChildren.contains(token)) {
273 Slog.e(TAG, "removeChild: token=" + this + " not found.");
274 return;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700275 }
276
Wale Ogunwalef6192862016-09-10 13:42:30 -0700277 super.removeChild(token);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700278
Wale Ogunwalef6192862016-09-10 13:42:30 -0700279 if (mChildren.isEmpty()) {
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800280 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeAppToken: last token");
Craig Mautnere3119b72015-01-20 15:02:36 -0800281 if (mDeferRemoval) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700282 removeIfPossible();
Craig Mautnere3119b72015-01-20 15:02:36 -0800283 }
Craig Mautnerc00204b2013-03-05 15:02:14 -0800284 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800285 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800286
Craig Mautnercbd84af2014-10-22 13:21:22 -0700287 void setSendingToBottom(boolean toBottom) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700288 for (int appTokenNdx = 0; appTokenNdx < mChildren.size(); appTokenNdx++) {
289 mChildren.get(appTokenNdx).sendingToBottom = toBottom;
Craig Mautnercbd84af2014-10-22 13:21:22 -0700290 }
291 }
292
Bryce Leef3c6a472017-11-14 14:53:06 -0800293 public int setBounds(Rect bounds, boolean forceResize) {
294 final int boundsChanged = setBounds(bounds);
295
296 if (forceResize && (boundsChanged & BOUNDS_CHANGE_SIZE) != BOUNDS_CHANGE_SIZE) {
297 onResize();
298 return BOUNDS_CHANGE_SIZE | boundsChanged;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700299 }
Wale Ogunwale68278562017-09-23 17:13:55 -0700300
Bryce Leef3c6a472017-11-14 14:53:06 -0800301 return boundsChanged;
302 }
303
304 /** Set the task bounds. Passing in null sets the bounds to fullscreen. */
305 @Override
306 public int setBounds(Rect bounds) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700307 int rotation = Surface.ROTATION_0;
308 final DisplayContent displayContent = mStack.getDisplayContent();
309 if (displayContent != null) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700310 rotation = displayContent.getDisplayInfo().rotation;
Bryce Leef3c6a472017-11-14 14:53:06 -0800311 } else if (bounds == null) {
Evan Roskye747c3e2018-10-30 20:06:41 -0700312 return super.setBounds(bounds);
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700313 }
314
Bryce Leef3c6a472017-11-14 14:53:06 -0800315 final int boundsChange = super.setBounds(bounds);
Chong Zhangf66db432016-01-13 10:39:51 -0800316
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700317 mRotation = rotation;
Robert Carrf59b8dd2017-10-02 18:58:36 -0700318
Evan Rosky89f5c1d2019-01-29 10:04:05 -0800319 updateSurfacePosition();
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700320 return boundsChange;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700321 }
322
Garfield Tan90b04282018-12-11 14:04:42 -0800323 @Override
324 public boolean onDescendantOrientationChanged(IBinder freezeDisplayToken,
325 ConfigurationContainer requestingContainer) {
326 if (super.onDescendantOrientationChanged(freezeDisplayToken, requestingContainer)) {
327 return true;
328 }
329
330 // No one in higher hierarchy handles this request, let's adjust our bounds to fulfill
331 // it if possible.
332 // TODO: Move to TaskRecord after unification is done.
333 if (mTaskRecord != null) {
334 mTaskRecord.onConfigurationChanged(mTaskRecord.getParent().getConfiguration());
335 return true;
336 }
337 return false;
338 }
339
Yunfan Chen0e7aff92018-12-05 16:35:32 -0800340 void resize(boolean relayout, boolean forced) {
341 if (setBounds(getRequestedOverrideBounds(), forced) != BOUNDS_CHANGE_NONE && relayout) {
342 getDisplayContent().layoutAndAssignWindowLayersIfNeeded();
343 }
344 }
345
Louis Chang7501e332018-08-20 13:08:39 +0800346 @Override
347 void onDisplayChanged(DisplayContent dc) {
Garfield Tan2f145f22018-11-01 15:27:03 -0700348 adjustBoundsForDisplayChangeIfNeeded(dc);
Louis Chang7501e332018-08-20 13:08:39 +0800349 super.onDisplayChanged(dc);
350 }
351
Jorim Jaggidc249c42015-12-15 14:57:31 -0800352 /**
Evan Roskyed6767f2018-10-26 17:21:06 -0700353 * Sets bounds that override where the task is displayed. Used during transient operations
354 * like animation / interaction.
Jorim Jaggidc249c42015-12-15 14:57:31 -0800355 */
Evan Roskyed6767f2018-10-26 17:21:06 -0700356 void setOverrideDisplayedBounds(Rect overrideDisplayedBounds) {
357 if (overrideDisplayedBounds != null) {
358 mOverrideDisplayedBounds.set(overrideDisplayedBounds);
Jorim Jaggidc249c42015-12-15 14:57:31 -0800359 } else {
Evan Roskyed6767f2018-10-26 17:21:06 -0700360 mOverrideDisplayedBounds.setEmpty();
Jorim Jaggidc249c42015-12-15 14:57:31 -0800361 }
Evan Rosky89f5c1d2019-01-29 10:04:05 -0800362 updateSurfacePosition();
Jorim Jaggidc249c42015-12-15 14:57:31 -0800363 }
364
365 /**
Evan Roskyed6767f2018-10-26 17:21:06 -0700366 * Gets the bounds that override where the task is displayed. See
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700367 * {@link android.app.IActivityTaskManager#resizeDockedStack} why this is needed.
Jorim Jaggidc249c42015-12-15 14:57:31 -0800368 */
Evan Roskyed6767f2018-10-26 17:21:06 -0700369 Rect getOverrideDisplayedBounds() {
370 return mOverrideDisplayedBounds;
Jorim Jaggidc249c42015-12-15 14:57:31 -0800371 }
372
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800373 void setResizeable(int resizeMode) {
374 mResizeMode = resizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -0800375 }
376
377 boolean isResizeable() {
Winson Chungd3395382016-12-13 11:49:09 -0800378 return ActivityInfo.isResizeableMode(mResizeMode) || mSupportsPictureInPicture
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800379 || mWmService.mForceResizableTasks;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800380 }
381
skuhne@google.com322347b2016-12-02 12:54:03 -0800382 /**
383 * Tests if the orientation should be preserved upon user interactive resizig operations.
384
385 * @return true if orientation should not get changed upon resizing operation.
386 */
387 boolean preserveOrientationOnResize() {
388 return mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY
389 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY
390 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
391 }
392
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800393 boolean cropWindowsToStackBounds() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700394 return isResizeable();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800395 }
396
Jorim Jaggi0429f352015-12-22 16:29:16 +0100397 /**
398 * Prepares the task bounds to be frozen with the current size. See
399 * {@link AppWindowToken#freezeBounds}.
400 */
401 void prepareFreezingBounds() {
Bryce Leef3c6a472017-11-14 14:53:06 -0800402 mPreparedFrozenBounds.set(getBounds());
Andrii Kulian441e4492016-09-29 15:25:00 -0700403 mPreparedFrozenMergedConfig.setTo(getConfiguration());
Jorim Jaggi0429f352015-12-22 16:29:16 +0100404 }
405
Chong Zhang5117e272016-05-03 12:47:34 -0700406 /**
407 * Align the task to the adjusted bounds.
408 *
409 * @param adjustedBounds Adjusted bounds to which the task should be aligned.
410 * @param tempInsetBounds Insets bounds for the task.
411 * @param alignBottom True if the task's bottom should be aligned to the adjusted
412 * bounds's bottom; false if the task's top should be aligned
413 * the adjusted bounds's top.
414 */
Andrii Kulian441e4492016-09-29 15:25:00 -0700415 void alignToAdjustedBounds(Rect adjustedBounds, Rect tempInsetBounds, boolean alignBottom) {
Evan Roskydfe3da72018-10-26 17:21:06 -0700416 if (!isResizeable() || EMPTY.equals(getRequestedOverrideConfiguration())) {
Chong Zhang5117e272016-05-03 12:47:34 -0700417 return;
418 }
419
420 getBounds(mTmpRect2);
421 if (alignBottom) {
422 int offsetY = adjustedBounds.bottom - mTmpRect2.bottom;
423 mTmpRect2.offset(0, offsetY);
424 } else {
425 mTmpRect2.offsetTo(adjustedBounds.left, adjustedBounds.top);
426 }
Evan Roskyed6767f2018-10-26 17:21:06 -0700427 if (tempInsetBounds == null || tempInsetBounds.isEmpty()) {
428 setOverrideDisplayedBounds(null);
429 setBounds(mTmpRect2);
430 } else {
431 setOverrideDisplayedBounds(mTmpRect2);
432 setBounds(tempInsetBounds);
433 }
Chong Zhang5117e272016-05-03 12:47:34 -0700434 }
435
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700436 /** Return true if the current bound can get outputted to the rest of the system as-is. */
437 private boolean useCurrentBounds() {
Wale Ogunwale926aade2017-08-29 11:24:37 -0700438 final DisplayContent displayContent = getDisplayContent();
Bryce Leef3c6a472017-11-14 14:53:06 -0800439 return matchParentBounds()
Wale Ogunwale926aade2017-08-29 11:24:37 -0700440 || !inSplitScreenSecondaryWindowingMode()
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700441 || displayContent == null
Matthew Ng64e77cf2017-10-31 14:01:31 -0700442 || displayContent.getSplitScreenPrimaryStackIgnoringVisibility() != null;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700443 }
444
Bryce Leef3c6a472017-11-14 14:53:06 -0800445 @Override
446 public void getBounds(Rect out) {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700447 if (useCurrentBounds()) {
448 // No need to adjust the output bounds if fullscreen or the docked stack is visible
449 // since it is already what we want to represent to the rest of the system.
Bryce Leef3c6a472017-11-14 14:53:06 -0800450 super.getBounds(out);
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700451 return;
452 }
453
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800454 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
455 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
Bryce Leef3c6a472017-11-14 14:53:06 -0800456 mStack.getDisplayContent().getBounds(out);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700457 }
458
Evan Roskyed6767f2018-10-26 17:21:06 -0700459 @Override
460 public Rect getDisplayedBounds() {
461 if (mOverrideDisplayedBounds.isEmpty()) {
462 return super.getDisplayedBounds();
463 } else {
464 return mOverrideDisplayedBounds;
465 }
466 }
467
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800468 /**
469 * Calculate the maximum visible area of this task. If the task has only one app,
470 * the result will be visible frame of that app. If the task has more than one apps,
471 * we search from top down if the next app got different visible area.
472 *
473 * This effort is to handle the case where some task (eg. GMail composer) might pop up
474 * a dialog that's different in size from the activity below, in which case we should
475 * be dimming the entire task area behind the dialog.
476 *
477 * @param out Rect containing the max visible bounds.
478 * @return true if the task has some visible app windows; false otherwise.
479 */
chaviw553b0212018-07-12 13:37:01 -0700480 private boolean getMaxVisibleBounds(Rect out) {
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800481 boolean foundTop = false;
Wale Ogunwalef6192862016-09-10 13:42:30 -0700482 for (int i = mChildren.size() - 1; i >= 0; i--) {
483 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800484 // skip hidden (or about to hide) apps
Wale Ogunwale89973222017-04-23 18:39:45 -0700485 if (token.mIsExiting || token.isClientHidden() || token.hiddenRequested) {
Chong Zhangd8ceb852015-11-11 14:53:41 -0800486 continue;
487 }
488 final WindowState win = token.findMainWindow();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800489 if (win == null) {
490 continue;
491 }
492 if (!foundTop) {
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800493 foundTop = true;
chaviw553b0212018-07-12 13:37:01 -0700494 out.setEmpty();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800495 }
chaviw553b0212018-07-12 13:37:01 -0700496
497 win.getMaxVisibleBounds(out);
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800498 }
499 return foundTop;
500 }
501
502 /** Bounds of the task to be used for dimming, as well as touch related tests. */
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800503 public void getDimBounds(Rect out) {
Robert Carra86a6bf2016-04-08 17:34:16 -0700504 final DisplayContent displayContent = mStack.getDisplayContent();
505 // It doesn't matter if we in particular are part of the resize, since we couldn't have
506 // a DimLayer anyway if we weren't visible.
Wale Ogunwalef6192862016-09-10 13:42:30 -0700507 final boolean dockedResizing = displayContent != null
508 && displayContent.mDividerControllerLocked.isResizing();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800509 if (useCurrentBounds()) {
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700510 if (inFreeformWindowingMode() && getMaxVisibleBounds(out)) {
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800511 return;
512 }
513
Bryce Leef3c6a472017-11-14 14:53:06 -0800514 if (!matchParentBounds()) {
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700515 // When minimizing the docked stack when going home, we don't adjust the task bounds
516 // so we need to intersect the task bounds with the stack bounds here.
Robert Carra86a6bf2016-04-08 17:34:16 -0700517 //
518 // If we are Docked Resizing with snap points, the task bounds could be smaller than the stack
519 // bounds and so we don't even want to use them. Even if the app should not be resized the Dim
520 // should keep up with the divider.
521 if (dockedResizing) {
522 mStack.getBounds(out);
523 } else {
524 mStack.getBounds(mTmpRect);
Bryce Leef3c6a472017-11-14 14:53:06 -0800525 mTmpRect.intersect(getBounds());
chaviw2fb06bc2018-01-19 17:09:15 -0800526 out.set(mTmpRect);
Robert Carra86a6bf2016-04-08 17:34:16 -0700527 }
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700528 } else {
Bryce Leef3c6a472017-11-14 14:53:06 -0800529 out.set(getBounds());
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700530 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800531 return;
532 }
533
Wale Ogunwalef6192862016-09-10 13:42:30 -0700534 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
535 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
536 if (displayContent != null) {
Bryce Leef3c6a472017-11-14 14:53:06 -0800537 displayContent.getBounds(out);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700538 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800539 }
540
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100541 void setDragResizing(boolean dragResizing, int dragResizeMode) {
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800542 if (mDragResizing != dragResizing) {
chaviw8c9d1f52018-07-25 14:56:07 -0700543 // No need to check if the mode is allowed if it's leaving dragResize
544 if (dragResizing && !DragResizeMode.isModeAllowedForStack(mStack, dragResizeMode)) {
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100545 throw new IllegalArgumentException("Drag resize mode not allow for stack stackId="
546 + mStack.mStackId + " dragResizeMode=" + dragResizeMode);
547 }
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800548 mDragResizing = dragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100549 mDragResizeMode = dragResizeMode;
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800550 resetDragResizingChangeReported();
551 }
552 }
553
Chong Zhang3005e752015-09-18 18:46:28 -0700554 boolean isDragResizing() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700555 return mDragResizing;
Chong Zhang3005e752015-09-18 18:46:28 -0700556 }
557
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100558 int getDragResizeMode() {
559 return mDragResizeMode;
560 }
561
Yunfan Chen0e7aff92018-12-05 16:35:32 -0800562 /**
563 * Puts this task into docked drag resizing mode. See {@link DragResizeMode}.
564 *
565 * @param resizing Whether to put the task into drag resize mode.
566 */
567 public void setTaskDockedResizing(boolean resizing) {
568 setDragResizing(resizing, DRAG_RESIZE_MODE_DOCKED_DIVIDER);
569 }
570
Garfield Tan2f145f22018-11-01 15:27:03 -0700571 private void adjustBoundsForDisplayChangeIfNeeded(final DisplayContent displayContent) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700572 if (displayContent == null) {
573 return;
574 }
Bryce Leef3c6a472017-11-14 14:53:06 -0800575 if (matchParentBounds()) {
Wale Ogunwale68278562017-09-23 17:13:55 -0700576 // TODO: Yeah...not sure if this works with WindowConfiguration, but shouldn't be a
577 // problem once we move mBounds into WindowConfiguration.
Bryce Leef3c6a472017-11-14 14:53:06 -0800578 setBounds(null);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700579 return;
580 }
Garfield Tandec96db2018-10-30 11:28:49 -0700581 final int displayId = displayContent.getDisplayId();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700582 final int newRotation = displayContent.getDisplayInfo().rotation;
Garfield Tandec96db2018-10-30 11:28:49 -0700583 if (displayId != mLastRotationDisplayId) {
584 // This task is on a display that it wasn't on. There is no point to keep the relative
585 // position if display rotations for old and new displays are different. Just keep these
586 // values.
587 mLastRotationDisplayId = displayId;
588 mRotation = newRotation;
589 return;
590 }
591
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700592 if (mRotation == newRotation) {
Garfield Tandec96db2018-10-30 11:28:49 -0700593 // Rotation didn't change. We don't need to adjust the bounds to keep the relative
594 // position.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700595 return;
596 }
597
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800598 // Device rotation changed.
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700599 // - We don't want the task to move around on the screen when this happens, so update the
600 // task bounds so it stays in the same place.
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800601 // - Rotate the bounds and notify activity manager if the task can be resized independently
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700602 // from its stack. The stack will take care of task rotation for the other case.
Bryce Leef3c6a472017-11-14 14:53:06 -0800603 mTmpRect2.set(getBounds());
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800604
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700605 if (!getWindowConfiguration().canResizeTask()) {
Bryce Leef3c6a472017-11-14 14:53:06 -0800606 setBounds(mTmpRect2);
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800607 return;
608 }
609
Wale Ogunwale94744212015-09-21 19:01:47 -0700610 displayContent.rotateBounds(mRotation, newRotation, mTmpRect2);
Bryce Leef3c6a472017-11-14 14:53:06 -0800611 if (setBounds(mTmpRect2) != BOUNDS_CHANGE_NONE) {
Yunfan Chen0e7aff92018-12-05 16:35:32 -0800612 if (mTaskRecord != null) {
613 mTaskRecord.requestResize(getBounds(), RESIZE_MODE_SYSTEM_SCREEN_ROTATION);
Wale Ogunwale1666e312016-12-16 11:27:18 -0800614 }
Wale Ogunwale1ed0d892015-09-28 13:27:44 -0700615 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700616 }
617
Wale Ogunwalef6192862016-09-10 13:42:30 -0700618 /** Cancels any running app transitions associated with the task. */
Winsonc28098f2015-10-30 14:50:19 -0700619 void cancelTaskWindowTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700620 for (int i = mChildren.size() - 1; i >= 0; --i) {
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200621 mChildren.get(i).cancelAnimation();
Winsonc28098f2015-10-30 14:50:19 -0700622 }
623 }
624
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700625 boolean showForAllUsers() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700626 final int tokensCount = mChildren.size();
Wale Ogunwale72919d22016-12-08 18:58:50 -0800627 return (tokensCount != 0) && mChildren.get(tokensCount - 1).mShowForAllUsers;
Jorim Jaggiff71d202016-04-14 13:12:36 -0700628 }
629
Robert Carr7e4c90e2017-02-15 19:52:38 -0800630 /**
631 * When we are in a floating stack (Freeform, Pinned, ...) we calculate
632 * insets differently. However if we are animating to the fullscreen stack
633 * we need to begin calculating insets as if we were fullscreen, otherwise
634 * we will have a jump at the end.
635 */
Robert Carre6275582016-02-29 15:45:45 -0800636 boolean isFloating() {
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700637 return getWindowConfiguration().tasksAreFloating()
Robert Carr18f622f2017-05-08 11:20:43 -0700638 && !mStack.isAnimatingBoundsToFullscreen() && !mPreserveNonFloatingState;
Robert Carre6275582016-02-29 15:45:45 -0800639 }
640
Winson Chungd41f71d2018-03-16 15:26:07 -0700641 @Override
642 public SurfaceControl getAnimationLeashParent() {
Winson Chung732446a2018-09-19 13:15:17 -0700643 // Currently, only the recents animation will create animation leashes for tasks. In this
644 // case, reparent the task to the home animation layer while it is being animated to allow
645 // the home activity to reorder the app windows relative to its own.
646 return getAppAnimationLayer(ANIMATION_LAYER_HOME);
Winson Chungd41f71d2018-03-16 15:26:07 -0700647 }
648
Evan Rosky9020c072018-12-06 14:11:12 -0800649 @Override
650 SurfaceControl.Builder makeSurface() {
651 return super.makeSurface().setMetadata(METADATA_TASK_ID, mTaskId);
652 }
653
Winson Chungd41f71d2018-03-16 15:26:07 -0700654 boolean isTaskAnimating() {
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800655 final RecentsAnimationController recentsAnim = mWmService.getRecentsAnimationController();
Winson Chungd41f71d2018-03-16 15:26:07 -0700656 if (recentsAnim != null) {
657 if (recentsAnim.isAnimatingTask(this)) {
658 return true;
659 }
660 }
661 return false;
662 }
663
Chong Zhangd8ceb852015-11-11 14:53:41 -0800664 WindowState getTopVisibleAppMainWindow() {
665 final AppWindowToken token = getTopVisibleAppToken();
666 return token != null ? token.findMainWindow() : null;
Chong Zhang9184ec62015-09-24 12:32:21 -0700667 }
668
Jorim Jaggie6c6ecb2017-07-20 18:09:20 +0200669 AppWindowToken getTopFullscreenAppToken() {
670 for (int i = mChildren.size() - 1; i >= 0; i--) {
671 final AppWindowToken token = mChildren.get(i);
672 final WindowState win = token.findMainWindow();
673 if (win != null && win.mAttrs.isFullscreen()) {
674 return token;
675 }
676 }
677 return null;
678 }
679
Chong Zhangd8ceb852015-11-11 14:53:41 -0800680 AppWindowToken getTopVisibleAppToken() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700681 for (int i = mChildren.size() - 1; i >= 0; i--) {
682 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800683 // skip hidden (or about to hide) apps
Wale Ogunwale89973222017-04-23 18:39:45 -0700684 if (!token.mIsExiting && !token.isClientHidden() && !token.hiddenRequested) {
Chong Zhangd8ceb852015-11-11 14:53:41 -0800685 return token;
686 }
687 }
688 return null;
Chong Zhangbef461f2015-10-27 11:38:24 -0700689 }
690
Yunfan Chen0e7aff92018-12-05 16:35:32 -0800691 void positionChildAtTop(AppWindowToken aToken) {
692 positionChildAt(aToken, POSITION_TOP);
693 }
694
695 void positionChildAt(AppWindowToken aToken, int position) {
696 if (aToken == null) {
697 Slog.w(TAG_WM,
698 "Attempted to position of non-existing app");
699 return;
700 }
701
702 positionChildAt(position, aToken, false /* includeParents */);
703 }
704
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700705 boolean isFullscreen() {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700706 if (useCurrentBounds()) {
Bryce Leef3c6a472017-11-14 14:53:06 -0800707 return matchParentBounds();
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700708 }
709 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
710 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
711 // system.
712 return true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700713 }
714
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700715 void forceWindowsScaleable(boolean force) {
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800716 mWmService.openSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700717 try {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700718 for (int i = mChildren.size() - 1; i >= 0; i--) {
719 mChildren.get(i).forceWindowsScaleableInTransaction(force);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700720 }
721 } finally {
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800722 mWmService.closeSurfaceTransaction("forceWindowsScaleable");
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700723 }
724 }
725
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100726 void setTaskDescription(TaskDescription taskDescription) {
727 mTaskDescription = taskDescription;
728 }
729
Yunfan Chen0e7aff92018-12-05 16:35:32 -0800730 void onSnapshotChanged(ActivityManager.TaskSnapshot snapshot) {
731 mTaskRecord.onSnapshotChanged(snapshot);
732 }
733
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100734 TaskDescription getTaskDescription() {
735 return mTaskDescription;
736 }
737
Wale Ogunwalef6192862016-09-10 13:42:30 -0700738 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -0700739 boolean fillsParent() {
Bryce Leef3c6a472017-11-14 14:53:06 -0800740 return matchParentBounds() || !getWindowConfiguration().canResizeTask();
Wale Ogunwale51362492016-09-08 17:49:17 -0700741 }
742
Jorim Jaggi329a5832017-01-05 18:57:12 +0100743 @Override
Jorim Jaggi51304d72017-05-17 17:25:32 +0200744 void forAllTasks(Consumer<Task> callback) {
745 callback.accept(this);
746 }
747
Jorim Jaggi50bf59c2018-03-09 17:29:48 +0100748 /**
749 * @param canAffectSystemUiFlags If false, all windows in this task can not affect SystemUI
750 * flags. See {@link WindowState#canAffectSystemUiFlags()}.
751 */
752 void setCanAffectSystemUiFlags(boolean canAffectSystemUiFlags) {
753 mCanAffectSystemUiFlags = canAffectSystemUiFlags;
754 }
755
756 /**
757 * @see #setCanAffectSystemUiFlags
758 */
759 boolean canAffectSystemUiFlags() {
760 return mCanAffectSystemUiFlags;
761 }
762
chaviw87ca63a2018-03-26 14:06:17 -0700763 void dontAnimateDimExit() {
764 mDimmer.dontAnimateExit();
765 }
766
Jorim Jaggi51304d72017-05-17 17:25:32 +0200767 @Override
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800768 public String toString() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700769 return "{taskId=" + mTaskId + " appTokens=" + mChildren + " mdr=" + mDeferRemoval + "}";
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800770 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700771
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700772 String getName() {
773 return toShortString();
774 }
775
Robert Carr18f622f2017-05-08 11:20:43 -0700776 void clearPreserveNonFloatingState() {
777 mPreserveNonFloatingState = false;
778 }
779
chaviw2fb06bc2018-01-19 17:09:15 -0800780 @Override
Robert Carrf59b8dd2017-10-02 18:58:36 -0700781 Dimmer getDimmer() {
782 return mDimmer;
783 }
784
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700785 @Override
Robert Carrf59b8dd2017-10-02 18:58:36 -0700786 void prepareSurfaces() {
787 mDimmer.resetDimStates();
788 super.prepareSurfaces();
789 getDimBounds(mTmpDimBoundsRect);
chaviwe07246a2017-12-12 16:18:29 -0800790
791 // Bounds need to be relative, as the dim layer is a child.
792 mTmpDimBoundsRect.offsetTo(0, 0);
Robert Carrf59b8dd2017-10-02 18:58:36 -0700793 if (mDimmer.updateDims(getPendingTransaction(), mTmpDimBoundsRect)) {
794 scheduleAnimation();
795 }
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700796 }
797
Wale Ogunwale0d5609b2017-09-13 05:55:07 -0700798 @CallSuper
799 @Override
Nataniel Borges023ecb52019-01-16 14:15:43 -0800800 public void writeToProto(ProtoOutputStream proto, long fieldId,
801 @WindowTraceLogLevel int logLevel) {
802 if (logLevel == WindowTraceLogLevel.CRITICAL && !isVisible()) {
803 return;
804 }
805
Steven Timotiusaf03df62017-07-18 16:56:43 -0700806 final long token = proto.start(fieldId);
Nataniel Borges023ecb52019-01-16 14:15:43 -0800807 super.writeToProto(proto, WINDOW_CONTAINER, logLevel);
Steven Timotiusaf03df62017-07-18 16:56:43 -0700808 proto.write(ID, mTaskId);
809 for (int i = mChildren.size() - 1; i >= 0; i--) {
810 final AppWindowToken appWindowToken = mChildren.get(i);
Nataniel Borges023ecb52019-01-16 14:15:43 -0800811 appWindowToken.writeToProto(proto, APP_WINDOW_TOKENS, logLevel);
Steven Timotiusaf03df62017-07-18 16:56:43 -0700812 }
Bryce Leef3c6a472017-11-14 14:53:06 -0800813 proto.write(FILLS_PARENT, matchParentBounds());
814 getBounds().writeToProto(proto, BOUNDS);
Evan Roskyed6767f2018-10-26 17:21:06 -0700815 mOverrideDisplayedBounds.writeToProto(proto, DISPLAYED_BOUNDS);
Vishnu Nair04ab4392018-01-10 11:00:06 -0800816 proto.write(DEFER_REMOVAL, mDeferRemoval);
Louis Chang7501e332018-08-20 13:08:39 +0800817 proto.write(SURFACE_WIDTH, mSurfaceControl.getWidth());
818 proto.write(SURFACE_HEIGHT, mSurfaceControl.getHeight());
Steven Timotiusaf03df62017-07-18 16:56:43 -0700819 proto.end(token);
820 }
821
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200822 @Override
823 public void dump(PrintWriter pw, String prefix, boolean dumpAll) {
824 super.dump(pw, prefix, dumpAll);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800825 final String doublePrefix = prefix + " ";
826
827 pw.println(prefix + "taskId=" + mTaskId);
Bryce Leef3c6a472017-11-14 14:53:06 -0800828 pw.println(doublePrefix + "mBounds=" + getBounds().toShortString());
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800829 pw.println(doublePrefix + "mdr=" + mDeferRemoval);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700830 pw.println(doublePrefix + "appTokens=" + mChildren);
Evan Roskyed6767f2018-10-26 17:21:06 -0700831 pw.println(doublePrefix + "mDisplayedBounds=" + mOverrideDisplayedBounds.toShortString());
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800832
833 final String triplePrefix = doublePrefix + " ";
Jorim Jaggi153dc9d2018-02-23 13:28:15 +0100834 final String quadruplePrefix = triplePrefix + " ";
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800835
Wale Ogunwalef6192862016-09-10 13:42:30 -0700836 for (int i = mChildren.size() - 1; i >= 0; i--) {
837 final AppWindowToken wtoken = mChildren.get(i);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800838 pw.println(triplePrefix + "Activity #" + i + " " + wtoken);
Jorim Jaggi153dc9d2018-02-23 13:28:15 +0100839 wtoken.dump(pw, quadruplePrefix, dumpAll);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800840 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700841 }
Robert Carrf59b8dd2017-10-02 18:58:36 -0700842
843 String toShortString() {
844 return "Task=" + mTaskId;
845 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800846}