blob: 66ebc9b27358e44a0d45c6e338def0900ab3a015 [file] [log] [blame]
Chong Zhang8e89b312015-09-09 15:09:30 -07001/*
2 * Copyright (C) 2015 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 Ogunwale65ebd952018-04-25 15:41:44 -070019import static android.app.ActivityTaskManager.RESIZE_MODE_USER;
20import static android.app.ActivityTaskManager.RESIZE_MODE_USER_FORCED;
Wale Ogunwalecad05a02015-09-25 10:41:44 -070021import static android.os.Trace.TRACE_TAG_WINDOW_MANAGER;
Garfield Tan07544cd2018-09-12 16:16:54 -070022
23import static com.android.server.wm.DragResizeMode.DRAG_RESIZE_MODE_FREEFORM;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080024import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ORIENTATION;
25import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_TASK_POSITIONING;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080026import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
27import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Filip Gruszczynski57b6cce2015-10-06 09:50:51 -070028import static com.android.server.wm.WindowManagerService.dipToPixel;
Wale Ogunwale231b06e2015-09-16 12:03:09 -070029import static com.android.server.wm.WindowState.MINIMUM_VISIBLE_HEIGHT_IN_DP;
30import static com.android.server.wm.WindowState.MINIMUM_VISIBLE_WIDTH_IN_DP;
Chong Zhang8e89b312015-09-09 15:09:30 -070031
32import android.annotation.IntDef;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070033import android.app.IActivityTaskManager;
Chong Zhang8e89b312015-09-09 15:09:30 -070034import android.graphics.Point;
35import android.graphics.Rect;
36import android.os.Looper;
37import android.os.Process;
38import android.os.RemoteException;
Wale Ogunwalecad05a02015-09-25 10:41:44 -070039import android.os.Trace;
Chong Zhang8e89b312015-09-09 15:09:30 -070040import android.util.DisplayMetrics;
41import android.util.Slog;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080042import android.view.BatchedInputEventReceiver;
Wale Ogunwale4f52bc62015-09-24 13:47:31 -070043import android.view.Choreographer;
Chong Zhang8e89b312015-09-09 15:09:30 -070044import android.view.Display;
45import android.view.InputChannel;
46import android.view.InputDevice;
47import android.view.InputEvent;
Chong Zhang8e89b312015-09-09 15:09:30 -070048import android.view.MotionEvent;
49import android.view.WindowManager;
50
skuhne@google.com322347b2016-12-02 12:54:03 -080051import com.android.internal.annotations.VisibleForTesting;
Wale Ogunwale228d4042015-09-13 10:17:34 -070052import com.android.server.input.InputApplicationHandle;
53import com.android.server.input.InputWindowHandle;
Wale Ogunwale228d4042015-09-13 10:17:34 -070054
55import java.lang.annotation.Retention;
56import java.lang.annotation.RetentionPolicy;
57
Robert Carrf59b8dd2017-10-02 18:58:36 -070058class TaskPositioner {
skuhne@google.com322347b2016-12-02 12:54:03 -080059 private static final boolean DEBUG_ORIENTATION_VIOLATIONS = false;
Jorim Jaggibc5425c2016-03-01 13:51:16 +010060 private static final String TAG_LOCAL = "TaskPositioner";
61 private static final String TAG = TAG_WITH_CLASS_NAME ? TAG_LOCAL : TAG_WM;
Chong Zhang8e89b312015-09-09 15:09:30 -070062
Garfield Tan6caf1d8c2018-01-18 12:37:50 -080063 private static Factory sFactory;
64
Wale Ogunwale228d4042015-09-13 10:17:34 -070065 // The margin the pointer position has to be within the side of the screen to be
66 // considered at the side of the screen.
Filip Gruszczynski57b6cce2015-10-06 09:50:51 -070067 static final int SIDE_MARGIN_DIP = 100;
Wale Ogunwale228d4042015-09-13 10:17:34 -070068
Chong Zhang8e89b312015-09-09 15:09:30 -070069 @IntDef(flag = true,
70 value = {
71 CTRL_NONE,
72 CTRL_LEFT,
73 CTRL_RIGHT,
74 CTRL_TOP,
75 CTRL_BOTTOM
76 })
77 @Retention(RetentionPolicy.SOURCE)
78 @interface CtrlType {}
79
80 private static final int CTRL_NONE = 0x0;
81 private static final int CTRL_LEFT = 0x1;
82 private static final int CTRL_RIGHT = 0x2;
83 private static final int CTRL_TOP = 0x4;
84 private static final int CTRL_BOTTOM = 0x8;
85
Filip Gruszczynski64b6b442016-01-18 13:20:58 -080086 public static final float RESIZING_HINT_ALPHA = 0.5f;
87
88 public static final int RESIZING_HINT_DURATION_MS = 0;
89
skuhne@google.com322347b2016-12-02 12:54:03 -080090 // The minimal aspect ratio which needs to be met to count as landscape (or 1/.. for portrait).
91 // Note: We do not use the 1.33 from the CDD here since the user is allowed to use what ever
92 // aspect he desires.
93 @VisibleForTesting
94 static final float MIN_ASPECT = 1.2f;
95
Chong Zhang8e89b312015-09-09 15:09:30 -070096 private final WindowManagerService mService;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070097 private final IActivityTaskManager mActivityManager;
Chong Zhang8e89b312015-09-09 15:09:30 -070098 private WindowPositionerEventReceiver mInputEventReceiver;
Riddle Hsu654a6f92018-07-13 22:59:36 +080099 private DisplayContent mDisplayContent;
Chong Zhang8e89b312015-09-09 15:09:30 -0700100 private final DisplayMetrics mDisplayMetrics = new DisplayMetrics();
Wale Ogunwale228d4042015-09-13 10:17:34 -0700101 private Rect mTmpRect = new Rect();
102 private int mSideMargin;
Wale Ogunwaleb8051b82015-09-17 15:41:52 -0700103 private int mMinVisibleWidth;
104 private int mMinVisibleHeight;
Chong Zhang8e89b312015-09-09 15:09:30 -0700105
Chong Zhang3005e752015-09-18 18:46:28 -0700106 private Task mTask;
Chong Zhang09b21ef2015-09-14 10:20:21 -0700107 private boolean mResizing;
skuhne@google.com322347b2016-12-02 12:54:03 -0800108 private boolean mPreserveOrientation;
109 private boolean mStartOrientationWasLandscape;
Chong Zhang8e89b312015-09-09 15:09:30 -0700110 private final Rect mWindowOriginalBounds = new Rect();
111 private final Rect mWindowDragBounds = new Rect();
skuhne@google.com322347b2016-12-02 12:54:03 -0800112 private final Point mMaxVisibleSize = new Point();
Chong Zhang8e89b312015-09-09 15:09:30 -0700113 private float mStartDragX;
114 private float mStartDragY;
115 @CtrlType
116 private int mCtrlType = CTRL_NONE;
Wale Ogunwale6a804b82015-09-23 21:04:21 -0700117 private boolean mDragEnded = false;
Chong Zhang8e89b312015-09-09 15:09:30 -0700118
119 InputChannel mServerChannel;
120 InputChannel mClientChannel;
121 InputApplicationHandle mDragApplicationHandle;
122 InputWindowHandle mDragWindowHandle;
123
Wale Ogunwale4f52bc62015-09-24 13:47:31 -0700124 private final class WindowPositionerEventReceiver extends BatchedInputEventReceiver {
125 public WindowPositionerEventReceiver(
126 InputChannel inputChannel, Looper looper, Choreographer choreographer) {
127 super(inputChannel, looper, choreographer);
Chong Zhang8e89b312015-09-09 15:09:30 -0700128 }
129
130 @Override
Siarhei Vishniakou85ddfff2018-01-31 16:49:36 -0800131 public void onInputEvent(InputEvent event) {
Chong Zhang8e89b312015-09-09 15:09:30 -0700132 if (!(event instanceof MotionEvent)
133 || (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) == 0) {
134 return;
135 }
136 final MotionEvent motionEvent = (MotionEvent) event;
137 boolean handled = false;
138
139 try {
Wale Ogunwale6a804b82015-09-23 21:04:21 -0700140 if (mDragEnded) {
141 // The drag has ended but the clean-up message has not been processed by
142 // window manager. Drop events that occur after this until window manager
143 // has a chance to clean-up the input handle.
144 handled = true;
145 return;
146 }
147
Chong Zhang8e89b312015-09-09 15:09:30 -0700148 final float newX = motionEvent.getRawX();
149 final float newY = motionEvent.getRawY();
150
151 switch (motionEvent.getAction()) {
152 case MotionEvent.ACTION_DOWN: {
153 if (DEBUG_TASK_POSITIONING) {
154 Slog.w(TAG, "ACTION_DOWN @ {" + newX + ", " + newY + "}");
155 }
156 } break;
157
158 case MotionEvent.ACTION_MOVE: {
159 if (DEBUG_TASK_POSITIONING){
160 Slog.w(TAG, "ACTION_MOVE @ {" + newX + ", " + newY + "}");
161 }
Wale Ogunwaledb485de2018-10-29 09:47:07 -0700162 synchronized (mService.mGlobalLock) {
Wale Ogunwale6a804b82015-09-23 21:04:21 -0700163 mDragEnded = notifyMoveLocked(newX, newY);
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800164 mTask.getDimBounds(mTmpRect);
Chong Zhang8e89b312015-09-09 15:09:30 -0700165 }
Wale Ogunwale04ad7b12015-10-02 12:43:27 -0700166 if (!mTmpRect.equals(mWindowDragBounds)) {
167 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER,
168 "wm.TaskPositioner.resizeTask");
169 try {
Daichi Hirono67f2f4b2018-05-25 16:07:30 +0900170 mActivityManager.resizeTask(
Wale Ogunwale04ad7b12015-10-02 12:43:27 -0700171 mTask.mTaskId, mWindowDragBounds, RESIZE_MODE_USER);
172 } catch (RemoteException e) {
173 }
174 Trace.traceEnd(Trace.TRACE_TAG_WINDOW_MANAGER);
175 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700176 } break;
177
178 case MotionEvent.ACTION_UP: {
179 if (DEBUG_TASK_POSITIONING) {
180 Slog.w(TAG, "ACTION_UP @ {" + newX + ", " + newY + "}");
181 }
Wale Ogunwale6a804b82015-09-23 21:04:21 -0700182 mDragEnded = true;
Chong Zhang8e89b312015-09-09 15:09:30 -0700183 } break;
184
185 case MotionEvent.ACTION_CANCEL: {
186 if (DEBUG_TASK_POSITIONING) {
187 Slog.w(TAG, "ACTION_CANCEL @ {" + newX + ", " + newY + "}");
188 }
Wale Ogunwale6a804b82015-09-23 21:04:21 -0700189 mDragEnded = true;
Chong Zhang8e89b312015-09-09 15:09:30 -0700190 } break;
191 }
192
Wale Ogunwale6a804b82015-09-23 21:04:21 -0700193 if (mDragEnded) {
Wale Ogunwale04ad7b12015-10-02 12:43:27 -0700194 final boolean wasResizing = mResizing;
Wale Ogunwaledb485de2018-10-29 09:47:07 -0700195 synchronized (mService.mGlobalLock) {
Chong Zhang3005e752015-09-18 18:46:28 -0700196 endDragLocked();
Vladislav Kaznacheev824bc5d2016-04-22 17:48:35 -0700197 mTask.getDimBounds(mTmpRect);
Chong Zhang3005e752015-09-18 18:46:28 -0700198 }
Chong Zhang09b21ef2015-09-14 10:20:21 -0700199 try {
Vladislav Kaznacheev824bc5d2016-04-22 17:48:35 -0700200 if (wasResizing && !mTmpRect.equals(mWindowDragBounds)) {
Chong Zhang3005e752015-09-18 18:46:28 -0700201 // We were using fullscreen surface during resizing. Request
202 // resizeTask() one last time to restore surface to window size.
Daichi Hirono67f2f4b2018-05-25 16:07:30 +0900203 mActivityManager.resizeTask(
Chong Zhang6de2ae82015-09-30 18:25:21 -0700204 mTask.mTaskId, mWindowDragBounds, RESIZE_MODE_USER_FORCED);
Chong Zhang3005e752015-09-18 18:46:28 -0700205 }
Chong Zhang09b21ef2015-09-14 10:20:21 -0700206 } catch(RemoteException e) {}
Chong Zhang3005e752015-09-18 18:46:28 -0700207
Chong Zhang8e89b312015-09-09 15:09:30 -0700208 // Post back to WM to handle clean-ups. We still need the input
209 // event handler for the last finishInputEvent()!
Daichi Hironoce2f97a2017-11-30 16:44:15 +0900210 mService.mTaskPositioningController.finishTaskPositioning();
Chong Zhang8e89b312015-09-09 15:09:30 -0700211 }
212 handled = true;
213 } catch (Exception e) {
214 Slog.e(TAG, "Exception caught by drag handleMotion", e);
215 } finally {
216 finishInputEvent(event, handled);
217 }
218 }
219 }
220
Daichi Hirono67f2f4b2018-05-25 16:07:30 +0900221 @VisibleForTesting
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700222 TaskPositioner(WindowManagerService service, IActivityTaskManager activityManager) {
Daichi Hirono67f2f4b2018-05-25 16:07:30 +0900223 mService = service;
224 mActivityManager = activityManager;
225 }
226
Garfield Tan6caf1d8c2018-01-18 12:37:50 -0800227 /** Use {@link #create(WindowManagerService)} instead **/
Chong Zhang8e89b312015-09-09 15:09:30 -0700228 TaskPositioner(WindowManagerService service) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700229 this(service, service.mActivityTaskManager);
Chong Zhang8e89b312015-09-09 15:09:30 -0700230 }
231
skuhne@google.com322347b2016-12-02 12:54:03 -0800232 @VisibleForTesting
233 Rect getWindowDragBounds() {
234 return mWindowDragBounds;
235 }
236
Chong Zhang8e89b312015-09-09 15:09:30 -0700237 /**
Garfield Tan07544cd2018-09-12 16:16:54 -0700238 * @param displayContent The Display that the window being dragged is on.
Chong Zhang8e89b312015-09-09 15:09:30 -0700239 */
Robert Carrb1579c82017-09-05 14:54:47 -0700240 void register(DisplayContent displayContent) {
241 final Display display = displayContent.getDisplay();
242
Chong Zhang8e89b312015-09-09 15:09:30 -0700243 if (DEBUG_TASK_POSITIONING) {
244 Slog.d(TAG, "Registering task positioner");
245 }
246
247 if (mClientChannel != null) {
248 Slog.e(TAG, "Task positioner already registered");
249 return;
250 }
251
Riddle Hsu654a6f92018-07-13 22:59:36 +0800252 mDisplayContent = displayContent;
253 display.getMetrics(mDisplayMetrics);
Chong Zhang8e89b312015-09-09 15:09:30 -0700254 final InputChannel[] channels = InputChannel.openInputChannelPair(TAG);
255 mServerChannel = channels[0];
256 mClientChannel = channels[1];
257 mService.mInputManager.registerInputChannel(mServerChannel, null);
258
Wale Ogunwale4f52bc62015-09-24 13:47:31 -0700259 mInputEventReceiver = new WindowPositionerEventReceiver(
Jorim Jaggied7993b2017-03-28 18:50:01 +0100260 mClientChannel, mService.mAnimationHandler.getLooper(),
261 mService.mAnimator.getChoreographer());
Chong Zhang8e89b312015-09-09 15:09:30 -0700262
263 mDragApplicationHandle = new InputApplicationHandle(null);
264 mDragApplicationHandle.name = TAG;
265 mDragApplicationHandle.dispatchingTimeoutNanos =
266 WindowManagerService.DEFAULT_INPUT_DISPATCHING_TIMEOUT_NANOS;
267
Vladislav Kaznacheev3787de12016-12-21 10:36:35 -0800268 mDragWindowHandle = new InputWindowHandle(mDragApplicationHandle, null, null,
Riddle Hsu654a6f92018-07-13 22:59:36 +0800269 display.getDisplayId());
Chong Zhang8e89b312015-09-09 15:09:30 -0700270 mDragWindowHandle.name = TAG;
271 mDragWindowHandle.inputChannel = mServerChannel;
Filip Gruszczynski57b6cce2015-10-06 09:50:51 -0700272 mDragWindowHandle.layer = mService.getDragLayerLocked();
Chong Zhang8e89b312015-09-09 15:09:30 -0700273 mDragWindowHandle.layoutParamsFlags = 0;
274 mDragWindowHandle.layoutParamsType = WindowManager.LayoutParams.TYPE_DRAG;
275 mDragWindowHandle.dispatchingTimeoutNanos =
276 WindowManagerService.DEFAULT_INPUT_DISPATCHING_TIMEOUT_NANOS;
277 mDragWindowHandle.visible = true;
278 mDragWindowHandle.canReceiveKeys = false;
279 mDragWindowHandle.hasFocus = true;
280 mDragWindowHandle.hasWallpaper = false;
281 mDragWindowHandle.paused = false;
282 mDragWindowHandle.ownerPid = Process.myPid();
283 mDragWindowHandle.ownerUid = Process.myUid();
284 mDragWindowHandle.inputFeatures = 0;
285 mDragWindowHandle.scaleFactor = 1.0f;
286
287 // The drag window cannot receive new touches.
288 mDragWindowHandle.touchableRegion.setEmpty();
289
290 // The drag window covers the entire display
291 mDragWindowHandle.frameLeft = 0;
292 mDragWindowHandle.frameTop = 0;
293 final Point p = new Point();
Riddle Hsu654a6f92018-07-13 22:59:36 +0800294 display.getRealSize(p);
Chong Zhang8e89b312015-09-09 15:09:30 -0700295 mDragWindowHandle.frameRight = p.x;
296 mDragWindowHandle.frameBottom = p.y;
297
298 // Pause rotations before a drag.
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800299 if (DEBUG_ORIENTATION) {
Chong Zhang8e89b312015-09-09 15:09:30 -0700300 Slog.d(TAG, "Pausing rotation during re-position");
301 }
Riddle Hsu654a6f92018-07-13 22:59:36 +0800302 mDisplayContent.pauseRotationLocked();
Wale Ogunwale228d4042015-09-13 10:17:34 -0700303
Garfield Tan07544cd2018-09-12 16:16:54 -0700304 // Notify InputMonitor to take mDragWindowHandle.
305 mDisplayContent.getInputMonitor().updateInputWindowsLw(true /*force*/);
306
Filip Gruszczynski57b6cce2015-10-06 09:50:51 -0700307 mSideMargin = dipToPixel(SIDE_MARGIN_DIP, mDisplayMetrics);
308 mMinVisibleWidth = dipToPixel(MINIMUM_VISIBLE_WIDTH_IN_DP, mDisplayMetrics);
309 mMinVisibleHeight = dipToPixel(MINIMUM_VISIBLE_HEIGHT_IN_DP, mDisplayMetrics);
Riddle Hsu654a6f92018-07-13 22:59:36 +0800310 display.getRealSize(mMaxVisibleSize);
Wale Ogunwale6a804b82015-09-23 21:04:21 -0700311
312 mDragEnded = false;
Chong Zhang8e89b312015-09-09 15:09:30 -0700313 }
314
315 void unregister() {
316 if (DEBUG_TASK_POSITIONING) {
317 Slog.d(TAG, "Unregistering task positioner");
318 }
319
320 if (mClientChannel == null) {
321 Slog.e(TAG, "Task positioner not registered");
322 return;
323 }
324
325 mService.mInputManager.unregisterInputChannel(mServerChannel);
326
327 mInputEventReceiver.dispose();
328 mInputEventReceiver = null;
329 mClientChannel.dispose();
330 mServerChannel.dispose();
331 mClientChannel = null;
332 mServerChannel = null;
333
334 mDragWindowHandle = null;
335 mDragApplicationHandle = null;
Wale Ogunwale6a804b82015-09-23 21:04:21 -0700336 mDragEnded = true;
Wale Ogunwale228d4042015-09-13 10:17:34 -0700337
Garfield Tan07544cd2018-09-12 16:16:54 -0700338 // Notify InputMonitor to remove mDragWindowHandle.
339 mDisplayContent.getInputMonitor().updateInputWindowsLw(true /*force*/);
340
Chong Zhang8e89b312015-09-09 15:09:30 -0700341 // Resume rotations after a drag.
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800342 if (DEBUG_ORIENTATION) {
Chong Zhang8e89b312015-09-09 15:09:30 -0700343 Slog.d(TAG, "Resuming rotation after re-position");
344 }
Riddle Hsu654a6f92018-07-13 22:59:36 +0800345 mDisplayContent.resumeRotationLocked();
346 mDisplayContent = null;
Chong Zhang8e89b312015-09-09 15:09:30 -0700347 }
348
skuhne@google.com322347b2016-12-02 12:54:03 -0800349 void startDrag(WindowState win, boolean resize, boolean preserveOrientation, float startX,
350 float startY) {
Wale Ogunwale228d4042015-09-13 10:17:34 -0700351 if (DEBUG_TASK_POSITIONING) {
skuhne@google.com322347b2016-12-02 12:54:03 -0800352 Slog.d(TAG, "startDrag: win=" + win + ", resize=" + resize
353 + ", preserveOrientation=" + preserveOrientation + ", {" + startX + ", "
354 + startY + "}");
Chong Zhang8e89b312015-09-09 15:09:30 -0700355 }
Chong Zhangd8ceb852015-11-11 14:53:41 -0800356 mTask = win.getTask();
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700357 // Use the dim bounds, not the original task bounds. The cursor
358 // movement should be calculated relative to the visible bounds.
359 // Also, use the dim bounds of the task which accounts for
360 // multiple app windows. Don't use any bounds from win itself as it
361 // may not be the same size as the task.
362 mTask.getDimBounds(mTmpRect);
skuhne@google.com322347b2016-12-02 12:54:03 -0800363 startDrag(resize, preserveOrientation, startX, startY, mTmpRect);
364 }
365
Daichi Hirono43094a12018-05-31 12:32:23 +0900366 protected void startDrag(boolean resize, boolean preserveOrientation,
skuhne@google.com322347b2016-12-02 12:54:03 -0800367 float startX, float startY, Rect startBounds) {
368 mCtrlType = CTRL_NONE;
369 mStartDragX = startX;
370 mStartDragY = startY;
371 mPreserveOrientation = preserveOrientation;
Chong Zhangd8ceb852015-11-11 14:53:41 -0800372
Chong Zhang8e89b312015-09-09 15:09:30 -0700373 if (resize) {
skuhne@google.com322347b2016-12-02 12:54:03 -0800374 if (startX < startBounds.left) {
Chong Zhang8e89b312015-09-09 15:09:30 -0700375 mCtrlType |= CTRL_LEFT;
376 }
skuhne@google.com322347b2016-12-02 12:54:03 -0800377 if (startX > startBounds.right) {
Chong Zhang8e89b312015-09-09 15:09:30 -0700378 mCtrlType |= CTRL_RIGHT;
379 }
skuhne@google.com322347b2016-12-02 12:54:03 -0800380 if (startY < startBounds.top) {
Chong Zhang8e89b312015-09-09 15:09:30 -0700381 mCtrlType |= CTRL_TOP;
382 }
skuhne@google.com322347b2016-12-02 12:54:03 -0800383 if (startY > startBounds.bottom) {
Chong Zhang8e89b312015-09-09 15:09:30 -0700384 mCtrlType |= CTRL_BOTTOM;
385 }
skuhne@google.com322347b2016-12-02 12:54:03 -0800386 mResizing = mCtrlType != CTRL_NONE;
Chong Zhang8e89b312015-09-09 15:09:30 -0700387 }
388
skuhne@google.com322347b2016-12-02 12:54:03 -0800389 // In case of !isDockedInEffect we are using the union of all task bounds. These might be
390 // made up out of multiple windows which are only partially overlapping. When that happens,
391 // the orientation from the window of interest to the entire stack might diverge. However
392 // for now we treat them as the same.
393 mStartOrientationWasLandscape = startBounds.width() >= startBounds.height();
394 mWindowOriginalBounds.set(startBounds);
Vladislav Kaznacheev824bc5d2016-04-22 17:48:35 -0700395
Tomasz Mikolajewski79e8d172017-11-21 11:21:42 +0900396 // Notify the app that resizing has started, even though we haven't received any new
397 // bounds yet. This will guarantee that the app starts the backdrop renderer before
398 // configuration changes which could cause an activity restart.
399 if (mResizing) {
Wale Ogunwaledb485de2018-10-29 09:47:07 -0700400 synchronized (mService.mGlobalLock) {
Tomasz Mikolajewski79e8d172017-11-21 11:21:42 +0900401 notifyMoveLocked(startX, startY);
402 }
403
404 // Perform the resize on the WMS handler thread when we don't have the WMS lock held
405 // to ensure that we don't deadlock WMS and AMS. Note that WindowPositionerEventReceiver
406 // callbacks are delivered on the same handler so this initial resize is always
407 // guaranteed to happen before subsequent drag resizes.
408 mService.mH.post(() -> {
409 try {
Daichi Hirono67f2f4b2018-05-25 16:07:30 +0900410 mActivityManager.resizeTask(
Tomasz Mikolajewski79e8d172017-11-21 11:21:42 +0900411 mTask.mTaskId, startBounds, RESIZE_MODE_USER_FORCED);
412 } catch (RemoteException e) {
413 }
414 });
415 }
416
Vladislav Kaznacheev824bc5d2016-04-22 17:48:35 -0700417 // Make sure we always have valid drag bounds even if the drag ends before any move events
418 // have been handled.
skuhne@google.com322347b2016-12-02 12:54:03 -0800419 mWindowDragBounds.set(startBounds);
Chong Zhang3005e752015-09-18 18:46:28 -0700420 }
421
422 private void endDragLocked() {
423 mResizing = false;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100424 mTask.setDragResizing(false, DRAG_RESIZE_MODE_FREEFORM);
Chong Zhang8e89b312015-09-09 15:09:30 -0700425 }
426
Wale Ogunwaleb8051b82015-09-17 15:41:52 -0700427 /** Returns true if the move operation should be ended. */
428 private boolean notifyMoveLocked(float x, float y) {
Chong Zhang8e89b312015-09-09 15:09:30 -0700429 if (DEBUG_TASK_POSITIONING) {
Chong Zhangb15758a2015-11-17 12:12:03 -0800430 Slog.d(TAG, "notifyMoveLocked: {" + x + "," + y + "}");
Chong Zhang8e89b312015-09-09 15:09:30 -0700431 }
432
433 if (mCtrlType != CTRL_NONE) {
skuhne@google.com322347b2016-12-02 12:54:03 -0800434 resizeDrag(x, y);
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100435 mTask.setDragResizing(true, DRAG_RESIZE_MODE_FREEFORM);
Wale Ogunwaleb8051b82015-09-17 15:41:52 -0700436 return false;
Chong Zhang8e89b312015-09-09 15:09:30 -0700437 }
Wale Ogunwaleb8051b82015-09-17 15:41:52 -0700438
Vladislav Kaznacheeva90a3b82016-04-27 14:54:53 -0700439 // This is a moving or scrolling operation.
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800440 mTask.mStack.getDimBounds(mTmpRect);
Chong Zhangb15758a2015-11-17 12:12:03 -0800441
Vladislav Kaznacheeva90a3b82016-04-27 14:54:53 -0700442 int nX = (int) x;
443 int nY = (int) y;
Chong Zhangb15758a2015-11-17 12:12:03 -0800444 if (!mTmpRect.contains(nX, nY)) {
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700445 // For a moving operation we allow the pointer to go out of the stack bounds, but
446 // use the clamped pointer position for the drag bounds computation.
447 nX = Math.min(Math.max(nX, mTmpRect.left), mTmpRect.right);
448 nY = Math.min(Math.max(nY, mTmpRect.top), mTmpRect.bottom);
Chong Zhangb15758a2015-11-17 12:12:03 -0800449 }
450
Vladislav Kaznacheeva90a3b82016-04-27 14:54:53 -0700451 updateWindowDragBounds(nX, nY, mTmpRect);
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700452 return false;
Chong Zhangb15758a2015-11-17 12:12:03 -0800453 }
454
skuhne@google.com322347b2016-12-02 12:54:03 -0800455 /**
456 * The user is drag - resizing the window.
457 *
458 * @param x The x coordinate of the current drag coordinate.
459 * @param y the y coordinate of the current drag coordinate.
460 */
461 @VisibleForTesting
462 void resizeDrag(float x, float y) {
463 // This is a resizing operation.
464 // We need to keep various constraints:
465 // 1. mMinVisible[Width/Height] <= [width/height] <= mMaxVisibleSize.[x/y]
466 // 2. The orientation is kept - if required.
467 final int deltaX = Math.round(x - mStartDragX);
468 final int deltaY = Math.round(y - mStartDragY);
469 int left = mWindowOriginalBounds.left;
470 int top = mWindowOriginalBounds.top;
471 int right = mWindowOriginalBounds.right;
472 int bottom = mWindowOriginalBounds.bottom;
473
474 // The aspect which we have to respect. Note that if the orientation does not need to be
475 // preserved the aspect will be calculated as 1.0 which neutralizes the following
476 // computations.
477 final float minAspect = !mPreserveOrientation
478 ? 1.0f
479 : (mStartOrientationWasLandscape ? MIN_ASPECT : (1.0f / MIN_ASPECT));
480 // Calculate the resulting width and height of the drag operation.
481 int width = right - left;
482 int height = bottom - top;
483 if ((mCtrlType & CTRL_LEFT) != 0) {
484 width = Math.max(mMinVisibleWidth, width - deltaX);
485 } else if ((mCtrlType & CTRL_RIGHT) != 0) {
486 width = Math.max(mMinVisibleWidth, width + deltaX);
487 }
488 if ((mCtrlType & CTRL_TOP) != 0) {
489 height = Math.max(mMinVisibleHeight, height - deltaY);
490 } else if ((mCtrlType & CTRL_BOTTOM) != 0) {
491 height = Math.max(mMinVisibleHeight, height + deltaY);
492 }
493
494 // If we have to preserve the orientation - check that we are doing so.
495 final float aspect = (float) width / (float) height;
496 if (mPreserveOrientation && ((mStartOrientationWasLandscape && aspect < MIN_ASPECT)
497 || (!mStartOrientationWasLandscape && aspect > (1.0 / MIN_ASPECT)))) {
498 // Calculate 2 rectangles fulfilling all requirements for either X or Y being the major
499 // drag axis. What ever is producing the bigger rectangle will be chosen.
500 int width1;
501 int width2;
502 int height1;
503 int height2;
504 if (mStartOrientationWasLandscape) {
505 // Assuming that the width is our target we calculate the height.
506 width1 = Math.max(mMinVisibleWidth, Math.min(mMaxVisibleSize.x, width));
507 height1 = Math.min(height, Math.round((float)width1 / MIN_ASPECT));
508 if (height1 < mMinVisibleHeight) {
509 // If the resulting height is too small we adjust to the minimal size.
510 height1 = mMinVisibleHeight;
511 width1 = Math.max(mMinVisibleWidth,
512 Math.min(mMaxVisibleSize.x, Math.round((float)height1 * MIN_ASPECT)));
513 }
514 // Assuming that the height is our target we calculate the width.
515 height2 = Math.max(mMinVisibleHeight, Math.min(mMaxVisibleSize.y, height));
516 width2 = Math.max(width, Math.round((float)height2 * MIN_ASPECT));
517 if (width2 < mMinVisibleWidth) {
518 // If the resulting width is too small we adjust to the minimal size.
519 width2 = mMinVisibleWidth;
520 height2 = Math.max(mMinVisibleHeight,
521 Math.min(mMaxVisibleSize.y, Math.round((float)width2 / MIN_ASPECT)));
522 }
523 } else {
524 // Assuming that the width is our target we calculate the height.
525 width1 = Math.max(mMinVisibleWidth, Math.min(mMaxVisibleSize.x, width));
526 height1 = Math.max(height, Math.round((float)width1 * MIN_ASPECT));
527 if (height1 < mMinVisibleHeight) {
528 // If the resulting height is too small we adjust to the minimal size.
529 height1 = mMinVisibleHeight;
530 width1 = Math.max(mMinVisibleWidth,
531 Math.min(mMaxVisibleSize.x, Math.round((float)height1 / MIN_ASPECT)));
532 }
533 // Assuming that the height is our target we calculate the width.
534 height2 = Math.max(mMinVisibleHeight, Math.min(mMaxVisibleSize.y, height));
535 width2 = Math.min(width, Math.round((float)height2 / MIN_ASPECT));
536 if (width2 < mMinVisibleWidth) {
537 // If the resulting width is too small we adjust to the minimal size.
538 width2 = mMinVisibleWidth;
539 height2 = Math.max(mMinVisibleHeight,
540 Math.min(mMaxVisibleSize.y, Math.round((float)width2 * MIN_ASPECT)));
541 }
542 }
543
544 // Use the bigger of the two rectangles if the major change was positive, otherwise
545 // do the opposite.
546 final boolean grows = width > (right - left) || height > (bottom - top);
547 if (grows == (width1 * height1 > width2 * height2)) {
548 width = width1;
549 height = height1;
550 } else {
551 width = width2;
552 height = height2;
553 }
554 }
555
556 // Update mWindowDragBounds to the new drag size.
557 updateDraggedBounds(left, top, right, bottom, width, height);
558 }
559
560 /**
561 * Given the old coordinates and the new width and height, update the mWindowDragBounds.
562 *
563 * @param left The original left bound before the user started dragging.
564 * @param top The original top bound before the user started dragging.
565 * @param right The original right bound before the user started dragging.
566 * @param bottom The original bottom bound before the user started dragging.
567 * @param newWidth The new dragged width.
568 * @param newHeight The new dragged height.
569 */
570 void updateDraggedBounds(int left, int top, int right, int bottom, int newWidth,
571 int newHeight) {
572 // Generate the final bounds by keeping the opposite drag edge constant.
573 if ((mCtrlType & CTRL_LEFT) != 0) {
574 left = right - newWidth;
575 } else { // Note: The right might have changed - if we pulled at the right or not.
576 right = left + newWidth;
577 }
578 if ((mCtrlType & CTRL_TOP) != 0) {
579 top = bottom - newHeight;
580 } else { // Note: The height might have changed - if we pulled at the bottom or not.
581 bottom = top + newHeight;
582 }
583
584 mWindowDragBounds.set(left, top, right, bottom);
585
586 checkBoundsForOrientationViolations(mWindowDragBounds);
587 }
588
589 /**
590 * Validate bounds against orientation violations (if DEBUG_ORIENTATION_VIOLATIONS is set).
591 *
592 * @param bounds The bounds to be checked.
593 */
594 private void checkBoundsForOrientationViolations(Rect bounds) {
595 // When using debug check that we are not violating the given constraints.
596 if (DEBUG_ORIENTATION_VIOLATIONS) {
597 if (mStartOrientationWasLandscape != (bounds.width() >= bounds.height())) {
598 Slog.e(TAG, "Orientation violation detected! should be "
599 + (mStartOrientationWasLandscape ? "landscape" : "portrait")
600 + " but is the other");
601 } else {
602 Slog.v(TAG, "new bounds size: " + bounds.width() + " x " + bounds.height());
603 }
604 if (mMinVisibleWidth > bounds.width() || mMinVisibleHeight > bounds.height()) {
605 Slog.v(TAG, "Minimum requirement violated: Width(min, is)=(" + mMinVisibleWidth
606 + ", " + bounds.width() + ") Height(min,is)=("
607 + mMinVisibleHeight + ", " + bounds.height() + ")");
608 }
609 if (mMaxVisibleSize.x < bounds.width() || mMaxVisibleSize.y < bounds.height()) {
610 Slog.v(TAG, "Maximum requirement violated: Width(min, is)=(" + mMaxVisibleSize.x
611 + ", " + bounds.width() + ") Height(min,is)=("
612 + mMaxVisibleSize.y + ", " + bounds.height() + ")");
613 }
614 }
615 }
616
Vladislav Kaznacheeva90a3b82016-04-27 14:54:53 -0700617 private void updateWindowDragBounds(int x, int y, Rect stackBounds) {
618 final int offsetX = Math.round(x - mStartDragX);
619 final int offsetY = Math.round(y - mStartDragY);
Wale Ogunwaleb8051b82015-09-17 15:41:52 -0700620 mWindowDragBounds.set(mWindowOriginalBounds);
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700621 // Horizontally, at least mMinVisibleWidth pixels of the window should remain visible.
622 final int maxLeft = stackBounds.right - mMinVisibleWidth;
623 final int minLeft = stackBounds.left + mMinVisibleWidth - mWindowOriginalBounds.width();
Vladislav Kaznacheeva90a3b82016-04-27 14:54:53 -0700624
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700625 // Vertically, the top mMinVisibleHeight of the window should remain visible.
626 // (This assumes that the window caption bar is at the top of the window).
627 final int minTop = stackBounds.top;
628 final int maxTop = stackBounds.bottom - mMinVisibleHeight;
Vladislav Kaznacheeva90a3b82016-04-27 14:54:53 -0700629
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700630 mWindowDragBounds.offsetTo(
631 Math.min(Math.max(mWindowOriginalBounds.left + offsetX, minLeft), maxLeft),
632 Math.min(Math.max(mWindowOriginalBounds.top + offsetY, minTop), maxTop));
633
Chong Zhangb15758a2015-11-17 12:12:03 -0800634 if (DEBUG_TASK_POSITIONING) Slog.d(TAG,
635 "updateWindowDragBounds: " + mWindowDragBounds);
Chong Zhang8e89b312015-09-09 15:09:30 -0700636 }
637
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700638 public String toShortString() {
639 return TAG;
640 }
Garfield Tan6caf1d8c2018-01-18 12:37:50 -0800641
642 static void setFactory(Factory factory) {
643 sFactory = factory;
644 }
645
646 static TaskPositioner create(WindowManagerService service) {
647 if (sFactory == null) {
648 sFactory = new Factory() {};
649 }
650
651 return sFactory.create(service);
652 }
653
654 interface Factory {
655 default TaskPositioner create(WindowManagerService service) {
656 return new TaskPositioner(service);
657 }
658 }
Wale Ogunwale228d4042015-09-13 10:17:34 -0700659}