blob: 7714458bb16719f02be065680e76634db5fb28a8 [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;
Robert Carr0bcbe642018-10-11 19:07:43 -070036import android.os.Binder;
Chong Zhang8e89b312015-09-09 15:09:30 -070037import android.os.Looper;
38import android.os.Process;
39import android.os.RemoteException;
Wale Ogunwalecad05a02015-09-25 10:41:44 -070040import android.os.Trace;
Chong Zhang8e89b312015-09-09 15:09:30 -070041import android.util.DisplayMetrics;
42import android.util.Slog;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080043import android.view.BatchedInputEventReceiver;
Wale Ogunwale4f52bc62015-09-24 13:47:31 -070044import android.view.Choreographer;
Chong Zhang8e89b312015-09-09 15:09:30 -070045import android.view.Display;
Evan Rosky0d654cb2019-02-26 10:59:10 -080046import android.view.InputApplicationHandle;
Chong Zhang8e89b312015-09-09 15:09:30 -070047import android.view.InputChannel;
48import android.view.InputDevice;
49import android.view.InputEvent;
Evan Rosky0d654cb2019-02-26 10:59:10 -080050import android.view.InputWindowHandle;
Chong Zhang8e89b312015-09-09 15:09:30 -070051import android.view.MotionEvent;
52import android.view.WindowManager;
53
skuhne@google.com322347b2016-12-02 12:54:03 -080054import com.android.internal.annotations.VisibleForTesting;
Wale Ogunwale228d4042015-09-13 10:17:34 -070055
56import java.lang.annotation.Retention;
57import java.lang.annotation.RetentionPolicy;
58
Robert Carrf59b8dd2017-10-02 18:58:36 -070059class TaskPositioner {
skuhne@google.com322347b2016-12-02 12:54:03 -080060 private static final boolean DEBUG_ORIENTATION_VIOLATIONS = false;
Jorim Jaggibc5425c2016-03-01 13:51:16 +010061 private static final String TAG_LOCAL = "TaskPositioner";
62 private static final String TAG = TAG_WITH_CLASS_NAME ? TAG_LOCAL : TAG_WM;
Chong Zhang8e89b312015-09-09 15:09:30 -070063
Garfield Tan6caf1d8c2018-01-18 12:37:50 -080064 private static Factory sFactory;
65
Wale Ogunwale228d4042015-09-13 10:17:34 -070066 // The margin the pointer position has to be within the side of the screen to be
67 // considered at the side of the screen.
Filip Gruszczynski57b6cce2015-10-06 09:50:51 -070068 static final int SIDE_MARGIN_DIP = 100;
Wale Ogunwale228d4042015-09-13 10:17:34 -070069
Chong Zhang8e89b312015-09-09 15:09:30 -070070 @IntDef(flag = true,
71 value = {
72 CTRL_NONE,
73 CTRL_LEFT,
74 CTRL_RIGHT,
75 CTRL_TOP,
76 CTRL_BOTTOM
77 })
78 @Retention(RetentionPolicy.SOURCE)
79 @interface CtrlType {}
80
81 private static final int CTRL_NONE = 0x0;
82 private static final int CTRL_LEFT = 0x1;
83 private static final int CTRL_RIGHT = 0x2;
84 private static final int CTRL_TOP = 0x4;
85 private static final int CTRL_BOTTOM = 0x8;
86
Filip Gruszczynski64b6b442016-01-18 13:20:58 -080087 public static final float RESIZING_HINT_ALPHA = 0.5f;
88
89 public static final int RESIZING_HINT_DURATION_MS = 0;
90
skuhne@google.com322347b2016-12-02 12:54:03 -080091 // The minimal aspect ratio which needs to be met to count as landscape (or 1/.. for portrait).
92 // Note: We do not use the 1.33 from the CDD here since the user is allowed to use what ever
93 // aspect he desires.
94 @VisibleForTesting
95 static final float MIN_ASPECT = 1.2f;
96
Chong Zhang8e89b312015-09-09 15:09:30 -070097 private final WindowManagerService mService;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070098 private final IActivityTaskManager mActivityManager;
Chong Zhang8e89b312015-09-09 15:09:30 -070099 private WindowPositionerEventReceiver mInputEventReceiver;
Riddle Hsu654a6f92018-07-13 22:59:36 +0800100 private DisplayContent mDisplayContent;
Chong Zhang8e89b312015-09-09 15:09:30 -0700101 private final DisplayMetrics mDisplayMetrics = new DisplayMetrics();
Wale Ogunwale228d4042015-09-13 10:17:34 -0700102 private Rect mTmpRect = new Rect();
103 private int mSideMargin;
Wale Ogunwaleb8051b82015-09-17 15:41:52 -0700104 private int mMinVisibleWidth;
105 private int mMinVisibleHeight;
Chong Zhang8e89b312015-09-09 15:09:30 -0700106
Charles Chen2cb5a0f2019-03-22 20:58:00 +0800107 @VisibleForTesting
108 Task mTask;
Chong Zhang09b21ef2015-09-14 10:20:21 -0700109 private boolean mResizing;
skuhne@google.com322347b2016-12-02 12:54:03 -0800110 private boolean mPreserveOrientation;
111 private boolean mStartOrientationWasLandscape;
Chong Zhang8e89b312015-09-09 15:09:30 -0700112 private final Rect mWindowOriginalBounds = new Rect();
113 private final Rect mWindowDragBounds = new Rect();
skuhne@google.com322347b2016-12-02 12:54:03 -0800114 private final Point mMaxVisibleSize = new Point();
Chong Zhang8e89b312015-09-09 15:09:30 -0700115 private float mStartDragX;
116 private float mStartDragY;
117 @CtrlType
118 private int mCtrlType = CTRL_NONE;
Wale Ogunwale6a804b82015-09-23 21:04:21 -0700119 private boolean mDragEnded = false;
Chong Zhang8e89b312015-09-09 15:09:30 -0700120
121 InputChannel mServerChannel;
122 InputChannel mClientChannel;
123 InputApplicationHandle mDragApplicationHandle;
124 InputWindowHandle mDragWindowHandle;
125
Wale Ogunwale4f52bc62015-09-24 13:47:31 -0700126 private final class WindowPositionerEventReceiver extends BatchedInputEventReceiver {
127 public WindowPositionerEventReceiver(
128 InputChannel inputChannel, Looper looper, Choreographer choreographer) {
129 super(inputChannel, looper, choreographer);
Chong Zhang8e89b312015-09-09 15:09:30 -0700130 }
131
132 @Override
Siarhei Vishniakou85ddfff2018-01-31 16:49:36 -0800133 public void onInputEvent(InputEvent event) {
Chong Zhang8e89b312015-09-09 15:09:30 -0700134 if (!(event instanceof MotionEvent)
135 || (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) == 0) {
136 return;
137 }
138 final MotionEvent motionEvent = (MotionEvent) event;
139 boolean handled = false;
140
141 try {
Wale Ogunwale6a804b82015-09-23 21:04:21 -0700142 if (mDragEnded) {
143 // The drag has ended but the clean-up message has not been processed by
144 // window manager. Drop events that occur after this until window manager
145 // has a chance to clean-up the input handle.
146 handled = true;
147 return;
148 }
149
Chong Zhang8e89b312015-09-09 15:09:30 -0700150 final float newX = motionEvent.getRawX();
151 final float newY = motionEvent.getRawY();
152
153 switch (motionEvent.getAction()) {
154 case MotionEvent.ACTION_DOWN: {
155 if (DEBUG_TASK_POSITIONING) {
156 Slog.w(TAG, "ACTION_DOWN @ {" + newX + ", " + newY + "}");
157 }
158 } break;
159
160 case MotionEvent.ACTION_MOVE: {
161 if (DEBUG_TASK_POSITIONING){
162 Slog.w(TAG, "ACTION_MOVE @ {" + newX + ", " + newY + "}");
163 }
Wale Ogunwaledb485de2018-10-29 09:47:07 -0700164 synchronized (mService.mGlobalLock) {
Wale Ogunwale6a804b82015-09-23 21:04:21 -0700165 mDragEnded = notifyMoveLocked(newX, newY);
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800166 mTask.getDimBounds(mTmpRect);
Chong Zhang8e89b312015-09-09 15:09:30 -0700167 }
Wale Ogunwale04ad7b12015-10-02 12:43:27 -0700168 if (!mTmpRect.equals(mWindowDragBounds)) {
169 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER,
170 "wm.TaskPositioner.resizeTask");
171 try {
Daichi Hirono67f2f4b2018-05-25 16:07:30 +0900172 mActivityManager.resizeTask(
Wale Ogunwale04ad7b12015-10-02 12:43:27 -0700173 mTask.mTaskId, mWindowDragBounds, RESIZE_MODE_USER);
174 } catch (RemoteException e) {
175 }
176 Trace.traceEnd(Trace.TRACE_TAG_WINDOW_MANAGER);
177 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700178 } break;
179
180 case MotionEvent.ACTION_UP: {
181 if (DEBUG_TASK_POSITIONING) {
182 Slog.w(TAG, "ACTION_UP @ {" + newX + ", " + newY + "}");
183 }
Wale Ogunwale6a804b82015-09-23 21:04:21 -0700184 mDragEnded = true;
Chong Zhang8e89b312015-09-09 15:09:30 -0700185 } break;
186
187 case MotionEvent.ACTION_CANCEL: {
188 if (DEBUG_TASK_POSITIONING) {
189 Slog.w(TAG, "ACTION_CANCEL @ {" + newX + ", " + newY + "}");
190 }
Wale Ogunwale6a804b82015-09-23 21:04:21 -0700191 mDragEnded = true;
Chong Zhang8e89b312015-09-09 15:09:30 -0700192 } break;
193 }
194
Wale Ogunwale6a804b82015-09-23 21:04:21 -0700195 if (mDragEnded) {
Wale Ogunwale04ad7b12015-10-02 12:43:27 -0700196 final boolean wasResizing = mResizing;
Wale Ogunwaledb485de2018-10-29 09:47:07 -0700197 synchronized (mService.mGlobalLock) {
Chong Zhang3005e752015-09-18 18:46:28 -0700198 endDragLocked();
Vladislav Kaznacheev824bc5d2016-04-22 17:48:35 -0700199 mTask.getDimBounds(mTmpRect);
Chong Zhang3005e752015-09-18 18:46:28 -0700200 }
Chong Zhang09b21ef2015-09-14 10:20:21 -0700201 try {
Vladislav Kaznacheev824bc5d2016-04-22 17:48:35 -0700202 if (wasResizing && !mTmpRect.equals(mWindowDragBounds)) {
Chong Zhang3005e752015-09-18 18:46:28 -0700203 // We were using fullscreen surface during resizing. Request
204 // resizeTask() one last time to restore surface to window size.
Daichi Hirono67f2f4b2018-05-25 16:07:30 +0900205 mActivityManager.resizeTask(
Chong Zhang6de2ae82015-09-30 18:25:21 -0700206 mTask.mTaskId, mWindowDragBounds, RESIZE_MODE_USER_FORCED);
Chong Zhang3005e752015-09-18 18:46:28 -0700207 }
Chong Zhang09b21ef2015-09-14 10:20:21 -0700208 } catch(RemoteException e) {}
Chong Zhang3005e752015-09-18 18:46:28 -0700209
Chong Zhang8e89b312015-09-09 15:09:30 -0700210 // Post back to WM to handle clean-ups. We still need the input
211 // event handler for the last finishInputEvent()!
Daichi Hironoce2f97a2017-11-30 16:44:15 +0900212 mService.mTaskPositioningController.finishTaskPositioning();
Chong Zhang8e89b312015-09-09 15:09:30 -0700213 }
214 handled = true;
215 } catch (Exception e) {
216 Slog.e(TAG, "Exception caught by drag handleMotion", e);
217 } finally {
218 finishInputEvent(event, handled);
219 }
220 }
221 }
222
Daichi Hirono67f2f4b2018-05-25 16:07:30 +0900223 @VisibleForTesting
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700224 TaskPositioner(WindowManagerService service, IActivityTaskManager activityManager) {
Daichi Hirono67f2f4b2018-05-25 16:07:30 +0900225 mService = service;
226 mActivityManager = activityManager;
227 }
228
Garfield Tan6caf1d8c2018-01-18 12:37:50 -0800229 /** Use {@link #create(WindowManagerService)} instead **/
Chong Zhang8e89b312015-09-09 15:09:30 -0700230 TaskPositioner(WindowManagerService service) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700231 this(service, service.mActivityTaskManager);
Chong Zhang8e89b312015-09-09 15:09:30 -0700232 }
233
skuhne@google.com322347b2016-12-02 12:54:03 -0800234 @VisibleForTesting
235 Rect getWindowDragBounds() {
236 return mWindowDragBounds;
237 }
238
Chong Zhang8e89b312015-09-09 15:09:30 -0700239 /**
Garfield Tan07544cd2018-09-12 16:16:54 -0700240 * @param displayContent The Display that the window being dragged is on.
Chong Zhang8e89b312015-09-09 15:09:30 -0700241 */
Robert Carrb1579c82017-09-05 14:54:47 -0700242 void register(DisplayContent displayContent) {
243 final Display display = displayContent.getDisplay();
244
Chong Zhang8e89b312015-09-09 15:09:30 -0700245 if (DEBUG_TASK_POSITIONING) {
246 Slog.d(TAG, "Registering task positioner");
247 }
248
249 if (mClientChannel != null) {
250 Slog.e(TAG, "Task positioner already registered");
251 return;
252 }
253
Riddle Hsu654a6f92018-07-13 22:59:36 +0800254 mDisplayContent = displayContent;
255 display.getMetrics(mDisplayMetrics);
Chong Zhang8e89b312015-09-09 15:09:30 -0700256 final InputChannel[] channels = InputChannel.openInputChannelPair(TAG);
257 mServerChannel = channels[0];
258 mClientChannel = channels[1];
259 mService.mInputManager.registerInputChannel(mServerChannel, null);
260
Wale Ogunwale4f52bc62015-09-24 13:47:31 -0700261 mInputEventReceiver = new WindowPositionerEventReceiver(
Jorim Jaggied7993b2017-03-28 18:50:01 +0100262 mClientChannel, mService.mAnimationHandler.getLooper(),
263 mService.mAnimator.getChoreographer());
Chong Zhang8e89b312015-09-09 15:09:30 -0700264
Robert Carr0bcbe642018-10-11 19:07:43 -0700265 mDragApplicationHandle = new InputApplicationHandle(new Binder());
Chong Zhang8e89b312015-09-09 15:09:30 -0700266 mDragApplicationHandle.name = TAG;
267 mDragApplicationHandle.dispatchingTimeoutNanos =
268 WindowManagerService.DEFAULT_INPUT_DISPATCHING_TIMEOUT_NANOS;
269
Robert Carre0a353c2018-08-02 16:38:04 -0700270 mDragWindowHandle = new InputWindowHandle(mDragApplicationHandle, null,
Riddle Hsu654a6f92018-07-13 22:59:36 +0800271 display.getDisplayId());
Chong Zhang8e89b312015-09-09 15:09:30 -0700272 mDragWindowHandle.name = TAG;
Robert Carreadae822018-10-11 19:07:03 -0700273 mDragWindowHandle.token = mServerChannel.getToken();
Filip Gruszczynski57b6cce2015-10-06 09:50:51 -0700274 mDragWindowHandle.layer = mService.getDragLayerLocked();
Chong Zhang8e89b312015-09-09 15:09:30 -0700275 mDragWindowHandle.layoutParamsFlags = 0;
276 mDragWindowHandle.layoutParamsType = WindowManager.LayoutParams.TYPE_DRAG;
277 mDragWindowHandle.dispatchingTimeoutNanos =
278 WindowManagerService.DEFAULT_INPUT_DISPATCHING_TIMEOUT_NANOS;
279 mDragWindowHandle.visible = true;
280 mDragWindowHandle.canReceiveKeys = false;
281 mDragWindowHandle.hasFocus = true;
282 mDragWindowHandle.hasWallpaper = false;
283 mDragWindowHandle.paused = false;
284 mDragWindowHandle.ownerPid = Process.myPid();
285 mDragWindowHandle.ownerUid = Process.myUid();
286 mDragWindowHandle.inputFeatures = 0;
287 mDragWindowHandle.scaleFactor = 1.0f;
288
289 // The drag window cannot receive new touches.
290 mDragWindowHandle.touchableRegion.setEmpty();
291
292 // The drag window covers the entire display
293 mDragWindowHandle.frameLeft = 0;
294 mDragWindowHandle.frameTop = 0;
295 final Point p = new Point();
Riddle Hsu654a6f92018-07-13 22:59:36 +0800296 display.getRealSize(p);
Chong Zhang8e89b312015-09-09 15:09:30 -0700297 mDragWindowHandle.frameRight = p.x;
298 mDragWindowHandle.frameBottom = p.y;
299
300 // Pause rotations before a drag.
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800301 if (DEBUG_ORIENTATION) {
Chong Zhang8e89b312015-09-09 15:09:30 -0700302 Slog.d(TAG, "Pausing rotation during re-position");
303 }
Riddle Hsu654a6f92018-07-13 22:59:36 +0800304 mDisplayContent.pauseRotationLocked();
Wale Ogunwale228d4042015-09-13 10:17:34 -0700305
Garfield Tan07544cd2018-09-12 16:16:54 -0700306 // Notify InputMonitor to take mDragWindowHandle.
307 mDisplayContent.getInputMonitor().updateInputWindowsLw(true /*force*/);
308
Filip Gruszczynski57b6cce2015-10-06 09:50:51 -0700309 mSideMargin = dipToPixel(SIDE_MARGIN_DIP, mDisplayMetrics);
310 mMinVisibleWidth = dipToPixel(MINIMUM_VISIBLE_WIDTH_IN_DP, mDisplayMetrics);
311 mMinVisibleHeight = dipToPixel(MINIMUM_VISIBLE_HEIGHT_IN_DP, mDisplayMetrics);
Riddle Hsu654a6f92018-07-13 22:59:36 +0800312 display.getRealSize(mMaxVisibleSize);
Wale Ogunwale6a804b82015-09-23 21:04:21 -0700313
314 mDragEnded = false;
Chong Zhang8e89b312015-09-09 15:09:30 -0700315 }
316
317 void unregister() {
318 if (DEBUG_TASK_POSITIONING) {
319 Slog.d(TAG, "Unregistering task positioner");
320 }
321
322 if (mClientChannel == null) {
323 Slog.e(TAG, "Task positioner not registered");
324 return;
325 }
326
327 mService.mInputManager.unregisterInputChannel(mServerChannel);
328
329 mInputEventReceiver.dispose();
330 mInputEventReceiver = null;
331 mClientChannel.dispose();
332 mServerChannel.dispose();
333 mClientChannel = null;
334 mServerChannel = null;
335
336 mDragWindowHandle = null;
337 mDragApplicationHandle = null;
Wale Ogunwale6a804b82015-09-23 21:04:21 -0700338 mDragEnded = true;
Wale Ogunwale228d4042015-09-13 10:17:34 -0700339
Garfield Tan07544cd2018-09-12 16:16:54 -0700340 // Notify InputMonitor to remove mDragWindowHandle.
341 mDisplayContent.getInputMonitor().updateInputWindowsLw(true /*force*/);
342
Chong Zhang8e89b312015-09-09 15:09:30 -0700343 // Resume rotations after a drag.
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800344 if (DEBUG_ORIENTATION) {
Chong Zhang8e89b312015-09-09 15:09:30 -0700345 Slog.d(TAG, "Resuming rotation after re-position");
346 }
Riddle Hsu654a6f92018-07-13 22:59:36 +0800347 mDisplayContent.resumeRotationLocked();
348 mDisplayContent = null;
Chong Zhang8e89b312015-09-09 15:09:30 -0700349 }
350
skuhne@google.com322347b2016-12-02 12:54:03 -0800351 void startDrag(WindowState win, boolean resize, boolean preserveOrientation, float startX,
352 float startY) {
Wale Ogunwale228d4042015-09-13 10:17:34 -0700353 if (DEBUG_TASK_POSITIONING) {
skuhne@google.com322347b2016-12-02 12:54:03 -0800354 Slog.d(TAG, "startDrag: win=" + win + ", resize=" + resize
355 + ", preserveOrientation=" + preserveOrientation + ", {" + startX + ", "
356 + startY + "}");
Chong Zhang8e89b312015-09-09 15:09:30 -0700357 }
Chong Zhangd8ceb852015-11-11 14:53:41 -0800358 mTask = win.getTask();
Evan Rosky0d654cb2019-02-26 10:59:10 -0800359 // Use the bounds of the task which accounts for
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700360 // multiple app windows. Don't use any bounds from win itself as it
361 // may not be the same size as the task.
Evan Rosky0d654cb2019-02-26 10:59:10 -0800362 mTask.getBounds(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}