blob: b1b7542f62ce3c441449e5ff34b79d341833f969 [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
Craig Mautnere3119b72015-01-20 15:02:36 -080041import com.android.server.EventLogTags;
Craig Mautner2c2549c2013-11-12 08:31:15 -080042
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070043import java.io.PrintWriter;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070044
Wale Ogunwalef6192862016-09-10 13:42:30 -070045class Task extends WindowContainer<AppWindowToken> implements DimLayer.DimLayerUser {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -080046 static final String TAG = TAG_WITH_CLASS_NAME ? "Task" : TAG_WM;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070047 // Return value from {@link setBounds} indicating no change was made to the Task bounds.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070048 private static final int BOUNDS_CHANGE_NONE = 0;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070049 // Return value from {@link setBounds} indicating the position of the Task bounds changed.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070050 private static final int BOUNDS_CHANGE_POSITION = 1;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070051 // Return value from {@link setBounds} indicating the size of the Task bounds changed.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070052 private static final int BOUNDS_CHANGE_SIZE = 1 << 1;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070053
Wale Ogunwalef6192862016-09-10 13:42:30 -070054 // TODO: Track parent marks like this in WindowContainer.
Craig Mautnerc00204b2013-03-05 15:02:14 -080055 TaskStack mStack;
Craig Mautner83162a92015-01-26 14:43:30 -080056 final int mTaskId;
Craig Mautnerac6f8432013-07-17 13:24:59 -070057 final int mUserId;
Wale Ogunwale3eadad72016-10-13 09:16:59 -070058 private boolean mDeferRemoval = false;
Craig Mautnere3119b72015-01-20 15:02:36 -080059 final WindowManagerService mService;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080060
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070061 // Content limits relative to the DisplayContent this sits in.
62 private Rect mBounds = new Rect();
Jorim Jaggi0429f352015-12-22 16:29:16 +010063 final Rect mPreparedFrozenBounds = new Rect();
Jorim Jaggi26c8c422016-05-09 19:57:25 -070064 final Configuration mPreparedFrozenMergedConfig = new Configuration();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070065
Jorim Jaggidc249c42015-12-15 14:57:31 -080066 // Bounds used to calculate the insets.
67 private final Rect mTempInsetBounds = new Rect();
68
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070069 // Device rotation as of the last time {@link #mBounds} was set.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070070 private int mRotation;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070071
72 // Whether mBounds is fullscreen
Wale Ogunwale5a2183d2016-09-19 12:26:13 -070073 private boolean mFillsParent = true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070074
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070075 // For comparison with DisplayContent bounds.
76 private Rect mTmpRect = new Rect();
77 // For handling display rotations.
78 private Rect mTmpRect2 = new Rect();
79
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080080 // Resize mode of the task. See {@link ActivityInfo#resizeMode}
81 private int mResizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -080082
Chong Zhang3005e752015-09-18 18:46:28 -070083 // Whether the task is currently being drag-resized
84 private boolean mDragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +010085 private int mDragResizeMode;
Chong Zhang3005e752015-09-18 18:46:28 -070086
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080087 private boolean mHomeTask;
88
Jiaquan Hedd1e66f2016-06-15 15:15:12 -070089 // Whether this task is an on-top launcher task, which is determined by the root activity.
90 private boolean mIsOnTopLauncher;
91
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -070092 Task(int taskId, TaskStack stack, int userId, WindowManagerService service, Rect bounds,
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080093 Configuration overrideConfig, boolean isOnTopLauncher, int resizeMode, boolean homeTask,
94 TaskWindowContainerController controller) {
Craig Mautner83162a92015-01-26 14:43:30 -080095 mTaskId = taskId;
Craig Mautnerc00204b2013-03-05 15:02:14 -080096 mStack = stack;
Craig Mautnerac6f8432013-07-17 13:24:59 -070097 mUserId = userId;
Craig Mautnere3119b72015-01-20 15:02:36 -080098 mService = service;
Jiaquan Hedd1e66f2016-06-15 15:15:12 -070099 mIsOnTopLauncher = isOnTopLauncher;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800100 mResizeMode = resizeMode;
101 mHomeTask = homeTask;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800102 setController(controller);
Andrii Kulian8072d112016-09-16 11:11:01 -0700103 setBounds(bounds, overrideConfig);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800104 }
105
106 DisplayContent getDisplayContent() {
107 return mStack.getDisplayContent();
108 }
109
Wale Ogunwale72919d22016-12-08 18:58:50 -0800110 @Override
111 void addChild(AppWindowToken wtoken, int addPos) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700112 final int lastPos = mChildren.size();
Craig Mautner83162a92015-01-26 14:43:30 -0800113 if (addPos >= lastPos) {
114 addPos = lastPos;
115 } else {
116 for (int pos = 0; pos < lastPos && pos < addPos; ++pos) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700117 if (mChildren.get(pos).removed) {
Craig Mautner83162a92015-01-26 14:43:30 -0800118 // addPos assumes removed tokens are actually gone.
119 ++addPos;
120 }
Craig Mautner01f79cf2014-08-27 09:56:02 -0700121 }
Craig Mautner42bf39e2014-02-21 16:46:22 -0800122 }
Wale Ogunwalef6192862016-09-10 13:42:30 -0700123
Andrii Kulian441e4492016-09-29 15:25:00 -0700124 final WindowContainer parent = wtoken.getParent();
125 if (parent != null) {
126 parent.removeChild(wtoken);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700127 }
Wale Ogunwale72919d22016-12-08 18:58:50 -0800128 super.addChild(wtoken, addPos);
Craig Mautner83162a92015-01-26 14:43:30 -0800129 wtoken.mTask = this;
Craig Mautner42bf39e2014-02-21 16:46:22 -0800130 mDeferRemoval = false;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800131 }
132
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700133 private boolean hasWindowsAlive() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700134 for (int i = mChildren.size() - 1; i >= 0; i--) {
135 if (mChildren.get(i).hasWindowsAlive()) {
Chong Zhang7e8eeb72016-01-06 19:14:47 -0800136 return true;
137 }
138 }
139 return false;
140 }
141
Wale Ogunwalef6192862016-09-10 13:42:30 -0700142 @Override
143 void removeIfPossible() {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700144 if (hasWindowsAlive() && mStack.isAnimating()) {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800145 if (DEBUG_STACK) Slog.i(TAG, "removeTask: deferring removing taskId=" + mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800146 mDeferRemoval = true;
147 return;
148 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800149 removeImmediately();
150 }
151
152 @Override
153 void removeImmediately() {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800154 if (DEBUG_STACK) Slog.i(TAG, "removeTask: removing taskId=" + mTaskId);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800155 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeTask");
Craig Mautnere3119b72015-01-20 15:02:36 -0800156 mDeferRemoval = false;
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800157
158 // Make sure to remove dim layer user first before removing task its from parent.
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700159 DisplayContent content = getDisplayContent();
160 if (content != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800161 content.mDimLayerController.removeDimLayerUser(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700162 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800163
164 super.removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800165 }
166
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800167 void reparent(TaskStack stack, int position) {
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800168 if (stack == mStack) {
169 return;
170 }
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800171 if (DEBUG_STACK) Slog.i(TAG, "reParentTask: removing taskId=" + mTaskId
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800172 + " from stack=" + mStack);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800173 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "reParentTask");
Andrii Kulian441e4492016-09-29 15:25:00 -0700174 getParent().removeChild(this);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800175 stack.addTask(this, position, showForAllUsers(), false /* moveParents */);
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800176 }
177
Andrii Kuliand2765632016-12-12 22:26:34 -0800178 /** @see com.android.server.am.ActivityManagerService#positionTaskInStack(int, int, int). */
Andrii Kulian1779e612016-10-12 21:58:25 -0700179 void positionTaskInStack(TaskStack stack, int position, Rect bounds,
180 Configuration overrideConfig) {
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800181 if (mStack == null) {
182 // There is an assumption that task already has a stack at this point, so lets make
183 // sure we comply with it.
184 throw new IllegalStateException("Trying to position task that has no parent.");
185 }
186 if (stack != mStack) {
Andrii Kuliand2765632016-12-12 22:26:34 -0800187 // Task is already attached to a different stack. First we need to remove it from there
188 // and add to top of the target stack. We will move it proper position afterwards.
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800189 if (DEBUG_STACK) Slog.i(TAG, "positionTaskInStack: removing taskId=" + mTaskId
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700190 + " from stack=" + mStack);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800191 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "positionTaskInStack");
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700192 mStack.removeChild(this);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800193 stack.addTask(this, position);
194 } else {
195 stack.positionChildAt(position, this, true /* includingParents */);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700196 }
Andrii Kuliand2765632016-12-12 22:26:34 -0800197
Andrii Kulian1779e612016-10-12 21:58:25 -0700198 resizeLocked(bounds, overrideConfig, false /* force */);
Jorim Jaggi5e6968d2016-02-19 18:02:13 -0800199
Wale Ogunwalef6192862016-09-10 13:42:30 -0700200 for (int activityNdx = mChildren.size() - 1; activityNdx >= 0; --activityNdx) {
201 mChildren.get(activityNdx).notifyMovedInStack();
Jorim Jaggi5e6968d2016-02-19 18:02:13 -0800202 }
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700203 }
204
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700205 @Override
Andrii Kuliand2765632016-12-12 22:26:34 -0800206 void onParentSet() {
207 // Update task bounds if needed.
208 updateDisplayInfo(getDisplayContent());
209
210 if (StackId.windowsAreScaleable(mStack.mStackId)) {
211 // We force windows out of SCALING_MODE_FREEZE so that we can continue to animate them
212 // while a resize is pending.
213 forceWindowsScaleable(true /* force */);
214 } else {
215 forceWindowsScaleable(false /* force */);
216 }
217 }
218
219 @Override
Wale Ogunwalef6192862016-09-10 13:42:30 -0700220 void removeChild(AppWindowToken token) {
221 if (!mChildren.contains(token)) {
222 Slog.e(TAG, "removeChild: token=" + this + " not found.");
223 return;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700224 }
225
Wale Ogunwalef6192862016-09-10 13:42:30 -0700226 super.removeChild(token);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700227
Wale Ogunwalef6192862016-09-10 13:42:30 -0700228 if (mChildren.isEmpty()) {
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800229 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeAppToken: last token");
Craig Mautnere3119b72015-01-20 15:02:36 -0800230 if (mDeferRemoval) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700231 removeIfPossible();
Craig Mautnere3119b72015-01-20 15:02:36 -0800232 }
Craig Mautnerc00204b2013-03-05 15:02:14 -0800233 }
Wale Ogunwalef6192862016-09-10 13:42:30 -0700234 token.mTask = null;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800235 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800236
Craig Mautnercbd84af2014-10-22 13:21:22 -0700237 void setSendingToBottom(boolean toBottom) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700238 for (int appTokenNdx = 0; appTokenNdx < mChildren.size(); appTokenNdx++) {
239 mChildren.get(appTokenNdx).sendingToBottom = toBottom;
Craig Mautnercbd84af2014-10-22 13:21:22 -0700240 }
241 }
242
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700243 /** Set the task bounds. Passing in null sets the bounds to fullscreen. */
Andrii Kulian8072d112016-09-16 11:11:01 -0700244 private int setBounds(Rect bounds, Configuration overrideConfig) {
245 if (overrideConfig == null) {
246 overrideConfig = Configuration.EMPTY;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700247 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700248 if (bounds == null && !Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700249 throw new IllegalArgumentException("null bounds but non empty configuration: "
Andrii Kulian8072d112016-09-16 11:11:01 -0700250 + overrideConfig);
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700251 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700252 if (bounds != null && Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700253 throw new IllegalArgumentException("non null bounds, but empty configuration");
254 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700255 boolean oldFullscreen = mFillsParent;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700256 int rotation = Surface.ROTATION_0;
257 final DisplayContent displayContent = mStack.getDisplayContent();
258 if (displayContent != null) {
259 displayContent.getLogicalDisplayRect(mTmpRect);
260 rotation = displayContent.getDisplayInfo().rotation;
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700261 mFillsParent = bounds == null;
262 if (mFillsParent) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700263 bounds = mTmpRect;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700264 }
265 }
266
267 if (bounds == null) {
268 // Can't set to fullscreen if we don't have a display to get bounds from...
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700269 return BOUNDS_CHANGE_NONE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700270 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700271 if (mBounds.equals(bounds) && oldFullscreen == mFillsParent && mRotation == rotation) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700272 return BOUNDS_CHANGE_NONE;
273 }
274
275 int boundsChange = BOUNDS_CHANGE_NONE;
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700276 if (mBounds.left != bounds.left || mBounds.top != bounds.top) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700277 boundsChange |= BOUNDS_CHANGE_POSITION;
278 }
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700279 if (mBounds.width() != bounds.width() || mBounds.height() != bounds.height()) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700280 boundsChange |= BOUNDS_CHANGE_SIZE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700281 }
282
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700283 mBounds.set(bounds);
Chong Zhangf66db432016-01-13 10:39:51 -0800284
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700285 mRotation = rotation;
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700286 if (displayContent != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800287 displayContent.mDimLayerController.updateDimLayer(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700288 }
Andrii Kulian441e4492016-09-29 15:25:00 -0700289 onOverrideConfigurationChanged(mFillsParent ? Configuration.EMPTY : overrideConfig);
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700290 return boundsChange;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700291 }
292
Jorim Jaggidc249c42015-12-15 14:57:31 -0800293 /**
294 * Sets the bounds used to calculate the insets. See
295 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
296 */
297 void setTempInsetBounds(Rect tempInsetBounds) {
298 if (tempInsetBounds != null) {
299 mTempInsetBounds.set(tempInsetBounds);
300 } else {
301 mTempInsetBounds.setEmpty();
302 }
303 }
304
305 /**
306 * Gets the bounds used to calculate the insets. See
307 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
308 */
309 void getTempInsetBounds(Rect out) {
310 out.set(mTempInsetBounds);
311 }
312
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800313 void setResizeable(int resizeMode) {
314 mResizeMode = resizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -0800315 }
316
317 boolean isResizeable() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700318 return ActivityInfo.isResizeableMode(mResizeMode) || mService.mForceResizableTasks;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800319 }
320
skuhne@google.com322347b2016-12-02 12:54:03 -0800321 /**
322 * Tests if the orientation should be preserved upon user interactive resizig operations.
323
324 * @return true if orientation should not get changed upon resizing operation.
325 */
326 boolean preserveOrientationOnResize() {
327 return mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY
328 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY
329 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
330 }
331
Jiaquan Hedd1e66f2016-06-15 15:15:12 -0700332 boolean isOnTopLauncher() {
333 return mIsOnTopLauncher;
334 }
335
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800336 boolean cropWindowsToStackBounds() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700337 return isResizeable();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800338 }
339
Jorim Jaggi42625d1b2016-02-11 20:11:07 -0800340 boolean isHomeTask() {
341 return mHomeTask;
342 }
343
Andrii Kulian8072d112016-09-16 11:11:01 -0700344 boolean resizeLocked(Rect bounds, Configuration overrideConfig, boolean forced) {
345 int boundsChanged = setBounds(bounds, overrideConfig);
Chong Zhang87b21722015-09-21 15:39:51 -0700346 if (forced) {
Chong Zhang3005e752015-09-18 18:46:28 -0700347 boundsChanged |= BOUNDS_CHANGE_SIZE;
Chong Zhang3005e752015-09-18 18:46:28 -0700348 }
349 if (boundsChanged == BOUNDS_CHANGE_NONE) {
350 return false;
351 }
352 if ((boundsChanged & BOUNDS_CHANGE_SIZE) == BOUNDS_CHANGE_SIZE) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700353 onResize();
Chong Zhangbd0d9372015-12-28 15:18:29 -0800354 } else {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700355 onMovedByResize();
Chong Zhang3005e752015-09-18 18:46:28 -0700356 }
357 return true;
358 }
359
Jorim Jaggi0429f352015-12-22 16:29:16 +0100360 /**
361 * Prepares the task bounds to be frozen with the current size. See
362 * {@link AppWindowToken#freezeBounds}.
363 */
364 void prepareFreezingBounds() {
365 mPreparedFrozenBounds.set(mBounds);
Andrii Kulian441e4492016-09-29 15:25:00 -0700366 mPreparedFrozenMergedConfig.setTo(getConfiguration());
Jorim Jaggi0429f352015-12-22 16:29:16 +0100367 }
368
Chong Zhang5117e272016-05-03 12:47:34 -0700369 /**
370 * Align the task to the adjusted bounds.
371 *
372 * @param adjustedBounds Adjusted bounds to which the task should be aligned.
373 * @param tempInsetBounds Insets bounds for the task.
374 * @param alignBottom True if the task's bottom should be aligned to the adjusted
375 * bounds's bottom; false if the task's top should be aligned
376 * the adjusted bounds's top.
377 */
Andrii Kulian441e4492016-09-29 15:25:00 -0700378 void alignToAdjustedBounds(Rect adjustedBounds, Rect tempInsetBounds, boolean alignBottom) {
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700379 // Task override config might be empty, while display or stack override config isn't, so
380 // we have to check merged override config here.
381 if (!isResizeable() || Configuration.EMPTY.equals(getMergedOverrideConfiguration())) {
Chong Zhang5117e272016-05-03 12:47:34 -0700382 return;
383 }
384
385 getBounds(mTmpRect2);
386 if (alignBottom) {
387 int offsetY = adjustedBounds.bottom - mTmpRect2.bottom;
388 mTmpRect2.offset(0, offsetY);
389 } else {
390 mTmpRect2.offsetTo(adjustedBounds.left, adjustedBounds.top);
391 }
392 setTempInsetBounds(tempInsetBounds);
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700393 resizeLocked(mTmpRect2, getOverrideConfiguration(), false /* forced */);
Chong Zhang5117e272016-05-03 12:47:34 -0700394 }
395
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700396 /** Return true if the current bound can get outputted to the rest of the system as-is. */
397 private boolean useCurrentBounds() {
398 final DisplayContent displayContent = mStack.getDisplayContent();
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700399 return mFillsParent
Wale Ogunwale3797c222015-10-27 14:21:58 -0700400 || !StackId.isTaskResizeableByDockedStack(mStack.mStackId)
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700401 || displayContent == null
Jorim Jaggife762342016-10-13 14:33:27 +0200402 || displayContent.getDockedStackIgnoringVisibility() != null;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700403 }
404
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800405 /** Original bounds of the task if applicable, otherwise fullscreen rect. */
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800406 void getBounds(Rect out) {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700407 if (useCurrentBounds()) {
408 // No need to adjust the output bounds if fullscreen or the docked stack is visible
409 // since it is already what we want to represent to the rest of the system.
410 out.set(mBounds);
411 return;
412 }
413
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800414 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
415 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700416 mStack.getDisplayContent().getLogicalDisplayRect(out);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700417 }
418
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800419 /**
420 * Calculate the maximum visible area of this task. If the task has only one app,
421 * the result will be visible frame of that app. If the task has more than one apps,
422 * we search from top down if the next app got different visible area.
423 *
424 * This effort is to handle the case where some task (eg. GMail composer) might pop up
425 * a dialog that's different in size from the activity below, in which case we should
426 * be dimming the entire task area behind the dialog.
427 *
428 * @param out Rect containing the max visible bounds.
429 * @return true if the task has some visible app windows; false otherwise.
430 */
431 boolean getMaxVisibleBounds(Rect out) {
432 boolean foundTop = false;
Wale Ogunwalef6192862016-09-10 13:42:30 -0700433 for (int i = mChildren.size() - 1; i >= 0; i--) {
434 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800435 // skip hidden (or about to hide) apps
436 if (token.mIsExiting || token.clientHidden || token.hiddenRequested) {
437 continue;
438 }
439 final WindowState win = token.findMainWindow();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800440 if (win == null) {
441 continue;
442 }
443 if (!foundTop) {
444 out.set(win.mVisibleFrame);
445 foundTop = true;
446 continue;
447 }
448 if (win.mVisibleFrame.left < out.left) {
449 out.left = win.mVisibleFrame.left;
450 }
451 if (win.mVisibleFrame.top < out.top) {
452 out.top = win.mVisibleFrame.top;
453 }
454 if (win.mVisibleFrame.right > out.right) {
455 out.right = win.mVisibleFrame.right;
456 }
457 if (win.mVisibleFrame.bottom > out.bottom) {
458 out.bottom = win.mVisibleFrame.bottom;
459 }
460 }
461 return foundTop;
462 }
463
464 /** Bounds of the task to be used for dimming, as well as touch related tests. */
465 @Override
466 public void getDimBounds(Rect out) {
Robert Carra86a6bf2016-04-08 17:34:16 -0700467 final DisplayContent displayContent = mStack.getDisplayContent();
468 // It doesn't matter if we in particular are part of the resize, since we couldn't have
469 // a DimLayer anyway if we weren't visible.
Wale Ogunwalef6192862016-09-10 13:42:30 -0700470 final boolean dockedResizing = displayContent != null
471 && displayContent.mDividerControllerLocked.isResizing();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800472 if (useCurrentBounds()) {
473 if (inFreeformWorkspace() && getMaxVisibleBounds(out)) {
474 return;
475 }
476
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700477 if (!mFillsParent) {
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700478 // When minimizing the docked stack when going home, we don't adjust the task bounds
479 // so we need to intersect the task bounds with the stack bounds here.
Robert Carra86a6bf2016-04-08 17:34:16 -0700480 //
481 // If we are Docked Resizing with snap points, the task bounds could be smaller than the stack
482 // bounds and so we don't even want to use them. Even if the app should not be resized the Dim
483 // should keep up with the divider.
484 if (dockedResizing) {
485 mStack.getBounds(out);
486 } else {
487 mStack.getBounds(mTmpRect);
488 mTmpRect.intersect(mBounds);
489 }
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700490 out.set(mTmpRect);
491 } else {
492 out.set(mBounds);
493 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800494 return;
495 }
496
Wale Ogunwalef6192862016-09-10 13:42:30 -0700497 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
498 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
499 if (displayContent != null) {
500 displayContent.getLogicalDisplayRect(out);
501 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800502 }
503
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100504 void setDragResizing(boolean dragResizing, int dragResizeMode) {
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800505 if (mDragResizing != dragResizing) {
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100506 if (!DragResizeMode.isModeAllowedForStack(mStack.mStackId, dragResizeMode)) {
507 throw new IllegalArgumentException("Drag resize mode not allow for stack stackId="
508 + mStack.mStackId + " dragResizeMode=" + dragResizeMode);
509 }
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800510 mDragResizing = dragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100511 mDragResizeMode = dragResizeMode;
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800512 resetDragResizingChangeReported();
513 }
514 }
515
Chong Zhang3005e752015-09-18 18:46:28 -0700516 boolean isDragResizing() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700517 return mDragResizing;
Chong Zhang3005e752015-09-18 18:46:28 -0700518 }
519
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100520 int getDragResizeMode() {
521 return mDragResizeMode;
522 }
523
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700524 void updateDisplayInfo(final DisplayContent displayContent) {
525 if (displayContent == null) {
526 return;
527 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700528 if (mFillsParent) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700529 setBounds(null, Configuration.EMPTY);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700530 return;
531 }
532 final int newRotation = displayContent.getDisplayInfo().rotation;
533 if (mRotation == newRotation) {
534 return;
535 }
536
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800537 // Device rotation changed.
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700538 // - We don't want the task to move around on the screen when this happens, so update the
539 // task bounds so it stays in the same place.
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800540 // - Rotate the bounds and notify activity manager if the task can be resized independently
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700541 // from its stack. The stack will take care of task rotation for the other case.
542 mTmpRect2.set(mBounds);
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800543
544 if (!StackId.isTaskResizeAllowed(mStack.mStackId)) {
Andrii Kulian441e4492016-09-29 15:25:00 -0700545 setBounds(mTmpRect2, getOverrideConfiguration());
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800546 return;
547 }
548
Wale Ogunwale94744212015-09-21 19:01:47 -0700549 displayContent.rotateBounds(mRotation, newRotation, mTmpRect2);
Andrii Kulian441e4492016-09-29 15:25:00 -0700550 if (setBounds(mTmpRect2, getOverrideConfiguration()) != BOUNDS_CHANGE_NONE) {
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800551 // Post message to inform activity manager of the bounds change simulating a one-way
552 // call. We do this to prevent a deadlock between window manager lock and activity
553 // manager lock been held.
554 mService.mH.obtainMessage(RESIZE_TASK, mTaskId,
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700555 RESIZE_MODE_SYSTEM_SCREEN_ROTATION, mBounds).sendToTarget();
Wale Ogunwale1ed0d892015-09-28 13:27:44 -0700556 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700557 }
558
Wale Ogunwalef6192862016-09-10 13:42:30 -0700559 /** Cancels any running app transitions associated with the task. */
Winsonc28098f2015-10-30 14:50:19 -0700560 void cancelTaskWindowTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700561 for (int i = mChildren.size() - 1; i >= 0; --i) {
562 mChildren.get(i).mAppAnimator.clearAnimation();
Winsonc28098f2015-10-30 14:50:19 -0700563 }
564 }
565
Wale Ogunwalef6192862016-09-10 13:42:30 -0700566 /** Cancels any running thumbnail transitions associated with the task. */
Winson13d30662015-11-06 15:30:29 -0800567 void cancelTaskThumbnailTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700568 for (int i = mChildren.size() - 1; i >= 0; --i) {
569 mChildren.get(i).mAppAnimator.clearThumbnail();
Winson13d30662015-11-06 15:30:29 -0800570 }
571 }
572
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700573 boolean showForAllUsers() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700574 final int tokensCount = mChildren.size();
Wale Ogunwale72919d22016-12-08 18:58:50 -0800575 return (tokensCount != 0) && mChildren.get(tokensCount - 1).mShowForAllUsers;
Jorim Jaggiff71d202016-04-14 13:12:36 -0700576 }
577
Chong Zhang09b21ef2015-09-14 10:20:21 -0700578 boolean inFreeformWorkspace() {
579 return mStack != null && mStack.mStackId == FREEFORM_WORKSPACE_STACK_ID;
580 }
581
Robert Carr03138452016-05-18 14:53:16 -0700582 boolean inPinnedWorkspace() {
583 return mStack != null && mStack.mStackId == PINNED_STACK_ID;
584 }
585
Robert Carre6275582016-02-29 15:45:45 -0800586 boolean isFloating() {
587 return StackId.tasksAreFloating(mStack.mStackId);
588 }
589
Chong Zhangd8ceb852015-11-11 14:53:41 -0800590 WindowState getTopVisibleAppMainWindow() {
591 final AppWindowToken token = getTopVisibleAppToken();
592 return token != null ? token.findMainWindow() : null;
Chong Zhang9184ec62015-09-24 12:32:21 -0700593 }
594
Chong Zhangd8ceb852015-11-11 14:53:41 -0800595 AppWindowToken getTopVisibleAppToken() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700596 for (int i = mChildren.size() - 1; i >= 0; i--) {
597 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800598 // skip hidden (or about to hide) apps
599 if (!token.mIsExiting && !token.clientHidden && !token.hiddenRequested) {
600 return token;
601 }
602 }
603 return null;
Chong Zhangbef461f2015-10-27 11:38:24 -0700604 }
605
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800606 @Override
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700607 public boolean dimFullscreen() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700608 return isFullscreen();
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700609 }
610
611 boolean isFullscreen() {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700612 if (useCurrentBounds()) {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700613 return mFillsParent;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700614 }
615 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
616 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
617 // system.
618 return true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700619 }
620
621 @Override
622 public DisplayInfo getDisplayInfo() {
623 return mStack.getDisplayContent().getDisplayInfo();
624 }
625
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700626 void forceWindowsScaleable(boolean force) {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700627 mService.openSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700628 try {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700629 for (int i = mChildren.size() - 1; i >= 0; i--) {
630 mChildren.get(i).forceWindowsScaleableInTransaction(force);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700631 }
632 } finally {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700633 mService.closeSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700634 }
635 }
636
Wale Ogunwalef6192862016-09-10 13:42:30 -0700637 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -0700638 boolean fillsParent() {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700639 return mFillsParent || !StackId.isTaskResizeAllowed(mStack.mStackId);
Wale Ogunwale51362492016-09-08 17:49:17 -0700640 }
641
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700642 @Override
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800643 public String toString() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700644 return "{taskId=" + mTaskId + " appTokens=" + mChildren + " mdr=" + mDeferRemoval + "}";
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800645 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700646
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700647 String getName() {
648 return toShortString();
649 }
650
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700651 @Override
652 public String toShortString() {
653 return "Task=" + mTaskId;
654 }
655
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800656 public void dump(String prefix, PrintWriter pw) {
657 final String doublePrefix = prefix + " ";
658
659 pw.println(prefix + "taskId=" + mTaskId);
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700660 pw.println(doublePrefix + "mFillsParent=" + mFillsParent);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800661 pw.println(doublePrefix + "mBounds=" + mBounds.toShortString());
662 pw.println(doublePrefix + "mdr=" + mDeferRemoval);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700663 pw.println(doublePrefix + "appTokens=" + mChildren);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800664 pw.println(doublePrefix + "mTempInsetBounds=" + mTempInsetBounds.toShortString());
665
666 final String triplePrefix = doublePrefix + " ";
667
Wale Ogunwalef6192862016-09-10 13:42:30 -0700668 for (int i = mChildren.size() - 1; i >= 0; i--) {
669 final AppWindowToken wtoken = mChildren.get(i);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800670 pw.println(triplePrefix + "Activity #" + i + " " + wtoken);
671 wtoken.dump(pw, triplePrefix);
672 }
673
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700674 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800675}