blob: d96e1eff236384ac7fc0e465bffd8f15b0734123 [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;
Robert Carr03138452016-05-18 14:53:16 -070020import static android.app.ActivityManager.StackId.PINNED_STACK_ID;
Wale Ogunwale3797c222015-10-27 14:21:58 -070021import static android.app.ActivityManager.StackId.FREEFORM_WORKSPACE_STACK_ID;
skuhne@google.com322347b2016-12-02 12:54:03 -080022import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY;
23import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
24import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080025import static com.android.server.EventLogTags.WM_TASK_REMOVED;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080026import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STACK;
Andrii Kuliand2765632016-12-12 22:26:34 -080027import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_TASK_MOVEMENT;
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 Mautnere3119b72015-01-20 15:02:36 -080042import com.android.server.EventLogTags;
Craig Mautner2c2549c2013-11-12 08:31:15 -080043
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070044import java.io.PrintWriter;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070045
Wale Ogunwalef6192862016-09-10 13:42:30 -070046class Task extends WindowContainer<AppWindowToken> implements DimLayer.DimLayerUser {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -080047 static final String TAG = TAG_WITH_CLASS_NAME ? "Task" : TAG_WM;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070048 // Return value from {@link setBounds} indicating no change was made to the Task bounds.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070049 private static final int BOUNDS_CHANGE_NONE = 0;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070050 // Return value from {@link setBounds} indicating the position of the Task bounds changed.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070051 private static final int BOUNDS_CHANGE_POSITION = 1;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070052 // Return value from {@link setBounds} indicating the size of the Task bounds changed.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070053 private static final int BOUNDS_CHANGE_SIZE = 1 << 1;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070054
Wale Ogunwalef6192862016-09-10 13:42:30 -070055 // TODO: Track parent marks like this in WindowContainer.
Craig Mautnerc00204b2013-03-05 15:02:14 -080056 TaskStack mStack;
Craig Mautner83162a92015-01-26 14:43:30 -080057 final int mTaskId;
Craig Mautnerac6f8432013-07-17 13:24:59 -070058 final int mUserId;
Wale Ogunwale3eadad72016-10-13 09:16:59 -070059 private boolean mDeferRemoval = false;
Craig Mautnere3119b72015-01-20 15:02:36 -080060 final WindowManagerService mService;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080061
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070062 // Content limits relative to the DisplayContent this sits in.
63 private Rect mBounds = new Rect();
Jorim Jaggi0429f352015-12-22 16:29:16 +010064 final Rect mPreparedFrozenBounds = new Rect();
Jorim Jaggi26c8c422016-05-09 19:57:25 -070065 final Configuration mPreparedFrozenMergedConfig = new Configuration();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070066
Jorim Jaggidc249c42015-12-15 14:57:31 -080067 // Bounds used to calculate the insets.
68 private final Rect mTempInsetBounds = new Rect();
69
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070070 // Device rotation as of the last time {@link #mBounds} was set.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070071 private int mRotation;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070072
73 // Whether mBounds is fullscreen
Wale Ogunwale5a2183d2016-09-19 12:26:13 -070074 private boolean mFillsParent = true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070075
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070076 // For comparison with DisplayContent bounds.
77 private Rect mTmpRect = new Rect();
78 // For handling display rotations.
79 private Rect mTmpRect2 = new Rect();
80
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080081 // Resize mode of the task. See {@link ActivityInfo#resizeMode}
82 private int mResizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -080083
Winson Chungd3395382016-12-13 11:49:09 -080084 // Whether the task supports picture-in-picture.
85 // See {@link ActivityInfo#FLAG_SUPPORTS_PICTURE_IN_PICTURE}
86 private boolean mSupportsPictureInPicture;
87
Chong Zhang3005e752015-09-18 18:46:28 -070088 // Whether the task is currently being drag-resized
89 private boolean mDragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +010090 private int mDragResizeMode;
Chong Zhang3005e752015-09-18 18:46:28 -070091
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080092 private boolean mHomeTask;
93
Jiaquan Hedd1e66f2016-06-15 15:15:12 -070094 // Whether this task is an on-top launcher task, which is determined by the root activity.
95 private boolean mIsOnTopLauncher;
96
Jorim Jaggi829b9cd2017-01-23 16:20:53 +010097 private TaskDescription mTaskDescription;
98
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -070099 Task(int taskId, TaskStack stack, int userId, WindowManagerService service, Rect bounds,
Winson Chungd3395382016-12-13 11:49:09 -0800100 Configuration overrideConfig, boolean isOnTopLauncher, int resizeMode,
101 boolean supportsPictureInPicture, boolean homeTask, TaskDescription taskDescription,
102 TaskWindowContainerController controller) {
Craig Mautner83162a92015-01-26 14:43:30 -0800103 mTaskId = taskId;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800104 mStack = stack;
Craig Mautnerac6f8432013-07-17 13:24:59 -0700105 mUserId = userId;
Craig Mautnere3119b72015-01-20 15:02:36 -0800106 mService = service;
Jiaquan Hedd1e66f2016-06-15 15:15:12 -0700107 mIsOnTopLauncher = isOnTopLauncher;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800108 mResizeMode = resizeMode;
Winson Chungd3395382016-12-13 11:49:09 -0800109 mSupportsPictureInPicture = supportsPictureInPicture;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800110 mHomeTask = homeTask;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800111 setController(controller);
Andrii Kulian8072d112016-09-16 11:11:01 -0700112 setBounds(bounds, overrideConfig);
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100113 mTaskDescription = taskDescription;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800114 }
115
116 DisplayContent getDisplayContent() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800117 return mStack != null ? mStack.getDisplayContent() : null;
118 }
119
120 int getAdjustedAddPosition(int suggestedPosition) {
121 final int size = mChildren.size();
122 if (suggestedPosition >= size) {
123 return Math.min(size, suggestedPosition);
124 }
125
126 for (int pos = 0; pos < size && pos < suggestedPosition; ++pos) {
127 // TODO: Confirm that this is the behavior we want long term.
128 if (mChildren.get(pos).removed) {
129 // suggestedPosition assumes removed tokens are actually gone.
130 ++suggestedPosition;
131 }
132 }
133 return Math.min(size, suggestedPosition);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800134 }
135
Wale Ogunwale72919d22016-12-08 18:58:50 -0800136 @Override
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800137 void addChild(AppWindowToken wtoken, int position) {
138 position = getAdjustedAddPosition(position);
139 super.addChild(wtoken, position);
Craig Mautner83162a92015-01-26 14:43:30 -0800140 wtoken.mTask = this;
Craig Mautner42bf39e2014-02-21 16:46:22 -0800141 mDeferRemoval = false;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800142 }
143
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800144 @Override
145 void positionChildAt(int position, AppWindowToken child, boolean includingParents) {
146 position = getAdjustedAddPosition(position);
147 super.positionChildAt(position, child, includingParents);
148 mDeferRemoval = false;
149 }
150
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700151 private boolean hasWindowsAlive() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700152 for (int i = mChildren.size() - 1; i >= 0; i--) {
153 if (mChildren.get(i).hasWindowsAlive()) {
Chong Zhang7e8eeb72016-01-06 19:14:47 -0800154 return true;
155 }
156 }
157 return false;
158 }
159
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800160 @VisibleForTesting
161 boolean shouldDeferRemoval() {
162 return hasWindowsAlive() && mStack.isAnimating();
163 }
164
Wale Ogunwalef6192862016-09-10 13:42:30 -0700165 @Override
166 void removeIfPossible() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800167 if (shouldDeferRemoval()) {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800168 if (DEBUG_STACK) Slog.i(TAG, "removeTask: deferring removing taskId=" + mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800169 mDeferRemoval = true;
170 return;
171 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800172 removeImmediately();
173 }
174
175 @Override
176 void removeImmediately() {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800177 if (DEBUG_STACK) Slog.i(TAG, "removeTask: removing taskId=" + mTaskId);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800178 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeTask");
Craig Mautnere3119b72015-01-20 15:02:36 -0800179 mDeferRemoval = false;
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800180
181 // Make sure to remove dim layer user first before removing task its from parent.
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700182 DisplayContent content = getDisplayContent();
183 if (content != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800184 content.mDimLayerController.removeDimLayerUser(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700185 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800186
187 super.removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800188 }
189
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800190 void reparent(TaskStack stack, int position) {
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800191 if (stack == mStack) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800192 throw new IllegalArgumentException(
193 "task=" + this + " already child of stack=" + mStack);
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800194 }
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800195 if (DEBUG_STACK) Slog.i(TAG, "reParentTask: removing taskId=" + mTaskId
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800196 + " from stack=" + mStack);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800197 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "reParentTask");
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -0800198 final DisplayContent prevDisplayContent = getDisplayContent();
199
Andrii Kulian441e4492016-09-29 15:25:00 -0700200 getParent().removeChild(this);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800201 stack.addTask(this, position, showForAllUsers(), false /* moveParents */);
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -0800202
203 // Relayout display(s).
204 final DisplayContent displayContent = stack.getDisplayContent();
205 displayContent.setLayoutNeeded();
206 if (prevDisplayContent != displayContent) {
207 onDisplayChanged(displayContent);
208 prevDisplayContent.setLayoutNeeded();
209 }
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800210 }
211
Andrii Kuliand2765632016-12-12 22:26:34 -0800212 /** @see com.android.server.am.ActivityManagerService#positionTaskInStack(int, int, int). */
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800213 void positionAt(int position, Rect bounds, Configuration overrideConfig) {
214 mStack.positionChildAt(position, this, false /* includingParents */);
Andrii Kulian1779e612016-10-12 21:58:25 -0700215 resizeLocked(bounds, overrideConfig, false /* force */);
Jorim Jaggi5e6968d2016-02-19 18:02:13 -0800216
Wale Ogunwalef6192862016-09-10 13:42:30 -0700217 for (int activityNdx = mChildren.size() - 1; activityNdx >= 0; --activityNdx) {
218 mChildren.get(activityNdx).notifyMovedInStack();
Jorim Jaggi5e6968d2016-02-19 18:02:13 -0800219 }
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700220 }
221
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700222 @Override
Andrii Kuliand2765632016-12-12 22:26:34 -0800223 void onParentSet() {
224 // Update task bounds if needed.
225 updateDisplayInfo(getDisplayContent());
226
227 if (StackId.windowsAreScaleable(mStack.mStackId)) {
228 // We force windows out of SCALING_MODE_FREEZE so that we can continue to animate them
229 // while a resize is pending.
230 forceWindowsScaleable(true /* force */);
231 } else {
232 forceWindowsScaleable(false /* force */);
233 }
234 }
235
236 @Override
Wale Ogunwalef6192862016-09-10 13:42:30 -0700237 void removeChild(AppWindowToken token) {
238 if (!mChildren.contains(token)) {
239 Slog.e(TAG, "removeChild: token=" + this + " not found.");
240 return;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700241 }
242
Wale Ogunwalef6192862016-09-10 13:42:30 -0700243 super.removeChild(token);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700244
Wale Ogunwalef6192862016-09-10 13:42:30 -0700245 if (mChildren.isEmpty()) {
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800246 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeAppToken: last token");
Craig Mautnere3119b72015-01-20 15:02:36 -0800247 if (mDeferRemoval) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700248 removeIfPossible();
Craig Mautnere3119b72015-01-20 15:02:36 -0800249 }
Craig Mautnerc00204b2013-03-05 15:02:14 -0800250 }
Wale Ogunwalef6192862016-09-10 13:42:30 -0700251 token.mTask = null;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800252 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800253
Craig Mautnercbd84af2014-10-22 13:21:22 -0700254 void setSendingToBottom(boolean toBottom) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700255 for (int appTokenNdx = 0; appTokenNdx < mChildren.size(); appTokenNdx++) {
256 mChildren.get(appTokenNdx).sendingToBottom = toBottom;
Craig Mautnercbd84af2014-10-22 13:21:22 -0700257 }
258 }
259
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700260 /** Set the task bounds. Passing in null sets the bounds to fullscreen. */
Andrii Kulian8072d112016-09-16 11:11:01 -0700261 private int setBounds(Rect bounds, Configuration overrideConfig) {
262 if (overrideConfig == null) {
263 overrideConfig = Configuration.EMPTY;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700264 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700265 if (bounds == null && !Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700266 throw new IllegalArgumentException("null bounds but non empty configuration: "
Andrii Kulian8072d112016-09-16 11:11:01 -0700267 + overrideConfig);
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700268 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700269 if (bounds != null && Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700270 throw new IllegalArgumentException("non null bounds, but empty configuration");
271 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700272 boolean oldFullscreen = mFillsParent;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700273 int rotation = Surface.ROTATION_0;
274 final DisplayContent displayContent = mStack.getDisplayContent();
275 if (displayContent != null) {
276 displayContent.getLogicalDisplayRect(mTmpRect);
277 rotation = displayContent.getDisplayInfo().rotation;
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700278 mFillsParent = bounds == null;
279 if (mFillsParent) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700280 bounds = mTmpRect;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700281 }
282 }
283
284 if (bounds == null) {
285 // Can't set to fullscreen if we don't have a display to get bounds from...
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700286 return BOUNDS_CHANGE_NONE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700287 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700288 if (mBounds.equals(bounds) && oldFullscreen == mFillsParent && mRotation == rotation) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700289 return BOUNDS_CHANGE_NONE;
290 }
291
292 int boundsChange = BOUNDS_CHANGE_NONE;
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700293 if (mBounds.left != bounds.left || mBounds.top != bounds.top) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700294 boundsChange |= BOUNDS_CHANGE_POSITION;
295 }
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700296 if (mBounds.width() != bounds.width() || mBounds.height() != bounds.height()) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700297 boundsChange |= BOUNDS_CHANGE_SIZE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700298 }
299
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700300 mBounds.set(bounds);
Chong Zhangf66db432016-01-13 10:39:51 -0800301
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700302 mRotation = rotation;
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700303 if (displayContent != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800304 displayContent.mDimLayerController.updateDimLayer(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700305 }
Andrii Kulian441e4492016-09-29 15:25:00 -0700306 onOverrideConfigurationChanged(mFillsParent ? Configuration.EMPTY : overrideConfig);
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700307 return boundsChange;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700308 }
309
Jorim Jaggidc249c42015-12-15 14:57:31 -0800310 /**
311 * Sets the bounds used to calculate the insets. See
312 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
313 */
314 void setTempInsetBounds(Rect tempInsetBounds) {
315 if (tempInsetBounds != null) {
316 mTempInsetBounds.set(tempInsetBounds);
317 } else {
318 mTempInsetBounds.setEmpty();
319 }
320 }
321
322 /**
323 * Gets the bounds used to calculate the insets. See
324 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
325 */
326 void getTempInsetBounds(Rect out) {
327 out.set(mTempInsetBounds);
328 }
329
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800330 void setResizeable(int resizeMode) {
331 mResizeMode = resizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -0800332 }
333
334 boolean isResizeable() {
Winson Chungd3395382016-12-13 11:49:09 -0800335 return ActivityInfo.isResizeableMode(mResizeMode) || mSupportsPictureInPicture
336 || mService.mForceResizableTasks;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800337 }
338
skuhne@google.com322347b2016-12-02 12:54:03 -0800339 /**
340 * Tests if the orientation should be preserved upon user interactive resizig operations.
341
342 * @return true if orientation should not get changed upon resizing operation.
343 */
344 boolean preserveOrientationOnResize() {
345 return mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY
346 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY
347 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
348 }
349
Jiaquan Hedd1e66f2016-06-15 15:15:12 -0700350 boolean isOnTopLauncher() {
351 return mIsOnTopLauncher;
352 }
353
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800354 boolean cropWindowsToStackBounds() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700355 return isResizeable();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800356 }
357
Jorim Jaggi42625d1b2016-02-11 20:11:07 -0800358 boolean isHomeTask() {
359 return mHomeTask;
360 }
361
Andrii Kulian8072d112016-09-16 11:11:01 -0700362 boolean resizeLocked(Rect bounds, Configuration overrideConfig, boolean forced) {
363 int boundsChanged = setBounds(bounds, overrideConfig);
Chong Zhang87b21722015-09-21 15:39:51 -0700364 if (forced) {
Chong Zhang3005e752015-09-18 18:46:28 -0700365 boundsChanged |= BOUNDS_CHANGE_SIZE;
Chong Zhang3005e752015-09-18 18:46:28 -0700366 }
367 if (boundsChanged == BOUNDS_CHANGE_NONE) {
368 return false;
369 }
370 if ((boundsChanged & BOUNDS_CHANGE_SIZE) == BOUNDS_CHANGE_SIZE) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700371 onResize();
Chong Zhangbd0d9372015-12-28 15:18:29 -0800372 } else {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700373 onMovedByResize();
Chong Zhang3005e752015-09-18 18:46:28 -0700374 }
375 return true;
376 }
377
Jorim Jaggi0429f352015-12-22 16:29:16 +0100378 /**
379 * Prepares the task bounds to be frozen with the current size. See
380 * {@link AppWindowToken#freezeBounds}.
381 */
382 void prepareFreezingBounds() {
383 mPreparedFrozenBounds.set(mBounds);
Andrii Kulian441e4492016-09-29 15:25:00 -0700384 mPreparedFrozenMergedConfig.setTo(getConfiguration());
Jorim Jaggi0429f352015-12-22 16:29:16 +0100385 }
386
Chong Zhang5117e272016-05-03 12:47:34 -0700387 /**
388 * Align the task to the adjusted bounds.
389 *
390 * @param adjustedBounds Adjusted bounds to which the task should be aligned.
391 * @param tempInsetBounds Insets bounds for the task.
392 * @param alignBottom True if the task's bottom should be aligned to the adjusted
393 * bounds's bottom; false if the task's top should be aligned
394 * the adjusted bounds's top.
395 */
Andrii Kulian441e4492016-09-29 15:25:00 -0700396 void alignToAdjustedBounds(Rect adjustedBounds, Rect tempInsetBounds, boolean alignBottom) {
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700397 // Task override config might be empty, while display or stack override config isn't, so
398 // we have to check merged override config here.
399 if (!isResizeable() || Configuration.EMPTY.equals(getMergedOverrideConfiguration())) {
Chong Zhang5117e272016-05-03 12:47:34 -0700400 return;
401 }
402
403 getBounds(mTmpRect2);
404 if (alignBottom) {
405 int offsetY = adjustedBounds.bottom - mTmpRect2.bottom;
406 mTmpRect2.offset(0, offsetY);
407 } else {
408 mTmpRect2.offsetTo(adjustedBounds.left, adjustedBounds.top);
409 }
410 setTempInsetBounds(tempInsetBounds);
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700411 resizeLocked(mTmpRect2, getOverrideConfiguration(), false /* forced */);
Chong Zhang5117e272016-05-03 12:47:34 -0700412 }
413
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700414 /** Return true if the current bound can get outputted to the rest of the system as-is. */
415 private boolean useCurrentBounds() {
416 final DisplayContent displayContent = mStack.getDisplayContent();
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700417 return mFillsParent
Wale Ogunwale3797c222015-10-27 14:21:58 -0700418 || !StackId.isTaskResizeableByDockedStack(mStack.mStackId)
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700419 || displayContent == null
Jorim Jaggife762342016-10-13 14:33:27 +0200420 || displayContent.getDockedStackIgnoringVisibility() != null;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700421 }
422
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800423 /** Original bounds of the task if applicable, otherwise fullscreen rect. */
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800424 void getBounds(Rect out) {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700425 if (useCurrentBounds()) {
426 // No need to adjust the output bounds if fullscreen or the docked stack is visible
427 // since it is already what we want to represent to the rest of the system.
428 out.set(mBounds);
429 return;
430 }
431
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800432 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
433 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700434 mStack.getDisplayContent().getLogicalDisplayRect(out);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700435 }
436
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800437 /**
438 * Calculate the maximum visible area of this task. If the task has only one app,
439 * the result will be visible frame of that app. If the task has more than one apps,
440 * we search from top down if the next app got different visible area.
441 *
442 * This effort is to handle the case where some task (eg. GMail composer) might pop up
443 * a dialog that's different in size from the activity below, in which case we should
444 * be dimming the entire task area behind the dialog.
445 *
446 * @param out Rect containing the max visible bounds.
447 * @return true if the task has some visible app windows; false otherwise.
448 */
449 boolean getMaxVisibleBounds(Rect out) {
450 boolean foundTop = false;
Wale Ogunwalef6192862016-09-10 13:42:30 -0700451 for (int i = mChildren.size() - 1; i >= 0; i--) {
452 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800453 // skip hidden (or about to hide) apps
454 if (token.mIsExiting || token.clientHidden || token.hiddenRequested) {
455 continue;
456 }
457 final WindowState win = token.findMainWindow();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800458 if (win == null) {
459 continue;
460 }
461 if (!foundTop) {
462 out.set(win.mVisibleFrame);
463 foundTop = true;
464 continue;
465 }
466 if (win.mVisibleFrame.left < out.left) {
467 out.left = win.mVisibleFrame.left;
468 }
469 if (win.mVisibleFrame.top < out.top) {
470 out.top = win.mVisibleFrame.top;
471 }
472 if (win.mVisibleFrame.right > out.right) {
473 out.right = win.mVisibleFrame.right;
474 }
475 if (win.mVisibleFrame.bottom > out.bottom) {
476 out.bottom = win.mVisibleFrame.bottom;
477 }
478 }
479 return foundTop;
480 }
481
482 /** Bounds of the task to be used for dimming, as well as touch related tests. */
483 @Override
484 public void getDimBounds(Rect out) {
Robert Carra86a6bf2016-04-08 17:34:16 -0700485 final DisplayContent displayContent = mStack.getDisplayContent();
486 // It doesn't matter if we in particular are part of the resize, since we couldn't have
487 // a DimLayer anyway if we weren't visible.
Wale Ogunwalef6192862016-09-10 13:42:30 -0700488 final boolean dockedResizing = displayContent != null
489 && displayContent.mDividerControllerLocked.isResizing();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800490 if (useCurrentBounds()) {
491 if (inFreeformWorkspace() && getMaxVisibleBounds(out)) {
492 return;
493 }
494
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700495 if (!mFillsParent) {
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700496 // When minimizing the docked stack when going home, we don't adjust the task bounds
497 // so we need to intersect the task bounds with the stack bounds here.
Robert Carra86a6bf2016-04-08 17:34:16 -0700498 //
499 // If we are Docked Resizing with snap points, the task bounds could be smaller than the stack
500 // bounds and so we don't even want to use them. Even if the app should not be resized the Dim
501 // should keep up with the divider.
502 if (dockedResizing) {
503 mStack.getBounds(out);
504 } else {
505 mStack.getBounds(mTmpRect);
506 mTmpRect.intersect(mBounds);
507 }
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700508 out.set(mTmpRect);
509 } else {
510 out.set(mBounds);
511 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800512 return;
513 }
514
Wale Ogunwalef6192862016-09-10 13:42:30 -0700515 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
516 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
517 if (displayContent != null) {
518 displayContent.getLogicalDisplayRect(out);
519 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800520 }
521
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100522 void setDragResizing(boolean dragResizing, int dragResizeMode) {
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800523 if (mDragResizing != dragResizing) {
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100524 if (!DragResizeMode.isModeAllowedForStack(mStack.mStackId, dragResizeMode)) {
525 throw new IllegalArgumentException("Drag resize mode not allow for stack stackId="
526 + mStack.mStackId + " dragResizeMode=" + dragResizeMode);
527 }
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800528 mDragResizing = dragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100529 mDragResizeMode = dragResizeMode;
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800530 resetDragResizingChangeReported();
531 }
532 }
533
Chong Zhang3005e752015-09-18 18:46:28 -0700534 boolean isDragResizing() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700535 return mDragResizing;
Chong Zhang3005e752015-09-18 18:46:28 -0700536 }
537
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100538 int getDragResizeMode() {
539 return mDragResizeMode;
540 }
541
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700542 void updateDisplayInfo(final DisplayContent displayContent) {
543 if (displayContent == null) {
544 return;
545 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700546 if (mFillsParent) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700547 setBounds(null, Configuration.EMPTY);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700548 return;
549 }
550 final int newRotation = displayContent.getDisplayInfo().rotation;
551 if (mRotation == newRotation) {
552 return;
553 }
554
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800555 // Device rotation changed.
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700556 // - We don't want the task to move around on the screen when this happens, so update the
557 // task bounds so it stays in the same place.
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800558 // - Rotate the bounds and notify activity manager if the task can be resized independently
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700559 // from its stack. The stack will take care of task rotation for the other case.
560 mTmpRect2.set(mBounds);
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800561
562 if (!StackId.isTaskResizeAllowed(mStack.mStackId)) {
Andrii Kulian441e4492016-09-29 15:25:00 -0700563 setBounds(mTmpRect2, getOverrideConfiguration());
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800564 return;
565 }
566
Wale Ogunwale94744212015-09-21 19:01:47 -0700567 displayContent.rotateBounds(mRotation, newRotation, mTmpRect2);
Andrii Kulian441e4492016-09-29 15:25:00 -0700568 if (setBounds(mTmpRect2, getOverrideConfiguration()) != BOUNDS_CHANGE_NONE) {
Wale Ogunwale1666e312016-12-16 11:27:18 -0800569 final TaskWindowContainerController controller = getController();
570 if (controller != null) {
571 controller.requestResize(mBounds, RESIZE_MODE_SYSTEM_SCREEN_ROTATION);
572 }
Wale Ogunwale1ed0d892015-09-28 13:27:44 -0700573 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700574 }
575
Wale Ogunwalef6192862016-09-10 13:42:30 -0700576 /** Cancels any running app transitions associated with the task. */
Winsonc28098f2015-10-30 14:50:19 -0700577 void cancelTaskWindowTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700578 for (int i = mChildren.size() - 1; i >= 0; --i) {
579 mChildren.get(i).mAppAnimator.clearAnimation();
Winsonc28098f2015-10-30 14:50:19 -0700580 }
581 }
582
Wale Ogunwalef6192862016-09-10 13:42:30 -0700583 /** Cancels any running thumbnail transitions associated with the task. */
Winson13d30662015-11-06 15:30:29 -0800584 void cancelTaskThumbnailTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700585 for (int i = mChildren.size() - 1; i >= 0; --i) {
586 mChildren.get(i).mAppAnimator.clearThumbnail();
Winson13d30662015-11-06 15:30:29 -0800587 }
588 }
589
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700590 boolean showForAllUsers() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700591 final int tokensCount = mChildren.size();
Wale Ogunwale72919d22016-12-08 18:58:50 -0800592 return (tokensCount != 0) && mChildren.get(tokensCount - 1).mShowForAllUsers;
Jorim Jaggiff71d202016-04-14 13:12:36 -0700593 }
594
Chong Zhang09b21ef2015-09-14 10:20:21 -0700595 boolean inFreeformWorkspace() {
596 return mStack != null && mStack.mStackId == FREEFORM_WORKSPACE_STACK_ID;
597 }
598
Robert Carr03138452016-05-18 14:53:16 -0700599 boolean inPinnedWorkspace() {
600 return mStack != null && mStack.mStackId == PINNED_STACK_ID;
601 }
602
Robert Carre6275582016-02-29 15:45:45 -0800603 boolean isFloating() {
604 return StackId.tasksAreFloating(mStack.mStackId);
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
Chong Zhangd8ceb852015-11-11 14:53:41 -0800612 AppWindowToken getTopVisibleAppToken() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700613 for (int i = mChildren.size() - 1; i >= 0; i--) {
614 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800615 // skip hidden (or about to hide) apps
616 if (!token.mIsExiting && !token.clientHidden && !token.hiddenRequested) {
617 return token;
618 }
619 }
620 return null;
Chong Zhangbef461f2015-10-27 11:38:24 -0700621 }
622
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800623 @Override
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700624 public boolean dimFullscreen() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700625 return isFullscreen();
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700626 }
627
628 boolean isFullscreen() {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700629 if (useCurrentBounds()) {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700630 return mFillsParent;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700631 }
632 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
633 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
634 // system.
635 return true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700636 }
637
638 @Override
639 public DisplayInfo getDisplayInfo() {
Wale Ogunwalef0a60a92017-01-19 09:44:40 -0800640 return getDisplayContent().getDisplayInfo();
641 }
642
643 @Override
644 public boolean isAttachedToDisplay() {
645 return getDisplayContent() != null;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700646 }
647
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700648 void forceWindowsScaleable(boolean force) {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700649 mService.openSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700650 try {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700651 for (int i = mChildren.size() - 1; i >= 0; i--) {
652 mChildren.get(i).forceWindowsScaleableInTransaction(force);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700653 }
654 } finally {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700655 mService.closeSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700656 }
657 }
658
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100659 void setTaskDescription(TaskDescription taskDescription) {
660 mTaskDescription = taskDescription;
661 }
662
663 TaskDescription getTaskDescription() {
664 return mTaskDescription;
665 }
666
Wale Ogunwalef6192862016-09-10 13:42:30 -0700667 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -0700668 boolean fillsParent() {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700669 return mFillsParent || !StackId.isTaskResizeAllowed(mStack.mStackId);
Wale Ogunwale51362492016-09-08 17:49:17 -0700670 }
671
Jorim Jaggi329a5832017-01-05 18:57:12 +0100672 @Override
Jorim Jaggifb9d78a2017-01-05 18:57:12 +0100673 TaskWindowContainerController getController() {
674 return (TaskWindowContainerController) super.getController();
675 }
676
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700677 @Override
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800678 public String toString() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700679 return "{taskId=" + mTaskId + " appTokens=" + mChildren + " mdr=" + mDeferRemoval + "}";
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800680 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700681
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700682 String getName() {
683 return toShortString();
684 }
685
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700686 @Override
687 public String toShortString() {
688 return "Task=" + mTaskId;
689 }
690
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800691 public void dump(String prefix, PrintWriter pw) {
692 final String doublePrefix = prefix + " ";
693
694 pw.println(prefix + "taskId=" + mTaskId);
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700695 pw.println(doublePrefix + "mFillsParent=" + mFillsParent);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800696 pw.println(doublePrefix + "mBounds=" + mBounds.toShortString());
697 pw.println(doublePrefix + "mdr=" + mDeferRemoval);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700698 pw.println(doublePrefix + "appTokens=" + mChildren);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800699 pw.println(doublePrefix + "mTempInsetBounds=" + mTempInsetBounds.toShortString());
700
701 final String triplePrefix = doublePrefix + " ";
702
Wale Ogunwalef6192862016-09-10 13:42:30 -0700703 for (int i = mChildren.size() - 1; i >= 0; i--) {
704 final AppWindowToken wtoken = mChildren.get(i);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800705 pw.println(triplePrefix + "Activity #" + i + " " + wtoken);
706 wtoken.dump(pw, triplePrefix);
707 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700708 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800709}