blob: bc749e16fe6b73be72fcddbfcfc9d5789c5a54f8 [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
Jorim Jaggid53f0922016-04-06 22:16:23 -070019import static android.app.ActivityManager.RESIZE_MODE_SYSTEM_SCREEN_ROTATION;
Jason Monkba53d8a2017-04-06 18:28:19 +000020import static android.app.ActivityManager.StackId.FREEFORM_WORKSPACE_STACK_ID;
Jorim Jaggi30d64f32017-04-07 16:33:17 +020021import static android.app.ActivityManager.StackId.PINNED_STACK_ID;
skuhne@google.com322347b2016-12-02 12:54:03 -080022import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY;
Jason Monkba53d8a2017-04-06 18:28:19 +000023import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY;
Jorim Jaggi30d64f32017-04-07 16:33:17 +020024import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
Bryce Lee61fbcbc2017-03-10 14:14:03 -080025import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSET;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080026import static com.android.server.EventLogTags.WM_TASK_REMOVED;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080027import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STACK;
Jorim Jaggid53f0922016-04-06 22:16:23 -070028import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
29import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Wale Ogunwale99db1862015-10-23 20:08:22 -070030
Wale Ogunwale3797c222015-10-27 14:21:58 -070031import android.app.ActivityManager.StackId;
Jorim Jaggi829b9cd2017-01-23 16:20:53 +010032import android.app.ActivityManager.TaskDescription;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080033import android.content.pm.ActivityInfo;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070034import android.content.res.Configuration;
35import android.graphics.Rect;
Craig Mautner2c2549c2013-11-12 08:31:15 -080036import android.util.EventLog;
Craig Mautner42bf39e2014-02-21 16:46:22 -080037import android.util.Slog;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070038import android.view.DisplayInfo;
39import android.view.Surface;
40
Wale Ogunwalec5cc3012017-01-13 13:26:16 -080041import com.android.internal.annotations.VisibleForTesting;
Craig Mautner2c2549c2013-11-12 08:31:15 -080042
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070043import java.io.PrintWriter;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070044
Wale Ogunwalef6192862016-09-10 13:42:30 -070045class Task extends WindowContainer<AppWindowToken> implements DimLayer.DimLayerUser {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -080046 static final String TAG = TAG_WITH_CLASS_NAME ? "Task" : TAG_WM;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070047 // Return value from {@link setBounds} indicating no change was made to the Task bounds.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070048 private static final int BOUNDS_CHANGE_NONE = 0;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070049 // Return value from {@link setBounds} indicating the position of the Task bounds changed.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070050 private static final int BOUNDS_CHANGE_POSITION = 1;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070051 // Return value from {@link setBounds} indicating the size of the Task bounds changed.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070052 private static final int BOUNDS_CHANGE_SIZE = 1 << 1;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070053
Wale Ogunwalef6192862016-09-10 13:42:30 -070054 // TODO: Track parent marks like this in WindowContainer.
Craig Mautnerc00204b2013-03-05 15:02:14 -080055 TaskStack mStack;
Craig Mautner83162a92015-01-26 14:43:30 -080056 final int mTaskId;
Craig Mautnerac6f8432013-07-17 13:24:59 -070057 final int mUserId;
Wale Ogunwale3eadad72016-10-13 09:16:59 -070058 private boolean mDeferRemoval = false;
Craig Mautnere3119b72015-01-20 15:02:36 -080059 final WindowManagerService mService;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080060
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070061 // Content limits relative to the DisplayContent this sits in.
62 private Rect mBounds = new Rect();
Jorim Jaggi0429f352015-12-22 16:29:16 +010063 final Rect mPreparedFrozenBounds = new Rect();
Jorim Jaggi26c8c422016-05-09 19:57:25 -070064 final Configuration mPreparedFrozenMergedConfig = new Configuration();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070065
Jorim Jaggidc249c42015-12-15 14:57:31 -080066 // Bounds used to calculate the insets.
67 private final Rect mTempInsetBounds = new Rect();
68
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070069 // Device rotation as of the last time {@link #mBounds} was set.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070070 private int mRotation;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070071
72 // Whether mBounds is fullscreen
Wale Ogunwale5a2183d2016-09-19 12:26:13 -070073 private boolean mFillsParent = true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070074
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070075 // For comparison with DisplayContent bounds.
76 private Rect mTmpRect = new Rect();
77 // For handling display rotations.
78 private Rect mTmpRect2 = new Rect();
79
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080080 // Resize mode of the task. See {@link ActivityInfo#resizeMode}
81 private int mResizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -080082
Winson Chungd3395382016-12-13 11:49:09 -080083 // Whether the task supports picture-in-picture.
84 // See {@link ActivityInfo#FLAG_SUPPORTS_PICTURE_IN_PICTURE}
85 private boolean mSupportsPictureInPicture;
86
Chong Zhang3005e752015-09-18 18:46:28 -070087 // Whether the task is currently being drag-resized
88 private boolean mDragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +010089 private int mDragResizeMode;
Chong Zhang3005e752015-09-18 18:46:28 -070090
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080091 private boolean mHomeTask;
92
Jorim Jaggi829b9cd2017-01-23 16:20:53 +010093 private TaskDescription mTaskDescription;
94
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -070095 Task(int taskId, TaskStack stack, int userId, WindowManagerService service, Rect bounds,
Wale Ogunwale069bbd32017-02-03 07:58:14 -080096 Configuration overrideConfig, int resizeMode, boolean supportsPictureInPicture,
97 boolean homeTask, TaskDescription taskDescription,
Winson Chungd3395382016-12-13 11:49:09 -080098 TaskWindowContainerController controller) {
Craig Mautner83162a92015-01-26 14:43:30 -080099 mTaskId = taskId;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800100 mStack = stack;
Craig Mautnerac6f8432013-07-17 13:24:59 -0700101 mUserId = userId;
Craig Mautnere3119b72015-01-20 15:02:36 -0800102 mService = service;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800103 mResizeMode = resizeMode;
Winson Chungd3395382016-12-13 11:49:09 -0800104 mSupportsPictureInPicture = supportsPictureInPicture;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800105 mHomeTask = homeTask;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800106 setController(controller);
Andrii Kulian8072d112016-09-16 11:11:01 -0700107 setBounds(bounds, overrideConfig);
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100108 mTaskDescription = taskDescription;
Bryce Lee61fbcbc2017-03-10 14:14:03 -0800109
110 // Tasks have no set orientation value (including SCREEN_ORIENTATION_UNSPECIFIED).
111 setOrientation(SCREEN_ORIENTATION_UNSET);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800112 }
113
114 DisplayContent getDisplayContent() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800115 return mStack != null ? mStack.getDisplayContent() : null;
116 }
117
Wale Ogunwale069bbd32017-02-03 07:58:14 -0800118 private int getAdjustedAddPosition(int suggestedPosition) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800119 final int size = mChildren.size();
120 if (suggestedPosition >= size) {
121 return Math.min(size, suggestedPosition);
122 }
123
124 for (int pos = 0; pos < size && pos < suggestedPosition; ++pos) {
125 // TODO: Confirm that this is the behavior we want long term.
126 if (mChildren.get(pos).removed) {
127 // suggestedPosition assumes removed tokens are actually gone.
128 ++suggestedPosition;
129 }
130 }
131 return Math.min(size, suggestedPosition);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800132 }
133
Wale Ogunwale72919d22016-12-08 18:58:50 -0800134 @Override
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800135 void addChild(AppWindowToken wtoken, int position) {
136 position = getAdjustedAddPosition(position);
137 super.addChild(wtoken, position);
Craig Mautner42bf39e2014-02-21 16:46:22 -0800138 mDeferRemoval = false;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800139 }
140
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800141 @Override
142 void positionChildAt(int position, AppWindowToken child, boolean includingParents) {
143 position = getAdjustedAddPosition(position);
144 super.positionChildAt(position, child, includingParents);
145 mDeferRemoval = false;
146 }
147
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700148 private boolean hasWindowsAlive() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700149 for (int i = mChildren.size() - 1; i >= 0; i--) {
150 if (mChildren.get(i).hasWindowsAlive()) {
Chong Zhang7e8eeb72016-01-06 19:14:47 -0800151 return true;
152 }
153 }
154 return false;
155 }
156
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800157 @VisibleForTesting
158 boolean shouldDeferRemoval() {
159 return hasWindowsAlive() && mStack.isAnimating();
160 }
161
Wale Ogunwalef6192862016-09-10 13:42:30 -0700162 @Override
163 void removeIfPossible() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800164 if (shouldDeferRemoval()) {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800165 if (DEBUG_STACK) Slog.i(TAG, "removeTask: deferring removing taskId=" + mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800166 mDeferRemoval = true;
167 return;
168 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800169 removeImmediately();
170 }
171
172 @Override
173 void removeImmediately() {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800174 if (DEBUG_STACK) Slog.i(TAG, "removeTask: removing taskId=" + mTaskId);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800175 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeTask");
Craig Mautnere3119b72015-01-20 15:02:36 -0800176 mDeferRemoval = false;
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800177
178 // Make sure to remove dim layer user first before removing task its from parent.
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700179 DisplayContent content = getDisplayContent();
180 if (content != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800181 content.mDimLayerController.removeDimLayerUser(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700182 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800183
184 super.removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800185 }
186
Wale Ogunwale2719cc12017-04-14 09:45:27 -0700187 void reparent(TaskStack stack, int position, boolean moveParents) {
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800188 if (stack == mStack) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800189 throw new IllegalArgumentException(
190 "task=" + this + " already child of stack=" + mStack);
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800191 }
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800192 if (DEBUG_STACK) Slog.i(TAG, "reParentTask: removing taskId=" + mTaskId
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800193 + " from stack=" + mStack);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800194 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "reParentTask");
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -0800195 final DisplayContent prevDisplayContent = getDisplayContent();
196
Andrii Kulian441e4492016-09-29 15:25:00 -0700197 getParent().removeChild(this);
Wale Ogunwale2719cc12017-04-14 09:45:27 -0700198 stack.addTask(this, position, showForAllUsers(), moveParents);
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -0800199
200 // Relayout display(s).
201 final DisplayContent displayContent = stack.getDisplayContent();
202 displayContent.setLayoutNeeded();
203 if (prevDisplayContent != displayContent) {
204 onDisplayChanged(displayContent);
205 prevDisplayContent.setLayoutNeeded();
206 }
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800207 }
208
Andrii Kuliand2765632016-12-12 22:26:34 -0800209 /** @see com.android.server.am.ActivityManagerService#positionTaskInStack(int, int, int). */
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800210 void positionAt(int position, Rect bounds, Configuration overrideConfig) {
211 mStack.positionChildAt(position, this, false /* includingParents */);
Andrii Kulian1779e612016-10-12 21:58:25 -0700212 resizeLocked(bounds, overrideConfig, false /* force */);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700213 }
214
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700215 @Override
Andrii Kuliand2765632016-12-12 22:26:34 -0800216 void onParentSet() {
217 // Update task bounds if needed.
218 updateDisplayInfo(getDisplayContent());
219
220 if (StackId.windowsAreScaleable(mStack.mStackId)) {
221 // We force windows out of SCALING_MODE_FREEZE so that we can continue to animate them
222 // while a resize is pending.
223 forceWindowsScaleable(true /* force */);
224 } else {
225 forceWindowsScaleable(false /* force */);
226 }
227 }
228
229 @Override
Wale Ogunwalef6192862016-09-10 13:42:30 -0700230 void removeChild(AppWindowToken token) {
231 if (!mChildren.contains(token)) {
232 Slog.e(TAG, "removeChild: token=" + this + " not found.");
233 return;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700234 }
235
Wale Ogunwalef6192862016-09-10 13:42:30 -0700236 super.removeChild(token);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700237
Wale Ogunwalef6192862016-09-10 13:42:30 -0700238 if (mChildren.isEmpty()) {
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800239 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeAppToken: last token");
Craig Mautnere3119b72015-01-20 15:02:36 -0800240 if (mDeferRemoval) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700241 removeIfPossible();
Craig Mautnere3119b72015-01-20 15:02:36 -0800242 }
Craig Mautnerc00204b2013-03-05 15:02:14 -0800243 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800244 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800245
Craig Mautnercbd84af2014-10-22 13:21:22 -0700246 void setSendingToBottom(boolean toBottom) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700247 for (int appTokenNdx = 0; appTokenNdx < mChildren.size(); appTokenNdx++) {
248 mChildren.get(appTokenNdx).sendingToBottom = toBottom;
Craig Mautnercbd84af2014-10-22 13:21:22 -0700249 }
250 }
251
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700252 /** Set the task bounds. Passing in null sets the bounds to fullscreen. */
Andrii Kulian8072d112016-09-16 11:11:01 -0700253 private int setBounds(Rect bounds, Configuration overrideConfig) {
254 if (overrideConfig == null) {
255 overrideConfig = Configuration.EMPTY;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700256 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700257 if (bounds == null && !Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700258 throw new IllegalArgumentException("null bounds but non empty configuration: "
Andrii Kulian8072d112016-09-16 11:11:01 -0700259 + overrideConfig);
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700260 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700261 if (bounds != null && Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700262 throw new IllegalArgumentException("non null bounds, but empty configuration");
263 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700264 boolean oldFullscreen = mFillsParent;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700265 int rotation = Surface.ROTATION_0;
266 final DisplayContent displayContent = mStack.getDisplayContent();
267 if (displayContent != null) {
268 displayContent.getLogicalDisplayRect(mTmpRect);
269 rotation = displayContent.getDisplayInfo().rotation;
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700270 mFillsParent = bounds == null;
271 if (mFillsParent) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700272 bounds = mTmpRect;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700273 }
274 }
275
276 if (bounds == null) {
277 // Can't set to fullscreen if we don't have a display to get bounds from...
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700278 return BOUNDS_CHANGE_NONE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700279 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700280 if (mBounds.equals(bounds) && oldFullscreen == mFillsParent && mRotation == rotation) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700281 return BOUNDS_CHANGE_NONE;
282 }
283
284 int boundsChange = BOUNDS_CHANGE_NONE;
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700285 if (mBounds.left != bounds.left || mBounds.top != bounds.top) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700286 boundsChange |= BOUNDS_CHANGE_POSITION;
287 }
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700288 if (mBounds.width() != bounds.width() || mBounds.height() != bounds.height()) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700289 boundsChange |= BOUNDS_CHANGE_SIZE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700290 }
291
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700292 mBounds.set(bounds);
Chong Zhangf66db432016-01-13 10:39:51 -0800293
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700294 mRotation = rotation;
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700295 if (displayContent != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800296 displayContent.mDimLayerController.updateDimLayer(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700297 }
Andrii Kulian441e4492016-09-29 15:25:00 -0700298 onOverrideConfigurationChanged(mFillsParent ? Configuration.EMPTY : overrideConfig);
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700299 return boundsChange;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700300 }
301
Jorim Jaggidc249c42015-12-15 14:57:31 -0800302 /**
303 * Sets the bounds used to calculate the insets. See
304 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
305 */
306 void setTempInsetBounds(Rect tempInsetBounds) {
307 if (tempInsetBounds != null) {
308 mTempInsetBounds.set(tempInsetBounds);
309 } else {
310 mTempInsetBounds.setEmpty();
311 }
312 }
313
314 /**
315 * Gets the bounds used to calculate the insets. See
316 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
317 */
318 void getTempInsetBounds(Rect out) {
319 out.set(mTempInsetBounds);
320 }
321
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800322 void setResizeable(int resizeMode) {
323 mResizeMode = resizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -0800324 }
325
326 boolean isResizeable() {
Winson Chungd3395382016-12-13 11:49:09 -0800327 return ActivityInfo.isResizeableMode(mResizeMode) || mSupportsPictureInPicture
328 || mService.mForceResizableTasks;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800329 }
330
skuhne@google.com322347b2016-12-02 12:54:03 -0800331 /**
332 * Tests if the orientation should be preserved upon user interactive resizig operations.
333
334 * @return true if orientation should not get changed upon resizing operation.
335 */
336 boolean preserveOrientationOnResize() {
337 return mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY
338 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY
339 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
340 }
341
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800342 boolean cropWindowsToStackBounds() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700343 return isResizeable();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800344 }
345
Jorim Jaggi42625d1b2016-02-11 20:11:07 -0800346 boolean isHomeTask() {
347 return mHomeTask;
348 }
349
Andrii Kulian8072d112016-09-16 11:11:01 -0700350 boolean resizeLocked(Rect bounds, Configuration overrideConfig, boolean forced) {
351 int boundsChanged = setBounds(bounds, overrideConfig);
Chong Zhang87b21722015-09-21 15:39:51 -0700352 if (forced) {
Chong Zhang3005e752015-09-18 18:46:28 -0700353 boundsChanged |= BOUNDS_CHANGE_SIZE;
Chong Zhang3005e752015-09-18 18:46:28 -0700354 }
355 if (boundsChanged == BOUNDS_CHANGE_NONE) {
356 return false;
357 }
358 if ((boundsChanged & BOUNDS_CHANGE_SIZE) == BOUNDS_CHANGE_SIZE) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700359 onResize();
Chong Zhangbd0d9372015-12-28 15:18:29 -0800360 } else {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700361 onMovedByResize();
Chong Zhang3005e752015-09-18 18:46:28 -0700362 }
363 return true;
364 }
365
Jorim Jaggi0429f352015-12-22 16:29:16 +0100366 /**
367 * Prepares the task bounds to be frozen with the current size. See
368 * {@link AppWindowToken#freezeBounds}.
369 */
370 void prepareFreezingBounds() {
371 mPreparedFrozenBounds.set(mBounds);
Andrii Kulian441e4492016-09-29 15:25:00 -0700372 mPreparedFrozenMergedConfig.setTo(getConfiguration());
Jorim Jaggi0429f352015-12-22 16:29:16 +0100373 }
374
Chong Zhang5117e272016-05-03 12:47:34 -0700375 /**
376 * Align the task to the adjusted bounds.
377 *
378 * @param adjustedBounds Adjusted bounds to which the task should be aligned.
379 * @param tempInsetBounds Insets bounds for the task.
380 * @param alignBottom True if the task's bottom should be aligned to the adjusted
381 * bounds's bottom; false if the task's top should be aligned
382 * the adjusted bounds's top.
383 */
Andrii Kulian441e4492016-09-29 15:25:00 -0700384 void alignToAdjustedBounds(Rect adjustedBounds, Rect tempInsetBounds, boolean alignBottom) {
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700385 // Task override config might be empty, while display or stack override config isn't, so
386 // we have to check merged override config here.
387 if (!isResizeable() || Configuration.EMPTY.equals(getMergedOverrideConfiguration())) {
Chong Zhang5117e272016-05-03 12:47:34 -0700388 return;
389 }
390
391 getBounds(mTmpRect2);
392 if (alignBottom) {
393 int offsetY = adjustedBounds.bottom - mTmpRect2.bottom;
394 mTmpRect2.offset(0, offsetY);
395 } else {
396 mTmpRect2.offsetTo(adjustedBounds.left, adjustedBounds.top);
397 }
398 setTempInsetBounds(tempInsetBounds);
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700399 resizeLocked(mTmpRect2, getOverrideConfiguration(), false /* forced */);
Chong Zhang5117e272016-05-03 12:47:34 -0700400 }
401
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700402 /** Return true if the current bound can get outputted to the rest of the system as-is. */
403 private boolean useCurrentBounds() {
404 final DisplayContent displayContent = mStack.getDisplayContent();
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700405 return mFillsParent
Wale Ogunwale3797c222015-10-27 14:21:58 -0700406 || !StackId.isTaskResizeableByDockedStack(mStack.mStackId)
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700407 || displayContent == null
Jorim Jaggife762342016-10-13 14:33:27 +0200408 || displayContent.getDockedStackIgnoringVisibility() != null;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700409 }
410
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800411 /** Original bounds of the task if applicable, otherwise fullscreen rect. */
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800412 void getBounds(Rect out) {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700413 if (useCurrentBounds()) {
414 // No need to adjust the output bounds if fullscreen or the docked stack is visible
415 // since it is already what we want to represent to the rest of the system.
416 out.set(mBounds);
417 return;
418 }
419
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800420 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
421 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700422 mStack.getDisplayContent().getLogicalDisplayRect(out);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700423 }
424
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800425 /**
426 * Calculate the maximum visible area of this task. If the task has only one app,
427 * the result will be visible frame of that app. If the task has more than one apps,
428 * we search from top down if the next app got different visible area.
429 *
430 * This effort is to handle the case where some task (eg. GMail composer) might pop up
431 * a dialog that's different in size from the activity below, in which case we should
432 * be dimming the entire task area behind the dialog.
433 *
434 * @param out Rect containing the max visible bounds.
435 * @return true if the task has some visible app windows; false otherwise.
436 */
437 boolean getMaxVisibleBounds(Rect out) {
438 boolean foundTop = false;
Wale Ogunwalef6192862016-09-10 13:42:30 -0700439 for (int i = mChildren.size() - 1; i >= 0; i--) {
440 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800441 // skip hidden (or about to hide) apps
Wale Ogunwale89973222017-04-23 18:39:45 -0700442 if (token.mIsExiting || token.isClientHidden() || token.hiddenRequested) {
Chong Zhangd8ceb852015-11-11 14:53:41 -0800443 continue;
444 }
445 final WindowState win = token.findMainWindow();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800446 if (win == null) {
447 continue;
448 }
449 if (!foundTop) {
450 out.set(win.mVisibleFrame);
451 foundTop = true;
452 continue;
453 }
454 if (win.mVisibleFrame.left < out.left) {
455 out.left = win.mVisibleFrame.left;
456 }
457 if (win.mVisibleFrame.top < out.top) {
458 out.top = win.mVisibleFrame.top;
459 }
460 if (win.mVisibleFrame.right > out.right) {
461 out.right = win.mVisibleFrame.right;
462 }
463 if (win.mVisibleFrame.bottom > out.bottom) {
464 out.bottom = win.mVisibleFrame.bottom;
465 }
466 }
467 return foundTop;
468 }
469
470 /** Bounds of the task to be used for dimming, as well as touch related tests. */
471 @Override
472 public void getDimBounds(Rect out) {
Robert Carra86a6bf2016-04-08 17:34:16 -0700473 final DisplayContent displayContent = mStack.getDisplayContent();
474 // It doesn't matter if we in particular are part of the resize, since we couldn't have
475 // a DimLayer anyway if we weren't visible.
Wale Ogunwalef6192862016-09-10 13:42:30 -0700476 final boolean dockedResizing = displayContent != null
477 && displayContent.mDividerControllerLocked.isResizing();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800478 if (useCurrentBounds()) {
479 if (inFreeformWorkspace() && getMaxVisibleBounds(out)) {
480 return;
481 }
482
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700483 if (!mFillsParent) {
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700484 // When minimizing the docked stack when going home, we don't adjust the task bounds
485 // so we need to intersect the task bounds with the stack bounds here.
Robert Carra86a6bf2016-04-08 17:34:16 -0700486 //
487 // If we are Docked Resizing with snap points, the task bounds could be smaller than the stack
488 // bounds and so we don't even want to use them. Even if the app should not be resized the Dim
489 // should keep up with the divider.
490 if (dockedResizing) {
491 mStack.getBounds(out);
492 } else {
493 mStack.getBounds(mTmpRect);
494 mTmpRect.intersect(mBounds);
495 }
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700496 out.set(mTmpRect);
497 } else {
498 out.set(mBounds);
499 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800500 return;
501 }
502
Wale Ogunwalef6192862016-09-10 13:42:30 -0700503 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
504 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
505 if (displayContent != null) {
506 displayContent.getLogicalDisplayRect(out);
507 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800508 }
509
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100510 void setDragResizing(boolean dragResizing, int dragResizeMode) {
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800511 if (mDragResizing != dragResizing) {
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100512 if (!DragResizeMode.isModeAllowedForStack(mStack.mStackId, dragResizeMode)) {
513 throw new IllegalArgumentException("Drag resize mode not allow for stack stackId="
514 + mStack.mStackId + " dragResizeMode=" + dragResizeMode);
515 }
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800516 mDragResizing = dragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100517 mDragResizeMode = dragResizeMode;
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800518 resetDragResizingChangeReported();
519 }
520 }
521
Chong Zhang3005e752015-09-18 18:46:28 -0700522 boolean isDragResizing() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700523 return mDragResizing;
Chong Zhang3005e752015-09-18 18:46:28 -0700524 }
525
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100526 int getDragResizeMode() {
527 return mDragResizeMode;
528 }
529
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700530 void updateDisplayInfo(final DisplayContent displayContent) {
531 if (displayContent == null) {
532 return;
533 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700534 if (mFillsParent) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700535 setBounds(null, Configuration.EMPTY);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700536 return;
537 }
538 final int newRotation = displayContent.getDisplayInfo().rotation;
539 if (mRotation == newRotation) {
540 return;
541 }
542
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800543 // Device rotation changed.
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700544 // - We don't want the task to move around on the screen when this happens, so update the
545 // task bounds so it stays in the same place.
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800546 // - Rotate the bounds and notify activity manager if the task can be resized independently
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700547 // from its stack. The stack will take care of task rotation for the other case.
548 mTmpRect2.set(mBounds);
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800549
550 if (!StackId.isTaskResizeAllowed(mStack.mStackId)) {
Andrii Kulian441e4492016-09-29 15:25:00 -0700551 setBounds(mTmpRect2, getOverrideConfiguration());
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800552 return;
553 }
554
Wale Ogunwale94744212015-09-21 19:01:47 -0700555 displayContent.rotateBounds(mRotation, newRotation, mTmpRect2);
Andrii Kulian441e4492016-09-29 15:25:00 -0700556 if (setBounds(mTmpRect2, getOverrideConfiguration()) != BOUNDS_CHANGE_NONE) {
Wale Ogunwale1666e312016-12-16 11:27:18 -0800557 final TaskWindowContainerController controller = getController();
558 if (controller != null) {
559 controller.requestResize(mBounds, RESIZE_MODE_SYSTEM_SCREEN_ROTATION);
560 }
Wale Ogunwale1ed0d892015-09-28 13:27:44 -0700561 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700562 }
563
Wale Ogunwalef6192862016-09-10 13:42:30 -0700564 /** Cancels any running app transitions associated with the task. */
Winsonc28098f2015-10-30 14:50:19 -0700565 void cancelTaskWindowTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700566 for (int i = mChildren.size() - 1; i >= 0; --i) {
567 mChildren.get(i).mAppAnimator.clearAnimation();
Winsonc28098f2015-10-30 14:50:19 -0700568 }
569 }
570
Wale Ogunwalef6192862016-09-10 13:42:30 -0700571 /** Cancels any running thumbnail transitions associated with the task. */
Winson13d30662015-11-06 15:30:29 -0800572 void cancelTaskThumbnailTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700573 for (int i = mChildren.size() - 1; i >= 0; --i) {
574 mChildren.get(i).mAppAnimator.clearThumbnail();
Winson13d30662015-11-06 15:30:29 -0800575 }
576 }
577
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700578 boolean showForAllUsers() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700579 final int tokensCount = mChildren.size();
Wale Ogunwale72919d22016-12-08 18:58:50 -0800580 return (tokensCount != 0) && mChildren.get(tokensCount - 1).mShowForAllUsers;
Jorim Jaggiff71d202016-04-14 13:12:36 -0700581 }
582
Chong Zhang09b21ef2015-09-14 10:20:21 -0700583 boolean inFreeformWorkspace() {
584 return mStack != null && mStack.mStackId == FREEFORM_WORKSPACE_STACK_ID;
585 }
586
Robert Carr03138452016-05-18 14:53:16 -0700587 boolean inPinnedWorkspace() {
588 return mStack != null && mStack.mStackId == PINNED_STACK_ID;
589 }
590
Robert Carr7e4c90e2017-02-15 19:52:38 -0800591 /**
592 * When we are in a floating stack (Freeform, Pinned, ...) we calculate
593 * insets differently. However if we are animating to the fullscreen stack
594 * we need to begin calculating insets as if we were fullscreen, otherwise
595 * we will have a jump at the end.
596 */
Robert Carre6275582016-02-29 15:45:45 -0800597 boolean isFloating() {
Winson Chung40a5f932017-04-13 16:39:36 -0700598 return StackId.tasksAreFloating(mStack.mStackId) && !mStack.isAnimatingBoundsToFullscreen();
Robert Carre6275582016-02-29 15:45:45 -0800599 }
600
Chong Zhangd8ceb852015-11-11 14:53:41 -0800601 WindowState getTopVisibleAppMainWindow() {
602 final AppWindowToken token = getTopVisibleAppToken();
603 return token != null ? token.findMainWindow() : null;
Chong Zhang9184ec62015-09-24 12:32:21 -0700604 }
605
Chong Zhangd8ceb852015-11-11 14:53:41 -0800606 AppWindowToken getTopVisibleAppToken() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700607 for (int i = mChildren.size() - 1; i >= 0; i--) {
608 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800609 // skip hidden (or about to hide) apps
Wale Ogunwale89973222017-04-23 18:39:45 -0700610 if (!token.mIsExiting && !token.isClientHidden() && !token.hiddenRequested) {
Chong Zhangd8ceb852015-11-11 14:53:41 -0800611 return token;
612 }
613 }
614 return null;
Chong Zhangbef461f2015-10-27 11:38:24 -0700615 }
616
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800617 @Override
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700618 public boolean dimFullscreen() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700619 return isFullscreen();
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700620 }
621
622 boolean isFullscreen() {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700623 if (useCurrentBounds()) {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700624 return mFillsParent;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700625 }
626 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
627 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
628 // system.
629 return true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700630 }
631
632 @Override
633 public DisplayInfo getDisplayInfo() {
Wale Ogunwalef0a60a92017-01-19 09:44:40 -0800634 return getDisplayContent().getDisplayInfo();
635 }
636
637 @Override
638 public boolean isAttachedToDisplay() {
639 return getDisplayContent() != null;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700640 }
641
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700642 void forceWindowsScaleable(boolean force) {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700643 mService.openSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700644 try {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700645 for (int i = mChildren.size() - 1; i >= 0; i--) {
646 mChildren.get(i).forceWindowsScaleableInTransaction(force);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700647 }
648 } finally {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700649 mService.closeSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700650 }
651 }
652
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100653 void setTaskDescription(TaskDescription taskDescription) {
654 mTaskDescription = taskDescription;
655 }
656
657 TaskDescription getTaskDescription() {
658 return mTaskDescription;
659 }
660
Wale Ogunwalef6192862016-09-10 13:42:30 -0700661 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -0700662 boolean fillsParent() {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700663 return mFillsParent || !StackId.isTaskResizeAllowed(mStack.mStackId);
Wale Ogunwale51362492016-09-08 17:49:17 -0700664 }
665
Jorim Jaggi329a5832017-01-05 18:57:12 +0100666 @Override
Jorim Jaggifb9d78a2017-01-05 18:57:12 +0100667 TaskWindowContainerController getController() {
668 return (TaskWindowContainerController) super.getController();
669 }
670
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700671 @Override
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800672 public String toString() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700673 return "{taskId=" + mTaskId + " appTokens=" + mChildren + " mdr=" + mDeferRemoval + "}";
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800674 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700675
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700676 String getName() {
677 return toShortString();
678 }
679
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700680 @Override
681 public String toShortString() {
682 return "Task=" + mTaskId;
683 }
684
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800685 public void dump(String prefix, PrintWriter pw) {
686 final String doublePrefix = prefix + " ";
687
688 pw.println(prefix + "taskId=" + mTaskId);
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700689 pw.println(doublePrefix + "mFillsParent=" + mFillsParent);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800690 pw.println(doublePrefix + "mBounds=" + mBounds.toShortString());
691 pw.println(doublePrefix + "mdr=" + mDeferRemoval);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700692 pw.println(doublePrefix + "appTokens=" + mChildren);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800693 pw.println(doublePrefix + "mTempInsetBounds=" + mTempInsetBounds.toShortString());
694
695 final String triplePrefix = doublePrefix + " ";
696
Wale Ogunwalef6192862016-09-10 13:42:30 -0700697 for (int i = mChildren.size() - 1; i >= 0; i--) {
698 final AppWindowToken wtoken = mChildren.get(i);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800699 pw.println(triplePrefix + "Activity #" + i + " " + wtoken);
700 wtoken.dump(pw, triplePrefix);
701 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700702 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800703}