blob: 612af755a0f97b5d9c6b97824a3b52c323e96a3e [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,
Andrii Kulian8072d112016-09-16 11:11:01 -070091 Configuration overrideConfig, boolean isOnTopLauncher) {
Craig Mautner83162a92015-01-26 14:43:30 -080092 mTaskId = taskId;
Craig Mautnerc00204b2013-03-05 15:02:14 -080093 mStack = stack;
Craig Mautnerac6f8432013-07-17 13:24:59 -070094 mUserId = userId;
Craig Mautnere3119b72015-01-20 15:02:36 -080095 mService = service;
Jiaquan Hedd1e66f2016-06-15 15:15:12 -070096 mIsOnTopLauncher = isOnTopLauncher;
Andrii Kulian8072d112016-09-16 11:11:01 -070097 setBounds(bounds, overrideConfig);
Craig Mautnerc00204b2013-03-05 15:02:14 -080098 }
99
100 DisplayContent getDisplayContent() {
101 return mStack.getDisplayContent();
102 }
103
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800104 void addAppToken(int addPos, AppWindowToken wtoken, int resizeMode, boolean homeTask) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700105 final int lastPos = mChildren.size();
Craig Mautner83162a92015-01-26 14:43:30 -0800106 if (addPos >= lastPos) {
107 addPos = lastPos;
108 } else {
109 for (int pos = 0; pos < lastPos && pos < addPos; ++pos) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700110 if (mChildren.get(pos).removed) {
Craig Mautner83162a92015-01-26 14:43:30 -0800111 // addPos assumes removed tokens are actually gone.
112 ++addPos;
113 }
Craig Mautner01f79cf2014-08-27 09:56:02 -0700114 }
Craig Mautner42bf39e2014-02-21 16:46:22 -0800115 }
Wale Ogunwalef6192862016-09-10 13:42:30 -0700116
Andrii Kulian441e4492016-09-29 15:25:00 -0700117 final WindowContainer parent = wtoken.getParent();
118 if (parent != null) {
119 parent.removeChild(wtoken);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700120 }
121 addChild(wtoken, addPos);
Craig Mautner83162a92015-01-26 14:43:30 -0800122 wtoken.mTask = this;
Craig Mautner42bf39e2014-02-21 16:46:22 -0800123 mDeferRemoval = false;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800124 mResizeMode = resizeMode;
125 mHomeTask = homeTask;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800126 }
127
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700128 private boolean hasWindowsAlive() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700129 for (int i = mChildren.size() - 1; i >= 0; i--) {
130 if (mChildren.get(i).hasWindowsAlive()) {
Chong Zhang7e8eeb72016-01-06 19:14:47 -0800131 return true;
132 }
133 }
134 return false;
135 }
136
Wale Ogunwalef6192862016-09-10 13:42:30 -0700137 @Override
138 void removeIfPossible() {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700139 if (hasWindowsAlive() && mStack.isAnimating()) {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800140 if (DEBUG_STACK) Slog.i(TAG, "removeTask: deferring removing taskId=" + mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800141 mDeferRemoval = true;
142 return;
143 }
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800144 if (DEBUG_STACK) Slog.i(TAG, "removeTask: removing taskId=" + mTaskId);
Craig Mautner83162a92015-01-26 14:43:30 -0800145 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "removeTask");
Craig Mautnere3119b72015-01-20 15:02:36 -0800146 mDeferRemoval = false;
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700147 DisplayContent content = getDisplayContent();
148 if (content != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800149 content.mDimLayerController.removeDimLayerUser(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700150 }
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800151 removeImmediately();
Craig Mautner83162a92015-01-26 14:43:30 -0800152 mService.mTaskIdToTask.delete(mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800153 }
154
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800155 // Change to use re-parenting in WC when TaskStack is switched to use WC.
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800156 void moveTaskToStack(TaskStack stack, boolean toTop) {
157 if (stack == mStack) {
158 return;
159 }
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800160 if (DEBUG_STACK) Slog.i(TAG, "moveTaskToStack: removing taskId=" + mTaskId
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800161 + " from stack=" + mStack);
Wale Ogunwale000957c2015-04-03 08:19:12 -0700162 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "moveTask");
Andrii Kulian441e4492016-09-29 15:25:00 -0700163 getParent().removeChild(this);
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800164 stack.addTask(this, toTop);
165 }
166
Andrii Kulian1779e612016-10-12 21:58:25 -0700167 void positionTaskInStack(TaskStack stack, int position, Rect bounds,
168 Configuration overrideConfig) {
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700169 if (mStack != null && stack != mStack) {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800170 if (DEBUG_STACK) Slog.i(TAG, "positionTaskInStack: removing taskId=" + mTaskId
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700171 + " from stack=" + mStack);
172 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "moveTask");
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700173 mStack.removeChild(this);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700174 }
175 stack.positionTask(this, position, showForAllUsers());
Andrii Kulian1779e612016-10-12 21:58:25 -0700176 resizeLocked(bounds, overrideConfig, false /* force */);
Jorim Jaggi5e6968d2016-02-19 18:02:13 -0800177
Wale Ogunwalef6192862016-09-10 13:42:30 -0700178 for (int activityNdx = mChildren.size() - 1; activityNdx >= 0; --activityNdx) {
179 mChildren.get(activityNdx).notifyMovedInStack();
Jorim Jaggi5e6968d2016-02-19 18:02:13 -0800180 }
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700181 }
182
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700183 @Override
Wale Ogunwalef6192862016-09-10 13:42:30 -0700184 void removeChild(AppWindowToken token) {
185 if (!mChildren.contains(token)) {
186 Slog.e(TAG, "removeChild: token=" + this + " not found.");
187 return;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700188 }
189
Wale Ogunwalef6192862016-09-10 13:42:30 -0700190 super.removeChild(token);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700191
Wale Ogunwalef6192862016-09-10 13:42:30 -0700192 if (mChildren.isEmpty()) {
Jorim Jaggi0429f352015-12-22 16:29:16 +0100193 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "removeAppToken: last token");
Craig Mautnere3119b72015-01-20 15:02:36 -0800194 if (mDeferRemoval) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700195 removeIfPossible();
Craig Mautnere3119b72015-01-20 15:02:36 -0800196 }
Craig Mautnerc00204b2013-03-05 15:02:14 -0800197 }
Wale Ogunwalef6192862016-09-10 13:42:30 -0700198 token.mTask = null;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800199 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800200
Craig Mautnercbd84af2014-10-22 13:21:22 -0700201 void setSendingToBottom(boolean toBottom) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700202 for (int appTokenNdx = 0; appTokenNdx < mChildren.size(); appTokenNdx++) {
203 mChildren.get(appTokenNdx).sendingToBottom = toBottom;
Craig Mautnercbd84af2014-10-22 13:21:22 -0700204 }
205 }
206
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700207 /** Set the task bounds. Passing in null sets the bounds to fullscreen. */
Andrii Kulian8072d112016-09-16 11:11:01 -0700208 private int setBounds(Rect bounds, Configuration overrideConfig) {
209 if (overrideConfig == null) {
210 overrideConfig = Configuration.EMPTY;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700211 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700212 if (bounds == null && !Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700213 throw new IllegalArgumentException("null bounds but non empty configuration: "
Andrii Kulian8072d112016-09-16 11:11:01 -0700214 + overrideConfig);
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700215 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700216 if (bounds != null && Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700217 throw new IllegalArgumentException("non null bounds, but empty configuration");
218 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700219 boolean oldFullscreen = mFillsParent;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700220 int rotation = Surface.ROTATION_0;
221 final DisplayContent displayContent = mStack.getDisplayContent();
222 if (displayContent != null) {
223 displayContent.getLogicalDisplayRect(mTmpRect);
224 rotation = displayContent.getDisplayInfo().rotation;
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700225 mFillsParent = bounds == null;
226 if (mFillsParent) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700227 bounds = mTmpRect;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700228 }
229 }
230
231 if (bounds == null) {
232 // Can't set to fullscreen if we don't have a display to get bounds from...
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700233 return BOUNDS_CHANGE_NONE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700234 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700235 if (mBounds.equals(bounds) && oldFullscreen == mFillsParent && mRotation == rotation) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700236 return BOUNDS_CHANGE_NONE;
237 }
238
239 int boundsChange = BOUNDS_CHANGE_NONE;
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700240 if (mBounds.left != bounds.left || mBounds.top != bounds.top) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700241 boundsChange |= BOUNDS_CHANGE_POSITION;
242 }
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700243 if (mBounds.width() != bounds.width() || mBounds.height() != bounds.height()) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700244 boundsChange |= BOUNDS_CHANGE_SIZE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700245 }
246
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700247 mBounds.set(bounds);
Chong Zhangf66db432016-01-13 10:39:51 -0800248
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700249 mRotation = rotation;
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700250 if (displayContent != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800251 displayContent.mDimLayerController.updateDimLayer(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700252 }
Andrii Kulian441e4492016-09-29 15:25:00 -0700253 onOverrideConfigurationChanged(mFillsParent ? Configuration.EMPTY : overrideConfig);
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700254 return boundsChange;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700255 }
256
Jorim Jaggidc249c42015-12-15 14:57:31 -0800257 /**
258 * Sets the bounds used to calculate the insets. See
259 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
260 */
261 void setTempInsetBounds(Rect tempInsetBounds) {
262 if (tempInsetBounds != null) {
263 mTempInsetBounds.set(tempInsetBounds);
264 } else {
265 mTempInsetBounds.setEmpty();
266 }
267 }
268
269 /**
270 * Gets the bounds used to calculate the insets. See
271 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
272 */
273 void getTempInsetBounds(Rect out) {
274 out.set(mTempInsetBounds);
275 }
276
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800277 void setResizeable(int resizeMode) {
278 mResizeMode = resizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -0800279 }
280
281 boolean isResizeable() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700282 return ActivityInfo.isResizeableMode(mResizeMode) || mService.mForceResizableTasks;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800283 }
284
skuhne@google.com322347b2016-12-02 12:54:03 -0800285 /**
286 * Tests if the orientation should be preserved upon user interactive resizig operations.
287
288 * @return true if orientation should not get changed upon resizing operation.
289 */
290 boolean preserveOrientationOnResize() {
291 return mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY
292 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY
293 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
294 }
295
Jiaquan Hedd1e66f2016-06-15 15:15:12 -0700296 boolean isOnTopLauncher() {
297 return mIsOnTopLauncher;
298 }
299
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800300 boolean cropWindowsToStackBounds() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700301 return isResizeable();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800302 }
303
Jorim Jaggi42625d1b2016-02-11 20:11:07 -0800304 boolean isHomeTask() {
305 return mHomeTask;
306 }
307
Andrii Kulian8072d112016-09-16 11:11:01 -0700308 boolean resizeLocked(Rect bounds, Configuration overrideConfig, boolean forced) {
309 int boundsChanged = setBounds(bounds, overrideConfig);
Chong Zhang87b21722015-09-21 15:39:51 -0700310 if (forced) {
Chong Zhang3005e752015-09-18 18:46:28 -0700311 boundsChanged |= BOUNDS_CHANGE_SIZE;
Chong Zhang3005e752015-09-18 18:46:28 -0700312 }
313 if (boundsChanged == BOUNDS_CHANGE_NONE) {
314 return false;
315 }
316 if ((boundsChanged & BOUNDS_CHANGE_SIZE) == BOUNDS_CHANGE_SIZE) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700317 onResize();
Chong Zhangbd0d9372015-12-28 15:18:29 -0800318 } else {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700319 onMovedByResize();
Chong Zhang3005e752015-09-18 18:46:28 -0700320 }
321 return true;
322 }
323
Jorim Jaggi0429f352015-12-22 16:29:16 +0100324 /**
325 * Prepares the task bounds to be frozen with the current size. See
326 * {@link AppWindowToken#freezeBounds}.
327 */
328 void prepareFreezingBounds() {
329 mPreparedFrozenBounds.set(mBounds);
Andrii Kulian441e4492016-09-29 15:25:00 -0700330 mPreparedFrozenMergedConfig.setTo(getConfiguration());
Jorim Jaggi0429f352015-12-22 16:29:16 +0100331 }
332
Chong Zhang5117e272016-05-03 12:47:34 -0700333 /**
334 * Align the task to the adjusted bounds.
335 *
336 * @param adjustedBounds Adjusted bounds to which the task should be aligned.
337 * @param tempInsetBounds Insets bounds for the task.
338 * @param alignBottom True if the task's bottom should be aligned to the adjusted
339 * bounds's bottom; false if the task's top should be aligned
340 * the adjusted bounds's top.
341 */
Andrii Kulian441e4492016-09-29 15:25:00 -0700342 void alignToAdjustedBounds(Rect adjustedBounds, Rect tempInsetBounds, boolean alignBottom) {
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700343 // Task override config might be empty, while display or stack override config isn't, so
344 // we have to check merged override config here.
345 if (!isResizeable() || Configuration.EMPTY.equals(getMergedOverrideConfiguration())) {
Chong Zhang5117e272016-05-03 12:47:34 -0700346 return;
347 }
348
349 getBounds(mTmpRect2);
350 if (alignBottom) {
351 int offsetY = adjustedBounds.bottom - mTmpRect2.bottom;
352 mTmpRect2.offset(0, offsetY);
353 } else {
354 mTmpRect2.offsetTo(adjustedBounds.left, adjustedBounds.top);
355 }
356 setTempInsetBounds(tempInsetBounds);
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700357 resizeLocked(mTmpRect2, getOverrideConfiguration(), false /* forced */);
Chong Zhang5117e272016-05-03 12:47:34 -0700358 }
359
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700360 /** Return true if the current bound can get outputted to the rest of the system as-is. */
361 private boolean useCurrentBounds() {
362 final DisplayContent displayContent = mStack.getDisplayContent();
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700363 return mFillsParent
Wale Ogunwale3797c222015-10-27 14:21:58 -0700364 || !StackId.isTaskResizeableByDockedStack(mStack.mStackId)
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700365 || displayContent == null
Jorim Jaggife762342016-10-13 14:33:27 +0200366 || displayContent.getDockedStackIgnoringVisibility() != null;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700367 }
368
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800369 /** Original bounds of the task if applicable, otherwise fullscreen rect. */
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800370 void getBounds(Rect out) {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700371 if (useCurrentBounds()) {
372 // No need to adjust the output bounds if fullscreen or the docked stack is visible
373 // since it is already what we want to represent to the rest of the system.
374 out.set(mBounds);
375 return;
376 }
377
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800378 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
379 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700380 mStack.getDisplayContent().getLogicalDisplayRect(out);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700381 }
382
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800383 /**
384 * Calculate the maximum visible area of this task. If the task has only one app,
385 * the result will be visible frame of that app. If the task has more than one apps,
386 * we search from top down if the next app got different visible area.
387 *
388 * This effort is to handle the case where some task (eg. GMail composer) might pop up
389 * a dialog that's different in size from the activity below, in which case we should
390 * be dimming the entire task area behind the dialog.
391 *
392 * @param out Rect containing the max visible bounds.
393 * @return true if the task has some visible app windows; false otherwise.
394 */
395 boolean getMaxVisibleBounds(Rect out) {
396 boolean foundTop = false;
Wale Ogunwalef6192862016-09-10 13:42:30 -0700397 for (int i = mChildren.size() - 1; i >= 0; i--) {
398 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800399 // skip hidden (or about to hide) apps
400 if (token.mIsExiting || token.clientHidden || token.hiddenRequested) {
401 continue;
402 }
403 final WindowState win = token.findMainWindow();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800404 if (win == null) {
405 continue;
406 }
407 if (!foundTop) {
408 out.set(win.mVisibleFrame);
409 foundTop = true;
410 continue;
411 }
412 if (win.mVisibleFrame.left < out.left) {
413 out.left = win.mVisibleFrame.left;
414 }
415 if (win.mVisibleFrame.top < out.top) {
416 out.top = win.mVisibleFrame.top;
417 }
418 if (win.mVisibleFrame.right > out.right) {
419 out.right = win.mVisibleFrame.right;
420 }
421 if (win.mVisibleFrame.bottom > out.bottom) {
422 out.bottom = win.mVisibleFrame.bottom;
423 }
424 }
425 return foundTop;
426 }
427
428 /** Bounds of the task to be used for dimming, as well as touch related tests. */
429 @Override
430 public void getDimBounds(Rect out) {
Robert Carra86a6bf2016-04-08 17:34:16 -0700431 final DisplayContent displayContent = mStack.getDisplayContent();
432 // It doesn't matter if we in particular are part of the resize, since we couldn't have
433 // a DimLayer anyway if we weren't visible.
Wale Ogunwalef6192862016-09-10 13:42:30 -0700434 final boolean dockedResizing = displayContent != null
435 && displayContent.mDividerControllerLocked.isResizing();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800436 if (useCurrentBounds()) {
437 if (inFreeformWorkspace() && getMaxVisibleBounds(out)) {
438 return;
439 }
440
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700441 if (!mFillsParent) {
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700442 // When minimizing the docked stack when going home, we don't adjust the task bounds
443 // so we need to intersect the task bounds with the stack bounds here.
Robert Carra86a6bf2016-04-08 17:34:16 -0700444 //
445 // If we are Docked Resizing with snap points, the task bounds could be smaller than the stack
446 // bounds and so we don't even want to use them. Even if the app should not be resized the Dim
447 // should keep up with the divider.
448 if (dockedResizing) {
449 mStack.getBounds(out);
450 } else {
451 mStack.getBounds(mTmpRect);
452 mTmpRect.intersect(mBounds);
453 }
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700454 out.set(mTmpRect);
455 } else {
456 out.set(mBounds);
457 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800458 return;
459 }
460
Wale Ogunwalef6192862016-09-10 13:42:30 -0700461 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
462 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
463 if (displayContent != null) {
464 displayContent.getLogicalDisplayRect(out);
465 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800466 }
467
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100468 void setDragResizing(boolean dragResizing, int dragResizeMode) {
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800469 if (mDragResizing != dragResizing) {
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100470 if (!DragResizeMode.isModeAllowedForStack(mStack.mStackId, dragResizeMode)) {
471 throw new IllegalArgumentException("Drag resize mode not allow for stack stackId="
472 + mStack.mStackId + " dragResizeMode=" + dragResizeMode);
473 }
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800474 mDragResizing = dragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100475 mDragResizeMode = dragResizeMode;
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800476 resetDragResizingChangeReported();
477 }
478 }
479
Chong Zhang3005e752015-09-18 18:46:28 -0700480 boolean isDragResizing() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700481 return mDragResizing;
Chong Zhang3005e752015-09-18 18:46:28 -0700482 }
483
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100484 int getDragResizeMode() {
485 return mDragResizeMode;
486 }
487
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700488 void updateDisplayInfo(final DisplayContent displayContent) {
489 if (displayContent == null) {
490 return;
491 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700492 if (mFillsParent) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700493 setBounds(null, Configuration.EMPTY);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700494 return;
495 }
496 final int newRotation = displayContent.getDisplayInfo().rotation;
497 if (mRotation == newRotation) {
498 return;
499 }
500
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800501 // Device rotation changed.
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700502 // - We don't want the task to move around on the screen when this happens, so update the
503 // task bounds so it stays in the same place.
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800504 // - Rotate the bounds and notify activity manager if the task can be resized independently
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700505 // from its stack. The stack will take care of task rotation for the other case.
506 mTmpRect2.set(mBounds);
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800507
508 if (!StackId.isTaskResizeAllowed(mStack.mStackId)) {
Andrii Kulian441e4492016-09-29 15:25:00 -0700509 setBounds(mTmpRect2, getOverrideConfiguration());
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800510 return;
511 }
512
Wale Ogunwale94744212015-09-21 19:01:47 -0700513 displayContent.rotateBounds(mRotation, newRotation, mTmpRect2);
Andrii Kulian441e4492016-09-29 15:25:00 -0700514 if (setBounds(mTmpRect2, getOverrideConfiguration()) != BOUNDS_CHANGE_NONE) {
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800515 // Post message to inform activity manager of the bounds change simulating a one-way
516 // call. We do this to prevent a deadlock between window manager lock and activity
517 // manager lock been held.
518 mService.mH.obtainMessage(RESIZE_TASK, mTaskId,
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700519 RESIZE_MODE_SYSTEM_SCREEN_ROTATION, mBounds).sendToTarget();
Wale Ogunwale1ed0d892015-09-28 13:27:44 -0700520 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700521 }
522
Wale Ogunwalef6192862016-09-10 13:42:30 -0700523 /** Cancels any running app transitions associated with the task. */
Winsonc28098f2015-10-30 14:50:19 -0700524 void cancelTaskWindowTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700525 for (int i = mChildren.size() - 1; i >= 0; --i) {
526 mChildren.get(i).mAppAnimator.clearAnimation();
Winsonc28098f2015-10-30 14:50:19 -0700527 }
528 }
529
Wale Ogunwalef6192862016-09-10 13:42:30 -0700530 /** Cancels any running thumbnail transitions associated with the task. */
Winson13d30662015-11-06 15:30:29 -0800531 void cancelTaskThumbnailTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700532 for (int i = mChildren.size() - 1; i >= 0; --i) {
533 mChildren.get(i).mAppAnimator.clearThumbnail();
Winson13d30662015-11-06 15:30:29 -0800534 }
535 }
536
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700537 boolean showForAllUsers() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700538 final int tokensCount = mChildren.size();
539 return (tokensCount != 0) && mChildren.get(tokensCount - 1).showForAllUsers;
Jorim Jaggiff71d202016-04-14 13:12:36 -0700540 }
541
Chong Zhang09b21ef2015-09-14 10:20:21 -0700542 boolean inFreeformWorkspace() {
543 return mStack != null && mStack.mStackId == FREEFORM_WORKSPACE_STACK_ID;
544 }
545
Robert Carr03138452016-05-18 14:53:16 -0700546 boolean inPinnedWorkspace() {
547 return mStack != null && mStack.mStackId == PINNED_STACK_ID;
548 }
549
Robert Carre6275582016-02-29 15:45:45 -0800550 boolean isFloating() {
551 return StackId.tasksAreFloating(mStack.mStackId);
552 }
553
Chong Zhangd8ceb852015-11-11 14:53:41 -0800554 WindowState getTopVisibleAppMainWindow() {
555 final AppWindowToken token = getTopVisibleAppToken();
556 return token != null ? token.findMainWindow() : null;
Chong Zhang9184ec62015-09-24 12:32:21 -0700557 }
558
Chong Zhangd8ceb852015-11-11 14:53:41 -0800559 AppWindowToken getTopVisibleAppToken() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700560 for (int i = mChildren.size() - 1; i >= 0; i--) {
561 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800562 // skip hidden (or about to hide) apps
563 if (!token.mIsExiting && !token.clientHidden && !token.hiddenRequested) {
564 return token;
565 }
566 }
567 return null;
Chong Zhangbef461f2015-10-27 11:38:24 -0700568 }
569
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800570 @Override
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700571 public boolean dimFullscreen() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700572 return isFullscreen();
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700573 }
574
575 boolean isFullscreen() {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700576 if (useCurrentBounds()) {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700577 return mFillsParent;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700578 }
579 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
580 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
581 // system.
582 return true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700583 }
584
585 @Override
586 public DisplayInfo getDisplayInfo() {
587 return mStack.getDisplayContent().getDisplayInfo();
588 }
589
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700590 void forceWindowsScaleable(boolean force) {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700591 mService.openSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700592 try {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700593 for (int i = mChildren.size() - 1; i >= 0; i--) {
594 mChildren.get(i).forceWindowsScaleableInTransaction(force);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700595 }
596 } finally {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700597 mService.closeSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700598 }
599 }
600
Wale Ogunwalef6192862016-09-10 13:42:30 -0700601 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -0700602 boolean fillsParent() {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700603 return mFillsParent || !StackId.isTaskResizeAllowed(mStack.mStackId);
Wale Ogunwale51362492016-09-08 17:49:17 -0700604 }
605
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700606 @Override
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800607 public String toString() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700608 return "{taskId=" + mTaskId + " appTokens=" + mChildren + " mdr=" + mDeferRemoval + "}";
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800609 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700610
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700611 String getName() {
612 return toShortString();
613 }
614
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700615 @Override
616 public String toShortString() {
617 return "Task=" + mTaskId;
618 }
619
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800620 public void dump(String prefix, PrintWriter pw) {
621 final String doublePrefix = prefix + " ";
622
623 pw.println(prefix + "taskId=" + mTaskId);
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700624 pw.println(doublePrefix + "mFillsParent=" + mFillsParent);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800625 pw.println(doublePrefix + "mBounds=" + mBounds.toShortString());
626 pw.println(doublePrefix + "mdr=" + mDeferRemoval);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700627 pw.println(doublePrefix + "appTokens=" + mChildren);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800628 pw.println(doublePrefix + "mTempInsetBounds=" + mTempInsetBounds.toShortString());
629
630 final String triplePrefix = doublePrefix + " ";
631
Wale Ogunwalef6192862016-09-10 13:42:30 -0700632 for (int i = mChildren.size() - 1; i >= 0; i--) {
633 final AppWindowToken wtoken = mChildren.get(i);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800634 pw.println(triplePrefix + "Activity #" + i + " " + wtoken);
635 wtoken.dump(pw, triplePrefix);
636 }
637
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700638 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800639}