blob: 3735a0bcc6f5f4f00ae51adf19187248f8ee1aab [file] [log] [blame]
Michael Wrightd02c5b62014-02-10 15:10:22 -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.
15 */
16
17#ifndef _UI_INPUT_DISPATCHER_H
18#define _UI_INPUT_DISPATCHER_H
19
Siarhei Vishniakou443ad902019-03-06 17:25:41 -080020#include <condition_variable>
Michael Wrightd02c5b62014-02-10 15:10:22 -080021#include <input/Input.h>
Robert Carr3720ed02018-08-08 16:08:27 -070022#include <input/InputApplication.h>
Michael Wrightd02c5b62014-02-10 15:10:22 -080023#include <input/InputTransport.h>
Robert Carr3720ed02018-08-08 16:08:27 -070024#include <input/InputWindow.h>
chaviw291d88a2019-02-14 10:33:58 -080025#include <input/ISetInputWindowsListener.h>
Michael Wrightd02c5b62014-02-10 15:10:22 -080026#include <utils/threads.h>
27#include <utils/Timers.h>
28#include <utils/RefBase.h>
Michael Wrightd02c5b62014-02-10 15:10:22 -080029#include <utils/Looper.h>
30#include <utils/BitSet.h>
31#include <cutils/atomic.h>
Robert Carr5c8a0262018-10-03 16:30:44 -070032#include <unordered_map>
Michael Wrightd02c5b62014-02-10 15:10:22 -080033
34#include <stddef.h>
35#include <unistd.h>
36#include <limits.h>
Arthur Hungb92218b2018-08-14 12:00:21 +080037#include <unordered_map>
Michael Wrightd02c5b62014-02-10 15:10:22 -080038
Michael Wrightd02c5b62014-02-10 15:10:22 -080039#include "InputListener.h"
Prabir Pradhan79a4f0c2019-01-09 11:24:01 -080040#include "InputReporterInterface.h"
Michael Wrightd02c5b62014-02-10 15:10:22 -080041
Michael Wrightd02c5b62014-02-10 15:10:22 -080042namespace android {
43
44/*
45 * Constants used to report the outcome of input event injection.
46 */
47enum {
48 /* (INTERNAL USE ONLY) Specifies that injection is pending and its outcome is unknown. */
49 INPUT_EVENT_INJECTION_PENDING = -1,
50
51 /* Injection succeeded. */
52 INPUT_EVENT_INJECTION_SUCCEEDED = 0,
53
54 /* Injection failed because the injector did not have permission to inject
55 * into the application with input focus. */
56 INPUT_EVENT_INJECTION_PERMISSION_DENIED = 1,
57
58 /* Injection failed because there were no available input targets. */
59 INPUT_EVENT_INJECTION_FAILED = 2,
60
61 /* Injection failed due to a timeout. */
62 INPUT_EVENT_INJECTION_TIMED_OUT = 3
63};
64
65/*
66 * Constants used to determine the input event injection synchronization mode.
67 */
68enum {
69 /* Injection is asynchronous and is assumed always to be successful. */
70 INPUT_EVENT_INJECTION_SYNC_NONE = 0,
71
72 /* Waits for previous events to be dispatched so that the input dispatcher can determine
73 * whether input event injection willbe permitted based on the current input focus.
74 * Does not wait for the input event to finish processing. */
75 INPUT_EVENT_INJECTION_SYNC_WAIT_FOR_RESULT = 1,
76
77 /* Waits for the input event to be completely processed. */
78 INPUT_EVENT_INJECTION_SYNC_WAIT_FOR_FINISHED = 2,
79};
80
81
82/*
83 * An input target specifies how an input event is to be dispatched to a particular window
84 * including the window's input channel, control flags, a timeout, and an X / Y offset to
85 * be added to input event coordinates to compensate for the absolute position of the
86 * window area.
87 */
88struct InputTarget {
89 enum {
90 /* This flag indicates that the event is being delivered to a foreground application. */
91 FLAG_FOREGROUND = 1 << 0,
92
Michael Wrightcdcd8f22016-03-22 16:52:13 -070093 /* This flag indicates that the MotionEvent falls within the area of the target
Michael Wrightd02c5b62014-02-10 15:10:22 -080094 * obscured by another visible window above it. The motion event should be
95 * delivered with flag AMOTION_EVENT_FLAG_WINDOW_IS_OBSCURED. */
96 FLAG_WINDOW_IS_OBSCURED = 1 << 1,
97
98 /* This flag indicates that a motion event is being split across multiple windows. */
99 FLAG_SPLIT = 1 << 2,
100
101 /* This flag indicates that the pointer coordinates dispatched to the application
102 * will be zeroed out to avoid revealing information to an application. This is
103 * used in conjunction with FLAG_DISPATCH_AS_OUTSIDE to prevent apps not sharing
104 * the same UID from watching all touches. */
105 FLAG_ZERO_COORDS = 1 << 3,
106
107 /* This flag indicates that the event should be sent as is.
108 * Should always be set unless the event is to be transmuted. */
109 FLAG_DISPATCH_AS_IS = 1 << 8,
110
111 /* This flag indicates that a MotionEvent with AMOTION_EVENT_ACTION_DOWN falls outside
112 * of the area of this target and so should instead be delivered as an
113 * AMOTION_EVENT_ACTION_OUTSIDE to this target. */
114 FLAG_DISPATCH_AS_OUTSIDE = 1 << 9,
115
116 /* This flag indicates that a hover sequence is starting in the given window.
117 * The event is transmuted into ACTION_HOVER_ENTER. */
118 FLAG_DISPATCH_AS_HOVER_ENTER = 1 << 10,
119
120 /* This flag indicates that a hover event happened outside of a window which handled
121 * previous hover events, signifying the end of the current hover sequence for that
122 * window.
123 * The event is transmuted into ACTION_HOVER_ENTER. */
124 FLAG_DISPATCH_AS_HOVER_EXIT = 1 << 11,
125
126 /* This flag indicates that the event should be canceled.
127 * It is used to transmute ACTION_MOVE into ACTION_CANCEL when a touch slips
128 * outside of a window. */
129 FLAG_DISPATCH_AS_SLIPPERY_EXIT = 1 << 12,
130
131 /* This flag indicates that the event should be dispatched as an initial down.
132 * It is used to transmute ACTION_MOVE into ACTION_DOWN when a touch slips
133 * into a new window. */
134 FLAG_DISPATCH_AS_SLIPPERY_ENTER = 1 << 13,
135
136 /* Mask for all dispatch modes. */
137 FLAG_DISPATCH_MASK = FLAG_DISPATCH_AS_IS
138 | FLAG_DISPATCH_AS_OUTSIDE
139 | FLAG_DISPATCH_AS_HOVER_ENTER
140 | FLAG_DISPATCH_AS_HOVER_EXIT
141 | FLAG_DISPATCH_AS_SLIPPERY_EXIT
142 | FLAG_DISPATCH_AS_SLIPPERY_ENTER,
Michael Wrightcdcd8f22016-03-22 16:52:13 -0700143
144 /* This flag indicates that the target of a MotionEvent is partly or wholly
145 * obscured by another visible window above it. The motion event should be
146 * delivered with flag AMOTION_EVENT_FLAG_WINDOW_IS_PARTIALLY_OBSCURED. */
147 FLAG_WINDOW_IS_PARTIALLY_OBSCURED = 1 << 14,
148
Michael Wrightd02c5b62014-02-10 15:10:22 -0800149 };
150
151 // The input channel to be targeted.
152 sp<InputChannel> inputChannel;
153
154 // Flags for the input target.
155 int32_t flags;
156
157 // The x and y offset to add to a MotionEvent as it is delivered.
158 // (ignored for KeyEvents)
159 float xOffset, yOffset;
160
161 // Scaling factor to apply to MotionEvent as it is delivered.
162 // (ignored for KeyEvents)
Robert Carre07e1032018-11-26 12:55:53 -0800163 float globalScaleFactor;
164 float windowXScale = 1.0f;
165 float windowYScale = 1.0f;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800166
167 // The subset of pointer ids to include in motion events dispatched to this input target
168 // if FLAG_SPLIT is set.
169 BitSet32 pointerIds;
170};
171
172
173/*
174 * Input dispatcher configuration.
175 *
176 * Specifies various options that modify the behavior of the input dispatcher.
177 * The values provided here are merely defaults. The actual values will come from ViewConfiguration
178 * and are passed into the dispatcher during initialization.
179 */
180struct InputDispatcherConfiguration {
181 // The key repeat initial timeout.
182 nsecs_t keyRepeatTimeout;
183
184 // The key repeat inter-key delay.
185 nsecs_t keyRepeatDelay;
186
187 InputDispatcherConfiguration() :
188 keyRepeatTimeout(500 * 1000000LL),
189 keyRepeatDelay(50 * 1000000LL) { }
190};
191
192
193/*
194 * Input dispatcher policy interface.
195 *
196 * The input reader policy is used by the input reader to interact with the Window Manager
197 * and other system components.
198 *
199 * The actual implementation is partially supported by callbacks into the DVM
200 * via JNI. This interface is also mocked in the unit tests.
201 */
202class InputDispatcherPolicyInterface : public virtual RefBase {
203protected:
204 InputDispatcherPolicyInterface() { }
205 virtual ~InputDispatcherPolicyInterface() { }
206
207public:
208 /* Notifies the system that a configuration change has occurred. */
209 virtual void notifyConfigurationChanged(nsecs_t when) = 0;
210
211 /* Notifies the system that an application is not responding.
212 * Returns a new timeout to continue waiting, or 0 to abort dispatch. */
213 virtual nsecs_t notifyANR(const sp<InputApplicationHandle>& inputApplicationHandle,
Robert Carr803535b2018-08-02 16:38:15 -0700214 const sp<IBinder>& token,
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -0800215 const std::string& reason) = 0;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800216
217 /* Notifies the system that an input channel is unrecoverably broken. */
Robert Carr803535b2018-08-02 16:38:15 -0700218 virtual void notifyInputChannelBroken(const sp<IBinder>& token) = 0;
chaviw0c06c6e2019-01-09 13:27:07 -0800219 virtual void notifyFocusChanged(const sp<IBinder>& oldToken, const sp<IBinder>& newToken) = 0;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800220
221 /* Gets the input dispatcher configuration. */
222 virtual void getDispatcherConfiguration(InputDispatcherConfiguration* outConfig) = 0;
223
Michael Wrightd02c5b62014-02-10 15:10:22 -0800224 /* Filters an input event.
225 * Return true to dispatch the event unmodified, false to consume the event.
226 * A filter can also transform and inject events later by passing POLICY_FLAG_FILTERED
227 * to injectInputEvent.
228 */
229 virtual bool filterInputEvent(const InputEvent* inputEvent, uint32_t policyFlags) = 0;
230
231 /* Intercepts a key event immediately before queueing it.
232 * The policy can use this method as an opportunity to perform power management functions
233 * and early event preprocessing such as updating policy flags.
234 *
235 * This method is expected to set the POLICY_FLAG_PASS_TO_USER policy flag if the event
236 * should be dispatched to applications.
237 */
238 virtual void interceptKeyBeforeQueueing(const KeyEvent* keyEvent, uint32_t& policyFlags) = 0;
239
240 /* Intercepts a touch, trackball or other motion event before queueing it.
241 * The policy can use this method as an opportunity to perform power management functions
242 * and early event preprocessing such as updating policy flags.
243 *
244 * This method is expected to set the POLICY_FLAG_PASS_TO_USER policy flag if the event
245 * should be dispatched to applications.
246 */
Charles Chen3611f1f2019-01-29 17:26:18 +0800247 virtual void interceptMotionBeforeQueueing(const int32_t displayId, nsecs_t when,
248 uint32_t& policyFlags) = 0;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800249
250 /* Allows the policy a chance to intercept a key before dispatching. */
Robert Carr803535b2018-08-02 16:38:15 -0700251 virtual nsecs_t interceptKeyBeforeDispatching(const sp<IBinder>& token,
Michael Wrightd02c5b62014-02-10 15:10:22 -0800252 const KeyEvent* keyEvent, uint32_t policyFlags) = 0;
253
254 /* Allows the policy a chance to perform default processing for an unhandled key.
255 * Returns an alternate keycode to redispatch as a fallback, or 0 to give up. */
Robert Carr803535b2018-08-02 16:38:15 -0700256 virtual bool dispatchUnhandledKey(const sp<IBinder>& token,
Michael Wrightd02c5b62014-02-10 15:10:22 -0800257 const KeyEvent* keyEvent, uint32_t policyFlags, KeyEvent* outFallbackKeyEvent) = 0;
258
259 /* Notifies the policy about switch events.
260 */
261 virtual void notifySwitch(nsecs_t when,
262 uint32_t switchValues, uint32_t switchMask, uint32_t policyFlags) = 0;
263
264 /* Poke user activity for an event dispatched to a window. */
265 virtual void pokeUserActivity(nsecs_t eventTime, int32_t eventType) = 0;
266
267 /* Checks whether a given application pid/uid has permission to inject input events
268 * into other applications.
269 *
270 * This method is special in that its implementation promises to be non-reentrant and
271 * is safe to call while holding other locks. (Most other methods make no such guarantees!)
272 */
273 virtual bool checkInjectEventsPermissionNonReentrant(
274 int32_t injectorPid, int32_t injectorUid) = 0;
275};
276
277
278/* Notifies the system about input events generated by the input reader.
279 * The dispatcher is expected to be mostly asynchronous. */
280class InputDispatcherInterface : public virtual RefBase, public InputListenerInterface {
281protected:
282 InputDispatcherInterface() { }
283 virtual ~InputDispatcherInterface() { }
284
285public:
286 /* Dumps the state of the input dispatcher.
287 *
288 * This method may be called on any thread (usually by the input manager). */
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -0800289 virtual void dump(std::string& dump) = 0;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800290
291 /* Called by the heatbeat to ensures that the dispatcher has not deadlocked. */
292 virtual void monitor() = 0;
293
294 /* Runs a single iteration of the dispatch loop.
295 * Nominally processes one queued event, a timeout, or a response from an input consumer.
296 *
297 * This method should only be called on the input dispatcher thread.
298 */
299 virtual void dispatchOnce() = 0;
300
301 /* Injects an input event and optionally waits for sync.
302 * The synchronization mode determines whether the method blocks while waiting for
303 * input injection to proceed.
304 * Returns one of the INPUT_EVENT_INJECTION_XXX constants.
305 *
306 * This method may be called on any thread (usually by the input manager).
307 */
Siarhei Vishniakou777a10b2018-01-31 16:45:06 -0800308 virtual int32_t injectInputEvent(const InputEvent* event,
Michael Wrightd02c5b62014-02-10 15:10:22 -0800309 int32_t injectorPid, int32_t injectorUid, int32_t syncMode, int32_t timeoutMillis,
310 uint32_t policyFlags) = 0;
311
312 /* Sets the list of input windows.
313 *
314 * This method may be called on any thread (usually by the input manager).
315 */
Arthur Hung7c3ae9c2019-03-11 11:23:03 +0800316 virtual void setInputWindows(const std::vector<sp<InputWindowHandle> >& inputWindowHandles,
chaviw291d88a2019-02-14 10:33:58 -0800317 int32_t displayId,
318 const sp<ISetInputWindowsListener>& setInputWindowsListener = nullptr) = 0;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800319
Tiger Huang721e26f2018-07-24 22:26:19 +0800320 /* Sets the focused application on the given display.
Michael Wrightd02c5b62014-02-10 15:10:22 -0800321 *
322 * This method may be called on any thread (usually by the input manager).
323 */
324 virtual void setFocusedApplication(
Tiger Huang721e26f2018-07-24 22:26:19 +0800325 int32_t displayId, const sp<InputApplicationHandle>& inputApplicationHandle) = 0;
326
327 /* Sets the focused display.
328 *
329 * This method may be called on any thread (usually by the input manager).
330 */
331 virtual void setFocusedDisplay(int32_t displayId) = 0;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800332
333 /* Sets the input dispatching mode.
334 *
335 * This method may be called on any thread (usually by the input manager).
336 */
337 virtual void setInputDispatchMode(bool enabled, bool frozen) = 0;
338
339 /* Sets whether input event filtering is enabled.
340 * When enabled, incoming input events are sent to the policy's filterInputEvent
341 * method instead of being dispatched. The filter is expected to use
342 * injectInputEvent to inject the events it would like to have dispatched.
343 * It should include POLICY_FLAG_FILTERED in the policy flags during injection.
344 */
345 virtual void setInputFilterEnabled(bool enabled) = 0;
346
chaviwfbe5d9c2018-12-26 12:23:37 -0800347 /* Transfers touch focus from one window to another window.
Michael Wrightd02c5b62014-02-10 15:10:22 -0800348 *
349 * Returns true on success. False if the window did not actually have touch focus.
350 */
chaviwfbe5d9c2018-12-26 12:23:37 -0800351 virtual bool transferTouchFocus(const sp<IBinder>& fromToken, const sp<IBinder>& toToken) = 0;
352
Arthur Hung2fbf37f2018-09-13 18:16:41 +0800353 /* Registers input channels that may be used as targets for input events.
354 * If inputWindowHandle is null, and displayId is not ADISPLAY_ID_NONE,
355 * the channel will receive a copy of all input events form the specific displayId.
Michael Wrightd02c5b62014-02-10 15:10:22 -0800356 *
Arthur Hung2fbf37f2018-09-13 18:16:41 +0800357 * This method may be called on any thread (usually by the input manager).
Michael Wrightd02c5b62014-02-10 15:10:22 -0800358 */
Robert Carr803535b2018-08-02 16:38:15 -0700359 virtual status_t registerInputChannel(
360 const sp<InputChannel>& inputChannel, int32_t displayId) = 0;
Arthur Hung2fbf37f2018-09-13 18:16:41 +0800361
362 /* Unregister input channels that will no longer receive input events.
363 *
364 * This method may be called on any thread (usually by the input manager).
365 */
Michael Wrightd02c5b62014-02-10 15:10:22 -0800366 virtual status_t unregisterInputChannel(const sp<InputChannel>& inputChannel) = 0;
367};
368
369/* Dispatches events to input targets. Some functions of the input dispatcher, such as
370 * identifying input targets, are controlled by a separate policy object.
371 *
372 * IMPORTANT INVARIANT:
373 * Because the policy can potentially block or cause re-entrance into the input dispatcher,
374 * the input dispatcher never calls into the policy while holding its internal locks.
375 * The implementation is also carefully designed to recover from scenarios such as an
376 * input channel becoming unregistered while identifying input targets or processing timeouts.
377 *
378 * Methods marked 'Locked' must be called with the lock acquired.
379 *
380 * Methods marked 'LockedInterruptible' must be called with the lock acquired but
381 * may during the course of their execution release the lock, call into the policy, and
382 * then reacquire the lock. The caller is responsible for recovering gracefully.
383 *
384 * A 'LockedInterruptible' method may called a 'Locked' method, but NOT vice-versa.
385 */
386class InputDispatcher : public InputDispatcherInterface {
387protected:
388 virtual ~InputDispatcher();
389
390public:
391 explicit InputDispatcher(const sp<InputDispatcherPolicyInterface>& policy);
392
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -0800393 virtual void dump(std::string& dump);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800394 virtual void monitor();
395
396 virtual void dispatchOnce();
397
398 virtual void notifyConfigurationChanged(const NotifyConfigurationChangedArgs* args);
399 virtual void notifyKey(const NotifyKeyArgs* args);
400 virtual void notifyMotion(const NotifyMotionArgs* args);
401 virtual void notifySwitch(const NotifySwitchArgs* args);
402 virtual void notifyDeviceReset(const NotifyDeviceResetArgs* args);
403
Siarhei Vishniakou777a10b2018-01-31 16:45:06 -0800404 virtual int32_t injectInputEvent(const InputEvent* event,
Michael Wrightd02c5b62014-02-10 15:10:22 -0800405 int32_t injectorPid, int32_t injectorUid, int32_t syncMode, int32_t timeoutMillis,
406 uint32_t policyFlags);
407
Arthur Hung7c3ae9c2019-03-11 11:23:03 +0800408 virtual void setInputWindows(const std::vector<sp<InputWindowHandle> >& inputWindowHandles,
chaviw291d88a2019-02-14 10:33:58 -0800409 int32_t displayId,
410 const sp<ISetInputWindowsListener>& setInputWindowsListener = nullptr);
Tiger Huang721e26f2018-07-24 22:26:19 +0800411 virtual void setFocusedApplication(int32_t displayId,
412 const sp<InputApplicationHandle>& inputApplicationHandle);
413 virtual void setFocusedDisplay(int32_t displayId);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800414 virtual void setInputDispatchMode(bool enabled, bool frozen);
415 virtual void setInputFilterEnabled(bool enabled);
416
chaviwfbe5d9c2018-12-26 12:23:37 -0800417 virtual bool transferTouchFocus(const sp<IBinder>& fromToken, const sp<IBinder>& toToken);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800418
419 virtual status_t registerInputChannel(const sp<InputChannel>& inputChannel,
Robert Carr803535b2018-08-02 16:38:15 -0700420 int32_t displayId);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800421 virtual status_t unregisterInputChannel(const sp<InputChannel>& inputChannel);
422
423private:
424 template <typename T>
425 struct Link {
426 T* next;
427 T* prev;
428
429 protected:
Yi Kong9b14ac62018-07-17 13:48:38 -0700430 inline Link() : next(nullptr), prev(nullptr) { }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800431 };
432
433 struct InjectionState {
434 mutable int32_t refCount;
435
436 int32_t injectorPid;
437 int32_t injectorUid;
438 int32_t injectionResult; // initially INPUT_EVENT_INJECTION_PENDING
439 bool injectionIsAsync; // set to true if injection is not waiting for the result
440 int32_t pendingForegroundDispatches; // the number of foreground dispatches in progress
441
442 InjectionState(int32_t injectorPid, int32_t injectorUid);
443 void release();
444
445 private:
446 ~InjectionState();
447 };
448
449 struct EventEntry : Link<EventEntry> {
450 enum {
451 TYPE_CONFIGURATION_CHANGED,
452 TYPE_DEVICE_RESET,
453 TYPE_KEY,
454 TYPE_MOTION
455 };
456
Prabir Pradhan42611e02018-11-27 14:04:02 -0800457 uint32_t sequenceNum;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800458 mutable int32_t refCount;
459 int32_t type;
460 nsecs_t eventTime;
461 uint32_t policyFlags;
462 InjectionState* injectionState;
463
464 bool dispatchInProgress; // initially false, set to true while dispatching
465
Yi Kong9b14ac62018-07-17 13:48:38 -0700466 inline bool isInjected() const { return injectionState != nullptr; }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800467
468 void release();
469
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -0800470 virtual void appendDescription(std::string& msg) const = 0;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800471
472 protected:
Prabir Pradhan42611e02018-11-27 14:04:02 -0800473 EventEntry(uint32_t sequenceNum, int32_t type, nsecs_t eventTime, uint32_t policyFlags);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800474 virtual ~EventEntry();
475 void releaseInjectionState();
476 };
477
478 struct ConfigurationChangedEntry : EventEntry {
Prabir Pradhan42611e02018-11-27 14:04:02 -0800479 explicit ConfigurationChangedEntry(uint32_t sequenceNum, nsecs_t eventTime);
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -0800480 virtual void appendDescription(std::string& msg) const;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800481
482 protected:
483 virtual ~ConfigurationChangedEntry();
484 };
485
486 struct DeviceResetEntry : EventEntry {
487 int32_t deviceId;
488
Prabir Pradhan42611e02018-11-27 14:04:02 -0800489 DeviceResetEntry(uint32_t sequenceNum, nsecs_t eventTime, int32_t deviceId);
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -0800490 virtual void appendDescription(std::string& msg) const;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800491
492 protected:
493 virtual ~DeviceResetEntry();
494 };
495
496 struct KeyEntry : EventEntry {
497 int32_t deviceId;
498 uint32_t source;
Siarhei Vishniakoua62a8dd2018-06-08 21:17:33 +0100499 int32_t displayId;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800500 int32_t action;
501 int32_t flags;
502 int32_t keyCode;
503 int32_t scanCode;
504 int32_t metaState;
505 int32_t repeatCount;
506 nsecs_t downTime;
507
508 bool syntheticRepeat; // set to true for synthetic key repeats
509
510 enum InterceptKeyResult {
511 INTERCEPT_KEY_RESULT_UNKNOWN,
512 INTERCEPT_KEY_RESULT_SKIP,
513 INTERCEPT_KEY_RESULT_CONTINUE,
514 INTERCEPT_KEY_RESULT_TRY_AGAIN_LATER,
515 };
516 InterceptKeyResult interceptKeyResult; // set based on the interception result
517 nsecs_t interceptKeyWakeupTime; // used with INTERCEPT_KEY_RESULT_TRY_AGAIN_LATER
518
Prabir Pradhan42611e02018-11-27 14:04:02 -0800519 KeyEntry(uint32_t sequenceNum, nsecs_t eventTime,
Siarhei Vishniakoua62a8dd2018-06-08 21:17:33 +0100520 int32_t deviceId, uint32_t source, int32_t displayId, uint32_t policyFlags,
521 int32_t action, int32_t flags, int32_t keyCode, int32_t scanCode, int32_t metaState,
Michael Wrightd02c5b62014-02-10 15:10:22 -0800522 int32_t repeatCount, nsecs_t downTime);
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -0800523 virtual void appendDescription(std::string& msg) const;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800524 void recycle();
525
526 protected:
527 virtual ~KeyEntry();
528 };
529
530 struct MotionEntry : EventEntry {
531 nsecs_t eventTime;
532 int32_t deviceId;
533 uint32_t source;
Siarhei Vishniakou777a10b2018-01-31 16:45:06 -0800534 int32_t displayId;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800535 int32_t action;
Michael Wright7b159c92015-05-14 14:48:03 +0100536 int32_t actionButton;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800537 int32_t flags;
538 int32_t metaState;
539 int32_t buttonState;
Siarhei Vishniakou16a2e302019-01-14 19:21:45 -0800540 MotionClassification classification;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800541 int32_t edgeFlags;
542 float xPrecision;
543 float yPrecision;
544 nsecs_t downTime;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800545 uint32_t pointerCount;
546 PointerProperties pointerProperties[MAX_POINTERS];
547 PointerCoords pointerCoords[MAX_POINTERS];
548
Prabir Pradhan42611e02018-11-27 14:04:02 -0800549 MotionEntry(uint32_t sequenceNum, nsecs_t eventTime,
Siarhei Vishniakou777a10b2018-01-31 16:45:06 -0800550 int32_t deviceId, uint32_t source, int32_t displayId, uint32_t policyFlags,
Michael Wright7b159c92015-05-14 14:48:03 +0100551 int32_t action, int32_t actionButton, int32_t flags,
Siarhei Vishniakou16a2e302019-01-14 19:21:45 -0800552 int32_t metaState, int32_t buttonState, MotionClassification classification,
553 int32_t edgeFlags, float xPrecision, float yPrecision,
554 nsecs_t downTime, uint32_t pointerCount,
Jeff Brownf086ddb2014-02-11 14:28:48 -0800555 const PointerProperties* pointerProperties, const PointerCoords* pointerCoords,
556 float xOffset, float yOffset);
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -0800557 virtual void appendDescription(std::string& msg) const;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800558
559 protected:
560 virtual ~MotionEntry();
561 };
562
563 // Tracks the progress of dispatching a particular event to a particular connection.
564 struct DispatchEntry : Link<DispatchEntry> {
565 const uint32_t seq; // unique sequence number, never 0
566
567 EventEntry* eventEntry; // the event to dispatch
568 int32_t targetFlags;
569 float xOffset;
570 float yOffset;
Robert Carre07e1032018-11-26 12:55:53 -0800571 float globalScaleFactor;
572 float windowXScale = 1.0f;
573 float windowYScale = 1.0f;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800574 nsecs_t deliveryTime; // time when the event was actually delivered
575
576 // Set to the resolved action and flags when the event is enqueued.
577 int32_t resolvedAction;
578 int32_t resolvedFlags;
579
580 DispatchEntry(EventEntry* eventEntry,
Robert Carre07e1032018-11-26 12:55:53 -0800581 int32_t targetFlags, float xOffset, float yOffset,
582 float globalScaleFactor, float windowXScale, float windowYScale);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800583 ~DispatchEntry();
584
585 inline bool hasForegroundTarget() const {
586 return targetFlags & InputTarget::FLAG_FOREGROUND;
587 }
588
589 inline bool isSplit() const {
590 return targetFlags & InputTarget::FLAG_SPLIT;
591 }
592
593 private:
594 static volatile int32_t sNextSeqAtomic;
595
596 static uint32_t nextSeq();
597 };
598
599 // A command entry captures state and behavior for an action to be performed in the
600 // dispatch loop after the initial processing has taken place. It is essentially
601 // a kind of continuation used to postpone sensitive policy interactions to a point
602 // in the dispatch loop where it is safe to release the lock (generally after finishing
603 // the critical parts of the dispatch cycle).
604 //
605 // The special thing about commands is that they can voluntarily release and reacquire
606 // the dispatcher lock at will. Initially when the command starts running, the
607 // dispatcher lock is held. However, if the command needs to call into the policy to
608 // do some work, it can release the lock, do the work, then reacquire the lock again
609 // before returning.
610 //
611 // This mechanism is a bit clunky but it helps to preserve the invariant that the dispatch
612 // never calls into the policy while holding its lock.
613 //
614 // Commands are implicitly 'LockedInterruptible'.
615 struct CommandEntry;
616 typedef void (InputDispatcher::*Command)(CommandEntry* commandEntry);
617
618 class Connection;
619 struct CommandEntry : Link<CommandEntry> {
Chih-Hung Hsieh6d2ede12016-09-01 11:28:23 -0700620 explicit CommandEntry(Command command);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800621 ~CommandEntry();
622
623 Command command;
624
625 // parameters for the command (usage varies by command)
626 sp<Connection> connection;
627 nsecs_t eventTime;
628 KeyEntry* keyEntry;
629 sp<InputApplicationHandle> inputApplicationHandle;
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -0800630 std::string reason;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800631 int32_t userActivityEventType;
632 uint32_t seq;
633 bool handled;
Robert Carr803535b2018-08-02 16:38:15 -0700634 sp<InputChannel> inputChannel;
chaviw0c06c6e2019-01-09 13:27:07 -0800635 sp<IBinder> oldToken;
636 sp<IBinder> newToken;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800637 };
638
639 // Generic queue implementation.
640 template <typename T>
641 struct Queue {
642 T* head;
643 T* tail;
Jon McCaffrey65dbe972014-11-18 12:07:08 -0800644 uint32_t entryCount;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800645
Yi Kong9b14ac62018-07-17 13:48:38 -0700646 inline Queue() : head(nullptr), tail(nullptr), entryCount(0) {
Michael Wrightd02c5b62014-02-10 15:10:22 -0800647 }
648
649 inline bool isEmpty() const {
650 return !head;
651 }
652
653 inline void enqueueAtTail(T* entry) {
Jon McCaffrey65dbe972014-11-18 12:07:08 -0800654 entryCount++;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800655 entry->prev = tail;
656 if (tail) {
657 tail->next = entry;
658 } else {
659 head = entry;
660 }
Yi Kong9b14ac62018-07-17 13:48:38 -0700661 entry->next = nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800662 tail = entry;
663 }
664
665 inline void enqueueAtHead(T* entry) {
Jon McCaffrey65dbe972014-11-18 12:07:08 -0800666 entryCount++;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800667 entry->next = head;
668 if (head) {
669 head->prev = entry;
670 } else {
671 tail = entry;
672 }
Yi Kong9b14ac62018-07-17 13:48:38 -0700673 entry->prev = nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800674 head = entry;
675 }
676
677 inline void dequeue(T* entry) {
Jon McCaffrey65dbe972014-11-18 12:07:08 -0800678 entryCount--;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800679 if (entry->prev) {
680 entry->prev->next = entry->next;
681 } else {
682 head = entry->next;
683 }
684 if (entry->next) {
685 entry->next->prev = entry->prev;
686 } else {
687 tail = entry->prev;
688 }
689 }
690
691 inline T* dequeueAtHead() {
Jon McCaffrey65dbe972014-11-18 12:07:08 -0800692 entryCount--;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800693 T* entry = head;
694 head = entry->next;
695 if (head) {
Yi Kong9b14ac62018-07-17 13:48:38 -0700696 head->prev = nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800697 } else {
Yi Kong9b14ac62018-07-17 13:48:38 -0700698 tail = nullptr;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800699 }
700 return entry;
701 }
702
Jon McCaffrey65dbe972014-11-18 12:07:08 -0800703 uint32_t count() const {
704 return entryCount;
705 }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800706 };
707
708 /* Specifies which events are to be canceled and why. */
709 struct CancelationOptions {
710 enum Mode {
711 CANCEL_ALL_EVENTS = 0,
712 CANCEL_POINTER_EVENTS = 1,
713 CANCEL_NON_POINTER_EVENTS = 2,
714 CANCEL_FALLBACK_EVENTS = 3,
Tiger Huang721e26f2018-07-24 22:26:19 +0800715
716 /* Cancel events where the display not specified. These events would go to the focused
717 * display. */
718 CANCEL_DISPLAY_UNSPECIFIED_EVENTS = 4,
Michael Wrightd02c5b62014-02-10 15:10:22 -0800719 };
720
721 // The criterion to use to determine which events should be canceled.
722 Mode mode;
723
724 // Descriptive reason for the cancelation.
725 const char* reason;
726
727 // The specific keycode of the key event to cancel, or -1 to cancel any key event.
728 int32_t keyCode;
729
730 // The specific device id of events to cancel, or -1 to cancel events from any device.
731 int32_t deviceId;
732
733 CancelationOptions(Mode mode, const char* reason) :
734 mode(mode), reason(reason), keyCode(-1), deviceId(-1) { }
735 };
736
737 /* Tracks dispatched key and motion event state so that cancelation events can be
738 * synthesized when events are dropped. */
739 class InputState {
740 public:
741 InputState();
742 ~InputState();
743
744 // Returns true if there is no state to be canceled.
745 bool isNeutral() const;
746
747 // Returns true if the specified source is known to have received a hover enter
748 // motion event.
749 bool isHovering(int32_t deviceId, uint32_t source, int32_t displayId) const;
750
751 // Records tracking information for a key event that has just been published.
752 // Returns true if the event should be delivered, false if it is inconsistent
753 // and should be skipped.
754 bool trackKey(const KeyEntry* entry, int32_t action, int32_t flags);
755
756 // Records tracking information for a motion event that has just been published.
757 // Returns true if the event should be delivered, false if it is inconsistent
758 // and should be skipped.
759 bool trackMotion(const MotionEntry* entry, int32_t action, int32_t flags);
760
761 // Synthesizes cancelation events for the current state and resets the tracked state.
762 void synthesizeCancelationEvents(nsecs_t currentTime,
Arthur Hung7c3ae9c2019-03-11 11:23:03 +0800763 std::vector<EventEntry*>& outEvents, const CancelationOptions& options);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800764
765 // Clears the current state.
766 void clear();
767
768 // Copies pointer-related parts of the input state to another instance.
769 void copyPointerStateTo(InputState& other) const;
770
771 // Gets the fallback key associated with a keycode.
772 // Returns -1 if none.
773 // Returns AKEYCODE_UNKNOWN if we are only dispatching the unhandled key to the policy.
774 int32_t getFallbackKey(int32_t originalKeyCode);
775
776 // Sets the fallback key for a particular keycode.
777 void setFallbackKey(int32_t originalKeyCode, int32_t fallbackKeyCode);
778
779 // Removes the fallback key for a particular keycode.
780 void removeFallbackKey(int32_t originalKeyCode);
781
782 inline const KeyedVector<int32_t, int32_t>& getFallbackKeys() const {
783 return mFallbackKeys;
784 }
785
786 private:
787 struct KeyMemento {
788 int32_t deviceId;
789 uint32_t source;
Siarhei Vishniakoua62a8dd2018-06-08 21:17:33 +0100790 int32_t displayId;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800791 int32_t keyCode;
792 int32_t scanCode;
793 int32_t metaState;
794 int32_t flags;
795 nsecs_t downTime;
796 uint32_t policyFlags;
797 };
798
799 struct MotionMemento {
800 int32_t deviceId;
801 uint32_t source;
Siarhei Vishniakou777a10b2018-01-31 16:45:06 -0800802 int32_t displayId;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800803 int32_t flags;
804 float xPrecision;
805 float yPrecision;
806 nsecs_t downTime;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800807 uint32_t pointerCount;
808 PointerProperties pointerProperties[MAX_POINTERS];
809 PointerCoords pointerCoords[MAX_POINTERS];
810 bool hovering;
811 uint32_t policyFlags;
812
813 void setPointers(const MotionEntry* entry);
814 };
815
Arthur Hung7c3ae9c2019-03-11 11:23:03 +0800816 std::vector<KeyMemento> mKeyMementos;
817 std::vector<MotionMemento> mMotionMementos;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800818 KeyedVector<int32_t, int32_t> mFallbackKeys;
819
820 ssize_t findKeyMemento(const KeyEntry* entry) const;
821 ssize_t findMotionMemento(const MotionEntry* entry, bool hovering) const;
822
823 void addKeyMemento(const KeyEntry* entry, int32_t flags);
824 void addMotionMemento(const MotionEntry* entry, int32_t flags, bool hovering);
825
826 static bool shouldCancelKey(const KeyMemento& memento,
827 const CancelationOptions& options);
828 static bool shouldCancelMotion(const MotionMemento& memento,
829 const CancelationOptions& options);
830 };
831
832 /* Manages the dispatch state associated with a single input channel. */
833 class Connection : public RefBase {
834 protected:
835 virtual ~Connection();
836
837 public:
838 enum Status {
839 // Everything is peachy.
840 STATUS_NORMAL,
841 // An unrecoverable communication error has occurred.
842 STATUS_BROKEN,
843 // The input channel has been unregistered.
844 STATUS_ZOMBIE
845 };
846
847 Status status;
848 sp<InputChannel> inputChannel; // never null
Michael Wrightd02c5b62014-02-10 15:10:22 -0800849 bool monitor;
850 InputPublisher inputPublisher;
851 InputState inputState;
852
853 // True if the socket is full and no further events can be published until
854 // the application consumes some of the input.
855 bool inputPublisherBlocked;
856
857 // Queue of events that need to be published to the connection.
858 Queue<DispatchEntry> outboundQueue;
859
860 // Queue of events that have been published to the connection but that have not
861 // yet received a "finished" response from the application.
862 Queue<DispatchEntry> waitQueue;
863
Robert Carr803535b2018-08-02 16:38:15 -0700864 explicit Connection(const sp<InputChannel>& inputChannel, bool monitor);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800865
Siarhei Vishniakou587c3f02018-01-04 11:46:44 -0800866 inline const std::string getInputChannelName() const { return inputChannel->getName(); }
Michael Wrightd02c5b62014-02-10 15:10:22 -0800867
Siarhei Vishniakou587c3f02018-01-04 11:46:44 -0800868 const std::string getWindowName() const;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800869 const char* getStatusLabel() const;
870
871 DispatchEntry* findWaitQueueEntry(uint32_t seq);
872 };
873
874 enum DropReason {
875 DROP_REASON_NOT_DROPPED = 0,
876 DROP_REASON_POLICY = 1,
877 DROP_REASON_APP_SWITCH = 2,
878 DROP_REASON_DISABLED = 3,
879 DROP_REASON_BLOCKED = 4,
880 DROP_REASON_STALE = 5,
881 };
882
883 sp<InputDispatcherPolicyInterface> mPolicy;
884 InputDispatcherConfiguration mConfig;
885
Siarhei Vishniakou443ad902019-03-06 17:25:41 -0800886 std::mutex mLock;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800887
Siarhei Vishniakou443ad902019-03-06 17:25:41 -0800888 std::condition_variable mDispatcherIsAlive;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800889
890 sp<Looper> mLooper;
891
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800892 EventEntry* mPendingEvent GUARDED_BY(mLock);
893 Queue<EventEntry> mInboundQueue GUARDED_BY(mLock);
894 Queue<EventEntry> mRecentQueue GUARDED_BY(mLock);
895 Queue<CommandEntry> mCommandQueue GUARDED_BY(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800896
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800897 DropReason mLastDropReason GUARDED_BY(mLock);
Michael Wright3a981722015-06-10 15:26:13 +0100898
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800899 void dispatchOnceInnerLocked(nsecs_t* nextWakeupTime) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800900
901 // Enqueues an inbound event. Returns true if mLooper->wake() should be called.
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800902 bool enqueueInboundEventLocked(EventEntry* entry) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800903
904 // Cleans up input state when dropping an inbound event.
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800905 void dropInboundEventLocked(EventEntry* entry, DropReason dropReason) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800906
907 // Adds an event to a queue of recent events for debugging purposes.
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800908 void addRecentEventLocked(EventEntry* entry) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800909
910 // App switch latency optimization.
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800911 bool mAppSwitchSawKeyDown GUARDED_BY(mLock);
912 nsecs_t mAppSwitchDueTime GUARDED_BY(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800913
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800914 bool isAppSwitchKeyEvent(KeyEntry* keyEntry);
915 bool isAppSwitchPendingLocked() REQUIRES(mLock);
916 void resetPendingAppSwitchLocked(bool handled) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800917
918 // Stale event latency optimization.
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800919 static bool isStaleEvent(nsecs_t currentTime, EventEntry* entry);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800920
921 // Blocked event latency optimization. Drops old events when the user intends
922 // to transfer focus to a new application.
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800923 EventEntry* mNextUnblockedEvent GUARDED_BY(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800924
Tiger Huang85b8c5e2019-01-17 18:34:54 +0800925 sp<InputWindowHandle> findTouchedWindowAtLocked(int32_t displayId, int32_t x, int32_t y,
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800926 bool addOutsideTargets = false, bool addPortalWindows = false) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800927
928 // All registered connections mapped by channel file descriptor.
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800929 KeyedVector<int, sp<Connection> > mConnectionsByFd GUARDED_BY(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800930
Robert Carr5c8a0262018-10-03 16:30:44 -0700931 struct IBinderHash {
932 std::size_t operator()(const sp<IBinder>& b) const {
933 return std::hash<IBinder *>{}(b.get());
934 }
935 };
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800936 std::unordered_map<sp<IBinder>, sp<InputChannel>, IBinderHash> mInputChannelsByToken
937 GUARDED_BY(mLock);
Robert Carr5c8a0262018-10-03 16:30:44 -0700938
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800939 ssize_t getConnectionIndexLocked(const sp<InputChannel>& inputChannel) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800940
Arthur Hung2fbf37f2018-09-13 18:16:41 +0800941 // Input channels that will receive a copy of all input events sent to the provided display.
Arthur Hung7c3ae9c2019-03-11 11:23:03 +0800942 std::unordered_map<int32_t, std::vector<sp<InputChannel>>> mMonitoringChannelsByDisplay
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800943 GUARDED_BY(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800944
945 // Event injection and synchronization.
Siarhei Vishniakou443ad902019-03-06 17:25:41 -0800946 std::condition_variable mInjectionResultAvailable;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800947 bool hasInjectionPermission(int32_t injectorPid, int32_t injectorUid);
Siarhei Vishniakou62683e82019-03-06 17:59:56 -0800948 void setInjectionResult(EventEntry* entry, int32_t injectionResult);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800949
Siarhei Vishniakou443ad902019-03-06 17:25:41 -0800950 std::condition_variable mInjectionSyncFinished;
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800951 void incrementPendingForegroundDispatches(EventEntry* entry);
Siarhei Vishniakou62683e82019-03-06 17:59:56 -0800952 void decrementPendingForegroundDispatches(EventEntry* entry);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800953
954 // Key repeat tracking.
955 struct KeyRepeatState {
956 KeyEntry* lastKeyEntry; // or null if no repeat
957 nsecs_t nextRepeatTime;
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800958 } mKeyRepeatState GUARDED_BY(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800959
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800960 void resetKeyRepeatLocked() REQUIRES(mLock);
961 KeyEntry* synthesizeKeyRepeatLocked(nsecs_t currentTime) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800962
Michael Wright78f24442014-08-06 15:55:28 -0700963 // Key replacement tracking
964 struct KeyReplacement {
965 int32_t keyCode;
966 int32_t deviceId;
967 bool operator==(const KeyReplacement& rhs) const {
968 return keyCode == rhs.keyCode && deviceId == rhs.deviceId;
969 }
970 bool operator<(const KeyReplacement& rhs) const {
971 return keyCode != rhs.keyCode ? keyCode < rhs.keyCode : deviceId < rhs.deviceId;
972 }
973 };
974 // Maps the key code replaced, device id tuple to the key code it was replaced with
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800975 KeyedVector<KeyReplacement, int32_t> mReplacedKeys GUARDED_BY(mLock);
Siarhei Vishniakou61fafdd2018-04-13 11:00:58 -0500976 // Process certain Meta + Key combinations
977 void accelerateMetaShortcuts(const int32_t deviceId, const int32_t action,
978 int32_t& keyCode, int32_t& metaState);
Michael Wright78f24442014-08-06 15:55:28 -0700979
Michael Wrightd02c5b62014-02-10 15:10:22 -0800980 // Deferred command processing.
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800981 bool haveCommandsLocked() const REQUIRES(mLock);
982 bool runCommandsLockedInterruptible() REQUIRES(mLock);
983 CommandEntry* postCommandLocked(Command command) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800984
985 // Input filter processing.
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800986 bool shouldSendKeyToInputFilterLocked(const NotifyKeyArgs* args) REQUIRES(mLock);
987 bool shouldSendMotionToInputFilterLocked(const NotifyMotionArgs* args) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800988
989 // Inbound event processing.
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800990 void drainInboundQueueLocked() REQUIRES(mLock);
991 void releasePendingEventLocked() REQUIRES(mLock);
992 void releaseInboundEventLocked(EventEntry* entry) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800993
994 // Dispatch state.
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800995 bool mDispatchEnabled GUARDED_BY(mLock);
996 bool mDispatchFrozen GUARDED_BY(mLock);
997 bool mInputFilterEnabled GUARDED_BY(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800998
Arthur Hung7c3ae9c2019-03-11 11:23:03 +0800999 std::unordered_map<int32_t, std::vector<sp<InputWindowHandle>>> mWindowHandlesByDisplay
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001000 GUARDED_BY(mLock);
Arthur Hungb92218b2018-08-14 12:00:21 +08001001 // Get window handles by display, return an empty vector if not found.
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001002 std::vector<sp<InputWindowHandle>> getWindowHandlesLocked(int32_t displayId) const
1003 REQUIRES(mLock);
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001004 sp<InputWindowHandle> getWindowHandleLocked(const sp<IBinder>& windowHandleToken) const
1005 REQUIRES(mLock);
1006 sp<InputChannel> getInputChannelLocked(const sp<IBinder>& windowToken) const REQUIRES(mLock);
1007 bool hasWindowHandleLocked(const sp<InputWindowHandle>& windowHandle) const REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001008
1009 // Focus tracking for keys, trackball, etc.
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001010 std::unordered_map<int32_t, sp<InputWindowHandle>> mFocusedWindowHandlesByDisplay
1011 GUARDED_BY(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001012
1013 // Focus tracking for touch.
1014 struct TouchedWindow {
1015 sp<InputWindowHandle> windowHandle;
1016 int32_t targetFlags;
1017 BitSet32 pointerIds; // zero unless target flag FLAG_SPLIT is set
1018 };
1019 struct TouchState {
1020 bool down;
1021 bool split;
1022 int32_t deviceId; // id of the device that is currently down, others are rejected
1023 uint32_t source; // source of the device that is current down, others are rejected
1024 int32_t displayId; // id to the display that currently has a touch, others are rejected
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001025 std::vector<TouchedWindow> windows;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001026
Tiger Huang85b8c5e2019-01-17 18:34:54 +08001027 // This collects the portal windows that the touch has gone through. Each portal window
1028 // targets a display (embedded display for most cases). With this info, we can add the
1029 // monitoring channels of the displays touched.
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001030 std::vector<sp<InputWindowHandle>> portalWindows;
Tiger Huang85b8c5e2019-01-17 18:34:54 +08001031
Michael Wrightd02c5b62014-02-10 15:10:22 -08001032 TouchState();
1033 ~TouchState();
1034 void reset();
1035 void copyFrom(const TouchState& other);
1036 void addOrUpdateWindow(const sp<InputWindowHandle>& windowHandle,
1037 int32_t targetFlags, BitSet32 pointerIds);
Tiger Huang85b8c5e2019-01-17 18:34:54 +08001038 void addPortalWindow(const sp<InputWindowHandle>& windowHandle);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001039 void removeWindow(const sp<InputWindowHandle>& windowHandle);
Robert Carr803535b2018-08-02 16:38:15 -07001040 void removeWindowByToken(const sp<IBinder>& token);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001041 void filterNonAsIsTouchWindows();
1042 sp<InputWindowHandle> getFirstForegroundWindowHandle() const;
1043 bool isSlippery() const;
1044 };
1045
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001046 KeyedVector<int32_t, TouchState> mTouchStatesByDisplay GUARDED_BY(mLock);
1047 TouchState mTempTouchState GUARDED_BY(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001048
Tiger Huang721e26f2018-07-24 22:26:19 +08001049 // Focused applications.
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001050 std::unordered_map<int32_t, sp<InputApplicationHandle>> mFocusedApplicationHandlesByDisplay
1051 GUARDED_BY(mLock);
Tiger Huang721e26f2018-07-24 22:26:19 +08001052
1053 // Top focused display.
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001054 int32_t mFocusedDisplayId GUARDED_BY(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001055
1056 // Dispatcher state at time of last ANR.
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001057 std::string mLastANRState GUARDED_BY(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001058
1059 // Dispatch inbound events.
1060 bool dispatchConfigurationChangedLocked(
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001061 nsecs_t currentTime, ConfigurationChangedEntry* entry) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001062 bool dispatchDeviceResetLocked(
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001063 nsecs_t currentTime, DeviceResetEntry* entry) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001064 bool dispatchKeyLocked(
1065 nsecs_t currentTime, KeyEntry* entry,
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001066 DropReason* dropReason, nsecs_t* nextWakeupTime) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001067 bool dispatchMotionLocked(
1068 nsecs_t currentTime, MotionEntry* entry,
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001069 DropReason* dropReason, nsecs_t* nextWakeupTime) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001070 void dispatchEventLocked(nsecs_t currentTime, EventEntry* entry,
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001071 const std::vector<InputTarget>& inputTargets) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001072
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001073 void logOutboundKeyDetails(const char* prefix, const KeyEntry* entry);
1074 void logOutboundMotionDetails(const char* prefix, const MotionEntry* entry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001075
1076 // Keeping track of ANR timeouts.
1077 enum InputTargetWaitCause {
1078 INPUT_TARGET_WAIT_CAUSE_NONE,
1079 INPUT_TARGET_WAIT_CAUSE_SYSTEM_NOT_READY,
1080 INPUT_TARGET_WAIT_CAUSE_APPLICATION_NOT_READY,
1081 };
1082
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001083 InputTargetWaitCause mInputTargetWaitCause GUARDED_BY(mLock);
1084 nsecs_t mInputTargetWaitStartTime GUARDED_BY(mLock);
1085 nsecs_t mInputTargetWaitTimeoutTime GUARDED_BY(mLock);
1086 bool mInputTargetWaitTimeoutExpired GUARDED_BY(mLock);
1087 sp<IBinder> mInputTargetWaitApplicationToken GUARDED_BY(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001088
1089 // Contains the last window which received a hover event.
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001090 sp<InputWindowHandle> mLastHoverWindowHandle GUARDED_BY(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001091
1092 // Finding targets for input events.
1093 int32_t handleTargetsNotReadyLocked(nsecs_t currentTime, const EventEntry* entry,
1094 const sp<InputApplicationHandle>& applicationHandle,
1095 const sp<InputWindowHandle>& windowHandle,
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001096 nsecs_t* nextWakeupTime, const char* reason) REQUIRES(mLock);
Robert Carr803535b2018-08-02 16:38:15 -07001097
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001098 void removeWindowByTokenLocked(const sp<IBinder>& token) REQUIRES(mLock);
Robert Carr803535b2018-08-02 16:38:15 -07001099
Michael Wrightd02c5b62014-02-10 15:10:22 -08001100 void resumeAfterTargetsNotReadyTimeoutLocked(nsecs_t newTimeout,
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001101 const sp<InputChannel>& inputChannel) REQUIRES(mLock);
1102 nsecs_t getTimeSpentWaitingForApplicationLocked(nsecs_t currentTime) REQUIRES(mLock);
1103 void resetANRTimeoutsLocked() REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001104
Tiger Huang721e26f2018-07-24 22:26:19 +08001105 int32_t getTargetDisplayId(const EventEntry* entry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001106 int32_t findFocusedWindowTargetsLocked(nsecs_t currentTime, const EventEntry* entry,
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001107 std::vector<InputTarget>& inputTargets, nsecs_t* nextWakeupTime) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001108 int32_t findTouchedWindowTargetsLocked(nsecs_t currentTime, const MotionEntry* entry,
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001109 std::vector<InputTarget>& inputTargets, nsecs_t* nextWakeupTime,
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001110 bool* outConflictingPointerActions) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001111
1112 void addWindowTargetLocked(const sp<InputWindowHandle>& windowHandle,
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001113 int32_t targetFlags, BitSet32 pointerIds, std::vector<InputTarget>& inputTargets)
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001114 REQUIRES(mLock);
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08001115 void addMonitoringTargetsLocked(std::vector<InputTarget>& inputTargets, int32_t displayId,
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001116 float xOffset = 0, float yOffset = 0) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001117
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001118 void pokeUserActivityLocked(const EventEntry* eventEntry) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001119 bool checkInjectionPermission(const sp<InputWindowHandle>& windowHandle,
1120 const InjectionState* injectionState);
1121 bool isWindowObscuredAtPointLocked(const sp<InputWindowHandle>& windowHandle,
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001122 int32_t x, int32_t y) const REQUIRES(mLock);
1123 bool isWindowObscuredLocked(const sp<InputWindowHandle>& windowHandle) const REQUIRES(mLock);
1124 std::string getApplicationWindowLabel(const sp<InputApplicationHandle>& applicationHandle,
Michael Wrightd02c5b62014-02-10 15:10:22 -08001125 const sp<InputWindowHandle>& windowHandle);
1126
Siarhei Vishniakouf93fcf42017-11-22 16:00:14 -08001127 std::string checkWindowReadyForMoreInputLocked(nsecs_t currentTime,
Jeff Brownffb49772014-10-10 19:01:34 -07001128 const sp<InputWindowHandle>& windowHandle, const EventEntry* eventEntry,
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001129 const char* targetType) REQUIRES(mLock);
Jeff Brownffb49772014-10-10 19:01:34 -07001130
Michael Wrightd02c5b62014-02-10 15:10:22 -08001131 // Manage the dispatch cycle for a single connection.
1132 // These methods are deliberately not Interruptible because doing all of the work
1133 // with the mutex held makes it easier to ensure that connection invariants are maintained.
1134 // If needed, the methods post commands to run later once the critical bits are done.
1135 void prepareDispatchCycleLocked(nsecs_t currentTime, const sp<Connection>& connection,
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001136 EventEntry* eventEntry, const InputTarget* inputTarget) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001137 void enqueueDispatchEntriesLocked(nsecs_t currentTime, const sp<Connection>& connection,
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001138 EventEntry* eventEntry, const InputTarget* inputTarget) REQUIRES(mLock);
chaviw8c9cf542019-03-25 13:02:48 -07001139 void enqueueDispatchEntryLocked(const sp<Connection>& connection,
1140 EventEntry* eventEntry, const InputTarget* inputTarget, int32_t dispatchMode)
1141 REQUIRES(mLock);
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001142 void startDispatchCycleLocked(nsecs_t currentTime, const sp<Connection>& connection)
1143 REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001144 void finishDispatchCycleLocked(nsecs_t currentTime, const sp<Connection>& connection,
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001145 uint32_t seq, bool handled) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001146 void abortBrokenDispatchCycleLocked(nsecs_t currentTime, const sp<Connection>& connection,
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001147 bool notify) REQUIRES(mLock);
Siarhei Vishniakou62683e82019-03-06 17:59:56 -08001148 void drainDispatchQueue(Queue<DispatchEntry>* queue);
1149 void releaseDispatchEntry(DispatchEntry* dispatchEntry);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001150 static int handleReceiveCallback(int fd, int events, void* data);
chaviw8c9cf542019-03-25 13:02:48 -07001151 // The action sent should only be of type AMOTION_EVENT_*
1152 void dispatchPointerDownOutsideFocusIfNecessary(uint32_t source, int32_t action,
1153 const sp<IBinder>& newToken) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001154
1155 void synthesizeCancelationEventsForAllConnectionsLocked(
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001156 const CancelationOptions& options) REQUIRES(mLock);
1157 void synthesizeCancelationEventsForMonitorsLocked(
1158 const CancelationOptions& options) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001159 void synthesizeCancelationEventsForInputChannelLocked(const sp<InputChannel>& channel,
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001160 const CancelationOptions& options) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001161 void synthesizeCancelationEventsForConnectionLocked(const sp<Connection>& connection,
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001162 const CancelationOptions& options) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001163
1164 // Splitting motion events across windows.
1165 MotionEntry* splitMotionEvent(const MotionEntry* originalMotionEntry, BitSet32 pointerIds);
1166
1167 // Reset and drop everything the dispatcher is doing.
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001168 void resetAndDropEverythingLocked(const char* reason) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001169
1170 // Dump state.
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001171 void dumpDispatchStateLocked(std::string& dump) REQUIRES(mLock);
1172 void logDispatchStateLocked() REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001173
1174 // Registration.
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001175 void removeMonitorChannelLocked(const sp<InputChannel>& inputChannel) REQUIRES(mLock);
1176 status_t unregisterInputChannelLocked(const sp<InputChannel>& inputChannel, bool notify)
1177 REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001178
1179 // Interesting events that we might like to log or tell the framework about.
1180 void onDispatchCycleFinishedLocked(
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001181 nsecs_t currentTime, const sp<Connection>& connection, uint32_t seq, bool handled)
1182 REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001183 void onDispatchCycleBrokenLocked(
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001184 nsecs_t currentTime, const sp<Connection>& connection) REQUIRES(mLock);
chaviw0c06c6e2019-01-09 13:27:07 -08001185 void onFocusChangedLocked(const sp<InputWindowHandle>& oldFocus,
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001186 const sp<InputWindowHandle>& newFocus) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001187 void onANRLocked(
1188 nsecs_t currentTime, const sp<InputApplicationHandle>& applicationHandle,
1189 const sp<InputWindowHandle>& windowHandle,
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001190 nsecs_t eventTime, nsecs_t waitStartTime, const char* reason) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001191
1192 // Outbound policy interactions.
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001193 void doNotifyConfigurationChangedLockedInterruptible(CommandEntry* commandEntry)
1194 REQUIRES(mLock);
1195 void doNotifyInputChannelBrokenLockedInterruptible(CommandEntry* commandEntry) REQUIRES(mLock);
1196 void doNotifyFocusChangedLockedInterruptible(CommandEntry* commandEntry) REQUIRES(mLock);
1197 void doNotifyANRLockedInterruptible(CommandEntry* commandEntry) REQUIRES(mLock);
1198 void doInterceptKeyBeforeDispatchingLockedInterruptible(CommandEntry* commandEntry)
1199 REQUIRES(mLock);
1200 void doDispatchCycleFinishedLockedInterruptible(CommandEntry* commandEntry) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001201 bool afterKeyEventLockedInterruptible(const sp<Connection>& connection,
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001202 DispatchEntry* dispatchEntry, KeyEntry* keyEntry, bool handled) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001203 bool afterMotionEventLockedInterruptible(const sp<Connection>& connection,
Siarhei Vishniakou62683e82019-03-06 17:59:56 -08001204 DispatchEntry* dispatchEntry, MotionEntry* motionEntry, bool handled) REQUIRES(mLock);
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001205 void doPokeUserActivityLockedInterruptible(CommandEntry* commandEntry) REQUIRES(mLock);
Michael Wrightd02c5b62014-02-10 15:10:22 -08001206 void initializeKeyEvent(KeyEvent* event, const KeyEntry* entry);
1207
1208 // Statistics gathering.
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001209 void updateDispatchStatistics(nsecs_t currentTime, const EventEntry* entry,
Michael Wrightd02c5b62014-02-10 15:10:22 -08001210 int32_t injectionResult, nsecs_t timeSpentWaitingForApplication);
Siarhei Vishniakou61291d42019-02-11 18:13:20 -08001211 void traceInboundQueueLengthLocked() REQUIRES(mLock);
1212 void traceOutboundQueueLength(const sp<Connection>& connection);
1213 void traceWaitQueueLength(const sp<Connection>& connection);
Prabir Pradhanf93562f2018-11-29 12:13:37 -08001214
Prabir Pradhan79a4f0c2019-01-09 11:24:01 -08001215 sp<InputReporterInterface> mReporter;
Michael Wrightd02c5b62014-02-10 15:10:22 -08001216};
1217
1218/* Enqueues and dispatches input events, endlessly. */
1219class InputDispatcherThread : public Thread {
1220public:
1221 explicit InputDispatcherThread(const sp<InputDispatcherInterface>& dispatcher);
1222 ~InputDispatcherThread();
1223
1224private:
1225 virtual bool threadLoop();
1226
1227 sp<InputDispatcherInterface> mDispatcher;
1228};
1229
1230} // namespace android
1231
1232#endif // _UI_INPUT_DISPATCHER_H