blob: aae216e0d47cfab94b8eae85752b05dc03940fc6 [file] [log] [blame]
Dianne Hackbornf56e1022011-02-22 10:47:13 -08001/*
2 * Copyright (C) 2010 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.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080015 */
Dianne Hackbornf56e1022011-02-22 10:47:13 -080016
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080017package com.android.server.wm;
18
Wale Ogunwale6213caa2016-12-02 16:47:15 +000019import static android.app.ActivityManager.StackId.PINNED_STACK_ID;
Andrii Kulian5406e7a2016-10-21 11:55:23 -070020import static android.view.Display.DEFAULT_DISPLAY;
Wale Ogunwale6213caa2016-12-02 16:47:15 +000021import static android.view.WindowManager.INPUT_CONSUMER_NAVIGATION;
Winson41275482016-10-10 15:17:45 -070022import static android.view.WindowManager.INPUT_CONSUMER_PIP;
23import static android.view.WindowManager.INPUT_CONSUMER_WALLPAPER;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070024import static android.view.WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL;
Wale Ogunwale6213caa2016-12-02 16:47:15 +000025import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_DISABLE_WALLPAPER_TOUCH_EVENTS;
26import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
Wale Ogunwale5cd907d2017-01-26 14:14:08 -080027import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_OVERLAY;
Wale Ogunwale6213caa2016-12-02 16:47:15 +000028import static android.view.WindowManager.LayoutParams.TYPE_WALLPAPER;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080029import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_DRAG;
30import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS_LIGHT;
31import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_INPUT;
32import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_TASK_POSITIONING;
33import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Filip Gruszczynski9cac3b42015-10-30 14:20:37 -070034
Sudheer Shankadc589ac2016-11-10 15:30:17 -080035import android.app.ActivityManager;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080036import android.graphics.Rect;
Wale Ogunwalee89eeac2016-03-12 11:07:58 -080037import android.os.Debug;
Winson41275482016-10-10 15:17:45 -070038import android.os.Looper;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080039import android.os.RemoteException;
Winson41275482016-10-10 15:17:45 -070040import android.util.ArrayMap;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080041import android.util.Log;
42import android.util.Slog;
Jeff Browncc4f7db2011-08-30 20:34:48 -070043import android.view.InputChannel;
Winson41275482016-10-10 15:17:45 -070044import android.view.InputEventReceiver;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080045import android.view.KeyEvent;
46import android.view.WindowManager;
47
Winson41275482016-10-10 15:17:45 -070048import android.view.WindowManagerPolicy;
Wale Ogunwale1e129a42016-11-21 13:03:47 -080049
Selim Cinekf83e8242015-05-19 18:08:14 -070050import com.android.server.input.InputApplicationHandle;
51import com.android.server.input.InputManagerService;
52import com.android.server.input.InputWindowHandle;
53
Wale Ogunwalee89eeac2016-03-12 11:07:58 -080054import java.io.PrintWriter;
Jeff Brown9302c872011-07-13 22:51:29 -070055import java.util.Arrays;
Winson Chung853c99a2017-03-21 22:16:42 -070056import java.util.Set;
Wale Ogunwale1e129a42016-11-21 13:03:47 -080057import java.util.function.Consumer;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080058
Jeff Browna9d131c2012-09-20 16:48:17 -070059final class InputMonitor implements InputManagerService.WindowManagerCallbacks {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080060 private final WindowManagerService mService;
Selim Cinekf83e8242015-05-19 18:08:14 -070061
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080062 // Current window with input focus for keys and other non-touch events. May be null.
63 private WindowState mInputFocus;
Selim Cinekf83e8242015-05-19 18:08:14 -070064
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080065 // When true, prevents input dispatch from proceeding until set to false again.
66 private boolean mInputDispatchFrozen;
Selim Cinekf83e8242015-05-19 18:08:14 -070067
Wale Ogunwalee89eeac2016-03-12 11:07:58 -080068 // The reason the input is currently frozen or null if the input isn't frozen.
69 private String mInputFreezeReason = null;
70
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080071 // When true, input dispatch proceeds normally. Otherwise all events are dropped.
Jeff Brownc042ee22012-05-08 13:03:42 -070072 // Initially false, so that input does not get dispatched until boot is finished at
73 // which point the ActivityManager will enable dispatching.
74 private boolean mInputDispatchEnabled;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080075
76 // When true, need to call updateInputWindowsLw().
77 private boolean mUpdateInputWindowsNeeded = true;
78
Jeff Brown9302c872011-07-13 22:51:29 -070079 // Array of window handles to provide to the input dispatcher.
80 private InputWindowHandle[] mInputWindowHandles;
81 private int mInputWindowHandleCount;
Vladislav Kaznacheev3787de12016-12-21 10:36:35 -080082 private InputWindowHandle mFocusedInputWindowHandle;
83
Wale Ogunwale6213caa2016-12-02 16:47:15 +000084 private boolean mAddInputConsumerHandle;
85 private boolean mAddPipInputConsumerHandle;
86 private boolean mAddWallpaperInputConsumerHandle;
87 private boolean mDisableWallpaperTouchEvents;
Wale Ogunwale1e129a42016-11-21 13:03:47 -080088 private final Rect mTmpRect = new Rect();
89 private final UpdateInputForAllWindowsConsumer mUpdateInputForAllWindowsConsumer =
90 new UpdateInputForAllWindowsConsumer();
Jeff Brown9302c872011-07-13 22:51:29 -070091
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080092 // Set to true when the first input device configuration change notification
93 // is received to indicate that the input devices are ready.
94 private final Object mInputDevicesReadyMonitor = new Object();
95 private boolean mInputDevicesReady;
96
Winson41275482016-10-10 15:17:45 -070097 /**
98 * The set of input consumer added to the window manager by name, which consumes input events
99 * for the windows below it.
100 */
101 private final ArrayMap<String, InputConsumerImpl> mInputConsumers = new ArrayMap();
102
103 private static final class EventReceiverInputConsumer extends InputConsumerImpl
104 implements WindowManagerPolicy.InputConsumer {
105 private InputMonitor mInputMonitor;
106 private final InputEventReceiver mInputEventReceiver;
107
108 EventReceiverInputConsumer(WindowManagerService service, InputMonitor monitor,
109 Looper looper, String name,
110 InputEventReceiver.Factory inputEventReceiverFactory) {
111 super(service, name, null);
112 mInputMonitor = monitor;
113 mInputEventReceiver = inputEventReceiverFactory.createInputEventReceiver(
114 mClientChannel, looper);
115 }
116
117 @Override
118 public void dismiss() {
119 synchronized (mService.mWindowMap) {
120 if (mInputMonitor.destroyInputConsumer(mWindowHandle.name)) {
121 mInputEventReceiver.dispose();
122 }
123 }
124 }
125 }
126
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800127 public InputMonitor(WindowManagerService service) {
128 mService = service;
129 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700130
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700131 private void addInputConsumer(String name, InputConsumerImpl consumer) {
Winson41275482016-10-10 15:17:45 -0700132 mInputConsumers.put(name, consumer);
133 updateInputWindowsLw(true /* force */);
134 }
135
136 boolean destroyInputConsumer(String name) {
137 if (disposeInputConsumer(mInputConsumers.remove(name))) {
138 updateInputWindowsLw(true /* force */);
139 return true;
140 }
141 return false;
142 }
143
144 private boolean disposeInputConsumer(InputConsumerImpl consumer) {
145 if (consumer != null) {
146 consumer.disposeChannelsLw();
147 return true;
148 }
149 return false;
150 }
151
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700152 InputConsumerImpl getInputConsumer(String name, int displayId) {
153 // TODO(multi-display): Allow input consumers on non-default displays?
154 return (displayId == DEFAULT_DISPLAY) ? mInputConsumers.get(name) : null;
Winson41275482016-10-10 15:17:45 -0700155 }
156
157 void layoutInputConsumers(int dw, int dh) {
158 for (int i = mInputConsumers.size() - 1; i >= 0; i--) {
159 mInputConsumers.valueAt(i).layout(dw, dh);
160 }
161 }
162
163 WindowManagerPolicy.InputConsumer createInputConsumer(Looper looper, String name,
164 InputEventReceiver.Factory inputEventReceiverFactory) {
165 if (mInputConsumers.containsKey(name)) {
166 throw new IllegalStateException("Existing input consumer found with name: " + name);
167 }
168
169 final EventReceiverInputConsumer consumer = new EventReceiverInputConsumer(mService,
170 this, looper, name, inputEventReceiverFactory);
171 addInputConsumer(name, consumer);
172 return consumer;
173 }
174
175 void createInputConsumer(String name, InputChannel inputChannel) {
176 if (mInputConsumers.containsKey(name)) {
177 throw new IllegalStateException("Existing input consumer found with name: " + name);
178 }
179
180 final InputConsumerImpl consumer = new InputConsumerImpl(mService, name, inputChannel);
181 switch (name) {
182 case INPUT_CONSUMER_WALLPAPER:
183 consumer.mWindowHandle.hasWallpaper = true;
184 break;
185 case INPUT_CONSUMER_PIP:
186 // The touchable region of the Pip input window is cropped to the bounds of the
187 // stack, and we need FLAG_NOT_TOUCH_MODAL to ensure other events fall through
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700188 consumer.mWindowHandle.layoutParamsFlags |= FLAG_NOT_TOUCH_MODAL;
Winson41275482016-10-10 15:17:45 -0700189 break;
190 }
191 addInputConsumer(name, consumer);
192 }
193
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800194 /* Notifies the window manager about a broken input channel.
Chong Zhang8e89b312015-09-09 15:09:30 -0700195 *
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800196 * Called by the InputManager.
197 */
Craig Mautner4cd0c13f2013-04-16 15:55:52 -0700198 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800199 public void notifyInputChannelBroken(InputWindowHandle inputWindowHandle) {
200 if (inputWindowHandle == null) {
201 return;
202 }
203
204 synchronized (mService.mWindowMap) {
205 WindowState windowState = (WindowState) inputWindowHandle.windowState;
Jeff Brown9302c872011-07-13 22:51:29 -0700206 if (windowState != null) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800207 Slog.i(TAG_WM, "WINDOW DIED " + windowState);
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700208 windowState.removeIfPossible();
Jeff Brown9302c872011-07-13 22:51:29 -0700209 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800210 }
211 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700212
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800213 /* Notifies the window manager about an application that is not responding.
214 * Returns a new timeout to continue waiting in nanoseconds, or 0 to abort dispatch.
Chong Zhang8e89b312015-09-09 15:09:30 -0700215 *
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800216 * Called by the InputManager.
217 */
Craig Mautner4cd0c13f2013-04-16 15:55:52 -0700218 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800219 public long notifyANR(InputApplicationHandle inputApplicationHandle,
Jeff Brownbd181bb2013-09-10 16:44:24 -0700220 InputWindowHandle inputWindowHandle, String reason) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800221 AppWindowToken appWindowToken = null;
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700222 WindowState windowState = null;
223 boolean aboveSystem = false;
Jeff Brownee172412012-06-18 12:58:03 -0700224 synchronized (mService.mWindowMap) {
Jeff Brownee172412012-06-18 12:58:03 -0700225 if (inputWindowHandle != null) {
226 windowState = (WindowState) inputWindowHandle.windowState;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800227 if (windowState != null) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800228 appWindowToken = windowState.mAppToken;
229 }
230 }
Jeff Brownee172412012-06-18 12:58:03 -0700231 if (appWindowToken == null && inputApplicationHandle != null) {
232 appWindowToken = (AppWindowToken)inputApplicationHandle.appWindowToken;
Jeff Brown9302c872011-07-13 22:51:29 -0700233 }
Jeff Brownee172412012-06-18 12:58:03 -0700234
235 if (windowState != null) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800236 Slog.i(TAG_WM, "Input event dispatching timed out "
Jeff Brownbd181bb2013-09-10 16:44:24 -0700237 + "sending to " + windowState.mAttrs.getTitle()
238 + ". Reason: " + reason);
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700239 // Figure out whether this window is layered above system windows.
240 // We need to do this here to help the activity manager know how to
241 // layer its ANR dialog.
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800242 int systemAlertLayer = mService.mPolicy.getWindowLayerFromTypeLw(
243 TYPE_APPLICATION_OVERLAY, windowState.mOwnerCanAddInternalSystemWindow);
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700244 aboveSystem = windowState.mBaseLayer > systemAlertLayer;
Jeff Brownee172412012-06-18 12:58:03 -0700245 } else if (appWindowToken != null) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800246 Slog.i(TAG_WM, "Input event dispatching timed out "
Jeff Brownbd181bb2013-09-10 16:44:24 -0700247 + "sending to application " + appWindowToken.stringName
248 + ". Reason: " + reason);
Jeff Brownee172412012-06-18 12:58:03 -0700249 } else {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800250 Slog.i(TAG_WM, "Input event dispatching timed out "
Jeff Brownbd181bb2013-09-10 16:44:24 -0700251 + ". Reason: " + reason);
Jeff Brownee172412012-06-18 12:58:03 -0700252 }
253
Jeff Brownbd181bb2013-09-10 16:44:24 -0700254 mService.saveANRStateLocked(appWindowToken, windowState, reason);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800255 }
256
257 if (appWindowToken != null && appWindowToken.appToken != null) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800258 // Notify the activity manager about the timeout and let it decide whether
259 // to abort dispatching or keep waiting.
260 final AppWindowContainerController controller = appWindowToken.getController();
Wale Ogunwale7402ddf2017-03-29 12:58:24 -0700261 final boolean abort = controller != null
262 && controller.keyDispatchingTimedOut(reason, windowState.mSession.mPid);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800263 if (!abort) {
264 // The activity manager declined to abort dispatching.
265 // Wait a bit longer and timeout again later.
266 return appWindowToken.mInputDispatchingTimeoutNanos;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800267 }
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700268 } else if (windowState != null) {
269 try {
270 // Notify the activity manager about the timeout and let it decide whether
271 // to abort dispatching or keep waiting.
Sudheer Shankadc589ac2016-11-10 15:30:17 -0800272 long timeout = ActivityManager.getService().inputDispatchingTimedOut(
Jeff Brownbd181bb2013-09-10 16:44:24 -0700273 windowState.mSession.mPid, aboveSystem, reason);
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700274 if (timeout >= 0) {
275 // The activity manager declined to abort dispatching.
276 // Wait a bit longer and timeout again later.
baik.handef340d2015-04-15 10:21:05 +0900277 return timeout * 1000000L; // nanoseconds
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700278 }
279 } catch (RemoteException ex) {
280 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800281 }
282 return 0; // abort dispatching
283 }
284
Wale Ogunwale7402ddf2017-03-29 12:58:24 -0700285 private void addInputWindowHandle(final InputWindowHandle windowHandle) {
Jeff Brown9302c872011-07-13 22:51:29 -0700286 if (mInputWindowHandles == null) {
287 mInputWindowHandles = new InputWindowHandle[16];
288 }
289 if (mInputWindowHandleCount >= mInputWindowHandles.length) {
290 mInputWindowHandles = Arrays.copyOf(mInputWindowHandles,
291 mInputWindowHandleCount * 2);
292 }
293 mInputWindowHandles[mInputWindowHandleCount++] = windowHandle;
294 }
295
Wale Ogunwalee05f5012016-09-16 16:27:29 -0700296 void addInputWindowHandle(final InputWindowHandle inputWindowHandle,
Craig Mautnerc08eab82014-11-11 09:03:59 -0800297 final WindowState child, int flags, final int type, final boolean isVisible,
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800298 final boolean hasFocus, final boolean hasWallpaper) {
Dianne Hackborna4b7f2f2012-05-21 11:28:41 -0700299 // Add a window to our list of input windows.
300 inputWindowHandle.name = child.toString();
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800301 flags = child.getTouchableRegion(inputWindowHandle.touchableRegion, flags);
Dianne Hackborna4b7f2f2012-05-21 11:28:41 -0700302 inputWindowHandle.layoutParamsFlags = flags;
303 inputWindowHandle.layoutParamsType = type;
304 inputWindowHandle.dispatchingTimeoutNanos = child.getInputDispatchingTimeoutNanos();
305 inputWindowHandle.visible = isVisible;
306 inputWindowHandle.canReceiveKeys = child.canReceiveKeys();
307 inputWindowHandle.hasFocus = hasFocus;
308 inputWindowHandle.hasWallpaper = hasWallpaper;
309 inputWindowHandle.paused = child.mAppToken != null ? child.mAppToken.paused : false;
310 inputWindowHandle.layer = child.mLayer;
311 inputWindowHandle.ownerPid = child.mSession.mPid;
312 inputWindowHandle.ownerUid = child.mSession.mUid;
313 inputWindowHandle.inputFeatures = child.mAttrs.inputFeatures;
314
315 final Rect frame = child.mFrame;
316 inputWindowHandle.frameLeft = frame.left;
317 inputWindowHandle.frameTop = frame.top;
318 inputWindowHandle.frameRight = frame.right;
319 inputWindowHandle.frameBottom = frame.bottom;
320
321 if (child.mGlobalScale != 1) {
322 // If we are scaling the window, input coordinates need
323 // to be inversely scaled to map from what is on screen
324 // to what is actually being touched in the UI.
325 inputWindowHandle.scaleFactor = 1.0f/child.mGlobalScale;
326 } else {
327 inputWindowHandle.scaleFactor = 1;
328 }
329
Filip Gruszczynskif8a2a632015-10-28 11:18:02 -0700330 if (DEBUG_INPUT) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800331 Slog.d(TAG_WM, "addInputWindowHandle: "
Chong Zhangb15758a2015-11-17 12:12:03 -0800332 + child + ", " + inputWindowHandle);
Filip Gruszczynskif8a2a632015-10-28 11:18:02 -0700333 }
Wale Ogunwalee05f5012016-09-16 16:27:29 -0700334 addInputWindowHandle(inputWindowHandle);
Vladislav Kaznacheev3787de12016-12-21 10:36:35 -0800335 if (hasFocus) {
336 mFocusedInputWindowHandle = inputWindowHandle;
337 }
Dianne Hackborna4b7f2f2012-05-21 11:28:41 -0700338 }
339
Jeff Brown9302c872011-07-13 22:51:29 -0700340 private void clearInputWindowHandlesLw() {
341 while (mInputWindowHandleCount != 0) {
342 mInputWindowHandles[--mInputWindowHandleCount] = null;
343 }
Vladislav Kaznacheev3787de12016-12-21 10:36:35 -0800344 mFocusedInputWindowHandle = null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800345 }
346
Wale Ogunwale6213caa2016-12-02 16:47:15 +0000347 void setUpdateInputWindowsNeededLw() {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800348 mUpdateInputWindowsNeeded = true;
349 }
350
351 /* Updates the cached window information provided to the input dispatcher. */
Wale Ogunwale6213caa2016-12-02 16:47:15 +0000352 void updateInputWindowsLw(boolean force) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800353 if (!force && !mUpdateInputWindowsNeeded) {
354 return;
355 }
356 mUpdateInputWindowsNeeded = false;
357
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800358 if (false) Slog.d(TAG_WM, ">>>>>> ENTERED updateInputWindowsLw");
Jeff Brown9302c872011-07-13 22:51:29 -0700359
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800360 // Populate the input window list with information about all of the windows that
361 // could potentially receive input.
362 // As an optimization, we could try to prune the list of windows but this turns
363 // out to be difficult because only the native code knows for sure which window
364 // currently has touch focus.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800365
Wale Ogunwalee05f5012016-09-16 16:27:29 -0700366 // If there's a drag in flight, provide a pseudo-window to catch drag input
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800367 final boolean inDrag = (mService.mDragState != null);
368 if (inDrag) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800369 if (DEBUG_DRAG) {
370 Log.d(TAG_WM, "Inserting drag window");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800371 }
Vladislav Kaznacheev64b103a2016-08-10 11:49:08 -0700372 final InputWindowHandle dragWindowHandle = mService.mDragState.getInputWindowHandle();
Jeff Browncc4f7db2011-08-30 20:34:48 -0700373 if (dragWindowHandle != null) {
Wale Ogunwalee05f5012016-09-16 16:27:29 -0700374 addInputWindowHandle(dragWindowHandle);
Jeff Browncc4f7db2011-08-30 20:34:48 -0700375 } else {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800376 Slog.w(TAG_WM, "Drag is in progress but there is no "
Jeff Browncc4f7db2011-08-30 20:34:48 -0700377 + "drag window handle.");
378 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800379 }
380
Chong Zhang8e89b312015-09-09 15:09:30 -0700381 final boolean inPositioning = (mService.mTaskPositioner != null);
382 if (inPositioning) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800383 if (DEBUG_TASK_POSITIONING) {
384 Log.d(TAG_WM, "Inserting window handle for repositioning");
Chong Zhang8e89b312015-09-09 15:09:30 -0700385 }
386 final InputWindowHandle dragWindowHandle = mService.mTaskPositioner.mDragWindowHandle;
387 if (dragWindowHandle != null) {
Wale Ogunwalee05f5012016-09-16 16:27:29 -0700388 addInputWindowHandle(dragWindowHandle);
Chong Zhang8e89b312015-09-09 15:09:30 -0700389 } else {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800390 Slog.e(TAG_WM,
Chong Zhang8e89b312015-09-09 15:09:30 -0700391 "Repositioning is in progress but there is no drag window handle.");
392 }
393 }
394
Jeff Brown83d616a2012-09-09 20:33:43 -0700395 // Add all windows on the default display.
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800396 mUpdateInputForAllWindowsConsumer.updateInputWindows(inDrag);
Wale Ogunwale6213caa2016-12-02 16:47:15 +0000397
398 if (false) Slog.d(TAG_WM, "<<<<<<< EXITED updateInputWindowsLw");
399 }
400
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800401 /* Notifies that the input device configuration has changed. */
Jeff Brown0b31d812013-08-22 19:41:29 -0700402 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800403 public void notifyConfigurationChanged() {
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700404 // TODO(multi-display): Notify proper displays that are associated with this input device.
405 mService.sendNewConfiguration(DEFAULT_DISPLAY);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800406
407 synchronized (mInputDevicesReadyMonitor) {
408 if (!mInputDevicesReady) {
409 mInputDevicesReady = true;
410 mInputDevicesReadyMonitor.notifyAll();
411 }
412 }
413 }
414
415 /* Waits until the built-in input devices have been configured. */
416 public boolean waitForInputDevicesReady(long timeoutMillis) {
417 synchronized (mInputDevicesReadyMonitor) {
418 if (!mInputDevicesReady) {
419 try {
420 mInputDevicesReadyMonitor.wait(timeoutMillis);
421 } catch (InterruptedException ex) {
422 }
423 }
424 return mInputDevicesReady;
425 }
426 }
427
428 /* Notifies that the lid switch changed state. */
Jeff Brown0b31d812013-08-22 19:41:29 -0700429 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800430 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
431 mService.mPolicy.notifyLidSwitchChanged(whenNanos, lidOpen);
432 }
Craig Mautner58458122013-09-14 14:59:50 -0700433
Michael Wright3818c922014-09-02 13:59:07 -0700434 /* Notifies that the camera lens cover state has changed. */
435 @Override
436 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
437 mService.mPolicy.notifyCameraLensCoverSwitchChanged(whenNanos, lensCovered);
438 }
439
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800440 /* Provides an opportunity for the window manager policy to intercept early key
441 * processing as soon as the key has been read from the device. */
Jeff Brown0b31d812013-08-22 19:41:29 -0700442 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -0700443 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
444 return mService.mPolicy.interceptKeyBeforeQueueing(event, policyFlags);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800445 }
Jeff Brown56194eb2011-03-02 19:23:13 -0800446
Michael Wright70af00a2014-09-03 19:30:20 -0700447 /* Provides an opportunity for the window manager policy to intercept early motion event
448 * processing when the device is in a non-interactive state since these events are normally
Jeff Brown56194eb2011-03-02 19:23:13 -0800449 * dropped. */
Jeff Brown0b31d812013-08-22 19:41:29 -0700450 @Override
Michael Wright70af00a2014-09-03 19:30:20 -0700451 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
452 return mService.mPolicy.interceptMotionBeforeQueueingNonInteractive(
453 whenNanos, policyFlags);
Jeff Brown56194eb2011-03-02 19:23:13 -0800454 }
455
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800456 /* Provides an opportunity for the window manager policy to process a key before
457 * ordinary dispatch. */
Jeff Brown0b31d812013-08-22 19:41:29 -0700458 @Override
Jeff Brown905805a2011-10-12 13:57:59 -0700459 public long interceptKeyBeforeDispatching(
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800460 InputWindowHandle focus, KeyEvent event, int policyFlags) {
461 WindowState windowState = focus != null ? (WindowState) focus.windowState : null;
462 return mService.mPolicy.interceptKeyBeforeDispatching(windowState, event, policyFlags);
463 }
Craig Mautner58458122013-09-14 14:59:50 -0700464
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800465 /* Provides an opportunity for the window manager policy to process a key that
466 * the application did not handle. */
Jeff Brown0b31d812013-08-22 19:41:29 -0700467 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800468 public KeyEvent dispatchUnhandledKey(
469 InputWindowHandle focus, KeyEvent event, int policyFlags) {
470 WindowState windowState = focus != null ? (WindowState) focus.windowState : null;
471 return mService.mPolicy.dispatchUnhandledKey(windowState, event, policyFlags);
472 }
Jeff Brown4532e612012-04-05 14:27:12 -0700473
474 /* Callback to get pointer layer. */
Jeff Brown0b31d812013-08-22 19:41:29 -0700475 @Override
Jeff Brown4532e612012-04-05 14:27:12 -0700476 public int getPointerLayer() {
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800477 return mService.mPolicy.getWindowLayerFromTypeLw(WindowManager.LayoutParams.TYPE_POINTER)
Jeff Brown4532e612012-04-05 14:27:12 -0700478 * WindowManagerService.TYPE_LAYER_MULTIPLIER
479 + WindowManagerService.TYPE_LAYER_OFFSET;
480 }
481
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800482 /* Called when the current input focus changes.
483 * Layer assignment is assumed to be complete by the time this is called.
484 */
485 public void setInputFocusLw(WindowState newWindow, boolean updateInputWindows) {
Filip Gruszczynskif8a2a632015-10-28 11:18:02 -0700486 if (DEBUG_FOCUS_LIGHT || DEBUG_INPUT) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800487 Slog.d(TAG_WM, "Input focus has changed to " + newWindow);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800488 }
489
490 if (newWindow != mInputFocus) {
491 if (newWindow != null && newWindow.canReceiveKeys()) {
492 // Displaying a window implicitly causes dispatching to be unpaused.
493 // This is to protect against bugs if someone pauses dispatching but
494 // forgets to resume.
495 newWindow.mToken.paused = false;
496 }
497
498 mInputFocus = newWindow;
499 setUpdateInputWindowsNeededLw();
500
501 if (updateInputWindows) {
502 updateInputWindowsLw(false /*force*/);
503 }
504 }
505 }
Craig Mautner58458122013-09-14 14:59:50 -0700506
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800507 public void setFocusedAppLw(AppWindowToken newApp) {
508 // Focused app has changed.
509 if (newApp == null) {
510 mService.mInputManager.setFocusedApplication(null);
511 } else {
Jeff Brown9302c872011-07-13 22:51:29 -0700512 final InputApplicationHandle handle = newApp.mInputApplicationHandle;
513 handle.name = newApp.toString();
Wale Ogunwale72919d22016-12-08 18:58:50 -0800514 handle.dispatchingTimeoutNanos = newApp.mInputDispatchingTimeoutNanos;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800515
Jeff Brown9302c872011-07-13 22:51:29 -0700516 mService.mInputManager.setFocusedApplication(handle);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800517 }
518 }
Craig Mautner58458122013-09-14 14:59:50 -0700519
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800520 public void pauseDispatchingLw(WindowToken window) {
521 if (! window.paused) {
Filip Gruszczynskif8a2a632015-10-28 11:18:02 -0700522 if (DEBUG_INPUT) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800523 Slog.v(TAG_WM, "Pausing WindowToken " + window);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800524 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700525
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800526 window.paused = true;
527 updateInputWindowsLw(true /*force*/);
528 }
529 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700530
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800531 public void resumeDispatchingLw(WindowToken window) {
532 if (window.paused) {
Filip Gruszczynskif8a2a632015-10-28 11:18:02 -0700533 if (DEBUG_INPUT) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800534 Slog.v(TAG_WM, "Resuming WindowToken " + window);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800535 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700536
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800537 window.paused = false;
538 updateInputWindowsLw(true /*force*/);
539 }
540 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700541
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800542 public void freezeInputDispatchingLw() {
Wale Ogunwalee89eeac2016-03-12 11:07:58 -0800543 if (!mInputDispatchFrozen) {
Filip Gruszczynskif8a2a632015-10-28 11:18:02 -0700544 if (DEBUG_INPUT) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800545 Slog.v(TAG_WM, "Freezing input dispatching");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800546 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700547
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800548 mInputDispatchFrozen = true;
Wale Ogunwalee89eeac2016-03-12 11:07:58 -0800549
550 if (DEBUG_INPUT || true) {
551 mInputFreezeReason = Debug.getCallers(6);
552 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800553 updateInputDispatchModeLw();
554 }
555 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700556
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800557 public void thawInputDispatchingLw() {
558 if (mInputDispatchFrozen) {
Filip Gruszczynskif8a2a632015-10-28 11:18:02 -0700559 if (DEBUG_INPUT) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800560 Slog.v(TAG_WM, "Thawing input dispatching");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800561 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700562
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800563 mInputDispatchFrozen = false;
Wale Ogunwalee89eeac2016-03-12 11:07:58 -0800564 mInputFreezeReason = null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800565 updateInputDispatchModeLw();
566 }
567 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700568
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800569 public void setEventDispatchingLw(boolean enabled) {
570 if (mInputDispatchEnabled != enabled) {
Filip Gruszczynskif8a2a632015-10-28 11:18:02 -0700571 if (DEBUG_INPUT) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800572 Slog.v(TAG_WM, "Setting event dispatching to " + enabled);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800573 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700574
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800575 mInputDispatchEnabled = enabled;
576 updateInputDispatchModeLw();
577 }
578 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700579
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800580 private void updateInputDispatchModeLw() {
581 mService.mInputManager.setInputDispatchMode(mInputDispatchEnabled, mInputDispatchFrozen);
582 }
Wale Ogunwalee89eeac2016-03-12 11:07:58 -0800583
584 void dump(PrintWriter pw, String prefix) {
585 if (mInputFreezeReason != null) {
586 pw.println(prefix + "mInputFreezeReason=" + mInputFreezeReason);
587 }
Winson Chung853c99a2017-03-21 22:16:42 -0700588 final Set<String> inputConsumerKeys = mInputConsumers.keySet();
589 if (!inputConsumerKeys.isEmpty()) {
590 pw.println(prefix + "InputConsumers:");
591 for (String key : inputConsumerKeys) {
592 pw.println(prefix + " name=" + key);
593 }
594 }
Wale Ogunwalee89eeac2016-03-12 11:07:58 -0800595 }
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800596
597 private final class UpdateInputForAllWindowsConsumer implements Consumer<WindowState> {
598
599 InputConsumerImpl navInputConsumer;
600 InputConsumerImpl pipInputConsumer;
601 InputConsumerImpl wallpaperInputConsumer;
602 Rect pipTouchableBounds;
603 boolean inDrag;
604 WallpaperController wallpaperController;
605
606 private void updateInputWindows(boolean inDrag) {
607
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800608 // TODO: multi-display
609 navInputConsumer = getInputConsumer(INPUT_CONSUMER_NAVIGATION, DEFAULT_DISPLAY);
610 pipInputConsumer = getInputConsumer(INPUT_CONSUMER_PIP, DEFAULT_DISPLAY);
611 wallpaperInputConsumer = getInputConsumer(INPUT_CONSUMER_WALLPAPER, DEFAULT_DISPLAY);
612 mAddInputConsumerHandle = navInputConsumer != null;
613 mAddPipInputConsumerHandle = pipInputConsumer != null;
614 mAddWallpaperInputConsumerHandle = wallpaperInputConsumer != null;
615 mTmpRect.setEmpty();
616 pipTouchableBounds = mAddPipInputConsumerHandle ? mTmpRect : null;
617 mDisableWallpaperTouchEvents = false;
618 this.inDrag = inDrag;
619 wallpaperController = mService.mRoot.mWallpaperController;
620
621 mService.mRoot.forAllWindows(this, true /* traverseTopToBottom */);
622 if (mAddWallpaperInputConsumerHandle) {
623 // No visible wallpaper found, add the wallpaper input consumer at the end.
624 addInputWindowHandle(wallpaperInputConsumer.mWindowHandle);
625 }
626
627 // Send windows to native code.
Vladislav Kaznacheev3787de12016-12-21 10:36:35 -0800628 mService.mInputManager.setInputWindows(mInputWindowHandles, mFocusedInputWindowHandle);
Vladislav Kaznacheev2e96c632016-12-13 14:31:24 -0800629
630 clearInputWindowHandlesLw();
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800631 }
632
633 @Override
634 public void accept(WindowState w) {
635 final InputChannel inputChannel = w.mInputChannel;
636 final InputWindowHandle inputWindowHandle = w.mInputWindowHandle;
637 if (inputChannel == null || inputWindowHandle == null || w.mRemoved
Matthew Nge15352e2016-12-20 15:36:29 -0800638 || w.canReceiveTouchInput()) {
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800639 // Skip this window because it cannot possibly receive input.
640 return;
641 }
642
Winson Chung61ecc1b2017-02-17 10:46:17 -0800643 final int flags = w.mAttrs.flags;
644 final int privateFlags = w.mAttrs.privateFlags;
645 final int type = w.mAttrs.type;
646 final boolean hasFocus = w == mInputFocus;
647 final boolean isVisible = w.isVisibleLw();
648
649 if (w.getStackId() == PINNED_STACK_ID) {
650 if (mAddPipInputConsumerHandle
651 && (inputWindowHandle.layer <= pipInputConsumer.mWindowHandle.layer)) {
652 // Update the bounds of the Pip input consumer to match the Pinned stack
653 w.getStack().getBounds(pipTouchableBounds);
654 pipInputConsumer.mWindowHandle.touchableRegion.set(pipTouchableBounds);
655 addInputWindowHandle(pipInputConsumer.mWindowHandle);
656 mAddPipInputConsumerHandle = false;
657 }
658 // TODO: Fix w.canReceiveTouchInput() to handle this case
659 if (!hasFocus) {
660 // Skip this pinned stack window if it does not have focus
661 return;
662 }
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800663 }
664
665 if (mAddInputConsumerHandle
666 && inputWindowHandle.layer <= navInputConsumer.mWindowHandle.layer) {
667 addInputWindowHandle(navInputConsumer.mWindowHandle);
668 mAddInputConsumerHandle = false;
669 }
670
671 if (mAddWallpaperInputConsumerHandle) {
672 if (w.mAttrs.type == TYPE_WALLPAPER && w.isVisibleLw()) {
673 // Add the wallpaper input consumer above the first visible wallpaper.
674 addInputWindowHandle(wallpaperInputConsumer.mWindowHandle);
675 mAddWallpaperInputConsumerHandle = false;
676 }
677 }
678
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800679 if ((privateFlags & PRIVATE_FLAG_DISABLE_WALLPAPER_TOUCH_EVENTS) != 0) {
680 mDisableWallpaperTouchEvents = true;
681 }
682 final boolean hasWallpaper = wallpaperController.isWallpaperTarget(w)
683 && (privateFlags & PRIVATE_FLAG_KEYGUARD) == 0
684 && !mDisableWallpaperTouchEvents;
685
686 // If there's a drag in progress and 'child' is a potential drop target,
687 // make sure it's been told about the drag
688 if (inDrag && isVisible && w.getDisplayContent().isDefaultDisplay) {
689 mService.mDragState.sendDragStartedIfNeededLw(w);
690 }
691
692 addInputWindowHandle(
693 inputWindowHandle, w, flags, type, isVisible, hasFocus, hasWallpaper);
694 }
695 }
Jeff Brownea426552011-07-18 16:53:48 -0700696}