blob: 6e65ac19589ce11ebbab8b79b85ab7d616df6419 [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
Wale Ogunwale3797c222015-10-27 14:21:58 -070019import static android.app.ActivityManager.StackId.DOCKED_STACK_ID;
20import static android.app.ActivityManager.StackId.FREEFORM_WORKSPACE_STACK_ID;
21import static android.app.ActivityManager.StackId.HOME_STACK_ID;
Chong Zhangb15758a2015-11-17 12:12:03 -080022import static android.content.res.Configuration.ORIENTATION_LANDSCAPE;
Wale Ogunwale1ed0d892015-09-28 13:27:44 -070023import static android.app.ActivityManager.RESIZE_MODE_SYSTEM_SCREEN_ROTATION;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080024import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
25import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_RESIZE;
26import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STACK;
Wale Ogunwale1ed0d892015-09-28 13:27:44 -070027import static com.android.server.wm.WindowManagerService.H.RESIZE_TASK;
Chong Zhangc806d902015-11-30 09:44:27 -080028import static com.android.server.wm.WindowManagerService.H.SHOW_NON_RESIZEABLE_DOCK_TOAST;
29import static android.view.WindowManager.DOCKED_INVALID;
30import static android.view.WindowManager.DOCKED_LEFT;
31import static android.view.WindowManager.DOCKED_RIGHT;
32import static android.view.WindowManager.DOCKED_TOP;
Wale Ogunwale99db1862015-10-23 20:08:22 -070033
Wale Ogunwale3797c222015-10-27 14:21:58 -070034import android.app.ActivityManager.StackId;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070035import android.content.res.Configuration;
36import android.graphics.Rect;
Craig Mautner2c2549c2013-11-12 08:31:15 -080037import android.util.EventLog;
Craig Mautner42bf39e2014-02-21 16:46:22 -080038import android.util.Slog;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070039import android.view.DisplayInfo;
40import android.view.Surface;
41
Craig Mautnere3119b72015-01-20 15:02:36 -080042import com.android.server.EventLogTags;
Craig Mautner2c2549c2013-11-12 08:31:15 -080043
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070044import java.io.PrintWriter;
45import java.util.ArrayList;
46
47class Task implements DimLayer.DimLayerUser {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070048 // Return value from {@link setBounds} indicating no change was made to the Task bounds.
49 static final int BOUNDS_CHANGE_NONE = 0;
50 // Return value from {@link setBounds} indicating the position of the Task bounds changed.
51 static final int BOUNDS_CHANGE_POSITION = 1;
52 // Return value from {@link setBounds} indicating the size of the Task bounds changed.
53 static final int BOUNDS_CHANGE_SIZE = 1 << 1;
54
Craig Mautnerc00204b2013-03-05 15:02:14 -080055 TaskStack mStack;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080056 final AppTokenList mAppTokens = new AppTokenList();
Craig Mautner83162a92015-01-26 14:43:30 -080057 final int mTaskId;
Craig Mautnerac6f8432013-07-17 13:24:59 -070058 final int mUserId;
Craig Mautner9ef471f2014-02-07 13:11:47 -080059 boolean mDeferRemoval = false;
Craig Mautnere3119b72015-01-20 15:02:36 -080060 final WindowManagerService mService;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080061
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070062 // Content limits relative to the DisplayContent this sits in.
63 private Rect mBounds = new Rect();
64
Jorim Jaggidc249c42015-12-15 14:57:31 -080065 // Bounds used to calculate the insets.
66 private final Rect mTempInsetBounds = new Rect();
67
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070068 // Device rotation as of the last time {@link #mBounds} was set.
69 int mRotation;
70
71 // Whether mBounds is fullscreen
72 private boolean mFullscreen = true;
73
74 // Contains configurations settings that are different from the global configuration due to
75 // stack specific operations. E.g. {@link #setBounds}.
76 Configuration mOverrideConfig;
77
78 // For comparison with DisplayContent bounds.
79 private Rect mTmpRect = new Rect();
80 // For handling display rotations.
81 private Rect mTmpRect2 = new Rect();
82
Chong Zhangb15758a2015-11-17 12:12:03 -080083 // Whether the task is resizeable
84 private boolean mResizeable;
85
Chong Zhangc806d902015-11-30 09:44:27 -080086 // Whether we need to show toast about the app being non-resizeable when it becomes visible.
87 // This flag is set when a non-resizeable task is docked (or side-by-side). It's cleared
88 // after we show the toast.
89 private boolean mShowNonResizeableDockToast;
90
Chong Zhang3005e752015-09-18 18:46:28 -070091 // Whether the task is currently being drag-resized
92 private boolean mDragResizing;
93
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -070094 Task(int taskId, TaskStack stack, int userId, WindowManagerService service, Rect bounds,
95 Configuration config) {
Craig Mautner83162a92015-01-26 14:43:30 -080096 mTaskId = taskId;
Craig Mautnerc00204b2013-03-05 15:02:14 -080097 mStack = stack;
Craig Mautnerac6f8432013-07-17 13:24:59 -070098 mUserId = userId;
Craig Mautnere3119b72015-01-20 15:02:36 -080099 mService = service;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700100 setBounds(bounds, config);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800101 }
102
103 DisplayContent getDisplayContent() {
104 return mStack.getDisplayContent();
105 }
106
Chong Zhangc806d902015-11-30 09:44:27 -0800107 void setShowNonResizeableDockToast() {
108 mShowNonResizeableDockToast = true;
109 }
110
111 void scheduleShowNonResizeableDockToastIfNeeded() {
112 if (!mShowNonResizeableDockToast) {
113 return;
114 }
115 final DisplayContent displayContent = mStack.getDisplayContent();
116 // If docked stack is not yet visible, we don't want to show the toast yet,
117 // since we need the visible rect of the docked task to position the toast.
118 if (displayContent == null || displayContent.getDockedStackLocked() == null) {
119 return;
120 }
121
122 mShowNonResizeableDockToast = false;
123
124 final int dockSide = mStack.getDockSide();
125 int xOffset = 0;
126 int yOffset = 0;
127 if (dockSide != DOCKED_INVALID) {
128 mStack.getBounds(mTmpRect);
129 displayContent.getLogicalDisplayRect(mTmpRect2);
130
131 if (dockSide == DOCKED_LEFT || dockSide == DOCKED_RIGHT) {
132 xOffset = mTmpRect.centerX() - mTmpRect2.centerX();
133 } else if (dockSide == DOCKED_TOP) {
134 // We don't adjust for DOCKED_BOTTOM case since it's already at the bottom.
135 yOffset = mTmpRect2.bottom - mTmpRect.bottom;
136 }
137 mService.mH.obtainMessage(
138 SHOW_NON_RESIZEABLE_DOCK_TOAST, xOffset, yOffset).sendToTarget();
139 }
140 }
141
Craig Mautnerc00204b2013-03-05 15:02:14 -0800142 void addAppToken(int addPos, AppWindowToken wtoken) {
Craig Mautner42bf39e2014-02-21 16:46:22 -0800143 final int lastPos = mAppTokens.size();
Craig Mautner83162a92015-01-26 14:43:30 -0800144 if (addPos >= lastPos) {
145 addPos = lastPos;
146 } else {
147 for (int pos = 0; pos < lastPos && pos < addPos; ++pos) {
148 if (mAppTokens.get(pos).removed) {
149 // addPos assumes removed tokens are actually gone.
150 ++addPos;
151 }
Craig Mautner01f79cf2014-08-27 09:56:02 -0700152 }
Craig Mautner42bf39e2014-02-21 16:46:22 -0800153 }
Craig Mautnerc00204b2013-03-05 15:02:14 -0800154 mAppTokens.add(addPos, wtoken);
Craig Mautner83162a92015-01-26 14:43:30 -0800155 wtoken.mTask = this;
Craig Mautner42bf39e2014-02-21 16:46:22 -0800156 mDeferRemoval = false;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800157 }
158
Craig Mautnere3119b72015-01-20 15:02:36 -0800159 void removeLocked() {
160 if (!mAppTokens.isEmpty() && mStack.isAnimating()) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800161 if (DEBUG_STACK) Slog.i(TAG_WM, "removeTask: deferring removing taskId=" + mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800162 mDeferRemoval = true;
163 return;
164 }
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800165 if (DEBUG_STACK) Slog.i(TAG_WM, "removeTask: removing taskId=" + mTaskId);
Craig Mautner83162a92015-01-26 14:43:30 -0800166 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "removeTask");
Craig Mautnere3119b72015-01-20 15:02:36 -0800167 mDeferRemoval = false;
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700168 DisplayContent content = getDisplayContent();
169 if (content != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800170 content.mDimLayerController.removeDimLayerUser(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700171 }
Craig Mautnere3119b72015-01-20 15:02:36 -0800172 mStack.removeTask(this);
Craig Mautner83162a92015-01-26 14:43:30 -0800173 mService.mTaskIdToTask.delete(mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800174 }
175
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800176 void moveTaskToStack(TaskStack stack, boolean toTop) {
177 if (stack == mStack) {
178 return;
179 }
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800180 if (DEBUG_STACK) Slog.i(TAG_WM, "moveTaskToStack: removing taskId=" + mTaskId
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800181 + " from stack=" + mStack);
Wale Ogunwale000957c2015-04-03 08:19:12 -0700182 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "moveTask");
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800183 if (mStack != null) {
184 mStack.removeTask(this);
185 }
186 stack.addTask(this, toTop);
187 }
188
Wale Ogunwale935e5022015-11-10 12:36:10 -0800189 void positionTaskInStack(TaskStack stack, int position, Rect bounds, Configuration config) {
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700190 if (mStack != null && stack != mStack) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800191 if (DEBUG_STACK) Slog.i(TAG_WM, "positionTaskInStack: removing taskId=" + mTaskId
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700192 + " from stack=" + mStack);
193 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "moveTask");
194 mStack.removeTask(this);
195 }
196 stack.positionTask(this, position, showForAllUsers());
Wale Ogunwale935e5022015-11-10 12:36:10 -0800197 setBounds(bounds, config);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700198 }
199
Craig Mautnerc00204b2013-03-05 15:02:14 -0800200 boolean removeAppToken(AppWindowToken wtoken) {
Craig Mautner42bf39e2014-02-21 16:46:22 -0800201 boolean removed = mAppTokens.remove(wtoken);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800202 if (mAppTokens.size() == 0) {
Wale Ogunwale000957c2015-04-03 08:19:12 -0700203 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId,
Craig Mautner2c2549c2013-11-12 08:31:15 -0800204 "removeAppToken: last token");
Craig Mautnere3119b72015-01-20 15:02:36 -0800205 if (mDeferRemoval) {
206 removeLocked();
207 }
Craig Mautnerc00204b2013-03-05 15:02:14 -0800208 }
Craig Mautner83162a92015-01-26 14:43:30 -0800209 wtoken.mTask = null;
210 /* Leave mTaskId for now, it might be useful for debug
211 wtoken.mTaskId = -1;
212 */
Craig Mautner42bf39e2014-02-21 16:46:22 -0800213 return removed;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800214 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800215
Craig Mautnercbd84af2014-10-22 13:21:22 -0700216 void setSendingToBottom(boolean toBottom) {
217 for (int appTokenNdx = 0; appTokenNdx < mAppTokens.size(); appTokenNdx++) {
218 mAppTokens.get(appTokenNdx).sendingToBottom = toBottom;
219 }
220 }
221
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700222 /** Set the task bounds. Passing in null sets the bounds to fullscreen. */
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700223 int setBounds(Rect bounds, Configuration config) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700224 if (config == null) {
225 config = Configuration.EMPTY;
226 }
227 if (bounds == null && !Configuration.EMPTY.equals(config)) {
228 throw new IllegalArgumentException("null bounds but non empty configuration: "
229 + config);
230 }
231 if (bounds != null && Configuration.EMPTY.equals(config)) {
232 throw new IllegalArgumentException("non null bounds, but empty configuration");
233 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700234 boolean oldFullscreen = mFullscreen;
235 int rotation = Surface.ROTATION_0;
236 final DisplayContent displayContent = mStack.getDisplayContent();
237 if (displayContent != null) {
238 displayContent.getLogicalDisplayRect(mTmpRect);
239 rotation = displayContent.getDisplayInfo().rotation;
240 if (bounds == null) {
241 bounds = mTmpRect;
242 mFullscreen = true;
243 } else {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700244 mFullscreen = mTmpRect.equals(bounds);
245 }
246 }
247
248 if (bounds == null) {
249 // Can't set to fullscreen if we don't have a display to get bounds from...
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700250 return BOUNDS_CHANGE_NONE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700251 }
252 if (mBounds.equals(bounds) && oldFullscreen == mFullscreen && mRotation == rotation) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700253 return BOUNDS_CHANGE_NONE;
254 }
255
256 int boundsChange = BOUNDS_CHANGE_NONE;
Chong Zhang48a87a52015-12-03 15:36:21 -0800257 if (mBounds.left != bounds.left || mBounds.top != bounds.top) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700258 boundsChange |= BOUNDS_CHANGE_POSITION;
259 }
260 if (mBounds.width() != bounds.width() || mBounds.height() != bounds.height()) {
261 boundsChange |= BOUNDS_CHANGE_SIZE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700262 }
263
264 mBounds.set(bounds);
265 mRotation = rotation;
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700266 if (displayContent != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800267 displayContent.mDimLayerController.updateDimLayer(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700268 }
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700269 mOverrideConfig = mFullscreen ? Configuration.EMPTY : config;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700270 return boundsChange;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700271 }
272
Jorim Jaggidc249c42015-12-15 14:57:31 -0800273 /**
274 * Sets the bounds used to calculate the insets. See
275 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
276 */
277 void setTempInsetBounds(Rect tempInsetBounds) {
278 if (tempInsetBounds != null) {
279 mTempInsetBounds.set(tempInsetBounds);
280 } else {
281 mTempInsetBounds.setEmpty();
282 }
283 }
284
285 /**
286 * Gets the bounds used to calculate the insets. See
287 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
288 */
289 void getTempInsetBounds(Rect out) {
290 out.set(mTempInsetBounds);
291 }
292
Chong Zhangb15758a2015-11-17 12:12:03 -0800293 void setResizeable(boolean resizeable) {
294 mResizeable = resizeable;
295 }
296
297 boolean isResizeable() {
298 return mResizeable;
299 }
300
Chong Zhang87b21722015-09-21 15:39:51 -0700301 boolean resizeLocked(Rect bounds, Configuration configuration, boolean forced) {
Chong Zhang3005e752015-09-18 18:46:28 -0700302 int boundsChanged = setBounds(bounds, configuration);
Chong Zhang87b21722015-09-21 15:39:51 -0700303 if (forced) {
Chong Zhang3005e752015-09-18 18:46:28 -0700304 boundsChanged |= BOUNDS_CHANGE_SIZE;
Chong Zhang3005e752015-09-18 18:46:28 -0700305 }
306 if (boundsChanged == BOUNDS_CHANGE_NONE) {
307 return false;
308 }
309 if ((boundsChanged & BOUNDS_CHANGE_SIZE) == BOUNDS_CHANGE_SIZE) {
310 resizeWindows();
Chong Zhangbd0d9372015-12-28 15:18:29 -0800311 } else {
312 moveWindows();
Chong Zhang3005e752015-09-18 18:46:28 -0700313 }
314 return true;
315 }
316
Chong Zhangb15758a2015-11-17 12:12:03 -0800317 boolean scrollLocked(Rect bounds) {
318 // shift the task bound if it doesn't fully cover the stack area
319 mStack.getDimBounds(mTmpRect);
320 if (mService.mCurConfiguration.orientation == ORIENTATION_LANDSCAPE) {
321 if (bounds.left > mTmpRect.left) {
322 bounds.left = mTmpRect.left;
323 bounds.right = mTmpRect.left + mBounds.width();
324 } else if (bounds.right < mTmpRect.right) {
325 bounds.left = mTmpRect.right - mBounds.width();
326 bounds.right = mTmpRect.right;
327 }
328 } else {
329 if (bounds.top > mTmpRect.top) {
330 bounds.top = mTmpRect.top;
331 bounds.bottom = mTmpRect.top + mBounds.height();
332 } else if (bounds.bottom < mTmpRect.bottom) {
333 bounds.top = mTmpRect.bottom - mBounds.height();
334 bounds.bottom = mTmpRect.bottom;
335 }
336 }
337
338 if (bounds.equals(mBounds)) {
339 return false;
340 }
341 // Normal setBounds() does not allow non-null bounds for fullscreen apps.
342 // We only change bounds for the scrolling case without change it size,
343 // on resizing path we should still want the validation.
344 mBounds.set(bounds);
345 for (int activityNdx = mAppTokens.size() - 1; activityNdx >= 0; --activityNdx) {
346 final ArrayList<WindowState> windows = mAppTokens.get(activityNdx).allAppWindows;
347 for (int winNdx = windows.size() - 1; winNdx >= 0; --winNdx) {
348 final WindowState win = windows.get(winNdx);
349 win.mXOffset = bounds.left;
350 win.mYOffset = bounds.top;
351 }
352 }
353 return true;
354 }
355
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700356 /** Return true if the current bound can get outputted to the rest of the system as-is. */
357 private boolean useCurrentBounds() {
358 final DisplayContent displayContent = mStack.getDisplayContent();
359 if (mFullscreen
Wale Ogunwale3797c222015-10-27 14:21:58 -0700360 || !StackId.isTaskResizeableByDockedStack(mStack.mStackId)
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700361 || displayContent == null
362 || displayContent.getDockedStackLocked() != null) {
363 return true;
364 }
365 return false;
366 }
367
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800368 /** Original bounds of the task if applicable, otherwise fullscreen rect. */
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700369 public void getBounds(Rect out) {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700370 if (useCurrentBounds()) {
371 // No need to adjust the output bounds if fullscreen or the docked stack is visible
372 // since it is already what we want to represent to the rest of the system.
373 out.set(mBounds);
374 return;
375 }
376
377 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
378 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
379 // system.
380 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;
397 for (int i = mAppTokens.size() - 1; i >= 0; i--) {
Chong Zhangd8ceb852015-11-11 14:53:41 -0800398 final AppWindowToken token = mAppTokens.get(i);
399 // 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) {
431 if (useCurrentBounds()) {
432 if (inFreeformWorkspace() && getMaxVisibleBounds(out)) {
433 return;
434 }
435
436 out.set(mBounds);
437 return;
438 }
439
440 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
441 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
442 // system.
443 mStack.getDisplayContent().getLogicalDisplayRect(out);
444 }
445
Chong Zhang3005e752015-09-18 18:46:28 -0700446 void setDragResizing(boolean dragResizing) {
Chong Zhang3005e752015-09-18 18:46:28 -0700447 mDragResizing = dragResizing;
448 }
449
450 boolean isDragResizing() {
451 return mDragResizing;
452 }
453
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700454 void updateDisplayInfo(final DisplayContent displayContent) {
455 if (displayContent == null) {
456 return;
457 }
458 if (mFullscreen) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700459 setBounds(null, Configuration.EMPTY);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700460 return;
461 }
462 final int newRotation = displayContent.getDisplayInfo().rotation;
463 if (mRotation == newRotation) {
464 return;
465 }
466
467 // Device rotation changed. We don't want the task to move around on the screen when
468 // this happens, so update the task bounds so it stays in the same place.
Wale Ogunwale94744212015-09-21 19:01:47 -0700469 mTmpRect2.set(mBounds);
470 displayContent.rotateBounds(mRotation, newRotation, mTmpRect2);
Wale Ogunwale1ed0d892015-09-28 13:27:44 -0700471 if (setBounds(mTmpRect2, mOverrideConfig) != BOUNDS_CHANGE_NONE) {
472 // Post message to inform activity manager of the bounds change simulating
473 // a one-way call. We do this to prevent a deadlock between window manager
Filip Gruszczynski44bc4da2015-10-03 13:59:49 -0700474 // lock and activity manager lock been held. Only tasks within the freeform stack
475 // are resizeable independently of their stack resizing.
476 if (mStack.mStackId == FREEFORM_WORKSPACE_STACK_ID) {
477 mService.mH.sendMessage(mService.mH.obtainMessage(
478 RESIZE_TASK, mTaskId, RESIZE_MODE_SYSTEM_SCREEN_ROTATION, mBounds));
479 }
Wale Ogunwale1ed0d892015-09-28 13:27:44 -0700480 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700481 }
482
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700483 void resizeWindows() {
484 final ArrayList<WindowState> resizingWindows = mService.mResizingWindows;
485 for (int activityNdx = mAppTokens.size() - 1; activityNdx >= 0; --activityNdx) {
486 final ArrayList<WindowState> windows = mAppTokens.get(activityNdx).allAppWindows;
487 for (int winNdx = windows.size() - 1; winNdx >= 0; --winNdx) {
488 final WindowState win = windows.get(winNdx);
489 if (!resizingWindows.contains(win)) {
Chong Zhangbd0d9372015-12-28 15:18:29 -0800490 if (DEBUG_RESIZE) Slog.d(TAG_WM, "resizeWindows: Resizing " + win);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700491 resizingWindows.add(win);
492 }
493 }
494 }
495 }
496
Chong Zhangbd0d9372015-12-28 15:18:29 -0800497 void moveWindows() {
498 for (int activityNdx = mAppTokens.size() - 1; activityNdx >= 0; --activityNdx) {
499 final ArrayList<WindowState> windows = mAppTokens.get(activityNdx).allAppWindows;
500 for (int winNdx = windows.size() - 1; winNdx >= 0; --winNdx) {
501 final WindowState win = windows.get(winNdx);
502 if (DEBUG_RESIZE) Slog.d(TAG_WM, "moveWindows: Moving " + win);
503 win.mMovedByResize = true;
504 }
505 }
506 }
507
Winsonc28098f2015-10-30 14:50:19 -0700508 /**
509 * Cancels any running app transitions associated with the task.
510 */
511 void cancelTaskWindowTransition() {
512 for (int activityNdx = mAppTokens.size() - 1; activityNdx >= 0; --activityNdx) {
513 mAppTokens.get(activityNdx).mAppAnimator.clearAnimation();
514 }
515 }
516
Winson13d30662015-11-06 15:30:29 -0800517 /**
518 * Cancels any running thumbnail transitions associated with the task.
519 */
520 void cancelTaskThumbnailTransition() {
521 for (int activityNdx = mAppTokens.size() - 1; activityNdx >= 0; --activityNdx) {
522 mAppTokens.get(activityNdx).mAppAnimator.clearThumbnail();
523 }
524 }
525
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700526 boolean showForAllUsers() {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700527 final int tokensCount = mAppTokens.size();
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700528 return (tokensCount != 0) && mAppTokens.get(tokensCount - 1).showForAllUsers;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700529 }
530
Chong Zhangdb20b5f2015-10-23 14:01:43 -0700531 boolean inHomeStack() {
532 return mStack != null && mStack.mStackId == HOME_STACK_ID;
533 }
534
Chong Zhang09b21ef2015-09-14 10:20:21 -0700535 boolean inFreeformWorkspace() {
536 return mStack != null && mStack.mStackId == FREEFORM_WORKSPACE_STACK_ID;
537 }
538
Filip Gruszczynski955b2fc2015-10-15 14:46:07 -0700539 boolean inDockedWorkspace() {
540 return mStack != null && mStack.mStackId == DOCKED_STACK_ID;
541 }
542
Chong Zhangb15758a2015-11-17 12:12:03 -0800543 boolean isResizeableByDockedStack() {
544 return mStack != null && getDisplayContent().getDockedStackLocked() != null &&
545 StackId.isTaskResizeableByDockedStack(mStack.mStackId);
546 }
547
548 /**
549 * Whether the task should be treated as if it's docked. Returns true if the task
550 * is currently in docked workspace, or it's side-by-side to a docked task.
551 */
552 boolean isDockedInEffect() {
553 return inDockedWorkspace() || isResizeableByDockedStack();
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() {
562 for (int i = mAppTokens.size() - 1; i >= 0; i--) {
563 final AppWindowToken token = mAppTokens.get(i);
564 // 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 Ogunwalee4a0c572015-06-30 08:40:31 -0700573 public boolean isFullscreen() {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700574 if (useCurrentBounds()) {
575 return mFullscreen;
576 }
577 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
578 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
579 // system.
580 return true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700581 }
582
583 @Override
584 public DisplayInfo getDisplayInfo() {
585 return mStack.getDisplayContent().getDisplayInfo();
586 }
587
588 @Override
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800589 public String toString() {
Craig Mautner83162a92015-01-26 14:43:30 -0800590 return "{taskId=" + mTaskId + " appTokens=" + mAppTokens + " mdr=" + mDeferRemoval + "}";
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800591 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700592
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700593 @Override
594 public String toShortString() {
595 return "Task=" + mTaskId;
596 }
597
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700598 public void printTo(String prefix, PrintWriter pw) {
Wale Ogunwale56b88af2015-12-01 07:21:59 -0800599 pw.print(prefix); pw.print("taskId="); pw.println(mTaskId);
600 pw.print(prefix + prefix); pw.print("mFullscreen="); pw.println(mFullscreen);
601 pw.print(prefix + prefix); pw.print("mBounds="); pw.println(mBounds.toShortString());
602 pw.print(prefix + prefix); pw.print("mdr="); pw.println(mDeferRemoval);
603 pw.print(prefix + prefix); pw.print("appTokens="); pw.println(mAppTokens);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700604 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800605}