blob: aa6e3c7c3e4507e771462e27d44cacc82bf2b143 [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;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080025import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STACK;
Jorim Jaggid53f0922016-04-06 22:16:23 -070026import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
27import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Wale Ogunwale1ed0d892015-09-28 13:27:44 -070028import static com.android.server.wm.WindowManagerService.H.RESIZE_TASK;
Wale Ogunwale99db1862015-10-23 20:08:22 -070029
Wale Ogunwale3797c222015-10-27 14:21:58 -070030import android.app.ActivityManager.StackId;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080031import android.content.pm.ActivityInfo;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070032import android.content.res.Configuration;
33import android.graphics.Rect;
Craig Mautner2c2549c2013-11-12 08:31:15 -080034import android.util.EventLog;
Craig Mautner42bf39e2014-02-21 16:46:22 -080035import android.util.Slog;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070036import android.view.DisplayInfo;
37import android.view.Surface;
38
Craig Mautnere3119b72015-01-20 15:02:36 -080039import com.android.server.EventLogTags;
Craig Mautner2c2549c2013-11-12 08:31:15 -080040
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070041import java.io.PrintWriter;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070042
Wale Ogunwalef6192862016-09-10 13:42:30 -070043class Task extends WindowContainer<AppWindowToken> implements DimLayer.DimLayerUser {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -080044 static final String TAG = TAG_WITH_CLASS_NAME ? "Task" : TAG_WM;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070045 // Return value from {@link setBounds} indicating no change was made to the Task bounds.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070046 private static final int BOUNDS_CHANGE_NONE = 0;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070047 // Return value from {@link setBounds} indicating the position of the Task bounds changed.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070048 private static final int BOUNDS_CHANGE_POSITION = 1;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070049 // Return value from {@link setBounds} indicating the size of the Task bounds changed.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070050 private static final int BOUNDS_CHANGE_SIZE = 1 << 1;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070051
Wale Ogunwalef6192862016-09-10 13:42:30 -070052 // TODO: Track parent marks like this in WindowContainer.
Craig Mautnerc00204b2013-03-05 15:02:14 -080053 TaskStack mStack;
Craig Mautner83162a92015-01-26 14:43:30 -080054 final int mTaskId;
Craig Mautnerac6f8432013-07-17 13:24:59 -070055 final int mUserId;
Wale Ogunwale3eadad72016-10-13 09:16:59 -070056 private boolean mDeferRemoval = false;
Craig Mautnere3119b72015-01-20 15:02:36 -080057 final WindowManagerService mService;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080058
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070059 // Content limits relative to the DisplayContent this sits in.
60 private Rect mBounds = new Rect();
Jorim Jaggi0429f352015-12-22 16:29:16 +010061 final Rect mPreparedFrozenBounds = new Rect();
Jorim Jaggi26c8c422016-05-09 19:57:25 -070062 final Configuration mPreparedFrozenMergedConfig = new Configuration();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070063
Jorim Jaggidc249c42015-12-15 14:57:31 -080064 // Bounds used to calculate the insets.
65 private final Rect mTempInsetBounds = new Rect();
66
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070067 // Device rotation as of the last time {@link #mBounds} was set.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070068 private int mRotation;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070069
70 // Whether mBounds is fullscreen
Wale Ogunwale5a2183d2016-09-19 12:26:13 -070071 private boolean mFillsParent = true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070072
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070073 // For comparison with DisplayContent bounds.
74 private Rect mTmpRect = new Rect();
75 // For handling display rotations.
76 private Rect mTmpRect2 = new Rect();
77
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080078 // Resize mode of the task. See {@link ActivityInfo#resizeMode}
79 private int mResizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -080080
Chong Zhang3005e752015-09-18 18:46:28 -070081 // Whether the task is currently being drag-resized
82 private boolean mDragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +010083 private int mDragResizeMode;
Chong Zhang3005e752015-09-18 18:46:28 -070084
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080085 private boolean mHomeTask;
86
Jiaquan Hedd1e66f2016-06-15 15:15:12 -070087 // Whether this task is an on-top launcher task, which is determined by the root activity.
88 private boolean mIsOnTopLauncher;
89
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -070090 Task(int taskId, TaskStack stack, int userId, WindowManagerService service, Rect bounds,
Wale Ogunwale72919d22016-12-08 18:58:50 -080091 Configuration overrideConfig, boolean isOnTopLauncher, int resizeMode,
92 boolean homeTask) {
Craig Mautner83162a92015-01-26 14:43:30 -080093 mTaskId = taskId;
Craig Mautnerc00204b2013-03-05 15:02:14 -080094 mStack = stack;
Craig Mautnerac6f8432013-07-17 13:24:59 -070095 mUserId = userId;
Craig Mautnere3119b72015-01-20 15:02:36 -080096 mService = service;
Jiaquan Hedd1e66f2016-06-15 15:15:12 -070097 mIsOnTopLauncher = isOnTopLauncher;
Wale Ogunwale72919d22016-12-08 18:58:50 -080098 mResizeMode = resizeMode;
99 mHomeTask = homeTask;
Andrii Kulian8072d112016-09-16 11:11:01 -0700100 setBounds(bounds, overrideConfig);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800101 }
102
103 DisplayContent getDisplayContent() {
104 return mStack.getDisplayContent();
105 }
106
Wale Ogunwale72919d22016-12-08 18:58:50 -0800107 @Override
108 void addChild(AppWindowToken wtoken, int addPos) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700109 final int lastPos = mChildren.size();
Craig Mautner83162a92015-01-26 14:43:30 -0800110 if (addPos >= lastPos) {
111 addPos = lastPos;
112 } else {
113 for (int pos = 0; pos < lastPos && pos < addPos; ++pos) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700114 if (mChildren.get(pos).removed) {
Craig Mautner83162a92015-01-26 14:43:30 -0800115 // addPos assumes removed tokens are actually gone.
116 ++addPos;
117 }
Craig Mautner01f79cf2014-08-27 09:56:02 -0700118 }
Craig Mautner42bf39e2014-02-21 16:46:22 -0800119 }
Wale Ogunwalef6192862016-09-10 13:42:30 -0700120
Andrii Kulian441e4492016-09-29 15:25:00 -0700121 final WindowContainer parent = wtoken.getParent();
122 if (parent != null) {
123 parent.removeChild(wtoken);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700124 }
Wale Ogunwale72919d22016-12-08 18:58:50 -0800125 super.addChild(wtoken, addPos);
Craig Mautner83162a92015-01-26 14:43:30 -0800126 wtoken.mTask = this;
Craig Mautner42bf39e2014-02-21 16:46:22 -0800127 mDeferRemoval = false;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800128 }
129
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700130 private boolean hasWindowsAlive() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700131 for (int i = mChildren.size() - 1; i >= 0; i--) {
132 if (mChildren.get(i).hasWindowsAlive()) {
Chong Zhang7e8eeb72016-01-06 19:14:47 -0800133 return true;
134 }
135 }
136 return false;
137 }
138
Wale Ogunwalef6192862016-09-10 13:42:30 -0700139 @Override
140 void removeIfPossible() {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700141 if (hasWindowsAlive() && mStack.isAnimating()) {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800142 if (DEBUG_STACK) Slog.i(TAG, "removeTask: deferring removing taskId=" + mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800143 mDeferRemoval = true;
144 return;
145 }
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800146 if (DEBUG_STACK) Slog.i(TAG, "removeTask: removing taskId=" + mTaskId);
Craig Mautner83162a92015-01-26 14:43:30 -0800147 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "removeTask");
Craig Mautnere3119b72015-01-20 15:02:36 -0800148 mDeferRemoval = false;
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700149 DisplayContent content = getDisplayContent();
150 if (content != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800151 content.mDimLayerController.removeDimLayerUser(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700152 }
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800153 removeImmediately();
Craig Mautner83162a92015-01-26 14:43:30 -0800154 mService.mTaskIdToTask.delete(mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800155 }
156
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800157 // Change to use re-parenting in WC when TaskStack is switched to use WC.
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800158 void moveTaskToStack(TaskStack stack, boolean toTop) {
159 if (stack == mStack) {
160 return;
161 }
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800162 if (DEBUG_STACK) Slog.i(TAG, "moveTaskToStack: removing taskId=" + mTaskId
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800163 + " from stack=" + mStack);
Wale Ogunwale000957c2015-04-03 08:19:12 -0700164 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "moveTask");
Andrii Kulian441e4492016-09-29 15:25:00 -0700165 getParent().removeChild(this);
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800166 stack.addTask(this, toTop);
167 }
168
Andrii Kulian1779e612016-10-12 21:58:25 -0700169 void positionTaskInStack(TaskStack stack, int position, Rect bounds,
170 Configuration overrideConfig) {
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700171 if (mStack != null && stack != mStack) {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800172 if (DEBUG_STACK) Slog.i(TAG, "positionTaskInStack: removing taskId=" + mTaskId
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700173 + " from stack=" + mStack);
174 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "moveTask");
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700175 mStack.removeChild(this);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700176 }
177 stack.positionTask(this, position, showForAllUsers());
Andrii Kulian1779e612016-10-12 21:58:25 -0700178 resizeLocked(bounds, overrideConfig, false /* force */);
Jorim Jaggi5e6968d2016-02-19 18:02:13 -0800179
Wale Ogunwalef6192862016-09-10 13:42:30 -0700180 for (int activityNdx = mChildren.size() - 1; activityNdx >= 0; --activityNdx) {
181 mChildren.get(activityNdx).notifyMovedInStack();
Jorim Jaggi5e6968d2016-02-19 18:02:13 -0800182 }
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700183 }
184
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700185 @Override
Wale Ogunwalef6192862016-09-10 13:42:30 -0700186 void removeChild(AppWindowToken token) {
187 if (!mChildren.contains(token)) {
188 Slog.e(TAG, "removeChild: token=" + this + " not found.");
189 return;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700190 }
191
Wale Ogunwalef6192862016-09-10 13:42:30 -0700192 super.removeChild(token);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700193
Wale Ogunwalef6192862016-09-10 13:42:30 -0700194 if (mChildren.isEmpty()) {
Jorim Jaggi0429f352015-12-22 16:29:16 +0100195 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "removeAppToken: last token");
Craig Mautnere3119b72015-01-20 15:02:36 -0800196 if (mDeferRemoval) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700197 removeIfPossible();
Craig Mautnere3119b72015-01-20 15:02:36 -0800198 }
Craig Mautnerc00204b2013-03-05 15:02:14 -0800199 }
Wale Ogunwalef6192862016-09-10 13:42:30 -0700200 token.mTask = null;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800201 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800202
Craig Mautnercbd84af2014-10-22 13:21:22 -0700203 void setSendingToBottom(boolean toBottom) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700204 for (int appTokenNdx = 0; appTokenNdx < mChildren.size(); appTokenNdx++) {
205 mChildren.get(appTokenNdx).sendingToBottom = toBottom;
Craig Mautnercbd84af2014-10-22 13:21:22 -0700206 }
207 }
208
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700209 /** Set the task bounds. Passing in null sets the bounds to fullscreen. */
Andrii Kulian8072d112016-09-16 11:11:01 -0700210 private int setBounds(Rect bounds, Configuration overrideConfig) {
211 if (overrideConfig == null) {
212 overrideConfig = Configuration.EMPTY;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700213 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700214 if (bounds == null && !Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700215 throw new IllegalArgumentException("null bounds but non empty configuration: "
Andrii Kulian8072d112016-09-16 11:11:01 -0700216 + overrideConfig);
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700217 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700218 if (bounds != null && Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700219 throw new IllegalArgumentException("non null bounds, but empty configuration");
220 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700221 boolean oldFullscreen = mFillsParent;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700222 int rotation = Surface.ROTATION_0;
223 final DisplayContent displayContent = mStack.getDisplayContent();
224 if (displayContent != null) {
225 displayContent.getLogicalDisplayRect(mTmpRect);
226 rotation = displayContent.getDisplayInfo().rotation;
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700227 mFillsParent = bounds == null;
228 if (mFillsParent) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700229 bounds = mTmpRect;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700230 }
231 }
232
233 if (bounds == null) {
234 // Can't set to fullscreen if we don't have a display to get bounds from...
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700235 return BOUNDS_CHANGE_NONE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700236 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700237 if (mBounds.equals(bounds) && oldFullscreen == mFillsParent && mRotation == rotation) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700238 return BOUNDS_CHANGE_NONE;
239 }
240
241 int boundsChange = BOUNDS_CHANGE_NONE;
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700242 if (mBounds.left != bounds.left || mBounds.top != bounds.top) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700243 boundsChange |= BOUNDS_CHANGE_POSITION;
244 }
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700245 if (mBounds.width() != bounds.width() || mBounds.height() != bounds.height()) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700246 boundsChange |= BOUNDS_CHANGE_SIZE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700247 }
248
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700249 mBounds.set(bounds);
Chong Zhangf66db432016-01-13 10:39:51 -0800250
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700251 mRotation = rotation;
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700252 if (displayContent != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800253 displayContent.mDimLayerController.updateDimLayer(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700254 }
Andrii Kulian441e4492016-09-29 15:25:00 -0700255 onOverrideConfigurationChanged(mFillsParent ? Configuration.EMPTY : overrideConfig);
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700256 return boundsChange;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700257 }
258
Jorim Jaggidc249c42015-12-15 14:57:31 -0800259 /**
260 * Sets the bounds used to calculate the insets. See
261 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
262 */
263 void setTempInsetBounds(Rect tempInsetBounds) {
264 if (tempInsetBounds != null) {
265 mTempInsetBounds.set(tempInsetBounds);
266 } else {
267 mTempInsetBounds.setEmpty();
268 }
269 }
270
271 /**
272 * Gets the bounds used to calculate the insets. See
273 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
274 */
275 void getTempInsetBounds(Rect out) {
276 out.set(mTempInsetBounds);
277 }
278
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800279 void setResizeable(int resizeMode) {
280 mResizeMode = resizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -0800281 }
282
283 boolean isResizeable() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700284 return ActivityInfo.isResizeableMode(mResizeMode) || mService.mForceResizableTasks;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800285 }
286
skuhne@google.com322347b2016-12-02 12:54:03 -0800287 /**
288 * Tests if the orientation should be preserved upon user interactive resizig operations.
289
290 * @return true if orientation should not get changed upon resizing operation.
291 */
292 boolean preserveOrientationOnResize() {
293 return mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY
294 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY
295 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
296 }
297
Jiaquan Hedd1e66f2016-06-15 15:15:12 -0700298 boolean isOnTopLauncher() {
299 return mIsOnTopLauncher;
300 }
301
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800302 boolean cropWindowsToStackBounds() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700303 return isResizeable();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800304 }
305
Jorim Jaggi42625d1b2016-02-11 20:11:07 -0800306 boolean isHomeTask() {
307 return mHomeTask;
308 }
309
Andrii Kulian8072d112016-09-16 11:11:01 -0700310 boolean resizeLocked(Rect bounds, Configuration overrideConfig, boolean forced) {
311 int boundsChanged = setBounds(bounds, overrideConfig);
Chong Zhang87b21722015-09-21 15:39:51 -0700312 if (forced) {
Chong Zhang3005e752015-09-18 18:46:28 -0700313 boundsChanged |= BOUNDS_CHANGE_SIZE;
Chong Zhang3005e752015-09-18 18:46:28 -0700314 }
315 if (boundsChanged == BOUNDS_CHANGE_NONE) {
316 return false;
317 }
318 if ((boundsChanged & BOUNDS_CHANGE_SIZE) == BOUNDS_CHANGE_SIZE) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700319 onResize();
Chong Zhangbd0d9372015-12-28 15:18:29 -0800320 } else {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700321 onMovedByResize();
Chong Zhang3005e752015-09-18 18:46:28 -0700322 }
323 return true;
324 }
325
Jorim Jaggi0429f352015-12-22 16:29:16 +0100326 /**
327 * Prepares the task bounds to be frozen with the current size. See
328 * {@link AppWindowToken#freezeBounds}.
329 */
330 void prepareFreezingBounds() {
331 mPreparedFrozenBounds.set(mBounds);
Andrii Kulian441e4492016-09-29 15:25:00 -0700332 mPreparedFrozenMergedConfig.setTo(getConfiguration());
Jorim Jaggi0429f352015-12-22 16:29:16 +0100333 }
334
Chong Zhang5117e272016-05-03 12:47:34 -0700335 /**
336 * Align the task to the adjusted bounds.
337 *
338 * @param adjustedBounds Adjusted bounds to which the task should be aligned.
339 * @param tempInsetBounds Insets bounds for the task.
340 * @param alignBottom True if the task's bottom should be aligned to the adjusted
341 * bounds's bottom; false if the task's top should be aligned
342 * the adjusted bounds's top.
343 */
Andrii Kulian441e4492016-09-29 15:25:00 -0700344 void alignToAdjustedBounds(Rect adjustedBounds, Rect tempInsetBounds, boolean alignBottom) {
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700345 // Task override config might be empty, while display or stack override config isn't, so
346 // we have to check merged override config here.
347 if (!isResizeable() || Configuration.EMPTY.equals(getMergedOverrideConfiguration())) {
Chong Zhang5117e272016-05-03 12:47:34 -0700348 return;
349 }
350
351 getBounds(mTmpRect2);
352 if (alignBottom) {
353 int offsetY = adjustedBounds.bottom - mTmpRect2.bottom;
354 mTmpRect2.offset(0, offsetY);
355 } else {
356 mTmpRect2.offsetTo(adjustedBounds.left, adjustedBounds.top);
357 }
358 setTempInsetBounds(tempInsetBounds);
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700359 resizeLocked(mTmpRect2, getOverrideConfiguration(), false /* forced */);
Chong Zhang5117e272016-05-03 12:47:34 -0700360 }
361
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700362 /** Return true if the current bound can get outputted to the rest of the system as-is. */
363 private boolean useCurrentBounds() {
364 final DisplayContent displayContent = mStack.getDisplayContent();
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700365 return mFillsParent
Wale Ogunwale3797c222015-10-27 14:21:58 -0700366 || !StackId.isTaskResizeableByDockedStack(mStack.mStackId)
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700367 || displayContent == null
Jorim Jaggife762342016-10-13 14:33:27 +0200368 || displayContent.getDockedStackIgnoringVisibility() != null;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700369 }
370
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800371 /** Original bounds of the task if applicable, otherwise fullscreen rect. */
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800372 void getBounds(Rect out) {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700373 if (useCurrentBounds()) {
374 // No need to adjust the output bounds if fullscreen or the docked stack is visible
375 // since it is already what we want to represent to the rest of the system.
376 out.set(mBounds);
377 return;
378 }
379
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800380 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
381 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700382 mStack.getDisplayContent().getLogicalDisplayRect(out);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700383 }
384
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800385 /**
386 * Calculate the maximum visible area of this task. If the task has only one app,
387 * the result will be visible frame of that app. If the task has more than one apps,
388 * we search from top down if the next app got different visible area.
389 *
390 * This effort is to handle the case where some task (eg. GMail composer) might pop up
391 * a dialog that's different in size from the activity below, in which case we should
392 * be dimming the entire task area behind the dialog.
393 *
394 * @param out Rect containing the max visible bounds.
395 * @return true if the task has some visible app windows; false otherwise.
396 */
397 boolean getMaxVisibleBounds(Rect out) {
398 boolean foundTop = false;
Wale Ogunwalef6192862016-09-10 13:42:30 -0700399 for (int i = mChildren.size() - 1; i >= 0; i--) {
400 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800401 // skip hidden (or about to hide) apps
402 if (token.mIsExiting || token.clientHidden || token.hiddenRequested) {
403 continue;
404 }
405 final WindowState win = token.findMainWindow();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800406 if (win == null) {
407 continue;
408 }
409 if (!foundTop) {
410 out.set(win.mVisibleFrame);
411 foundTop = true;
412 continue;
413 }
414 if (win.mVisibleFrame.left < out.left) {
415 out.left = win.mVisibleFrame.left;
416 }
417 if (win.mVisibleFrame.top < out.top) {
418 out.top = win.mVisibleFrame.top;
419 }
420 if (win.mVisibleFrame.right > out.right) {
421 out.right = win.mVisibleFrame.right;
422 }
423 if (win.mVisibleFrame.bottom > out.bottom) {
424 out.bottom = win.mVisibleFrame.bottom;
425 }
426 }
427 return foundTop;
428 }
429
430 /** Bounds of the task to be used for dimming, as well as touch related tests. */
431 @Override
432 public void getDimBounds(Rect out) {
Robert Carra86a6bf2016-04-08 17:34:16 -0700433 final DisplayContent displayContent = mStack.getDisplayContent();
434 // It doesn't matter if we in particular are part of the resize, since we couldn't have
435 // a DimLayer anyway if we weren't visible.
Wale Ogunwalef6192862016-09-10 13:42:30 -0700436 final boolean dockedResizing = displayContent != null
437 && displayContent.mDividerControllerLocked.isResizing();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800438 if (useCurrentBounds()) {
439 if (inFreeformWorkspace() && getMaxVisibleBounds(out)) {
440 return;
441 }
442
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700443 if (!mFillsParent) {
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700444 // When minimizing the docked stack when going home, we don't adjust the task bounds
445 // so we need to intersect the task bounds with the stack bounds here.
Robert Carra86a6bf2016-04-08 17:34:16 -0700446 //
447 // If we are Docked Resizing with snap points, the task bounds could be smaller than the stack
448 // bounds and so we don't even want to use them. Even if the app should not be resized the Dim
449 // should keep up with the divider.
450 if (dockedResizing) {
451 mStack.getBounds(out);
452 } else {
453 mStack.getBounds(mTmpRect);
454 mTmpRect.intersect(mBounds);
455 }
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700456 out.set(mTmpRect);
457 } else {
458 out.set(mBounds);
459 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800460 return;
461 }
462
Wale Ogunwalef6192862016-09-10 13:42:30 -0700463 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
464 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
465 if (displayContent != null) {
466 displayContent.getLogicalDisplayRect(out);
467 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800468 }
469
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100470 void setDragResizing(boolean dragResizing, int dragResizeMode) {
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800471 if (mDragResizing != dragResizing) {
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100472 if (!DragResizeMode.isModeAllowedForStack(mStack.mStackId, dragResizeMode)) {
473 throw new IllegalArgumentException("Drag resize mode not allow for stack stackId="
474 + mStack.mStackId + " dragResizeMode=" + dragResizeMode);
475 }
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800476 mDragResizing = dragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100477 mDragResizeMode = dragResizeMode;
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800478 resetDragResizingChangeReported();
479 }
480 }
481
Chong Zhang3005e752015-09-18 18:46:28 -0700482 boolean isDragResizing() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700483 return mDragResizing;
Chong Zhang3005e752015-09-18 18:46:28 -0700484 }
485
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100486 int getDragResizeMode() {
487 return mDragResizeMode;
488 }
489
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700490 void updateDisplayInfo(final DisplayContent displayContent) {
491 if (displayContent == null) {
492 return;
493 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700494 if (mFillsParent) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700495 setBounds(null, Configuration.EMPTY);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700496 return;
497 }
498 final int newRotation = displayContent.getDisplayInfo().rotation;
499 if (mRotation == newRotation) {
500 return;
501 }
502
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800503 // Device rotation changed.
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700504 // - We don't want the task to move around on the screen when this happens, so update the
505 // task bounds so it stays in the same place.
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800506 // - Rotate the bounds and notify activity manager if the task can be resized independently
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700507 // from its stack. The stack will take care of task rotation for the other case.
508 mTmpRect2.set(mBounds);
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800509
510 if (!StackId.isTaskResizeAllowed(mStack.mStackId)) {
Andrii Kulian441e4492016-09-29 15:25:00 -0700511 setBounds(mTmpRect2, getOverrideConfiguration());
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800512 return;
513 }
514
Wale Ogunwale94744212015-09-21 19:01:47 -0700515 displayContent.rotateBounds(mRotation, newRotation, mTmpRect2);
Andrii Kulian441e4492016-09-29 15:25:00 -0700516 if (setBounds(mTmpRect2, getOverrideConfiguration()) != BOUNDS_CHANGE_NONE) {
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800517 // Post message to inform activity manager of the bounds change simulating a one-way
518 // call. We do this to prevent a deadlock between window manager lock and activity
519 // manager lock been held.
520 mService.mH.obtainMessage(RESIZE_TASK, mTaskId,
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700521 RESIZE_MODE_SYSTEM_SCREEN_ROTATION, mBounds).sendToTarget();
Wale Ogunwale1ed0d892015-09-28 13:27:44 -0700522 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700523 }
524
Wale Ogunwalef6192862016-09-10 13:42:30 -0700525 /** Cancels any running app transitions associated with the task. */
Winsonc28098f2015-10-30 14:50:19 -0700526 void cancelTaskWindowTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700527 for (int i = mChildren.size() - 1; i >= 0; --i) {
528 mChildren.get(i).mAppAnimator.clearAnimation();
Winsonc28098f2015-10-30 14:50:19 -0700529 }
530 }
531
Wale Ogunwalef6192862016-09-10 13:42:30 -0700532 /** Cancels any running thumbnail transitions associated with the task. */
Winson13d30662015-11-06 15:30:29 -0800533 void cancelTaskThumbnailTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700534 for (int i = mChildren.size() - 1; i >= 0; --i) {
535 mChildren.get(i).mAppAnimator.clearThumbnail();
Winson13d30662015-11-06 15:30:29 -0800536 }
537 }
538
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700539 boolean showForAllUsers() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700540 final int tokensCount = mChildren.size();
Wale Ogunwale72919d22016-12-08 18:58:50 -0800541 return (tokensCount != 0) && mChildren.get(tokensCount - 1).mShowForAllUsers;
Jorim Jaggiff71d202016-04-14 13:12:36 -0700542 }
543
Chong Zhang09b21ef2015-09-14 10:20:21 -0700544 boolean inFreeformWorkspace() {
545 return mStack != null && mStack.mStackId == FREEFORM_WORKSPACE_STACK_ID;
546 }
547
Robert Carr03138452016-05-18 14:53:16 -0700548 boolean inPinnedWorkspace() {
549 return mStack != null && mStack.mStackId == PINNED_STACK_ID;
550 }
551
Robert Carre6275582016-02-29 15:45:45 -0800552 boolean isFloating() {
553 return StackId.tasksAreFloating(mStack.mStackId);
554 }
555
Chong Zhangd8ceb852015-11-11 14:53:41 -0800556 WindowState getTopVisibleAppMainWindow() {
557 final AppWindowToken token = getTopVisibleAppToken();
558 return token != null ? token.findMainWindow() : null;
Chong Zhang9184ec62015-09-24 12:32:21 -0700559 }
560
Chong Zhangd8ceb852015-11-11 14:53:41 -0800561 AppWindowToken getTopVisibleAppToken() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700562 for (int i = mChildren.size() - 1; i >= 0; i--) {
563 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800564 // skip hidden (or about to hide) apps
565 if (!token.mIsExiting && !token.clientHidden && !token.hiddenRequested) {
566 return token;
567 }
568 }
569 return null;
Chong Zhangbef461f2015-10-27 11:38:24 -0700570 }
571
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800572 @Override
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700573 public boolean dimFullscreen() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700574 return isFullscreen();
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700575 }
576
577 boolean isFullscreen() {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700578 if (useCurrentBounds()) {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700579 return mFillsParent;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700580 }
581 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
582 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
583 // system.
584 return true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700585 }
586
587 @Override
588 public DisplayInfo getDisplayInfo() {
589 return mStack.getDisplayContent().getDisplayInfo();
590 }
591
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700592 void forceWindowsScaleable(boolean force) {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700593 mService.openSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700594 try {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700595 for (int i = mChildren.size() - 1; i >= 0; i--) {
596 mChildren.get(i).forceWindowsScaleableInTransaction(force);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700597 }
598 } finally {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700599 mService.closeSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700600 }
601 }
602
Wale Ogunwalef6192862016-09-10 13:42:30 -0700603 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -0700604 boolean fillsParent() {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700605 return mFillsParent || !StackId.isTaskResizeAllowed(mStack.mStackId);
Wale Ogunwale51362492016-09-08 17:49:17 -0700606 }
607
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700608 @Override
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800609 public String toString() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700610 return "{taskId=" + mTaskId + " appTokens=" + mChildren + " mdr=" + mDeferRemoval + "}";
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800611 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700612
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700613 String getName() {
614 return toShortString();
615 }
616
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700617 @Override
618 public String toShortString() {
619 return "Task=" + mTaskId;
620 }
621
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800622 public void dump(String prefix, PrintWriter pw) {
623 final String doublePrefix = prefix + " ";
624
625 pw.println(prefix + "taskId=" + mTaskId);
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700626 pw.println(doublePrefix + "mFillsParent=" + mFillsParent);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800627 pw.println(doublePrefix + "mBounds=" + mBounds.toShortString());
628 pw.println(doublePrefix + "mdr=" + mDeferRemoval);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700629 pw.println(doublePrefix + "appTokens=" + mChildren);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800630 pw.println(doublePrefix + "mTempInsetBounds=" + mTempInsetBounds.toShortString());
631
632 final String triplePrefix = doublePrefix + " ";
633
Wale Ogunwalef6192862016-09-10 13:42:30 -0700634 for (int i = mChildren.size() - 1; i >= 0; i--) {
635 final AppWindowToken wtoken = mChildren.get(i);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800636 pw.println(triplePrefix + "Activity #" + i + " " + wtoken);
637 wtoken.dump(pw, triplePrefix);
638 }
639
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700640 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800641}