blob: 2d50e3a502b498e9680cff567e8dd418015ef76c [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 Ogunwale1ed0d892015-09-28 13:27:44 -070030import static com.android.server.wm.WindowManagerService.H.RESIZE_TASK;
Wale Ogunwale99db1862015-10-23 20:08:22 -070031
Wale Ogunwale3797c222015-10-27 14:21:58 -070032import android.app.ActivityManager.StackId;
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
Chong Zhang3005e752015-09-18 18:46:28 -070084 // Whether the task is currently being drag-resized
85 private boolean mDragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +010086 private int mDragResizeMode;
Chong Zhang3005e752015-09-18 18:46:28 -070087
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080088 private boolean mHomeTask;
89
Jiaquan Hedd1e66f2016-06-15 15:15:12 -070090 // Whether this task is an on-top launcher task, which is determined by the root activity.
91 private boolean mIsOnTopLauncher;
92
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -070093 Task(int taskId, TaskStack stack, int userId, WindowManagerService service, Rect bounds,
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080094 Configuration overrideConfig, boolean isOnTopLauncher, int resizeMode, boolean homeTask,
95 TaskWindowContainerController controller) {
Craig Mautner83162a92015-01-26 14:43:30 -080096 mTaskId = taskId;
Craig Mautnerc00204b2013-03-05 15:02:14 -080097 mStack = stack;
Craig Mautnerac6f8432013-07-17 13:24:59 -070098 mUserId = userId;
Craig Mautnere3119b72015-01-20 15:02:36 -080099 mService = service;
Jiaquan Hedd1e66f2016-06-15 15:15:12 -0700100 mIsOnTopLauncher = isOnTopLauncher;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800101 mResizeMode = resizeMode;
102 mHomeTask = homeTask;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800103 setController(controller);
Andrii Kulian8072d112016-09-16 11:11:01 -0700104 setBounds(bounds, overrideConfig);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800105 }
106
107 DisplayContent getDisplayContent() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800108 return mStack != null ? mStack.getDisplayContent() : null;
109 }
110
111 int getAdjustedAddPosition(int suggestedPosition) {
112 final int size = mChildren.size();
113 if (suggestedPosition >= size) {
114 return Math.min(size, suggestedPosition);
115 }
116
117 for (int pos = 0; pos < size && pos < suggestedPosition; ++pos) {
118 // TODO: Confirm that this is the behavior we want long term.
119 if (mChildren.get(pos).removed) {
120 // suggestedPosition assumes removed tokens are actually gone.
121 ++suggestedPosition;
122 }
123 }
124 return Math.min(size, suggestedPosition);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800125 }
126
Wale Ogunwale72919d22016-12-08 18:58:50 -0800127 @Override
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800128 void addChild(AppWindowToken wtoken, int position) {
129 position = getAdjustedAddPosition(position);
130 super.addChild(wtoken, position);
Craig Mautner83162a92015-01-26 14:43:30 -0800131 wtoken.mTask = this;
Craig Mautner42bf39e2014-02-21 16:46:22 -0800132 mDeferRemoval = false;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800133 }
134
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800135 @Override
136 void positionChildAt(int position, AppWindowToken child, boolean includingParents) {
137 position = getAdjustedAddPosition(position);
138 super.positionChildAt(position, child, includingParents);
139 mDeferRemoval = false;
140 }
141
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700142 private boolean hasWindowsAlive() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700143 for (int i = mChildren.size() - 1; i >= 0; i--) {
144 if (mChildren.get(i).hasWindowsAlive()) {
Chong Zhang7e8eeb72016-01-06 19:14:47 -0800145 return true;
146 }
147 }
148 return false;
149 }
150
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800151 @VisibleForTesting
152 boolean shouldDeferRemoval() {
153 return hasWindowsAlive() && mStack.isAnimating();
154 }
155
Wale Ogunwalef6192862016-09-10 13:42:30 -0700156 @Override
157 void removeIfPossible() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800158 if (shouldDeferRemoval()) {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800159 if (DEBUG_STACK) Slog.i(TAG, "removeTask: deferring removing taskId=" + mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800160 mDeferRemoval = true;
161 return;
162 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800163 removeImmediately();
164 }
165
166 @Override
167 void removeImmediately() {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800168 if (DEBUG_STACK) Slog.i(TAG, "removeTask: removing taskId=" + mTaskId);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800169 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeTask");
Craig Mautnere3119b72015-01-20 15:02:36 -0800170 mDeferRemoval = false;
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800171
172 // Make sure to remove dim layer user first before removing task its from parent.
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700173 DisplayContent content = getDisplayContent();
174 if (content != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800175 content.mDimLayerController.removeDimLayerUser(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700176 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800177
178 super.removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800179 }
180
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800181 void reparent(TaskStack stack, int position) {
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800182 if (stack == mStack) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800183 throw new IllegalArgumentException(
184 "task=" + this + " already child of stack=" + mStack);
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800185 }
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800186 if (DEBUG_STACK) Slog.i(TAG, "reParentTask: removing taskId=" + mTaskId
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800187 + " from stack=" + mStack);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800188 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "reParentTask");
Andrii Kulian441e4492016-09-29 15:25:00 -0700189 getParent().removeChild(this);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800190 stack.addTask(this, position, showForAllUsers(), false /* moveParents */);
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800191 }
192
Andrii Kuliand2765632016-12-12 22:26:34 -0800193 /** @see com.android.server.am.ActivityManagerService#positionTaskInStack(int, int, int). */
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800194 void positionAt(int position, Rect bounds, Configuration overrideConfig) {
195 mStack.positionChildAt(position, this, false /* includingParents */);
Andrii Kulian1779e612016-10-12 21:58:25 -0700196 resizeLocked(bounds, overrideConfig, false /* force */);
Jorim Jaggi5e6968d2016-02-19 18:02:13 -0800197
Wale Ogunwalef6192862016-09-10 13:42:30 -0700198 for (int activityNdx = mChildren.size() - 1; activityNdx >= 0; --activityNdx) {
199 mChildren.get(activityNdx).notifyMovedInStack();
Jorim Jaggi5e6968d2016-02-19 18:02:13 -0800200 }
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700201 }
202
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700203 @Override
Andrii Kuliand2765632016-12-12 22:26:34 -0800204 void onParentSet() {
205 // Update task bounds if needed.
206 updateDisplayInfo(getDisplayContent());
207
208 if (StackId.windowsAreScaleable(mStack.mStackId)) {
209 // We force windows out of SCALING_MODE_FREEZE so that we can continue to animate them
210 // while a resize is pending.
211 forceWindowsScaleable(true /* force */);
212 } else {
213 forceWindowsScaleable(false /* force */);
214 }
215 }
216
217 @Override
Wale Ogunwalef6192862016-09-10 13:42:30 -0700218 void removeChild(AppWindowToken token) {
219 if (!mChildren.contains(token)) {
220 Slog.e(TAG, "removeChild: token=" + this + " not found.");
221 return;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700222 }
223
Wale Ogunwalef6192862016-09-10 13:42:30 -0700224 super.removeChild(token);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700225
Wale Ogunwalef6192862016-09-10 13:42:30 -0700226 if (mChildren.isEmpty()) {
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800227 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeAppToken: last token");
Craig Mautnere3119b72015-01-20 15:02:36 -0800228 if (mDeferRemoval) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700229 removeIfPossible();
Craig Mautnere3119b72015-01-20 15:02:36 -0800230 }
Craig Mautnerc00204b2013-03-05 15:02:14 -0800231 }
Wale Ogunwalef6192862016-09-10 13:42:30 -0700232 token.mTask = null;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800233 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800234
Craig Mautnercbd84af2014-10-22 13:21:22 -0700235 void setSendingToBottom(boolean toBottom) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700236 for (int appTokenNdx = 0; appTokenNdx < mChildren.size(); appTokenNdx++) {
237 mChildren.get(appTokenNdx).sendingToBottom = toBottom;
Craig Mautnercbd84af2014-10-22 13:21:22 -0700238 }
239 }
240
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700241 /** Set the task bounds. Passing in null sets the bounds to fullscreen. */
Andrii Kulian8072d112016-09-16 11:11:01 -0700242 private int setBounds(Rect bounds, Configuration overrideConfig) {
243 if (overrideConfig == null) {
244 overrideConfig = Configuration.EMPTY;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700245 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700246 if (bounds == null && !Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700247 throw new IllegalArgumentException("null bounds but non empty configuration: "
Andrii Kulian8072d112016-09-16 11:11:01 -0700248 + overrideConfig);
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700249 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700250 if (bounds != null && Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700251 throw new IllegalArgumentException("non null bounds, but empty configuration");
252 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700253 boolean oldFullscreen = mFillsParent;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700254 int rotation = Surface.ROTATION_0;
255 final DisplayContent displayContent = mStack.getDisplayContent();
256 if (displayContent != null) {
257 displayContent.getLogicalDisplayRect(mTmpRect);
258 rotation = displayContent.getDisplayInfo().rotation;
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700259 mFillsParent = bounds == null;
260 if (mFillsParent) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700261 bounds = mTmpRect;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700262 }
263 }
264
265 if (bounds == null) {
266 // Can't set to fullscreen if we don't have a display to get bounds from...
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700267 return BOUNDS_CHANGE_NONE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700268 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700269 if (mBounds.equals(bounds) && oldFullscreen == mFillsParent && mRotation == rotation) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700270 return BOUNDS_CHANGE_NONE;
271 }
272
273 int boundsChange = BOUNDS_CHANGE_NONE;
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700274 if (mBounds.left != bounds.left || mBounds.top != bounds.top) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700275 boundsChange |= BOUNDS_CHANGE_POSITION;
276 }
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700277 if (mBounds.width() != bounds.width() || mBounds.height() != bounds.height()) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700278 boundsChange |= BOUNDS_CHANGE_SIZE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700279 }
280
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700281 mBounds.set(bounds);
Chong Zhangf66db432016-01-13 10:39:51 -0800282
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700283 mRotation = rotation;
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700284 if (displayContent != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800285 displayContent.mDimLayerController.updateDimLayer(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700286 }
Andrii Kulian441e4492016-09-29 15:25:00 -0700287 onOverrideConfigurationChanged(mFillsParent ? Configuration.EMPTY : overrideConfig);
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700288 return boundsChange;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700289 }
290
Jorim Jaggidc249c42015-12-15 14:57:31 -0800291 /**
292 * Sets the bounds used to calculate the insets. See
293 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
294 */
295 void setTempInsetBounds(Rect tempInsetBounds) {
296 if (tempInsetBounds != null) {
297 mTempInsetBounds.set(tempInsetBounds);
298 } else {
299 mTempInsetBounds.setEmpty();
300 }
301 }
302
303 /**
304 * Gets the bounds used to calculate the insets. See
305 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
306 */
307 void getTempInsetBounds(Rect out) {
308 out.set(mTempInsetBounds);
309 }
310
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800311 void setResizeable(int resizeMode) {
312 mResizeMode = resizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -0800313 }
314
315 boolean isResizeable() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700316 return ActivityInfo.isResizeableMode(mResizeMode) || mService.mForceResizableTasks;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800317 }
318
skuhne@google.com322347b2016-12-02 12:54:03 -0800319 /**
320 * Tests if the orientation should be preserved upon user interactive resizig operations.
321
322 * @return true if orientation should not get changed upon resizing operation.
323 */
324 boolean preserveOrientationOnResize() {
325 return mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY
326 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY
327 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
328 }
329
Jiaquan Hedd1e66f2016-06-15 15:15:12 -0700330 boolean isOnTopLauncher() {
331 return mIsOnTopLauncher;
332 }
333
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800334 boolean cropWindowsToStackBounds() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700335 return isResizeable();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800336 }
337
Jorim Jaggi42625d1b2016-02-11 20:11:07 -0800338 boolean isHomeTask() {
339 return mHomeTask;
340 }
341
Andrii Kulian8072d112016-09-16 11:11:01 -0700342 boolean resizeLocked(Rect bounds, Configuration overrideConfig, boolean forced) {
343 int boundsChanged = setBounds(bounds, overrideConfig);
Chong Zhang87b21722015-09-21 15:39:51 -0700344 if (forced) {
Chong Zhang3005e752015-09-18 18:46:28 -0700345 boundsChanged |= BOUNDS_CHANGE_SIZE;
Chong Zhang3005e752015-09-18 18:46:28 -0700346 }
347 if (boundsChanged == BOUNDS_CHANGE_NONE) {
348 return false;
349 }
350 if ((boundsChanged & BOUNDS_CHANGE_SIZE) == BOUNDS_CHANGE_SIZE) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700351 onResize();
Chong Zhangbd0d9372015-12-28 15:18:29 -0800352 } else {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700353 onMovedByResize();
Chong Zhang3005e752015-09-18 18:46:28 -0700354 }
355 return true;
356 }
357
Jorim Jaggi0429f352015-12-22 16:29:16 +0100358 /**
359 * Prepares the task bounds to be frozen with the current size. See
360 * {@link AppWindowToken#freezeBounds}.
361 */
362 void prepareFreezingBounds() {
363 mPreparedFrozenBounds.set(mBounds);
Andrii Kulian441e4492016-09-29 15:25:00 -0700364 mPreparedFrozenMergedConfig.setTo(getConfiguration());
Jorim Jaggi0429f352015-12-22 16:29:16 +0100365 }
366
Chong Zhang5117e272016-05-03 12:47:34 -0700367 /**
368 * Align the task to the adjusted bounds.
369 *
370 * @param adjustedBounds Adjusted bounds to which the task should be aligned.
371 * @param tempInsetBounds Insets bounds for the task.
372 * @param alignBottom True if the task's bottom should be aligned to the adjusted
373 * bounds's bottom; false if the task's top should be aligned
374 * the adjusted bounds's top.
375 */
Andrii Kulian441e4492016-09-29 15:25:00 -0700376 void alignToAdjustedBounds(Rect adjustedBounds, Rect tempInsetBounds, boolean alignBottom) {
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700377 // Task override config might be empty, while display or stack override config isn't, so
378 // we have to check merged override config here.
379 if (!isResizeable() || Configuration.EMPTY.equals(getMergedOverrideConfiguration())) {
Chong Zhang5117e272016-05-03 12:47:34 -0700380 return;
381 }
382
383 getBounds(mTmpRect2);
384 if (alignBottom) {
385 int offsetY = adjustedBounds.bottom - mTmpRect2.bottom;
386 mTmpRect2.offset(0, offsetY);
387 } else {
388 mTmpRect2.offsetTo(adjustedBounds.left, adjustedBounds.top);
389 }
390 setTempInsetBounds(tempInsetBounds);
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700391 resizeLocked(mTmpRect2, getOverrideConfiguration(), false /* forced */);
Chong Zhang5117e272016-05-03 12:47:34 -0700392 }
393
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700394 /** Return true if the current bound can get outputted to the rest of the system as-is. */
395 private boolean useCurrentBounds() {
396 final DisplayContent displayContent = mStack.getDisplayContent();
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700397 return mFillsParent
Wale Ogunwale3797c222015-10-27 14:21:58 -0700398 || !StackId.isTaskResizeableByDockedStack(mStack.mStackId)
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700399 || displayContent == null
Jorim Jaggife762342016-10-13 14:33:27 +0200400 || displayContent.getDockedStackIgnoringVisibility() != null;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700401 }
402
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800403 /** Original bounds of the task if applicable, otherwise fullscreen rect. */
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800404 void getBounds(Rect out) {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700405 if (useCurrentBounds()) {
406 // No need to adjust the output bounds if fullscreen or the docked stack is visible
407 // since it is already what we want to represent to the rest of the system.
408 out.set(mBounds);
409 return;
410 }
411
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800412 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
413 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700414 mStack.getDisplayContent().getLogicalDisplayRect(out);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700415 }
416
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800417 /**
418 * Calculate the maximum visible area of this task. If the task has only one app,
419 * the result will be visible frame of that app. If the task has more than one apps,
420 * we search from top down if the next app got different visible area.
421 *
422 * This effort is to handle the case where some task (eg. GMail composer) might pop up
423 * a dialog that's different in size from the activity below, in which case we should
424 * be dimming the entire task area behind the dialog.
425 *
426 * @param out Rect containing the max visible bounds.
427 * @return true if the task has some visible app windows; false otherwise.
428 */
429 boolean getMaxVisibleBounds(Rect out) {
430 boolean foundTop = false;
Wale Ogunwalef6192862016-09-10 13:42:30 -0700431 for (int i = mChildren.size() - 1; i >= 0; i--) {
432 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800433 // skip hidden (or about to hide) apps
434 if (token.mIsExiting || token.clientHidden || token.hiddenRequested) {
435 continue;
436 }
437 final WindowState win = token.findMainWindow();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800438 if (win == null) {
439 continue;
440 }
441 if (!foundTop) {
442 out.set(win.mVisibleFrame);
443 foundTop = true;
444 continue;
445 }
446 if (win.mVisibleFrame.left < out.left) {
447 out.left = win.mVisibleFrame.left;
448 }
449 if (win.mVisibleFrame.top < out.top) {
450 out.top = win.mVisibleFrame.top;
451 }
452 if (win.mVisibleFrame.right > out.right) {
453 out.right = win.mVisibleFrame.right;
454 }
455 if (win.mVisibleFrame.bottom > out.bottom) {
456 out.bottom = win.mVisibleFrame.bottom;
457 }
458 }
459 return foundTop;
460 }
461
462 /** Bounds of the task to be used for dimming, as well as touch related tests. */
463 @Override
464 public void getDimBounds(Rect out) {
Robert Carra86a6bf2016-04-08 17:34:16 -0700465 final DisplayContent displayContent = mStack.getDisplayContent();
466 // It doesn't matter if we in particular are part of the resize, since we couldn't have
467 // a DimLayer anyway if we weren't visible.
Wale Ogunwalef6192862016-09-10 13:42:30 -0700468 final boolean dockedResizing = displayContent != null
469 && displayContent.mDividerControllerLocked.isResizing();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800470 if (useCurrentBounds()) {
471 if (inFreeformWorkspace() && getMaxVisibleBounds(out)) {
472 return;
473 }
474
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700475 if (!mFillsParent) {
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700476 // When minimizing the docked stack when going home, we don't adjust the task bounds
477 // so we need to intersect the task bounds with the stack bounds here.
Robert Carra86a6bf2016-04-08 17:34:16 -0700478 //
479 // If we are Docked Resizing with snap points, the task bounds could be smaller than the stack
480 // bounds and so we don't even want to use them. Even if the app should not be resized the Dim
481 // should keep up with the divider.
482 if (dockedResizing) {
483 mStack.getBounds(out);
484 } else {
485 mStack.getBounds(mTmpRect);
486 mTmpRect.intersect(mBounds);
487 }
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700488 out.set(mTmpRect);
489 } else {
490 out.set(mBounds);
491 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800492 return;
493 }
494
Wale Ogunwalef6192862016-09-10 13:42:30 -0700495 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
496 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
497 if (displayContent != null) {
498 displayContent.getLogicalDisplayRect(out);
499 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800500 }
501
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100502 void setDragResizing(boolean dragResizing, int dragResizeMode) {
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800503 if (mDragResizing != dragResizing) {
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100504 if (!DragResizeMode.isModeAllowedForStack(mStack.mStackId, dragResizeMode)) {
505 throw new IllegalArgumentException("Drag resize mode not allow for stack stackId="
506 + mStack.mStackId + " dragResizeMode=" + dragResizeMode);
507 }
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800508 mDragResizing = dragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100509 mDragResizeMode = dragResizeMode;
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800510 resetDragResizingChangeReported();
511 }
512 }
513
Chong Zhang3005e752015-09-18 18:46:28 -0700514 boolean isDragResizing() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700515 return mDragResizing;
Chong Zhang3005e752015-09-18 18:46:28 -0700516 }
517
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100518 int getDragResizeMode() {
519 return mDragResizeMode;
520 }
521
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700522 void updateDisplayInfo(final DisplayContent displayContent) {
523 if (displayContent == null) {
524 return;
525 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700526 if (mFillsParent) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700527 setBounds(null, Configuration.EMPTY);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700528 return;
529 }
530 final int newRotation = displayContent.getDisplayInfo().rotation;
531 if (mRotation == newRotation) {
532 return;
533 }
534
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800535 // Device rotation changed.
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700536 // - We don't want the task to move around on the screen when this happens, so update the
537 // task bounds so it stays in the same place.
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800538 // - Rotate the bounds and notify activity manager if the task can be resized independently
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700539 // from its stack. The stack will take care of task rotation for the other case.
540 mTmpRect2.set(mBounds);
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800541
542 if (!StackId.isTaskResizeAllowed(mStack.mStackId)) {
Andrii Kulian441e4492016-09-29 15:25:00 -0700543 setBounds(mTmpRect2, getOverrideConfiguration());
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800544 return;
545 }
546
Wale Ogunwale94744212015-09-21 19:01:47 -0700547 displayContent.rotateBounds(mRotation, newRotation, mTmpRect2);
Andrii Kulian441e4492016-09-29 15:25:00 -0700548 if (setBounds(mTmpRect2, getOverrideConfiguration()) != BOUNDS_CHANGE_NONE) {
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800549 // Post message to inform activity manager of the bounds change simulating a one-way
550 // call. We do this to prevent a deadlock between window manager lock and activity
551 // manager lock been held.
552 mService.mH.obtainMessage(RESIZE_TASK, mTaskId,
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700553 RESIZE_MODE_SYSTEM_SCREEN_ROTATION, mBounds).sendToTarget();
Wale Ogunwale1ed0d892015-09-28 13:27:44 -0700554 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700555 }
556
Wale Ogunwalef6192862016-09-10 13:42:30 -0700557 /** Cancels any running app transitions associated with the task. */
Winsonc28098f2015-10-30 14:50:19 -0700558 void cancelTaskWindowTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700559 for (int i = mChildren.size() - 1; i >= 0; --i) {
560 mChildren.get(i).mAppAnimator.clearAnimation();
Winsonc28098f2015-10-30 14:50:19 -0700561 }
562 }
563
Wale Ogunwalef6192862016-09-10 13:42:30 -0700564 /** Cancels any running thumbnail transitions associated with the task. */
Winson13d30662015-11-06 15:30:29 -0800565 void cancelTaskThumbnailTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700566 for (int i = mChildren.size() - 1; i >= 0; --i) {
567 mChildren.get(i).mAppAnimator.clearThumbnail();
Winson13d30662015-11-06 15:30:29 -0800568 }
569 }
570
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700571 boolean showForAllUsers() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700572 final int tokensCount = mChildren.size();
Wale Ogunwale72919d22016-12-08 18:58:50 -0800573 return (tokensCount != 0) && mChildren.get(tokensCount - 1).mShowForAllUsers;
Jorim Jaggiff71d202016-04-14 13:12:36 -0700574 }
575
Chong Zhang09b21ef2015-09-14 10:20:21 -0700576 boolean inFreeformWorkspace() {
577 return mStack != null && mStack.mStackId == FREEFORM_WORKSPACE_STACK_ID;
578 }
579
Robert Carr03138452016-05-18 14:53:16 -0700580 boolean inPinnedWorkspace() {
581 return mStack != null && mStack.mStackId == PINNED_STACK_ID;
582 }
583
Robert Carre6275582016-02-29 15:45:45 -0800584 boolean isFloating() {
585 return StackId.tasksAreFloating(mStack.mStackId);
586 }
587
Chong Zhangd8ceb852015-11-11 14:53:41 -0800588 WindowState getTopVisibleAppMainWindow() {
589 final AppWindowToken token = getTopVisibleAppToken();
590 return token != null ? token.findMainWindow() : null;
Chong Zhang9184ec62015-09-24 12:32:21 -0700591 }
592
Chong Zhangd8ceb852015-11-11 14:53:41 -0800593 AppWindowToken getTopVisibleAppToken() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700594 for (int i = mChildren.size() - 1; i >= 0; i--) {
595 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800596 // skip hidden (or about to hide) apps
597 if (!token.mIsExiting && !token.clientHidden && !token.hiddenRequested) {
598 return token;
599 }
600 }
601 return null;
Chong Zhangbef461f2015-10-27 11:38:24 -0700602 }
603
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800604 @Override
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700605 public boolean dimFullscreen() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700606 return isFullscreen();
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700607 }
608
609 boolean isFullscreen() {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700610 if (useCurrentBounds()) {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700611 return mFillsParent;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700612 }
613 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
614 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
615 // system.
616 return true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700617 }
618
619 @Override
620 public DisplayInfo getDisplayInfo() {
621 return mStack.getDisplayContent().getDisplayInfo();
622 }
623
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700624 void forceWindowsScaleable(boolean force) {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700625 mService.openSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700626 try {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700627 for (int i = mChildren.size() - 1; i >= 0; i--) {
628 mChildren.get(i).forceWindowsScaleableInTransaction(force);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700629 }
630 } finally {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700631 mService.closeSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700632 }
633 }
634
Wale Ogunwalef6192862016-09-10 13:42:30 -0700635 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -0700636 boolean fillsParent() {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700637 return mFillsParent || !StackId.isTaskResizeAllowed(mStack.mStackId);
Wale Ogunwale51362492016-09-08 17:49:17 -0700638 }
639
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700640 @Override
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800641 public String toString() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700642 return "{taskId=" + mTaskId + " appTokens=" + mChildren + " mdr=" + mDeferRemoval + "}";
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800643 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700644
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700645 String getName() {
646 return toShortString();
647 }
648
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700649 @Override
650 public String toShortString() {
651 return "Task=" + mTaskId;
652 }
653
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800654 public void dump(String prefix, PrintWriter pw) {
655 final String doublePrefix = prefix + " ";
656
657 pw.println(prefix + "taskId=" + mTaskId);
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700658 pw.println(doublePrefix + "mFillsParent=" + mFillsParent);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800659 pw.println(doublePrefix + "mBounds=" + mBounds.toShortString());
660 pw.println(doublePrefix + "mdr=" + mDeferRemoval);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700661 pw.println(doublePrefix + "appTokens=" + mChildren);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800662 pw.println(doublePrefix + "mTempInsetBounds=" + mTempInsetBounds.toShortString());
663
664 final String triplePrefix = doublePrefix + " ";
665
Wale Ogunwalef6192862016-09-10 13:42:30 -0700666 for (int i = mChildren.size() - 1; i >= 0; i--) {
667 final AppWindowToken wtoken = mChildren.get(i);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800668 pw.println(triplePrefix + "Activity #" + i + " " + wtoken);
669 wtoken.dump(pw, triplePrefix);
670 }
671
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700672 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800673}